/* ═══════════════════════════════════════════════════════════════════
   On the Face of It
   Ground: unlit bench leather. Accent: brass — and brass means right,
   so the verdict never collides with the Lords' red.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* ground */
  --ink:      #0A120E;
  --bench:    #101C16;
  --bench-hi: #16271F;
  --rule:     #21362B;
  --rule-hi:  #2E4A3B;

  /* chambers — informational, never evaluative */
  --commons:  #1E9E63;
  --lords:    #C3123F;
  --chamber:  var(--commons);

  /* verdict */
  --brass:    #C9A227;
  --brass-lo: #8E7318;
  --wrong:    #C0566A;

  /* text */
  --paper:    #EDE9DD;
  --mute:     #8FA098;
  --faint:    #647268;

  --r:   3px;
  --r-lg: 5px;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body:    "Archivo", "Helvetica Neue", Arial, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", Consolas, monospace;

  --step: clamp(0.9rem, 0.82rem + 0.4vw, 1rem);
  --gut: clamp(1rem, 0.6rem + 2vw, 2rem);
}

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

/* Any author `display` rule outranks the UA stylesheet's [hidden] { display:
   none }, which silently turns the hidden attribute into a no-op. Settle it
   once, here, rather than remembering a [hidden] rule for every block. */
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 400 var(--step)/1.55 var(--f-body);
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  /* faint vertical light, like a chamber lit from the lantern above */
  background-image:
    radial-gradient(120% 60% at 50% -10%, #17281F 0%, transparent 60%);
  background-attachment: fixed;
}

.wrap { width: min(1080px, 100% - var(--gut) * 2); margin-inline: auto; }

h1, h2, h3 { font-family: var(--f-display); font-weight: 800; line-height: 1.1;
             font-variation-settings: "SOFT" 0, "WONK" 1; margin: 0; letter-spacing: -0.015em; }

a { color: var(--paper); text-underline-offset: 3px; text-decoration-color: var(--rule-hi); }
a:hover { text-decoration-color: var(--brass); }

:where(button, input, [tabindex]):focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--brass); color: #12100A; padding: .6rem 1rem; font-weight: 600;
}
.skip:focus { left: 0; }

/* ─────────────────────────────────────────────────────── masthead ── */
.masthead {
  border-bottom: 1px solid var(--rule);
  background: linear-gradient(var(--bench), var(--ink));
}
.masthead__in { display: flex; align-items: center; justify-content: space-between;
                gap: 1rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; }
.portcullis { width: 26px; height: 30px; color: var(--brass); flex: none; }
.brand__text { display: grid; }
.brand__text b { font-family: var(--f-display); font-weight: 800; font-size: 1.12rem;
                 letter-spacing: -0.02em; font-variation-settings: "WONK" 1; }
.brand__text i { font-style: normal; font-family: var(--f-mono); font-size: .66rem;
                 letter-spacing: .16em; text-transform: uppercase; color: var(--faint); }
.masthead__meta { margin: 0; font-family: var(--f-mono); font-size: .66rem;
                  letter-spacing: .1em; text-transform: uppercase; color: var(--faint); }

/* ───────────────────────────────────────────────────────── screens ── */
.screen { padding: clamp(1.75rem, 1rem + 3vw, 3.25rem) 0 5rem; }

.lede { max-width: 46ch; margin-bottom: clamp(1.75rem, 3vw, 2.75rem); }
.lede h1 { font-size: clamp(2.1rem, 1.4rem + 3.4vw, 3.4rem); }
.lede h1::after {
  content: ""; display: block; width: 3.5rem; height: 2px;
  background: var(--brass); margin: 1.1rem 0 1.1rem;
}
.lede p { color: var(--mute); margin: 0; max-width: 44ch; }

.eyebrow { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .18em;
           text-transform: uppercase; color: var(--faint); margin: 0 0 .5rem; }

/* ───────────────────────────────────────────────────────── presets ── */
.presets { margin-bottom: 1.75rem; }
.presets__label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .18em;
                  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: .6rem; }
