﻿:root {
  --ink: #eff7ff;
  --paper: #08111f;
  --void: #020510;
  --panel: rgba(7, 16, 30, .78);
  --panel-strong: rgba(10, 22, 40, .92);
  --glass: rgba(255, 255, 255, .045);
  --line: rgba(188, 220, 255, .13);
  --line-strong: rgba(188, 220, 255, .24);
  --muted: #8fa3c2;
  --soft: #c4d4ec;
  --cyan: #57f4dd;
  --blue: #55a8ff;
  --amber: #ffd166;
  --pink: #ff5c8a;
  --wrap: 1180px;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #020510;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 20%, rgba(54, 178, 255, .26), transparent 34%),
    radial-gradient(circle at 70% 80%, rgba(31, 87, 172, .35), transparent 38%),
    linear-gradient(145deg, #020510 0%, #061020 52%, #02040b 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img, video { display: block; max-width: 100%; }
::selection { background: var(--cyan); color: #021018; }

/* Typographic flow: balance headings so they never leave a single word on the
   last line, and let body copy avoid orphans. Modern browsers only; older ones
   fall back to normal wrapping. */
h1, h2, h3, h4 { text-wrap: balance; }
p, li, figcaption { text-wrap: pretty; }

.container {
  width: calc(100vw - 48px);
  max-width: var(--wrap);
  margin-inline: auto;
}

.world-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 18%, rgba(54, 178, 255, .32), transparent 40%),
    radial-gradient(circle at 74% 78%, rgba(31, 87, 172, .42), transparent 44%),
    linear-gradient(145deg, #020510 0%, #061020 52%, #02040b 100%);
}

/* Slow-drifting second pair of glows so the whole page breathes like the
   login screen instead of sitting flat behind the content. */
.world-bg::before {
  content: "";
  position: absolute;
  inset: -25%;
  background:
    radial-gradient(circle at 32% 24%, rgba(64, 190, 255, .24), transparent 38%),
    radial-gradient(circle at 68% 82%, rgba(40, 110, 200, .28), transparent 42%);
  animation: worldDrift 28s ease-in-out infinite alternate;
}

.world-bg::after {
  content: none;
}

@keyframes worldDrift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(2.5%, -2.2%, 0) scale(1.08); }
}

.world-bg span { display: none; }

.cockpit-bar {
  position: fixed;
  left: 50%;
  right: auto;
  top: 18px;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100vw - 48px));
  min-height: 58px;
  padding: 7px 8px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(5, 12, 23, .9);
  backdrop-filter: blur(22px) saturate(1.15);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.search-teaser {
  --charge: 0;
  display: flex; align-items: center; gap: 10px; justify-self: center;
  /* No fixed min-width: the teaser is decorative and must yield space so the
     language strip + CTA never push past the bar (7 languages since PT-BR). */
  width: min(440px, 100%); min-width: 0; height: 40px; padding: 0 14px;
  border: 1px solid rgba(87, 244, 221, calc(.14 + var(--charge) * .5)); border-radius: 11px;
  background: rgba(87, 244, 221, calc(.02 + var(--charge) * .07)); pointer-events: none; overflow: hidden;
  box-shadow: inset 0 0 calc(var(--charge) * 24px) rgba(87, 244, 221, calc(var(--charge) * .2)),
              0 0 calc(14px + var(--charge) * 54px) rgba(87, 244, 221, calc(.04 + var(--charge) * .38));
  transition: box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
.st-ico { display: flex; flex: 0 0 auto; color: var(--muted); }
.st-ico svg { width: 17px; height: 17px; }
.st-stage { position: relative; display: flex; align-items: center; gap: 5px; flex: 1; min-width: 0; overflow: hidden; }
.st-word {
  font-family: var(--mono); font-weight: 800; font-size: .96rem; letter-spacing: .06em;
  color: var(--cyan); white-space: nowrap;
  text-shadow: 0 0 calc(12px + var(--charge, 0) * 26px) rgba(87, 244, 221, calc(.3 + var(--charge, 0) * .55));
}
.st-caret { flex: 0 0 auto; width: 2px; height: 1.05em; border-radius: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: stBlink 1s steps(1) infinite; }
.search-teaser.finale { border-color: rgba(87, 244, 221, .55); background: rgba(87, 244, 221, .08); box-shadow: 0 0 36px rgba(87, 244, 221, .24); }
.search-teaser.finale .st-word { color: #eafff9; font-size: 1rem; letter-spacing: .01em; text-shadow: 0 0 26px rgba(87, 244, 221, .65); }
.search-teaser.finale .st-caret { display: none; }
.search-teaser.prompt .st-word { color: var(--soft); font-weight: 600; font-size: .86rem; letter-spacing: .01em; text-shadow: 0 0 14px rgba(120, 180, 255, .25); }
.search-teaser.prompt { animation: stPromptPulse 1.5s ease-in-out both; }
@keyframes stPromptPulse {
  0% { box-shadow: 0 0 14px rgba(87, 244, 221, .05); border-color: rgba(87, 244, 221, .14); }
  32% { box-shadow: 0 0 42px rgba(87, 244, 221, .36); border-color: rgba(87, 244, 221, .64); }
  100% { box-shadow: 0 0 14px rgba(87, 244, 221, .05); border-color: rgba(87, 244, 221, .14); }
}
@keyframes stFlip { 0% { transform: translateY(-95%); opacity: 0; filter: blur(3px); } 55% { opacity: 1; } 100% { transform: translateY(0); opacity: 1; filter: blur(0); } }
@keyframes stPunch { 0% { transform: scale(.68); opacity: 0; filter: blur(5px); } 60% { transform: scale(1.07); } 100% { transform: scale(1); opacity: 1; filter: blur(0); } }
@keyframes stBlink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
@media (max-width: 1080px) { .search-teaser { display: none; } }

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 286px;
  padding: 3px 8px 3px 3px;
  border-radius: 10px;
}

.brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 10px 22px rgba(87, 244, 221, .12));
}

