@font-face {
  font-family: "Archivo";
  src: url("assets/fonts/archivo-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("assets/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Serif 4";
  src: url("assets/fonts/source-serif-4-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --noir: #101010;
  --noir-2: #1a1a1a;
  --white: #ffffff;
  --gold: #d8a340;
  --gold-deep: #ba8d38;
  --stone: #8c887a;
  --stone-dim: #7c7869;
  --bronze: #8a6a24;
  --line: rgba(255, 255, 255, 0.15);
  --line-gold: rgba(216, 163, 64, 0.34);
  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-mono: "IBM Plex Mono", Consolas, monospace;
  --ease-wingbeat: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 66px;
  --pad: clamp(20px, 5vw, 72px);
  --max: 1360px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--noir);
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--noir);
  color: var(--white);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-family: var(--font-display);
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

::selection {
  background: var(--gold);
  color: var(--noir);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--gold);
  color: var(--noir);
  font-size: 0.8rem;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(216, 163, 64, 0.18);
  background: var(--noir);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.site-progress {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.scroll-cue {
  position: fixed;
  z-index: 80;
  right: 14px;
  bottom: max(14px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid var(--line-gold);
  background: var(--noir);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 1;
  pointer-events: none;
  text-transform: lowercase;
  transform: translate3d(0, 0, 0);
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
}

.scroll-cue.is-hidden {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.scroll-cue__label {
  animation: cue-blink 1.2s steps(2, end) infinite;
}

.scroll-cue__signal {
  position: relative;
  width: 34px;
  height: 1px;
  overflow: hidden;
  background: rgba(216, 163, 64, 0.34);
}

.scroll-cue__signal i {
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--gold);
  animation: cue-travel 1.2s var(--ease-wingbeat) infinite;
}

@keyframes cue-blink {
  50% {
    opacity: 0.38;
  }
}

@keyframes cue-travel {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }

  20% {
    opacity: 1;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(29px, 0, 0);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: max-content;
}

.brand img {
  width: 32px;
  height: 30px;
  object-fit: contain;
}

.brand__type {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand__type strong {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
}

.brand__type span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
}

.site-nav {
  display: none;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--white);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--noir);
  font-size: 0.86rem;
  font-weight: 700;
  transition:
    transform 160ms var(--ease-wingbeat),
    background-color 160ms ease,
    border-color 160ms ease;
}

.button:hover {
  border-color: var(--gold-deep);
  background: var(--gold-deep);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px);
}

.button--small {
  min-height: 44px;
  padding: 0 11px;
  font-size: 0.7rem;
  line-height: 1.1;
  text-align: center;
}

.button--large {
  min-height: 58px;
  padding-inline: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-bottom: 1px solid var(--line-gold);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 2;
  transition: color 160ms ease, border-color 160ms ease;
}

.text-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.text-arrow {
  font-family: var(--font-mono);
  font-variant-emoji: text;
  line-height: 1;
}

.eyebrow,
.story-kicker {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: lowercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(260px, 36svh) auto auto;
  gap: 24px;
  align-content: center;
  padding: calc(var(--header-h) + 22px) var(--pad) 36px;
  border-bottom: 1px solid var(--line-gold);
  overflow: hidden;
}

.grid-rails {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  pointer-events: none;
}

.grid-rails i {
  border-left: 1px solid rgba(255, 255, 255, 0.045);
}

.grid-rails i:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.045);
}

.hero__visual {
  position: relative;
  z-index: 1;
  width: min(100%, 500px);
  height: 100%;
  min-height: 260px;
  justify-self: center;
}

.hero__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__routes path,
.hero__routes circle {
  fill: none;
  stroke: var(--line-gold);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.hero__routes path:first-child {
  stroke: rgba(255, 255, 255, 0.14);
}

.hero__mark-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(150px, 47vw, 220px);
  transform: translate(-50%, -50%);
  will-change: transform;
}

.hero__mark {
  width: 100%;
  height: auto;
}

.hero-chip,
.audience-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 16px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background: var(--gold);
  color: var(--noir);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(16, 16, 16, 0.18);
  font-family: var(--font-mono);
  font-size: 0.84rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  line-height: 1.2;
  text-wrap: balance;
  white-space: nowrap;
}

.hero-chip {
  align-items: flex-start;
}

.hero-chip::before,
.audience-chip::before {
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--noir);
  content: "";
}

.hero-chip--one {
  top: 15%;
  left: 0;
}

.hero-chip--two {
  top: 7%;
  right: 0;
}

.hero-chip--three {
  right: 1%;
  bottom: 12%;
}

.hero-chip--four {
  left: 2%;
  bottom: 8%;
}

.hero-chip--five {
  top: 48%;
  left: -1%;
}

.hero-chip--six {
  top: 48%;
  right: -1%;
}

