/* ─────────────────────────────────────────────────────────────────────────
   milo // tty  —  HUD

   The previous version of this page computed its layout in CHARACTERS and
   printed one enormous <pre>. That is a beautiful idea and it was the wrong
   one: a character grid cannot scroll a sub-panel, cannot host a real chart,
   and shears the entire page the moment one glyph in one font advances by a
   different number of pixels than the rest.

   So the grid is gone. What is kept is everything that made it read as a
   terminal — monospace, a field of characters behind the content, hairline
   chamfered chrome, one accent — done with real elements that can overflow,
   scroll and hold an <svg>.

   Colour discipline: AMBER is chrome (frame, labels, gauges, active state).
   GREEN and RED are money and only money. If a green thing on this page is not
   a number that went up, it is a bug.
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --bg:     #05060B;
  --bg2:    #0A0C15;
  --panel:  rgba(10, 13, 22, .90);
  --fg:     #C3C9DC;   /* 11.0:1 on --bg */
  --dim:    #7B8299;   /*  5.1:1 — the AA floor, and the lowest thing here */
  --line:   #1D2333;   /* RULES ONLY. Never text. */
  --line2:  #2C344A;
  --acc:    #F2E23C;   /* chrome accent */
  --acc-d:  #7A7420;
  --green:  #3ECF8E;
  --red:    #F0736F;
  --amber:  #E0A94A;
  --cyan:   #5EC2D0;

  --mono: 'Cascadia Mono', 'Cascadia Code', Consolas, 'SF Mono', Menlo,
          'DejaVu Sans Mono', ui-monospace, monospace;
  --disp: 'Archivo Narrow', 'Roboto Condensed', 'Oswald', 'Arial Narrow',
          Impact, Haettenschweiler, var(--mono);

  --pad: 34px;      /* how far the content sits inside the HUD outline */
  --chamf: 26px;    /* corner cut on the outline */
  --fs: 12.5px;
}

@media (max-width: 1100px) { :root { --pad: 20px; --chamf: 18px; --fs: 12px; } }
@media (max-width: 700px)  { :root { --pad: 12px; --chamf: 12px; --fs: 11.5px; } }

* { box-sizing: border-box; }

/* No height:100% here. It turned <body> into a viewport-height scroll
   container of its own, and the page below the fold — the notice, the tail of
   the tape — became unreachable. The field is position:fixed and does not need
   a sized ancestor. */
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--mono);
  font-size: var(--fs);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── the field ───────────────────────────────────────────────────────────
   Fixed, behind everything, and completely inert. Kept very dark: at this
   text density anything brighter turns body copy into soup. */
.noise {
  position: fixed; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: .5;
}

.crt {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  background:
    repeating-linear-gradient(180deg, rgba(255,255,255,.014) 0 1px, transparent 1px 3px),
    /* Shallow on purpose. A deep vignette swallowed the character field over
       the whole lower half of the page, which read as the field simply not
       being drawn there. */
    radial-gradient(150% 110% at 50% 12%, transparent 62%, rgba(0,0,0,.42));
}

/* The chamfered outline is STROKED ONTO THE CANVAS above, not built from
   elements. The element version was two clipped layers — a hairline-coloured
   rectangle with a page-coloured one punched a pixel inside it — and that inner
   layer is an opaque rectangle covering the entire viewport, which painted the
   character field out completely. A stroked path has no fill to get in the way. */

/* ── edge gauges ─────────────────────────────────────────────────────────
   Real readings, not decoration: the left rail is equity against its own peak,
   the right is how much of the book is at work. */