.brand strong {
  display: block;
  font-size: 1.02rem;
  line-height: 1;
  letter-spacing: 0;
}

.brand small {
  display: block;
  margin-top: 4px;
  font-family: var(--mono);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #8394b6;
  white-space: nowrap;
}

.flight-instruments {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
}

.instrument {
  min-width: 126px;
  padding: 9px 12px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.instrument small {
  display: block;
  font-family: var(--mono);
  font-size: .56rem;
  letter-spacing: 0;
  color: var(--muted);
}

.instrument b {
  display: block;
  margin-top: 5px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 0;
  color: #dbe9ff;
  white-space: nowrap;
}

.instrument.live b { color: var(--cyan); }

.cockpit-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-left: auto;
}

.language-strip {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-strip button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: var(--muted);
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
  cursor: pointer;
}

.language-strip button[data-lang="pt-br"] {
  width: 48px;
}

.language-strip button:hover,
.language-strip button.active {
  border-color: rgba(87, 244, 221, .35);
  background: rgba(87, 244, 221, .12);
  color: var(--cyan);
}

.language-console { position: relative; display: none; }

.language-console summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  font-family: var(--mono);
}

.language-console summary::-webkit-details-marker { display: none; }
.language-console summary span { font-size: .55rem; letter-spacing: 0; color: var(--muted); }
.language-console summary b { font-size: .72rem; color: var(--cyan); }

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 9px);
  display: grid;
  gap: 5px;
  min-width: 158px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(5, 12, 23, .97);
  box-shadow: 0 22px 48px rgba(0, 0, 0, .42);
}

.language-menu button {
  border: 0;
  border-radius: 7px;
  padding: 9px 10px;
  color: var(--soft);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.active {
  color: var(--cyan);
  background: rgba(87, 244, 221, .1);
}

.bar-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  font-weight: 800;
  cursor: pointer;
}

.bar-cta {
  min-height: 40px;
  /* Fixed min-width sized above the longest translation (NL, 163px text) so the
     button does not resize between languages and shove the language strip sideways. */
  min-width: 196px;
  padding: 0 16px;
  border-radius: 8px;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--cyan), #a8fff1);
  color: #021118;
  font-size: .84rem;
  box-shadow: 0 16px 40px rgba(87, 244, 221, .18);
}

.btn {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn svg { width: 18px; }

.btn.primary {
  color: #021018;
  background: linear-gradient(135deg, var(--cyan), #b8fff3);
  box-shadow: 0 22px 58px rgba(87, 244, 221, .22);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 72px rgba(87, 244, 221, .28);
}

.btn.full { width: 100%; }

.hero {
  position: relative;
  min-height: auto;
  padding: 122px 0 48px;
  overflow: hidden;
}

.hero-video-layer {
  display: none;
}

.hero-video-layer video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  justify-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 840px;
  padding: 18px 0 2px;
  text-align: center;
}

.system-chip,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--cyan);
}

.system-chip {
  padding: 8px 11px;
  border: 1px solid rgba(87, 244, 221, .24);
  border-radius: 999px;
  background: rgba(87, 244, 221, .075);
}

.system-chip i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(87, 244, 221, .9);
}

