:root {
  color-scheme: dark;
  --night-0: #07080a;
  --night-1: #0a0c0f;
  --night-2: #101318;
  --night-3: #171c23;
  --paper: #f2eee6;
  --paper-soft: #cec9c0;
  --muted: #8f959c;
  --muted-strong: #b4b8bd;
  --signal: #f07a52;
  --signal-soft: #f2ad91;
  --aero: #8ec9d8;
  --green: #85d9ac;
  --danger: #ff746f;
  --line: rgba(231, 238, 247, 0.11);
  --line-strong: rgba(231, 238, 247, 0.2);
  --panel: rgba(16, 19, 24, 0.86);
  --panel-solid: #101318;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --display: "Helvetica Neue", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  --sans: "Helvetica Neue", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  --editorial: "Iowan Old Style", "Baskerville", "Times New Roman", Georgia, serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Roboto Mono", monospace;
  --page-pad: clamp(20px, 4vw, 72px);
  --content: 1440px;
  --radius-xs: 5px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  margin: 0;
  scroll-behavior: smooth;
  background: var(--night-0);
}

body {
  min-width: 320px;
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% -5%, rgba(75, 129, 164, 0.1), transparent 30rem),
    var(--night-0);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  animation: vam-page-enter 320ms var(--ease) both;
  transition: opacity 170ms ease, transform 170ms ease;
}

html.page-leaving body {
  opacity: 0;
  transform: translateY(4px);
}

body::selection {
  color: var(--night-0);
  background: var(--signal-soft);
}

body.nav-open {
  overflow: hidden;
}

@keyframes vam-page-enter {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

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

a {
  color: inherit;
}

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

p {
  text-wrap: pretty;
}

img,
svg,
canvas {
  display: block;
  max-width: 100%;
}

[hidden],
.hidden {
  display: none !important;
}

:focus-visible {
  outline: 2px solid var(--aero);
  outline-offset: 4px;
}

.page-shell {
  position: relative;
  min-height: 100dvh;
  isolation: isolate;
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-header,
.portal-header {
  position: relative;
  z-index: 100;
  display: flex;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 92px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.site-header.is-floating,
.portal-header {
  position: sticky;
  top: 0;
  min-height: 76px;
  background: linear-gradient(to bottom, rgba(5, 6, 9, 0.94), rgba(5, 6, 9, 0.72) 74%, transparent);
  backdrop-filter: blur(16px);
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  text-decoration: none;
}

.brand-lockup img {
  width: 38px;
  height: 38px;
}

.brand-lockup span {
  display: grid;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--muted);
  font: 0.62rem/1 var(--sans);
  letter-spacing: 0;
}

.site-nav,
.portal-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
}

.site-nav a,
.portal-nav a,
.portal-nav button {
  position: relative;
  padding: 10px 0;
  border: 0;
  color: var(--muted-strong);
  background: transparent;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease;
}

.site-nav a::after,
.portal-nav a::after,
.portal-nav button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--signal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.site-nav a:hover,
.site-nav a.active,
.portal-nav a:hover,
.portal-nav a.active,
.portal-nav button:hover {
  color: var(--paper);
}

.site-nav a:hover::after,
.site-nav a.active::after,
.portal-nav a:hover::after,
.portal-nav a.active::after,
.portal-nav button:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav .nav-cta,
.portal-nav .nav-cta {
  display: inline-flex;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.018);
  line-height: 1;
}

.site-nav .nav-cta::after,
.portal-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover,
.portal-nav .nav-cta:hover {
  border-color: rgba(242, 238, 230, 0.4);
  background: rgba(255, 255, 255, 0.055);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  place-items: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  width: 18px;
  height: 1px;
  content: "";
  background: var(--paper);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle span {
  margin: 4px 0;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-5px) rotate(-45deg);
}

.button,
button.button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--signal);
  border-radius: 8px;
  color: #160b07;
  background: var(--signal);
  box-shadow: none;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: color 200ms ease, background 200ms ease, border-color 200ms ease, transform 200ms var(--ease), box-shadow 200ms ease;
}

.button::after {
  display: none;
}

button.button::after {
  content: "\2192";
}

.button:hover {
  background: #f58a65;
  box-shadow: 0 8px 24px rgba(240, 122, 82, 0.14);
  transform: translateY(-1px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0);
}

.button:hover::after {
  transform: translate(2px, -2px);
}

.button.secondary {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: rgba(244, 240, 232, 0.46);
  background: rgba(255, 255, 255, 0.07);
}

.button.danger {
  border-color: rgba(255, 116, 111, 0.4);
  color: #ffc1bd;
  background: rgba(255, 116, 111, 0.08);
  box-shadow: none;
}

.button.small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 0.76rem;
}

.button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.button-row,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.eyebrow,
.section-code,
.panel-kicker {
  display: flex;
  margin: 0 0 20px;
  align-items: center;
  gap: 12px;
  color: var(--signal-soft);
  font: 700 0.64rem/1.2 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-code::before,
.panel-kicker::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.display-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.4vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -0.062em;
  line-height: 0.92;
}

.display-title em {
  color: var(--signal-soft);
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.045em;
}

.section-title {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.7vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.052em;
  line-height: 0.98;
}

.lead,
.copy,
.subcopy,
.card-copy {
  color: var(--muted-strong);
}

.lead {
  max-width: 660px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.6;
}

.numeric {
  font-variant-numeric: tabular-nums;
}

.tag,
.badge,
.status-pill,
.join-status,
.maintenance-status,
.login-chip,
.login-system {
  display: inline-flex;
  min-height: 28px;
  padding: 0 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.03);
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tag.live::before,
.status-pill::before,
.maintenance-status::before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: none;
}

.site-main,
.public-main,
.portal-main {
  position: relative;
  z-index: 2;
}

.section-wrap {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: 0 auto;
}

.section-pad {
  padding-top: clamp(96px, 12vw, 190px);
  padding-bottom: clamp(96px, 12vw, 190px);
}

#platform {
  padding-bottom: clamp(72px, 7vw, 110px);
}

#capabilities {
  padding-top: clamp(72px, 7vw, 110px);
  border-top: 1px solid var(--line);
}

.rule {
  width: 100%;
  height: 1px;
  border: 0;
  background: var(--line);
}

/* Landing: the globe is an instrument, not a wallpaper. */
.landing-page {
  background:
    radial-gradient(circle at 73% 24%, rgba(31, 89, 126, 0.13), transparent 34rem),
    linear-gradient(130deg, #07080a 15%, #090c11 58%, #07080a 100%);
}

.landing-page .site-header {
  position: absolute;
  right: 0;
  left: 0;
}

.hero-orbit {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
}

.hero-orbit::after {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  height: 18%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, var(--night-0));
}

.hero-copy {
  position: relative;
  z-index: 12;
  display: flex;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: max(780px, 100svh);
  margin: 0 auto;
  padding-top: 140px;
  padding-bottom: 110px;
  align-items: center;
  pointer-events: none;
}

.hero-copy-inner {
  width: min(660px, 50%);
  pointer-events: auto;
}

.hero-copy .display-title {
  max-width: 650px;
}

.hero-copy .lead {
  max-width: 600px;
  margin: 30px 0 0;
}

.hero-copy .actions {
  margin-top: 36px;
}

.hero-proof {
  display: flex;
  margin-top: 42px;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font: 0.72rem/1.45 var(--sans);
  letter-spacing: 0;
}

.hero-proof .proof-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, var(--signal), transparent);
}

.cosmos-stage {
  position: absolute;
  inset: 0 0 0 38%;
  z-index: 2;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.cosmos-stage:active {
  cursor: grabbing;
}

.cosmos-canvas {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.cosmos-ready .cosmos-canvas {
  opacity: 1;
}

.cosmos-fallback {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 72% 45%, transparent 0 24%, rgba(24, 95, 142, 0.12) 35%, transparent 55%),
    url("earth-horizon.png") right 34% center / cover no-repeat;
  opacity: 0.64;
  transition: opacity 1s ease;
}

.cosmos-ready .cosmos-fallback {
  opacity: 0;
}

.cosmos-label {
  position: absolute;
  z-index: 5;
  display: grid;
  gap: 3px;
  padding-left: 15px;
  color: var(--paper);
  font: 700 0.61rem/1.2 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  pointer-events: none;
  transition: opacity 400ms ease, transform 400ms var(--ease);
}

.cosmos-label::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border: 1px solid var(--signal-soft);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255, 112, 64, 0.7);
}

.cosmos-label small {
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.label-moon {
  top: 23%;
  right: 8%;
}

.label-route {
  right: 19%;
  bottom: 30%;
}

.hero-telemetry {
  position: absolute;
  right: var(--page-pad);
  bottom: 42px;
  z-index: 15;
  display: grid;
  min-width: min(460px, 42vw);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  pointer-events: none;
}

.hero-telemetry div {
  padding: 14px 18px 0;
  border-left: 1px solid var(--line);
}

.hero-telemetry span,
.hero-telemetry small {
  display: block;
  font-family: var(--mono);
}

.hero-telemetry span {
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-telemetry small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-marquee {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: #080a0e;
}

.system-strip {
  position: relative;
  z-index: 10;
  border-block: 1px solid var(--line);
  background: rgba(8, 10, 13, 0.94);
}

.system-strip-inner {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.system-strip-inner > span {
  display: grid;
  min-height: 92px;
  padding: 22px 28px;
  align-content: center;
  border-left: 1px solid var(--line);
}

.system-strip-inner > span:last-child {
  border-right: 1px solid var(--line);
}

.system-strip-inner small,
.system-strip-inner strong {
  display: block;
}

.system-strip-inner small {
  color: var(--muted);
  font: 0.58rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-strip-inner strong {
  margin-top: 8px;
  color: var(--paper-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.signal-track {
  display: flex;
  width: max-content;
  padding: 22px 0;
  animation: signal-scroll 34s linear infinite;
}

.signal-track span {
  display: flex;
  align-items: center;
  color: var(--muted-strong);
  font: 650 0.68rem/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-track span::after {
  width: 5px;
  height: 5px;
  margin: 0 32px;
  content: "";
  border-radius: 50%;
  background: var(--signal);
}

@keyframes signal-scroll {
  to { transform: translateX(-50%); }
}

.platform-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.platform-intro-copy {
  position: sticky;
  top: 130px;
}

.platform-intro-copy .lead {
  margin: 30px 0 0;
}

.operation-sequence {
  counter-reset: operation;
  border-top: 1px solid var(--line);
}

.operation-step {
  position: relative;
  display: grid;
  min-height: 190px;
  padding: 34px 0 38px 70px;
  border-bottom: 1px solid var(--line);
  counter-increment: operation;
  align-content: start;
  transition: color 250ms ease, background 250ms ease;
}

.operation-step::before {
  position: absolute;
  top: 40px;
  left: 0;
  content: "0" counter(operation);
  color: var(--signal-soft);
  font: 0.66rem/1 var(--mono);
  letter-spacing: 0.12em;
}

.operation-step::after {
  display: none;
}

.operation-step:hover {
  background: linear-gradient(90deg, rgba(240, 122, 82, 0.035), transparent 76%);
}

.operation-step h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.operation-step p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
}

.operations-demo {
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 26%, rgba(42, 122, 169, 0.17), transparent 32rem),
    #080b10;
  border-block: 1px solid var(--line);
}

.demo-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.demo-heading .lead {
  max-width: 420px;
  margin: 0 0 5px;
}

.feature-matrix {
  display: grid;
  margin-top: 70px;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: clamp(26px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008));
  transition: border-color 300ms ease, transform 400ms var(--ease);
}

.capability-ledger {
  margin-top: 70px;
  border-top: 1px solid var(--line-strong);
}

.capability-row {
  position: relative;
  display: grid;
  min-height: 154px;
  padding: 30px 0;
  grid-template-columns: 72px minmax(0, 1fr) minmax(240px, 0.55fr);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  transition: background 240ms ease;
}

.capability-row::before {
  position: absolute;
  inset: -1px auto -1px 0;
  width: 2px;
  content: "";
  background: var(--signal);
  opacity: 0;
  transform: scaleY(0.2);
  transition: opacity 240ms ease, transform 320ms var(--ease);
}

.capability-row:hover {
  background: linear-gradient(90deg, rgba(240, 122, 82, 0.035), transparent 72%);
}

.capability-row:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.capability-index {
  color: var(--signal-soft);
  font: 0.68rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2.6vw, 2.5rem);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.capability-row p {
  max-width: 660px;
  margin: 10px 0 0;
  color: var(--muted);
}

.capability-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.capability-detail span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted-strong);
  font: 0.6rem/1 var(--mono);
  letter-spacing: 0.04em;
}

.feature-card:hover {
  border-color: var(--line-strong);
  transform: translateY(-6px);
}

.feature-card.large { grid-column: span 7; }
.feature-card.medium { grid-column: span 5; }
.feature-card.third { grid-column: span 4; }

.feature-card h3 {
  max-width: 470px;
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 520;
  letter-spacing: -0.052em;
  line-height: 1;
}

.feature-card p {
  max-width: 440px;
  margin: 18px 0 0;
  color: var(--muted);
}

.feature-card .card-index {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.18);
  font: 0.66rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.feature-graphic {
  position: absolute;
  right: -20px;
  bottom: -35px;
  width: 48%;
  aspect-ratio: 1;
  opacity: 0.62;
}

.radar-graphic {
  border: 1px solid rgba(131, 217, 239, 0.35);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(131, 217, 239, 0.18) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(131, 217, 239, 0.18) 50%, transparent 50.2%),
    repeating-radial-gradient(circle, transparent 0 18%, rgba(131, 217, 239, 0.16) 18.5% 19%, transparent 19.5% 35%);
}

.radar-graphic::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: 50%;
  background: conic-gradient(from 40deg, rgba(131, 217, 239, 0.4), transparent 22%);
  animation: radar-turn 8s linear infinite;
}