.gauge {
  position: fixed; z-index: 3; top: 26vh; bottom: 26vh;
  width: 46px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 9.5px; color: var(--dim); letter-spacing: .06em;
  pointer-events: none;
}
.gauge-l { left: calc(var(--pad) * .38 + 8px); }
.gauge-r { right: calc(var(--pad) * .38 + 8px); }
.grail {
  flex: 1; width: 9px;
  border: 1px solid var(--line2);
  display: flex; flex-direction: column-reverse;
}
.grail s { display: block; width: 100%; background: var(--acc); text-decoration: none; height: 0; transition: height .5s ease; }
.gcap { font-style: normal; font-weight: 400; }
.glab { font-style: normal; writing-mode: vertical-rl; letter-spacing: .22em; color: var(--acc-d); font-size: 8.5px; }
.gauge-l .glab { transform: rotate(180deg); }
@media (max-width: 1420px) { .gauge { display: none; } }

/* ── page ────────────────────────────────────────────────────────────────── */
.wrap {
  position: relative; z-index: 3;
  max-width: 1720px;
  margin: 0 auto;
  padding: calc(var(--pad) + 8px) calc(var(--pad) + 8px) 76px;
}
@media (min-width: 1421px) { .wrap { padding-left: calc(var(--pad) + 62px); padding-right: calc(var(--pad) + 62px); } }

/* ── top rail ────────────────────────────────────────────────────────────
   Pinned. On a page whose whole point is that it is live, scrolling to read
   the tape should not take the clock and the staleness light off screen. */
.rail, .tape-strip {
  position: sticky; z-index: 6;
  background: color-mix(in oklab, var(--bg) 93%, transparent);
  backdrop-filter: blur(6px);
}
.rail { top: 0; padding-top: .4rem; }
.tape-strip { top: 2.1rem; }
.rail {
  display: flex; align-items: baseline; gap: .55rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
/* The neon head, beside the word. Height pinned to the brand text so the rail
   does not open up; the transparent variant melts into the page ground. */
.mark {
  height: 30px; width: auto;
  align-self: center; display: block;
}
@media (max-width: 700px) { .mark { display: none; } }

.brand {
  font-family: var(--disp);
  font-size: 1.45rem; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; color: #F6F7FB; line-height: 1;
}
.slash { color: var(--acc); }
.path  { color: var(--dim); }
.spacer { flex: 1; }

/* Mode badge. Amber for paper, red for live — live is the one that can lose
   real money, so it gets the colour that means "pay attention". */
.badge {
  font-size: .82em; letter-spacing: .16em; text-transform: uppercase;
  padding: .1rem .4rem; border: 1px solid currentColor; line-height: 1.4;
  color: var(--acc);
}
.badge.live { color: var(--red); }
.badge[hidden] { display: none; }

/* The coin, top right. This one IS a call to action, so it is the only lit
   thing in the rail — solid accent against a rail of dim text. It carries the
   address beside the label so a reader can eyeball it against an explorer,
   and it confirms in place so the click has an answer. */
.ca {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--acc); border: 1px solid var(--acc);
  color: #05060B; font: inherit; font-size: .82em; font-weight: 700;
  letter-spacing: .1em; padding: .18rem .6rem; cursor: pointer; border-radius: 2px;
  transition: filter .15s, background .15s, border-color .15s;
}
.ca:hover { filter: brightness(1.12); }
.ca .ca-label { color: #05060B; }
.ca .ca-addr { color: #05060B; opacity: .72; font-weight: 400; letter-spacing: .02em; }
.ca.done { background: var(--green); border-color: var(--green); }
.ca.done .ca-label, .ca.done .ca-addr { color: #05060B; }
.ca[hidden] { display: none; }

.paper-note {
  margin: 0; padding: .3rem 1rem .55rem;
  color: var(--dim); font-size: .92em;
  border-top: 1px dashed var(--line);
}
.paper-note[hidden] { display: none; }
.rail-r { color: var(--dim); font-size: .92em; }
.led { color: var(--dim); font-size: .92em; }
.led i { font-style: normal; margin-left: .35rem; }
.led.on  { color: var(--green); }
.led.old { color: var(--amber); }
.led.err { color: var(--red); }
html[data-motion="on"] .led.on { animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1 } 50% { opacity: .45 } }

/* ── ticker ──────────────────────────────────────────────────────────────── */
.tape-strip {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: .34rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.marquee { display: flex; width: max-content; }
html[data-motion="on"] .marquee { animation: slide 46s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0) } to { transform: translateX(-50%) } }
.mq { display: flex; align-items: center; white-space: nowrap; }
.mq b { font-weight: 400; color: var(--dim); }
.mq em { font-style: normal; color: #EFF1F8; margin: 0 .3rem; }
.mq .sep { color: var(--line2); padding: 0 .85rem; }
.mq .live b { color: var(--acc); }

/* ── grid ────────────────────────────────────────────────────────────────── */
.grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  grid-template-columns: 258px minmax(0, 1fr) 330px;
  align-items: start;
}
.col { display: flex; flex-direction: column; gap: 10px; min-width: 0; }

@media (max-width: 1240px) {
  .grid { grid-template-columns: 240px minmax(0, 1fr); }
  .col-r { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
  .col-r > .panel { flex: 1 1 300px; }
}
@media (max-width: 820px) {
  .grid { grid-template-columns: minmax(0, 1fr); }
  .col-r { flex-direction: column; }
  /* Source order puts the character column first, which on a phone buried the
     book, the curve and the positions under four panels of preamble. On one
     column the numbers lead and he follows. */
  .col-c { order: 1; }
  .col-r { order: 2; }
  .col-l { order: 3; }
}

/* ── panel ───────────────────────────────────────────────────────────────
   Chamfered top-right corner and four corner ticks. The ticks are the same
   registration marks the frame uses, at panel scale — they are what makes a
   plain rectangle read as instrumentation. */
.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(3px);
  min-width: 0;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 11px, 100% 100%, 0 100%);
}
.panel::before, .panel::after {
  content: '+'; position: absolute; color: var(--line2);
  font-size: 10px; line-height: 1; pointer-events: none;
}
.panel::before { left: 2px;  top: 2px; }
.panel::after  { right: 3px; bottom: 2px; }

