:root {
  --night: #071922;
  --night-soft: #0e2b37;
  --ocean: #164c5f;
  --teal: #2d7775;
  --cream: #f6f0e6;
  --paper: #fffdf8;
  --gold: #e2b94f;
  --gold-soft: #f6d984;
  --ink: #102731;
  --muted: #607078;
  --line: rgba(16, 39, 49, 0.14);
  --light-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(3, 18, 25, 0.2);
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
body.mobile-open { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--night);
  background: white;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  padding: 14px clamp(20px, 4vw, 68px);
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 30px;
  color: white;
  border-bottom: 1px solid var(--light-line);
  background: linear-gradient(180deg, rgba(4, 18, 25, 0.88), rgba(4, 18, 25, 0.42));
  backdrop-filter: blur(18px);
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease;
}
.site-header.on-light,
.site-header.menu-active {
  color: var(--night);
  background: rgba(255, 253, 248, 0.96);
  border-color: var(--line);
}
.brand { display: inline-flex; width: fit-content; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.95;
}
.brand-mark::after { content: "B"; font: 800 .95rem "Manrope", sans-serif; }
.brand-mark i { display: none; }
.brand-copy strong, .brand-copy small { display: block; }
.brand-copy strong { font: 800 0.95rem "Manrope", sans-serif; letter-spacing: -0.02em; }
.brand-copy small { opacity: 0.66; font-size: 0.67rem; }

.mega-nav { display: flex; align-items: stretch; gap: 4px; }
.mega-item { position: relative; }
.mega-trigger {
  min-height: 44px;
  padding: 0 13px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}
