/* ============================================================
   $AIBULL — green phosphor terminal (live token page)
   Single stylesheet. No inline styles anywhere (CSP: style-src 'self').
   ============================================================ */

@font-face {
  font-family: 'JetBrains Mono';
  src: url('/vendor/fonts/jetbrains-mono-var.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: dark;

  --bg:      #050705;
  --bg-2:    #080C08;
  --panel:   #0A100A;
  --panel-2: #0D150D;

  --grn:     #00FF41;
  --grn-2:   #7CFF9E;
  --ink:     #B9F5C8;
  --ink-2:   #71C489;
  --ink-3:   #47825A;
  --ink-4:   #2E5539;

  --line:    rgba(0, 255, 65, .16);
  --line-2:  rgba(0, 255, 65, .34);
  --line-3:  rgba(0, 255, 65, .58);

  --amber:   #FFB000;
  --red:     #FF4B3E;

  --f: 'JetBrains Mono', ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;

  --maxw: 1180px;
  --gut: clamp(16px, 4vw, 36px);
  --ease: cubic-bezier(.22, 1, .36, 1);

  --glow-1: 0 0 8px rgba(0, 255, 65, .35);
  --glow-2: 0 0 22px rgba(0, 255, 65, .22);
}

*, *::before, *::after { box-sizing: border-box; }

/* The `hidden` attribute is only `display:none` in the UA sheet, so any
   author `display` rule silently beats it. Several elements here are
   toggled with `hidden`, so make the attribute win outright. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.booting { overflow: hidden; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--f);
  font-size: 15px;
  line-height: 1.62;
  font-variant-ligatures: none;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--grn); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--grn); outline-offset: 2px; }

.tnum { font-variant-numeric: tabular-nums; }
.glow { color: var(--grn); text-shadow: var(--glow-1), var(--glow-2); }

.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;
}
.sr-only:focus {
  position: fixed; top: 10px; left: 10px; width: auto; height: auto;
  clip: auto; padding: 10px 14px; background: var(--grn); color: #000; z-index: 999;
}

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); position: relative; z-index: 2; }

/* ─────────────── CRT layers ─────────────── */
.fx { position: fixed; inset: 0; pointer-events: none; z-index: 0; }
.fx-rain { width: 100%; height: 100%; opacity: .5; }
.fx-scan {
  background: repeating-linear-gradient(
    to bottom, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,.22) 3px, rgba(0,0,0,.22) 4px);
  opacity: .55; z-index: 1;
}
.fx-vig {
  background:
    radial-gradient(120% 90% at 50% 40%, rgba(0,0,0,0) 45%, rgba(0,0,0,.72) 100%),
    linear-gradient(to bottom, rgba(0,20,4,.28), rgba(0,0,0,0) 30%);
  z-index: 1;
}

/* ─────────────── Boot overlay ─────────────── */
.boot {
  position: fixed; inset: 0; z-index: 200; background: var(--bg);
  display: grid; place-items: center; padding: var(--gut);
  transition: opacity .4s var(--ease);
}
.boot.gone { opacity: 0; }
.boot-inner { width: min(520px, 100%); font-size: 13px; color: var(--grn); text-shadow: var(--glow-1); }
.boot-line { white-space: pre-wrap; animation: bootIn .18s var(--ease) both; }
.boot-cursor { animation: blink 1s steps(1) infinite; }
@keyframes bootIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ─────────────── Scroll progress ─────────────── */
.sprog { position: fixed; top: 0; left: 0; height: 2px; width: 0; background: var(--grn); box-shadow: 0 0 10px var(--grn); z-index: 120; }

