*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #000000;
  --bg-elev: #0a0a0a;
  --bg-card: #111111;
  --fg: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --faint: rgba(255, 255, 255, 0.35);
  --line: rgba(255, 255, 255, 0.08);
  --green: #34c759;
  --green-soft: rgba(52, 199, 89, 0.14);
  --green-muted: rgba(52, 199, 89, 0.75);
  --accent-warm: #ffd60a;
  --bid: #ff6b5b;
  --danger: #ff453a;
  --radius: 1.35rem;
  --sans: Inter, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.grain {
  display: none;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--bg-elev);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.topbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--fg);
  text-decoration: none;
  font-weight: 600;
}

.topbar__logo {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.45rem;
  flex: 0 0 auto;
  display: block;
}

.topbar__mark {
  color: var(--fg);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.topbar__meta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.topbar__meta::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--green);
  flex-shrink: 0;
}

.masthead {
  padding: 1.5rem 0 0.5rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
}

.display {
  margin: 0;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.display em {
  font-style: normal;
  color: var(--green);
}

.lede {
  margin: 1.25rem auto 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.lede strong {
  color: var(--fg);
  font-weight: 600;
}

.text-link,
.bidder-link,
.lede a,
.cta__sub a,
.perks a,
.rules a,
.print-spec a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 199, 89, 0.45);
  transition: border-color 0.15s ease, color 0.15s ease;
}

.text-link:hover,
.bidder-link:hover,
.lede a:hover,
.cta__sub a:hover,
.perks a:hover,
.rules a:hover,
.print-spec a:hover {
  color: #4cd964;
  border-bottom-color: rgba(52, 199, 89, 0.9);
}

.bidder-link strong {
  font-weight: inherit;
  color: inherit;
}

.bidder-link-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.1rem;
}

.bidder-link__clicks {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--faint);
  line-height: 1.2;
}

.visual__frame {
  position: relative;
  border-radius: calc(var(--radius) + 0.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

.visual__video,
.visual__fallback {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.06);
}

.visual__video {
  position: relative;
  z-index: 1;
}

.visual__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.visual__frame:has(video[src]) .visual__fallback,
.visual__frame:has(video source) .visual__fallback {
  opacity: 0;
}

.visual__promise {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  margin: 0;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--line);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  pointer-events: none;
}

.visual__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, transparent 28%, transparent 42%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 35%);
  pointer-events: none;
}

.door-pin {
  position: absolute;
  left: 8%;
  bottom: 14%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.door-pin__mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(52, 199, 89, 0.45);
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  overflow: hidden;
}

.door-pin__mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.door-pin__label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.door-pin__name {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.door-pin__name.empty,
.door-pin__mark.empty {
  color: var(--muted);
  font-weight: 500;
}

.visual__tail {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.ticker__cell {
  background: var(--bg-elev);
  padding: 1.1rem 1rem;
}

.ticker__cell--focus {
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.12), var(--bg-elev));
}

.ticker__cell--focus .label {
  color: var(--green-muted);
}

.ticker__cell--focus strong {
  color: var(--green);
}

.ticker__cell strong,
.ticker__leader {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ticker__leader .bidder-link {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

.ticker__cell .bidder-link-wrap {
  margin-top: 0;
}

.ticker__cell .mono {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  letter-spacing: 0.04em;
}

.ticker__dates {
  margin: -0.75rem 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--faint);
}

.ticker__clicks {
  margin: 0.2rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: var(--faint);
}

.label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--faint);
}

