:root {
  --ink: #02070d;
  --ink-soft: #07111c;
  --panel: rgba(7, 18, 30, 0.86);
  --line: rgba(105, 202, 255, 0.2);
  --line-strong: rgba(105, 202, 255, 0.55);
  --blue: #61caff;
  --blue-hot: #12aefa;
  --blue-pale: #c8ecff;
  --white: #f3f8fb;
  --muted: #8aa0b2;
  --red: #ff586c;
  --yellow: #ffc65c;
  --wrap: min(1180px, calc(100% - 48px));
  --header-h: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 25%, rgba(117,210,255,.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 68% 14%, rgba(255,255,255,.36) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 74%, rgba(117,210,255,.35) 0 1px, transparent 1.5px);
  background-size: 360px 330px, 470px 420px, 610px 520px;
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding-block: 112px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #00101a;
  background: var(--blue);
  transform: translateY(-150%);
  transition: transform .2s ease;
  z-index: 1000;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  padding: 0 max(24px, calc((100vw - 1280px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, height .3s ease;
  z-index: 100;
}
.site-header.scrolled {
  height: 64px;
  background: rgba(2, 7, 13, 0.9);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}
.studio-mark { display: flex; align-items: center; gap: 11px; text-transform: uppercase; }
.mark-symbol {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(18, 174, 250, .28));
}
.mark-copy { color: #b9c8d3; font-size: .76rem; letter-spacing: .15em; line-height: 1.2; }
.mark-copy b { display: block; color: var(--white); font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a {
  position: relative;
  color: #b8c6d1;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .2s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--blue);
  transition: right .2s ease;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--white); }
.site-nav a:hover::after, .site-nav a:focus-visible::after { right: 0; }
.dev-state {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 22px;
  border-left: 1px solid var(--line);
  color: var(--blue-pale);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.dev-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  animation: pulse 2.3s ease-in-out infinite;
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 790px;
  height: min(940px, 100vh);
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #030914;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: -3;
  animation: heroIn 1.5s ease-out both;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(1,5,10,.96) 0%, rgba(1,5,10,.75) 34%, rgba(1,5,10,.14) 70%, rgba(1,5,10,.48) 100%),
    linear-gradient(0deg, #02070d 0%, transparent 24%, transparent 78%, rgba(1,5,10,.58) 100%);
  z-index: -2;
}
.scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(122,210,255,.024) 4px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: -1;
}
.hero-content { padding-top: 32px; }
.eyebrow, .kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow span { margin-right: 12px; color: #7791a5; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  width: min-content;
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(3.6rem, 7.7vw, 7.4rem);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: .76;
  text-transform: uppercase;
  text-shadow: 0 1px 0 #fff, 0 0 38px rgba(43,157,219,.22);
}
h1 span { display: block; }
h1 small {
  display: block;
  margin: .13em 0 .13em .12em;
  color: var(--blue);
  font-size: .27em;
  font-weight: 600;
  letter-spacing: .54em;
  line-height: 1;
}
.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #c0ced8;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border: 1px solid var(--line-strong);
  color: var(--blue-pale);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .09em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 11px 100%, 0 calc(100% - 11px));
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary { color: #00121c; background: var(--blue); border-color: var(--blue); box-shadow: 0 0 32px rgba(52,185,255,.18); }
.button.primary:hover, .button.primary:focus-visible { background: #9bdeff; border-color: #9bdeff; }
.button.quiet { background: rgba(3,11,19,.54); }
.button.quiet:hover, .button.quiet:focus-visible { background: rgba(24,96,133,.36); color: #fff; }
.hero-telemetry {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.hero-telemetry div { padding: 16px 20px 0 0; }
.hero-telemetry div + div { padding-left: 26px; border-left: 1px solid var(--line); }
.hero-telemetry span, .hero-telemetry strong { display: block; }
.hero-telemetry span { color: #6e8799; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; }
.hero-telemetry strong { margin-top: 3px; color: #dceaf3; font-size: .88rem; font-weight: 650; letter-spacing: .03em; }
.hero-telemetry .accent { color: var(--blue); }

.section-index {
  color: rgba(97,202,255,.25);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
}
.intro {
  display: grid;
  grid-template-columns: 64px 1.15fr .85fr;
  gap: 38px;
  align-items: start;
}
.section-heading h2, .lore h2, .systems h2, .crew h2, .final-call h2, .section-topline h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.3rem);
  font-weight: 660;
  letter-spacing: -.045em;
  line-height: 1.06;
}
.intro-copy { padding-top: 39px; color: #a8bac7; }
.intro-copy p { margin-bottom: 18px; }

.pillars { position: relative; padding-top: 0; }
.pillars::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto;
  height: 70%;
  background: linear-gradient(90deg, transparent, rgba(18,98,143,.12), transparent);
  pointer-events: none;
}
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.pillar {
  position: relative;
  min-height: 390px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(11,27,43,.73), rgba(3,10,17,.78));
  overflow: hidden;
}
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pillar:hover::after { transform: scaleX(1); }
.pillar-no { color: #688397; font-size: .68rem; font-weight: 700; letter-spacing: .14em; }
.line-icon { width: 58px; margin: 70px 0 32px; color: var(--blue); }
.line-icon svg { width: 100%; fill: none; stroke: currentColor; stroke-width: 1.2; }
.pillar h3 { margin-bottom: 14px; font-size: 1.35rem; font-weight: 650; }
.pillar p { margin: 0; color: var(--muted); font-size: .96rem; }

.lore {
  position: relative;
  background:
    linear-gradient(90deg, rgba(2,7,13,.92), rgba(2,7,13,.65)),
    radial-gradient(circle at 83% 46%, rgba(34,116,160,.22), transparent 24%),
    #050c14;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.lore::after {
  content: "2035";
  position: absolute;
  right: -18px;
  bottom: -86px;
  color: rgba(76,178,231,.045);
  font-size: min(28vw, 360px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.08em;
  pointer-events: none;
}
.lore-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; position: relative; z-index: 1; }
.lore-title .section-index { margin-bottom: 38px; }
.lore-body { padding-top: 62px; }
.large-copy { max-width: 660px; color: #d4e0e8; font-size: clamp(1.15rem, 1.8vw, 1.45rem); line-height: 1.7; }
.lore-facts { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.lore-facts div { padding-top: 15px; }
.lore-facts span, .lore-facts strong { display: block; }
.lore-facts span { color: #71899a; font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; }
.lore-facts strong { margin-top: 5px; color: var(--blue-pale); font-size: .9rem; font-weight: 650; }

.section-topline { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 54px; }
.section-note { max-width: 260px; margin-bottom: 8px; color: var(--muted); font-size: .88rem; }
.faction-interface { display: grid; grid-template-columns: 355px 1fr; min-height: 480px; border: 1px solid var(--line); background: rgba(4,12,20,.72); }
.faction-tabs { border-right: 1px solid var(--line); }
.faction-tab {
  width: 100%;
  min-height: 120px;
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 16px;
  color: #9fb1be;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.faction-tab:hover, .faction-tab:focus-visible { color: #fff; background: rgba(43,151,209,.08); }
.faction-tab.active { color: #fff; background: linear-gradient(90deg, rgba(43,151,209,.17), transparent); box-shadow: inset 3px 0 var(--blue); }
.faction-code { color: var(--blue); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.faction-tab b, .faction-tab small { display: block; }
.faction-tab b { font-size: 1rem; font-weight: 650; }
.faction-tab small { margin-top: 3px; color: #71899a; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.faction-panel { position: relative; padding: 58px; display: grid; grid-template-columns: 170px 1fr; gap: 44px; overflow: hidden; }
.faction-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 14% 50%, rgba(34,156,224,.11), transparent 30%);
  pointer-events: none;
}
.faction-emblem {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  align-self: center;
  color: var(--blue);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: inset 0 0 45px rgba(45,165,229,.1), 0 0 45px rgba(45,165,229,.08);
  position: relative;
  z-index: 1;
}
.faction-emblem::before, .faction-emblem::after { content: ""; position: absolute; border: 1px solid currentColor; opacity: .34; }
.faction-emblem::before { inset: 18px; transform: rotate(45deg); }
.faction-emblem::after { inset: 34px; border-radius: 50%; }
.faction-emblem span { font-size: 1rem; font-weight: 800; letter-spacing: .22em; }
.faction-copy { position: relative; z-index: 1; }
.record-label { color: #698295; font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; }
.record-label b { color: var(--blue); }
.faction-copy h3 { margin: 15px 0 17px; font-size: clamp(2rem, 3vw, 3.3rem); font-weight: 660; letter-spacing: -.04em; }
.faction-copy > p { max-width: 580px; color: #a9bbc8; font-size: 1.08rem; }
.faction-copy dl { margin: 32px 0 0; border-top: 1px solid var(--line); }
.faction-copy dl div { padding: 12px 0; display: grid; grid-template-columns: 115px 1fr; border-bottom: 1px solid var(--line); }
.faction-copy dt { color: #6f889a; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.faction-copy dd { margin: 0; color: #d5e0e7; font-size: .88rem; }
.faction-panel.synthetics .faction-emblem { color: #ebfaff; border-radius: 0; transform: rotate(45deg) scale(.78); }
.faction-panel.synthetics .faction-emblem span { transform: rotate(-45deg); }
.faction-panel.synthetics::after { background: radial-gradient(circle at 14% 50%, rgba(196,241,255,.11), transparent 30%); }
.faction-panel.confederation .faction-emblem { color: var(--yellow); }
.faction-panel.confederation::after { background: radial-gradient(circle at 14% 50%, rgba(255,190,75,.11), transparent 30%); }
.nomad-note { margin-top: 18px; padding: 22px 26px; display: flex; align-items: center; gap: 20px; border: 1px dashed rgba(188,133,255,.3); background: rgba(73,35,100,.09); }
.nomad-mark { flex: 0 0 38px; height: 38px; display: grid; place-items: center; color: #d3b2ff; border: 1px solid rgba(211,178,255,.4); font-size: .75rem; font-weight: 800; }
.nomad-note p { margin: 0; color: #93a6b5; font-size: .9rem; }
.nomad-note strong { color: #dfd3ec; }

.systems { background: #050c14; border-block: 1px solid var(--line); }
.systems-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 88px; align-items: center; }
.ship-console { padding: 18px; border: 1px solid var(--line-strong); background: linear-gradient(145deg, rgba(7,24,38,.9), rgba(2,8,14,.96)); box-shadow: 0 24px 80px rgba(0,0,0,.45); clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px)); }
.console-top, .manifest-head { padding-bottom: 13px; display: flex; justify-content: space-between; gap: 20px; color: #7891a4; border-bottom: 1px solid var(--line); font-size: .65rem; font-weight: 700; letter-spacing: .14em; }
.signal { color: var(--blue); }
.ship-schematic { position: relative; height: 290px; margin: 12px 0; background: radial-gradient(circle at 50% 50%, rgba(39,171,238,.14), transparent 42%); }
.ship-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100px;
  height: 190px;
  border: 1px solid rgba(109,208,255,.66);
  transform: translate(-50%, -50%);
  clip-path: polygon(50% 0, 78% 18%, 100% 63%, 76% 86%, 65% 100%, 35% 100%, 24% 86%, 0 63%, 22% 18%);
  background: linear-gradient(90deg, transparent 0 48%, rgba(98,201,255,.25) 50%, transparent 52%);
  box-shadow: inset 0 0 25px rgba(74,190,247,.13);
}
.ship-core::before, .ship-core::after { content: ""; position: absolute; background: rgba(102,206,255,.4); }
.ship-core::before { width: 1px; height: 100%; left: 50%; }
.ship-core::after { height: 1px; width: 100%; top: 62%; }
.hardpoint { position: absolute; padding: 4px 7px; color: #7792a5; border: 1px solid var(--line); font-size: .58rem; letter-spacing: .12em; }
.hp-front { top: 5%; left: 50%; transform: translateX(-50%); }
.hp-right { top: 48%; right: 6%; }
.hp-back { bottom: 3%; left: 50%; transform: translateX(-50%); }
.hp-left { top: 48%; left: 6%; }
.system-bars { display: grid; gap: 9px; }
.system-bars > div { display: grid; grid-template-columns: 112px 1fr 42px; align-items: center; gap: 10px; color: #8199aa; font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.system-bars i { height: 3px; background: rgba(105,202,255,.12); }
.system-bars i b { display: block; width: var(--level); height: 100%; background: var(--blue); box-shadow: 0 0 9px rgba(97,202,255,.7); }
.system-bars strong { color: #bfeaff; text-align: right; font-size: .7rem; }
.systems-copy .section-index, .crew-copy .section-index { margin-bottom: 34px; }
.systems-copy > p:not(.kicker), .crew-copy > p { color: #9fb2c0; }
.clean-list { margin: 38px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.clean-list li { padding: 13px 0; display: flex; gap: 17px; color: #c0ced7; border-bottom: 1px solid var(--line); font-size: .88rem; }
.clean-list span { color: var(--blue); font-size: .68rem; font-weight: 700; }

.crew { display: grid; grid-template-columns: .82fr 1.18fr; gap: 100px; align-items: center; }
.crew-copy em { color: var(--blue-pale); font-style: normal; }
.crew-manifest { border: 1px solid var(--line); background: rgba(5,15,24,.72); }
.manifest-head { padding: 18px 22px; }
.crew-row { min-height: 76px; padding: 14px 22px; display: grid; grid-template-columns: 12px 1fr auto; align-items: center; gap: 16px; border-bottom: 1px solid var(--line); }
.role-dot { width: 8px; height: 8px; border-radius: 50%; box-shadow: 0 0 10px currentColor; }
.role-dot.captain { color: var(--red); background: var(--red); }
.role-dot.tactical { color: var(--blue); background: var(--blue); }
.role-dot.engineer { color: var(--yellow); background: var(--yellow); }
.crew-row strong, .crew-row small { display: block; }
.crew-row strong { font-size: .94rem; font-weight: 650; }
.crew-row small { color: #71899a; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.crew-state { color: #93a7b5; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.crew-state.repairing { color: var(--yellow); }
.manifest-foot { padding: 18px 22px; display: grid; grid-template-columns: 110px 1fr; color: #71899a; font-size: .69rem; letter-spacing: .1em; }
.manifest-foot p { margin: 0; color: #9eb0bd; letter-spacing: 0; }

.final-call { position: relative; min-height: 560px; padding: 126px 0; display: grid; place-items: center; text-align: center; overflow: hidden; border-top: 1px solid var(--line); background: #030910; }
.final-call::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(29,129,182,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29,129,182,.08) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle, #000, transparent 68%);
}
.final-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(24,158,226,.12); filter: blur(90px); }
.final-call .wrap { position: relative; z-index: 1; }
.final-call p:not(.kicker) { margin: 28px auto 34px; color: #91a5b3; }
.final-call .button { margin-inline: auto; }
.site-footer { padding: 30px 0; color: #61798b; border-top: 1px solid var(--line); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 24px; }

[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].visible { opacity: 1; transform: translateY(0); }
@keyframes pulse { 0%, 100% { opacity: .45; transform: scale(.85); } 50% { opacity: 1; transform: scale(1); } }
@keyframes heroIn { from { opacity: 0; transform: scale(1.025); } to { opacity: 1; transform: scale(1); } }

@media (max-width: 980px) {
  :root { --header-h: 68px; }
  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 10px;
    display: grid;
    gap: 5px;
    align-content: center;
    border: 1px solid var(--line);
    color: var(--white);
    background: rgba(2,8,14,.72);
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 20px;
    width: min(310px, calc(100vw - 40px));
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    background: rgba(3,11,19,.98);
    border: 1px solid var(--line-strong);
    box-shadow: 0 18px 60px rgba(0,0,0,.55);
  }
  .site-nav.open { display: flex; }
  .dev-state { padding: 16px 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
  .pillar:nth-child(4) { border-top: 1px solid var(--line); }
  .lore-grid, .systems-grid, .crew { grid-template-columns: 1fr; gap: 58px; }
  .lore-body { padding-top: 0; }
  .faction-interface { grid-template-columns: 290px 1fr; }
  .faction-panel { padding: 38px; grid-template-columns: 1fr; }
  .faction-emblem { width: 105px; height: 105px; align-self: start; }
  .crew-manifest { width: 100%; max-width: 680px; }
}

@media (max-width: 700px) {
  :root { --wrap: min(100% - 30px, 1180px); }
  .section { padding-block: 82px; }
  .site-header { padding-inline: 15px; }
  .mark-copy { display: none; }
  .hero { min-height: 760px; height: 100svh; }
  .hero-image { object-position: 65% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(1,5,10,.93), rgba(1,5,10,.28)), linear-gradient(0deg, #02070d 0%, transparent 35%, rgba(1,5,10,.5) 100%); }
  h1 { font-size: clamp(3.4rem, 17vw, 5.7rem); }
  .hero-content { padding-bottom: 80px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 330px); }
  .hero-telemetry { bottom: 22px; grid-template-columns: repeat(2, 1fr); gap: 7px 0; }
  .hero-telemetry div { padding-top: 7px; }
  .hero-telemetry div + div { padding-left: 14px; }
  .hero-telemetry div:nth-child(3) { padding-left: 0; border-left: 0; }
  .hero-telemetry span { font-size: .57rem; }
  .hero-telemetry strong { font-size: .72rem; }
  .intro { grid-template-columns: 1fr; gap: 24px; }
  .intro .section-index { margin-bottom: -8px; }
  .intro-copy { padding-top: 0; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar { min-height: 320px; }
  .pillar + .pillar { border-left: 0; border-top: 1px solid var(--line); }
  .line-icon { margin: 48px 0 28px; }
  .lore-grid { gap: 38px; }
  .lore-facts { grid-template-columns: 1fr; }
  .lore-facts div { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .section-topline { align-items: start; flex-direction: column; }
  .section-note { margin: -15px 0 0; }
  .faction-interface { grid-template-columns: 1fr; }
  .faction-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .faction-tab { min-height: 88px; padding: 13px 8px; display: block; text-align: center; border-bottom: 0; }
  .faction-tab + .faction-tab { border-left: 1px solid var(--line); }
  .faction-tab.active { box-shadow: inset 0 3px var(--blue); }
  .faction-code { display: block; margin-bottom: 4px; }
  .faction-tab b { font-size: .75rem; }
  .faction-tab small { display: none; }
  .faction-panel { padding: 30px 22px; gap: 28px; }
  .faction-copy dl div { grid-template-columns: 1fr; gap: 4px; }
  .nomad-note { align-items: start; }
  .ship-console { padding: 14px; }
  .ship-schematic { height: 240px; }
  .system-bars > div { grid-template-columns: 94px 1fr 38px; }
  .crew { gap: 48px; }
  .crew-row { padding-inline: 15px; }
  .crew-state { font-size: .58rem; }
  .manifest-foot { grid-template-columns: 1fr; gap: 6px; }
  .final-call { min-height: 520px; padding-block: 90px; }
  .site-footer .wrap { align-items: center; flex-direction: column; text-align: center; }
}

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