/* ─────────────── Ticker ─────────────── */
.wire {
  position: relative; z-index: 3;
  border-bottom: 1px solid var(--line); background: rgba(0, 12, 2, .6);
  overflow: hidden; font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-2);
}
.wire-track { display: flex; width: max-content; animation: wire 52s linear infinite; }
.wire:hover .wire-track { animation-play-state: paused; }
.wire-track > span { display: inline-flex; align-items: center; padding: 7px 0; }
.wire-track > span::after { content: '::'; color: var(--ink-4); padding: 0 18px; }
.wire-track b { color: var(--grn); font-weight: 700; text-shadow: var(--glow-1); }
.wire-track em { color: var(--amber); font-style: normal; }
@keyframes wire { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ─────────────── Masthead ─────────────── */
.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(5, 7, 5, .72); border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, backdrop-filter .25s;
}
.masthead.stuck { background: rgba(5, 7, 5, .93); backdrop-filter: blur(10px); border-bottom-color: var(--line); }
.mh-in { display: flex; align-items: center; gap: 18px; height: 62px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.brand img { border: 1px solid var(--line-2); }
.brand-txt { display: flex; flex-direction: column; line-height: 1.1; }
.brand-txt b { font-size: 15px; letter-spacing: .14em; color: var(--grn); text-shadow: var(--glow-1); }
.brand-txt i { font-style: normal; font-size: 10px; letter-spacing: .1em; color: var(--ink-3); }

.mh-nav { display: flex; gap: 20px; margin-left: auto; font-size: 12.5px; letter-spacing: .04em; }
.mh-nav a { color: var(--ink-2); }
.mh-nav a:hover { color: var(--grn); text-decoration: none; text-shadow: var(--glow-1); }
.mh-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.mh-nav + .mh-cta { margin-left: 0; }

.burger { display: none; width: 38px; height: 34px; background: none; border: 1px solid var(--line-2); cursor: pointer; padding: 8px 9px; flex-direction: column; justify-content: space-between; }
.burger i { display: block; height: 1px; background: var(--grn); transition: transform .25s var(--ease), opacity .2s; }
.burger[aria-expanded="true"] i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] i:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; padding: 0 var(--gut) 14px; background: rgba(5,7,5,.97); border-bottom: 1px solid var(--line); }
.mobile-nav a { padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 14px; }
.mobile-nav.open { display: flex; }

/* ─────────────── Buttons ─────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 1px solid var(--line-3); background: transparent;
  color: var(--grn); font: inherit; font-size: 13px; font-weight: 600;
  letter-spacing: .05em; cursor: pointer; text-decoration: none;
  transition: background .18s, color .18s, box-shadow .18s, transform .12s;
}
.btn:hover { background: rgba(0, 255, 65, .1); box-shadow: var(--glow-1); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn:disabled, .btn[aria-disabled="true"] { opacity: .4; cursor: not-allowed; box-shadow: none; }
.btn[aria-disabled="true"]:hover { background: transparent; }
.btn-hl { background: var(--grn); color: #021206; border-color: var(--grn); box-shadow: var(--glow-2); }
.btn-hl:hover { background: var(--grn-2); border-color: var(--grn-2); color: #021206; }
.btn-hl[aria-disabled="true"]:hover { background: var(--grn); }
.btn-ghost { border-color: var(--line-2); color: var(--ink-2); }
.btn-ghost:hover { color: var(--grn); }
.btn-sm { padding: 8px 14px; font-size: 12px; }

/* ─────────────── Hero ─────────────── */
.hero { padding: clamp(30px, 5vw, 60px) 0 clamp(26px, 4vw, 48px); text-align: center; }

.statline { display: inline-flex; align-items: center; gap: 10px; font-size: 11.5px; letter-spacing: .12em; color: var(--ink-3); text-transform: uppercase; }
.statline .dot { width: 7px; height: 7px; background: var(--grn); border-radius: 50%; box-shadow: 0 0 0 0 rgba(0,255,65,.5); animation: pulse 2.2s infinite; }
.statline .sep { color: var(--ink-4); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(0,255,65,.55); } 70% { box-shadow: 0 0 0 9px rgba(0,255,65,0); } 100% { box-shadow: 0 0 0 0 rgba(0,255,65,0); } }

.hero h1 {
  margin: 14px 0 10px;
  font-size: clamp(38px, 9vw, 96px);
  line-height: 1.02; font-weight: 800; letter-spacing: -.03em; color: var(--ink);
}
.caret { color: var(--grn); animation: blink 1.05s steps(1) infinite; margin-left: 8px; font-size: .58em; vertical-align: .1em; }