@keyframes radar-turn { to { transform: rotate(1turn); } }

.command-graphic {
  right: 24px;
  bottom: 28px;
  width: 42%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, transparent 22%, var(--line) 22.5% 23%, transparent 23.5%),
    repeating-linear-gradient(to bottom, transparent 0 24px, var(--line) 25px 26px),
    rgba(255, 255, 255, 0.02);
  transform: perspective(500px) rotateY(-9deg) rotateX(6deg);
}

.command-graphic::before {
  position: absolute;
  top: 14%;
  left: 36%;
  width: 48%;
  height: 36%;
  content: "";
  border-radius: 7px;
  background: linear-gradient(140deg, rgba(255, 112, 64, 0.35), rgba(131, 217, 239, 0.06));
  box-shadow: 0 90px 0 rgba(255, 255, 255, 0.04);
}

.final-callout {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 50%, rgba(51, 135, 180, 0.12), transparent 27rem),
    #090a0d;
}

.final-callout-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: center;
  gap: 80px;
}

.final-callout .section-title {
  max-width: 900px;
}

.final-callout .lead {
  margin: 28px 0 0;
}

.final-callout .actions {
  margin-top: 34px;
}

.orbit-sigil {
  position: relative;
  width: min(420px, 90%);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit-sigil::before,
.orbit-sigil::after {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgba(131, 217, 239, 0.24);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(20deg);
}

.orbit-sigil::after {
  inset: 24%;
  border-color: rgba(255, 112, 64, 0.35);
  transform: rotateY(68deg) rotateZ(-14deg);
}

.orbit-sigil img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 30px rgba(255, 112, 64, 0.24));
}

.beta-aside {
  display: grid;
  align-self: center;
  padding: 8px 0 8px 32px;
  border-left: 1px solid var(--signal);
  gap: 0;
}

.beta-aside > span {
  margin-bottom: 18px;
  color: var(--muted);
  font: 0.6rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.beta-aside strong {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--paper-soft);
  font-size: 0.9rem;
  font-weight: 560;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050609;
}

.footer-inner {
  display: grid;
  padding-top: 64px;
  padding-bottom: 36px;
  grid-template-columns: 1.1fr repeat(3, 0.55fr);
  gap: 50px;
}

.footer-intro p {
  max-width: 390px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-col h3 {
  margin: 0 0 20px;
  color: var(--muted);
  font: 700 0.61rem/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  width: fit-content;
  margin: 11px 0;
  color: var(--muted-strong);
  font-size: 0.82rem;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  padding: 28px 0 8px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font: 0.58rem/1.5 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Landing product story — informed by aviation apps, authored for VAM. */
.landing-page {
  --landing-navy: #0a1422;
  --landing-navy-soft: #101d2d;
  --landing-cloud: #e9eef2;
  --landing-ink: #111923;
}

.landing-page .hero-copy-inner {
  width: min(700px, 52%);
}

.hero-update {
  display: inline-flex;
  min-height: 36px;
  margin-bottom: 30px;
  padding: 0 13px 0 0;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  color: var(--muted-strong);
  background: rgba(7, 10, 15, 0.64);
  font-size: 0.72rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  transition: border-color 180ms ease, background 180ms ease;
}

.hero-update span {
  display: inline-flex;
  min-height: 34px;
  padding: 0 11px;
  align-items: center;
  color: #1d0c05;
  background: var(--signal);
  font: 750 0.58rem/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-update strong {
  padding-left: 12px;
  color: var(--paper);
  font-weight: 620;
}

.hero-update:hover {
  border-color: rgba(242, 238, 230, 0.42);
  background: rgba(18, 24, 32, 0.78);
}

.landing-page .hero-copy .eyebrow {
  margin-bottom: 22px;
}

.landing-page .hero-copy .display-title {
  max-width: 720px;
  font-size: clamp(3.7rem, 6.2vw, 6.6rem);
  line-height: 0.91;
}

.landing-page .hero-copy .display-title span {
  display: block;
  color: var(--signal-soft);
}

.landing-page .hero-copy .lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.landing-page .system-strip-inner {
  grid-template-columns: 1.25fr repeat(4, 1fr);
}

.network-proof {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 9vw, 140px) 0;
  border-bottom: 1px solid rgba(164, 191, 216, 0.13);
  background:
    radial-gradient(circle at 82% 20%, rgba(54, 128, 174, 0.2), transparent 30rem),
    linear-gradient(135deg, #0a1320, #0d1a2a 64%, #0a1422);
}

.network-proof::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(190, 215, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 215, 235, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 52%, black);
}

.network-proof-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(620px, 1.42fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
}

.network-proof-copy h2 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 560;
  letter-spacing: -0.058em;
  line-height: 0.94;
}

.network-proof-copy > p:not(.live-kicker) {
  max-width: 500px;
  margin: 26px 0 0;
  color: #aab8c6;
}

.live-kicker {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 10px;
  color: #b8c6d4;
  font: 700 0.62rem/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.live-kicker span,
.network-pulse {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(133, 217, 172, 0.08), 0 0 16px rgba(133, 217, 172, 0.5);
}

.text-link {
  display: inline-flex;
  margin-top: 30px;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--signal-soft);
  transition: transform 180ms var(--ease);
}

.text-link:hover span {
  transform: translateX(4px);
}

.network-proof-panel {
  overflow: hidden;
  border: 1px solid rgba(190, 215, 235, 0.19);
  border-radius: 10px;
  background: rgba(5, 10, 17, 0.88);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.network-proof-head {
  display: flex;
  min-height: 62px;
  padding: 0 22px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #8495a7;
  font: 0.58rem/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-proof-head > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.network-proof-head strong {
  color: var(--paper);
  font-size: 0.66rem;
}

.network-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.network-metrics article {
  min-height: 154px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
}

.network-metrics article:last-child {
  border-right: 0;
}

.network-metrics strong,
.network-metrics span {
  display: block;
}

.network-metrics strong {
  color: #f8fafc;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 1;
}

.network-metrics span {
  margin-top: 14px;
  color: #8291a1;
  font: 0.58rem/1.35 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.network-leader {
  display: flex;
  min-height: 136px;
  padding: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background:
    linear-gradient(90deg, rgba(240, 122, 82, 0.07), transparent 48%),
    rgba(255, 255, 255, 0.014);
}

.network-leader-copy {
  display: grid;
}

.network-leader-copy span {
  color: var(--signal-soft);
  font: 700 0.57rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.network-leader-copy strong {
  margin-top: 10px;
  color: var(--paper);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 620;
  letter-spacing: -0.03em;
}

.network-leader-copy small {
  margin-top: 6px;
  color: #8493a2;
}

.network-leader-mark {
  display: grid;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border: 1px solid rgba(240, 122, 82, 0.35);
  border-radius: 50%;
  place-items: center;
  color: var(--signal-soft);
  background: rgba(240, 122, 82, 0.08);
  font: 750 0.82rem/1 var(--mono);
  box-shadow: 0 0 40px rgba(240, 122, 82, 0.08);
}

.network-proof-panel.is-error .network-pulse {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 116, 111, 0.08);
}

.journey-section {
  color: var(--landing-ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(110, 151, 178, 0.18), transparent 25rem),
    var(--landing-cloud);
}

.landing-page #platform {
  padding-top: clamp(100px, 10vw, 160px);
  padding-bottom: clamp(100px, 10vw, 160px);
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.5fr);
  align-items: end;
  gap: clamp(50px, 9vw, 150px);
}

.journey-section .section-code {
  color: #a44628;
}

.journey-section .section-title {
  max-width: 820px;
  color: #101923;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.journey-section .lead {
  margin: 0 0 6px;
  color: #54616d;
}

.flight-journey {
  display: grid;
  margin-top: clamp(64px, 8vw, 110px);
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid rgba(17, 25, 35, 0.2);
}

.flight-journey article {
  position: relative;
  min-height: 270px;
  padding: 30px 24px 34px;
  border-right: 1px solid rgba(17, 25, 35, 0.14);
}

.flight-journey article:last-child {
  border-right: 0;
}

.flight-journey article::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  z-index: 2;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: #be5532;
}

.flight-journey article:last-child::after {
  right: 0;
}

.flight-journey span {
  color: #a44628;
  font: 700 0.64rem/1 var(--mono);
  letter-spacing: 0.1em;
}

.flight-journey h3 {
  margin: 70px 0 0;
  color: #101923;
  font-size: clamp(1.55rem, 2.5vw, 2.3rem);
  font-weight: 630;
  letter-spacing: -0.04em;
}

.flight-journey p {
  margin: 14px 0 0;
  color: #5e6871;
  font-size: 0.88rem;
}

.roles-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(52, 123, 166, 0.15), transparent 34rem),
    #07101b;
}

.landing-page #capabilities {
  padding-top: clamp(100px, 10vw, 160px);
  padding-bottom: clamp(100px, 10vw, 160px);
  border-top: 0;
}

.roles-heading {
  display: grid;
  max-width: 1040px;
}