.hero h1 {
  max-width: 980px;
  margin: 20px auto 16px;
  font-size: 2.75rem;
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 900px;
  margin: 0 auto;
  color: #c3d2eb;
  font-size: 1.06rem;
  line-height: 1.58;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  margin-top: 24px;
}

.hero-note {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.5;
  text-align: center;
}

.hero-cta-note {
  max-width: 680px;
  margin: 12px auto 0;
  color: #aebfda;
  font-size: .88rem;
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 0;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c8d8ee;
  background: rgba(255, 255, 255, .035);
  font-size: .82rem;
}

.maker-proof {
  margin: 10px 0 0;
  color: #7f90ad;
  font-size: .86rem;
  line-height: 1.5;
  text-align: center;
}

.maker-proof a {
  color: #b9cfff;
  text-decoration: underline;
  text-decoration-color: rgba(87, 244, 221, .38);
  text-underline-offset: 4px;
}

.maker-proof a:hover {
  color: var(--cyan);
}

.hero-proof-panel {
  width: min(760px, 100%);
  margin-top: -2px;
  padding: 4px 0 0;
}

.flight-picture-stage {
  position: relative;
  width: 100%;
  max-width: 1070px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(220, 245, 255, .13), rgba(255, 255, 255, .025));
  box-shadow: 0 42px 110px rgba(0, 0, 0, .45);
  isolation: isolate;
}

.stage-chrome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 28px;
  padding: 3px 6px 8px;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: 0;
  color: var(--muted);
}

.chrome-left { display: flex; gap: 6px; }
.chrome-left span { width: 7px; height: 7px; border-radius: 999px; background: rgba(255, 255, 255, .25); }
.chrome-title { color: #cbd9ed; text-align: center; }
.chrome-status { color: var(--cyan); }

.map-system.real-product-shot {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 9px;
  background: #020711;
}

.hero-slideshow,
.hero-slide,
.hero-slide img {
  position: absolute;
  inset: 0;
}

.hero-slideshow {
  z-index: 1;
}

.hero-slide {
  margin: 0;
  opacity: 0;
  animation: heroSlideShow 24s infinite;
}

.hero-slide-1 { opacity: 1; animation-delay: 0s; }
.hero-slide-2 { animation-delay: 6s; }
.hero-slide-3 { animation-delay: 12s; }
.hero-slide-4 { animation-delay: 18s; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03) brightness(.98);
}

.hero-slide figcaption {
  position: absolute;
  z-index: 2;
  right: 12px;
  top: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(87, 244, 221, .22);
  border-radius: 999px;
  background: rgba(2, 7, 17, .72);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes heroSlideShow {
  0% { opacity: 0; transform: scale(1.012); }
  3% { opacity: 1; transform: scale(1); }
  22% { opacity: 1; transform: scale(1); }
  25% { opacity: 0; transform: scale(1.012); }
  100% { opacity: 0; transform: scale(1.012); }
}

.shot-vignette,
.map-system.real-product-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.shot-vignette {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 22%, rgba(0, 0, 0, .12) 100%),
    linear-gradient(90deg, rgba(2, 7, 17, .08), transparent 18%, transparent 78%, rgba(2, 7, 17, .14));
}

.map-system.real-product-shot::after {
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: inherit;
}

.shot-scanline,
.live-badge { display: none; }

.hero-data-ribbon {
  position: absolute;
  z-index: 5;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  background: rgba(2, 7, 17, .74);
  backdrop-filter: blur(14px);
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: 0;
  color: #a9bad4;
}

.hero-data-ribbon span {
  display: flex;
  gap: 6px;
  white-space: nowrap;
}

.hero-data-ribbon b { color: var(--cyan); }

.story-rail {
  position: relative;
  z-index: 3;
  width: calc(100vw - 48px);
  max-width: 1070px;
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.story-rail a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(220, 240, 255, .11);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  backdrop-filter: blur(12px);
}

.story-rail span {
  font-family: var(--mono);
  color: var(--cyan);
  font-size: .65rem;
}

.story-rail b {
  font-size: .82rem;
  color: #d7e6ff;
  text-align: right;
}

section { position: relative; padding: 82px 0; }

.section-head {
  max-width: 780px;
  margin: 0 0 34px;
}

.section-head.centered {
  text-align: center;
  margin-inline: auto;
}