.presets__row { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
  font: 500 .82rem/1 var(--f-body);
  padding: .52rem .8rem; border-radius: 100px; cursor: pointer;
  background: var(--bench); color: var(--paper);
  border: 1px solid var(--rule);
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover { border-color: var(--rule-hi); background: var(--bench-hi); }
.chip[aria-pressed="true"] { background: var(--brass); border-color: var(--brass); color: #14110A; font-weight: 600; }

/* ─────────────────────────────────────────────────────── setup grid ── */
.setup-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  align-items: start;
}
.panel {
  background: var(--bench);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 1.15rem 1.15rem 1.3rem;
}
.panel--wide { grid-column: 1 / -1; }
.panel__head { margin-bottom: 1rem; }
.panel__head h2 { font-size: 1.18rem; display: flex; align-items: baseline; gap: .6rem; }
.panel__no { font-family: var(--f-mono); font-size: .68rem; font-weight: 500;
             color: var(--brass); letter-spacing: .1em; }
.panel__hint { margin: .35rem 0 0; color: var(--faint); font-size: .82rem; }

.field { border: 0; padding: 0; margin: 0 0 1.15rem; min-width: 0; }
.field:last-child { margin-bottom: 0; }
.field legend {
  font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--mute); padding: 0; margin-bottom: .55rem;
  display: flex; align-items: center; gap: .5rem; width: 100%;
}
.legend__note { font-family: var(--f-body); letter-spacing: 0; text-transform: none;
                color: var(--faint); font-size: .74rem; }
.field__note { margin: .5rem 0 0; font-size: .78rem; color: var(--faint); }
.mini {
  font: 500 .64rem/1 var(--f-mono); letter-spacing: .08em; text-transform: uppercase;
  background: none; border: 1px solid var(--rule); color: var(--mute);
  padding: .22rem .42rem; border-radius: 2px; cursor: pointer;
}
.mini:hover { border-color: var(--brass); color: var(--brass); }

