/* ============================================================
   TRICENT AEROSPACE — corporate GCS design system
   off-black graphite · titanium-silver UI · saffron+green accents
   ============================================================ */

:root {
  --bg: #0a0b0d;
  --bg-2: #101216;
  --graphite: #14161a;
  --line: rgba(199, 204, 212, 0.14);
  --line-soft: rgba(199, 204, 212, 0.07);
  --ti: #c7ccd4;            /* titanium */
  --ti-dim: #8b929c;
  --ti-faint: #565c66;
  --saffron: #d98e3f;
  --green: #3f9367;
  --ok: #6fbf8f;
  --display: "Michroma", "Arial Black", sans-serif;
  --body: "Space Grotesk", "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "Consolas", monospace;
  --nav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { background: var(--bg); }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  background:
    radial-gradient(120vw 90vh at 50% 10%, #101319 0%, var(--bg) 60%);
  color: var(--ti);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.mono { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; }

::selection { background: rgba(217, 142, 63, 0.35); color: #fff; }

h1, h2, h3 { font-family: var(--display); font-weight: 400; color: #e8ebef; }

em { font-style: normal; color: #e8ebef; }
a { color: inherit; }

/* ============ BOOT SEQUENCE ============ */
#boot {
  position: fixed; inset: 0; z-index: 100;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.45s ease;
}
#boot.done { opacity: 0; pointer-events: none; }
.boot-inner { width: min(420px, 80vw); }
.boot-logo { width: 72px; height: auto; margin-bottom: 18px; display: block; }
.boot-mark {
  font-family: var(--display); font-size: 15px; letter-spacing: 0.32em;
  color: #e8ebef; margin-bottom: 26px;
}
.boot-mark span { color: var(--ti-faint); }
.boot-lines { color: var(--ti-dim); }
.boot-line { opacity: 0; margin: 5px 0; }
.boot-line.on { opacity: 1; }
.boot-line.on::after { content: "  ·  OK"; color: var(--ok); }
.boot-bar {
  margin-top: 26px; height: 1px; background: var(--line-soft);
  position: relative; overflow: hidden;
}
.boot-bar-fill {
  position: absolute; inset: 0; transform-origin: left;
  transform: scaleX(0); background: var(--ti-dim);
}

/* ============ TOP NAVIGATION ============ */
#topnav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  background: rgba(10, 11, 13, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.nav-brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
}
.nav-logo { width: 42px; height: auto; flex: 0 0 auto; }
.nav-name {
  font-family: var(--display); font-size: 12px; letter-spacing: 0.26em;
  color: #e8ebef; white-space: nowrap;
}
.nav-name b { font-weight: 400; color: var(--ti-faint); }

.nav-links { display: flex; align-items: center; gap: clamp(14px, 2.2vw, 34px); }
.nav-links > a, .nav-drop > button {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--ti-dim); text-decoration: none; background: none; border: 0;
  cursor: pointer; padding: 8px 0; transition: color .2s;
}
.nav-links > a:hover, .nav-drop > button:hover,
.nav-links > a.active { color: #e8ebef; }
.nav-drop > button i { font-style: normal; color: var(--ti-faint); font-size: 8px; }
.nav-cta {
  border: 1px solid var(--ti-faint) !important; padding: 8px 16px !important;
  color: #e8ebef !important;
}
.nav-cta:hover { border-color: var(--saffron) !important; }

.nav-drop { position: relative; }
.drop-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  display: none; gap: 40px;
  background: rgba(13, 15, 18, 0.97);
  border: 1px solid var(--line);
  padding: 24px 28px;
  min-width: 300px;
}
.drop-panel::before { /* hover bridge */
  content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel,
.nav-drop.open .drop-panel { display: flex; }
.drop-col { display: flex; flex-direction: column; gap: 2px; min-width: 220px; }
.drop-head { color: var(--saffron); margin-bottom: 10px; font-size: 9.5px; }
.drop-col a {
  font-size: 13px; color: var(--ti-dim); text-decoration: none;
  padding: 6px 0; letter-spacing: 0.03em; white-space: nowrap;
  border-bottom: 1px solid transparent; transition: color .15s;
}
.drop-col a:hover { color: #e8ebef; }

#nav-burger {
  display: none; background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
#nav-burger i { display: block; width: 20px; height: 1px; background: var(--ti); }

@media (max-width: 1000px) {
  .nav-links {
    position: fixed; top: var(--nav-h); right: 0; left: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(10, 11, 13, 0.97); border-bottom: 1px solid var(--line);
    padding: 10px clamp(18px, 6vw, 40px) 24px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links > a, .nav-drop > button { padding: 13px 0; font-size: 12px; }
  .nav-drop { width: 100%; }
  .drop-panel {
    position: static; transform: none; display: flex; flex-direction: column;
    border: 0; border-left: 1px solid var(--line); background: none;
    padding: 0 0 8px 16px; gap: 14px; min-width: 0;
  }
  .nav-cta { margin-top: 12px; }
  #nav-burger { display: flex; }
}

/* ============ FIXED GCS HUD CHROME ============ */
.hud { position: fixed; inset: 0; z-index: 40; pointer-events: none; }

.hud-grid {
  position: absolute; inset: 0; opacity: 0.045;
  background-image:
    linear-gradient(var(--ti) 1px, transparent 1px),
    linear-gradient(90deg, var(--ti) 1px, transparent 1px);
  background-size: 120px 120px;
}
.hud-scanline {
  position: absolute; left: 0; right: 0; height: 20vh; top: -20vh;
  background: linear-gradient(to bottom, transparent, rgba(199,204,212,0.028), transparent);
  animation: scan 9s linear infinite;
}
@keyframes scan { to { top: 120vh; } }

.hud-corner {
  position: absolute; width: 26px; height: 26px;
  border: 1px solid rgba(199, 204, 212, 0.4);
}
.hud-corner.bl { bottom: 14px; left: 14px; border-right: 0; border-top: 0; }
.hud-corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; }

.hud-tick { position: absolute; background: rgba(199,204,212,0.35); }
.hud-tick.bottom { bottom: 14px; left: 50%; width: 1px; height: 10px; }
.hud-tick.left   { left: 14px;   top: 50%;  width: 10px; height: 1px; }
.hud-tick.right  { right: 14px;  top: 50%;  width: 10px; height: 1px; }

.hud-bar {
  position: absolute; left: 56px; right: 56px;
  display: flex; justify-content: space-between;
  color: var(--ti-faint); font-size: 10px;
}
.hud-bar.bottom { bottom: 20px; }
.hud-bar .ok { color: var(--ok); font-weight: 400; }
.hud-sec-label { color: var(--ti-dim); transition: opacity .3s; }

/* ============ WAYPOINT RAIL ============ */
#wp-rail {
  position: fixed; left: 26px; top: 0; height: 100vh; width: 92px;
  z-index: 41; pointer-events: none;
}
#wp-rail svg { width: 100%; height: 100%; overflow: visible; }
.wp-path-base { stroke: rgba(199,204,212,0.16); fill: none; stroke-width: 1; }
.wp-path-live { stroke: var(--saffron); fill: none; stroke-width: 1; }
.wp-node circle { fill: var(--bg); stroke: rgba(199,204,212,0.4); stroke-width: 1; }
.wp-node.hit circle { stroke: var(--saffron); fill: #1b1207; }
.wp-node text {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em;
  fill: var(--ti-faint);
}
.wp-node.hit text { fill: var(--saffron); }
.wp-marker { fill: var(--saffron); }

@media (max-width: 700px) { #wp-rail, .hud-bar { display: none; } }

/* ============ SECTIONS / STAGES ============ */
section.cine { position: relative; }
.stage {
  position: relative; height: 100vh; width: 100%;
  overflow: hidden;
}
.stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.stage-ui { position: absolute; z-index: 5; }

.kicker { color: var(--saffron); margin-bottom: 18px; }

/* ---------- hero / home ---------- */
.hero-copy {
  inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  pointer-events: none;
  padding-top: var(--nav-h);
}
.hero-logo { width: clamp(110px, 12vw, 180px); height: auto; margin-bottom: 3.5vh; }
#hero-title {
  font-size: clamp(30px, 6.4vw, 84px);
  line-height: 1.08; letter-spacing: 0.18em;
  text-indent: 0.18em; /* optical centering vs letter-spacing */
}
#hero-title .line { display: block; }
#hero-title .l2 { color: var(--ti-dim); }
.tagline {
  margin-top: 28px; font-family: var(--display);
  font-size: clamp(12px, 1.5vw, 17px); letter-spacing: 0.34em; color: var(--saffron);
}
.subline { margin-top: 14px; font-size: clamp(13px, 1.3vw, 16px); color: var(--ti-dim); letter-spacing: 0.06em; }
.scroll-hint { position: absolute; bottom: 6vh; color: var(--ti-faint); line-height: 2; }
.hero-readout {
  right: 56px; bottom: 56px; display: flex; flex-direction: column; gap: 6px;
  font-family: var(--mono); font-size: 10px; color: var(--ti-faint);
  text-align: right; letter-spacing: 0.1em;
}
#hero-azimuth { color: var(--ti-dim); }
@media (max-width: 700px) { .hero-readout { display: none; } }

/* ---------- copy sections ---------- */
.copy-sec { position: relative; padding: 22vh 8vw 22vh max(8vw, 140px); }
.copy-wrap { max-width: 720px; margin: 0 auto; }
.copy-wrap.wide { max-width: 1120px; }
.copy-sec h2 { font-size: clamp(26px, 3.6vw, 46px); line-height: 1.25; letter-spacing: 0.06em; margin-bottom: 5vh; }
.sec-sub { color: var(--ti-dim); font-size: 15px; line-height: 1.7; max-width: 560px; margin: -2vh 0 6vh; }
.mission-lines p {
  font-size: clamp(16px, 1.7vw, 21px); line-height: 1.65; color: var(--ti-dim);
  margin-bottom: 4vh; max-width: 680px;
}

/* ---------- about: mission / vision / purpose ---------- */
.mvp-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line); border-left: 1px solid var(--line);
  margin: 7vh 0 9vh;
}
.mvp {
  border-right: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 30px 28px 28px;
}
.mvp-head { color: var(--saffron); margin-bottom: 14px; }
.mvp p, .mvp li { color: var(--ti-dim); font-size: 14.5px; line-height: 1.75; letter-spacing: 0.02em; }
.mvp ul { list-style: none; }
.mvp li { margin-bottom: 6px; }
.mvp li::before { content: "— "; color: var(--ti-faint); }
@media (max-width: 800px) { .mvp-grid { grid-template-columns: 1fr; } }

/* ---------- doctrine pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4vw; }
.pillar { border-top: 1px solid var(--line); padding-top: 26px; }
.p-num { color: var(--saffron); font-size: 10px; }
.pillar h3 { font-size: clamp(18px, 2vw, 26px); letter-spacing: 0.12em; margin: 16px 0 14px; }
.pillar p { color: var(--ti-dim); font-size: 14.5px; line-height: 1.7; letter-spacing: 0.02em; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- telemetry / operations ---------- */
.telemetry { inset: 0; pointer-events: none; color: rgba(220, 226, 234, 0.85); }
.telemetry .tele { position: absolute; font-size: 11px; line-height: 1.9; text-shadow: 0 0 6px rgba(0,0,0,0.8); }
.telemetry .tele b { font-weight: 500; color: #fff; }
.tele.tl { top: calc(var(--nav-h) + 28px); left: 140px; }
.tele.tr { top: calc(var(--nav-h) + 28px); right: 64px; text-align: right; }
.tele.bl { bottom: 64px; left: 140px; }
.tele.br { bottom: 64px; right: 64px; text-align: right; }
.rec { color: #e0563c; animation: blink 1s steps(2, start) infinite; }
@keyframes blink { 50% { opacity: 0.25; } }

.tele-reticle {
  position: absolute; left: 50%; top: 50%; width: 220px; height: 220px;
  transform: translate(-50%, -50%);
}
.rt { position: absolute; background: rgba(220,226,234,0.55); }
.rt.h { left: 0; right: 0; top: 50%; height: 1px;
        -webkit-mask: linear-gradient(90deg,#000 0 28%,transparent 28% 72%,#000 72%);
        mask: linear-gradient(90deg,#000 0 28%,transparent 28% 72%,#000 72%); }
.rt.v { top: 0; bottom: 0; left: 50%; width: 1px;
        -webkit-mask: linear-gradient(#000 0 28%,transparent 28% 72%,#000 72%);
        mask: linear-gradient(#000 0 28%,transparent 28% 72%,#000 72%); }
.rt.box {
  inset: 38%; border: 1px solid rgba(220,226,234,0.5); background: none;
}
.rt-label {
  position: absolute; top: calc(38% - 18px); left: 38%;
  font-size: 9px; letter-spacing: 0.14em; color: rgba(220,226,234,0.6);
}
.tele-caption {
  position: absolute; left: 140px; bottom: 18vh; max-width: 460px;
  font-family: var(--body);
}
.tele-caption h2 { font-size: clamp(22px, 2.6vw, 34px); letter-spacing: 0.05em; margin-bottom: 16px; }
.tele-caption .tele-sub { font-size: 15px; line-height: 1.6; color: var(--ti-dim); letter-spacing: 0.02em; }
@media (max-width: 700px) {
  .tele.tl, .tele.bl, .tele-caption { left: 24px; }
  .tele.tr, .tele.br { right: 24px; }
}

/* ---------- product / service tiles ---------- */
.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.prod-grid.svc { grid-template-columns: repeat(2, 1fr); }
.prod {
  background: var(--bg);
  padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .25s;
}
.prod:hover { background: #0e1013; }
.prod-i { color: var(--ti-faint); font-size: 9.5px; }
.prod h3 { font-family: var(--body); font-weight: 500; font-size: 18px; letter-spacing: 0.03em; color: #e8ebef; }
.prod p { color: var(--ti-dim); font-size: 13.5px; line-height: 1.65; flex: 1; }
.q-link {
  color: var(--saffron); text-decoration: none; font-size: 10px;
  letter-spacing: 0.14em; margin-top: 6px;
}
.q-link:hover { color: #e8ebef; }
@media (max-width: 1000px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .prod-grid, .prod-grid.svc { grid-template-columns: 1fr; } }

/* ---------- sensor macro ---------- */
.sensor-head, .arch-head, .airspace-head { left: max(8vw, 130px); }
.sensor-head { top: calc(var(--nav-h) + 5vh); }
.sensor-head h2 { font-size: clamp(22px, 3vw, 38px); letter-spacing: 0.08em; }
.macro-callout {
  left: max(8vw, 130px); bottom: 12vh; display: flex; gap: 22px; align-items: baseline;
  border-left: 1px solid var(--saffron); padding-left: 18px;
}
.mc-index { color: var(--ti-faint); font-size: 10px; }
.mc-text { color: #dfe4ea; font-size: 12px; letter-spacing: 0.12em; }

/* ---------- technology / architecture ---------- */
.arch-head { top: calc(var(--nav-h) + 4vh); max-width: 520px; }
.arch-head h2 { font-size: clamp(22px, 3vw, 38px); letter-spacing: 0.08em; margin-bottom: 14px; }
.arch-sub { color: var(--ti-dim); font-size: 14px; line-height: 1.7; letter-spacing: 0.03em; }
#leader-svg { inset: 0; width: 100%; height: 100%; pointer-events: none; }
#leader-svg line { stroke: rgba(199,204,212,0.45); stroke-width: 1; }
#leader-svg circle { fill: var(--saffron); }
#arch-callouts { inset: 0; pointer-events: none; }
.arch-co {
  position: absolute; transform: translate(-0%, -50%); opacity: 0;
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em;
  color: #dfe4ea; white-space: nowrap; text-shadow: 0 0 8px rgba(0,0,0,0.9);
}
.arch-co small { display: block; color: var(--ti-faint); font-size: 9.5px; margin-top: 3px; letter-spacing: 0.08em; }

/* ---------- airspace ---------- */
.airspace-head { top: calc(var(--nav-h) + 5vh); }
.airspace-head h2 { font-size: clamp(22px, 3vw, 38px); letter-spacing: 0.08em; }
.sweep-status {
  right: 8vw; top: calc(var(--nav-h) + 7vh); display: flex; flex-direction: column; gap: 10px; text-align: right;
}
@media (max-width: 900px) {
  .sweep-status { top: auto; bottom: 20vh; }
}
.sweep-status .ss {
  color: var(--ti-faint); font-size: 11px; letter-spacing: 0.18em;
  transition: color 0.3s;
}
.sweep-status .ss.on { color: var(--ok); }
.sweep-status .ss.on::before { content: "■ "; font-size: 8px; vertical-align: 1px; }
.airspace-note {
  left: max(8vw, 130px); bottom: 8vh; color: var(--ti-dim); font-size: 10px;
  border-left: 1px solid var(--green); padding-left: 14px; line-height: 1.8;
  max-width: 420px;
}

/* ---------- company: HQ + leadership ---------- */
.hq-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--line); border: 1px solid var(--line);
  margin-bottom: 9vh;
}
.hq-block { background: var(--bg); padding: 32px 30px; }
.hq-head { color: var(--saffron); margin-bottom: 14px; }
.hq-block p { color: var(--ti-dim); font-size: 15px; line-height: 1.75; }
@media (max-width: 800px) { .hq-grid { grid-template-columns: 1fr; } }

.team-kicker { color: var(--saffron); margin-bottom: 3vh; }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 4vw 3vw;
}
.team { border-top: 1px solid var(--line); padding-top: 20px; }
.t-role { color: #dfe4ea; font-size: 10.5px; margin-bottom: 12px; }
.team p:last-child { color: var(--ti-dim); font-size: 13px; line-height: 1.65; }
.team-note { color: var(--ti-faint); margin-top: 5vh; font-size: 10px; }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- newsroom ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.news {
  background: var(--bg); padding: 30px 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .25s; cursor: pointer;
}
.news:hover { background: #0e1013; }
.n-tag { color: var(--saffron); font-size: 9.5px; }
.news h3 { font-family: var(--body); font-weight: 500; font-size: 18px; line-height: 1.4; letter-spacing: 0.02em; color: #e8ebef; }
.news p { color: var(--ti-dim); font-size: 13.5px; line-height: 1.65; flex: 1; }
.n-read { color: var(--ti-faint); font-size: 9.5px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 6vw; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
#quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 26px; align-content: start; min-width: 0; }
#quote-form label { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
#quote-form input, #quote-form select, #quote-form textarea { width: 100%; min-width: 0; }
@media (max-width: 620px) { #quote-form { grid-template-columns: 1fr; } }
#quote-form label.full { grid-column: 1 / -1; }
#quote-form label span { color: var(--ti-faint); font-size: 9.5px; }
#quote-form input, #quote-form select, #quote-form textarea {
  background: rgba(20, 22, 26, 0.6); border: 1px solid var(--line);
  color: #e8ebef; font-family: var(--body); font-size: 14px;
  padding: 12px 14px; outline: none; border-radius: 0;
  transition: border-color .2s;
}
#quote-form select { appearance: none; }
#quote-form input:focus, #quote-form select:focus, #quote-form textarea:focus { border-color: var(--ti-dim); }
#quote-form textarea { resize: vertical; }
#quote-form .cta-btn { grid-column: 1 / -1; justify-self: start; }
.form-note { grid-column: 1 / -1; color: var(--ti-faint); font-size: 9.5px; }

.cta-btn {
  display: inline-flex; align-items: center; gap: 26px;
  border: 1px solid var(--ti-dim); color: #e8ebef; text-decoration: none;
  background: none; cursor: pointer;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em;
  padding: 18px 28px; transition: border-color .25s, background .25s;
}
.cta-btn:hover { border-color: var(--saffron); background: rgba(217,142,63,0.06); }
.cta-btn i { font-style: normal; color: var(--saffron); }

.contact-side { display: flex; flex-direction: column; gap: 8px; }
.contact-side .hq-head { margin: 22px 0 6px; }
.contact-side .hq-head:first-child { margin-top: 0; }
.addr { color: var(--ti-dim); font-size: 15px; line-height: 1.7; }
.addr a { color: #dfe4ea; text-decoration: none; border-bottom: 1px solid var(--line); }
.addr a:hover { border-color: var(--saffron); }

/* ---------- footer ---------- */
footer {
  padding: 60px 8vw 110px max(8vw, 140px);
  border-top: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 34px;
}
.foot-brand { display: flex; align-items: center; gap: 16px; }
.foot-logo { width: 52px; height: auto; }
.foot-name { font-family: var(--display); font-size: 13px; letter-spacing: 0.26em; color: #e8ebef; margin-bottom: 6px; }
.foot-brand .mono { color: var(--ti-faint); font-size: 9px; }
.foot-links { display: flex; flex-wrap: wrap; gap: 10px 30px; }
.foot-links a { color: var(--ti-dim); text-decoration: none; font-size: 10px; }
.foot-links a:hover { color: #e8ebef; }
.foot-line { color: var(--ti-faint); font-size: 9.5px; }

/* reveals (JS-driven) */
.reveal { opacity: 0; transform: translateY(28px); }

@media (prefers-reduced-motion: reduce) {
  .hud-scanline { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
