/* ═══════════════════════════════════════════════════════════
   GOAT PORTAL v2 — single-screen "command console"
   The Aurora Automaton Arm is the interface: nav channels are served by
   the arm as holographic panels anchored to its claw.
   NeonBlade UI language on a white lab field.
   ═══════════════════════════════════════════════════════════ */

:root {
  /* Aurora palette: glacial teal + violet on ice */
  --bg:        #f1f6f9;
  --bg-2:      #e5eef4;
  --panel:     #fbfdfe;
  --ink:       #0a1a26;
  --ink-soft:  #40606f;
  --azure:     #0d7a8a;   /* primary — glacial teal */
  --azure-hot: #2ee6d6;   /* neon teal for glows */
  --gold:      #7d6bdc;   /* secondary — aurora violet */
  --gold-hot:  #a48ffa;
  --line:      rgba(9, 34, 51, 0.14);
  --line-soft: rgba(9, 34, 51, 0.07);
  --glow-azure: 0 0 10px rgba(13, 148, 160, .55), 0 0 32px rgba(13, 148, 160, .25);
  --glow-gold:  0 0 10px rgba(139, 118, 250, .55), 0 0 32px rgba(139, 118, 250, .28);
  --font-display: "Michroma", sans-serif;
  --font-body: "Chakra Petch", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --cut: 16px;
  --nav-h: 62px;
  --status-h: 34px;
}

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