.typed-wrap { margin: 0 0 16px; min-height: 2.6em; font-size: 13.5px; color: var(--grn); text-shadow: var(--glow-1); }
.typed-wrap::before { content: '> '; color: var(--ink-3); }

.lede { margin: 0 auto 26px; max-width: 66ch; color: var(--ink-2); font-size: 14.5px; }
.lede b { color: var(--ink); font-weight: 700; }

.trust { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; list-style: none; margin: 26px 0 0; padding: 0; }
.trust li { font-size: 11px; letter-spacing: .05em; color: var(--ink-2); border: 1px solid var(--line); padding: 5px 10px; text-transform: uppercase; }
.trust li::before { content: '[ok] '; color: var(--grn); }

/* ─────────────── Contract terminal ─────────────── */
.ca-term {
  max-width: 860px; margin: 0 auto; text-align: left;
  border: 1px solid var(--line-2); background: var(--panel);
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 26px 60px -30px rgba(0,255,65,.3);
}
.tk-chrome { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid var(--line); background: var(--panel-2); }
.tk-dots { display: inline-flex; gap: 5px; }
.tk-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-4); }
.tk-dots i:first-child { background: var(--red); }
.tk-dots i:nth-child(2) { background: var(--amber); }
.tk-dots i:last-child { background: var(--grn); }
.tk-path { font-size: 11px; color: var(--ink-3); letter-spacing: .04em; }