.roles-heading .section-title {
  max-width: 1000px;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.role-stage {
  display: grid;
  margin-top: clamp(68px, 8vw, 110px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.role-panel {
  position: relative;
  display: flex;
  min-height: 660px;
  padding: clamp(26px, 3vw, 44px);
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(190, 215, 235, 0.16);
  border-radius: 10px;
  background: rgba(14, 25, 39, 0.84);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.role-pilot {
  background:
    radial-gradient(circle at 86% 86%, rgba(240, 122, 82, 0.15), transparent 24rem),
    linear-gradient(145deg, #111d2b, #0b1623);
}

.role-command {
  background:
    radial-gradient(circle at 72% 78%, rgba(82, 157, 194, 0.18), transparent 24rem),
    linear-gradient(145deg, #0d1b2b, #09131f);
}

.role-panel-top {
  display: flex;
  padding-bottom: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  color: #8d9aaa;
  font: 0.58rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.role-panel-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding-top: clamp(48px, 6vw, 84px);
}

.role-panel-copy h3 {
  margin: 0;
  color: #f5f7fa;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 560;
  letter-spacing: -0.058em;
  line-height: 0.96;
}

.role-panel-copy p {
  max-width: 500px;
  margin: 24px 0 0;
  color: #a1afbd;
}

.role-panel-copy ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}

.role-panel-copy li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #c9d2db;
  font-size: 0.83rem;
}

.role-panel-copy li::before {
  width: 14px;
  height: 1px;
  content: "";
  background: var(--signal);
}

.role-flight-readout {
  position: relative;
  z-index: 2;
  display: grid;
  margin-top: auto;
  padding: 22px 24px;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid rgba(190, 215, 235, 0.15);
  border-radius: 7px;
  background: rgba(3, 7, 12, 0.72);
}

.role-flight-readout > span {
  grid-row: 1 / 3;
  margin-right: 24px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--signal-soft);
  font: 750 0.7rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.role-flight-readout strong {
  color: var(--paper);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
}

.role-flight-readout strong i {
  margin: 0 7px;
  color: var(--signal-soft);
  font-style: normal;
}

.role-flight-readout small {
  margin-top: 5px;
  color: #77889a;
  font: 0.56rem/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.role-route-map {
  position: relative;
  min-height: 155px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(190, 215, 235, 0.14);
  border-radius: 7px;
  background:
    repeating-radial-gradient(ellipse at 50% 120%, transparent 0 35px, rgba(142, 201, 216, 0.05) 36px 37px),
    rgba(3, 8, 14, 0.55);
}

.role-route-map svg {
  position: absolute;
  inset: 15% 7%;
  width: 86%;
  height: 70%;
}

.role-route-map path {
  fill: none;
  stroke: #88c6d6;
  stroke-width: 1.5;
  stroke-dasharray: 6 8;
}

.role-route-map path + path {
  stroke: var(--signal-soft);
  opacity: 0.64;
}

.role-route-map circle {
  fill: var(--signal);
  filter: drop-shadow(0 0 7px rgba(240, 122, 82, 0.65));
}

.outcome-rail {
  display: grid;
  margin-top: 20px;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(190, 215, 235, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.016);
}

.outcome-rail span {
  display: flex;
  min-height: 74px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #a7b4c1;
  font: 0.63rem/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.outcome-rail span:last-child {
  border-right: 0;
}

.landing-page .final-callout {
  background:
    linear-gradient(90deg, rgba(6, 9, 14, 0.98) 0%, rgba(6, 9, 14, 0.92) 45%, rgba(6, 9, 14, 0.48) 78%, rgba(6, 9, 14, 0.7)),
    url("earth-horizon.png") right center / cover no-repeat;
}

.landing-page .final-callout-inner {
  min-height: 500px;
}

.landing-page .final-callout .section-title {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

@media (max-width: 1120px) {
  .landing-page .hero-copy-inner { width: min(610px, 52%); }
  .network-proof-grid { grid-template-columns: minmax(240px, 0.55fr) minmax(540px, 1.45fr); gap: 54px; }
  .network-metrics article { padding: 24px 16px; }
  .network-metrics span { letter-spacing: 0.04em; }
  .role-panel { min-height: 620px; }
}

@media (max-width: 900px) {
  .landing-page .hero-copy-inner { width: 82%; }
  .landing-page .system-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .landing-page .system-strip-inner > span:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .landing-page .system-strip-inner > span:nth-child(3) { border-right: 1px solid var(--line); }
  .landing-page .system-strip-inner > span:nth-child(4) { grid-column: span 1; }
  .landing-page .system-strip-inner > span:nth-child(5) { grid-column: span 2; border-right: 1px solid var(--line); }
  .network-proof-grid { grid-template-columns: 1fr; }
  .network-proof-copy { max-width: 680px; }
  .product-heading { grid-template-columns: 1fr; }
  .product-heading .lead { max-width: 620px; margin: 0; }
  .flight-journey { grid-template-columns: repeat(2, 1fr); }
  .flight-journey article { min-height: 230px; border-bottom: 1px solid rgba(17, 25, 35, 0.14); }
  .flight-journey article:nth-child(2n) { border-right: 0; }
  .flight-journey article:last-child { grid-column: 1 / -1; min-height: 190px; }
  .role-stage { grid-template-columns: 1fr; }
  .role-panel { min-height: 600px; }
  .outcome-rail { grid-template-columns: repeat(3, 1fr); }
  .outcome-rail span:nth-child(-n + 3) { border-bottom: 1px solid var(--line); }
  .outcome-rail span:nth-child(3) { border-right: 0; }
  .outcome-rail span:nth-child(5) { grid-column: span 2; border-right: 0; }
}

@media (max-width: 640px) {
  .hero-update { margin-bottom: 24px; }
  .landing-page .hero-copy .display-title { font-size: clamp(3rem, 14vw, 4.55rem); }
  .landing-page .hero-copy .lead { max-width: 100%; }
  .landing-page .system-strip { overflow-x: auto; }
  .landing-page .system-strip-inner {
    display: flex;
    width: max-content;
    min-width: 100%;
  }
  .landing-page .system-strip-inner > span {
    width: 176px;
    min-height: 82px;
    padding: 18px;
    border-bottom: 0 !important;
  }
  .network-proof { padding: 80px 0; }
  .network-proof-grid { gap: 48px; }
  .network-proof-copy h2 { font-size: clamp(2.8rem, 13vw, 4.2rem); }
  .network-proof-head { padding: 0 16px; }
  .network-proof-head > span { display: none; }
  .network-metrics { grid-template-columns: repeat(2, 1fr); }
  .network-metrics article { min-height: 126px; }
  .network-metrics article:nth-child(2) { border-right: 0; }
  .network-metrics article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .network-leader { padding: 20px 16px; }
  .network-leader-mark { width: 52px; height: 52px; }
  .landing-page #platform,
  .landing-page #capabilities { padding-top: 84px; padding-bottom: 84px; }
  .journey-section .section-title,
  .roles-heading .section-title { font-size: clamp(2.7rem, 12vw, 4.1rem); }
  .flight-journey { grid-template-columns: 1fr; }
  .flight-journey article,
  .flight-journey article:last-child {
    min-height: 0;
    padding: 28px 0 30px 48px;
    grid-column: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 25, 35, 0.14);
  }
  .flight-journey article::after { display: none; }
  .flight-journey h3 { margin-top: 28px; }
  .role-stage { margin-top: 52px; }
  .role-panel { min-height: 0; padding: 24px 20px; }
  .role-panel-top { font-size: 0.51rem; }
  .role-panel-copy { padding-top: 48px; }
  .role-panel-copy h3 { font-size: clamp(2.5rem, 12vw, 3.7rem); }
  .role-flight-readout { margin-top: 52px; padding: 18px; grid-template-columns: 1fr; }
  .role-flight-readout > span { grid-row: auto; margin: 0 0 14px; padding: 0 0 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .role-route-map { min-height: 140px; margin-top: 52px; }
  .outcome-rail { display: flex; overflow-x: auto; }
  .outcome-rail span { min-width: 148px; border-bottom: 0 !important; }
  .landing-page .final-callout { background-position: 70% center; }
  .landing-page .final-callout-inner { min-height: 0; }
}

/* Shared editorial public pages */
.public-page {
  background:
    radial-gradient(circle at 88% 2%, rgba(50, 120, 158, 0.09), transparent 30rem),
    var(--night-0);
}

.public-hero {
  position: relative;
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  min-height: 620px;
  margin: 0 auto;
  padding: 100px 0 86px;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.52fr);
  align-items: center;
  gap: clamp(60px, 10vw, 180px);
}

.public-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 6.2rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.95;
}

.public-hero h1 em {
  color: var(--signal-soft);
  font-family: var(--editorial);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.public-hero .lead {
  margin: 26px 0 0;
}

.public-hero .actions {
  margin-top: 34px;
}

.hero-instrument {
  position: relative;
  min-height: 370px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(69, 149, 184, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.018);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.hero-instrument::before {
  position: absolute;
  right: -16%;
  bottom: -32%;
  width: 100%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(131, 217, 239, 0.19);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, transparent 0 20%, rgba(131, 217, 239, 0.055) 20.5% 21%, transparent 21.5% 34%);
}

.instrument-top,
.instrument-row {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.instrument-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font: 0.58rem/1 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.instrument-route {
  position: relative;
  z-index: 2;
  display: flex;
  margin-top: 54px;
  align-items: center;
  justify-content: space-between;
  font: 520 clamp(2.4rem, 5vw, 4rem)/1 var(--display);
  letter-spacing: -0.05em;
}

.instrument-route i {
  position: relative;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, var(--signal), var(--aero));
}

.instrument-route i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--aero);
  box-shadow: 0 0 16px var(--aero);
}

.instrument-metrics {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.instrument-metrics div {
  padding: 18px 12px 0;
  border-right: 1px solid var(--line);
}

.instrument-metrics div:last-child { border: 0; }
.instrument-metrics span,
.instrument-metrics small { display: block; }
.instrument-metrics span { font: 650 0.8rem/1 var(--mono); }
.instrument-metrics small { margin-top: 6px; color: var(--muted); font: 0.52rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

.story-section {
  border-top: 1px solid var(--line);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1.2fr);
  gap: clamp(60px, 10vw, 160px);
}

.story-aside {
  align-self: start;
}

.story-aside p {
  max-width: 340px;
  color: var(--muted);
}

.story-content h2 {
  max-width: 890px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1;
}

.story-content > p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.story-list {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.story-list article {
  display: grid;
  padding: 28px 0;
  grid-template-columns: 70px 0.65fr 1fr;
  border-bottom: 1px solid var(--line);
  gap: 28px;
}

.story-list article > span {
  color: var(--signal-soft);
  font: 0.63rem/1.5 var(--mono);
  letter-spacing: 0.1em;
}

.story-list h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.025em;
}

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

.split-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line-strong);
  overflow: hidden;
}

.split-panels article {
  min-height: 410px;
  padding: clamp(34px, 5vw, 70px);
  background: transparent;
}

.split-panels article + article {
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.split-panels h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.feature-list,
.about-list {
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.about-list li {
  position: relative;
  padding: 14px 0 14px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
}

.feature-list li::before,
.about-list li::before {
  position: absolute;
  top: 21px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--signal);
}

/* Maintenance/status pages */
.status-main {
  min-height: calc(100dvh - 92px);
}

.status-layout {
  display: grid;
  min-height: calc(100dvh - 92px);
  padding-top: 70px;
  padding-bottom: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.62fr);
  align-items: center;
  gap: clamp(60px, 10vw, 160px);
}

.status-layout h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(3.1rem, 6.3vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.status-layout .lead {
  margin: 28px 0 0;
}

.status-layout .actions {
  margin-top: 36px;
}

.status-board {
  position: relative;
  padding: 0;
  border-block: 1px solid var(--line-strong);
  background: transparent;
}

.status-board-head {
  display: flex;
  padding: 18px 2px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-board-head span:last-child {
  color: var(--muted);
  font: 0.61rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.status-phases {
  display: grid;
  margin-top: 12px;
}

.status-phase {
  position: relative;
  display: grid;
  min-height: 86px;
  padding: 24px 2px 24px 38px;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  gap: 22px;
}

.status-phase::before {
  position: absolute;
  top: 30px;
  left: 2px;
  width: 9px;
  height: 9px;
  content: "";
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.status-phase.active::before {
  border-color: var(--signal);
  background: var(--signal);
  box-shadow: none;
}

.status-phase strong,
.status-phase small {
  display: block;
}

.status-phase strong { font-size: 0.9rem; }
.status-phase small { margin-top: 4px; color: var(--muted); font-size: 0.73rem; }
.status-phase > span { color: var(--muted); font: 0.58rem/1.4 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }

/* Forms, auth, and shared application surfaces */
.auth-page,
.portal-page {
  position: relative;
  min-height: 100dvh;
  background:
    radial-gradient(circle at 78% 28%, rgba(38, 112, 151, 0.09), transparent 30rem),
    var(--night-0);
}

.auth-page::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.07;
  background: url("earth-horizon.png") right bottom / min(75vw, 1100px) auto no-repeat;
  filter: saturate(0.6);
}

.auth-page > *,
.portal-page > * {
  position: relative;
  z-index: 2;
}

.auth-shell {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), 1240px);
  min-height: calc(100dvh - 92px);
  margin: 0 auto;
  padding: 70px 0 110px;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.68fr);
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
}

.auth-context h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--editorial);
  font-size: clamp(3.1rem, 5.5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.auth-context .lead {
  margin: 28px 0 0;
}

.auth-context-list {
  display: grid;
  margin-top: 52px;
  gap: 14px;
}

.auth-context-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-strong);
  font-size: 0.82rem;
}

.auth-context-list span::before {
  width: 22px;
  height: 1px;
  content: "";
  background: var(--signal);
}

.auth-card,
.join-card,
.login-card {
  position: relative;
  padding: clamp(30px, 4.5vw, 52px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(12, 15, 19, 0.96);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.auth-card::before,
.join-card::before,
.login-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 3px;
  height: 72px;
  content: "";
  background: var(--signal);
  box-shadow: none;
}

.auth-card-head,
.login-card-header {
  display: flex;
  margin-bottom: 36px;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.auth-card h2,
.login-card h1,
.login-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

.auth-card > .copy,
.login-card > .copy {
  margin: 18px 0 32px;
}

.field-group,
.join-field {
  display: grid;
  gap: 9px;
}

.field-group + .field-group,
.join-field + .join-field {
  margin-top: 20px;
}

.field-label,
.join-field > span,
.join-field label {
  color: var(--muted-strong);
  font: 700 0.65rem/1.2 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.field-input,
.field-textarea,
.join-input,
select.field-input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  color: var(--paper);
  caret-color: var(--signal-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.94rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field-textarea {
  min-height: 130px;
  padding-top: 15px;
  resize: vertical;
}

.field-input::placeholder,
.field-textarea::placeholder,
.join-input::placeholder {
  color: #626a73;
}

.field-input:hover,
.field-textarea:hover,
.join-input:hover {
  border-color: var(--line-strong);
}

.field-input:focus,
.field-textarea:focus,
.join-input:focus {
  border-color: var(--aero);
  background: rgba(131, 217, 239, 0.035);
  box-shadow: 0 0 0 3px rgba(131, 217, 239, 0.08);
}

.field-input:-webkit-autofill,
.field-input:-webkit-autofill:hover,
.field-input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--paper);
  box-shadow: 0 0 0 1000px #12161b inset, 0 0 0 3px rgba(131, 217, 239, 0.08);
  transition: background-color 9999s ease-out;
}

.field-input[readonly] {
  opacity: 0.65;
  cursor: not-allowed;
}

.field-hint {
  color: var(--muted);
  font-size: 0.69rem;
}

.input-prefix-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.input-prefix-wrap > span {
  padding-left: 16px;
  color: var(--muted);
}

.input-prefix-wrap .field-input {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.auth-card form .button-row,
.login-card form .button-row,
.join-form .actions,
.verify-form .actions {
  margin-top: 28px;
}

.form-note,
.login-footer-note {
  display: flex;
  margin-top: 26px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.69rem;
}

.form-note::before,
.login-footer-note > span {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(133, 217, 172, 0.55);
}

.login-verify-panel,
.verify-form,
.join-complete {
  margin-top: 32px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.portal-error,
.portal-success,
.join-message,
.rankings-status,
.inline-status {
  min-height: 1.3em;
  margin: 16px 0 0;
  color: var(--danger);
  font-size: 0.76rem;
}

.portal-success,
.join-message.success,
.rankings-status.success {
  color: var(--green);
}

.code-input,
.join-input.code {
  font-family: var(--mono);
  font-size: 1.2rem;
  letter-spacing: 0.34em;
  text-align: center;
}

/* Rankings */
.rankings-page .public-hero {
  min-height: 510px;
  grid-template-columns: 1fr 0.75fr;
}

.rankings-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.rankings-summary article {
  padding: 26px 20px;
  border-right: 1px solid var(--line);
}

.rankings-summary article:last-child { border-right: 0; }
.rankings-summary span,
.rankings-summary small { display: block; }
.rankings-summary span { font: 520 clamp(1.5rem, 3vw, 2.5rem)/1 var(--display); letter-spacing: -0.04em; }
.rankings-summary small { margin-top: 8px; color: var(--muted); font: 0.56rem/1.2 var(--mono); letter-spacing: 0.09em; text-transform: uppercase; }

.rankings-main {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: 0 auto;
  padding-bottom: 120px;
}

.rankings-board {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rankings-panel {
  padding: clamp(24px, 3vw, 42px);
  background: rgba(255, 255, 255, 0.012);
}

.rankings-panel + .rankings-panel {
  border-top: 1px solid var(--line);
}

.rankings-panel-head,
.section-title-row {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.rankings-panel h2,
.section-title-row h2,
.portal-card h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 550;
  letter-spacing: -0.04em;
}

.rankings-table-wrap {
  overflow-x: auto;
  scrollbar-color: var(--line-strong) transparent;
}

.rankings-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.rankings-table th,
.rankings-table td {
  padding: 17px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.rankings-table th {
  color: var(--muted);
  font: 700 0.57rem/1.2 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rankings-table td {
  color: var(--muted-strong);
  font-size: 0.8rem;
}

.rankings-table tbody tr {
  transition: background 180ms ease;
}

.rankings-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.022);
}

.rank-pilot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rank-avatar {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--paper);
  background: var(--night-3);
  font: 700 0.65rem/1 var(--mono);
  place-items: center;
}

.rank-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-pilot strong,
.rank-pilot small { display: block; }
.rank-pilot strong { color: var(--paper); }
.rank-pilot small { margin-top: 3px; color: var(--muted); }

.rank-number {
  display: inline-flex;
  min-width: 34px;
  color: var(--muted);
  font: 700 0.67rem/1 var(--mono);
}

.rank-number.top-1 { color: #ffd271; }
.rank-number.top-2 { color: #ced5de; }
.rank-number.top-3 { color: #d79b72; }

/* Portal */
.portal-page {
  --signal: var(--blue, #f07a52);
  --signal-soft: color-mix(in srgb, var(--signal) 58%, white);
  --profile-accent: var(--portal-accent, var(--signal));
  padding-bottom: 90px;
}

.portal-page::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.009) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.009) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at 70% 15%, black, transparent 70%);
}

.portal-header {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
}

.portal-shell,
.portal-main {
  width: min(calc(100% - (var(--page-pad) * 2)), var(--content));
  margin: 0 auto;
  padding-top: 44px;
}

body.modal-open {
  overflow: hidden;
}

.portal-masthead,
.hero-card {
  display: flex;
  padding: clamp(30px, 4vw, 54px) 0;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-block: 1px solid var(--line);
}

.portal-masthead h1,
.hero-card h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.2vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.pilot-identity {
  display: flex;
  align-items: center;
  gap: 24px;
}

.avatar,
.friend-avatar {
  position: relative;
  display: grid;
  width: 82px;
  height: 82px;
  overflow: hidden;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  color: var(--paper);
  background:
    radial-gradient(circle at 30% 25%, rgba(131, 217, 239, 0.25), transparent 50%),
    var(--night-3);
  font: 700 1.2rem/1 var(--mono);
  place-items: center;
}

.avatar img,
.friend-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-meta {
  margin: 10px 0 0;
  color: var(--muted);
  font: 0.7rem/1.4 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.prompt-stack {
  display: grid;
  margin-top: 22px;
  gap: 12px;
}

.warning-card {
  display: flex;
  padding: 20px 24px;
  border: 1px solid rgba(255, 177, 143, 0.24);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(240, 122, 82, 0.035);
}

.warning-card p {
  margin: 5px 0 0;
  font-size: 0.78rem;
}

.grid {
  display: grid;
}

.kpi-grid,
.friends-stat-strip {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}

.stat-card,
.kpi-grid > article,
.friends-stat-strip > article {
  min-height: 130px;
  padding: 25px 24px;
  border-right: 1px solid var(--line);
}

.kpi-grid > article.portal-card {
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.kpi-grid > article:last-child,
.friends-stat-strip > article:last-child { border-right: 0; }

.stat-label,
.stat-note {
  display: block;
  color: var(--muted);
  font: 0.58rem/1.3 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-value {
  margin-top: 12px;
  font: 520 clamp(1.7rem, 3.6vw, 3rem)/1 var(--display);
  letter-spacing: -0.045em;
}

.stat-note {
  margin-top: 10px;
  letter-spacing: 0.03em;
  text-transform: none;
}

.pilot-content-grid {
  margin-top: 40px;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.pilot-side-stack,
.friends-side-stack {
  display: grid;
  gap: 18px;
}

.portal-card {
  position: relative;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.01);
}

.portal-card > .eyebrow,
.section-title-row .eyebrow {
  margin-bottom: 12px;
}

.portal-card > h2 + .copy {
  margin-top: 14px;
}

.list,
.friend-list,
.profile-checklist,
.profile-membership-list {
  display: grid;
  margin-top: 24px;
}

.list-item,
.membership-row,
.friend-card,
.profile-check,
.profile-membership-row,
.email-status-card {
  display: grid;
  width: 100%;
  min-height: 72px;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
  background: transparent;
  text-align: left;
}

button.list-item {
  grid-template-columns: 0.55fr 1fr auto;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  transition: padding 220ms var(--ease), background 220ms ease;
}

button.list-item:hover {
  padding-inline: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.flight-meta,
.flight-status,
.list-item > span,
.membership-row > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.empty-state {
  min-height: 90px;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: 6px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.008);
  font-size: 0.78rem;
}

.membership-name {
  display: flex;
  align-items: center;
  gap: 10px;
}

.membership-code {
  color: var(--signal-soft);
  font: 0.6rem/1 var(--mono);
}

/* Flight modal */
.flight-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
}

.flight-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
}

.flight-preview-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: clamp(28px, 4vw, 48px);
  overflow-y: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.flight-preview-close,
.avatar-editor-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--paper);
  background: transparent;
  font-size: 1.2rem;
  place-items: center;
  cursor: pointer;
}

.flight-preview-panel h2 { margin: 0; font-size: 2.4rem; letter-spacing: -0.05em; }
.flight-preview-stats { display: grid; margin-top: 28px; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); }
.flight-preview-stats div { padding: 18px 12px; border-right: 1px solid var(--line); }
.flight-preview-stats div:last-child { border: 0; }
.flight-preview-stats span,
.flight-preview-stats strong { display: block; }
.flight-preview-stats span { color: var(--muted); font: 0.55rem/1.2 var(--mono); text-transform: uppercase; }
.flight-preview-stats strong { margin-top: 7px; font-size: 0.82rem; }
.flight-preview-grid { display: grid; margin-top: 24px; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); }
.flight-preview-grid > div { padding: 18px; background: var(--panel-solid); }
.flight-preview-grid span,
.flight-preview-grid strong { display: block; }
.flight-preview-grid span { color: var(--muted); font: 0.55rem/1.2 var(--mono); text-transform: uppercase; }
.flight-preview-grid strong { margin-top: 6px; font-size: 0.8rem; }

/* Friends */
.friends-overview {
  border-bottom: 1px solid var(--line);
}

.friends-hero {
  border-top: 0;
}

.friends-hero .copy {
  max-width: 650px;
}

.network-chip {
  display: grid;
  width: 110px;
  height: 110px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-content: center;
  text-align: center;
}

.network-chip span { font: 520 2.4rem/1 var(--display); }
.network-chip small { margin-top: 6px; color: var(--muted); font: 0.55rem/1 var(--mono); text-transform: uppercase; }

.friends-stat-strip {
  margin-top: 0;
  border-bottom: 0;
}

.friends-stat-strip article {
  min-height: 100px;
  display: grid;
  align-content: center;
}

.friends-stat-strip span { font: 520 1.8rem/1 var(--display); }
.friends-stat-strip small { margin-top: 8px; color: var(--muted); font: 0.55rem/1 var(--mono); text-transform: uppercase; }

.friends-grid {
  display: grid;
  margin-top: 38px;
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, 0.72fr);
  gap: 18px;
  align-items: start;
}

.friend-search-form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.friend-search-form .field-group + .field-group { margin-top: 0; }
.friend-search-form .button { min-height: 54px; }

.friend-suggestions-block {
  margin-top: 42px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.friend-card {
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 15px;
}

.friend-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.friend-avatar i {
  position: absolute;
  right: 2px;
  bottom: 2px;
  z-index: 2;
  width: 8px;
  height: 8px;
  border: 2px solid var(--night-2);
  border-radius: 50%;
  background: var(--muted);
}

.friend-avatar i.online { background: var(--green); }
.friend-main strong,
.friend-main span,
.friend-main small,
.friend-main em { display: block; }
.friend-main strong { color: var(--paper); font-size: 0.86rem; }
.friend-main span { margin-top: 2px; color: var(--muted-strong); font: 0.64rem/1.2 var(--mono); }
.friend-main small,
.friend-main em { margin-top: 4px; color: var(--muted); font-size: 0.64rem; font-style: normal; }
.friend-actions { display: flex; flex-wrap: wrap; justify-content: end; gap: 6px; }

/* Profile settings workspace */
.profile-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.profile-rail {
  position: sticky;
  top: 112px;
  display: grid;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.008);
}

.profile-rail > span {
  margin: 0 10px 16px;
  color: var(--muted);
  font: 0.57rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-rail a {
  padding: 11px 10px;
  border-radius: 5px;
  color: var(--muted-strong);
  font-size: 0.76rem;
  text-decoration: none;
}

.profile-rail a:hover {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.035);
}

.profile-workspace {
  min-width: 0;
}

.profile-workspace [id] {
  scroll-margin-top: 112px;
}

.profile-header {
  overflow: hidden;
  padding: 0;
}

.profile-banner {
  height: 130px;
  background:
    radial-gradient(circle at 82% 40%, color-mix(in srgb, var(--profile-accent, #ff7040) 28%, transparent), transparent 28%),
    repeating-linear-gradient(115deg, transparent 0 36px, rgba(255, 255, 255, 0.022) 37px 38px),
    #11161d;
}

.profile-body {
  display: flex;
  padding: 0 clamp(24px, 4vw, 44px) 36px;
  align-items: end;
  gap: 24px;
}

.profile-body > .avatar {
  width: 116px;
  height: 116px;
  margin-top: -42px;
  border: 4px solid var(--night-1);
  border-radius: 30px;
}

.profile-title-block {
  flex: 1;
  padding-top: 24px;
}

.profile-title-block h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 520;
  letter-spacing: -0.058em;
}

.profile-affiliation {
  display: flex;
  margin-top: 18px;
  align-items: center;
  gap: 12px;
}

.profile-affiliation-logo {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border-radius: 9px;
}

.profile-affiliation-logo img { width: 100%; height: 100%; object-fit: cover; }
.profile-affiliation strong,
.profile-affiliation small { display: block; }
.profile-affiliation strong { font-size: 0.78rem; }
.profile-affiliation small { margin-top: 3px; color: var(--muted); font-size: 0.66rem; }

.avatar-form {
  display: flex;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.avatar-form .button { min-height: 36px; padding: 0 13px; font-size: 0.61rem; }
.avatar-upload-button input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.profile-kpi-grid {
  margin-top: 18px;
}

.profile-section-stack {
  display: grid;
  margin-top: 18px;
  gap: 18px;
}

.profile-account-grid,
.profile-ops-grid,
.profile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.profile-form,
.account-form,
.privacy-form,
.appearance-form {
  display: grid;
  margin-top: 28px;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.profile-form .field-group + .field-group,
.account-form .field-group + .field-group,
.privacy-form .field-group + .field-group {
  margin-top: 0;
}

.full {
  grid-column: 1 / -1;
}

.field-label-row {
  display: flex;
  justify-content: space-between;
}

.email-status-card {
  margin-top: 22px;
}

.email-current-block strong,
.email-current-block p { display: block; }
.email-current-block strong { margin-top: 8px; color: var(--paper); word-break: break-word; }
.email-current-block p { margin-bottom: 0; font-size: 0.73rem; }

.email-step {
  display: flex;
  grid-column: 1 / -1;
  align-items: start;
  gap: 14px;
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--signal-soft);
  font: 0.62rem/1 var(--mono);
  place-items: center;
}

.email-step h3 { margin: 0; font-size: 0.9rem; }
.email-step p { margin: 5px 0 0; font-size: 0.7rem; }

.privacy-toggle {
  display: flex;
  min-height: 68px;
  padding: 14px 0;
  grid-column: 1 / -1;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.privacy-toggle strong,
.privacy-toggle small { display: block; }
.privacy-toggle strong { font-size: 0.79rem; }
.privacy-toggle small { margin-top: 4px; color: var(--muted); font-size: 0.67rem; }
.privacy-toggle input { width: 38px; height: 20px; accent-color: var(--signal); }

.profile-check {
  position: relative;
  padding-left: 30px;
}

.profile-check::before {
  position: absolute;
  top: 22px;
  left: 2px;
  width: 12px;
  height: 12px;
  content: "";
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.profile-check.done::before {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 12px rgba(133, 217, 172, 0.4);
}

.profile-membership-row {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
}

.accent-swatches {
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
  gap: 9px;
}

.accent-swatch {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: var(--swatch, var(--signal));
  cursor: pointer;
}

.accent-swatch.active,
.accent-swatch.selected {
  border-color: var(--paper);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--swatch, var(--signal)) 24%, transparent);
}

.appearance-controls {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.appearance-controls .privacy-toggle {
  grid-column: 1 / -1;
}

.accent-color-input {
  width: 100%;
  height: 54px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.025);
  cursor: pointer;
}

.accent-color-input::-webkit-color-swatch-wrapper {
  padding: 0;
}

.accent-color-input::-webkit-color-swatch {
  border: 0;
  border-radius: 8px;
}

.appearance-preview {
  display: grid;
  min-height: 120px;
  margin-top: 22px;
  padding: 24px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid color-mix(in srgb, var(--blue, var(--signal)) 45%, transparent);
  border-radius: 7px;
  background: color-mix(in srgb, var(--blue, var(--signal)) 7%, transparent);
}

.appearance-preview > span:nth-child(2) strong,
.appearance-preview > span:nth-child(2) small {
  display: block;
}

.appearance-preview > span:nth-child(2) small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
}

.appearance-preview-avatar {
  display: grid;
  width: 48px;
  height: 48px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: color-mix(in srgb, var(--profile-accent, var(--signal)) 18%, var(--night-3));
  font: 700 0.68rem/1 var(--mono);
  place-items: center;
}

.appearance-preview-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-appearance-card > .button-row {
  margin-top: 18px;
}

.mini-friend-list {
  display: grid;
  margin-top: 24px;
}

/* Avatar editor */
.avatar-editor-dialog {
  width: min(920px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--paper);
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.avatar-editor-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(12px);
}

.avatar-editor-shell {
  position: relative;
}

.avatar-editor-header,
.avatar-editor-footer {
  display: flex;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
}

.avatar-editor-header h2 { margin: 0; }
.avatar-editor-body { display: grid; padding: 28px; grid-template-columns: 1fr 250px; gap: 28px; }
.avatar-crop-stage { display: grid; min-height: 430px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #06080b; place-items: center; }
.avatar-crop-stage canvas { max-width: 100%; max-height: 430px; touch-action: none; }
.avatar-editor-controls { display: grid; align-content: start; gap: 18px; }
.avatar-preview-row { display: flex; gap: 14px; }
.avatar-preview { width: 96px; height: 96px; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; }
.avatar-preview.circle { border-radius: 50%; }
.avatar-editor-footer { border-top: 1px solid var(--line); border-bottom: 0; justify-content: end; }
.avatar-upload-progress progress { width: 100%; accent-color: var(--signal); }

/* 404 */
.error-page {
  display: grid;
  min-height: 100dvh;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 42%, rgba(55, 132, 170, 0.2), transparent 30rem),
    var(--night-0);
  place-items: center;
}

.error-layout {
  display: grid;
  width: min(calc(100% - (var(--page-pad) * 2)), 1160px);
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 90px;
}

.error-code {
  position: relative;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 240, 232, 0.3);
  font: 500 clamp(8rem, 24vw, 20rem)/0.75 var(--display);
  letter-spacing: -0.1em;
}

.error-code::after {
  position: absolute;
  top: 51%;
  right: -5%;
  left: -5%;
  height: 1px;
  content: "";
  background: var(--signal);
  box-shadow: 0 0 22px rgba(255, 112, 64, 0.65);
}

.error-copy h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 520;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.error-copy .lead { margin: 24px 0 0; }
.error-copy .actions { margin-top: 34px; }

/* Entrance and interaction */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 420ms ease, transform 560ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-nav,
  .portal-nav { gap: 18px; }
  .hero-copy-inner { width: min(590px, 52%); }
  .cosmos-stage { inset-left: 32%; }
  .platform-intro { grid-template-columns: 1fr 1fr; gap: 70px; }
  .feature-card.third { grid-column: span 6; }
  .public-hero { grid-template-columns: 1fr 0.62fr; gap: 60px; }
  .profile-shell { grid-template-columns: 210px minmax(0, 1fr); gap: 24px; }
  .profile-account-grid,
  .profile-ops-grid,
  .profile-bottom-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --page-pad: clamp(18px, 4.5vw, 40px); }
  .site-header,
  .portal-header { min-height: 78px; }
  .nav-toggle { display: grid; }
  .site-nav,
  .portal-nav {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: grid;
    padding: 120px var(--page-pad) 50px;
    align-content: start;
    gap: 4px;
    background: rgba(5, 6, 9, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 320ms var(--ease);
  }
  .nav-open .site-nav,
  .nav-open .portal-nav { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a,
  .portal-nav a,
  .portal-nav button { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: 1rem; text-align: left; }
  .site-nav .nav-cta,
  .portal-nav .nav-cta { margin-top: 16px; justify-content: center; border: 1px solid var(--line-strong); text-align: center; }
  .hero-orbit,
  .hero-copy { min-height: 900px; }
  .hero-copy { padding-top: 125px; align-items: start; }
  .hero-copy-inner { width: 82%; }
  .cosmos-stage { inset: 34% -22% -4% 8%; opacity: 0.94; }
  .hero-copy .lead { max-width: 520px; }
  .hero-telemetry { right: var(--page-pad); bottom: 35px; left: var(--page-pad); min-width: 0; }
  .system-strip-inner { grid-template-columns: 1fr 1fr; }
  .system-strip-inner > span:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .system-strip-inner > span:nth-child(2) { border-right: 1px solid var(--line); }
  .platform-intro { grid-template-columns: 1fr; }
  .platform-intro-copy { position: static; }
  .operation-sequence { margin-top: 30px; }
  .demo-heading { display: grid; }
  .feature-card.large,
  .feature-card.medium { grid-column: span 12; }
  .feature-card.third { grid-column: span 6; }
  .final-callout-inner { grid-template-columns: 1fr; }
  .orbit-sigil { display: none; }
  .beta-aside { width: min(100%, 560px); }
  .footer-inner { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-intro { grid-column: 1 / -1; }
  .public-hero,
  .rankings-page .public-hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-instrument { min-height: 330px; }
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .story-list article { grid-template-columns: 52px 1fr; }
  .story-list article p { grid-column: 2; }
  .status-layout { grid-template-columns: 1fr; }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-context { padding-top: 30px; }
  .auth-card { width: min(100%, 620px); }
  .pilot-content-grid,
  .friends-grid { grid-template-columns: 1fr; }
  .profile-shell { grid-template-columns: 1fr; }
  .profile-rail { position: static; display: flex; overflow-x: auto; gap: 4px; }
  .profile-rail > span { display: none; }
  .profile-rail a { white-space: nowrap; }
  .error-layout { grid-template-columns: 1fr; gap: 50px; }
  .error-code { font-size: clamp(8rem, 38vw, 15rem); }
}

@media (max-width: 640px) {
  .brand-lockup small { display: none; }
  .hero-orbit,
  .hero-copy { min-height: 820px; }
  .hero-copy-inner { width: 100%; }
  .hero-copy .display-title { font-size: clamp(3rem, 14.5vw, 4.7rem); }
  .hero-copy .lead { max-width: 93%; font-size: 0.98rem; }
  .hero-proof { display: none; }
  .cosmos-stage { inset: 39% -46% -1% -15%; }
  .cosmos-label { display: none; }
  .hero-telemetry { grid-template-columns: 1fr 1fr; }
  .hero-telemetry div:nth-child(3) { display: none; }
  .hero-telemetry div:first-child { border-left: 0; }
  .display-title { font-size: clamp(3rem, 16vw, 5rem); }
  .section-title { font-size: clamp(2.35rem, 12vw, 4rem); }
  .operation-step { padding-left: 48px; }
  .operation-step:hover { padding-left: 52px; }
  .operation-step::after { display: none; }
  .feature-matrix { grid-template-columns: 1fr; }
  .feature-card.large,
  .feature-card.medium,
  .feature-card.third { grid-column: 1; min-height: 300px; }
  .feature-graphic { opacity: 0.28; }
  .capability-row {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 18px;
  }
  .capability-detail {
    grid-column: 2;
    justify-content: flex-start;
  }
  .capability-row h3 { font-size: 1.55rem; }
  .system-strip-inner > span { min-height: 78px; padding: 18px 14px; }
  .system-strip-inner strong { font-size: 0.76rem; }
  .beta-aside { padding-left: 22px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-bottom { align-items: start; gap: 20px; flex-direction: column; }
  .public-hero { padding-top: 60px; }
  .public-hero h1 { font-size: clamp(2.9rem, 13.2vw, 4.5rem); }
  .hero-instrument { min-height: 300px; padding: 20px; }
  .instrument-route { font-size: 2.2rem; }
  .instrument-metrics { right: 20px; bottom: 18px; left: 20px; }
  .instrument-metrics div { padding-inline: 7px; }
  .story-list article { grid-template-columns: 36px 1fr; gap: 14px; }
  .split-panels { grid-template-columns: 1fr; }
  .split-panels article + article { border-top: 1px solid var(--line); border-left: 0; }
  .status-layout { padding-top: 45px; }
  .status-layout h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .status-board { padding: 24px; }
  .auth-shell { padding-top: 30px; }
  .auth-context h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .auth-card,
  .join-card,
  .login-card { padding: 28px 22px; }
  .auth-context-list { display: none; }
  .rankings-summary { grid-template-columns: 1fr; border: 0; }
  .rankings-summary article { border-right: 0; border-bottom: 1px solid var(--line); }
  .rankings-summary article:last-child { border-bottom: 0; }
  .portal-shell,
  .portal-main { padding-top: 20px; }
  .portal-masthead,
  .hero-card { align-items: start; flex-direction: column; }
  .pilot-identity { align-items: start; flex-direction: column; }
  .pilot-hero-actions { width: 100%; justify-content: space-between; }
  .kpi-grid,
  .friends-stat-strip { grid-template-columns: 1fr 1fr; }
  .kpi-grid > article:nth-child(2),
  .friends-stat-strip > article:nth-child(2) { border-right: 0; }
  .kpi-grid > article:nth-child(-n + 2),
  .friends-stat-strip > article:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .warning-card { align-items: start; flex-direction: column; }
  .friend-search-form { grid-template-columns: 1fr; }
  .friend-search-form .button { width: 100%; }
  .friend-card { grid-template-columns: 48px 1fr; }
  .friend-actions { grid-column: 1 / -1; justify-content: start; }
  .profile-body { align-items: start; flex-direction: column; }
  .profile-title-block { padding-top: 0; }
  .profile-form,
  .account-form,
  .privacy-form,
  .appearance-form,
  .appearance-controls { grid-template-columns: 1fr; }
  .profile-form > *,
  .account-form > *,
  .privacy-form > * { grid-column: 1; }
  .appearance-controls .privacy-toggle { grid-column: 1; }
  .appearance-preview { grid-template-columns: auto 1fr; }
  .appearance-preview .button { grid-column: 1 / -1; }
  .flight-preview-stats { grid-template-columns: 1fr 1fr; }
  .flight-preview-stats div:nth-child(2) { border-right: 0; }
  .flight-preview-stats div:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .flight-preview-grid { grid-template-columns: 1fr; }
  .avatar-editor-body { grid-template-columns: 1fr; }
  .avatar-editor-controls { display: none; }
  .avatar-crop-stage { min-height: 320px; }
}

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

/* Cinematic landing — original VAM campaign artwork and editorial product story. */
.cinematic-landing {
  --cine-ink: #07111c;
  --cine-cream: #f0ede5;
  --cine-orange: #ee744d;
  --cine-blue: #91b7ca;
  background: var(--cine-ink);
}

.cinematic-landing .page-shell::before {
  display: none;
}

.cinematic-landing .site-header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  min-height: 96px;
}

.cinematic-landing .brand-lockup {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.cinematic-landing .brand-lockup small,
.cinematic-landing .site-nav a {
  color: rgba(244, 247, 249, 0.74);
}

.cinematic-landing .site-nav .nav-cta {
  display: inline-flex;
  min-width: 108px;
  min-height: 42px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border-color: rgba(255, 255, 255, 0.48);
  color: #fff;
  background: rgba(2, 8, 15, 0.24);
  text-align: center;
  backdrop-filter: blur(12px);
}

.cinematic-hero {
  position: relative;
  min-height: max(760px, 100svh);
  overflow: hidden;
  background: #061321;
  isolation: isolate;
}

.cinematic-hero-image,
.story-scene > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.cinematic-hero-image {
  z-index: -4;
  object-position: 70% center;
  filter: saturate(0.88) contrast(1.05) brightness(0.86);
  animation: cinematic-hero-drift 28s ease-in-out infinite alternate;
}

@keyframes cinematic-hero-drift {
  from { transform: scale(1.055) translate3d(-0.6%, 0, 0); }
  to { transform: scale(1.02) translate3d(0.6%, -0.25%, 0); }
}

.cinematic-hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(2, 7, 13, 0.93) 0%, rgba(3, 10, 18, 0.72) 35%, rgba(4, 12, 22, 0.12) 69%, rgba(4, 12, 22, 0.1)),
    linear-gradient(180deg, rgba(2, 7, 13, 0.72) 0%, transparent 28%, transparent 65%, rgba(2, 7, 13, 0.9) 100%);
}

.cinematic-hero-shade::after {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  background-image: linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(255, 255, 255, 0.09) 50%, transparent calc(50% + 0.5px));
  background-size: 25% 100%;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 75%);
}