.ph {
  display: flex; align-items: baseline; gap: .6rem;
  padding: .38rem .6rem .34rem 1rem;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(242,226,60,.05), transparent 60%);
}
.ph h2 {
  margin: 0; font-size: .96em; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--acc);
}
.ph h2::before { content: '~/'; color: var(--acc-d); }
.pm { margin-left: auto; color: var(--dim); font-size: .88em; white-space: nowrap; }

.pb { padding: .6rem 1rem .7rem; min-width: 0; }

/* Scrollers. A thin custom bar so an overflowing panel LOOKS overflowing —
   the platform bar is invisible on dark until you touch it, and a list that
   silently hides half its rows is worse than one that doesn't scroll. */
.scroll { overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; scrollbar-color: var(--line2) transparent; }
.scroll::-webkit-scrollbar { width: 8px; }
.scroll::-webkit-scrollbar-track { background: rgba(255,255,255,.02); }
.scroll::-webkit-scrollbar-thumb { background: var(--line2); border: 2px solid transparent; background-clip: content-box; }
.scroll::-webkit-scrollbar-thumb:hover { background: var(--acc-d); background-clip: content-box; }
.scroll:focus-visible { outline: 1px solid var(--acc); outline-offset: -2px; }

/* ── colour ──────────────────────────────────────────────────────────────── */
.up   { color: var(--green); }
.down { color: var(--red); }
.flat { color: var(--dim); }
.dim  { color: var(--dim); }
.hi   { color: #EFF1F8; }
.acc  { color: var(--acc); }
.cy   { color: var(--cyan); }
.warn { color: var(--amber); }

/* ── key/value ───────────────────────────────────────────────────────────── */
.kv { display: grid; grid-template-columns: auto 1fr; gap: .12rem .8rem; align-items: baseline; }
.kv dt, .kv .k { color: var(--dim); white-space: nowrap; }
.kv dd, .kv .v { margin: 0; text-align: right; color: #EFF1F8; font-variant-numeric: tabular-nums; }

/* ── cat ─────────────────────────────────────────────────────────────────── */
.p-cat .pb { padding-top: .8rem; }
/* The neon mark, straight-alpha so the glow melts into the panel ground.
   Static on purpose: mood is carried by the text under it, not the face. */
.cat-img {
  display: block; margin: .4rem auto 1rem; width: min(62%, 168px); height: auto;
}
.act  { margin: 0; color: #EFF1F8; }
.note { margin: .25rem 0 0; color: var(--dim); }

/* ── the book ────────────────────────────────────────────────────────────── */
.book { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; }
.figure { display: flex; align-items: flex-start; gap: .25rem; line-height: 1; }
.cur { color: var(--dim); font-size: 1.5rem; margin-top: .35rem; }
/* The unit after the number, sized to read as a label rather than a digit. */
.cur.suffix { align-self: flex-end; margin: 0 0 .45rem .45rem; font-size: 1.05rem; letter-spacing: .12em; }
.cur.suffix[hidden] { display: none; }
.big {
  font-family: var(--disp);
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  font-weight: 700; letter-spacing: -.02em; line-height: .86;
  color: #FFFFFF; font-variant-numeric: tabular-nums;
}
.book-kv { flex: 1 1 210px; min-width: 190px; }

/* ── chart ───────────────────────────────────────────────────────────────
   Smaller than it used to be on purpose. The curve is context for the number
   above it, not the headline — it had been eating half the centre column. */
.chartwrap { position: relative; padding: .5rem 3.9rem .5rem .2rem; }
.chart { display: block; width: 100%; height: 148px; overflow: visible; }
/* The UA `[hidden] { display:none }` rule does not reach into the SVG
   namespace, so the scrub marker sat pinned at x=0 on every load. */
.chart [hidden] { display: none; }
@media (max-width: 820px) { .chart { height: 124px; } }

.axis-y { position: absolute; inset: .5rem .35rem .5rem auto; right: .35rem; width: 3.4rem; pointer-events: none; }
.axis-y span {
  position: absolute; right: 0; transform: translateY(-50%);
  color: var(--dim); font-size: .85em; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.axis-y span::before {
  content: ''; position: absolute; right: 100%; top: 50%;
  width: .45rem; border-top: 1px solid var(--line2);
}
/* No side margins: this sits INSIDE .chartwrap, which already carries the
   axis gutter as padding. Repeating it here inset the last timestamp by a
   second 3.9rem and left it floating in the middle of the plot. */
.axis-x { position: relative; height: 1.1rem; margin: .2rem 0 0; }
.axis-x span {
  position: absolute; transform: translateX(-50%);
  color: var(--dim); font-size: .85em; white-space: nowrap;
}
.readout {
  position: absolute; z-index: 4; pointer-events: none;
  transform: translate(-50%, -125%);
  background: #0B0E18; border: 1px solid var(--line2);
  padding: .18rem .45rem; white-space: nowrap; font-size: .88em;
}
.readout b { font-weight: 400; color: #FFF; }

/* ── mind ────────────────────────────────────────────────────────────────── */
.p-mind .pb { max-height: 330px; padding-top: .35rem; }
.mind-row { padding: .42rem 0; border-bottom: 1px dashed var(--line); }
.mind-row:last-child { border-bottom: 0; }
.mind-row .mh { color: var(--dim); font-size: .86em; letter-spacing: .04em; }
.mind-row .mh .tag { color: var(--acc-d); }
.mind-row p { margin: .1rem 0 0; color: #E7EAF3; }
.mind-row.fresh p { color: #FFF; }
.mind-row.fresh .mh { color: var(--acc); }

/* ── the scan theater ───────────────────────────────────────────────────── */
.scan-row { padding: .5rem 0 .55rem; border-bottom: 1px dashed var(--line); }
.scan-row:last-child { border-bottom: 0; }
.scan-row .mh { color: var(--dim); font-size: .86em; letter-spacing: .04em; }
.scan-row .tag { color: var(--cyan); }
.scan-sym { color: #FFF; letter-spacing: .03em; }
.scan-line { margin: .14rem 0 0 1.1rem; color: var(--dim); font-size: .92em; }
.scan-verdict { margin: .2rem 0 0 1.1rem; letter-spacing: .05em; }
.scan-verdict.take { color: var(--green); }
.scan-verdict.pass { color: var(--dim); }
/* A scan that just landed plays as if the lines are being computed live —
   each line fades in after the one above it. Pure theater; the decision was
   already made in microseconds. */
@keyframes scanline { from { opacity: 0; transform: translateY(2px); } to { opacity: 1; transform: none; } }
.scan-row.reveal .sl { opacity: 0; animation: scanline .5s ease forwards; }
.scan-row.reveal .sl:nth-child(1) { animation-delay: .1s; }
.scan-row.reveal .sl:nth-child(2) { animation-delay: .7s; }
.scan-row.reveal .sl:nth-child(3) { animation-delay: 1.3s; }
.scan-row.reveal .sl:nth-child(4) { animation-delay: 2.0s; }

/* ── the window (talking to him) ────────────────────────────────────────── */
.talk-log { max-height: 15rem; overflow-y: auto; margin-bottom: .5rem; }
.talk-log:empty::after {
  content: 'he is at the window. he does not have to answer.';
  color: var(--dim); font-size: .92em;
}
.talk-row { padding: .3rem 0; }
.talk-row .talk-who {
  display: inline-block; min-width: 3.2rem; color: var(--dim);
  font-size: .84em; letter-spacing: .06em; vertical-align: top;
}
.talk-row.you .talk-who { color: var(--acc-d); }
.talk-row.him .talk-who { color: var(--cyan); }
.talk-row p { display: inline-block; margin: 0; max-width: calc(100% - 3.6rem); color: #E7EAF3; }
.talk-row.you p { color: var(--dim); }
.talk-form { display: flex; gap: .5rem; align-items: center; }
.talk-in {
  flex: 1; background: transparent; border: 1px dashed var(--line); color: #EFF1F8;
  font: inherit; font-size: .95em; padding: .4rem .55rem; border-radius: 2px;
}
.talk-in:focus { outline: none; border-color: var(--acc-d); }
.talk-go {
  background: transparent; border: 0; color: var(--acc); font: inherit;
  font-size: .95em; cursor: pointer; padding: .4rem .2rem;
}
.talk-go:hover { text-decoration: underline; }

/* ── posts (the timeline at home) ───────────────────────────────────────── */
.posts { max-height: 24rem; }
.post-row { padding: .5rem 0; border-bottom: 1px dashed var(--line); }
.post-row:last-child { border-bottom: 0; }
.post-row .mh { color: var(--dim); font-size: .86em; letter-spacing: .04em; }
.post-row .mh .tag { color: var(--acc-d); }
.post-row p { margin: .12rem 0 0; color: #EFF1F8; }
.post-x { float: right; color: var(--cyan); text-decoration: none; font-size: .9em; }
.post-x:hover { text-decoration: underline; }

/* ── positions ───────────────────────────────────────────────────────────
   One card per coin. Seven figures will not fit a table in this rail without
   truncating money, and a P&L cut from "+$52.50" to "+$5" is a different
   number, not a smaller one. */
.pos {
  padding: .4rem 0 .45rem;
  border-bottom: 1px dashed var(--line);
}
.pos:last-of-type { border-bottom: 0; }
.pos header {
  display: flex; align-items: baseline; gap: .5rem;
  margin-bottom: .18rem;
}
.pos header .sym { font-weight: 400; color: #FFF; }
.pos header .tot { margin-left: auto; font-variant-numeric: tabular-nums; }
.pos .mc { color: var(--dim); font-size: .92em; margin-bottom: .12rem; }
.pos .mc .arr { color: var(--line2); padding: 0 .1rem; }
.pos.faint { opacity: .72; }

/* Tighter than the panel default — five rows of it otherwise reads as a wall. */
.kv.pk { gap: 0 .8rem; font-size: .95em; }
.kv.pk .v { font-variant-numeric: tabular-nums; }

.p-pos .pb { max-height: 340px; padding: .35rem .7rem .5rem 1rem; }
.p-tape .pb { max-height: 300px; padding: .35rem .7rem .5rem 1rem; }
@media (max-width: 1240px) { .p-pos .pb, .p-tape .pb { max-height: 260px; } }

table.t { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
table.t th {
  position: sticky; top: 0; z-index: 1;
  background: #0B0E17;
  text-align: left; font-weight: 400; color: var(--dim);
  font-size: .84em; letter-spacing: .1em; text-transform: uppercase;
  padding: .18rem .3rem .28rem 0; border-bottom: 1px solid var(--line);
}
table.t td { padding: .24rem .3rem .24rem 0; border-bottom: 1px dashed rgba(29,35,51,.75); }
table.t tr:last-child td { border-bottom: 0; }
table.t tr:hover td { background: rgba(242,226,60,.045); }
.num { text-align: right; }
.sym { color: #FFF; }
/* display:block matters — a <span> is inline and silently ignores width and
   height, which rendered the whole size column as nothing at all. */
.meter { display: block; width: 100%; height: 7px; background: rgba(255,255,255,.05); position: relative; }
.meter i { position: absolute; inset: 0 auto 0 0; display: block; }
.meter i.up { background: var(--green); }
.meter i.down { background: var(--red); }
.meter i.flat { background: var(--line2); }

/* ── desk ────────────────────────────────────────────────────────────────── */
.expo { margin: .55rem 0 .1rem; }
.expo .lbl { display: flex; justify-content: space-between; color: var(--dim); }
.bar-o { height: 9px; border: 1px solid var(--line2); margin-top: .22rem; }
.bar-o i { display: block; height: 100%; background: var(--cyan); transition: width .5s ease; }
.halt { margin: .6rem 0 0; color: var(--red); border-left: 2px solid var(--red); padding-left: .5rem; }
hr.sep { border: 0; border-top: 1px dashed var(--line); margin: .55rem 0; }

/* ── wallet ──────────────────────────────────────────────────────────────── */
.addr { color: var(--cyan); word-break: break-all; }

.empty { color: var(--dim); }

/* ── bottom bar ──────────────────────────────────────────────────────────── */
.bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  display: flex; align-items: center; gap: .1rem;
  padding: .1rem .9rem;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  border-top: 1px solid var(--line2);
  backdrop-filter: blur(8px);
}
.bstat { color: var(--dim); white-space: nowrap; }
.bprog { color: var(--acc); margin-left: .5rem; letter-spacing: -.05em; }
.grow { flex: 1; }
.tbtn {
  appearance: none; background: none; border: 0; cursor: pointer;
  font: inherit; color: var(--dim);
  /* 44px tall for thumbs (WCAG 2.5.8) without the text growing to match. */
  padding: .55rem .4rem; min-height: 44px; text-decoration: none;
}
.tbtn:hover { color: var(--fg); }
.tbtn[aria-pressed="true"], .tbtn.on { color: var(--acc); }
.tbtn:focus-visible { outline: 1px solid var(--acc); outline-offset: -2px; }
@media (max-width: 700px) { .bstat, .bprog { display: none; } }

.skip {
  position: fixed; top: -60px; left: 8px; z-index: 40;
  background: var(--acc); color: #12100A; padding: .6rem .9rem; font-weight: 700;
}
.skip:focus { top: 8px; }

/* ── motion ──────────────────────────────────────────────────────────────── */
html[data-motion="off"] .crt { display: none; }
html[data-motion="off"] .marquee { animation: none; }
@media (prefers-reduced-motion: reduce) {
  .marquee, .led { animation: none !important; }
  .grail s, .bar-o i { transition: none; }
}