.audience-chip::before {
  margin-top: 0;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(3.2rem, 13vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero h1 em,
.booking h2 em {
  color: var(--gold);
  font-style: normal;
}

.hero__lead {
  max-width: 41ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 4vw, 1.2rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero__booking-cta {
  box-shadow: 0 8px 22px rgba(216, 163, 64, 0.22);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
  will-change: transform;
}

.hero__booking-cta:hover {
  box-shadow: 0 12px 28px rgba(216, 163, 64, 0.3);
}

.hero__proof {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  padding-left: 15px;
  border-left: 1px solid var(--gold);
}

.hero__proof strong {
  font-size: 1.65rem;
  letter-spacing: -0.06em;
}

.hero__proof strong span {
  color: var(--stone);
  font-size: 0.85rem;
}

.hero__proof p {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: lowercase;
}

.hero__proof b {
  color: var(--white);
  font-weight: 500;
}

section.coverage-map {
  position: relative;
  scroll-margin-top: 0;
  border-bottom: 1px solid var(--line-gold);
  background: var(--noir);
}

.coverage-map__pin {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto minmax(300px, 50svh) minmax(215px, 1fr) auto;
  gap: 14px;
  padding: calc(var(--header-h) + 18px) var(--pad) 20px;
  overflow: hidden;
}

.map-topline {
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.map-counter {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
}

.map-counter span {
  color: var(--gold);
}

.map-stage {
  position: relative;
  contain: layout paint style;
  isolation: isolate;
  overflow: clip;
  width: min(100%, 680px);
  height: 100%;
  min-height: 300px;
  justify-self: center;
}

.flight-trail {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.flight-trail path {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.map-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-line {
  fill: none;
  stroke: var(--gold);
  stroke-dasharray: none;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.15;
  vector-effect: non-scaling-stroke;
}

.map-vertex {
  fill: var(--gold);
  opacity: 0.72;
}

.map-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(69vw, 265px);
  aspect-ratio: 1;
  border: 1px solid rgba(216, 163, 64, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-orbit::before,
.map-orbit::after {
  position: absolute;
  inset: 13%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.map-orbit::after {
  inset: 36%;
  border-color: var(--line-gold);
}

.map-mark {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(45vw, 195px);
  height: auto;
  transform: translate(-50%, -50%);
  transform-origin: 50% 70%;
  will-change: transform;
}

.map-butterfly {
  z-index: 9;
  aspect-ratio: 133 / 120;
  height: auto;
  perspective: 600px;
  transform-style: preserve-3d;
}

.map-butterfly__core,
.map-wing,
.map-wing img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-butterfly__core,
.map-wing img {
  object-fit: contain;
}

.map-butterfly__core {
  opacity: 0.28;
}

.map-wing {
  z-index: 1;
  transform-style: preserve-3d;
  will-change: transform;
}

.map-wing--left {
  clip-path: polygon(0 0, 53% 0, 53% 100%, 0 100%);
}

.map-wing--right {
  clip-path: polygon(53% 0, 100% 0, 100% 100%, 53% 100%);
}

.map-ghost-index {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(8rem, 38vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.11em;
  line-height: 0.7;
  opacity: 0.08;
  transform: translate(-51%, -50%);
  user-select: none;
}

.audience-chip {
  z-index: 3;
}

.audience-chip--one {
  top: 12%;
  left: 0;
}

.audience-chip--two {
  top: 8%;
  right: 0;
}

.audience-chip--three {
  right: 0;
  bottom: 10%;
}

.audience-chip--four {
  left: 0;
  bottom: 9%;
}

.product-node {
  position: absolute;
  z-index: 10;
  width: 140px;
  min-height: 66px;
  padding: 10px 11px 11px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: var(--noir);
}

.product-node > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.product-node strong {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.18;
}

.product-node small {
  display: block;
  margin-top: 5px;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  line-height: 1.4;
}

.product-node--one {
  top: 0;
  left: calc(50% - 70px);
}

.product-node--two {
  top: 26%;
  right: 0;
}

.product-node--three {
  right: 3%;
  bottom: 0;
}

.product-node--four {
  bottom: 0;
  left: 3%;
}

.product-node--five {
  top: 26%;
  left: 0;
}

.product-node--six {
  bottom: 8%;
  left: 15%;
}

.product-node--seven {
  top: 48%;
  left: 0;
}

.product-node--eight {
  bottom: 8%;
  right: 15%;
}

.factor {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
  width: 140px;
  min-height: 50px;
  padding: 10px 11px;
  border: 1px solid var(--line-gold);
  border-radius: 4px;
  background: rgba(16, 16, 16, 0.96);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: lowercase;
}

.factor span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.factor--one {
  top: 0;
  left: calc(50% - 70px);
}

.factor--two {
  top: 26%;
  right: 0;
}

.factor--three {
  right: 3%;
  bottom: 0;
}

.factor--four {
  bottom: 0;
  left: 3%;
}

.factor--five {
  top: 26%;
  left: 0;
}

.flight-card {
  position: absolute;
  z-index: 12;
  top: 50%;
  left: 50%;
  width: min(92%, 390px);
  padding: 16px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--white);
  color: var(--noir);
  transform: translate(-50%, -44%);
}

.flight-card header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16, 16, 16, 0.22);
}

.flight-card header img {
  width: 30px;
  height: 28px;
}

.flight-card header div {
  display: grid;
  gap: 3px;
}

.flight-card header strong {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

.flight-card header span,
.flight-card header b,
.flight-card__row span,
.flight-card footer {
  color: var(--bronze);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.flight-card__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(16, 16, 16, 0.12);
}

.flight-card__row strong {
  font-size: 0.72rem;
  line-height: 1.4;
}

.flight-card footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 11px;
}

.guide-badge {
  position: absolute;
  z-index: 13;
  left: 5%;
  bottom: 5%;
  width: min(90%, 330px);
  display: grid;
  gap: 5px;
  padding: 12px 14px;
  border-left: 2px solid var(--gold);
  background: var(--noir);
  transform: none;
}

.guide-badge span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.guide-badge strong {
  font-size: 0.8rem;
  line-height: 1.35;
}

.map-copy {
  position: relative;
  width: min(100%, 640px);
  min-height: 215px;
}

.mid-cta {
  position: relative;
  padding: clamp(72px, 9vw, 124px) var(--pad);
  border-bottom: 1px solid var(--line-gold);
  background: var(--noir-2);
}

.mid-cta__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 6vw, 86px);
  align-items: end;
}

.mid-cta__copy {
  display: grid;
  gap: 16px;
}

.mid-cta h2 {
  max-width: 13ch;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  letter-spacing: -0.052em;
  line-height: 0.96;
  text-wrap: balance;
}

.mid-cta h2 em {
  color: var(--gold);
  font-style: normal;
}

.mid-cta__copy > p:last-child {
  max-width: 48ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.58;
}

.mid-cta__action {
  display: grid;
  gap: 13px;
  justify-items: start;
}

.mid-cta__art {
  width: clamp(180px, 22vw, 290px);
  height: auto;
  margin-bottom: clamp(4px, 1.5vw, 16px);
}

.mid-cta__action > span {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: lowercase;
}

.map-story {
  position: relative;
  inset: auto;
  display: grid;
  align-content: center;
  gap: 11px;
  visibility: visible;
  opacity: 1;
}

@media (min-width: 1280px) {
  .motion-ready .map-story {
    position: absolute;
    inset: 0;
    visibility: hidden;
    opacity: 0;
  }

  .motion-ready .map-story.is-active {
    visibility: visible;
    opacity: 1;
  }
}

html:not(.motion-ready) .coverage-map__pin {
  min-height: auto;
  overflow: visible;
}

html:not(.motion-ready) .map-copy {
  display: grid;
  gap: 36px;
  min-height: auto;
}

html:not(.motion-ready) .audience-chip,
html:not(.motion-ready) .factor,
html:not(.motion-ready) .flight-card,
html:not(.motion-ready) .guide-badge,
html:not(.motion-ready) .flight-trail {
  display: none;
}

.map-story h2 {
  max-width: 16ch;
  font-size: clamp(1.75rem, 7vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 1;
  text-wrap: balance;
}

.map-story > p:last-of-type {
  max-width: 47ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.5;
}

.map-story .text-link {
  margin-top: 2px;
}

.map-progress {
  display: none;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

@media (min-width: 1280px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .map-progress {
    display: grid;
  }
}

.map-progress button {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  align-items: center;
  padding: 5px 0 9px;
  border: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--stone);
  cursor: pointer;
  font-family: var(--font-mono);
  text-align: left;
  transition: border-color 160ms ease, color 160ms ease;
}

.map-progress button span {
  color: inherit;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.map-progress button small {
  min-width: 0;
  overflow: hidden;
  font-family: inherit;
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  text-transform: lowercase;
  white-space: nowrap;
}

.map-progress button:hover {
  border-color: rgba(216, 163, 64, 0.62);
  color: var(--white);
}

.map-progress button.is-current,
.map-progress button[aria-current="step"] {
  border-color: var(--gold);
  color: var(--gold);
}

.map-progress button:focus-visible {
  outline-offset: 1px;
}

.section {
  position: relative;
  padding: clamp(88px, 13vw, 176px) var(--pad);
}

.section > *:not(.section-flight) {
  position: relative;
  z-index: 1;
}

.audiences,
.process,
.proof {
  overflow: clip;
}

.section-flight {
  position: absolute;
  z-index: 0;
  right: var(--pad);
  width: clamp(54px, 10vw, 118px);
  height: auto;
  opacity: 0;
  pointer-events: none;
}

.section-flight--one {
  top: 10%;
}

.section-flight--two {
  top: 12%;
}

.section-flight--three {
  top: 10%;
}

.word-window {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.07em;
  margin-bottom: -0.07em;
  vertical-align: bottom;
}

.kinetic-word {
  display: inline-block;
}

.section__heading {
  width: min(100%, var(--max));
  display: grid;
  gap: 16px;
  margin: 0 auto clamp(48px, 8vw, 92px);
}

.section__heading h2,
.proof-copy h2,
.booking h2 {
  max-width: 15ch;
  font-size: clamp(2.35rem, 9vw, 5.6rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section__heading > p:last-child {
  max-width: 53ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  line-height: 1.6;
}

.audiences {
  background: var(--noir);
}

.audience-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line-gold);
}

.audience-row {
  display: grid;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.audience-row__number {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.65rem;
}

.audience-row > div {
  display: grid;
  gap: 7px;
}

.audience-row h3 {
  max-width: 24ch;
  font-size: clamp(1.35rem, 5vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.audience-row > p {
  max-width: 47ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.55;
}

.audience-row > a {
  width: fit-content;
  align-self: end;
  border-bottom: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 2;
}

.process {
  border-block: 1px solid var(--line-gold);
  background: var(--noir);
}

.process-grid {
  width: min(100%, var(--max));
  display: grid;
  gap: 10px;
  margin: 0 auto;
}

.process-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--noir);
}

.process-card > span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.64rem;
}

.process-card__icon {
  width: clamp(72px, 7vw, 96px);
  height: auto;
  margin-top: 22px;
}

.process-card h3 {
  margin-top: auto;
  font-size: 2rem;
  letter-spacing: -0.045em;
}

.process-card p {
  margin-top: 10px;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.5;
}

.process-card small {
  margin-top: 18px;
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.proof {
  width: min(100%, var(--max));
  display: grid;
  gap: 64px;
  margin: 0 auto;
}

.proof-score {
  align-self: start;
  padding: 28px 0;
  border-block: 1px solid var(--line-gold);
}

.proof-score strong {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-size: clamp(6.5rem, 32vw, 12rem);
  letter-spacing: -0.09em;
  line-height: 0.75;
}

.proof-score > span {
  display: block;
  margin-top: 28px;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

.proof-copy {
  display: grid;
  gap: 32px;
}

.proof-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.proof-copy li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.proof-copy li span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.proof-copy li strong {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.fine-print {
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 0.78rem;
  line-height: 1.55;
}

.booking {
  min-height: 92svh;
  display: grid;
  align-items: center;
  gap: 48px;
  border-top: 1px solid var(--line-gold);
  background: var(--noir);
  overflow: hidden;
}

.booking__mark {
  position: relative;
  display: grid;
  place-items: center;
}

.booking__mark::before,
.booking__mark::after {
  position: absolute;
  width: min(70vw, 360px);
  aspect-ratio: 1;
  border: 1px solid var(--line-gold);
  border-radius: 50%;
  content: "";
}

.booking__mark::after {
  width: min(50vw, 240px);
  border-color: rgba(255, 255, 255, 0.1);
}

.booking__mark img {
  position: relative;
  z-index: 1;
  width: min(54vw, 260px);
}

.booking__copy {
  display: grid;
  gap: 22px;
}

.booking h2 {
  max-width: 10ch;
}

.booking__copy > p:not(.eyebrow, .booking__note) {
  max-width: 48ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.6vw, 1.25rem);
  line-height: 1.6;
}

.booking .button {
  width: 100%;
  max-width: 390px;
}

.booking__note {
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.site-footer {
  padding: 56px var(--pad) 24px;
  border-top: 1px solid var(--line-gold);
  background: var(--noir);
}

.site-footer__top {
  width: min(100%, var(--max));
  display: grid;
  gap: 24px;
  margin: 0 auto;
  padding-bottom: 38px;
}

.site-footer__top > p {
  max-width: 32ch;
  color: var(--stone);
  font-family: var(--font-serif);
  line-height: 1.5;
}

.site-footer__top > a:last-child {
  width: fit-content;
  border-bottom: 1px solid var(--line-gold);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 2;
}

.site-footer__disclosure {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.6;
}

.site-footer__disclosure strong {
  color: var(--white);
}

.site-footer__base {
  width: min(100%, var(--max));
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px auto 0;
  color: var(--stone);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

.site-footer__base a {
  border-bottom: 1px solid var(--line-gold);
  color: var(--white);
  transition: border-color 160ms ease, color 160ms ease;
}

.site-footer__base a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: var(--pad);
}

.error-page main {
  width: min(100%, 720px);
  display: grid;
  gap: 24px;
  justify-items: start;
}

.error-page main > img {
  width: 96px;
  height: auto;
}

.error-page h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 11vw, 7rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.error-page main > p:not(.eyebrow) {
  max-width: 38ch;
  color: var(--stone);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (min-width: 700px) {
  :root {
    --header-h: 74px;
  }

  .brand img {
    width: 38px;
    height: 35px;
  }

  .brand__type strong {
    font-size: 0.9rem;
  }

  .brand__type span {
    font-size: 0.56rem;
  }

  .button--small {
    min-height: 44px;
    padding: 0 17px;
    font-size: 0.75rem;
  }

  .hero {
    grid-template-rows: minmax(300px, 42svh) auto auto;
  }

  .hero__visual {
    min-height: 340px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
    gap: 22px;
  }

  .audience-row {
    grid-template-columns: 42px minmax(220px, 1fr) minmax(240px, 1fr);
    align-items: start;
    gap: 24px;
  }

  .audience-row > a {
    grid-column: 2;
  }

  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr auto;
    align-items: start;
  }

  .site-footer__base {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .site-nav {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    max-width: 1440px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 0.82fr) minmax(500px, 0.98fr);
    grid-template-rows: 1fr auto;
    column-gap: clamp(28px, 4vw, 66px);
    align-items: center;
    padding-top: calc(var(--header-h) + 30px);
    padding-bottom: 40px;
  }

  .hero__visual {
    grid-column: 2;
    grid-row: 1 / 3;
    width: min(100%, 650px);
    min-height: 560px;
  }

  .hero__mark-wrap {
    width: min(30vw, 340px);
  }

  .hero-chip {
    min-height: 44px;
    padding: 11px 16px;
    font-size: 0.88rem;
  }

  .hero-chip--one {
    top: 18%;
    left: 5%;
  }

  .hero-chip--two {
    top: 9%;
    right: 5%;
  }

  .hero-chip--three {
    right: 5%;
    bottom: 13%;
  }

  .hero-chip--four {
    left: 6%;
    bottom: 10%;
  }

  .hero-chip--five {
    top: 49%;
    left: 3%;
  }

  .hero-chip--six {
    top: 49%;
    right: 4%;
  }

  .hero__content {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    padding-bottom: 24px;
  }

  .hero h1 {
    max-width: 8.9ch;
    font-size: clamp(4.7rem, 6.2vw, 6.8rem);
  }

  .hero__proof {
    grid-column: 1;
    grid-row: 2;
  }

  .scroll-cue {
    right: var(--pad);
    bottom: 28px;
  }

  .coverage-map__pin {
    min-height: 100vh;
    grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
    grid-template-rows: auto 1fr auto;
    column-gap: clamp(30px, 5vw, 90px);
    padding-top: calc(var(--header-h) + 26px);
    padding-bottom: 30px;
  }

  .map-topline {
    grid-column: 1 / 3;
  }

  .map-stage {
    grid-column: 1;
    grid-row: 2;
    width: min(100%, 720px);
    min-height: 620px;
    align-self: center;
  }

  .map-mark {
    width: min(21vw, 280px);
  }

  .map-orbit {
    width: min(34vw, 480px);
  }

  .audience-chip {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 0.76rem;
  }

  .product-node {
    width: 184px;
    min-height: 82px;
    padding: 13px 15px 14px;
  }

  .product-node strong {
    font-size: 0.94rem;
  }

  .product-node small {
    font-size: 0.82rem;
  }

  .product-node--one {
    top: 0;
    left: calc(50% - 92px);
  }

  .product-node--two {
    top: 13%;
    right: 3%;
  }

  .product-node--three {
    top: 40%;
    right: 0;
    bottom: auto;
  }

  .product-node--four {
    right: 4%;
    bottom: 18%;
    left: auto;
  }

  .product-node--five {
    top: auto;
    bottom: 8%;
    left: calc(50% - 92px);
  }

  .product-node--six {
    bottom: 18%;
    left: 4%;
  }

  .product-node--seven {
    top: 40%;
    left: 0;
  }

  .product-node--eight {
    top: 13%;
    right: auto;
    bottom: auto;
    left: 3%;
  }

  .factor {
    width: 198px;
    min-height: 64px;
    padding: 13px 15px;
    font-size: 0.84rem;
  }

  .factor--one {
    top: 0;
    left: calc(50% - 99px);
  }

  .factor--two {
    top: 25%;
    right: 0;
  }

  .factor--three {
    right: 9%;
    bottom: 0;
  }

  .factor--four {
    bottom: 0;
    left: 9%;
  }

  .factor--five {
    top: 25%;
    left: 0;
  }

  .flight-card {
    width: min(70%, 480px);
    padding: 22px;
  }

  .flight-card__row {
    grid-template-columns: 115px 1fr;
    padding: 15px 0;
  }

  .flight-card__row strong {
    font-size: 0.75rem;
  }

  .guide-badge {
    left: 50%;
    width: 390px;
    margin-left: -195px;
    bottom: 8%;
  }

  .map-copy {
    grid-column: 2;
    grid-row: 2;
    min-height: 420px;
    align-self: center;
    clip-path: inset(-40% 0 -40% 0);
  }

  .map-story {
    align-content: center;
  }

  .map-story h2 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 4.2vw, 5.2rem);
  }

  .map-story > p:last-of-type {
    font-size: 1.1rem;
  }

  .map-progress {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .mid-cta__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  }

  .section__heading {
    grid-template-columns: minmax(190px, 0.3fr) minmax(480px, 0.7fr);
    column-gap: 60px;
  }

  .section__heading .eyebrow {
    grid-column: 1;
    grid-row: 1 / 3;
    padding-top: 10px;
  }

  .section__heading h2,
  .section__heading > p:last-child {
    grid-column: 2;
  }

  .audience-row {
    grid-template-columns: 48px minmax(320px, 0.8fr) minmax(320px, 0.8fr) auto;
    align-items: center;
    min-height: 200px;
  }

  .audience-row > a {
    grid-column: auto;
  }

  .process-card {
    min-height: 400px;
    padding: 32px;
  }

  .process-card h3 {
    font-size: 3rem;
  }

  .proof {
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(70px, 10vw, 150px);
    align-items: start;
  }

  .proof-score strong {
    font-size: clamp(9rem, 15vw, 14rem);
  }

  .proof-copy h2 {
    font-size: clamp(3.5rem, 5.2vw, 6rem);
  }

  .proof-copy li {
    grid-template-columns: 42px 1fr;
    padding: 26px 0;
  }

  .proof-copy li strong {
    font-size: 1.2rem;
  }

  .booking {
    min-height: 100vh;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(60px, 10vw, 150px);
  }

  .booking__mark img {
    width: min(28vw, 390px);
  }

  .booking__mark::before {
    width: min(34vw, 490px);
  }

  .booking__mark::after {
    width: min(24vw, 330px);
  }

  .booking h2 {
    font-size: clamp(4rem, 6vw, 7rem);
  }
}

@media (min-width: 1400px) {
  .hero,
  .coverage-map__pin {
    padding-inline: max(var(--pad), calc((100vw - 1500px) / 2));
  }

  .hero {
    padding-inline: var(--pad);
  }
}

@media (max-width: 1279px) and (max-height: 720px) {
  .hero {
    grid-template-rows: minmax(220px, 34svh) auto auto;
    gap: 18px;
    padding-bottom: 24px;
  }

  .hero__visual {
    min-height: 220px;
  }

  .coverage-map__pin {
    grid-template-rows: auto minmax(260px, 46svh) minmax(168px, 1fr) auto;
    gap: 8px;
    padding-top: calc(var(--header-h) + 10px);
    padding-bottom: 10px;
  }

  .map-stage {
    min-height: 260px;
  }

  .map-orbit {
    width: min(58vw, 190px);
  }

  .map-mark {
    width: min(36vw, 132px);
  }

  .audience-chip {
    min-height: 22px;
    padding: 3px 6px;
    font-size: 0.57rem;
  }

  .product-node {
    width: 130px;
    min-height: 0;
    padding: 5px 7px 6px;
  }

  .product-node > span {
    font-size: 0.68rem;
  }

  .product-node strong {
    margin-top: 2px;
    font-size: 0.76rem;
    line-height: 1.08;
  }

  .product-node small {
    display: block;
    margin-top: 3px;
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .factor {
    width: 130px;
    min-height: 38px;
    padding: 7px 8px;
    font-size: 0.76rem;
  }

  .product-node--one,
  .factor--one {
    left: calc(50% - 65px);
  }

  .product-node--three,
  .factor--three {
    right: 0;
  }

  .product-node--four,
  .factor--four {
    left: 0;
  }

  .product-node--two,
  .product-node--five,
  .factor--two,
  .factor--five {
    top: 30%;
  }

  .flight-card {
    width: min(88%, 330px);
    padding: 10px;
  }

  .flight-card header {
    padding-bottom: 7px;
  }

  .flight-card__row {
    grid-template-columns: 72px 1fr;
    padding: 6px 0;
  }

  .flight-card__row strong {
    font-size: 0.68rem;
  }

  .flight-card footer {
    padding-top: 7px;
  }

  .guide-badge {
    bottom: 1%;
    padding: 8px 10px;
  }

  .map-copy {
    min-height: 168px;
  }

  .map-story {
    gap: 7px;
  }

  .map-story h2 {
    font-size: clamp(1.45rem, 7vw, 1.75rem);
  }

  .map-story > p:last-of-type {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .map-story .text-link {
    font-size: 0.72rem;
    line-height: 1.6;
  }
}

/* Mobile keeps the copy in normal flow and uses one sticky visual stage.
   Each story rests before a short, discrete state transition. */
@media (max-width: 1279px) {
  :root {
    --header-h: 62px;
    --pad: clamp(18px, 5.2vw, 34px);
  }

  .site-header {
    gap: 12px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 30px;
    height: 28px;
  }

  .brand__type strong {
    font-size: 0.76rem;
    letter-spacing: 0.17em;
  }

  .brand__type span {
    font-size: 0.49rem;
    letter-spacing: 0.18em;
  }

  .button--small {
    min-height: 40px;
    max-width: 154px;
    padding-inline: 12px;
    font-size: 0.68rem;
  }

  .scroll-cue {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-rows: minmax(310px, 42svh) auto auto;
    gap: 22px;
    align-content: start;
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 56px;
  }

  .hero__visual {
    width: min(100%, 430px);
    min-height: 310px;
  }

  .hero__routes {
    inset: 4% 7%;
    width: 86%;
    height: 92%;
    opacity: 0.58;
  }

  .hero__mark-wrap {
    width: clamp(132px, 36vw, 178px);
  }

  .hero-chip {
    max-width: 49%;
    min-height: 34px;
    padding: 8px 10px;
    font-size: clamp(0.66rem, 2.45vw, 0.78rem);
    letter-spacing: 0.01em;
    white-space: normal;
  }

  .hero-chip::before {
    flex-basis: 5px;
    width: 5px;
    height: 5px;
    margin-right: 7px;
  }

  .hero-chip--one {
    top: 2%;
    left: 0;
  }

  .hero-chip--two {
    top: 2%;
    right: 0;
  }

  .hero-chip--three {
    right: 0;
    bottom: 0;
  }

  .hero-chip--four {
    bottom: 0;
    left: 0;
  }

  .hero-chip--five {
    top: 44%;
    left: 0;
  }

  .hero-chip--six {
    top: 44%;
    right: 0;
  }

  .hero__content {
    gap: 16px;
  }

  .hero__content > .eyebrow {
    max-width: 31ch;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.6vw, 4.25rem);
    line-height: 0.94;
  }

  .hero__lead {
    font-size: 1.04rem;
    font-weight: 450;
    line-height: 1.52;
  }

  .hero__proof {
    margin-top: 4px;
  }

  .coverage-map__pin {
    position: relative;
    min-height: auto;
    display: block;
    padding-top: calc(var(--header-h) + 12px);
    padding-bottom: 0;
    overflow: visible;
  }

  .map-topline {
    position: sticky;
    z-index: 20;
    top: var(--header-h);
    min-width: 0;
    min-height: 44px;
    gap: 12px;
    margin-inline: calc(var(--pad) * -1);
    padding-inline: var(--pad);
    border-bottom: 1px solid var(--line-gold);
    background: rgba(16, 16, 16, 0.97);
  }

  .map-topline .eyebrow {
    max-width: 26ch;
    overflow: hidden;
    font-size: 0.64rem;
    letter-spacing: 0.1em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .map-counter {
    flex: 0 0 auto;
    font-size: 0.68rem;
  }

  .map-stage {
    --mobile-node-w: clamp(142px, 43vw, 172px);
    width: min(100%, 420px);
    height: clamp(190px, 36svh, 300px);
    min-height: 190px;
    overflow: hidden;
  }

  .map-lines,
  .flight-trail,
  .audience-chip,
  .product-node,
  .factor,
  .flight-card,
  .guide-badge {
    display: none;
  }

  .coverage-map__pin.mobile-map-motion .map-stage {
    position: sticky;
    z-index: 12;
    top: calc(var(--header-h) + 44px);
    width: min(100%, 520px);
    height: clamp(380px, 54svh, 470px);
    min-height: 380px;
    border-bottom: 1px solid var(--line-gold);
    background:
      radial-gradient(circle at 50% 48%, rgba(216, 163, 64, 0.075), transparent 47%),
      var(--noir);
  }

  .coverage-map__pin.mobile-map-motion .map-lines,
  .coverage-map__pin.mobile-map-motion .flight-trail {
    display: block;
  }

  .coverage-map__pin.mobile-map-motion .audience-chip {
    display: inline-flex;
    min-height: 25px;
    padding: 5px 7px;
    font-size: clamp(0.52rem, 1.75vw, 0.66rem);
    letter-spacing: 0.015em;
  }

  .coverage-map__pin.mobile-map-motion .audience-chip::before {
    flex-basis: 4px;
    width: 4px;
    height: 4px;
    margin-right: 5px;
  }

  .coverage-map__pin.mobile-map-motion .audience-chip--one,
  .coverage-map__pin.mobile-map-motion .audience-chip--two {
    top: 5%;
  }

  .coverage-map__pin.mobile-map-motion .audience-chip--three,
  .coverage-map__pin.mobile-map-motion .audience-chip--four {
    bottom: 5%;
  }

  .coverage-map__pin.mobile-map-motion .product-node,
  .coverage-map__pin.mobile-map-motion .factor {
    width: var(--mobile-node-w);
  }

  .coverage-map__pin.mobile-map-motion .product-node {
    display: block;
    min-height: 0;
    padding: 8px 9px 9px;
    background: rgba(16, 16, 16, 0.97);
  }

  .coverage-map__pin.mobile-map-motion .product-node > span {
    font-size: clamp(0.56rem, 1.65vw, 0.68rem);
  }

  .coverage-map__pin.mobile-map-motion .product-node strong {
    margin-top: 2px;
    font-size: clamp(0.7rem, 2.35vw, 0.86rem);
    line-height: 1.1;
  }

  .coverage-map__pin.mobile-map-motion .product-node small {
    margin-top: 3px;
    font-size: clamp(0.6rem, 1.9vw, 0.72rem);
    line-height: 1.2;
  }

  .coverage-map__pin.mobile-map-motion .product-node--one {
    top: 12px;
    left: 0;
    margin-left: 0;
  }

  .coverage-map__pin.mobile-map-motion .product-node--two {
    top: 12px;
    right: 0;
  }

  .coverage-map__pin.mobile-map-motion .product-node--three {
    top: 92px;
    right: auto;
    bottom: auto;
    left: 0;
  }

  .coverage-map__pin.mobile-map-motion .product-node--four {
    top: 92px;
    right: 0;
    bottom: auto;
    left: auto;
  }

  .coverage-map__pin.mobile-map-motion .product-node--five {
    top: 172px;
    right: auto;
    bottom: auto;
    left: 0;
    margin-left: 0;
  }

  .coverage-map__pin.mobile-map-motion .product-node--six {
    top: 172px;
    right: 0;
    bottom: auto;
    left: auto;
  }

  .coverage-map__pin.mobile-map-motion .product-node--seven {
    top: 252px;
    left: 0;
  }

  .coverage-map__pin.mobile-map-motion .product-node--eight {
    top: 252px;
    right: 0;
    bottom: auto;
    left: auto;
  }

  .coverage-map__pin.mobile-map-motion .factor--one {
    left: 50%;
    margin-left: calc(var(--mobile-node-w) * -0.5);
  }

  .coverage-map__pin.mobile-map-motion .factor--two,
  .coverage-map__pin.mobile-map-motion .factor--five {
    top: 27%;
  }

  .coverage-map__pin.mobile-map-motion .factor--three,
  .coverage-map__pin.mobile-map-motion .factor--four {
    bottom: 1%;
  }

  .coverage-map__pin.mobile-map-motion .factor--three {
    right: 0;
  }

  .coverage-map__pin.mobile-map-motion .factor--four {
    left: 0;
  }

  .coverage-map__pin[data-mobile-step="2"] .map-butterfly,
  .coverage-map__pin[data-mobile-step="2"] .map-orbit,
  .coverage-map__pin[data-mobile-step="2"] .flight-trail {
    opacity: 0.18 !important;
  }

  .coverage-map__pin.mobile-map-motion .factor {
    display: flex;
    min-height: 36px;
    padding: 7px 8px;
    font-size: clamp(0.62rem, 1.9vw, 0.74rem);
  }

  .coverage-map__pin.mobile-map-motion .flight-card {
    display: block;
    width: min(92%, 390px);
    padding: 10px;
  }

  .coverage-map__pin.mobile-map-motion .flight-card header {
    padding-bottom: 7px;
  }

  .coverage-map__pin.mobile-map-motion .flight-card__row {
    grid-template-columns: 72px 1fr;
    padding: 6px 0;
  }

  .coverage-map__pin.mobile-map-motion .flight-card__row strong {
    font-size: 0.66rem;
  }

  .coverage-map__pin.mobile-map-motion .flight-card footer {
    padding-top: 7px;
  }

  .coverage-map__pin.mobile-map-motion .guide-badge {
    display: grid;
    top: 62%;
    right: 11%;
    bottom: auto;
    left: 11%;
    width: auto;
    padding: 9px 11px;
  }

  .coverage-map__pin.mobile-map-motion .guide-badge strong {
    font-size: clamp(0.7rem, 2.2vw, 0.84rem);
  }

  .map-orbit {
    width: min(42vw, 160px);
    border-color: rgba(216, 163, 64, 0.24);
  }

  .map-orbit::before {
    inset: 18%;
  }

  .map-orbit::after {
    display: none;
  }

  .map-mark {
    width: min(27vw, 106px);
  }

  .map-ghost-index {
    display: none;
  }

  .coverage-map__pin.mobile-map-motion .map-orbit {
    width: min(50vw, 190px);
  }

  .coverage-map__pin.mobile-map-motion .map-ghost-index {
    display: block;
    font-size: clamp(5.5rem, 26vw, 8.5rem);
    opacity: 0.055;
  }

  .map-copy {
    position: static;
    width: 100%;
    display: grid;
    min-height: 0;
    overflow: visible;
  }

  .map-story,
  .map-story.is-active {
    position: relative;
    inset: auto;
    min-height: clamp(440px, 68svh, 580px);
    align-content: center;
    gap: 10px;
    padding-block: 64px;
    border-top: 1px solid var(--line-gold);
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .coverage-map__pin.mobile-map-motion .map-story,
  .coverage-map__pin.mobile-map-motion .map-story.is-active {
    min-height: clamp(430px, 64svh, 610px);
    align-content: start;
    padding-top: clamp(44px, 8svh, 72px);
    padding-bottom: clamp(76px, 14svh, 118px);
  }

  .coverage-map__pin.mobile-map-motion .map-story.is-current::before {
    position: absolute;
    top: -1px;
    left: 0;
    width: 72px;
    height: 2px;
    background: var(--gold);
    content: "";
  }

  .map-story:last-child {
    border-bottom: 1px solid var(--line-gold);
  }

  .map-story .story-kicker {
    max-width: 39ch;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    line-height: 1.42;
  }

  .map-story h2 {
    max-width: 15ch;
    font-size: clamp(1.82rem, 8.5vw, 2.55rem);
    line-height: 0.98;
  }

  .map-story > p:last-of-type {
    max-width: 43ch;
    font-size: clamp(0.98rem, 4.1vw, 1.08rem);
    font-weight: 450;
    line-height: 1.44;
  }

  .map-story .text-link {
    margin-top: 1px;
    font-size: 0.82rem;
    line-height: 1.65;
  }

  .map-progress {
    display: none;
  }

  .mid-cta {
    padding-block: clamp(72px, 18vw, 100px);
  }

  .mid-cta__inner {
    gap: 30px;
  }

  .mid-cta h2 {
    font-size: clamp(2.35rem, 10.6vw, 3.45rem);
  }

  .mid-cta__copy > p:last-child {
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.52;
  }

  .section {
    padding-block: clamp(76px, 19vw, 104px);
  }

  .section-flight {
    display: none;
  }

  .section__heading {
    margin-bottom: 44px;
  }

  .section__heading h2,
  .proof-copy h2,
  .booking h2 {
    font-size: clamp(2.25rem, 10.4vw, 3.35rem);
    line-height: 0.98;
  }

  .section__heading > p:last-child,
  .audience-row > p,
  .process-card p,
  .booking__copy > p:not(.eyebrow, .booking__note) {
    font-size: 1rem;
    font-weight: 450;
    line-height: 1.52;
  }

  .audience-row {
    gap: 14px;
    padding-block: 26px;
  }

  .process-card {
    min-height: 230px;
  }

  .proof {
    gap: 48px;
  }

  .booking {
    min-height: auto;
    gap: 32px;
    padding-top: 86px;
    padding-bottom: 86px;
    overflow: visible;
  }

  .booking__mark {
    display: none;
  }

  .booking__copy {
    gap: 18px;
  }

  .booking .button {
    min-height: 54px;
    padding-inline: 16px;
  }

  .booking__note {
    font-size: 0.72rem;
    letter-spacing: 0.045em;
  }

  .site-footer {
    padding-top: 44px;
    padding-bottom: max(22px, env(safe-area-inset-bottom));
  }

  .site-footer__top {
    gap: 18px;
    padding-bottom: 26px;
  }

  .site-footer__disclosure {
    padding-block: 20px;
    font-size: 0.8rem;
    line-height: 1.52;
  }

  .site-footer__base {
    margin-top: 16px;
  }
}

@media (max-width: 1279px) and (max-height: 520px) and (orientation: landscape) {
  .coverage-map__pin .map-stage {
    display: none;
  }

  .coverage-map__pin .map-story,
  .coverage-map__pin .map-story.is-active {
    min-height: 430px;
    padding-top: 40px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .coverage-map__pin:not(.mobile-map-motion) .flight-trail path,
  .coverage-map__pin:not(.mobile-map-motion) .map-line {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}

@media (min-width: 1280px) and (max-height: 820px) {
  .coverage-map__pin {
    padding-top: calc(var(--header-h) + 18px);
    padding-bottom: 18px;
  }

  .map-stage {
    min-height: min(620px, calc(100vh - 176px));
  }

  .map-copy {
    min-height: min(420px, calc(100vh - 176px));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .scroll-cue__label,
  .scroll-cue__signal i {
    animation: none;
  }

  .coverage-map__pin {
    min-height: auto;
    overflow: visible;
  }

  .map-stage {
    min-height: 470px;
  }

  .audience-chip,
  .factor,
  .flight-card,
  .guide-badge {
    display: none;
  }

  .product-node {
    visibility: visible !important;
    opacity: 1 !important;
  }

  .map-copy {
    position: static;
    display: grid;
    gap: 36px;
    min-height: auto;
  }

  .map-story,
  .map-story.is-active {
    position: static;
    visibility: visible;
    opacity: 1;
    transform: none !important;
  }
}

@media (max-width: 1279px) and (prefers-reduced-motion: reduce) {
  .map-stage {
    height: clamp(190px, 36svh, 300px);
    min-height: 190px;
  }

  .map-copy {
    gap: 0;
  }
}