html, body { height: 100%; overflow: hidden; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--azure); color: #fff; }
.mono { font-family: var(--font-mono); }
.blink { color: #16cfc4; animation: blink 1.6s steps(2) infinite; }
@keyframes blink { 50% { opacity: .15; } }

/* ── Backdrop ──────────────────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    linear-gradient(var(--line-soft) 1px, transparent 1px) 0 0 / 100% 56px,
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px) 0 0 / 56px 100%,
    radial-gradient(1200px 700px at 78% -10%, rgba(13, 148, 160, .10), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(139, 118, 250, .09), transparent 60%),
    var(--bg);
}
/* scan sweep animates transform (composited) — animating
   background-position would repaint the full screen every frame
   and stutter against the WebGL canvas */
.grid-bg::after {
  content: ""; position: absolute; left: 0; right: 0;
  top: -900px; bottom: -900px;
  background: repeating-linear-gradient(180deg,
    transparent 0, rgba(13, 148, 160, .04) 450px, transparent 900px);
  animation: scan 9s linear infinite;
  will-change: transform;
}
@keyframes scan { to { transform: translateY(900px); } }

.noise {
  position: fixed; inset: 0; z-index: 40; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.04 0 0 0 0 0.13 0 0 0 0 0.07 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(16px, 3vw, 44px);
  background: rgba(241, 246, 249, .78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

.nav__brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.nav__div { width: 1px; height: 34px; background: var(--line); }
.nav__2030 { height: 48px; width: auto; display: block; }
.nav__word { font-family: var(--font-display); font-size: 15px; letter-spacing: .1em; }
.nav__logo { display: block; height: 24px; width: auto; margin-bottom: 3px; }
.nav__word em { color: var(--azure); font-style: normal; }
.nav__word span { display: block; font-family: var(--font-mono); font-size: 8.5px; letter-spacing: .34em; color: var(--ink-soft); }

.nav__links { display: flex; gap: clamp(16px, 3vw, 44px); }
.nav__links a {
  position: relative;
  font-family: var(--font-display);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  padding: 8px 2px;
  transition: color .2s ease, text-shadow .2s ease;
}
.nav__links a::before {
  content: attr(data-i); position: absolute; top: -4px; right: -15px;
  font-family: var(--font-mono); font-size: 8.5px; color: var(--gold);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--azure); box-shadow: var(--glow-azure);
  transition: width .25s ease;
}
.nav__links a:hover { color: var(--azure); text-shadow: 0 0 12px rgba(13,148,160,.4); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a.is-active { color: var(--azure); }

.nav__status { font-size: 10px; letter-spacing: .2em; color: var(--ink-soft); }

/* Arabic accents — bilingual HUD */
.ar {
  display: block;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 8.5px; font-weight: 400;
  letter-spacing: 0;
  color: var(--gold);
  text-align: center;
  margin-top: 1px;
  text-transform: none;
}
.ar-inline {
  font-family: "Noto Kufi Arabic", sans-serif;
  font-weight: 400; font-style: normal;
  letter-spacing: 0;
}

/* ── STAGE ─────────────────────────────────────────────────── */
.stage {
  position: fixed;
  top: var(--nav-h); bottom: var(--status-h); left: 0; right: 0;
}
#titanCanvas { width: 100%; height: 100%; display: block; touch-action: none; cursor: grab; }
#titanCanvas:active { cursor: grabbing; }

.corner { position: absolute; width: 30px; height: 30px; pointer-events: none; z-index: 5; }
.corner::before, .corner::after { content: ""; position: absolute; background: var(--azure); box-shadow: var(--glow-azure); }
.corner::before { width: 100%; height: 2px; }
.corner::after { width: 2px; height: 100%; }
.corner--tl { top: 12px; left: 12px; }
.corner--tr { top: 12px; right: 12px; transform: scaleX(-1); }
.corner--bl { bottom: 12px; left: 12px; transform: scaleY(-1); }
.corner--br { bottom: 12px; right: 12px; transform: scale(-1); }

.stage__readout {
  position: absolute; top: 22px; left: 26px; z-index: 5;
  font-size: 10px; line-height: 1.9; letter-spacing: .14em;
  color: var(--ink-soft);
  background: rgba(251, 253, 254, .72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  padding: 8px 12px;
  pointer-events: none;
}
.stage__readout b { color: var(--azure); margin-right: 8px; }
.stage__readout--bl { top: auto; left: auto; bottom: 18px; left: 26px; }

/* ── HUD reticle ─────────────────────────────────────────────
   the native cursor is ALWAYS visible; the reticle is a decorative
   HUD ring that rides along with it over the stage */
.reticle {
  position: absolute; z-index: 12;
  width: 0; height: 0;
  pointer-events: none;
  display: none;
}
.reticle.is-on { display: block; }
/* corner ticks just outside the ring — the native cursor stays center */
.reticle i { position: absolute; background: var(--azure); box-shadow: 0 0 6px rgba(46, 230, 214, .8); }
.reticle i:first-child  { width: 8px; height: 1.5px; left: -25px; top: -0.75px; }
.reticle i:last-of-type { width: 1.5px; height: 8px; left: -0.75px; top: -25px; }
.reticle::before {
  content: ""; position: absolute;
  width: 34px; height: 34px; left: -17px; top: -17px;
  border: 1px solid rgba(13, 148, 160, .5);
  border-radius: 50%;
}
.reticle span {
  position: absolute; left: 14px; top: 12px;
  font-size: 8.5px; letter-spacing: .1em;
  color: var(--azure);
  white-space: nowrap;
}

/* ── HOME OVERLAY ──────────────────────────────────────────── */
.home {
  position: absolute; z-index: 6;
  left: clamp(20px, 4vw, 60px); top: 50%;
  transform: translateY(-50%);
  max-width: min(46vw, 640px);
  pointer-events: none;
  transition: opacity .5s ease, transform .5s ease;
}
.home.is-hidden { opacity: 0; transform: translateY(-50%) translateX(-36px); }

.home__meta { font-size: 11px; letter-spacing: .2em; color: var(--ink-soft); margin-bottom: 20px; }
.home__sep { color: var(--gold); margin: 0 8px; }

.home__title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.6vw, 84px);
  line-height: 1.04;
  letter-spacing: .02em;
  user-select: none;
  margin-bottom: 22px;
}
.home__line { display: block; white-space: nowrap; }
.home__line--indent { padding-left: clamp(20px, 3.5vw, 70px); }
.home__line .ltr {
  display: inline-block;
  color: rgba(13, 122, 138, calc(var(--p, 0) * .9));
  -webkit-text-stroke: 1.6px var(--ink);
  text-shadow:
    0 0 calc(var(--p, 0) * 14px) rgba(34, 200, 190, calc(var(--p, 0) * .8)),
    0 0 calc(var(--p, 0) * 44px) rgba(34, 200, 190, calc(var(--p, 0) * .45));
  transform: translateY(calc(var(--p, 0) * -5px));
  transition: transform .18s ease;
  animation: ltr-in .7s cubic-bezier(.2, .85, .25, 1) both;
  animation-delay: calc(var(--i) * 45ms + 300ms);
}
.home__line .ltr--space { padding: 0 .18em; }
@keyframes ltr-in {
  from { opacity: 0; transform: translateY(.35em) rotateX(50deg); }
  to   { opacity: 1; transform: translateY(0); }
}

.home__lede { max-width: 44ch; font-size: clamp(14px, 1.3vw, 17px); color: var(--ink-soft); }
.home__lede strong { color: var(--ink); }
.home__hint {
  margin-top: 26px;
  font-size: 10.5px; letter-spacing: .26em; color: var(--azure);
  text-shadow: 0 0 14px rgba(13, 148, 160, .5);
  animation: hint-pulse 2.4s ease-in-out infinite;
}
@keyframes hint-pulse { 50% { opacity: .35; } }

/* ── CLAW ANCHOR + LEADER ──────────────────────────────────── */
.anchor {
  position: absolute; z-index: 7;
  width: 12px; height: 12px; margin: -6px 0 0 -6px;
  border: 2px solid var(--azure-hot);
  transform: rotate(45deg);
  box-shadow: var(--glow-azure), inset 0 0 6px rgba(46, 230, 214, .6);
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.anchor.is-on { opacity: 1; }
.anchor::after {
  content: ""; position: absolute; inset: -8px;
  border: 1px solid rgba(13, 148, 160, .45);
  animation: anchor-ping 1.8s ease-out infinite;
}
@keyframes anchor-ping {
  0% { transform: scale(.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.leader {
  position: absolute; z-index: 7;
  height: 1.5px;
  background: linear-gradient(90deg, var(--azure-hot), rgba(46, 230, 214, .25));
  box-shadow: 0 0 8px rgba(46, 230, 214, .5);
  transform-origin: 0 50%;
  opacity: 0; transition: opacity .3s ease;
  pointer-events: none;
}
.leader.is-on { opacity: 1; }

/* ── HOLO PANELS ───────────────────────────────────────────── */
.holo {
  position: absolute; z-index: 8;
  left: 0; top: 0;
  width: min(400px, 92vw);
  max-height: calc(100% - 40px);
  overflow: hidden auto;
  background: rgba(251, 253, 254, .84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 148, 160, .5);
  box-shadow: 0 24px 60px rgba(9, 34, 51, .16), inset 0 0 0 1px rgba(255, 255, 255, .5), 0 0 28px rgba(13, 148, 160, .12);
  clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut));
  padding: 18px 22px 22px;
  visibility: hidden;
}
.holo::before { /* scanline sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(13, 148, 160, .045) 0 1px, transparent 1px 4px);
  mix-blend-mode: multiply;
}
.holo.is-on {
  visibility: visible;
  animation: holo-in .5s cubic-bezier(.2, .9, .25, 1) both;
}
/* NOTE: no transform in these keyframes — JS drives position via
   inline transform, which an animation transform would override */
@keyframes holo-in {
  0%   { opacity: 0; clip-path: polygon(var(--cut) 0, 100% 0, 100% 0, 100% 0, 0 0, 0 var(--cut)); }
  35%  { opacity: 1; }
  60%  { clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)); }
  72%  { opacity: .55; }
  100% { opacity: 1; clip-path: polygon(var(--cut) 0, 100% 0, 100% calc(100% - var(--cut)), calc(100% - var(--cut)) 100%, 0 100%, 0 var(--cut)); }
}

.holo__head {
  display: flex; justify-content: space-between;
  font-size: 9.5px; letter-spacing: .22em; color: var(--gold);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 9px; margin-bottom: 12px;
}
.holo__head b { color: var(--azure); }

.holo__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: .05em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--azure);
  text-shadow: 0 0 18px rgba(13, 148, 160, .35);
  margin-bottom: 14px;
}

.holo__list { list-style: none; }
.holo__list li {
  display: flex; gap: 12px;
  padding: 9px 4px;
  border-top: 1px solid var(--line-soft);
  transition: background .2s ease, padding-left .2s ease;
}
.holo__list li:hover { background: rgba(13, 148, 160, .06); padding-left: 10px; }
.holo__list li > span { font-size: 9.5px; letter-spacing: .12em; color: var(--azure); padding-top: 4px; flex: none; }
.holo__list li.is-gold > span { color: var(--gold); }
.holo__list b { display: block; font-family: var(--font-display); font-size: 12px; letter-spacing: .04em; margin-bottom: 2px; }
.holo__list p { font-size: 12px; color: var(--ink-soft); line-height: 1.45; }
.holo__list i { display: block; font-style: normal; font-size: 9px; letter-spacing: .18em; color: var(--azure); margin-top: 4px; }

.holo__rows { display: flex; flex-direction: column; }
.holo__rows a {
  display: grid; grid-template-columns: 58px 1fr auto;
  align-items: center; gap: 12px;
  padding: 14px 4px;
  border-top: 1px solid var(--line-soft);
  text-decoration: none; color: var(--ink);
  transition: background .2s ease, padding-left .25s ease;
}
.holo__rows a:hover { background: rgba(13, 148, 160, .06); padding-left: 12px; }
.holo__rows span { font-size: 9px; letter-spacing: .24em; color: var(--gold); }
.holo__rows b { font-family: var(--font-display); font-size: 12px; font-weight: 400; letter-spacing: .02em; word-break: break-word; }
#panel-contact { width: min(440px, 92vw); }
.holo__rows i { font-style: normal; font-size: 18px; color: var(--azure); transition: transform .25s ease; }
.holo__rows a:hover i { transform: translateX(6px); }
.holo__rows a:hover b { color: var(--azure); }
.holo__foot { margin-top: 14px; font-size: 9px; letter-spacing: .18em; color: var(--ink-soft); }

/* ── MANIPULATOR DRAWER ────────────────────────────────────── */
.ctrl { position: absolute; right: 0; bottom: 18px; z-index: 9; display: flex; align-items: flex-end; }
.ctrl__tab {
  writing-mode: vertical-rl;
  font-size: 9px; letter-spacing: .22em;
  background: rgba(251, 253, 254, .85);
  border: 1px solid var(--line); border-right: none;
  color: var(--ink-soft);
  padding: 12px 5px; cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.ctrl__tab:hover { color: var(--azure); border-color: var(--azure); }
.ctrl__body {
  width: 0; overflow: hidden;
  background: rgba(251, 253, 254, .88);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  transition: width .35s cubic-bezier(.2, .8, .2, 1), padding .35s ease;
  padding: 12px 0;
}
.ctrl.is-open .ctrl__body { width: 236px; padding: 12px 14px; }
.ctrl.is-open .ctrl__tab { color: var(--azure); border-color: var(--azure); }

.ctrl__head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 9px; letter-spacing: .2em; color: var(--gold);
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px; margin-bottom: 8px;
  white-space: nowrap;
}
.ctrl__pose {
  font-size: 8.5px; letter-spacing: .1em;
  background: none; border: 1px solid var(--line); color: var(--ink-soft);
  padding: 3px 6px; cursor: pointer;
  transition: all .2s ease;
}
.ctrl__pose.is-on { border-color: var(--azure); color: var(--azure); box-shadow: 0 0 10px rgba(13,148,160,.25); }
.ctrl__pose:hover { border-color: var(--azure); color: var(--azure); }

.joint { display: grid; grid-template-columns: 66px 1fr 36px; align-items: center; gap: 8px; padding: 4px 0; }
.joint__name { font-size: 8.5px; letter-spacing: .1em; color: var(--ink-soft); white-space: nowrap; }
.joint__val { font-size: 9px; color: var(--azure); text-align: right; }

.joint input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--azure), var(--azure-hot));
  outline: none; cursor: pointer;
}
.joint input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 12px; height: 12px;
  background: var(--panel);
  border: 2px solid var(--azure);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(13, 148, 160, .5);
}
.joint input[type="range"]::-webkit-slider-thumb:hover { background: var(--azure); }
.joint input[type="range"]::-moz-range-thumb {
  width: 12px; height: 12px; border-radius: 0;
  background: var(--panel); border: 2px solid var(--azure);
  transform: rotate(45deg);
  box-shadow: 0 0 8px rgba(13, 148, 160, .5);
}