.section-head h2,
.manifesto-copy h2,
.problem-copy h2,
.deep-copy h2,
.moments-copy h2,
.clearance-copy h2 {
  margin: 12px 0 14px;
  font-size: 2.65rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.section-head p,
.manifesto-copy p,
.problem-copy p,
.deep-copy p,
.moments-copy p,
.clearance-copy p {
  margin: 0;
  color: #b8c8e4;
  line-height: 1.7;
  font-size: 1.03rem;
}

.pilot-types {
  padding-top: 72px;
}

.pilot-types .section-head {
  max-width: 900px;
}

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.pilot-card {
  display: grid;
  align-content: start;
  min-height: 548px;
  padding: 34px;
  border: 1px solid rgba(188, 220, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 21, 38, .92), rgba(6, 15, 28, .92)),
    rgba(255, 255, 255, .03);
}

.pilot-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  border: 1px solid rgba(87, 244, 221, .28);
  border-radius: 14px;
  background: rgba(87, 244, 221, .12);
  color: var(--cyan);
}

.pilot-card.online .pilot-icon {
  border-color: rgba(85, 168, 255, .34);
  background: rgba(85, 168, 255, .12);
  color: #7fbaff;
}

.pilot-card.together .pilot-icon {
  border-color: rgba(154, 113, 255, .36);
  background: rgba(154, 113, 255, .13);
  color: #a88cff;
}

.pilot-icon svg {
  width: 28px;
  height: 28px;
}

.pilot-card h3 {
  margin: 0 0 14px;
  font-size: 1.42rem;
  line-height: 1.12;
}

.pilot-card p {
  margin: 0;
  color: #aebfda;
  font-size: 1.02rem;
  line-height: 1.55;
}

.pilot-card ul {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.pilot-card li {
  position: relative;
  padding-left: 26px;
  color: #aebfda;
  line-height: 1.5;
}

.pilot-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--cyan);
  font-weight: 900;
}

.problem-strip { padding-top: 76px; }

.problem-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: center;
}

.problem-copy p { max-width: 52ch; }

.atc-search-moment {
  max-width: 52ch;
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(87, 244, 221, .18);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 31, 54, .56), rgba(5, 12, 22, .82));
}

.atc-search-moment span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.atc-search-moment b {
  display: block;
  margin-bottom: 8px;
  color: #edf6ff;
  font-size: 1.08rem;
}

.atc-search-moment p {
  max-width: none;
  margin: 0;
  color: #b8c8e4;
  font-size: .95rem;
  line-height: 1.58;
}

.tab-compare {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}

.tab-column {
  min-height: 310px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(4, 12, 22, .58);
  overflow: hidden;
}

.compare-label {
  display: block;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(220, 240, 255, .08);
  font-family: var(--mono);
  font-size: .64rem;
  letter-spacing: 0;
  color: var(--cyan);
  text-transform: uppercase;
}

.browser-pile { position: relative; min-height: 256px; }

.browser-pile i {
  position: absolute;
  left: 24px;
  right: 24px;
  display: block;
  padding: 13px 15px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
  color: #aebfda;
  font-style: normal;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.browser-pile i:nth-child(1) { top: 28px; }
.browser-pile i:nth-child(2) { top: 70px; transform: translateX(18px); }
.browser-pile i:nth-child(3) { top: 112px; transform: translateX(-8px); }
.browser-pile i:nth-child(4) { top: 154px; transform: translateX(26px); }
.browser-pile i:nth-child(5) { top: 196px; transform: translateX(6px); }

.single-window {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

.single-window img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  filter: saturate(1.02) brightness(.86);
}

.single-window::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(2, 7, 17, .82));
}

.single-window b {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  font-size: 1.25rem;
  line-height: 1.15;
}

.trust-triad {
  padding-top: 50px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 232px;
  padding: 24px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(12, 27, 49, .56), rgba(5, 12, 22, .78));
}

.trust-card span {
  font-family: var(--mono);
  color: var(--cyan);
  font-size: .68rem;
}

.trust-card b {
  color: #e7f1ff;
  font-size: 1.26rem;
  line-height: 1.14;
}

.trust-card p {
  margin: 0;
  color: #aebfda;
  line-height: 1.62;
}

.modes { padding-top: 58px; }

.mode-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mode-tile {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 27, 49, .8), rgba(5, 12, 22, .92));
  box-shadow: 0 24px 68px rgba(0, 0, 0, .22);
}

.mode-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 42%);
  pointer-events: none;
}

.mode-tile.online::after,
.mode-tile.clear::after,
.mode-tile.together::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background-size: cover;
  background-position: center;
  opacity: .24;
  mask-image: linear-gradient(transparent, #000 32%);
}

.mode-tile.online::after { background-image: url("assets/images/fly-online.jpg"); }
.mode-tile.clear::after { background-image: url("assets/images/fly-clear.jpg"); }
.mode-tile.together::after { background-image: url("assets/images/fly-together.jpg"); }

