@font-face {
  font-family: "Exo 2";
  src: url("assets/Exo2.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/Inter.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --navy: #0b1320;
  --navy-soft: #12203a;
  --lime: #7cfc00;
  --teal: #00e676;
  --blue: #00bfff;
  --lime-accessible: #3d7a00;
  --teal-accessible: #00753c;
  --blue-accessible: #0069a8;
  --slate: #6b7280;
  --soft: #f2f4f7;
  --white: #ffffff;
  --border: #e4e7ec;
  --ink-muted: #a8b0bf;
  --gradient: linear-gradient(135deg, var(--lime), var(--teal) 55%, var(--blue));
  --shell: min(1240px, calc(100vw - 48px));
  --shadow: 0 28px 80px rgba(5, 13, 28, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--navy);
  background: var(--white);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; }

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

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

button { font: inherit; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 16px;
  color: var(--navy);
  background: var(--lime);
  border-radius: 10px;
  transform: translateY(-160%);
}

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

.shell { width: var(--shell); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--white);
  background: rgba(11, 19, 32, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled { background: rgba(11, 19, 32, 0.94); box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12); }

.header-inner { height: 82px; display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; width: 206px; min-height: 44px; align-items: center; }

.brand img { width: 100%; height: auto; }

.primary-nav { display: flex; align-items: center; gap: 34px; font-size: 13px; font-weight: 650; }

.primary-nav > a:not(.nav-cta) { color: #d9dee8; transition: color 150ms ease; }
.primary-nav > a:not(.nav-cta):hover { color: var(--lime); }

.nav-cta {
  min-height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  background: var(--lime);
  border-radius: 999px;
}

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 860px;
  padding: 160px 0 42px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 17% 25%, rgba(0, 191, 255, 0.1), transparent 28%),
    linear-gradient(138deg, #0b1320 0%, #101c31 50%, #09101b 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to right, black, transparent 62%);
}

.hero-glow {
  position: absolute;
  width: 580px;
  height: 580px;
  top: 50px;
  right: 2vw;
  background: radial-gradient(circle, rgba(0, 230, 118, 0.1), transparent 67%);
  filter: blur(10px);
}

.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr) minmax(520px, 0.92fr); gap: 68px; align-items: center; }

.hero-copy { padding-bottom: 30px; }