/* segmented control */
.seg { display: flex; border: 1px solid var(--rule); border-radius: var(--r); overflow: hidden; }
.seg--wrap { flex-wrap: wrap; }
.seg button {
  flex: 1 1 auto; min-width: 3.4rem;
  font: 500 .82rem/1 var(--f-body); padding: .55rem .5rem; cursor: pointer;
  background: transparent; color: var(--mute); border: 0;
  border-right: 1px solid var(--rule);
  transition: background .15s, color .15s;
}
.seg button:last-child { border-right: 0; }
.seg button:hover { background: var(--bench-hi); color: var(--paper); }
.seg button[aria-checked="true"] { background: var(--brass); color: #14110A; font-weight: 600; }

/* stacked radio rows */
.stack { display: grid; gap: .3rem; }
.stack button {
  text-align: left; cursor: pointer; background: transparent; color: var(--mute);
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: .5rem .65rem; font: 500 .82rem/1.3 var(--f-body);
  display: flex; align-items: baseline; gap: .5rem;
  transition: border-color .15s, color .15s, background .15s;
}
.stack button:hover { border-color: var(--rule-hi); color: var(--paper); }
.stack button[aria-checked="true"] {
  border-color: var(--brass); color: var(--paper); background: #1A1A10;
}
.stack button[aria-checked="true"]::before { content: "▸"; color: var(--brass); }
.stack button:not([aria-checked="true"])::before { content: "▸"; color: transparent; }
.stack small { display: block; color: var(--faint); font-weight: 400; font-size: .72rem; }

/* checkbox pills */
.checks { display: flex; flex-wrap: wrap; gap: .35rem; }
.check {
  display: inline-flex; align-items: center; gap: .42rem; cursor: pointer;
  border: 1px solid var(--rule); border-radius: 100px;
  padding: .38rem .7rem .38rem .55rem;
  font: 500 .78rem/1 var(--f-body); color: var(--mute);
  transition: border-color .15s, color .15s, background .15s;
  user-select: none;
}
.check:hover { border-color: var(--rule-hi); color: var(--paper); }
.check input { position: absolute; opacity: 0; width: 0; height: 0; }
.check__dot {
  width: .62rem; height: .62rem; border-radius: 50%; flex: none;
  background: var(--swatch, var(--rule-hi));
  box-shadow: inset 0 0 0 1px #0004;
  opacity: .45; transition: opacity .15s;
}
.check:has(input:checked) { border-color: var(--brass); color: var(--paper); background: #1A1A10; }
.check:has(input:checked) .check__dot { opacity: 1; }
.check:has(input:focus-visible) { outline: 2px solid var(--brass); outline-offset: 2px; }
.check__n { font-family: var(--f-mono); font-size: .68rem; color: var(--faint); }

/* 23 parties is a long list — let it scroll rather than push the page down. */
.checks--party { max-height: 11.5rem; overflow-y: auto; padding: 2px; align-content: start; }
.checks--party::-webkit-scrollbar { width: 8px; }
.checks--party::-webkit-scrollbar-thumb { background: var(--rule-hi); border-radius: 4px; }
.checks--party { scrollbar-width: thin; scrollbar-color: var(--rule-hi) transparent; }

.slice-grid { display: grid; gap: 1.15rem 1.5rem;
              grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.field--span { grid-column: 1 / -1; }

/* modes */
.modes { display: grid; gap: .45rem; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); }
.mode {
  text-align: left; cursor: pointer; background: transparent;
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: .7rem .8rem; color: var(--paper);
  transition: border-color .15s, background .15s;
}
.mode:hover { border-color: var(--rule-hi); background: var(--bench-hi); }
.mode[aria-checked="true"] { border-color: var(--brass); background: #1A1A10; }
.mode__flow {
  font-family: var(--f-mono); font-size: .64rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--faint); display: block; margin-bottom: .28rem;
}
.mode[aria-checked="true"] .mode__flow { color: var(--brass); }
.mode__name { font-weight: 600; font-size: .92rem; display: block; }
.mode__sub { color: var(--faint); font-size: .76rem; display: block; }
.mode[disabled] { opacity: .38; cursor: not-allowed; }

/* levels */
.levels { display: grid; gap: .3rem; grid-template-columns: repeat(2, 1fr); }
.level {
  cursor: pointer; background: transparent; border: 1px solid var(--rule);
  border-radius: var(--r); padding: .5rem .4rem; color: var(--mute);
  font: 600 .8rem/1.2 var(--f-body); text-align: center;
  transition: border-color .15s, color .15s, background .15s;
}
.level:hover { border-color: var(--rule-hi); color: var(--paper); }
.level[aria-checked="true"] { border-color: var(--brass); color: var(--paper); background: #1A1A10; }
.level__bars { display: flex; gap: 2px; justify-content: center; margin-bottom: .3rem; }
.level__bars i { width: 3px; height: 9px; background: var(--rule-hi); border-radius: 1px; }
.level[aria-checked="true"] .level__bars i.on { background: var(--brass); }
.level__bars i.on { background: var(--mute); }

/* ────────────────────────────────────────────────────────── launch ── */
.launch {
  position: sticky; bottom: 0; z-index: 20; margin-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
  background: #0C160FEE; backdrop-filter: blur(8px);
  border: 1px solid var(--rule); border-radius: var(--r-lg);
  padding: .85rem 1rem;
}
.launch__count b { font-family: var(--f-mono); font-size: 1.5rem; font-weight: 600;
                   color: var(--brass); margin-right: .45rem; }
.launch__count span { color: var(--mute); font-size: .85rem; }
.launch__actions { display: flex; gap: .5rem; }
.launch__warn { flex: 1 0 100%; margin: 0; color: var(--wrong); font-size: .8rem; }
.launch__warn.is-note { color: var(--faint); }   /* explanation, not a problem */

.btn {
  font: 600 .88rem/1 var(--f-body); cursor: pointer;
  padding: .72rem 1.1rem; border-radius: var(--r);
  background: var(--bench-hi); color: var(--paper); border: 1px solid var(--rule-hi);
  transition: background .15s, border-color .15s, color .15s, transform .08s;
}
.btn:hover { border-color: var(--mute); }
.btn:active { transform: translateY(1px); }
.btn--go { background: var(--brass); border-color: var(--brass); color: #14110A; }
.btn--go:hover { background: #DBB331; border-color: #DBB331; }
.btn--ghost { background: transparent; border-color: var(--rule); color: var(--mute); }
.btn--ghost:hover { color: var(--paper); }
.btn[disabled] { opacity: .4; cursor: not-allowed; }
.btn kbd { font: 500 .78em/1 var(--f-mono); opacity: .6; margin-left: .3rem; }

.linkish {
  background: none; border: 0; padding: 0; cursor: pointer; color: var(--mute);
  font: 500 .78rem/1 var(--f-body); text-decoration: underline;
  text-underline-offset: 3px; text-decoration-color: var(--rule-hi);
}
.linkish:hover { color: var(--brass); text-decoration-color: var(--brass); }

/* ═══════════════════════════════════════════════════════════ PLAY ═══ */
.screen--play { padding-top: 0; }

.tally { border-bottom: 1px solid var(--rule); background: var(--bench); position: relative; }
.tally__in { display: flex; align-items: center; gap: 1rem; padding: .55rem 0; flex-wrap: wrap; }
.tally__quit {
  font: 500 .66rem/1 var(--f-mono); letter-spacing: .1em; text-transform: uppercase;
  background: none; border: 1px solid var(--rule); color: var(--faint);
  padding: .32rem .5rem; border-radius: 2px; cursor: pointer; flex: none;
}
.tally__quit:hover { color: var(--paper); border-color: var(--rule-hi); }

.pips { display: flex; gap: 3px; flex: 1 1 6rem; min-width: 0; overflow: hidden; }
.pip { width: 7px; height: 16px; border-radius: 1px; background: var(--rule); flex: none; }
.pip--y { background: var(--brass); }
.pip--n { background: var(--wrong); opacity: .8; }

.tally__stats { display: flex; gap: 1.1rem; margin: 0; flex: none; }
.tally__stats div { text-align: right; }
.tally__stats dt { font-family: var(--f-mono); font-size: .58rem; letter-spacing: .14em;
                   text-transform: uppercase; color: var(--faint); }
.tally__stats dd { margin: 0; font-family: var(--f-mono); font-size: .95rem; font-weight: 600; }

.clock { height: 2px; background: transparent; }
.clock span { display: block; height: 100%; width: 100%; background: var(--brass);
              transform-origin: left; }
.clock.run span { animation: drain var(--dur, 20s) linear forwards; }
@keyframes drain { to { transform: scaleX(0); } }

/* stage */
.stage { padding-top: clamp(1.25rem, 3vw, 2.25rem); max-width: 640px; text-align: center;
         padding-bottom: 4rem; }
.qcount { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .18em;
          text-transform: uppercase; color: var(--faint); margin: 0 0 .45rem; }
.qtext { font-size: clamp(1.25rem, 1rem + 1.4vw, 1.7rem); margin-bottom: 1.25rem; }

.prompt { margin-bottom: 1.4rem; }
.portrait { margin: 0 auto; width: min(264px, 74vw); }
.portrait img {
  display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--rule-hi);
  background: var(--bench-hi);
  box-shadow: 0 10px 34px -14px #000A;
}
.portrait.revealed img { border-color: var(--chamber); }

/* the annunciator — the estate's screens, resolved on reveal */
.annunciator {
  margin-top: .55rem; min-height: 3.4rem;
  border-top: 2px solid var(--chamber);
  background: linear-gradient(#0000, color-mix(in srgb, var(--chamber) 9%, transparent));
  padding: .5rem .6rem .6rem; border-radius: 0 0 var(--r) var(--r);
  text-align: left;
}
.annunciator__wait {
  font-family: var(--f-mono); font-size: .68rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--faint);
}
.annunciator__wait::before { content: "▍"; color: var(--chamber); margin-right: .4rem;
                             animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.annunciator__body { display: grid; gap: .1rem; }
.annunciator__body b {
  font-family: var(--f-display); font-weight: 800; font-size: 1rem; line-height: 1.2;
  font-variation-settings: "WONK" 1;
}
.annunciator__body span { font-family: var(--f-mono); font-size: .7rem; color: var(--mute);
                          letter-spacing: .04em; }
.annunciator__body span:empty { display: none; }

.prompt__text {
  font-family: var(--f-display); font-weight: 800; font-size: clamp(1.5rem, 1.1rem + 2vw, 2.2rem);
  font-variation-settings: "WONK" 1; margin: .5rem 0 0; line-height: 1.15;
}
.prompt__sub { font-family: var(--f-mono); font-size: .72rem; color: var(--mute);
               display: block; margin-top: .35rem; letter-spacing: .06em; }

/* answers */
.answers { display: grid; gap: .45rem; }
.answers--faces { grid-template-columns: repeat(auto-fit, minmax(96px, 1fr)); }

.opt {
  display: flex; align-items: center; gap: .7rem; text-align: left; width: 100%;
  cursor: pointer; background: var(--bench); color: var(--paper);
  border: 1px solid var(--rule); border-radius: var(--r);
  padding: .68rem .8rem; font: 500 .92rem/1.25 var(--f-body);
  transition: border-color .12s, background .12s;
}
.opt:hover:not([disabled]) { border-color: var(--rule-hi); background: var(--bench-hi); }
.opt__key {
  font: 500 .68rem/1 var(--f-mono); color: var(--faint); flex: none;
  border: 1px solid var(--rule); border-radius: 2px; padding: .22rem .32rem; min-width: 1.35rem;
  text-align: center;
}
.opt__sub { display: block; font-size: .74rem; color: var(--faint); font-weight: 400; }

.opt--face { display: block; padding: 0; overflow: hidden; border-radius: var(--r); }
.opt--face img { display: block; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; }
.opt--face .opt__key { position: absolute; margin: .3rem; background: #0009; }
.opt--face { position: relative; }

/* verdict states */
.opt--right { border-color: var(--brass); background: #1D1A0D; }
.opt--right .opt__key { border-color: var(--brass); color: var(--brass); }
.opt--wrong { border-color: var(--wrong); background: #1E1214; color: var(--mute); }
.opt--wrong .opt__label { text-decoration: line-through; text-decoration-thickness: 1px; }
.opt[disabled] { cursor: default; }
.opt[disabled]:not(.opt--right):not(.opt--wrong) { opacity: .42; }

/* type box */
.typebox { display: grid; gap: .5rem; text-align: left; }
.typebox__label { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .16em;
                  text-transform: uppercase; color: var(--mute); }
.typebox__row { display: flex; gap: .45rem; }
.typebox input {
  flex: 1; min-width: 0;
  background: var(--bench); border: 1px solid var(--rule-hi); border-radius: var(--r);
  color: var(--paper); padding: .72rem .8rem;
  font: 500 1rem/1 var(--f-body);
}
.typebox input:focus { border-color: var(--brass); outline: none; }
.typebox input::placeholder { color: var(--faint); }
.typebox__aux { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; min-height: 1.2rem; }
.typebox__hint { font-family: var(--f-mono); font-size: .76rem; color: var(--brass);
                 letter-spacing: .1em; }

/* verdict */
.verdict { margin-top: 1.1rem; text-align: left; }
.verdict__line {
  font-family: var(--f-mono); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; margin: 0 0 .3rem;
}
.verdict--y .verdict__line { color: var(--brass); }
.verdict--n .verdict__line { color: var(--wrong); }
.verdict__detail { margin: 0 0 .9rem; color: var(--mute); font-size: .88rem; }
.verdict__detail b { color: var(--paper); font-weight: 600; }

/* ═════════════════════════════════════════════════════════ RESULT ═══ */
.result-head { margin-bottom: 1.5rem; }
.result-head h2 { font-size: clamp(1.9rem, 1.4rem + 2.4vw, 2.8rem); }

.scoreboard {
  display: grid; gap: 1px; background: var(--rule);
  border: 1px solid var(--rule); border-radius: var(--r-lg); overflow: hidden;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  margin-bottom: 1.75rem;
}
.tile { background: var(--bench); padding: 1.05rem 1rem; }
.tile dt { font-family: var(--f-mono); font-size: .62rem; letter-spacing: .16em;
           text-transform: uppercase; color: var(--faint); margin-bottom: .3rem; }
.tile dd { margin: 0; font-family: var(--f-mono); font-size: 1.75rem; font-weight: 600;
           line-height: 1; }
.tile dd small { font-size: .8rem; color: var(--mute); font-weight: 400; }
.tile--hero dd { color: var(--brass); }

.misses { margin-bottom: 1.75rem; }
.misses h3 { font-size: 1.1rem; margin-bottom: .75rem; }
.misses__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem;
                grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.miss { display: flex; align-items: center; gap: .6rem; background: var(--bench);
        border: 1px solid var(--rule); border-radius: var(--r); padding: .4rem .55rem; }
.miss img { width: 34px; height: 34px; border-radius: 2px; flex: none; object-fit: cover; }
.miss b { font-size: .84rem; font-weight: 600; display: block; }
.miss span { font-size: .72rem; color: var(--faint); display: block;
             overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.miss__you { font-family: var(--f-mono); font-size: .68rem; color: var(--wrong); }

.result-actions { display: flex; gap: .5rem; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════ misc ═══ */
.foot { border-top: 1px solid var(--rule); padding: 1.5rem 0 2.5rem; color: var(--faint);
        font-size: .76rem; }
.foot p { margin: 0 0 .35rem; max-width: 70ch; }

.boot { position: fixed; inset: 0; display: grid; place-content: center; gap: .8rem;
        justify-items: center; background: var(--ink); z-index: 90;
        font-family: var(--f-mono); font-size: .74rem; letter-spacing: .18em;
        text-transform: uppercase; color: var(--faint); }
.boot span { width: 26px; height: 26px; border: 2px solid var(--rule);
             border-top-color: var(--brass); border-radius: 50%;
             animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(1turn); } }

.fade-in { animation: fade .28s ease-out both; }
@keyframes fade { from { opacity: 0; transform: translateY(5px); } }

@media (max-width: 560px) {
  .tally__stats { gap: .8rem; }
  .levels { grid-template-columns: 1fr 1fr; }
  .launch { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .clock.run span { animation: none; transform: scaleX(0); transition: transform var(--dur) linear !important; }
}