.mode-top,
.mode-tile h3,
.mode-tile p {
  position: relative;
  z-index: 2;
}

.mode-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
}

.mode-top span { color: var(--cyan); font-size: .7rem; }
.mode-top small { color: var(--muted); font-size: .6rem; letter-spacing: 0; text-transform: uppercase; }

.mode-tile h3 {
  max-width: 12ch;
  margin: 30px 0 12px;
  font-size: 1.82rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.mode-tile p {
  margin: 0;
  color: #c2d2ec;
  line-height: 1.62;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.feature-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(12, 27, 49, .72), rgba(5, 12, 22, .9)),
    rgba(255, 255, 255, .035);
}

.feature-shot {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: block;
  width: 112px;
  height: 68px;
  padding: 0;
  border: 1px solid rgba(220, 240, 255, .14);
  border-radius: 7px;
  overflow: hidden;
  background: #07111e;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
  cursor: zoom-in;
}

.feature-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .05), transparent 42%, rgba(2, 7, 17, .18));
  pointer-events: none;
}

.feature-shot::after {
  content: "↗";
  position: absolute;
  right: 7px;
  bottom: 6px;
  z-index: 2;
  width: 19px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 240, 255, .2);
  border-radius: 999px;
  background: rgba(3, 9, 18, .78);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .68rem;
}

.feature-shot img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .28s ease, filter .28s ease;
  filter: saturate(1.06) contrast(1.03);
}

.feature-card:hover .feature-shot img,
.feature-shot:focus-visible img {
  transform: scale(1.045);
}

.feature-shot:focus-visible {
  outline: 1px solid var(--cyan);
  outline-offset: 2px;
}

.feature-card > span,
.feature-card > b,
.feature-card > p {
  position: relative;
  z-index: 2;
}

.feature-card span {
  font-family: var(--mono);
  font-size: .68rem;
  color: var(--cyan);
}

.feature-card b {
  max-width: 12ch;
  font-size: 1.42rem;
  line-height: 1.08;
}

.feature-card p {
  margin: 0;
  color: #aebfda;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .feature-shot { width: 96px; height: 58px; top: 16px; right: 16px; }
}

.deep { padding: 74px 0; }

.deep-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: center;
}

.deep-grid.flip { grid-template-columns: 1.14fr .86fr; }
.deep-grid.flip .deep-copy { order: 2; }

.deep-copy {
  padding: 24px 0 24px 26px;
  border-left: 1px solid rgba(87, 244, 221, .24);
}

.deep-copy ul {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.deep-copy li {
  position: relative;
  padding-left: 21px;
  color: #d0def2;
  line-height: 1.45;
}

.deep-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .56em;
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--cyan);
  box-shadow: 0 0 16px rgba(87, 244, 221, .7);
}

.cinema-frame {
  position: relative;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 10px;
  overflow: hidden;
  background: #07111e;
  box-shadow: 0 32px 86px rgba(0, 0, 0, .32);
  cursor: zoom-in;
}

.cinema-frame img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
  filter: saturate(1.05) contrast(1.04);
}

.cinema-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 7, 17, .72));
  pointer-events: none;
}

.shot-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 15px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  background: rgba(3, 9, 18, .74);
  backdrop-filter: blur(14px);
}

.shot-caption b { font-size: 1.04rem; }
.shot-caption span { max-width: 44ch; color: var(--muted); line-height: 1.45; text-align: right; }

/* Click-to-zoom lightbox for product screenshots */
.shot-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vmin;
  background: rgba(2, 6, 14, .9);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .2s ease;
}
.shot-lightbox[hidden] { display: none; }
.shot-lightbox.is-open { opacity: 1; }
.shot-lightbox img {
  max-width: 94vw;
  max-height: 94vh;
  object-fit: contain;
  border: 1px solid rgba(220, 240, 255, .14);
  border-radius: 10px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .6);
}
.shot-lightbox__close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 240, 255, .2);
  border-radius: 999px;
  background: rgba(3, 9, 18, .72);
  color: #eaf2fb;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.shot-lightbox__close:hover { border-color: var(--cyan); color: var(--cyan); }

.moments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.moments-grid article {
  min-height: 166px;
  padding: 18px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(4, 12, 22, .62);
}

.moments-grid article span {
  display: block;
  margin-bottom: 18px;
  font-family: var(--mono);
  color: var(--cyan);
  font-size: .68rem;
}

.moments-grid article b {
  display: block;
  margin-bottom: 8px;
  font-size: 1.12rem;
  line-height: 1.22;
}

.moments-grid article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.moments-shell {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 28px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
}

.moments-shell .moments-grid {
  grid-template-columns: 1fr;
}