.eyebrow, .section-kicker {
  margin: 0 0 24px;
  color: var(--teal-accessible);
  font-family: "Inter", sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow { display: flex; align-items: center; color: var(--lime); }
.eyebrow span { width: 28px; height: 2px; margin-right: 12px; background: var(--gradient); }

h1, h2, h3, p { text-wrap: balance; }

h1, h2, h3 { margin-top: 0; font-family: "Exo 2", sans-serif; }

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(52px, 5.35vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h1 em {
  color: transparent;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
}

.hero-lede { max-width: 620px; margin: 0 0 32px; color: #c7ced9; font-size: 17px; line-height: 1.75; }

.hero-actions { display: flex; align-items: center; gap: 28px; }

.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--lime); box-shadow: 0 14px 40px rgba(124, 252, 0, 0.16); }
.button-primary:hover { box-shadow: 0 18px 50px rgba(124, 252, 0, 0.26); }
.button svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; color: #d7dce4; font-size: 14px; font-weight: 650; border-bottom: 1px solid rgba(255,255,255,.3); }
.text-link:hover { color: var(--lime); }

.hero-proof { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hero-proof div { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.18); }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { margin-bottom: 6px; font-family: "Exo 2", sans-serif; font-size: 14px; }
.hero-proof span { color: #8f99aa; font-size: 10px; line-height: 1.45; }

.atlas {
  position: relative;
  width: 100%;
  height: 650px;
  overflow: hidden;
  color: var(--navy);
  background: #e7ecee;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 30px;
  box-shadow: 0 35px 100px rgba(0,0,0,.4);
}

.atlas::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 9px rgba(255,255,255,.35); border-radius: inherit; }

.map-grid {
  position: absolute;
  inset: 0;
  opacity: .75;
  background:
    linear-gradient(28deg, transparent 36%, rgba(255,255,255,.95) 36.3%, rgba(255,255,255,.95) 38%, transparent 38.3%),
    linear-gradient(110deg, transparent 48%, rgba(255,255,255,.9) 48.3%, rgba(255,255,255,.9) 51%, transparent 51.3%),
    linear-gradient(8deg, transparent 60%, rgba(255,255,255,.8) 60.3%, rgba(255,255,255,.8) 63%, transparent 63.3%),
    repeating-linear-gradient(0deg, transparent 0 71px, rgba(189,199,204,.48) 72px, transparent 73px),
    repeating-linear-gradient(90deg, transparent 0 82px, rgba(189,199,204,.5) 83px, transparent 84px);
}

.atlas-coordinates { position: absolute; z-index: 3; top: 92px; left: 20px; color: #5b6670; font: 700 9px/1.65 "Inter"; letter-spacing: .12em; }

.route-line { position: absolute; z-index: 2; width: 110%; height: 110%; inset: -5%; }
.route-line path { stroke-linecap: round; stroke-linejoin: round; }
.route-shadow { stroke: rgba(255,255,255,.95); stroke-width: 14; }
.route-dash { stroke: var(--blue-accessible); stroke-width: 6; stroke-dasharray: 10 10; }

.map-label { position: absolute; z-index: 1; color: #8b969b; font: 700 8px "Inter"; letter-spacing: .18em; transform: rotate(-8deg); }
.label-one { left: 8%; top: 46%; }.label-two { right: 9%; top: 43%; }.label-three { left: 47%; top: 29%; }

.pin { position: absolute; z-index: 5; left: var(--x); top: var(--y); width: 46px; transform: translate(-50%, -100%); filter: drop-shadow(0 6px 5px rgba(11,19,32,.22)); transition: transform 180ms ease, filter 180ms ease; cursor: pointer; }
.pin:hover, .pin.is-active { transform: translate(-50%, -100%) scale(1.15); filter: drop-shadow(0 9px 9px rgba(11,19,32,.28)); }
.pin img { width: 100%; }

.search-pill {
  position: absolute;
  z-index: 8;
  top: 22px;
  left: 50%;
  width: calc(100% - 44px);
  height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(11,19,32,.08);
  border-radius: 17px;
  box-shadow: 0 12px 35px rgba(11,19,32,.12);
  transform: translateX(-50%);
  font-size: 12px;
}
.search-pill svg { width: 20px; fill: none; stroke: var(--navy); stroke-width: 2; stroke-linecap: round; }
.search-pill span { flex: 1; color: #65707d; }
.search-pill kbd { padding: 5px 7px; color: var(--slate); background: var(--soft); border: 1px solid var(--border); border-radius: 7px; font: 600 10px "Inter"; }

.station-card {
  position: absolute;
  z-index: 9;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 22px;
  background: rgba(255,255,255,.97);
  border-radius: 22px;
  box-shadow: 0 20px 55px rgba(11,19,32,.2);
}
.station-card-top { display: flex; justify-content: space-between; align-items: center; }
.speed-badge { padding: 7px 9px; color: var(--blue-accessible); background: #e4f6fd; border-radius: 8px; font-size: 9px; font-weight: 800; letter-spacing: .08em; }
.distance { color: var(--slate); font-size: 11px; font-weight: 650; }
.station-card h2 { margin: 15px 0 5px; font-size: 23px; letter-spacing: -.02em; }
.station-card p { margin: 0; color: var(--slate); font-size: 12px; }
.station-meta { margin-top: 18px; padding-top: 16px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); }
.station-meta span { display: flex; align-items: center; gap: 7px; color: var(--teal-accessible); font-size: 11px; font-weight: 700; }
.status-dot { width: 8px; height: 8px; background: var(--teal-accessible); border-radius: 50%; }
.station-meta button { min-height: 42px; padding: 0 16px; color: var(--white); background: var(--blue-accessible); border: 0; border-radius: 999px; font-size: 11px; font-weight: 750; cursor: pointer; }
.station-meta button.is-planning { background: var(--teal-accessible); }

.signal-strip { position: relative; z-index: 3; margin-top: 52px; display: flex; align-items: center; gap: 14px; color: #7f8998; font-size: 9px; font-weight: 750; letter-spacing: .13em; }
.signal-label { color: var(--lime); }
.signal-track { position: relative; width: 110px; height: 1px; overflow: hidden; background: rgba(255,255,255,.12); }
.signal-track i { position: absolute; inset: 0; background: var(--gradient); transform-origin: left; animation: signal 3s ease-in-out infinite; }
.signal-strip b { color: #465063; }

@keyframes signal { 0%, 20% { transform: scaleX(.08); } 65%, 100% { transform: scaleX(1); } }

.section { padding: 120px 0; }

.section-heading { max-width: 760px; margin-bottom: 58px; }
.section-heading h2, .journey h2, .launch h2 { margin-bottom: 22px; font-size: clamp(42px, 4.6vw, 68px); line-height: 1.02; letter-spacing: -.04em; }
.section-heading > p:last-child { max-width: 580px; margin: 0; color: var(--slate); font-size: 16px; line-height: 1.7; }

.why { overflow: hidden; background: var(--soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 510px; padding: 30px; overflow: hidden; background: var(--white); border: 1px solid var(--border); border-radius: 24px; }
.benefit-icon { width: 52px; height: 52px; margin-bottom: 48px; display: grid; place-items: center; background: var(--soft); border-radius: 15px; }
.benefit-icon svg { width: 27px; fill: none; stroke: var(--blue-accessible); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card-label { margin: 0 0 14px; color: var(--teal-accessible); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.benefit-card h3 { max-width: 330px; margin-bottom: 16px; font-size: 26px; line-height: 1.15; letter-spacing: -.025em; }
.benefit-card > p:not(.card-label) { max-width: 335px; margin: 0; color: var(--slate); font-size: 13px; line-height: 1.65; }

.mini-map, .filter-demo, .route-demo { position: absolute; right: 26px; bottom: 24px; left: 26px; height: 118px; }
.mini-map { overflow: hidden; background: #e9eff0; border-radius: 17px; }
.mini-road { position: absolute; width: 130%; height: 14px; left: -15%; background: var(--white); border: 1px solid #dde4e6; }
.road-a { top: 42%; transform: rotate(9deg); }.road-b { top: 17%; transform: rotate(-25deg); }.road-c { top: 75%; transform: rotate(-8deg); }
.mini-pin { position: absolute; width: 32px; filter: drop-shadow(0 3px 3px rgba(0,0,0,.2)); }.mini-pin-a { top: 10px; left: 25%; }.mini-pin-b { right: 19%; bottom: 6px; }

.filter-demo { display: flex; align-content: flex-end; align-items: flex-end; gap: 8px; flex-wrap: wrap; }
.filter-chip { min-height: 39px; padding: 0 14px; color: var(--slate); background: var(--white); border: 1px solid var(--border); border-radius: 999px; font-size: 11px; font-weight: 700; cursor: pointer; }
.filter-chip.is-selected { color: var(--navy); background: var(--lime); border-color: var(--lime-accessible); }

.route-demo { display: flex; align-items: center; }
.route-point { position: relative; z-index: 2; width: 14px; height: 14px; background: var(--white); border: 4px solid var(--blue-accessible); border-radius: 50%; }
.route-point.finish { background: var(--lime); border-color: var(--lime-accessible); }
.route-path { flex: 1; height: 5px; background: linear-gradient(90deg, var(--blue-accessible), var(--teal-accessible)); border-radius: 99px; }
.route-caption { position: absolute; top: 24px; left: 50%; padding: 8px 12px; color: var(--blue-accessible); background: #e9f6fc; border-radius: 9px; transform: translateX(-50%); font-size: 10px; font-weight: 800; }

.journey { position: relative; overflow: hidden; color: var(--white); background: var(--navy); }
.journey::before { content: ""; position: absolute; width: 620px; height: 620px; right: -80px; top: 130px; background: radial-gradient(circle, rgba(0,191,255,.1), transparent 66%); }
.journey-shell { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.journey-copy { position: relative; z-index: 2; }
.section-kicker-light { color: var(--lime); }
.journey-tabs { margin-top: 54px; }
.journey-tabs button { width: 100%; min-height: 105px; padding: 20px 0; display: grid; grid-template-columns: 50px 100px 1fr; align-items: center; color: #7f8998; background: none; border: 0; border-top: 1px solid rgba(255,255,255,.12); text-align: left; cursor: pointer; transition: color 180ms ease; }
.journey-tabs button:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.journey-tabs button span { font: 700 10px "Inter"; letter-spacing: .12em; }
.journey-tabs button strong { font: 700 20px "Exo 2"; }
.journey-tabs button small { font-size: 12px; }
.journey-tabs button[aria-selected="true"] { color: var(--white); }
.journey-tabs button[aria-selected="true"] span { color: var(--lime); }

.phone-stage { position: relative; min-height: 700px; display: grid; place-items: center; }
.phone-orbit { position: absolute; border: 1px solid rgba(124,252,0,.16); border-radius: 50%; }
.orbit-one { width: 580px; height: 580px; }.orbit-two { width: 430px; height: 430px; border-color: rgba(0,191,255,.2); }
.phone-frame { position: relative; z-index: 2; width: 342px; height: 690px; padding: 11px; background: #202a38; border: 1px solid #4c5766; border-radius: 47px; box-shadow: 0 45px 100px rgba(0,0,0,.55); }
.phone-frame::after { content: ""; position: absolute; inset: 5px; pointer-events: none; border: 1px solid rgba(255,255,255,.14); border-radius: 42px; }
.phone-speaker { position: absolute; z-index: 8; width: 110px; height: 26px; top: 17px; left: 50%; background: #202a38; border-radius: 0 0 16px 16px; transform: translateX(-50%); }
.phone-screen { position: relative; height: 100%; overflow: hidden; color: var(--navy); background: #f5f7f8; border-radius: 37px; }
.phone-status { position: absolute; z-index: 9; top: 0; left: 0; width: 100%; height: 40px; padding: 10px 22px 0; display: flex; justify-content: space-between; font-size: 9px; font-weight: 800; }
.phone-panel { position: absolute; inset: 0; padding-top: 40px; opacity: 0; transform: translateX(16px); transition: opacity 250ms ease, transform 250ms ease; }
.phone-panel.is-active { opacity: 1; transform: translateX(0); }
.app-topbar { height: 52px; padding: 0 18px; display: flex; align-items: center; justify-content: space-between; background: var(--white); font-size: 12px; }
.app-topbar img { width: 25px; height: 25px; }
.app-search { position: absolute; z-index: 3; top: 104px; left: 16px; right: 16px; height: 42px; padding: 0 14px; display: flex; align-items: center; color: var(--slate); background: var(--white); border: 1px solid var(--border); border-radius: 13px; box-shadow: 0 7px 20px rgba(11,19,32,.1); font-size: 10px; }
.app-map { position: absolute; inset: 92px 0 0; overflow: hidden; background: #e6ecee; }
.app-road { position: absolute; width: 150%; height: 22px; left: -25%; background: var(--white); border: 1px solid #d8dfe2; }
.app-road-a { top: 20%; transform: rotate(13deg); }.app-road-b { top: 44%; transform: rotate(-26deg); }.app-road-c { top: 68%; transform: rotate(4deg); }
.app-map img { position: absolute; z-index: 2; width: 34px; filter: drop-shadow(0 4px 4px rgba(0,0,0,.2)); }
.you-dot { position: absolute; z-index: 3; left: 46%; top: 47%; width: 18px; height: 18px; background: var(--blue); border: 5px solid var(--white); border-radius: 50%; box-shadow: 0 0 0 8px rgba(0,191,255,.18); }
.app-sheet { position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: 194px; padding: 18px 20px; background: var(--white); border-radius: 24px 24px 0 0; box-shadow: 0 -12px 30px rgba(11,19,32,.1); }
.app-sheet i { width: 34px; height: 4px; margin: -6px auto 20px; display: block; background: #d9dee4; border-radius: 9px; }
.app-sheet small, .app-sheet strong { display: block; }.app-sheet small { color: var(--teal-accessible); font-size: 9px; font-weight: 800; text-transform: uppercase; }.app-sheet strong { margin: 8px 0 18px; font: 700 20px "Exo 2"; }
.app-sheet button, .detail-sheet button { width: 100%; height: 42px; color: var(--white); background: var(--teal-accessible); border: 0; border-radius: 99px; font-size: 11px; font-weight: 750; }

.station-hero { height: 218px; padding: 34px 22px; display: grid; align-content: center; justify-items: center; color: var(--white); background: linear-gradient(145deg, var(--blue-accessible), #0b4c72); }
.station-hero img { width: 60px; margin-bottom: 15px; }.station-hero span { font-size: 9px; font-weight: 800; letter-spacing: .1em; }.station-hero strong { margin-top: 4px; font: 700 30px "Exo 2"; }
.detail-sheet { height: calc(100% - 310px); padding: 27px 22px; background: var(--white); }
.detail-sheet small { color: var(--blue-accessible); font-size: 9px; font-weight: 800; letter-spacing: .1em; }.detail-sheet h3 { margin: 10px 0; font-size: 24px; line-height: 1.05; }.detail-sheet > p { color: var(--slate); font-size: 11px; }
.detail-sheet > div { margin: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }.detail-sheet div span { padding: 12px; color: var(--slate); background: var(--soft); border-radius: 12px; font-size: 9px; }.detail-sheet div b { margin-bottom: 3px; display: block; color: var(--navy); font: 700 13px "Exo 2"; }

.route-top { position: relative; z-index: 4; height: 118px; padding: 23px 20px; color: var(--white); background: var(--blue-accessible); }.route-top small { font-size: 9px; }.route-top strong { display: block; font: 700 30px "Exo 2"; }.route-top p { margin: 4px 0 0; font-size: 10px; }
.nav-map { position: absolute; inset: 158px 0 0; overflow: hidden; background: #dfe7e9; }.nav-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(25deg, transparent 40%, rgba(255,255,255,.75) 40.5%, rgba(255,255,255,.75) 45%, transparent 45.5%), repeating-linear-gradient(90deg, transparent 0 60px, rgba(190,203,207,.4) 61px); }
.nav-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }.nav-map path { fill: none; stroke: var(--blue-accessible); stroke-width: 8; stroke-linecap: round; }
.nav-map .nav-arrow { position: absolute; z-index: 2; left: 41%; bottom: 35%; color: var(--navy); font-size: 22px; text-shadow: 0 2px 0 var(--white); }.nav-map img { position: absolute; z-index: 2; top: 9%; right: 13%; width: 42px; }
.eta-card { position: absolute; z-index: 5; right: 13px; bottom: 13px; left: 13px; height: 76px; padding: 15px; display: flex; align-items: center; justify-content: space-between; background: var(--white); border-radius: 16px; box-shadow: 0 15px 35px rgba(11,19,32,.18); }.eta-card strong, .eta-card span { display: block; }.eta-card strong { color: var(--teal-accessible); font: 700 19px "Exo 2"; }.eta-card span { margin-top: 2px; color: var(--slate); font-size: 9px; }.eta-card button { width: 47px; height: 34px; color: var(--white); background: #b3261e; border: 0; border-radius: 99px; font-size: 9px; font-weight: 750; }

.features { background: var(--white); }
.feature-heading { margin-bottom: 44px; }
.feature-list { border-top: 1px solid var(--border); }
.feature-row { min-height: 150px; padding: 26px 8px; display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 28px; border-bottom: 1px solid var(--border); }
.feature-number { color: var(--blue-accessible); font-size: 10px; font-weight: 800; letter-spacing: .14em; }
.feature-row h3 { margin: 0 0 8px; font-size: 25px; letter-spacing: -.02em; }.feature-row p { max-width: 620px; margin: 0; color: var(--slate); font-size: 13px; line-height: 1.6; }
.feature-tag { padding: 8px 10px; color: var(--teal-accessible); background: #edf7f2; border-radius: 8px; font-size: 9px; font-weight: 800; letter-spacing: .1em; }

.launch { padding-top: 40px; background: var(--white); }
.launch-card { position: relative; min-height: 480px; padding: 72px; display: flex; align-items: center; overflow: hidden; color: var(--white); background: linear-gradient(135deg, #12203a, var(--navy) 70%); border-radius: 32px; }
.launch-copy { position: relative; z-index: 3; max-width: 620px; }
.launch-copy > p:not(.section-kicker) { max-width: 500px; margin: 0 0 28px; color: #b9c1ce; line-height: 1.7; }
.button-light { color: var(--navy); background: var(--white); }
.launch-icon { position: absolute; z-index: 2; width: 240px; right: 9%; border-radius: 50px; box-shadow: 0 35px 80px rgba(0,0,0,.38); transform: rotate(6deg); }
.launch-route { position: absolute; inset: 0; opacity: .65; }
.launch-route svg { position: absolute; width: 80%; right: -2%; bottom: -4%; }.launch-route path { stroke: var(--blue); stroke-width: 5; stroke-linecap: round; stroke-dasharray: 10 10; }
.launch-route img { position: absolute; width: 60px; right: 35%; top: 29%; filter: drop-shadow(0 8px 8px rgba(0,0,0,.25)); }

.site-footer { padding: 72px 0 28px; color: var(--white); background: var(--navy); }
.footer-top { padding-bottom: 58px; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.brand-footer { width: 210px; }.footer-top p { margin: 0; color: #919aaa; font-size: 13px; }.footer-top nav { display: flex; gap: 28px; font-size: 12px; font-weight: 650; }.footer-top nav a:hover { color: var(--lime); }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; color: #707a8b; font-size: 10px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 130ms; }.reveal-delay-small { transition-delay: 90ms; }.reveal-delay-more { transition-delay: 180ms; }

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr 470px; gap: 34px; }
  .hero-proof { grid-template-columns: 1fr 1fr; }.hero-proof div:last-child { display: none; }
  .atlas { height: 590px; }
  .journey-shell { gap: 30px; }
  .launch-icon { width: 200px; right: 6%; }.launch-copy { max-width: 570px; }
}

@media (max-width: 900px) {
  :root { --shell: min(100% - 36px, 720px); }
  .header-inner { height: 72px; }
  .brand { width: 176px; }
  .menu-toggle { position: relative; z-index: 5; width: 44px; height: 44px; padding: 0; display: grid; place-content: center; gap: 7px; color: var(--white); background: none; border: 1px solid rgba(255,255,255,.15); border-radius: 50%; }
  .menu-toggle span:not(.sr-only) { width: 17px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .primary-nav { position: fixed; inset: 0; padding: 110px 24px 38px; display: flex; flex-direction: column; justify-content: center; align-items: stretch; gap: 0; background: var(--navy); transform: translateX(100%); transition: transform 240ms ease; }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav a, .primary-nav .nav-cta { min-height: 70px; padding: 0; display: flex; align-items: center; color: var(--white); background: none; border-bottom: 1px solid rgba(255,255,255,.12); border-radius: 0; font: 700 25px "Exo 2"; }
  .primary-nav .nav-cta { color: var(--lime); }

  .hero { padding-top: 128px; }
  .hero-grid { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 680px; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }.hero-proof div:last-child { display: block; }
  .atlas { max-width: 620px; margin: 0 auto; height: 620px; }
  .signal-strip { overflow: hidden; white-space: nowrap; }
  .benefit-grid { grid-template-columns: 1fr; }.benefit-card { min-height: 430px; }.benefit-card h3 { max-width: 500px; }.benefit-card > p:not(.card-label) { max-width: 520px; }
  .journey-shell { grid-template-columns: 1fr; }.journey-copy { max-width: 650px; }.phone-stage { margin-top: 20px; }
  .launch-card { padding: 60px 48px; }.launch-copy { max-width: 500px; }.launch-icon { width: 160px; right: 5%; bottom: 38px; opacity: .55; }
  .footer-top { grid-template-columns: 1fr 1fr; }.footer-top p { display: none; }.footer-top nav { justify-self: end; }
}

@media (max-width: 620px) {
  :root { --shell: calc(100% - 30px); }
  .hero { min-height: auto; padding-top: 118px; }
  h1 { font-size: clamp(45px, 14vw, 66px); }
  .hero-lede { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .hero-proof { margin-top: 42px; grid-template-columns: 1fr 1fr; }.hero-proof div:last-child { display: none; }
  .atlas { width: calc(100% + 10px); height: 540px; margin-left: -5px; border-radius: 24px; }
  .search-pill { width: calc(100% - 28px); }.station-card { right: 13px; bottom: 13px; left: 13px; padding: 18px; }.station-card h2 { font-size: 20px; }.station-meta { gap: 10px; }.station-meta button { flex: 0 0 auto; }
  .signal-strip span:not(.signal-label), .signal-strip b { display: none; }.signal-track { flex: 1; }
  .section { padding: 88px 0; }.section-heading { margin-bottom: 38px; }.section-heading h2, .journey h2, .launch h2 { font-size: clamp(38px, 11vw, 52px); }
  .benefit-card { min-height: 480px; padding: 25px; }.benefit-icon { margin-bottom: 34px; }.benefit-card h3 { font-size: 24px; }.mini-map, .filter-demo, .route-demo { right: 20px; left: 20px; }
  .journey-tabs button { grid-template-columns: 42px 76px 1fr; }.journey-tabs button small { font-size: 10px; }
  .phone-stage { min-height: 620px; }.phone-frame { width: 292px; height: 590px; border-radius: 42px; }.phone-screen { border-radius: 33px; }.orbit-one { width: 430px; height: 430px; }.orbit-two { width: 340px; height: 340px; }.app-sheet { height: 180px; }.detail-sheet h3 { font-size: 20px; }.detail-sheet > div { margin: 16px 0; }.route-top { height: 105px; }.nav-map { inset: 145px 0 0; }
  .feature-row { grid-template-columns: 42px 1fr; gap: 14px; }.feature-row h3 { font-size: 21px; }.feature-tag { display: none; }
  .launch { padding-top: 10px; }.launch-card { min-height: 530px; padding: 48px 26px; align-items: flex-start; border-radius: 25px; }.launch-icon { width: 135px; right: 26px; bottom: 28px; opacity: 1; border-radius: 30px; }.launch-route img { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }.footer-top nav { justify-self: start; flex-wrap: wrap; }.footer-bottom { flex-direction: column; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