.mega-trigger::after { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 0 3px 8px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg); transition: transform 180ms ease; }
.mega-trigger[aria-expanded="true"] { background: rgba(128, 128, 128, 0.1); }
.mega-trigger[aria-expanded="true"]::after { transform: rotate(225deg) translate(-2px, -2px); }
.mega-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  width: min(420px, calc(100vw - 40px));
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.99);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(3, 18, 25, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-7px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
}
.mega-panel-right { left: auto; right: 0; }
.mega-item.is-open .mega-panel { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mega-panel::before { content: ""; position: absolute; top: -19px; left: 0; right: 0; height: 20px; }
.mega-kicker { margin: 0 8px 8px; color: var(--teal); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.mega-panel a { display: grid; gap: 2px; padding: 12px 11px; border-radius: 10px; text-decoration: none; }
.mega-panel a:hover, .mega-panel a:focus-visible { background: #f0ebe1; }
.mega-panel strong { color: var(--night); font: 750 0.9rem "Manrope", sans-serif; }
.mega-panel span { color: var(--muted); font-size: 0.78rem; line-height: 1.45; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 16px; }
.header-login { font-size: 0.8rem; font-weight: 700; text-decoration: none; }
.header-cta { min-height: 44px; padding: 10px 17px; display: inline-flex; align-items: center; color: var(--night); background: var(--gold); border-radius: 999px; font-weight: 800; font-size: 0.82rem; text-decoration: none; }
.header-cta-short { display: none; }
.menu-toggle { width: 46px; height: 46px; display: none; place-items: center; color: inherit; background: transparent; border: 1px solid currentColor; border-radius: 50%; }
.menu-toggle span { grid-area: 1 / 1; width: 18px; height: 1px; background: currentColor; transform: translateY(-4px); }
.menu-toggle span:last-child { transform: translateY(4px); }

.mobile-menu { position: fixed; z-index: 110; inset: 0; color: var(--night); background: var(--cream); visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 180ms ease, visibility 180ms; }
.mobile-menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.mobile-menu-top { min-height: 76px; padding: 15px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.mobile-menu-top strong { font: 800 1rem "Manrope", sans-serif; }
.menu-close { min-width: 54px; min-height: 44px; color: inherit; background: transparent; border: 1px solid var(--line); border-radius: 999px; }
.mobile-menu-scroll { height: calc(100dvh - 76px); padding: 22px 20px max(30px, env(safe-area-inset-bottom)); overflow-y: auto; }
.mobile-menu section { padding: 17px 0; border-bottom: 1px solid var(--line); }
.mobile-menu h2 { margin: 0 0 8px; color: var(--teal); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.mobile-menu section a { min-height: 44px; display: flex; align-items: center; font: 750 1.13rem "Manrope", sans-serif; text-decoration: none; }
.mobile-actions { padding: 24px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mobile-actions a { min-height: 50px; display: grid; place-items: center; border: 1px solid var(--night); border-radius: 10px; font-weight: 800; text-decoration: none; }
.mobile-actions a:first-child { color: white; background: var(--night); }
.mobile-pilot-login { min-height: 44px; display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: .78rem; font-weight: 700; text-align: center; }

main { overflow: clip; }
.journey-film { position: relative; color: white; background: var(--night); }
.film-stage { position: relative; min-height: 100svh; overflow: hidden; background: radial-gradient(circle at 75% 30%, rgba(38, 104, 114, 0.25), transparent 35%), linear-gradient(145deg, #071922, #0a202a 62%, #07161d); }
.film-stage::before { content: ""; position: absolute; z-index: 1; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E"); opacity: 0.08; pointer-events: none; }
.film-ambient { position: absolute; inset: 0; opacity: 0.6; }
.film-ambient i { position: absolute; width: 34vw; aspect-ratio: 1; border: 1px solid rgba(226, 185, 79, 0.12); border-radius: 50%; }
.film-ambient i:nth-child(1) { top: -15vw; right: 6vw; }
.film-ambient i:nth-child(2) { width: 50vw; right: -22vw; bottom: -30vw; }
.film-ambient i:nth-child(3) { width: 18vw; left: -8vw; bottom: 10vh; }
.route-map { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.65; }
.route-map path { fill: none; stroke-linecap: round; }
.route-shadow { stroke: rgba(0, 0, 0, 0.35); stroke-width: 8; }
.route-line { stroke: rgba(226, 185, 79, 0.72); stroke-width: 2; stroke-dasharray: 8 13; }
.route-origin { fill: var(--gold); opacity: 0.85; }
.route-destination { fill: none; stroke: var(--gold); stroke-width: 3; }
.route-car { position: absolute; z-index: 4; top: 71%; left: 3%; width: 48px; height: 24px; color: var(--gold); transform: translate(-50%, -50%); }
.route-car span { display: block; width: 42px; height: 17px; background: currentColor; border-radius: 13px 17px 7px 7px; box-shadow: -11px 15px 0 -7px currentColor, 14px 15px 0 -7px currentColor, 0 0 24px rgba(226,185,79,.35); }
.route-car span::before { content: ""; position: absolute; left: 9px; top: -7px; width: 22px; height: 10px; border: 5px solid currentColor; border-bottom: 0; border-radius: 10px 10px 0 0; }

.journey-scene { position: absolute; z-index: 5; inset: 0; min-height: 100svh; padding: calc(var(--header-height) + 52px) clamp(22px, 7vw, 112px) 80px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.74fr); align-items: center; gap: clamp(48px, 8vw, 130px); opacity: 0; pointer-events: none; }
.journey-scene.is-active { opacity: 1; pointer-events: auto; }
.scene-copy { max-width: 760px; }
.eyebrow { margin: 0 0 20px; color: var(--gold-soft); font: 800 0.7rem "Manrope", sans-serif; letter-spacing: 0.16em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Manrope", sans-serif; line-height: 1.03; }
h1 { max-width: 1050px; margin: 0; font-size: clamp(3.3rem, 6.9vw, 7.2rem); letter-spacing: -0.067em; }
h1 .char-wrap { display: inline-block; overflow: hidden; vertical-align: bottom; }
h1 .char { display: inline-block; }
h1 .word { display: inline-block; white-space: nowrap; }
.hero-lead { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { margin-top: 33px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button { min-height: 52px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 999px; font-weight: 800; text-decoration: none; }
.button-gold { color: var(--night); background: var(--gold); border-color: var(--gold); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: white; font-weight: 800; text-decoration: none; }
.text-link span { color: var(--gold); }
.pilot-proof { margin: 26px 0 0; color: rgba(255,255,255,.5); font-size: 0.8rem; }
.pilot-proof i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: #62c995; border-radius: 50%; box-shadow: 0 0 0 5px rgba(98,201,149,.1); }
.scene-step { margin: 0 0 19px; color: var(--gold-soft); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.scene-copy h2 { margin: 0; color: white; font-size: clamp(2.8rem, 5.3vw, 5.8rem); letter-spacing: -0.06em; }
.scene-copy > p:last-child { max-width: 620px; color: rgba(255,255,255,.68); font-size: 1.05rem; }

.request-orbit { position: relative; min-height: 430px; display: grid; place-items: center; }
.request-orbit::before, .request-orbit::after { content: ""; position: absolute; inset: 3%; border: 1px solid rgba(226,185,79,.2); border-radius: 50%; }
.request-orbit::after { inset: 17%; border-color: rgba(255,255,255,.12); }
.orbit-label { position: absolute; z-index: 2; top: 6%; right: 4%; padding: 8px 13px; color: var(--night); background: var(--gold); border-radius: 999px; font-size: 0.7rem; font-weight: 800; }
.request-card { position: relative; z-index: 1; width: min(380px, 88%); padding: 30px; color: var(--ink); background: rgba(255,253,248,.96); border: 1px solid rgba(255,255,255,.45); border-radius: 20px; box-shadow: var(--shadow); transform: rotate(2deg); }
.card-kicker { color: var(--teal); font-size: 0.68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.request-card > strong { display: block; margin: 25px 0; color: var(--night); font: 800 1.45rem "Manrope", sans-serif; }
.request-card strong i { padding: 0 5px; color: var(--teal); font: 600 .8rem "DM Sans", sans-serif; }
.request-card dl { margin: 0; padding-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; border-top: 1px solid var(--line); }
.request-card dt { color: var(--muted); font-size: .68rem; }
.request-card dd { margin: 2px 0 0; font-weight: 800; }

.attention-board, .assignment-stack, .watch-stack { width: min(480px, 100%); justify-self: end; }
.attention-board { padding: 22px; background: rgba(7,24,32,.76); border: 1px solid var(--light-line); border-radius: 24px; box-shadow: var(--shadow); backdrop-filter: blur(14px); }
.board-top { padding: 0 4px 17px; display: flex; justify-content: space-between; color: rgba(255,255,255,.65); font-size: .78rem; }
.board-top i { color: var(--gold-soft); font-style: normal; }
.board-row { margin-top: 9px; padding: 15px; display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,.48); background: rgba(255,255,255,.05); border: 1px solid transparent; border-radius: 14px; }
.board-row > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .72rem; font-weight: 800; }
.board-row p { margin: 0; display: grid; }
.board-row small { font-size: .67rem; }
.board-row strong { color: rgba(255,255,255,.72); font-size: .9rem; }
.board-row.done { color: #62c995; }
.board-row.active { color: var(--gold); background: rgba(226,185,79,.11); border-color: rgba(226,185,79,.42); transform: scale(1.03); }
.board-row.active strong { color: white; }

.assignment-stack { position: relative; display: grid; gap: 16px; }
.assignment-card { position: relative; z-index: 2; padding: 18px; display: grid; grid-template-columns: 56px 1fr 32px; align-items: center; gap: 15px; color: var(--ink); background: rgba(255,253,248,.96); border-radius: 18px; box-shadow: var(--shadow); }
.assignment-card > span { width: 56px; height: 56px; display: grid; place-items: center; color: white; background: var(--ocean); border-radius: 16px; font-weight: 800; }
.assignment-card p { margin: 0; display: grid; }
.assignment-card small { color: var(--muted); font-size: .66rem; }
.assignment-card strong { color: var(--night); }
.assignment-card em { color: var(--teal); font-size: .7rem; font-style: normal; }
.assignment-card > i { width: 28px; height: 28px; display: grid; place-items: center; color: var(--night); background: var(--gold); border-radius: 50%; font-style: normal; }
.vehicle-card { margin-left: 38px; }
.vehicle-card > span { color: var(--gold); background: var(--night); }
.assignment-link { position: absolute; z-index: 1; inset: 68px 40px 68px auto; width: 2px; background: rgba(226,185,79,.55); }
.assignment-link small { display: none; }

.watch-stack { display: grid; gap: 11px; perspective: 800px; }
.watch-card { padding: 17px 18px; display: grid; grid-template-columns: 48px 1fr auto; align-items: center; gap: 14px; color: var(--ink); background: rgba(255,253,248,.96); border-radius: 16px; box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.watch-card > span { width: 46px; height: 46px; display: grid; place-items: center; color: white; background: var(--ocean); border-radius: 13px; font-weight: 800; }
.watch-card p { margin: 0; display: grid; }
.watch-card small { color: var(--muted); font-size: .65rem; }
.watch-card strong { color: var(--night); }
.watch-card > i { color: var(--teal); font-size: .7rem; font-style: normal; font-weight: 800; }
.watch-card:nth-child(2) { margin-left: 26px; }
.watch-card:nth-child(3) { margin-left: 52px; }
.watch-card.ready > span { color: var(--night); background: var(--gold); }

.complete-scene { grid-template-columns: .72fr 1fr; }
.complete-ring { position: relative; width: min(420px, 34vw); aspect-ratio: 1; display: grid; place-items: center; border: 1px solid rgba(226,185,79,.28); border-radius: 50%; }
.complete-ring::before, .complete-ring::after { content: ""; position: absolute; inset: 12%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; }
.complete-ring::after { inset: 27%; background: rgba(226,185,79,.08); border-color: rgba(226,185,79,.4); }
.complete-ring span { position: relative; z-index: 2; width: 88px; height: 88px; display: grid; place-items: center; color: var(--night); background: var(--gold); border-radius: 50%; font-size: 2rem; }
.complete-copy .button { margin-top: 20px; }

.film-chrome { position: absolute; z-index: 8; left: clamp(22px, 4vw, 68px); bottom: 24px; display: grid; grid-template-columns: auto auto 120px; align-items: center; gap: 13px; color: rgba(255,255,255,.58); font-size: .67rem; letter-spacing: .11em; text-transform: uppercase; }
.chapter-number { color: var(--gold); font-weight: 800; }
.chapter-track { width: 120px; height: 1px; background: rgba(255,255,255,.18); }
.chapter-track i { display: block; width: 100%; height: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.scroll-cue { position: absolute; z-index: 8; right: clamp(22px, 4vw, 68px); bottom: 20px; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .67rem; text-transform: uppercase; letter-spacing: .1em; }
.scroll-cue i { position: relative; width: 1px; height: 30px; background: currentColor; }
.scroll-cue i::after { content: ""; position: absolute; left: -2px; bottom: 0; width: 5px; height: 5px; border-right: 1px solid; border-bottom: 1px solid; transform: rotate(45deg); }
.film-seam { position: absolute; z-index: 7; inset: auto 0 0; height: 28vh; background: linear-gradient(transparent, var(--cream)); opacity: 0; pointer-events: none; }

.proof-strip { padding: 19px 0; color: var(--night); background: var(--cream); border-bottom: 1px solid var(--line); overflow: hidden; }
.proof-marquee { width: max-content; display: flex; gap: 46px; white-space: nowrap; }
.proof-marquee span { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.proof-marquee span::before { content: "◆"; margin-right: 16px; color: var(--gold); font-size: .56rem; }

.content-section { padding: clamp(90px, 11vw, 170px) clamp(22px, 7vw, 112px); }
.product-section, .readiness-section { background: var(--cream); }
.section-intro { max-width: 900px; margin-bottom: 64px; }
.section-intro .eyebrow, .pilot-copy .eyebrow, .pricing-heading .eyebrow { color: var(--teal); }
.section-intro h2, .personal-copy h2, .pilot-copy h2, .pricing-heading h2 { margin: 0; color: var(--night); font-size: clamp(2.7rem, 5vw, 5.5rem); letter-spacing: -.06em; }
.section-intro > p:last-child, .personal-copy > p, .pilot-copy > p, .pricing-heading > p:last-child { max-width: 720px; color: var(--muted); font-size: 1.05rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.product-card { min-height: 330px; padding: 27px; display: flex; flex-direction: column; background: rgba(255,253,248,.78); border: 1px solid var(--line); border-radius: 18px; }
.product-card > span, .readiness-grid article > span { color: var(--teal); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin: auto 0 16px; color: var(--night); font-size: 1.35rem; letter-spacing: -.035em; }
.product-card p { margin: 0; color: var(--muted); font-size: .9rem; }

.operations-section { position: relative; color: white; background: var(--night); }
.operations-sticky { min-height: 100svh; padding: calc(var(--header-height) + 34px) 0 52px; overflow: hidden; }
.operations-heading { padding: 0 clamp(22px, 7vw, 112px); display: grid; grid-template-columns: minmax(180px, .42fr) minmax(0, 1fr); align-items: start; gap: clamp(34px, 7vw, 110px); }
.operations-heading .eyebrow { margin-top: 13px; }
.operations-heading h2 { max-width: 900px; margin: 0; color: white; font-size: clamp(2.65rem, 4.8vw, 5rem); letter-spacing: -.055em; }
.operations-heading > div > p { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.62); font-size: .98rem; }
.operations-track { width: max-content; padding: clamp(42px, 5vw, 68px) clamp(22px, 7vw, 112px) 0; display: flex; gap: 20px; }
.ops-card { position: relative; width: min(720px, 76vw); height: clamp(430px, 54svh, 600px); overflow: hidden; background: #102b36; border: 1px solid rgba(255,255,255,.15); border-radius: 24px; box-shadow: 0 28px 65px rgba(0,0,0,.3); isolation: isolate; }
.ops-card::after { content: ""; position: absolute; z-index: 1; inset: 26% 0 0; background: linear-gradient(180deg, transparent, rgba(2,15,20,.3) 28%, rgba(2,15,20,.95) 100%); pointer-events: none; }
.ops-card > img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .55s ease; }
.ops-card:hover > img { transform: scale(1.018); }
.ops-card-screen > img { object-position: top center; }
.ops-card-portrait > img { object-position: center 43%; }
.ops-card-vehicle { background: #f4f1ea; }
.ops-card-vehicle > img { padding: clamp(24px, 4vw, 58px); object-fit: contain; }
.ops-card-buzz { background: white; }
.ops-card-passengers > img { object-position: center 48%; }
.ops-card-copy { position: absolute; z-index: 2; inset: auto clamp(24px, 4vw, 42px) clamp(24px, 4vw, 38px); max-width: 590px; }
.ops-card-copy > span { color: var(--gold-soft); font-size: .7rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.ops-card-copy h3 { margin: 12px 0 10px; color: white; font-size: clamp(2rem, 3.1vw, 3.25rem); letter-spacing: -.05em; text-shadow: 0 2px 18px rgba(0,0,0,.35); }
.ops-card-copy p { max-width: 540px; margin: 0; color: rgba(255,255,255,.8); font-size: .94rem; }

.personal-section { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: clamp(54px, 8vw, 125px); background: var(--paper); }
.personal-copy blockquote { margin: 36px 0 0; padding: 24px 0 24px 25px; color: var(--night); border-left: 2px solid var(--gold); font: 700 clamp(1.35rem, 2vw, 1.8rem)/1.3 "Manrope", sans-serif; }
.responsibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.responsibility-grid article { padding: 28px; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; }
.responsibility-grid .human-responsibility { color: white; background: var(--night); }
.responsibility-grid article > p { margin: 0 0 22px; color: var(--teal); font-weight: 800; }
.responsibility-grid .human-responsibility > p { color: var(--gold-soft); }
.responsibility-grid ul { margin: 0; padding: 0; list-style: none; }
.responsibility-grid li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.human-responsibility li { border-color: var(--light-line); }
.responsibility-grid li::before { content: "✓"; margin-right: 9px; color: var(--teal); font-weight: 800; }
.human-responsibility li::before { color: var(--gold); }

.pilot-section { padding: clamp(90px, 11vw, 170px) clamp(22px, 7vw, 112px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(50px, 8vw, 120px); background: #eee6d9; }
.pilot-image { position: relative; }
.pilot-image::before { content: "Live proving ground"; position: absolute; z-index: 2; top: 18px; left: 18px; padding: 8px 12px; color: var(--night); background: var(--gold); border-radius: 999px; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.pilot-image img { width: 100%; aspect-ratio: 1.14; object-fit: cover; border-radius: 26px; filter: saturate(.83) contrast(1.02); box-shadow: var(--shadow); }
.pilot-stat { margin: 35px 0 26px; padding: 20px 0; display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 18px; border-block: 1px solid var(--line); }
.pilot-stat strong { color: var(--teal); font: 800 1.55rem "Manrope", sans-serif; }
.pilot-stat span { color: var(--muted); font-size: .84rem; }
.dark-link { color: var(--night); }

.readiness-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.readiness-grid article { min-height: 300px; padding: 26px; display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.readiness-grid h3 { margin: auto 0 15px; color: var(--night); font-size: 1.28rem; }
.readiness-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.pricing-section { padding: clamp(90px, 11vw, 170px) clamp(22px, 7vw, 112px); background: var(--paper); }
.pricing-heading { max-width: 850px; margin-bottom: 58px; }
.pricing-cards { display: grid; grid-template-columns: repeat(3,1fr); align-items: stretch; gap: 14px; }
.pricing-cards article { position: relative; padding: 30px; display: flex; flex-direction: column; gap: 14px; background: var(--cream); border: 1px solid var(--line); border-radius: 20px; }
.pricing-cards article > p { margin: 0; color: var(--teal); font-weight: 800; }
.pricing-cards strong { color: var(--night); font: 800 clamp(2.8rem,5vw,4.8rem) "Manrope",sans-serif; letter-spacing: -.06em; }
.pricing-cards sup { font-size: 1rem; vertical-align: super; }
.pricing-cards small { margin-left: 5px; color: var(--muted); font: 600 .78rem "DM Sans",sans-serif; letter-spacing: 0; }
.pricing-cards article > span { color: var(--muted); font-size: .88rem; }
.pricing-cards article > a { width: fit-content; margin-top: auto; padding-top: 10px; color: var(--teal); font-size: .78rem; font-weight: 800; text-underline-offset: 4px; }
.pricing-cards .featured-plan { color: white; background: var(--night); transform: translateY(-13px); }
.featured-plan p, .featured-plan strong { color: white !important; }
.featured-plan > a { color: var(--gold-soft) !important; }
.featured-plan > i { position: absolute; top: 16px; right: 16px; padding: 6px 9px; color: var(--night); background: var(--gold); border-radius: 999px; font-size: .62rem; font-style: normal; font-weight: 800; }
.trial-note { max-width: 760px; margin: 28px auto 0; color: var(--muted); text-align: center; font-size: .85rem; }

.final-cta { position: relative; min-height: 78vh; padding: clamp(100px, 12vw, 190px) clamp(22px, 7vw, 112px); display: grid; align-items: center; color: white; background: var(--night); overflow: hidden; }
.final-cta > div:last-child { position: relative; z-index: 2; max-width: 920px; }
.final-cta h2 { margin: 0; color: white; font-size: clamp(3.6rem, 7.5vw, 8rem); letter-spacing: -.07em; }
.final-cta p:not(.eyebrow) { max-width: 650px; color: rgba(255,255,255,.62); font-size: 1.05rem; }
.pilot-demo-link { display: inline-flex; min-height: 44px; margin-top: 20px; align-items: center; color: rgba(255,255,255,.62); font-size: .82rem; font-weight: 700; text-underline-offset: 4px; }
.cta-route { position: absolute; inset: 0; opacity: .4; }
.cta-route i { position: absolute; width: 50vw; aspect-ratio: 1; border: 1px solid rgba(226,185,79,.2); border-radius: 50%; }
.cta-route i:nth-child(1) { top: -25vw; right: -8vw; }
.cta-route i:nth-child(2) { width: 32vw; right: 15vw; bottom: -20vw; }
.cta-route i:nth-child(3) { width: 9px; right: 17vw; top: 30%; background: var(--gold); border: 0; box-shadow: 0 0 0 9px rgba(226,185,79,.1); }

footer { position: relative; padding: 65px clamp(22px, 7vw, 112px) 26px; display: grid; grid-template-columns: 1.6fr repeat(3, .6fr); gap: 45px; color: rgba(255,255,255,.6); background: #041117; border-top: 1px solid var(--light-line); }
footer > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-brand strong { color: white; font: 800 1.2rem "Manrope",sans-serif; }
.footer-brand p { max-width: 370px; margin: 5px 0; }
footer h2 { margin: 0 0 9px; color: var(--gold-soft); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
footer a { min-height: 30px; font-size: .82rem; text-decoration: none; }
footer a:hover { color: white; }
.footer-bottom { grid-column: 1 / -1; margin: 35px 0 0; padding-top: 20px; border-top: 1px solid var(--light-line); font-size: .72rem; }

.reveal-block { will-change: transform, opacity; }
a:focus-visible, button:focus-visible { outline: 3px solid rgba(226,185,79,.58); outline-offset: 4px; }
.button:hover, .header-cta:hover { transform: translateY(-2px); }

.motion-fallback .journey-film { height: auto !important; }
.motion-fallback .film-stage { min-height: auto; padding-bottom: 45px; overflow: visible; }
.motion-fallback .route-map,
.motion-fallback .route-car,
.motion-fallback .film-ambient,
.motion-fallback .film-chrome,
.motion-fallback .scroll-cue,
.motion-fallback .film-seam { display: none; }
.motion-fallback .journey-scene { position: relative; min-height: auto; padding-block: calc(var(--header-height) + 60px) 70px; opacity: 1; pointer-events: auto; }
.motion-fallback .journey-scene + .journey-scene { padding-top: 70px; border-top: 1px solid var(--light-line); }
.motion-fallback .operations-sticky { min-height: auto; }
.motion-fallback .operations-track { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; }
.motion-fallback .ops-card { flex: 0 0 min(720px, 82vw); scroll-snap-align: center; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .mega-nav { display: none; }
  .menu-toggle { display: grid; }
  .product-grid, .readiness-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }
  .journey-scene { grid-template-columns: 1fr; align-content: center; gap: 30px; }
  .hero-scene { padding-top: calc(var(--header-height) + 50px); }
  h1 { font-size: clamp(3rem, 10vw, 5.3rem); }
  .request-orbit { position: absolute; z-index: -1; right: -11%; bottom: 5%; width: 48vw; min-height: 340px; opacity: .32; }
  .scene-copy { max-width: 720px; }
  .attention-board, .assignment-stack, .watch-stack { width: min(520px, 80vw); justify-self: start; }
  .complete-scene { grid-template-columns: .45fr 1fr; }
  .complete-ring { width: min(260px, 30vw); }
  .operations-heading { grid-template-columns: 1fr; gap: 8px; }
  .operations-heading .eyebrow { margin-top: 0; }
  .personal-section, .pilot-section { grid-template-columns: 1fr; }
  .responsibility-grid { max-width: 740px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-cards .featured-plan { transform: none; }
  footer { grid-template-columns: 1.5fr 1fr 1fr; }
  footer > div:nth-of-type(4) { grid-column: 2; }
}

@media (max-width: 620px) {
  .site-header { padding: 12px 16px; }
  .brand-copy small, .header-login { display: none; }
  .brand-mark { width: 36px; height: 36px; }
  .header-actions { gap: 9px; }
  .header-cta { min-height: 42px; padding: 9px 13px; font-size: .75rem; }
  .header-cta-full { display: none; }
  .header-cta-short { display: inline; }
  .menu-toggle { width: 42px; height: 42px; }
  .journey-scene { padding: calc(var(--header-height) + 46px) 20px 78px; }
  h1 { font-size: clamp(2.75rem, 13vw, 4.25rem); }
  .hero-lead { font-size: .98rem; }
  .hero-actions { gap: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { min-height: 44px; }
  .pilot-proof { font-size: .69rem; }
  .request-orbit { display: none; }
  .scene-copy h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .scene-copy > p:last-child { font-size: .93rem; }
  .attention-board, .assignment-stack, .watch-stack { width: 100%; }
  .board-row { padding: 11px; }
  .assignment-card { grid-template-columns: 46px 1fr 28px; padding: 13px; }
  .assignment-card > span { width: 46px; height: 46px; }
  .vehicle-card { margin-left: 15px; }
  .watch-card { grid-template-columns: 42px 1fr; padding: 12px; }
  .watch-card > span { width: 40px; height: 40px; }
  .watch-card > i { grid-column: 2; }
  .watch-card:nth-child(2), .watch-card:nth-child(3) { margin-left: 0; }
  .complete-scene { grid-template-columns: 1fr; }
  .complete-ring { width: 150px; }
  .complete-ring span { width: 58px; height: 58px; font-size: 1.3rem; }
  .film-chrome { left: 20px; grid-template-columns: auto auto 60px; }
  .chapter-track { width: 60px; }
  .scroll-cue { display: none; }
  .content-section, .pilot-section, .pricing-section { padding-inline: 20px; }
  .section-intro h2, .personal-copy h2, .pilot-copy h2, .pricing-heading h2 { font-size: clamp(2.5rem, 12vw, 4rem); }
  .product-grid, .readiness-grid, .responsibility-grid { grid-template-columns: 1fr; }
  .product-card, .readiness-grid article { min-height: 250px; }
  .operations-sticky { min-height: auto; padding-top: calc(var(--header-height) + 38px); }
  .operations-heading { padding-inline: 20px; }
  .operations-heading h2 { font-size: 2.6rem; }
  .operations-heading > div > p { font-size: .95rem; }
  .operations-track { width: 100%; padding: 40px 20px 22px; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: rgba(226,185,79,.75) rgba(255,255,255,.08); }
  .ops-card { flex: 0 0 86vw; width: 86vw; height: min(560px, 68svh); min-height: 470px; border-radius: 19px; scroll-snap-align: center; }
  .ops-card-copy { inset: auto 22px 24px; }
  .ops-card-copy h3 { font-size: 2.25rem; }
  .ops-card-copy p { font-size: .9rem; }
  .pilot-image img { aspect-ratio: .95; }
  .final-cta { padding-inline: 20px; }
  .final-cta h2 { font-size: clamp(3.5rem, 16vw, 5.5rem); }
  footer { padding-inline: 20px; grid-template-columns: 1fr 1fr; gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  footer > div:nth-of-type(4) { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .journey-film { height: auto !important; }
  .film-stage { min-height: auto; padding-bottom: 45px; overflow: visible; }
  .route-map, .route-car, .film-ambient, .film-chrome, .scroll-cue, .film-seam { display: none; }
  .journey-scene { position: relative; min-height: auto; padding-block: calc(var(--header-height) + 60px) 70px; opacity: 1 !important; pointer-events: auto; transform: none !important; }
  .journey-scene + .journey-scene { padding-top: 70px; border-top: 1px solid var(--light-line); }
  .operations-sticky { min-height: auto; }
  .operations-track { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; }
  .proof-marquee { width: auto; padding-inline: 20px; flex-wrap: wrap; }
  .proof-marquee span:nth-child(n+6) { display: none; }
  .reveal-block { opacity: 1 !important; transform: none !important; }
}