.grid-two {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.panel__title {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.route {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.route strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.route__sep {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.facts {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.facts dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.facts dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
}

.story p {
  margin: 0;
  color: var(--muted);
}

.story p + p {
  margin-top: 0.9rem;
}

.cta .cta__head {
  text-align: center;
}

.cta__claim {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  font-family: var(--sans);
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta__claim-label {
  color: var(--fg);
}

.cta__claim-amount {
  color: var(--bid);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
}

.cta__claim--status .cta__claim-label {
  color: var(--muted);
  font-weight: 600;
}

.cta__claim--status .cta__claim-amount {
  display: none;
}

.cta__sub {
  margin: 0.75rem auto 1.35rem;
  color: var(--muted);
  max-width: 40rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.5;
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.fields--modal .logo-field {
  grid-column: 1 / -1;
}


.bid-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bid-form input[type="text"],
.bid-form input[type="url"] {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  border-radius: 0.8rem;
  padding: 0.85rem 0.95rem;
  font: inherit;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.bid-form input:focus {
  border-color: rgba(52, 199, 89, 0.55);
  background: rgba(52, 199, 89, 0.05);
}

.bid-form .label em {
  font-style: normal;
  color: var(--faint);
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.75rem;
}

.refund {
  margin: 1.1rem 0 0;
  padding: 0;
  border: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.refund legend {
  margin-bottom: 0.65rem;
}

.refund__opt {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.refund__opt strong {
  display: block;
}

.refund__opt small {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
}

.refund__opt:has(input:checked) {
  border-color: rgba(52, 199, 89, 0.55);
  background: var(--green-soft);
}

.btn {
  margin-top: 1.1rem;
  width: 100%;
  border: 0;
  border-radius: 0.85rem;
  padding: 1rem 1.25rem;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:hover:not(:disabled) {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.btn--green {
  color: #0a0a0a;
  background: var(--green);
}

.btn--green:hover:not(:disabled) {
  filter: brightness(1.06);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.error {
  margin: 0.85rem 0 0;
  color: var(--danger);
  font-size: 0.92rem;
}

.demo-note {
  margin: 0.75rem 0 0;
  text-align: center;
  color: var(--faint);
  font-size: 0.8rem;
}

.perks,
.rules,
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.perks li,
.rules li {
  position: relative;
  padding: 0.7rem 0 0.7rem 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.perks li::before,
.rules li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--green);
}

.hint {
  margin: -0.35rem 0 1rem;
  color: var(--faint);
  font-size: 0.88rem;
}

.list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.list a {
  color: var(--fg);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 199, 89, 0.45);
}

.list .amount,
.list .when,
.list .muted,
.outbid-tag {
  color: var(--muted);
  font-size: 0.88rem;
}

.outbid-tag {
  margin-left: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bidder-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}



.finale-flight {
  margin: 2.5rem 0 1.5rem;
  padding: 0.5rem 0 0.25rem;
  width: 100%;
}

.finale-flight__sky {
  position: relative;
  width: 100%;
  margin: 0;
}

.finale-flight__arc {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1000 / 420;
  overflow: visible;
}

.finale-flight__guide {
  stroke: rgba(52, 199, 89, 0.55);
  stroke-width: 2.5;
  stroke-dasharray: 8 10;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.finale-flight__dot {
  fill: #34c759;
  stroke: #0a0a0a;
  stroke-width: 2;
}

.finale-flight__svg-code {
  fill: #34c759;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.finale-flight__svg-name {
  fill: #ffffff;
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.finale-flight__plane {
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(1.85rem, 4.2vw, 2.85rem);
  height: clamp(1.85rem, 4.2vw, 2.85rem);
  margin: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  opacity: 1;
  transform-origin: center center;
  will-change: transform;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

@media (max-width: 860px) {
  .finale-flight__svg-name {
    font-size: 26px;
  }

  .finale-flight__svg-code {
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .finale-flight__plane {
    /* still scrub with scroll */
  }
}

.footer {
  padding-top: 0.5rem;
  text-align: center;
  color: var(--faint);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.footer__route {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer__credit {
  margin: 0.65rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.28);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.footer__datafast {
  margin: 0.85rem auto 0;
  width: 100%;
  max-width: 280px;
  height: 72px;
  overflow: hidden;
  border-radius: 0.65rem;
}

.footer__datafast iframe {
  display: block;
}

.footer__meta {
  margin: 0;
}

.footer__credit {
  margin: 0.55rem 0 0;
  color: var(--muted, rgba(255, 255, 255, 0.55));
  font-size: 0.85rem;
  letter-spacing: normal;
  text-transform: none;
}

.footer__credit a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.footer__credit a:hover {
  color: var(--fg, #fff);
}

.footer__datafast {
  margin: 1rem auto 0;
  width: min(100%, 280px);
  height: 72px;
  overflow: hidden;
  border-radius: 0.85rem;
}

.footer__links {
  margin: 0.55rem 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.62);
  border-bottom-color: rgba(255, 255, 255, 0.28);
}

.masthead--compact {
  padding: 0.75rem 0 0;
}

.display--compact {
  font-size: clamp(1.85rem, 6vw, 2.75rem);
}

.lede--compact {
  margin-top: 0.85rem;
  font-size: 0.98rem;
}

.terms__effective {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--faint);
}

.terms {
  font-size: 0.95rem;
  color: var(--muted);
}

.terms__section {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line);
}

.terms__section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.terms__heading {
  margin: 0 0 0.75rem;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.terms p {
  margin: 0 0 0.85rem;
}

.terms p:last-child {
  margin-bottom: 0;
}

.terms__list {
  margin: 0 0 0.85rem;
  padding-left: 1.15rem;
  color: var(--muted);
}

.terms__list li {
  margin-bottom: 0.35rem;
}

.terms__list li::marker {
  color: var(--green-muted);
}

.terms a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 199, 89, 0.45);
}

.terms a:hover {
  color: #4cd964;
  border-bottom-color: rgba(52, 199, 89, 0.9);
}

.bid-modal__terms {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--faint);
  text-align: center;
}

.bid-modal__terms a {
  color: var(--green-muted);
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 199, 89, 0.35);
}

.bid-modal__terms a:hover {
  color: var(--green);
  border-bottom-color: rgba(52, 199, 89, 0.75);
}



.winner h2 {
  margin: 0 0 0.5rem;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}

.winner p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .ticker {
    grid-template-columns: 1fr 1fr;
  }

  .grid-two,
  .fields,
  .refund {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem 0.65rem;
    padding: 0.55rem 0.7rem;
  }

  .topbar__mark {
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .topbar__meta {
    justify-content: center;
    font-size: 0.58rem;
    padding: 0.28rem 0.5rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .door-pin {
    left: 4%;
    right: 4%;
    bottom: 12%;
  }
}


.print-spec {
  margin-top: 1.25rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

.print-spec__title {
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.print-spec__grid {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.1rem;
}

.print-spec__grid dt {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
}

.print-spec__grid dd {
  margin: 0.25rem 0 0;
  color: var(--fg);
  font-weight: 500;
}

.print-spec__note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 860px) {
  .print-spec__grid {
    grid-template-columns: 1fr;
  }
}


.logo-field input[type="file"] {
  width: 100%;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  border-radius: 0.8rem;
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.file-name {
  font-size: 0.8rem;
  color: var(--muted);
}

.logo-constraints {
  margin-top: 0.85rem;
  padding: 1rem 1.1rem;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.logo-constraints p {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-constraints ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.logo-constraints li + li {
  margin-top: 0.35rem;
}

.logo-constraints strong {
  color: var(--fg);
}





.bid-modal {
  width: min(560px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  color: var(--fg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  overflow: auto;
}

.bid-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.bid-modal__chrome {
  margin: 0;
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 0.65rem 0.75rem 0;
  background: linear-gradient(var(--bg-elev), rgba(10, 10, 10, 0.85));
  z-index: 2;
}

.bid-modal__close {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.bid-modal__body {
  padding: 0.25rem 1.35rem 1.5rem;
}

.bid-modal__title {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.bid-modal__sub {
  margin: 0.4rem 0 1.15rem;
  color: var(--muted);
}

.logo-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.cta .btn {
  margin-top: 0.35rem;
}


.made-possible {
  text-align: center;
}

.made-possible--overlay {
  position: absolute;
  left: 50%;
  bottom: 2.75rem;
  transform: translateX(-50%);
  width: min(34rem, calc(100% - 2rem));
  margin: 0;
  padding: 0;
  z-index: 3;
  pointer-events: auto;
  text-align: left;
}

.made-possible--overlay .made-possible__kicker {
  margin: 0 0 0.55rem;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.75),
    0 0 24px rgba(0, 0, 0, 0.55);
}

.made-possible--overlay .made-possible__card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.1rem;
  text-align: left;
  background: rgba(8, 8, 8, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.55),
    0 18px 50px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 40px 80px rgba(0, 0, 0, 0.45);
}

.made-possible--overlay .made-possible__name,
.made-possible--overlay .made-possible__desc {
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.55);
}

.made-possible--overlay .made-possible__desc {
  font-size: 0.9rem;
}

.made-possible__kicker {
  margin: 0 0 0.85rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--faint);
}

.made-possible__card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  text-align: left;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-elev);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.made-possible__card.is-empty {
  border-style: dashed;
  opacity: 0.85;
  cursor: pointer;
}

.made-possible__card.is-empty .made-possible__name {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.made-possible__logo {
  flex: 0 0 auto;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  font-weight: 600;
}

.made-possible__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.made-possible__name-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
}

.made-possible__name {
  display: inline-block;
  color: var(--fg);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(52, 199, 89, 0.45);
}

.made-possible__name.bidder-link {
  color: var(--green);
}

.made-possible__name:hover,
.made-possible__name.bidder-link:hover {
  border-bottom-color: var(--green);
  color: #4cd964;
}

.made-possible__desc {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.45;
}

.desc-field {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.desc-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--fg);
  border-radius: 0.8rem;
  padding: 0.85rem 0.95rem;
  font: inherit;
  resize: vertical;
  min-height: 5rem;
  outline: none;
}

.desc-field textarea:focus {
  border-color: rgba(52, 199, 89, 0.55);
  background: rgba(52, 199, 89, 0.05);
}

@media (max-width: 640px) {
  .shell {
    width: min(1080px, calc(100% - 1.25rem));
    padding: 0.85rem 0 calc(3.5rem + env(safe-area-inset-bottom, 0px));
    gap: 1.15rem;
  }

  .visual {
    margin: 0 -0.15rem;
  }

  .visual__frame {
    border-radius: 1.1rem;
    min-height: min(78vh, 640px);
  }

  .visual__video,
  .visual__fallback {
    aspect-ratio: auto;
    width: 100%;
    height: min(78vh, 640px);
    object-fit: cover;
    object-position: center 40%;
  }

  .masthead {
    padding: 0.35rem 0 0.25rem;
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.14em;
  }

  .display {
    font-size: clamp(2rem, 11vw, 2.75rem);
    line-height: 1.05;
  }

  .lede {
    margin-top: 0.85rem;
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.55;
    text-align: left;
  }

  .visual__promise {
    top: 0.65rem;
    left: 0.65rem;
    right: 0.65rem;
    max-width: calc(100% - 1.3rem);
    padding: 0.4rem 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    white-space: normal;
    line-height: 1.3;
  }

  .made-possible--overlay {
    left: 50%;
    bottom: 2.35rem;
    width: calc(100% - 1.25rem);
    transform: translateX(-50%);
  }

  .made-possible--overlay .made-possible__kicker {
    margin-bottom: 0.4rem;
    font-size: 0.62rem;
    text-align: left;
  }

  .made-possible--overlay .made-possible__card {
    gap: 0.65rem;
    padding: 0.7rem 0.8rem;
  }

  .made-possible--overlay .made-possible__logo {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 0.7rem;
  }

  .made-possible--overlay .made-possible__name {
    font-size: 0.98rem;
  }

  .made-possible--overlay .made-possible__desc {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    margin-top: 0.25rem;
  }

  .visual__tail {
    bottom: 0.55rem;
    right: 0.65rem;
    left: 0.65rem;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
  }

  .ticker {
    position: relative;
    margin-bottom: 0.25rem;
  }

  .ticker__cell {
    padding: 0.75rem 0.65rem;
  }

  .ticker__cell strong {
    font-size: 0.95rem;
  }

  .faq__q {
    font-size: 0.92rem;
    padding: 0.85rem 0.9rem;
  }
}

.bidder--blurred .blurred-name {
  display: inline-block;
  filter: blur(5px);
  user-select: none;
  color: var(--muted);
  font-weight: 600;
}

.bidder--kept .outbid-tag {
  color: var(--green);
}


.story__photo {
  margin: 0 0 1rem;
}

.story__photo img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 0.9rem;
  border: 1px solid var(--line);
}

@media (max-width: 860px) {
  .story__photo img {
    max-height: 200px;
    object-position: center 38%;
  }
}

.story__photo figcaption {
  margin-top: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-muted);
}


.flight__art {
  display: flex;
  justify-content: center;
  margin: 0 0 1.15rem;
}

.flight__art img {
  width: min(100%, 280px);
  height: auto;
  opacity: 0.92;
  filter: invert(1) brightness(1.05);
}


.flight__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.flight__header .panel__title {
  margin: 0;
}

.flight__chip {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid rgba(52, 199, 89, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  white-space: nowrap;
  font-weight: 600;
}

.flight-board {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  margin-bottom: 1rem;
}

.flight-board__leg {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.flight-board__leg--end {
  text-align: right;
  align-items: flex-end;
}

.flight-board__code {
  font-size: clamp(2rem, 6vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.flight-board__city {
  color: var(--muted);
  font-size: 0.92rem;
}

.flight-board__time {
  margin-top: 0.35rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--green);
  font-size: 0.95rem;
}

.flight-board__mid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: 4.5rem;
}

.flight-board__jet {
  width: 52px;
  height: auto;
  opacity: 0.95;
  filter: invert(1) brightness(1.05);
  transform: rotate(-8deg);
}

.flight-board__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.flight-map {
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #07090d;
  max-height: 280px;
}

.flight-map__svg {
  display: block;
  width: 100%;
  height: 280px;
  max-height: 280px;
}

.flight-map__land {
  fill: rgba(255, 255, 255, 0.06);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 0.8;
}

.flight-map__land--pt {
  fill: rgba(52, 199, 89, 0.18);
  stroke: rgba(52, 199, 89, 0.45);
}

.flight-map__land--mad {
  fill: rgba(52, 199, 89, 0.24);
  stroke: rgba(52, 199, 89, 0.55);
}

.flight-map__land--es {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 255, 255, 0.08);
}

.flight-map__path {
  stroke: #34c759;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 7;
  animation: flightDash 18s linear infinite;
}

.flight-map__airport {
  fill: #34c759;
}

.flight-map__label {
  fill: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: 0.08em;
}

.flight-map__caption {
  fill: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes flightDash {
  to { stroke-dashoffset: -130; }
}

.facts--flight {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 860px) {
  .flight-board {
    gap: 0.4rem;
  }
  .flight-board__code {
    font-size: 1.8rem;
  }
}


.flighty {
  background: var(--bg-card);
  border-radius: 1.15rem;
  padding: 1rem 1.15rem 1.05rem;
  border: 1px solid var(--line);
  margin: 0 0 1rem;
}

.flighty__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.flighty__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.flighty__brand-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: invert(1);
}

.flighty__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.05rem;
}

.flighty__airport {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.flighty__airport--end {
  justify-content: flex-end;
}

.flighty__code {
  font-size: clamp(2.2rem, 8vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #fff;
}

.flighty__badge {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #34c759;
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.flighty__track {
  min-width: 0;
  padding: 0 0.2rem;
}

.flighty__arc {
  width: 100%;
  height: 48px;
  display: block;
  overflow: visible;
}

.flighty__arc-path {
  fill: none;
  stroke: #34c759;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 8 8;
}

.flighty__plane {
  fill: #fff;
}

.flighty__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.flighty__status {
  color: #34c759;
  font-weight: 700;
  font-size: 1.05rem;
}

.flighty__eta {
  margin-top: 0.15rem;
  color: rgba(52, 199, 89, 0.75);
  font-size: 0.9rem;
}

.flighty__meta {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.flighty__tail,
.flighty__reg {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border-radius: 0.55rem;
  background: #ffd60a;
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}


.bidder--leader {
  margin: 0 0 0.75rem;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
  list-style: none;
}

.bidder-leader {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 0.95rem 1.05rem 1rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.bidder-leader__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.bidder-leader__status {
  color: #34c759;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.bidder-leader__status::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.4rem;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.2);
  vertical-align: 0.05rem;
}

.bidder-leader__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 1.4rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.bidder-leader__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
}

.bidder-leader__logo {
  flex: 0 0 auto;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
}

.bidder-leader__logo--initials {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}

.bidder-leader__copy {
  min-width: 0;
}

.bidder-leader__name {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.bidder-leader__name .bidder-link {
  color: var(--green);
}

.bidder-leader__desc {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.bidder-leader__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  text-align: right;
}

.bidder-leader__amount {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.bidder-leader__when {
  color: rgba(52, 199, 89, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .bidder-leader__row {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "logo copy"
      "meta meta";
  }

  .bidder-leader__logo,
  .bidder-leader__logo--initials {
    grid-area: logo;
  }

  .bidder-leader__copy {
    grid-area: copy;
  }

  .bidder-leader__meta {
    grid-area: meta;
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 0.35rem;
    width: 100%;
  }
}


.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(52, 199, 89, 0.35);
  background: linear-gradient(180deg, rgba(52, 199, 89, 0.08), rgba(10, 10, 10, 0.55));
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.05rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::after {
  content: "+";
  flex: 0 0 auto;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--green);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.faq__item[open] .faq__q::after {
  content: "-";
  background: var(--green-soft);
  border-color: rgba(52, 199, 89, 0.4);
}

.faq__a {
  padding: 0 1.05rem 1.05rem;
}

.faq__a p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