.vzu-aircraft-stage {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  pointer-events: none;
  contain: layout paint;
}

.vzu-aircraft-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 900ms var(--ease);
}

.vzu-aircraft-fallback {
  position: absolute;
  top: 22%;
  right: 3%;
  width: min(720px, 54vw);
  height: auto;
  max-width: none;
  opacity: 0.86;
  transform: rotate(-1.2deg);
  filter:
    brightness(0.76)
    contrast(1.04)
    saturate(0.86)
    drop-shadow(0 22px 24px rgba(1, 6, 12, 0.34));
  transition: opacity 600ms ease;
}

.vzu-3d-ready .vzu-aircraft-canvas {
  opacity: 1;
}

.vzu-3d-ready .vzu-aircraft-fallback {
  opacity: 0;
}

.vzu-3d-failed .vzu-aircraft-canvas {
  display: none;
}

.cinematic-flightline {
  position: absolute;
  right: 0;
  bottom: 4%;
  left: 0;
  z-index: -1;
  width: 100%;
  height: min(17vw, 240px);
  overflow: visible;
  opacity: 0.45;
  filter: drop-shadow(0 0 8px rgba(238, 116, 77, 0.45));
}

.cinematic-flightline path {
  fill: none;
  stroke: var(--cine-orange);
  stroke-width: 1.25;
  stroke-dasharray: 4 9;
  vector-effect: non-scaling-stroke;
  animation: cinematic-route 18s linear infinite;
}