/* ── LOADER ────────────────────────────────────────────────── */
.loader {
  position: absolute; inset: 0; z-index: 15;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px;
  background: radial-gradient(60% 70% at 50% 45%, #fff 0%, var(--bg-2) 100%);
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__arc {
  width: 74px; height: 74px; border-radius: 50%;
  border: 3px solid var(--line);
  border-top-color: var(--azure);
  border-right-color: var(--gold);
  animation: spin 1s linear infinite;
  box-shadow: 0 0 24px rgba(13, 148, 160, .18);
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader p { font-size: 11.5px; letter-spacing: .28em; color: var(--ink-soft); }
.loader__term {
  width: min(420px, 80%);
  min-height: 118px;
  font-size: 10px; line-height: 1.9; letter-spacing: .08em;
  color: var(--azure);
  text-align: left;
}
.loader__term div { animation: term-in .12s steps(2) both; }
.loader__term div b { color: var(--gold); font-weight: 600; }
@keyframes term-in { from { opacity: 0; } }
.loader__bar { width: min(320px, 60%); height: 3px; background: var(--line-soft); overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 0%; background: linear-gradient(90deg, var(--azure), var(--azure-hot)); box-shadow: var(--glow-azure); transition: width .2s ease; }

/* ── STATUS BAR ────────────────────────────────────────────── */
.status {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  height: var(--status-h);
  display: flex; align-items: center; gap: 22px;
  background: var(--ink);
  padding: 0 16px;
  font-size: 10px; letter-spacing: .16em;
  color: rgba(239, 246, 250, .6);
  overflow: hidden;
}
.status__left { display: flex; gap: 22px; white-space: nowrap; align-items: center; }
.status__left b { color: var(--azure-hot); margin-right: 5px; }
.status__hint { color: rgba(239, 246, 250, .35); }
.status__snd { cursor: pointer; color: var(--azure-hot); user-select: none; transition: opacity .2s ease; }
.status__snd.is-off { color: rgba(239, 246, 250, .35); }
.status__track .mono, .status__track span { font-family: var(--font-mono), "Noto Kufi Arabic", sans-serif; }
.status__tick { flex: 1; overflow: hidden; }
.status__track { display: flex; white-space: nowrap; animation: tick 30s linear infinite; }
.status__track span {
  font-size: 10px; letter-spacing: .28em;
  color: var(--azure-hot);
  text-shadow: 0 0 12px rgba(46, 230, 214, .6);
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .home { max-width: 82vw; }
  .nav__status { display: none; }
  .status__hint { display: none; }
}
@media (max-width: 640px) {
  :root { --nav-h: 54px; --status-h: 30px; }

  .nav { padding: 0 12px; gap: 8px; }
  .nav__brand { gap: 8px; }
  .nav__div { height: 24px; }
  .nav__2030 { height: 34px; }
  .nav__word { font-size: 13px; }
  .nav__word span { display: none; }
  .nav__logo { height: 19px; margin-bottom: 0; }
  .nav__links { gap: 13px; }
  .nav__links a { font-size: 9px; letter-spacing: .06em; padding: 6px 0; }
  .nav__links a::before { display: none; } /* channel numbers — no room */

  /* hero copy docks under the nav so the arm stays clear */
  .home {
    left: 16px; right: 16px; top: 18px;
    max-width: none;
    transform: none;
  }
  .home.is-hidden { transform: translateX(-24px); }
  .home__meta { font-size: 9px; margin-bottom: 12px; }
  .home__title { font-size: clamp(30px, 9.4vw, 44px); margin-bottom: 12px; }
  .home__lede { font-size: 13px; max-width: none; }
  .home__hint { font-size: 9px; letter-spacing: .18em; margin-top: 14px; }

  .stage__readout { display: none; }
  .corner { width: 20px; height: 20px; }

  /* holo panels become a bottom sheet (positioned by JS) */
  .holo { width: min(400px, 94vw); max-height: 46vh; padding: 14px 16px 16px; }
  .holo__title { font-size: 18px; }
  .holo__list p { font-size: 11.5px; }

  .holo__rows a { grid-template-columns: 48px 1fr auto; gap: 8px; }
  .holo__rows b { font-size: 10.5px; }

  .ctrl { bottom: 10px; }
  .ctrl.is-open .ctrl__body { width: min(236px, 74vw); }

  .status { gap: 12px; padding: 0 10px; font-size: 9px; }
  .status__left { gap: 12px; }
  .status__left span:nth-child(2),
  .status__left span:nth-child(3) { display: none; } /* ROT / FPS */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}


/* ── hidden HUD chrome (per client request) ── */
.stage__readout { display: none !important; }
.home__hint { display: none !important; }