.ca-body { padding: 18px; }
.addr-alert { margin: 0 0 14px; padding: 10px 12px; border: 1px solid var(--red); background: rgba(255,75,62,.1); color: #FFC9C4; font-size: 12px; }

.ca-lab { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 11px; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 8px; }
.ca-chain { color: var(--ink-4); letter-spacing: .1em; }

.addr-row { display: flex; align-items: stretch; gap: 6px; }
.addr-row code {
  flex: 1; min-width: 0; padding: 12px 12px; border: 1px solid var(--line-2);
  background: #000; color: var(--grn); font-family: var(--f);
  font-size: clamp(11px, 1.5vw, 15px); font-weight: 700; letter-spacing: .02em;
  word-break: break-all; line-height: 1.45; text-shadow: var(--glow-1);
}
.copy-btn { flex: none; padding: 0 14px; border: 1px solid var(--line-3); background: transparent; color: var(--grn); font: inherit; font-size: 11px; font-weight: 700; letter-spacing: .08em; cursor: pointer; transition: background .18s; }
.copy-btn:hover { background: rgba(0,255,65,.12); }
.copy-btn.ok { background: var(--grn); color: #021206; }

.note { margin: 10px 0 0; font-size: 10.5px; line-height: 1.6; color: var(--ink-4); }
.note-warn { color: #C9A45E; }

.ca-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.ca-actions .btn { flex: 1 1 auto; }

/* Live market readout */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 18px; background: var(--line); border: 1px solid var(--line); }
.st { display: flex; flex-direction: column; gap: 2px; padding: 11px 12px; background: var(--bg-2); }
.st span { font-size: 9.5px; letter-spacing: .1em; color: var(--ink-4); text-transform: uppercase; }
.st b { font-size: 16px; font-weight: 700; color: var(--ink); }
#uptime { font-size: 14px; }               /* longest value — keep it on one line */
#stChange.up { color: var(--grn); }
#stChange.down { color: var(--red); }
.st-foot { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 10px; padding: 7px 12px; background: var(--bg-2); font-size: 9.5px; letter-spacing: .08em; color: var(--ink-4); text-transform: uppercase; }
.st-src::before { content: '● '; color: var(--ink-4); }
.stats.has-data .st-src::before { color: var(--grn); }

/* Pre-launch: the address is not out yet, so nothing pretends to be clickable. */
.pending .addr-row code { color: var(--ink-3); border-style: dashed; font-weight: 400; font-size: 11.5px; letter-spacing: .08em; text-shadow: none; }
.pending .copy-btn { opacity: .4; cursor: not-allowed; }
.pending .copy-btn:hover { background: transparent; }
.pending .stats { opacity: .45; }
.pending .ca-chain::after { content: ' · awaiting mint'; color: var(--amber); }

/* ─────────────── Numbers band ─────────────── */
.numbers { border-block: 1px solid var(--line); background: rgba(0, 20, 4, .3); padding: 26px 0; }
.num-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.num { display: flex; flex-direction: column; gap: 4px; }
.num-k { font-size: 10.5px; letter-spacing: .1em; color: var(--ink-4); text-transform: uppercase; }
.num-v { font-size: clamp(19px, 2.4vw, 27px); font-weight: 800; color: var(--grn); text-shadow: var(--glow-1); }

/* ─────────────── Sections ─────────────── */
.sec { padding: clamp(42px, 7vw, 84px) 0; }
.kicker { margin: 0 0 10px; font-size: 11px; letter-spacing: .14em; color: var(--ink-3); text-transform: uppercase; }
.sec h2 { margin: 0 0 20px; font-size: clamp(24px, 3.6vw, 40px); line-height: 1.14; font-weight: 800; letter-spacing: -.015em; color: var(--ink); }
.sec-lede { margin: 0 0 28px; max-width: 70ch; font-size: 13.5px; color: var(--ink-2); }

/* Utility cards */
.use-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.use { border: 1px solid var(--line); padding: 18px 16px; background: rgba(0,255,65,.025); transition: border-color .25s, background .25s; }
.use:hover { border-color: var(--line-2); background: rgba(0,255,65,.055); }
.use-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.use-key { font-size: 10.5px; letter-spacing: .12em; color: var(--ink-3); }
.tag { font-size: 9.5px; letter-spacing: .1em; padding: 2px 6px; border: 1px solid currentColor; }
.tag-live { color: var(--grn); text-shadow: var(--glow-1); }
.tag-building { color: var(--amber); }
.tag-planned { color: var(--ink-4); }
.use h3 { margin: 10px 0 8px; font-size: 16px; font-weight: 700; color: var(--ink); }
.use p { margin: 0; font-size: 12.5px; color: var(--ink-2); }
.use-disclaimer { margin-top: 18px; padding: 12px 14px; border: 1px solid rgba(255,176,0,.35); background: rgba(255,176,0,.05); font-size: 11.5px; }
.use-disclaimer b { color: var(--amber); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.step { border: 1px solid var(--line); padding: 20px 18px; background: rgba(0,255,65,.025); transition: border-color .25s, background .25s; }
.step:hover { border-color: var(--line-2); background: rgba(0,255,65,.05); }
.step-n { font-size: 11px; letter-spacing: .16em; color: var(--grn); }
.step h3 { margin: 8px 0; font-size: 16px; font-weight: 700; color: var(--ink); }
.step p { margin: 0; font-size: 12.5px; color: var(--ink-2); }

/* Tokenomics */
.tok-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(20px, 3vw, 40px); align-items: start; }
/* Grid items default to min-width:auto, so the `white-space: pre` ASCII chart
   would impose a min-content floor on the whole page that no media query can
   undo. Opt out explicitly. */
.tok-grid > * { min-width: 0; }
.tok-chart { border: 1px solid var(--line); padding: 18px 16px; background: #000; overflow-x: auto; min-width: 0; }
.tok-line { display: flex; align-items: baseline; gap: 10px; white-space: pre; font-size: 12px; }
.tok-key { color: var(--grn); font-weight: 700; letter-spacing: .04em; }
.tok-bar { color: var(--grn); letter-spacing: -.06em; text-shadow: var(--glow-1); }
.tok-val { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.tok-amt { color: var(--ink-4); font-size: 11px; font-variant-numeric: tabular-nums; margin-left: auto; }
.tok-note { margin: 2px 0 14px; padding-left: 2px; font-size: 10.5px; color: var(--ink-4); }
.tok-note:last-child { margin-bottom: 0; }

.tok-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 12.5px; }
.tok-table th, .tok-table td { text-align: left; padding: 9px 8px; border-bottom: 1px solid var(--line); }
.tok-table thead th { font-size: 10px; letter-spacing: .1em; color: var(--ink-4); text-transform: uppercase; }
.tok-table tbody th { color: var(--ink); font-weight: 700; }
.tok-table td { color: var(--ink-2); }
.tok-table td:last-child { text-align: right; }
.js .tok-table { display: none; }

.tok-side { border: 1px solid var(--line); padding: 18px; background: rgba(0,255,65,.03); }
.tok-supply { display: flex; flex-direction: column; gap: 3px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.tok-supply span { font-size: 10.5px; letter-spacing: .1em; color: var(--ink-4); text-transform: uppercase; }
.tok-supply b { font-size: 25px; font-weight: 800; color: var(--grn); text-shadow: var(--glow-1); }
.tok-feats { list-style: none; margin: 14px 0; padding: 0; display: grid; gap: 8px; font-size: 12px; color: var(--ink-2); }
.tok-feats li::before { content: '[x] '; color: var(--grn); }
.ca-box { padding-top: 14px; border-top: 1px solid var(--line); }
.ca-box .addr-row code { font-size: 11px; font-weight: 400; padding: 8px 9px; }
.ca-k { display: block; font-size: 10.5px; letter-spacing: .1em; color: var(--ink-4); text-transform: uppercase; margin-bottom: 7px; }


/* FAQ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 15px 34px 15px 0; font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); color: var(--grn); font-size: 18px; }
.faq details[open] summary::after { content: '−'; }
.faq summary:hover { color: var(--grn); }
.faq p { margin: 0 0 16px; max-width: 78ch; font-size: 13px; color: var(--ink-2); }

/* ─────────────── Footer ─────────────── */
footer { border-top: 1px solid var(--line); padding: 34px 0 40px; background: rgba(0, 12, 2, .5); }
.foot-top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.foot-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 12px; }
.foot-nav a { color: var(--ink-3); }
.foot-nav a:hover { color: var(--grn); }
.colophon { margin: 20px 0; font-size: 10.5px; line-height: 1.75; color: var(--ink-4); }
.foot-end { display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--line); font-size: 10.5px; color: var(--ink-4); }

/* ─────────────── Toast ─────────────── */
.toast {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 18px);
  z-index: 300; max-width: min(440px, calc(100vw - 32px));
  padding: 11px 16px; border: 1px solid var(--grn); background: #041004;
  color: var(--grn); font-size: 12.5px; box-shadow: var(--glow-2);
  opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s var(--ease);
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }
.toast.err { border-color: var(--red); color: #FFC9C4; background: #140404; box-shadow: 0 0 22px rgba(255,75,62,.25); }

/* ─────────────── Reveals (JS-gated so no-JS shows everything) ─────────────── */
.js .rv { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }
.js .rv.d1 { transition-delay: .07s; }
.js .rv.d2 { transition-delay: .14s; }
.js .rv.d3 { transition-delay: .21s; }

/* ─────────────── Responsive ─────────────── */
@media (max-width: 960px) {
  .use-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mh-nav { display: none; }
  .burger { display: flex; }
  .tok-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 14px; }
  .use-grid { grid-template-columns: 1fr; }
  .tok-line { font-size: 10px; }
  .fx-rain { opacity: .32; }
  /* Two flex lines of label would interleave once they wrap — stack instead. */
  .ca-lab { flex-direction: column; align-items: flex-start; gap: 3px; }
  /* Primary swap full width, the explorers two-up, instead of five stacked. */
  .ca-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .ca-actions .btn:first-child { grid-column: 1 / -1; }
}
@media (max-width: 420px) {
  .num-grid { grid-template-columns: 1fr; }
}

/* ─────────────── Reduced motion ─────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .js .rv { opacity: 1; transform: none; }
  .wire-track { animation: none; }
}

/* ─────────────── Print ─────────────── */
@media print {
  .fx, .wire, .sprog, .masthead, .toast, .boot { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