.cinematic-flightline circle {
  fill: #fff0e8;
  stroke: var(--cine-orange);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

@keyframes cinematic-route {
  to { stroke-dashoffset: -130; }
}

.cinematic-hero-inner {
  position: relative;
  display: flex;
  min-height: max(760px, 100svh);
  padding-top: 142px;
  padding-bottom: 126px;
  align-items: center;
}

.cinematic-hero-copy {
  width: min(710px, 57%);
}

.cinematic-kicker {
  display: flex;
  margin: 0 0 30px;
  align-items: center;
  gap: 13px;
  color: rgba(237, 243, 246, 0.72);
  font: 680 0.62rem/1.3 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.cinematic-kicker span {
  padding-right: 13px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  color: #ff9a72;
}

.cinematic-hero h1 {
  max-width: 790px;
  margin: 0;
  color: #f6f3ec;
  font: 520 clamp(4.2rem, 7.1vw, 7.85rem)/0.85 var(--display);
  letter-spacing: -0.068em;
  text-shadow: 0 4px 38px rgba(0, 0, 0, 0.28);
}

.cinematic-hero h1 em {
  display: inline-block;
  color: #f4aa89;
  font-family: var(--editorial);
  font-size: 0.94em;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.cinematic-hero-copy > p:last-of-type {
  max-width: 590px;
  margin: 32px 0 0;
  color: rgba(235, 240, 243, 0.82);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.65;
}

.cinematic-hero .actions {
  margin-top: 38px;
}

.cinematic-primary,
.cinematic-secondary {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 2px;
}

.cinematic-primary {
  border-color: var(--cine-orange);
  color: #140a06;
  background: var(--cine-orange);
}

.cinematic-secondary {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
  background: rgba(5, 12, 20, 0.24);
  backdrop-filter: blur(10px);
}

.cinematic-secondary:hover {
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(5, 12, 20, 0.56);
}

.cinematic-hero-meta {
  position: absolute;
  right: 0;
  bottom: 34px;
  display: grid;
  width: min(650px, 52%);
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.23);
}

.cinematic-hero-meta > span {
  display: grid;
  min-height: 76px;
  padding: 18px 20px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(245, 247, 248, 0.92);
  font-size: 0.72rem;
  font-weight: 650;
}

.cinematic-hero-meta small {
  margin-bottom: 8px;
  color: rgba(222, 231, 237, 0.55);
  font: 0.52rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cinematic-hero-meta b {
  font-weight: 650;
}

.cinematic-scroll-cue {
  position: absolute;
  bottom: 50px;
  left: max(var(--page-pad), calc((100vw - var(--content)) / 2));
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(231, 237, 240, 0.64);
  font: 0.56rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.cinematic-scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.cinematic-scroll-cue i::after {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--cine-orange);
  transform: translateX(-100%);
  animation: cinematic-cue 2.6s var(--ease) infinite;
}

@keyframes cinematic-cue {
  55%, 100% { transform: translateX(100%); }
}

.live-ribbon {
  position: relative;
  z-index: 3;
  color: #111820;
  background: var(--cine-cream);
}

.live-ribbon-inner {
  display: grid;
  min-height: 390px;
  padding-top: 76px;
  padding-bottom: 76px;
  grid-template-columns: minmax(210px, 0.68fr) minmax(520px, 1.42fr) minmax(230px, 0.68fr);
  align-items: stretch;
  gap: clamp(34px, 4.5vw, 76px);
}

.live-ribbon-title {
  align-self: center;
}

.live-ribbon .live-kicker {
  margin-bottom: 21px;
  color: #9b4025;
}

.live-ribbon-title h2 {
  max-width: 270px;
  margin: 0;
  color: #111820;
  font: 580 clamp(2.15rem, 3.2vw, 3.7rem)/0.96 var(--display);
  letter-spacing: -0.055em;
}

.live-ribbon-title a {
  display: inline-flex;
  margin-top: 24px;
  gap: 7px;
  color: #29313a;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
}

.live-ribbon-title a span {
  color: #b64c2c;
}

.live-ribbon-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(10, 18, 26, 0.2);
  border-left: 1px solid rgba(10, 18, 26, 0.2);
}

.live-ribbon-metrics article {
  display: grid;
  min-width: 0;
  padding: 29px 28px;
  align-content: center;
  border-right: 1px solid rgba(10, 18, 26, 0.2);
  border-bottom: 1px solid rgba(10, 18, 26, 0.2);
}

.live-ribbon-metrics strong,
.live-ribbon-metrics span {
  display: block;
}

.live-ribbon-metrics strong {
  color: #0e1720;
  font: 530 clamp(2.8rem, 4.2vw, 5rem)/0.9 var(--display);
  letter-spacing: -0.065em;
}

.live-ribbon-metrics span {
  margin-top: 13px;
  color: #65707a;
  font: 0.54rem/1.35 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-ribbon-pilot {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 26px 0 24px 30px;
  align-content: end;
  overflow: hidden;
  border-left: 1px solid rgba(10, 18, 26, 0.2);
}

.live-ribbon-pilot > span {
  color: #a54629;
  font: 700 0.56rem/1 var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-ribbon-pilot > strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin-top: 12px;
  overflow-wrap: anywhere;
  color: #111820;
  font: 600 clamp(1.5rem, 2.3vw, 2.65rem)/1 var(--display);
  letter-spacing: -0.045em;
}

.live-ribbon-pilot > small {
  position: relative;
  z-index: 1;
  max-width: 260px;
  margin-top: 10px;
  color: #636d76;
  font-size: 0.7rem;
}

.live-ribbon-pilot > i {
  margin-top: 28px;
  color: #82898f;
  font: normal 0.51rem/1 var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.live-ribbon-pilot > b {
  position: absolute;
  top: 8px;
  right: -12px;
  color: rgba(182, 76, 44, 0.1);
  font: 720 clamp(6rem, 9vw, 10rem)/1 var(--display);
  letter-spacing: -0.08em;
}

.live-ribbon.is-error .live-kicker span {
  background: var(--danger);
  box-shadow: 0 0 0 5px rgba(255, 116, 111, 0.08);
}

.story-scene {
  position: relative;
  min-height: max(760px, 92svh);
  overflow: hidden;
  background: #07111b;
  isolation: isolate;
  scroll-margin-top: 0;
}

.story-scene > img {
  z-index: -3;
  filter: saturate(0.78) contrast(1.08) brightness(0.8);
}

.story-arrival > img {
  object-position: 22% center;
}

.story-network > img {
  object-position: 50% center;
  filter: saturate(0.78) contrast(1.09) brightness(0.72);
}

.story-scene-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.story-arrival .story-scene-shade {
  background:
    linear-gradient(270deg, rgba(3, 9, 16, 0.95) 0%, rgba(4, 11, 20, 0.83) 33%, rgba(4, 11, 20, 0.1) 69%),
    linear-gradient(180deg, rgba(3, 8, 14, 0.34), transparent 40%, rgba(3, 8, 14, 0.82));
}

.story-network .story-scene-shade {
  background:
    linear-gradient(90deg, rgba(3, 9, 16, 0.96) 0%, rgba(3, 9, 16, 0.84) 34%, rgba(3, 9, 16, 0.08) 67%),
    linear-gradient(180deg, rgba(3, 8, 14, 0.28), transparent 48%, rgba(3, 8, 14, 0.82));
}

.story-scene::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 110px 110px;
  mask-image: linear-gradient(90deg, black, transparent 68%);
}

.story-arrival::after {
  mask-image: linear-gradient(270deg, black, transparent 62%);
}

.story-scene-inner {
  position: relative;
  display: flex;
  min-height: max(760px, 92svh);
  padding-top: 110px;
  padding-bottom: 140px;
  align-items: center;
}

.story-scene-copy {
  width: min(600px, 45%);
}

.story-scene-copy-right {
  margin-left: auto;
}

.scene-number {
  margin: 0 0 25px;
  color: #f29a76;
  font: 700 0.59rem/1 var(--mono);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-scene-copy h2 {
  margin: 0;
  color: #f5f2eb;
  font: 520 clamp(3.7rem, 6.5vw, 7.2rem)/0.87 var(--display);
  letter-spacing: -0.065em;
}

.story-scene-copy > p:not(.scene-number) {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(222, 230, 235, 0.79);
  font-size: clamp(0.98rem, 1.25vw, 1.13rem);
  line-height: 1.68;
}

.scene-link {
  display: inline-flex;
  margin-top: 31px;
  align-items: center;
  gap: 11px;
  color: #f6f2ea;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.scene-link span {
  color: #f29a76;
  transition: transform 180ms var(--ease);
}

.scene-link:hover span {
  transform: translateX(5px);
}

.arrival-docket,
.network-caption {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.27);
}

.arrival-docket {
  grid-template-columns: repeat(4, 1fr);
}

.arrival-docket > span {
  display: flex;
  min-height: 74px;
  padding: 19px 18px 0;
  align-items: flex-start;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(241, 244, 246, 0.78);
  font-size: 0.7rem;
}

.arrival-docket small {
  margin-right: 10px;
  color: #f29a76;
  font: 0.52rem/1.6 var(--mono);
}

.network-caption {
  display: flex;
  justify-content: flex-end;
}

.network-caption span {
  display: flex;
  min-height: 62px;
  padding: 19px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(236, 241, 244, 0.68);
  font: 0.54rem/1 var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.flight-sequence {
  color: #170b07;
  background: var(--cine-orange);
}

.flight-sequence .section-wrap {
  min-height: 236px;
  padding-top: 40px;
  padding-bottom: 34px;
}

.flight-sequence p {
  margin: 0 0 32px;
  color: rgba(26, 11, 6, 0.65);
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flight-sequence ol {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.flight-sequence ol::before {
  position: absolute;
  top: 7px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(25, 10, 5, 0.35);
}

.flight-sequence li {
  position: relative;
  padding-top: 32px;
  color: #1d0d08;
  font: 570 clamp(1.55rem, 2.5vw, 2.8rem)/1 var(--display);
  letter-spacing: -0.05em;
}

.flight-sequence li::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--cine-orange);
  border-radius: 50%;
  background: #26110a;
}

.flight-sequence li span {
  display: block;
  margin-bottom: 9px;
  color: rgba(32, 13, 7, 0.56);
  font: 0.52rem/1 var(--mono);
  letter-spacing: 0.08em;
}

.roles-manifesto {
  padding: clamp(100px, 10vw, 160px) 0;
  color: #131a20;
  background: #e9e5dc;
}

.roles-manifesto-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 50px;
}

.roles-manifesto-head > p {
  margin: 16px 0 0;
  color: #9b4329;
  font: 700 0.6rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roles-manifesto-head h2 {
  max-width: 1000px;
  margin: 0;
  color: #10171e;
  font: 520 clamp(3.8rem, 6.8vw, 7.7rem)/0.86 var(--display);
  letter-spacing: -0.07em;
}

.roles-manifesto-grid {
  display: grid;
  margin-top: clamp(72px, 9vw, 130px);
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(15, 24, 32, 0.24);
  border-left: 1px solid rgba(15, 24, 32, 0.24);
}

.roles-manifesto-grid article {
  min-height: 390px;
  padding: clamp(34px, 4vw, 58px);
  border-right: 1px solid rgba(15, 24, 32, 0.24);
  border-bottom: 1px solid rgba(15, 24, 32, 0.24);
}

.roles-manifesto-grid article > span {
  color: #a54629;
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roles-manifesto-grid h3 {
  max-width: 510px;
  margin: 75px 0 0;
  color: #121a21;
  font: 560 clamp(2.2rem, 3.8vw, 4.3rem)/0.94 var(--display);
  letter-spacing: -0.06em;
}

.roles-manifesto-grid p {
  max-width: 520px;
  margin: 23px 0 0;
  color: #5f676d;
}

.roles-manifesto-grid a {
  display: inline-flex;
  margin-top: 30px;
  gap: 9px;
  color: #1a2228;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.roles-manifesto-grid a span {
  color: #ad492c;
}

.cinematic-cta {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: #190b07;
  background: var(--cine-orange);
  isolation: isolate;
}

.cinematic-cta-mark {
  position: absolute;
  inset: auto -4% 4% 20%;
  z-index: -1;
  opacity: 0.2;
}

.cinematic-cta-mark svg {
  width: 100%;
  height: min(32vw, 420px);
  overflow: visible;
}

.cinematic-cta-mark path {
  fill: none;
  stroke: #180b07;
  stroke-width: 2;
  stroke-dasharray: 5 9;
  vector-effect: non-scaling-stroke;
}

.cinematic-cta-mark circle {
  fill: var(--cine-orange);
  stroke: #180b07;
  stroke-width: 4;
  vector-effect: non-scaling-stroke;
}

.cinematic-cta-inner {
  display: flex;
  min-height: 720px;
  padding-top: 94px;
  padding-bottom: 90px;
  flex-direction: column;
  justify-content: space-between;
}

.cinematic-cta-inner > p {
  margin: 0;
  color: rgba(26, 11, 6, 0.65);
  font: 700 0.61rem/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cinematic-cta h2 {
  max-width: 1200px;
  margin: auto 0;
  color: #1a0c07;
  font: 520 clamp(4rem, 7.3vw, 8.2rem)/0.84 var(--display);
  letter-spacing: -0.072em;
}

.cinematic-cta-inner > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cinematic-cta-inner > div > span {
  max-width: 380px;
  margin-right: auto;
  color: rgba(29, 13, 7, 0.68);
  font-size: 0.78rem;
}

.cinematic-cta .cinematic-primary {
  border-color: #101820;
  color: #f6f2ea;
  background: #101820;
}

.cinematic-cta .cinematic-primary:hover {
  border-color: #1a2733;
  background: #1a2733;
}

.cinematic-cta .cinematic-secondary {
  border-color: rgba(24, 11, 7, 0.48);
  color: #1a0c07;
  background: transparent;
  backdrop-filter: none;
}

.cinematic-cta .cinematic-secondary:hover {
  border-color: #190b07;
  background: rgba(25, 11, 7, 0.07);
}

@media (max-width: 1120px) {
  .cinematic-hero-copy {
    width: min(650px, 62%);
  }

  .cinematic-hero h1 {
    font-size: clamp(4rem, 7.6vw, 6.7rem);
  }

  .live-ribbon-inner {
    grid-template-columns: minmax(200px, 0.62fr) minmax(430px, 1.38fr);
  }

  .live-ribbon-pilot {
    min-height: 160px;
    padding-left: 0;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(10, 18, 26, 0.2);
    border-left: 0;
  }

  .live-ribbon-pilot > b {
    right: 0;
  }

  .story-scene-copy {
    width: min(560px, 51%);
  }
}

@media (max-width: 900px) {
  .cinematic-landing .site-header {
    position: absolute;
    min-height: 78px;
  }

  .cinematic-landing .nav-toggle {
    position: relative;
  }

  .cinematic-landing .nav-toggle span,
  .cinematic-landing .nav-toggle::before,
  .cinematic-landing .nav-toggle::after {
    position: absolute;
    left: 12px;
    margin: 0;
  }

  .cinematic-landing .nav-toggle::before {
    top: 14px;
  }

  .cinematic-landing .nav-toggle span {
    top: 21px;
  }

  .cinematic-landing .nav-toggle::after {
    top: 28px;
  }

  .nav-open.cinematic-landing .nav-toggle::before,
  .nav-open.cinematic-landing .nav-toggle::after {
    top: 21px;
  }

  .nav-open.cinematic-landing .nav-toggle::before {
    transform: rotate(45deg);
  }

  .nav-open.cinematic-landing .nav-toggle::after {
    transform: rotate(-45deg);
  }

  .cinematic-landing .site-nav {
    background: rgba(3, 9, 16, 0.985);
  }

  .cinematic-landing .site-nav .nav-cta {
    justify-content: center;
    text-align: center;
  }

  .cinematic-hero,
  .cinematic-hero-inner {
    min-height: max(760px, 100svh);
  }

  .cinematic-hero-image {
    object-position: 70% center;
  }

  .vzu-aircraft-fallback {
    top: 20%;
    right: -4%;
    width: min(690px, 66vw);
  }

  .cinematic-hero-shade {
    background:
      linear-gradient(90deg, rgba(2, 7, 13, 0.91), rgba(3, 10, 18, 0.6) 55%, rgba(4, 12, 22, 0.2)),
      linear-gradient(180deg, rgba(2, 7, 13, 0.7), transparent 28%, transparent 60%, rgba(2, 7, 13, 0.94) 100%);
  }

  .cinematic-hero-copy {
    width: min(620px, 78%);
  }

  .cinematic-hero-meta {
    width: 62%;
  }

  .cinematic-scroll-cue {
    bottom: 47px;
  }

  .live-ribbon-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .live-ribbon-title h2 {
    max-width: 520px;
  }

  .live-ribbon-pilot {
    grid-column: auto;
  }

  .story-scene-copy {
    width: min(620px, 72%);
  }

  .story-arrival > img {
    object-position: 36% center;
  }

  .story-network > img {
    object-position: 61% center;
  }

  .roles-manifesto-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .roles-manifesto-head > p {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .cinematic-landing .site-header {
    width: calc(100% - 36px);
  }

  .cinematic-landing .brand-lockup img {
    width: 34px;
    height: 34px;
  }

  .cinematic-landing .brand-lockup strong {
    max-width: 190px;
    font-size: 0.76rem;
  }

  .cinematic-hero,
  .cinematic-hero-inner {
    min-height: max(720px, 100svh);
  }

  .cinematic-hero-inner {
    padding-top: 112px;
    padding-bottom: 128px;
    align-items: flex-end;
  }

  .cinematic-hero-image {
    object-position: 70% center;
    filter: saturate(0.8) contrast(1.07) brightness(0.72);
  }

  .vzu-aircraft-fallback {
    top: 12%;
    right: -42%;
    width: 138vw;
    opacity: 0.78;
  }

  .cinematic-hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 7, 13, 0.48) 0%, rgba(3, 9, 16, 0.12) 29%, rgba(3, 9, 16, 0.68) 52%, rgba(2, 7, 13, 0.97) 100%),
      linear-gradient(90deg, rgba(2, 7, 13, 0.44), transparent 74%);
  }

  .cinematic-hero-copy {
    width: 100%;
  }

  .cinematic-kicker {
    margin-bottom: 18px;
    gap: 9px;
    font-size: 0.58rem;
  }

  .cinematic-kicker span {
    padding-right: 9px;
  }

  .cinematic-hero h1 {
    font-size: clamp(3.25rem, 15vw, 4.65rem);
    line-height: 0.88;
  }

  .cinematic-hero-copy > p:last-of-type {
    max-width: 96%;
    margin-top: 22px;
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .cinematic-hero .actions {
    margin-top: 25px;
  }

  .cinematic-hero .button {
    width: 100%;
  }

  .cinematic-hero-meta,
  .cinematic-scroll-cue {
    display: none;
  }

  .cinematic-flightline {
    display: none;
  }

  .live-ribbon-inner {
    min-height: 0;
    padding-top: 68px;
    padding-bottom: 68px;
    gap: 39px;
  }

  .live-ribbon-title h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  .live-ribbon-metrics article {
    min-height: 126px;
    padding: 22px 16px;
  }

  .live-ribbon-metrics strong {
    font-size: clamp(2.3rem, 12vw, 3.55rem);
  }

  .live-ribbon-metrics span {
    font-size: 0.56rem;
  }

  .live-ribbon-pilot {
    min-height: 180px;
    padding-top: 28px;
  }

  .story-scene,
  .story-scene-inner {
    min-height: 820px;
  }

  .story-scene-inner {
    padding-top: 100px;
    padding-bottom: 176px;
    align-items: flex-end;
  }

  .story-scene-copy,
  .story-scene-copy-right {
    width: 100%;
    margin-left: 0;
  }

  .story-arrival > img {
    object-position: 33% center;
  }

  .story-network > img {
    object-position: 64% center;
  }

  .story-arrival .story-scene-shade,
  .story-network .story-scene-shade {
    background:
      linear-gradient(180deg, rgba(3, 8, 14, 0.18) 0%, rgba(3, 8, 14, 0.08) 30%, rgba(3, 8, 14, 0.78) 55%, rgba(3, 8, 14, 0.98) 100%);
  }

  .story-scene::after {
    display: none;
  }

  .scene-number {
    margin-bottom: 18px;
  }

  .story-scene-copy h2 {
    font-size: clamp(3.05rem, 14vw, 4.4rem);
  }

  .story-scene-copy > p:not(.scene-number) {
    margin-top: 21px;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .scene-link {
    margin-top: 22px;
    font-size: 0.75rem;
  }

  .arrival-docket {
    bottom: 18px;
    grid-template-columns: repeat(2, 1fr);
  }

  .arrival-docket > span {
    min-height: 56px;
    padding: 14px 8px 0;
    font-size: 0.64rem;
  }

  .arrival-docket small {
    font-size: 0.56rem;
  }

  .arrival-docket > span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .network-caption {
    bottom: 18px;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .network-caption span {
    min-width: 112px;
    min-height: 52px;
    padding: 16px 14px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
    font-size: 0.56rem;
  }

  .flight-sequence .section-wrap {
    min-height: 184px;
    padding-top: 31px;
    padding-bottom: 28px;
  }

  .flight-sequence p {
    margin-bottom: 24px;
  }

  .flight-sequence li {
    padding-top: 25px;
    font-size: clamp(0.8rem, 4vw, 1.12rem);
  }

  .flight-sequence li span {
    font-size: 0.54rem;
  }

  .roles-manifesto {
    padding: 84px 0;
  }

  .roles-manifesto-head h2 {
    font-size: clamp(3.1rem, 14vw, 4.6rem);
  }

  .roles-manifesto-grid {
    margin-top: 62px;
    grid-template-columns: 1fr;
  }

  .roles-manifesto-grid article {
    min-height: 0;
    padding: 34px 25px 39px;
  }

  .roles-manifesto-grid h3 {
    margin-top: 46px;
    font-size: clamp(2.2rem, 10vw, 3.35rem);
  }

  .roles-manifesto-grid p {
    font-size: 0.87rem;
  }

  .cinematic-cta,
  .cinematic-cta-inner {
    min-height: 680px;
  }

  .cinematic-cta-inner {
    padding-top: 72px;
    padding-bottom: 54px;
  }

  .cinematic-cta h2 {
    font-size: clamp(3.4rem, 15vw, 4.8rem);
    line-height: 0.87;
  }

  .cinematic-cta-inner > div {
    align-items: stretch;
    flex-direction: column;
  }

  .cinematic-cta-inner > div > span {
    margin: 0 0 16px;
  }

  .cinematic-cta .button {
    width: 100%;
  }

  .cinematic-cta .cinematic-secondary {
    background: var(--cine-orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-hero-image,
  .cinematic-flightline path,
  .cinematic-scroll-cue i::after {
    animation: none;
  }

  .vzu-aircraft-canvas {
    transition: none;
  }
}