.moments-shell .moments-grid article {
  min-height: auto;
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
}

.moments-shell .moments-grid article span { grid-row: 1 / span 2; margin: 0; }

.family {
  padding-top: 18px;
}

.family-shell {
  display: grid;
  grid-template-columns: .66fr 1.34fr;
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border-top: 1px solid rgba(220, 240, 255, .1);
  border-bottom: 1px solid rgba(220, 240, 255, .1);
  background: linear-gradient(90deg, rgba(87, 244, 221, .045), rgba(255, 255, 255, .018));
}

.family-copy {
  display: grid;
  align-content: center;
  gap: 12px;
}

.family-copy h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.05;
}

.family-copy p {
  max-width: 62ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.family-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.family-tool {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 10px;
  min-height: 302px;
  padding: 10px 10px 16px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(4, 12, 22, .62);
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  scroll-margin-top: 118px;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.family-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 244, 221, .32);
  background: rgba(6, 18, 31, .84);
}

.family-tool img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(220, 240, 255, .1);
  filter: saturate(.96) brightness(.84) contrast(1.04);
  transition: filter .18s ease, transform .18s ease;
}

.family-tool:hover img {
  filter: saturate(1.05) brightness(.96) contrast(1.06);
  transform: scale(1.01);
}

.family-tool span {
  padding: 0 7px;
  font-family: var(--mono);
  color: var(--cyan);
  font-size: .66rem;
}

.family-tool b {
  padding: 0 7px;
  font-size: 1.08rem;
}

.family-tool p {
  padding: 0 7px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.beta { padding-bottom: 112px; }

.beta-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  align-items: start;
}

.clearance-copy {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid rgba(220, 240, 255, .11);
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
}

.clearance-facts {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.clearance-facts div {
  padding: 14px 15px;
  border: 1px solid rgba(220, 240, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: #d7e6ff;
}

.clearance-facts small {
  display: block;
  margin-bottom: 5px;
  font-family: var(--mono);
  font-size: .6rem;
  color: var(--muted);
}

.clearance-facts b { font-size: .96rem; }

.beta-process {
  margin-top: 14px;
  padding: 15px;
  border: 1px solid rgba(220, 240, 255, .09);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.process-kicker {
  display: block;
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: .62rem;
  color: var(--cyan);
  text-transform: uppercase;
}

.beta-process ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: beta-flow;
}

.beta-process li {
  position: relative;
  min-height: 30px;
  padding-left: 42px;
  counter-increment: beta-flow;
}

.beta-process li::before {
  content: counter(beta-flow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(87, 244, 221, .2);
  border-radius: 999px;
  background: rgba(87, 244, 221, .08);
  color: var(--cyan);
  font-family: var(--mono);
  font-size: .58rem;
}

.beta-process b {
  display: block;
  margin-bottom: 2px;
  color: #e6f0ff;
  font-size: .93rem;
}

.beta-process span:not(.process-kicker) {
  display: block;
  color: #aebfda;
  font-size: .88rem;
  line-height: 1.48;
}

.beta-form {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12, 27, 49, .58), rgba(5, 12, 22, .82));
  box-shadow: 0 24px 68px rgba(0, 0, 0, .26);
}

.beta-form label,
.beta-form fieldset,
.beta-form button,
.beta-form p {
  position: relative;
  z-index: 1;
}

.beta-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
  color: #dce9ff;
  font-weight: 620;
}

.beta-form .field-trap {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.beta-form .checkline {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  padding: 11px 12px;
  border: 1px solid rgba(220, 240, 255, .1);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
  color: #b8c8e4;
  font-size: .84rem;
  line-height: 1.45;
  font-weight: 560;
}

.beta-form .checkline input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #57f4dd;
}

.form-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.choice-field {
  display: grid;
  gap: 7px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
}

.choice-field legend,
.beta-form label > span:first-child {
  margin-bottom: 1px;
  color: #dce9ff;
  font-size: .9rem;
  font-weight: 650;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 44px;
  gap: 7px;
}

.choice-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-grid.network {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.choice-option {
  position: relative;
  display: block !important;
  min-height: 44px;
  margin: 0 !important;
  color: #dce9ff;
  font-weight: 600;
}

.choice-option input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-option span {
  height: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 7px;
  background: rgba(255, 255, 255, .035);
  color: #cddbf2;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  overflow-wrap: anywhere;
  transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.choice-option:hover span,
.choice-option input:focus-visible + span {
  border-color: rgba(87, 244, 221, .32);
  background: rgba(87, 244, 221, .06);
  box-shadow: 0 0 0 3px rgba(87, 244, 221, .055);
}

.choice-option input:checked + span {
  border-color: rgba(87, 244, 221, .46);
  background: rgba(87, 244, 221, .09);
  color: #eefcf9;
  box-shadow: inset 0 0 0 1px rgba(87, 244, 221, .08);
}

.choice-field.is-missing .choice-option span {
  border-color: rgba(255, 158, 183, .52);
  box-shadow: 0 0 0 4px rgba(255, 158, 183, .08);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(220, 240, 255, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  color: #eef6ff;
  padding: 12px 13px;
  outline: none;
  font: inherit;
  font-weight: 540;
}

textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.45;
}

input::placeholder,
textarea::placeholder {
  color: #8ea2c1;
  font-weight: 540;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(87, 244, 221, .42);
  box-shadow: 0 0 0 4px rgba(87, 244, 221, .08);
}

.form-note {
  color: var(--muted);
  font-size: .84rem;
  line-height: 1.55;
}

.beta-form .btn.full {
  min-height: 48px;
  padding: 0 18px;
  font-size: .94rem;
  font-weight: 760;
  box-shadow: 0 14px 34px rgba(87, 244, 221, .16);
}

.beta-form .btn.full svg {
  width: 16px;
}

.beta-form .btn.primary:hover {
  box-shadow: 0 18px 44px rgba(87, 244, 221, .2);
}

.form-message {
  min-height: 1.4em;
  color: var(--cyan);
  font-weight: 650;
}

.form-message.error { color: #ff9eb7; }

.beta-form.is-submitting {
  opacity: .78;
  pointer-events: none;
}

.faq { padding-top: 68px; }

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 860px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  overflow: hidden;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 19px;
  font-weight: 800;
  color: #e7f1ff;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-family: var(--mono); color: var(--cyan); font-size: 1.25rem; line-height: 1; }
.faq-list details[open] summary::after { content: "-"; }
.faq-list p { margin: 0; padding: 0 19px 17px; color: var(--muted); line-height: 1.65; }

.footer {
  padding: 28px 0 48px;
  border-top: 1px solid rgba(220, 240, 255, .08);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer strong { display: block; color: var(--ink); }
.footer p { margin: 6px 0 0; }
.footer nav { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.footer a:hover { color: var(--cyan); }

.discord-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.discord-link svg {
  width: 18px;
  height: 18px;
}

.side-toolbox {
  position: fixed;
  right: clamp(12px, 1.45vw, 26px);
  top: 50%;
  z-index: 65;
  display: grid;
  gap: 7px;
  padding: 6px;
  transform: translateY(-50%);
  border: 1px solid rgba(220, 240, 255, .13);
  border-radius: 12px;
  background: rgba(5, 12, 23, .84);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .05);
  backdrop-filter: blur(18px) saturate(1.1);
}

.side-toolbox__button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .045);
  color: #c8d8ee;
  transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.side-toolbox__button:hover {
  transform: translateY(-1px);
  border-color: rgba(87, 244, 221, .42);
  background: rgba(87, 244, 221, .1);
  color: var(--cyan);
  box-shadow: 0 0 26px rgba(87, 244, 221, .13);
}

.side-toolbox__button:focus-visible {
  outline: 0;
  border-color: rgba(87, 244, 221, .62);
  box-shadow: 0 0 0 4px rgba(87, 244, 221, .1);
}

.side-toolbox__button svg {
  width: 20px;
  height: 20px;
}

.legal-page {
  min-height: 100vh;
}

.legal-bar {
  grid-template-columns: auto 1fr auto;
}

.legal-main {
  padding: 138px 0 54px;
}

.legal-shell {
  max-width: 920px;
}

.legal-card {
  padding: 34px;
  border: 1px solid rgba(220, 240, 255, .12);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(12, 27, 49, .58), rgba(5, 12, 22, .82));
  box-shadow: 0 24px 68px rgba(0, 0, 0, .26);
}

.legal-card h1 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.04;
}

.legal-card h2 {
  margin: 28px 0 8px;
  color: #e6f0ff;
  font-size: 1.08rem;
}

.legal-card p {
  margin: 0;
  color: #b8c8e4;
  line-height: 1.7;
}

.legal-card a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-updated {
  color: var(--muted) !important;
  font-size: .9rem;
}

@media (max-width: 1120px) {
  .flight-instruments { display: none; }
  .problem-grid,
  .manifesto-grid,
  .deep-grid,
  .deep-grid.flip,
  .moments-shell,
  .family-shell,
  .beta-grid {
    grid-template-columns: 1fr;
  }
  .deep-grid.flip .deep-copy { order: 0; }
  .clearance-copy { position: relative; top: auto; }
}

@media (max-width: 880px) {
  .container {
    width: calc(100vw - 32px);
  }
  .story-rail {
    width: calc(100vw - 32px);
  }
  .cockpit-bar {
    left: 12px;
    right: 12px;
    top: 10px;
    width: auto;
    transform: none;
  }
  .hero { padding-top: 112px; }
  .hero h1 { font-size: 2.5rem; }
  .section-head h2,
  .manifesto-copy h2,
  .problem-copy h2,
  .deep-copy h2,
  .moments-copy h2,
  .family-copy h2,
  .clearance-copy h2 { font-size: 2.32rem; }
  .story-rail,
  .tab-compare,
  .mode-board,
  .pilot-grid,
  .trust-grid,
  .feature-grid,
  .moments-grid,
  .family-tools {
    grid-template-columns: 1fr;
  }
  .tab-column { min-height: 250px; }
  .browser-pile { min-height: 206px; }
  .browser-pile i { left: 18px; right: 18px; }
  .browser-pile i:nth-child(1) { top: 18px; }
  .browser-pile i:nth-child(2) { top: 54px; }
  .browser-pile i:nth-child(3) { top: 90px; }
  .browser-pile i:nth-child(4) { top: 126px; }
  .browser-pile i:nth-child(5) { top: 162px; }
  .single-window img,
  .cinema-frame img { height: auto; }
}

@media (max-width: 620px) {
  .container {
    width: calc(100vw - 28px);
  }
  .story-rail {
    width: calc(100vw - 28px);
  }
  .cockpit-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    border-radius: 12px;
  }
  .brand { flex: 1 1 auto; min-width: 0; }
  .search-teaser { display: flex; width: 100%; min-width: 0; }
  .cockpit-actions {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    gap: 8px;
  }
  .language-strip { display: none; }
  .language-console { display: block; }
  .language-console summary { height: 40px; }
  .language-menu { left: 0; right: auto; }
  .bar-cta { width: 100%; min-width: 0; padding: 0 12px; font-size: .84rem; }
  .hero { min-height: auto; padding-top: 210px; }
  .hero-copy { padding-top: 10px; }
  .hero h1 {
    max-width: 360px;
    font-size: 2.12rem;
    line-height: 1.1;
  }
  .hero-lead { font-size: 1rem; line-height: 1.6; }
  .hero-actions { display: grid; justify-items: center; }
  .hero-actions p { text-align: center; }
  .hero-proof { display: flex; }
  .flight-picture-stage { border-radius: 12px; padding: 6px; }
  .stage-chrome { font-size: .55rem; }
  .chrome-title { display: none; }
  .map-system.real-product-shot { min-height: 260px; aspect-ratio: auto; }
  .hero-slide img {
    width: 170%;
    max-width: none;
    left: 50%;
    transform: translateX(-52%);
  }
  .hero-data-ribbon {
    left: 10px;
    right: 10px;
    bottom: 10px;
    justify-content: flex-start;
    overflow-x: auto;
  }
  .story-rail a { justify-content: flex-start; }
  .story-rail b { text-align: left; }
  section { padding: 66px 0; }
  .problem-strip { padding-top: 52px; }
  .pilot-grid { gap: 14px; }
  .pilot-card {
    min-height: auto;
    padding: 24px;
    border-radius: 14px;
  }
  .trust-triad { padding-top: 42px; }
  .trust-card { min-height: auto; padding: 20px; }
  .section-head h2,
  .manifesto-copy h2,
  .problem-copy h2,
  .deep-copy h2,
  .moments-copy h2,
  .family-copy h2,
  .clearance-copy h2 { font-size: 1.96rem; }
  .family-shell { padding: 16px 0; }
  .family-tool { min-height: auto; }
  .deep-copy { padding: 20px 0 20px 20px; }
  .shot-caption { display: block; }
  .shot-caption span { display: block; margin-top: 6px; text-align: left; }
  .moments-shell .moments-grid article { grid-template-columns: 1fr; }
  .moments-shell .moments-grid article span { margin-bottom: 12px; }
  .form-split { grid-template-columns: 1fr; }
  .beta-form { padding: 20px; }
  .choice-grid,
  .choice-grid.compact,
  .choice-grid.network { grid-template-columns: 1fr 1fr; }
  .footer-inner { display: grid; }
  .side-toolbox {
    right: 12px;
    top: auto;
    bottom: 12px;
    grid-auto-flow: column;
    transform: none;
  }
  .side-toolbox__button {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-slide {
    opacity: 0;
  }
  .hero-slide-1 {
    opacity: 1;
  }
}
