:root {
  --bg: #0a0c10; --bg2: #0d1016; --line: #1c2330; --line2: #2a3346; --seg-off: #45516b;
  --fg: #d9dee8; --muted: #78829a; --hl: #5eead4;
  --agent: #34d399; --wrapper: #f5b942; --cronjob: #f87171;
  --serif: "Instrument Serif", Georgia, serif;
  --mono: "IBM Plex Mono", "SF Mono", ui-monospace, Menlo, monospace;
  /* spacing scale — 4px base */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px; --s6: 32px; --s7: 48px; --s8: 72px;
  --ink: #eef1f6; --bgtop: #0c0f15; --playbar: #26708a; --playbar-live: #3a8fa8;
}
.botnote { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
:root[data-theme="light"] {
  --bg: #f4f5f8; --bg2: #ffffff; --line: #e2e6ee; --line2: #c7cfdd; --seg-off: #a8b4c8;
  --fg: #26303f; --muted: #5c6a80; --hl: #0d9488;
  --agent: #0a9b6d; --wrapper: #a96504; --cronjob: #d23c3c;
  --hover: #e9edf4; --scan: rgba(0,0,0,0.010); --ink: #131b2a; --bgtop: #eceef3;
  --playbar: #7f96b5; --playbar-live: #5d7fa6;
}
:root { --hover: #121826; --scan: rgba(255,255,255,0.012); }
.themetog {
  background: none; border: 1px solid var(--line2); color: var(--muted);
  font: inherit; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  border-radius: 2px; padding: 4px 10px; cursor: pointer; margin-left: 18px;
}
.themetog:hover { color: var(--hl); border-color: var(--hl); }

.skip {
  position: absolute; left: -9999px; top: 0; background: var(--hl); color: var(--bg);
  padding: var(--s2) var(--s4); z-index: 10; border-radius: 2px;
}
.skip:focus { left: var(--s4); }
:focus-visible { outline: 2px solid var(--hl); outline-offset: 2px; border-radius: 2px; }
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background:
    repeating-linear-gradient(0deg, transparent 0 2px, var(--scan) 2px 4px),
    linear-gradient(180deg, var(--bgtop) 0%, var(--bg) 340px);
  background-color: var(--bg);
  color: var(--fg);
  font: 400 16px/1.6 var(--mono);
  padding: 20px 20px 80px; overflow-x: hidden;
}
main { max-width: 960px; margin: 0 auto; }
a { color: var(--hl); text-underline-offset: 3px; }
::selection { background: var(--hl); color: var(--bg); }

/* nav — terminal titlebar */
.top {
  display: flex; justify-content: space-between; align-items: baseline;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.logo { font-weight: 600; font-size: 14px; letter-spacing: .3px; color: var(--fg); }
.logo .vio { color: var(--hl); }
.logo .dim { color: var(--muted); font-weight: 400; }
.navlinks a { color: var(--muted); text-decoration: none; margin-left: 22px; font-size: 12.5px; text-transform: uppercase; letter-spacing: 1.2px; }
.navlinks a:hover { color: var(--hl); }

/* hero — poster, not dashboard */
.hero { padding: 72px 0 36px; }
.kicker { color: var(--muted); font-size: 13px; letter-spacing: .5px; margin-bottom: 18px; }
h1 {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(46px, 9.5vw, 96px); line-height: .98; letter-spacing: -1px;
  color: var(--ink); text-wrap: balance;
}
h1 em { font-style: normal; }
.hl {
  color: var(--hl); font-style: italic;
  text-decoration: underline wavy; text-decoration-thickness: 2px; text-underline-offset: 10px;
}
.sub { margin-top: var(--s5); color: var(--muted); max-width: 58ch; font-size: 15px; }
.heroctas { margin-top: var(--s6); display: flex; align-items: center; gap: var(--s5); flex-wrap: wrap; }
.heroctas .cta { margin-top: 0; }
.ghost { color: var(--muted); font-size: 14px; }
.ghost:hover { color: var(--hl); }

/* counts — data strip */
.counts {
  margin-top: 34px; display: flex; gap: 0; border-block: 1px solid var(--line);
  font-variant-numeric: tabular-nums;
}
.counts .kpi { padding: 14px 26px 14px 0; margin-right: 26px; border-right: 1px solid var(--line); }
.counts .kpi:last-child { border-right: 0; margin-right: 0; }
.counts .n { display: block; font-size: 34px; font-weight: 600; letter-spacing: -1px; line-height: 1.1; color: var(--fg); }
.counts .kpi.good .n { color: var(--agent); }
.counts .kpi.bad .n { color: var(--cronjob); }
.counts .l { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; }

/* scroll reveal */
/* Reveal-on-scroll is progressive enhancement, gated on html.reveal. The
   class is set inline in <head> and REMOVED by an inline watchdog if the
   first screen has not painted in time — on a slow network the page must
   never be a blank screen waiting for a script that is still in flight.
   Duration is 320ms on purpose: app.js is a module with an import, so on a
   phone a longer fade stacked on top of two network round-trips left the
   hero blank for well over a second. The first screen no longer waits for
   the module at all (see the inline reveal at the end of index.html) and
   what is left is a fade short enough to read as arrival, not as loading. */
html.reveal .rv { opacity: 0; transform: translateY(10px); transition: opacity .32s ease, transform .32s ease; }
html.reveal .rv.in, .rv { opacity: 1; transform: none; }

/* ticker — live status line */
.ticker {
  overflow: hidden; border-block: 1px solid var(--line);
  padding: 8px 0; margin: 26px 0 0; white-space: nowrap; position: relative;
  display: flex; align-items: center; gap: 14px;
}
.live {
  flex: none; font-size: 10.5px; letter-spacing: 1.6px; color: var(--cronjob);
  display: inline-flex; align-items: center; gap: 6px; padding-right: 14px; border-right: 1px solid var(--line);
}
.live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cronjob); animation: pulse 1.6s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
.tickerscroll { overflow: hidden; flex: 1; white-space: nowrap; }
.ticker-track { display: inline-block; animation: marquee 32s linear infinite; color: var(--muted); font-size: 12.5px; }
.ticker-track span { margin-right: 40px; }
.ticker-track b { font-weight: 600; }
.ticker-track b.a { color: var(--agent); } .ticker-track b.w { color: var(--wrapper); } .ticker-track b.c { color: var(--cronjob); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* sections — editorial rules, not cards */
section, .section { margin-top: 56px; }
.sechead { display: flex; align-items: baseline; gap: 14px; border-bottom: 1px solid var(--line2); padding-bottom: 10px; margin-bottom: 18px; }
.sechead .idx { font-size: 11.5px; color: var(--muted); letter-spacing: 2px; }
h2 { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 30px; letter-spacing: -.5px; color: var(--ink); }
.sechead .note { margin-left: auto; font-size: 12px; color: var(--muted); }
.muted { color: var(--muted); }
.small { font-size: 12.5px; margin-top: 12px; }

/* rubric bar — the whole test in one strip */
.rubricbar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; overflow: hidden; margin-bottom: var(--s4); }
.rq { background: var(--bg2); padding: var(--s4); transition: background .2s; }
.rq:hover { background: var(--hover); }
.rq i { display: block; font-style: normal; font-size: 10px; color: var(--hl); letter-spacing: 1.6px; }
.rq b { display: block; margin-top: var(--s2); font-size: 13px; letter-spacing: 1.2px; color: var(--fg); }
.rq span { display: block; margin-top: 3px; font-size: 11.5px; color: var(--muted); }
@media (max-width: 640px) { .rubricbar { grid-template-columns: repeat(2, 1fr); } .rubricbar .rq:last-child { grid-column: 1 / -1; } }

/* the tape wall — 30 products, one glance */
.tapewall { display: grid; grid-template-columns: repeat(auto-fill, minmax(108px, 1fr)); gap: 3px; margin-bottom: var(--s4); }
.tcellw {
  display: block; padding: 9px 10px; border-radius: 2px; border: 1px solid var(--line2);
  font-size: 10px; text-transform: uppercase; letter-spacing: .8px; text-decoration: none;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--muted);
  transition: filter .15s, transform .15s;
}
.tcellw:hover { filter: brightness(1.45); transform: translateY(-1px); }
.tcellw.trace_verified { color: var(--hl); border-color: color-mix(in srgb, var(--hl) 45%, transparent); background: color-mix(in srgb, var(--hl) 12%, transparent); }
.tcellw.operator_inspectable { color: var(--agent); border-color: color-mix(in srgb, var(--agent) 40%, transparent); background: color-mix(in srgb, var(--agent) 9%, transparent); }
.tcellw.docs_claimed { color: var(--wrapper); border-color: color-mix(in srgb, var(--wrapper) 40%, transparent); background: color-mix(in srgb, var(--wrapper) 8%, transparent); }
.tcellw.unverified { color: var(--muted); border-color: var(--line2); background: var(--bg2); }

/* the scorer, tucked away */
.scorer { margin-top: var(--s5); border-top: 1px dashed var(--line); padding-top: var(--s4); }
.scorer summary { cursor: pointer; font-size: 12px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); list-style: none; }
.scorer summary::-webkit-details-marker { display: none; }
.scorer summary:hover { color: var(--hl); }
.scorer[open] summary { color: var(--hl); }
.test.compact li { padding: var(--s2) 0 var(--s2) 40px; }
.test.compact li::before { top: 9px; }

/* the agent test — runnable */
.runbar { display: flex; align-items: center; gap: var(--s4); margin: var(--s5) 0 var(--s2); flex-wrap: wrap; }
.runlabel { font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); }
#run-name {
  font: italic 400 22px/1.3 var(--serif); color: var(--ink);
  background: none; border: 0; border-bottom: 1px solid var(--line2); border-radius: 0;
  padding: 4px 2px; min-width: 260px; flex: 1; max-width: 380px;
}
#run-name::placeholder { color: #4d5872; }
#run-name:focus { outline: none; border-bottom-color: var(--hl); }
.runverdict { margin-left: auto; }
.runverdict .badge { animation: pop .35s cubic-bezier(.2,1.6,.4,1); }
.run-hint { font-size: 12.5px; color: var(--wrapper); min-height: 1.2em; margin-top: var(--s2); }
.test { margin: var(--s4) 0 var(--s5); list-style: none; counter-reset: t; display: grid; gap: 0; }
.test li {
  counter-increment: t; padding: var(--s3) 0 var(--s3) 52px; position: relative; border-bottom: 1px dashed var(--line);
  display: flex; align-items: baseline; justify-content: space-between; gap: var(--s4); flex-wrap: wrap;
}
.test li:last-child { border-bottom: 0; }
.test li::before {
  content: "0" counter(t); position: absolute; left: 0; top: 14px;
  font-size: 13px; color: var(--hl); letter-spacing: 1px;
}
.test li b { color: var(--ink); }
.qtext { max-width: 56ch; }
.qbtns { display: flex; gap: 6px; }
.qbtns button {
  font: inherit; font-size: 12px; cursor: pointer; border-radius: 2px;
  padding: 5px 14px; min-height: 30px; background: none; border: 1px solid var(--line2); color: var(--muted);
  transition: color .15s, border-color .15s, background .15s;
}
.qbtns button:hover { color: var(--fg); border-color: var(--muted); }
.qbtns button.on[data-a="1"] { color: var(--agent); border-color: var(--agent); background: color-mix(in srgb, var(--agent) 10%, transparent); }
.qbtns button.on[data-a="0"] { color: var(--cronjob); border-color: var(--cronjob); background: color-mix(in srgb, var(--cronjob) 10%, transparent); }
.runactions { display: flex; align-items: center; gap: var(--s5); margin: 0 0 var(--s5); flex-wrap: wrap; }
.runactions .cta { margin-top: 0; }
.verdict-key { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }

/* verdict stamps */
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 2px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.2px; white-space: nowrap;
  border: 1.5px solid currentColor;
}
.badge.agent { color: var(--agent); background: color-mix(in srgb, var(--agent) 10%, transparent); }
.badge.wrapper { color: var(--wrapper); background: color-mix(in srgb, var(--wrapper) 8%, transparent); }
.badge.cronjob { color: var(--cronjob); background: color-mix(in srgb, var(--cronjob) 8%, transparent); }

/* sponsor strip — classifieds row */
.sponsorstrip { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 56px; }
.spcard {
  background: var(--bg2); padding: 14px 16px; font-size: 12.5px;
  color: var(--muted); text-decoration: none; display: block; transition: background .25s;
}
.spcard:hover { background: #121724; }
.spcard b { color: var(--fg); display: block; margin: 3px 0 2px; font-size: 14px; font-weight: 600; }
.spcard .tag { color: var(--hl); font-size: 10px; text-transform: uppercase; letter-spacing: 1.6px; }
.spcard.live .tag { color: var(--wrapper); }

/* receipts table — ledger */
.tablebar { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.filters { display: flex; gap: 2px; flex-wrap: wrap; }
.filters button {
  background: none; border: 1px solid transparent; color: var(--muted);
  border-radius: 2px; padding: 4px 10px; font: inherit; font-size: 12px; cursor: pointer;
  text-transform: lowercase; transition: color .2s, border-color .2s;
}
.filters button:hover { color: var(--fg); }
.filters button.on { color: var(--hl); border-color: var(--line2); background: var(--bg2); }
/* The decoder ring for the table. A first-time visitor lands on row 15 of 30
   with the column headers long scrolled away and reads OPERATOR INSPECTABLE,
   five dots and AGENT with no idea which axis is which — real feedback, day
   one. One line, always above the table, saying what each column means. */
.rowkey { font-size: 12px; line-height: 1.8; color: var(--muted); max-width: 82ch; margin: var(--s2) 0 var(--s3); }
.rowkey b { color: var(--fg); font-weight: 500; font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px; }
.tablewrap { overflow-x: auto; margin-top: 4px; }
table { width: 100%; min-width: 880px; border-collapse: collapse; }
th { text-align: left; color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.6px; font-weight: 500; }
th, td { padding: 13px 12px 13px 0; border-bottom: 1px solid var(--line); vertical-align: top; }
tbody tr { transition: background .15s; }
tbody tr:hover { background: var(--hover); }
td.rank { color: var(--muted); font-size: 12px; width: 34px; padding-right: 6px; font-variant-numeric: tabular-nums; }
.pname b { font-size: 15.5px; font-weight: 600; color: var(--ink); }
.pname .vendor { color: var(--muted); font-size: 12.5px; }
.snark { color: var(--muted); font-size: 12.5px; margin-top: 4px; max-width: 44ch; line-height: 1.5; }

/* per-row share — always visible: a share nobody finds is a share that
   doesn't exist (a reviewer asked for cards that were already here) */
/* Four multi-word actions in a narrow cell. Without nowrap on the items, the
   flex line breaks INSIDE a label — "FULL / DOSSIER / →" stacked three high,
   the arrow orphaned on its own line — which reads as a broken page, not as
   wrapping. Whole labels wrap; words never do. */
.rowshare { display: flex; flex-wrap: wrap; gap: 4px 12px; margin-top: 6px; opacity: .55; transition: opacity .15s; }
.rowshare a, .rowshare button { white-space: nowrap; }
tbody tr:hover .rowshare, .rowshare:focus-within { opacity: 1; }

/* the record */
.chlog { list-style: none; display: grid; gap: 0; }
.chlog li { display: flex; gap: var(--s5); padding: var(--s3) 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.chlog li:last-child { border-bottom: 0; }
.chdate { flex: none; font-size: 11.5px; color: var(--hl); font-variant-numeric: tabular-nums; letter-spacing: .5px; }
.chbody b { display: block; font-size: 14px; color: var(--ink); }
.chbody span { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); max-width: 72ch; line-height: 1.55; }
.pgo { text-decoration: none; color: inherit; }
.pgo:hover b { color: var(--hl); }
.rowshare a { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); text-decoration: underline dotted; text-underline-offset: 3px; }
.rowshare a:hover { color: var(--hl); }
.rowshare button {
  background: none; border: 0; padding: 0; cursor: pointer; font: inherit;
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--muted); text-decoration: underline dotted; text-underline-offset: 3px;
}
.rowshare button:hover { color: var(--hl); }
tr.flash { animation: rowflash 2.4s ease-out; }
@keyframes rowflash {
  0%, 25% { background: color-mix(in srgb, var(--hl) 12%, transparent); }
  100% { background: transparent; }
}

/* trace column */
.tcell { min-width: 150px; }
.tbadge { display: inline-block; padding: 2px 8px; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 1.2px; border: 1px solid currentColor; white-space: nowrap; }
.tbadge.t-ok { color: var(--agent); background: color-mix(in srgb, var(--agent) 9%, transparent); }
.tbadge.t-mid { color: var(--wrapper); background: color-mix(in srgb, var(--wrapper) 8%, transparent); }
.tbadge.t-bad { color: var(--cronjob); background: color-mix(in srgb, var(--cronjob) 8%, transparent); }
.tbadge.t-none { color: var(--muted); }
.tnote { font-size: 11.5px; color: var(--muted); margin-top: 5px; max-width: 30ch; line-height: 1.45; }
.tlink { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); background: none; border: 0; padding: 0; margin-top: 5px; display: inline-block; cursor: pointer; font-family: inherit; text-decoration: underline dotted; text-underline-offset: 3px; }
.tlink:hover { color: var(--hl); }

/* leash column — the metric the site is actually about */
.leashcell { white-space: nowrap; }
.leashcell b { font-size: 19px; font-weight: 600; color: var(--hl); font-variant-numeric: tabular-nums; }
.leashcell .lmeta { display: block; font-size: 10.5px; color: var(--muted); margin-top: 2px; }
.lask { font-size: 11px; color: var(--muted); text-decoration: underline dotted; text-underline-offset: 3px; white-space: nowrap; }
.lask:hover { color: var(--hl); }

/* proof grade */
.pbadge { display: inline-block; padding: 2px 8px; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 1.1px; border: 1px solid currentColor; white-space: nowrap; }
.pbadge.p-hi { color: var(--hl); background: color-mix(in srgb, var(--hl) 12%, transparent); }
.pbadge.p-ok { color: var(--agent); background: color-mix(in srgb, var(--agent) 9%, transparent); }
.pbadge.p-mid { color: var(--wrapper); background: color-mix(in srgb, var(--wrapper) 8%, transparent); }
.pbadge.p-none { color: var(--muted); }

/* 5-segment meter */
.meter { display: inline-flex; gap: 3px; }
.meter i { width: 14px; height: 5px; background: var(--seg-off); border-radius: 1px; }
.meter i.on { background: var(--agent); }
.tally { font-size: 12px; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.tally b { font-weight: 600; }
.tally b.a { color: var(--agent); } .tally b.w { color: var(--wrapper); } .tally b.c { color: var(--cronjob); }

/* vote buttons */
.votebtns { display: flex; gap: 6px; }
.votebtns button {
  font: inherit; font-size: 11.5px; cursor: pointer; border-radius: 2px;
  padding: 6px 10px; min-height: 30px; background: none; border: 1px solid var(--line2); color: var(--muted);
  transition: color .15s, border-color .15s, background .15s;
}
.votebtns button:hover { border-color: var(--hl); color: var(--hl); background: color-mix(in srgb, var(--hl) 6%, transparent); }
.votebtns button:disabled { opacity: .4; cursor: default; }
.voted { font-size: 12px; color: var(--agent); animation: pop .35s cubic-bezier(.2,1.6,.4,1); display: inline-block; }
.revote {
  background: none; border: 0; padding: 0; cursor: pointer; font: inherit;
  font-size: 10.5px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--muted); text-decoration: underline dotted; text-underline-offset: 3px;
}
.revote:hover { color: var(--hl); }
@keyframes pop { from { transform: scale(.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* wrapper list — the death list */
#wall { margin: 8px 0 0; list-style: none; }
#wall li {
  display: flex; align-items: baseline; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
#wall li:last-child { border-bottom: 0; }
#wall .rank { font-size: 15px; color: var(--muted); font-variant-numeric: tabular-nums; min-width: 34px; }
#wall .who { font-family: var(--serif); font-style: italic; font-size: 26px; color: var(--ink); }
#wall .share { margin-left: auto; font-size: 30px; font-weight: 600; color: var(--cronjob); letter-spacing: -1px; font-variant-numeric: tabular-nums; }
#wall .of { font-size: 11.5px; color: var(--muted); }
#wall .empty { border: 0; color: var(--muted); font-size: 14px; }

/* ---------- the tape: a scored session ---------- */
.tape { border: 1px solid var(--line2); border-radius: 2px; background: var(--bg2); padding: var(--s5); margin-top: var(--s5); }
.tapehead { display: flex; justify-content: space-between; gap: var(--s4); font-size: 11px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); border-bottom: 1px solid var(--line); padding-bottom: var(--s3); flex-wrap: wrap; }
.dim { color: var(--muted); }
.leashrow { display: flex; gap: var(--s6); align-items: center; padding: var(--s5) 0; border-bottom: 1px dashed var(--line); flex-wrap: wrap; }
.leashnum { display: flex; flex-direction: column; align-items: flex-start; line-height: .9; }
.leashnum b { font-size: clamp(56px, 12vw, 104px); font-weight: 600; color: var(--hl); letter-spacing: -3px; font-variant-numeric: tabular-nums; }
.leashnum span { font-size: 11px; letter-spacing: 2.4px; color: var(--muted); margin-top: var(--s2); }
.leashsay { flex: 1; min-width: 260px; display: grid; gap: 4px; font-size: 14.5px; }
.leashsay .band { color: var(--wrapper); font-weight: 600; font-size: 12.5px; letter-spacing: 1.4px; margin-top: 4px; }
.axes { display: grid; gap: 0; padding: var(--s3) 0; }
.axis { display: grid; grid-template-columns: 120px auto 1fr; gap: var(--s4); align-items: baseline; padding: 9px 0; border-bottom: 1px dashed var(--line); }
.axis:last-child { border-bottom: 0; }
.axname { font-size: 11.5px; letter-spacing: 1.4px; color: var(--fg); }
.axraw { font-size: 12.5px; }
.dotmeter { letter-spacing: 3px; font-size: 13px; white-space: nowrap; }
.dotmeter i { color: var(--seg-off); font-style: normal; }
.dotmeter.hi { color: var(--agent); } .dotmeter.mid { color: var(--wrapper); } .dotmeter.lo { color: var(--cronjob); }
.dotmeter.none { color: var(--seg-off); }
.receipts { border-top: 1px dashed var(--line); padding-top: var(--s4); margin-top: var(--s3); display: grid; gap: var(--s3); }
.rechead { font-size: 10.5px; letter-spacing: 1.6px; color: var(--muted); }
.receipt { display: grid; gap: 2px; font-size: 12.5px; }
.rtime { color: var(--muted); font-size: 11.5px; }
.rfail { color: var(--cronjob); word-break: break-all; }
.rarrow { font-size: 11.5px; }
.rfix { color: var(--agent); word-break: break-all; }
.tapeactions { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; margin-top: var(--s4); }
.tapeactions .cta { margin-top: 0; }
.ghostbtn { background: none; border: 1px solid var(--line2); color: var(--muted); font: inherit; font-size: 13px; padding: 10px 16px; border-radius: 2px; cursor: pointer; }
.ghostbtn:hover { border-color: var(--hl); color: var(--hl); }

/* ---------- hero verdict chips: the conflict, above the fold ---------- */
.verdictrow { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); margin-top: var(--s6); }
.vchip {
  display: block; padding: var(--s4) var(--s5); border-radius: 3px; text-decoration: none;
  border: 1.5px solid currentColor; background: var(--bg2);
  transition: transform .18s, box-shadow .18s, background .18s;
}
.vchip:hover { transform: translateY(-3px); background: var(--hover); box-shadow: 0 12px 34px -18px currentColor; }
.vchip b { display: block; font-size: clamp(15px, 2.2vw, 19px); font-weight: 600; color: var(--fg); }
.vchip .vmeter { display: flex; align-items: baseline; gap: var(--s2); margin-top: var(--s2); font-size: 12px; font-variant-numeric: tabular-nums; }
.vchip .vmeter i { font-style: normal; letter-spacing: 2px; font-size: 11px; }
.vchip .vlabel { display: block; margin-top: var(--s2); font-size: 10.5px; font-weight: 600; letter-spacing: 1.4px; }
.vchip.agent { color: var(--agent); }
.vchip.wrapper { color: var(--wrapper); }
.vchip.cronjob { color: var(--cronjob); }
@media (max-width: 640px) { .verdictrow { grid-template-columns: 1fr; } }

/* ---------- hero playback ---------- */
.playwrap { margin: var(--s6) 0 var(--s5); }
#leash-play {
  width: 100%; height: 300px; display: block;
  border: 1px solid var(--line2); border-radius: 3px; background: var(--bg2);
}
.playmeta { margin-top: var(--s3); font-size: 13.5px; color: var(--muted); line-height: 1.55; min-height: 2.4em; }
.playmeta b { color: var(--fg); }
@media (max-width: 640px) { #leash-play { height: 240px; } }

/* ---------- stat band (canivibecodeit-grade tiles) ---------- */
.statband { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 3px; margin-top: var(--s6); overflow: hidden; }
.stile { background: var(--bg2); padding: var(--s5) var(--s4); text-align: left; transition: background .2s; }
.stile:hover { background: var(--hover); }
.stile b { display: block; font-size: clamp(32px, 6vw, 52px); font-weight: 600; letter-spacing: -2px; line-height: 1; color: var(--hl); font-variant-numeric: tabular-nums; }
.stile.good b { color: var(--agent); }
.stile span { display: block; margin-top: var(--s2); font-size: 11px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); }
@media (max-width: 560px) { .statband { grid-template-columns: repeat(2, 1fr); } .stile { padding: var(--s4); } }

/* ---------- hero command ---------- */
.cmdhero { display: flex; align-items: center; gap: var(--s5); margin-top: var(--s5); flex-wrap: wrap; }
.cmdbig {
  display: inline-flex; align-items: baseline; gap: var(--s4); cursor: pointer;
  background: var(--bg2); border: 1px solid var(--hl); border-radius: 2px;
  padding: var(--s4) var(--s5); font: inherit; transition: box-shadow .2s, transform .2s;
}
.cmdbig code { font-size: clamp(20px, 3.4vw, 28px); color: var(--hl); font-weight: 600; letter-spacing: -.5px; }
.cmdbig .copyhint { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); }
.cmdbig:hover { transform: translateY(-2px); box-shadow: 0 10px 34px -14px var(--hl); }
.cmdbig.done .copyhint { color: var(--agent); }
.cmdnote { font-size: 13px; color: var(--muted); max-width: 40ch; }
.cmdnote em { color: var(--fg); font-style: normal; }

/* ---------- product-first homepage ------------------------------------- */
.hero .kicker a { color: var(--wrapper); font-weight: 600; text-decoration-thickness: 1px; }
.hero .answer { max-width: 67ch; color: var(--fg); font-size: 16px; }
.herocmd {
  display: inline-flex; align-items: baseline; gap: var(--s3); cursor: pointer;
  background: var(--bg2); color: var(--fg); border: 1px solid var(--line2);
  border-radius: 2px; padding: 11px 16px; font: inherit;
  transition: border-color .18s, transform .18s, background .18s;
}
.herocmd:hover { border-color: var(--hl); transform: translateY(-2px); background: var(--hover); }
.herocmd code { color: var(--hl); font-size: 14px; }
.herocmd .copyhint { color: var(--muted); font-size: 9.5px; letter-spacing: 1.4px; text-transform: uppercase; }
.herocmd.done .copyhint { color: var(--agent); }
.measuremap {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  margin-top: var(--s7); border: 1px solid var(--line); background: var(--line);
}
.measuremap > div { min-width: 0; background: var(--bg); padding: var(--s4); }
.measuremap span { display: block; color: var(--hl); font-size: 9.5px; letter-spacing: 1.5px; }
.measuremap b { display: block; margin-top: var(--s2); color: var(--ink); font-size: 13.5px; line-height: 1.45; }
.measuremap small { display: block; margin-top: var(--s2); color: var(--muted); font-size: 11.5px; line-height: 1.55; }
.heroproof {
  display: flex; gap: var(--s5); flex-wrap: wrap; padding: var(--s3) 0;
  border-bottom: 1px solid var(--line); color: var(--muted); font-size: 11px;
  letter-spacing: .5px; text-transform: uppercase;
}
.heroproof b { color: var(--fg); font-size: 14px; }
.sectionlead { max-width: 76ch; color: var(--muted); font-size: 14px; line-height: 1.75; }
.sectionlead b { color: var(--hl); font-weight: 600; }
.cmdhero .cta { margin-top: 0; }

/* The dense ledger stays useful on desktop. A phone gets a purpose-built
   reading unit with the same canonical fields, not an 880px table in a slot. */
.productcards { display: none; }
.productcard {
  border: 1px solid var(--line2); background: var(--bg2); padding: var(--s4);
}
.pchead { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: var(--s3); align-items: start; }
.pchead .badge { grid-column: 2; justify-self: start; white-space: normal; line-height: 1.4; }
.pcrank { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; padding-top: 2px; }
.pchead .pgo b { color: var(--ink); font-size: 17px; line-height: 1.35; }
.pcvendor { display: block; margin-top: 2px; color: var(--muted); font-size: 11.5px; }
.pcsnark { margin: var(--s3) 0 var(--s4) 32px; color: var(--muted); font-size: 12.5px; line-height: 1.6; }
.pcfacts { border-top: 1px solid var(--line); }
.pcfacts > div { display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: var(--s3); padding: var(--s3) 0; border-bottom: 1px solid var(--line); }
.pcfacts dt { color: var(--muted); font-size: 9.5px; letter-spacing: 1.1px; text-transform: uppercase; }
.pcfacts dd { min-width: 0; color: var(--fg); font-size: 12px; }
.pcfacts dd > span:not(.pbadge):not(.meter) { display: block; margin-top: 5px; color: var(--muted); }
.pcfacts small { display: block; margin-top: 6px; color: var(--muted); font-size: 10.5px; line-height: 1.55; }
.pcleash strong { color: var(--hl); font-size: 21px; font-weight: 600; }
.pcactions { display: flex; flex-wrap: wrap; gap: 8px 14px; padding-top: var(--s3); }
.pcactions a, .pcactions button {
  white-space: nowrap; color: var(--muted); background: none; border: 0; padding: 0;
  font: inherit; font-size: 9.5px; letter-spacing: 1px; text-transform: uppercase;
  text-decoration: underline dotted; text-underline-offset: 3px; cursor: pointer;
}
.pcactions a:hover, .pcactions button:hover { color: var(--hl); }
.pcvote { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); margin-top: var(--s4); padding-top: var(--s3); border-top: 1px dashed var(--line); }
.pcvote > span:first-child { color: var(--muted); font-size: 9.5px; letter-spacing: 1.3px; }

/* ---------- get yours ---------- */
.twoways { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
@media (max-width: 720px) { .twoways { grid-template-columns: 1fr; } }
.waytag { font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--hl); }
.cmd { background: var(--bg2); border: 1px solid var(--line2); border-radius: 2px; padding: var(--s4); margin: var(--s3) 0; font-size: 17px; color: var(--fg); overflow-x: auto; }
.way p { font-size: 13px; }
.dropzone {
  border: 1px dashed var(--line2); border-radius: 2px; padding: var(--s5) var(--s4);
  margin: var(--s3) 0; display: grid; gap: 6px; text-align: center; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.dropzone b { color: var(--fg); font-size: 14px; font-weight: 600; }
.dropzone span { font-size: 12.5px; }
.dropzone:hover, .dropzone.over { border-color: var(--hl); background: color-mix(in srgb, var(--hl) 5%, transparent); }
#drop-note { font-size: 12.5px; margin-top: var(--s2); }
#drop-note .err { color: var(--cronjob); }
/* badges */
.badgerow { display: flex; gap: var(--s3); flex-wrap: wrap; align-items: center; margin-bottom: var(--s3); }
.embedgrid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); margin-top: var(--s4); }
@media (max-width: 720px) { .embedgrid { grid-template-columns: 1fr; } }
.embedgrid label { display: flex; flex-direction: column; gap: var(--s2); font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.4px; color: var(--muted); }
.embedgrid textarea { font: 400 11.5px/1.5 var(--mono); color: var(--fg); background: var(--bg2); border: 1px solid var(--line2); border-radius: 2px; padding: 10px; resize: vertical; text-transform: none; letter-spacing: 0; }
.embedgrid textarea:focus { outline: none; border-color: var(--hl); }

/* the court */
.courttally { display: flex; gap: var(--s6); margin-top: var(--s5); flex-wrap: wrap; }
.ct { font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); }
.ct b { display: block; font-size: 30px; font-weight: 600; letter-spacing: -1px; color: var(--fg); text-transform: none; }
.ct b.ov { color: var(--hl); }
.courtfilters { display: flex; gap: 2px; flex-wrap: wrap; margin-bottom: var(--s4); }
.courtfilters button { background: none; border: 1px solid transparent; color: var(--muted); border-radius: 2px; padding: 5px 10px; font: inherit; font-size: 11.5px; cursor: pointer; }
.courtfilters button:hover { color: var(--fg); }
.courtfilters button.on { color: var(--hl); border-color: var(--line2); background: var(--bg2); }
.caselist { list-style: none; display: grid; gap: 0; }
.case { padding: var(--s4) 0; border-bottom: 1px dashed var(--line); }
.case:last-child { border-bottom: 0; }
.casehead { display: flex; align-items: center; gap: var(--s3); flex-wrap: wrap; }
.caseprod { font-size: 15px; font-weight: 600; color: var(--ink); text-decoration: none; }
.caseprod:hover { color: var(--hl); }
.casecrit { font-size: 10.5px; letter-spacing: 1.4px; color: var(--muted); }
.caseid { margin-left: auto; font-size: 11px; color: var(--muted); text-decoration: none; }
.casereason { font-size: 13.5px; line-height: 1.6; color: var(--fg); max-width: 76ch; margin-top: var(--s2); }
.casemeta { display: flex; gap: var(--s4); flex-wrap: wrap; font-size: 11.5px; color: var(--muted); margin-top: var(--s2); }
.casemove b { color: var(--hl); }
.sbadge { display: inline-block; padding: 2px 8px; border-radius: 2px; font-size: 10px; font-weight: 600; letter-spacing: 1.1px; border: 1px solid currentColor; white-space: nowrap; }
.s-pending { color: var(--muted); }
.s-review { color: var(--wrapper); }
.s-accepted, .s-overturned { color: var(--hl); background: color-mix(in srgb, var(--hl) 10%, transparent); }
.s-upheld { color: var(--agent); }
.s-rejected { color: var(--cronjob); }
.caselist .empty { color: var(--muted); font-size: 13px; padding: var(--s4) 0; }

/* latest ruling, homepage — one at a time, never a dashboard */
.ruling { border-left: 2px solid var(--hl); padding: var(--s3) 0 var(--s3) var(--s5); margin-top: var(--s5); }
.ruling .rlabel { font-size: 10.5px; letter-spacing: 1.6px; color: var(--hl); }
.ruling p { font-size: 13.5px; line-height: 1.6; color: var(--fg); max-width: 76ch; margin-top: 6px; }
.ruling .rmeta { font-size: 11.5px; color: var(--muted); margin-top: 6px; }

/* a category distinction, stated plainly so a low score is not read as failure */
.catnote { border-left: 2px solid var(--wrapper); padding: var(--s3) 0 var(--s3) var(--s5); margin-top: var(--s5); }
.catnote p { font-size: 13.5px; line-height: 1.65; color: var(--fg); max-width: 74ch; }

/* product dossier page */
.prodhero { padding-bottom: var(--s5); }
.prodvendor { color: var(--muted); font-size: 14px; margin-top: 4px; }
.prodverdict { display: flex; align-items: flex-start; gap: var(--s5); margin-top: var(--s5); flex-wrap: wrap; }
.scorebig { font-size: clamp(52px, 10vw, 84px); font-weight: 600; letter-spacing: -3px; line-height: 1; font-variant-numeric: tabular-nums; }
.scorebig i { font-style: normal; font-size: .42em; color: var(--muted); }
.scorebig.agent { color: var(--agent); } .scorebig.wrapper { color: var(--wrapper); } .scorebig.cronjob { color: var(--cronjob); }
.prodverdict .badge, .prodverdict .tbadge { margin-right: var(--s2); }
.snarkbig { margin-top: var(--s3); font-size: 15px; color: var(--fg); max-width: 60ch; }
.prodactions { display: flex; align-items: center; gap: var(--s5); margin-top: var(--s5); flex-wrap: wrap; }
.prodactions .cta { margin-top: 0; }
/* The global ledger table has an 880px minimum. A dossier is a different
   reading unit and must be allowed to wrap before the mobile rows stack; this
   also removes the otherwise broken 721–899px tablet range. */
.dossier { width: 100%; min-width: 0; border-collapse: collapse; }
.dossier td { padding: 14px 12px 14px 0; border-bottom: 1px dashed var(--line); vertical-align: top; }
.dossier tr:last-child td { border-bottom: 0; }
.dossier .cx { width: 26px; font-size: 17px; }
.dossier tr.yes .cx { color: var(--agent); } .dossier tr.no .cx { color: var(--cronjob); }
.dossier .cname { width: 200px; }
.dossier .cname b { display: block; font-size: 14px; color: var(--ink); }
.dossier .cname span { display: block; font-size: 11.5px; color: var(--muted); margin-top: 2px; }
.dossier .cwhy { font-size: 13.5px; color: var(--fg); line-height: 1.6; }
.dossier tr.no .cwhy { color: var(--muted); }
.revlist { list-style: none; display: grid; gap: 0; }
.revlist li { display: flex; gap: var(--s5); padding: var(--s3) 0; border-bottom: 1px dashed var(--line); align-items: baseline; }
.revlist li:last-child { border-bottom: 0; }

/* method page */
.mbody { font-size: 14.5px; line-height: 1.7; max-width: 74ch; color: var(--fg); margin-bottom: var(--s4); }
.rule { border-left: 2px solid var(--line2); padding: var(--s2) 0 var(--s2) var(--s5); margin-bottom: var(--s5); }
.rule h3 { font-size: 13px; letter-spacing: 1.4px; color: var(--hl); font-weight: 600; margin-bottom: var(--s3); }
.rule p { font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 72ch; margin-bottom: 6px; }
.rule p b { color: var(--fg); }
.rule .edge { border-top: 1px dashed var(--line); padding-top: 8px; margin-top: 10px; font-size: 12.5px; }
.wronglist { display: grid; gap: var(--s3); margin: var(--s4) 0 var(--s5) 20px; }
.wronglist li { font-size: 13.5px; line-height: 1.65; color: var(--muted); max-width: 74ch; }
.wronglist li b { color: var(--ink); }

.auditbox { margin-top: var(--s5); border: 1px solid var(--line2); border-radius: 3px; padding: var(--s5); background: var(--bg2); }
.auditbox .cmd { margin: var(--s3) 0; font-size: 16px; }
.auditlist { list-style: none; display: grid; gap: 8px; margin: var(--s3) 0; font-size: 12.5px; color: var(--muted); }
.auditlist b { display: inline-block; min-width: 74px; color: var(--hl); font-size: 11px; letter-spacing: 1.2px; }
.auditlist code, .auditbox code { color: var(--fg); background: var(--bg); padding: 1px 5px; border-radius: 2px; font-size: 11.5px; }

.pledge { margin-top: var(--s5); padding: var(--s4); border-left: 2px solid var(--hl); font-size: 13px; color: var(--muted); }
.pledge b { color: var(--fg); }

/* ---------- the scale ---------- */
.dist { display: flex; align-items: flex-end; gap: 2px; height: 110px; margin: var(--s4) 0 var(--s3); }
.dist .dbar { flex: 1; background: var(--line2); border-radius: 1px 1px 0 0; min-height: 3px; transition: background .2s; }
.dist .dbar:hover { background: var(--muted); }
.dist .dbar.you { background: var(--hl); box-shadow: 0 0 18px -4px var(--hl); }
.bandkey { display: flex; gap: var(--s4); flex-wrap: wrap; font-size: 11.5px; color: var(--muted); }
.bandkey .bk b { color: var(--hl); font-weight: 600; }
.finding-lead { font-size: 17px; line-height: 1.6; max-width: 62ch; }
.finding-lead b { color: var(--ink); }
.hl-inline { color: var(--hl); }

/* ---------- hero tape (home page, pre-rendered) ---------- */
.herotape { margin-top: var(--s6); border: 1px solid var(--line2); border-radius: 2px; background: var(--bg2); padding: var(--s5); }
.herotape .runline { margin-top: var(--s4); padding-top: var(--s4); border-top: 1px dashed var(--line); display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; font-size: 13px; }
.herotape .runline code { background: var(--bg); border: 1px solid var(--line2); padding: 7px 12px; border-radius: 2px; font-size: 15px; color: var(--hl); }

/* submit form */
.subform { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4) var(--s5); max-width: 720px; }
.subform label { display: flex; flex-direction: column; gap: var(--s2); font-size: 12px; text-transform: uppercase; letter-spacing: 1.2px; color: var(--muted); }
.subform .wide { grid-column: 1 / -1; }
.subform input, .subform textarea {
  font: 400 14px/1.5 var(--mono); color: var(--fg);
  background: var(--bg2); border: 1px solid var(--line2); border-radius: 2px;
  padding: 10px 12px; letter-spacing: 0; text-transform: none;
}
.subform input::placeholder, .subform textarea::placeholder { color: #4d5872; }
.subform input:focus, .subform textarea:focus { outline: none; border-color: var(--hl); }
.subform textarea { resize: vertical; }
.subform .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.subrow { grid-column: 1 / -1; display: flex; align-items: center; gap: var(--s4); }
.subrow .cta { margin-top: 0; }
.submsg { font-size: 13px; color: var(--agent); }
.submsg.err { color: var(--cronjob); }
@media (max-width: 640px) { .subform { grid-template-columns: 1fr; } }
footer { margin-top: 64px; color: var(--muted); font-size: 12px; text-align: center; border-top: 1px solid var(--line); padding-top: 18px; }

/* ---------- stats page ---------- */
.statshero { padding-bottom: var(--s4); }
.livenow { margin-top: var(--s5); font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: var(--s2); flex-wrap: wrap; }
.livenow b { color: var(--hl); font-size: 17px; }
.pip { width: 8px; height: 8px; border-radius: 50%; background: var(--agent); box-shadow: 0 0 12px var(--agent); animation: pulse 1.8s ease-in-out infinite; }
.statgrid.big { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 860px) { .statgrid.big { grid-template-columns: repeat(2, 1fr); } }
.stat .sub2 { margin-top: 4px; font-size: 11px; color: var(--muted); opacity: .8; }
.stat.good .n { color: var(--agent); }
.stat.bad .n { color: var(--cronjob); }

.areachart { width: 100%; height: 300px; display: block; margin-top: var(--s4); }
@media (max-width: 640px) { .areachart { height: 220px; } }
.serieskey {
  background: none; border: 1px solid transparent; color: var(--muted); font: inherit; font-size: 11.5px;
  padding: 4px 10px; border-radius: 2px; cursor: pointer; display: inline-flex; align-items: center;
}
.serieskey:hover { color: var(--fg); }
.serieskey.on { color: var(--hl); border-color: var(--line2); background: var(--bg2); }
.sw.votes { background: color-mix(in srgb, var(--agent) 55%, transparent); }

/* who's here */
.worldrow { display: grid; grid-template-columns: 360px 1fr; gap: var(--s6); align-items: start; }
@media (max-width: 860px) { .worldrow { grid-template-columns: 1fr; } }
.ring { width: 100%; max-width: 360px; height: 360px; display: block; }
.bignow { display: flex; align-items: baseline; gap: var(--s3); flex-wrap: wrap; margin-bottom: var(--s4); }
.bignow b { font-size: clamp(44px, 9vw, 68px); font-weight: 600; color: var(--ink); letter-spacing: -3px; line-height: 1; font-variant-numeric: tabular-nums; }
.bignow span { font-size: 13.5px; color: var(--muted); }
.fdot { width: 6px; height: 6px; border-radius: 50%; background: var(--agent); flex: none; }
.feedlist li b { color: var(--hl); font-weight: 500; }
.countrybars { display: grid; gap: 6px; margin-top: var(--s3); }
.cbar { display: grid; grid-template-columns: 22px 26px 1fr 46px; align-items: center; gap: var(--s3); font-size: 12px; }
.cflag { font-size: 14px; }
.cc { color: var(--muted); letter-spacing: .5px; }
.ctrack { height: 8px; background: var(--line); border-radius: 2px; overflow: hidden; }
.ctrack i { display: block; height: 100%; background: color-mix(in srgb, var(--hl) 55%, transparent); }
.cn { text-align: right; color: var(--muted); font-variant-numeric: tabular-nums; }

.chart { display: flex; align-items: flex-end; gap: 4px; height: 170px; margin-top: var(--s4); }
.chart .col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; height: 100%; justify-content: flex-end; }
.chart .colbars { display: flex; align-items: flex-end; gap: 2px; width: 100%; height: 100%; justify-content: center; }
.chart .cb { width: 44%; border-radius: 2px 2px 0 0; transition: height .5s ease, filter .15s; min-height: 2px; }
.chart .cb.views { background: color-mix(in srgb, var(--hl) 42%, transparent); }
.chart .cb.uniq { background: color-mix(in srgb, var(--wrapper) 55%, transparent); }
.chart .col:hover .cb { filter: brightness(1.5); }
.chart .col i { font-style: normal; font-size: 9.5px; color: var(--muted); }
.chartkey, .stackkey { display: flex; gap: var(--s4); flex-wrap: wrap; font-size: 11.5px; color: var(--muted); margin-top: var(--s3); align-items: center; }
.sw { display: inline-block; width: 9px; height: 9px; border-radius: 2px; margin-right: 5px; vertical-align: middle; }
.sw.views { background: color-mix(in srgb, var(--hl) 42%, transparent); }
.sw.uniq { background: color-mix(in srgb, var(--wrapper) 55%, transparent); }
.sw.va, .sw.ta { background: var(--agent); } .sw.vw, .sw.tw { background: var(--wrapper); }
.sw.vc, .sw.tc { background: var(--cronjob); } .sw.tu { background: var(--seg-off); }

.splitrow { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); }
@media (max-width: 760px) { .splitrow { grid-template-columns: 1fr; } }
.blabel { display: block; font-size: 10.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); margin-bottom: var(--s3); }
.stack { display: flex; height: 42px; border-radius: 3px; overflow: hidden; gap: 2px; }
.stack .seg { display: flex; align-items: center; justify-content: center; min-width: 26px; transition: filter .15s; }
.stack .seg:hover { filter: brightness(1.25); }
.stack .seg b { font-size: 13px; font-weight: 600; color: var(--bg); }
.seg.va, .seg.ta { background: var(--agent); } .seg.vw, .seg.tw { background: var(--wrapper); }
.seg.vc, .seg.tc { background: var(--cronjob); } .seg.tu { background: var(--seg-off); }

.judged, .feedlist { list-style: none; display: grid; gap: 0; }
.judged li, .feedlist li { display: flex; justify-content: space-between; gap: var(--s4); align-items: baseline; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 13px; }
.judged li:last-child, .feedlist li:last-child { border-bottom: 0; }
.judged a { text-decoration: none; }
.judged a:hover { text-decoration: underline; }
.jn, .ftime { font-size: 11.5px; color: var(--muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.feedlist li { justify-content: flex-start; gap: var(--s4); }
.feedlist b.a { color: var(--agent); } .feedlist b.w { color: var(--wrapper); } .feedlist b.c { color: var(--cronjob); }
.judged .empty, .feedlist .empty { color: var(--muted); border-bottom: 0; }

/* stats & sponsor pages */
.statgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 20px; }
.stat { background: var(--bg2); padding: 18px 16px; }
.stat .n { font-size: 32px; font-weight: 600; color: var(--hl); letter-spacing: -1px; font-variant-numeric: tabular-nums; }
.stat .l { font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 1.4px; margin-top: 4px; }
.bars { display: flex; align-items: flex-end; gap: 4px; height: 100px; margin-top: 16px; }
.bars .bar { flex: 1; background: color-mix(in srgb, var(--hl) 30%, transparent); border-radius: 1px 1px 0 0; min-height: 2px; position: relative; transition: height .6s ease; }
.bars .bar:hover { background: var(--hl); }
.bars .bar i { position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); font-size: 9.5px; color: var(--muted); font-style: normal; }
.slotgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 16px; }
.slot { background: var(--bg2); padding: 14px; text-align: center; color: var(--muted); font-size: 12.5px; }
.slot.live { color: var(--fg); box-shadow: inset 0 0 0 1px var(--agent); }
.slot.reserved { box-shadow: inset 0 0 0 1px var(--wrapper); }
.cta {
  display: inline-block; margin-top: 18px; padding: 12px 26px; border-radius: 2px;
  background: var(--hl); color: var(--bg); font-weight: 600; text-decoration: none; border: none;
  font: inherit; font-size: 15px; cursor: pointer; transition: transform .18s, box-shadow .18s;
}
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px -12px var(--hl); }

/* side ad rails — demo ads until real sponsors buy the slots */
.rail { position: fixed; top: 96px; width: 200px; display: none; flex-direction: column; gap: var(--s3); z-index: 2; }
.rail.left { left: calc(50% - 480px - 224px); }
.rail.right { right: calc(50% - 480px - 224px); }
@media (min-width: 1320px) { .rail { display: flex; } }
/* Full-height cards need 792px of rail for three. On shorter screens cards
   step aside rather than shrink — a card whose price line overflows its border
   is worse than a card that isn't there, and every placement is still on
   screen in the in-page strip, which is in the document flow and never hides. */
@media (max-height: 940px) { .rail .adslot:nth-child(3) { display: none; } }
@media (max-height: 680px) { .rail .adslot:nth-child(2) { display: none; } }
.adslot { perspective: 900px; min-height: 252px; }
.adflip { position: relative; transform-style: preserve-3d; transition: transform .6s cubic-bezier(.4,.1,.2,1); min-height: 252px; }
.adflip.flipped { transform: rotateY(180deg); }
.adcard {
  position: absolute; inset: 0; backface-visibility: hidden;
  display: flex; flex-direction: column; gap: var(--s2);
  background: var(--bg2); border: 1px solid var(--line2); border-radius: 2px;
  padding: var(--s4); text-decoration: none; color: var(--muted); font-size: 12px;
  transition: border-color .2s, transform .2s;
}
.adcard.back { transform: rotateY(180deg); }
.adslot:hover .adcard { border-color: var(--ad-accent, var(--hl)); }
.adlabel { font-size: 9.5px; text-transform: uppercase; letter-spacing: 1.6px; color: var(--muted); border-bottom: 1px dashed var(--line); padding-bottom: var(--s2); }
.adbrand { font-family: var(--serif); font-style: italic; font-size: 24px; font-weight: 400; color: var(--ink); line-height: 1.05; }
.adtag { line-height: 1.45; }
.adcta {
  margin-top: auto; align-self: flex-start; border: 1px solid var(--ad-accent, var(--hl));
  color: var(--ad-accent, var(--hl)); border-radius: 2px; padding: 5px 10px; font-size: 11.5px; font-weight: 600;
}
.adprice { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
@media (prefers-reduced-motion: reduce) { .adflip { transition: none; } }

/* touch targets on coarse pointers */
@media (pointer: coarse) {
  .votebtns button { min-height: 44px; padding: 10px 14px; }
  .filters button { padding: 10px 14px; }
  .navlinks a { padding: 10px 4px; display: inline-block; }
}
@media (max-width: 640px) {
  .counts { flex-wrap: wrap; }
  .counts .kpi { padding: 10px 16px 10px 0; margin-right: 16px; }
  .counts .n { font-size: 26px; }
  #wall .who { font-size: 20px; }
  #wall .share { font-size: 24px; }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .live::before, .voted, tr.flash { animation: none; }
  /* html.reveal .rv is more specific than a bare .rv, so a plain `.rv` rule
     here would lose and reduced-motion visitors would sit in front of a
     hidden page until JS arrived. Match the gate, then unhide. */
  html.reveal .rv, .rv { opacity: 1; transform: none; transition: none; }
  .bars .bar, .cta, .spcard, .votebtns button { transition: none; }
  html { scroll-behavior: auto; }
}

/* --- filters, sorting, compare tray, follows, comparison table -----------
   No new visual language: the same lines, the same mono, the same two
   accent colours. These are controls and tables, not a dashboard. */
.controls { display: flex; flex-wrap: wrap; gap: var(--s3); align-items: center; margin-top: var(--s2); }
.controls label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; letter-spacing: 1.1px; color: var(--muted); text-transform: uppercase; }
.controls select {
  font: inherit; font-size: 12px; color: var(--fg); background: var(--bg2);
  border: 1px solid var(--line); border-radius: 2px; padding: 4px 6px; text-transform: none; letter-spacing: 0;
}
.controls select:focus-visible { outline: 1px solid var(--hl); outline-offset: 1px; }
.controls .fcount { font-size: 11.5px; color: var(--muted); margin-left: auto; }
.controls .freset { font: inherit; font-size: 11.5px; color: var(--hl); background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; padding: 0; }
.meter i.unc { background: var(--muted); }
tr.picked td { background: color-mix(in srgb, var(--hl) 6%, transparent); }
.sampleqal { max-width: 74ch; margin-top: var(--s3); }
.sampleqal b { color: var(--fg); font-weight: 500; }

.cmptray {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: var(--s4); z-index: 40;
  display: flex; gap: var(--s3); align-items: center; flex-wrap: wrap; justify-content: center;
  background: var(--bg2); border: 1px solid var(--line2); border-radius: 3px;
  padding: var(--s3) var(--s4); font-size: 12.5px; max-width: min(92vw, 720px);
}
/* `display: flex` on a class beats the UA's `[hidden] { display: none }`, so
   the empty tray floated as a 34x26 box over the bottom of every page until
   you picked something to compare. Restore the attribute's meaning. */
.cmptray[hidden] { display: none; }
.cmptray .cmpwho { color: var(--muted); }
.cmptray .cmpwho b { color: var(--fg); }
.cmptray .ghost { border: 0; background: none; font: inherit; color: var(--muted); cursor: pointer; border-bottom: 1px solid currentColor; }

.followlist { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.followlist li { display: flex; gap: var(--s3); align-items: baseline; flex-wrap: wrap; background: var(--bg); padding: var(--s3) var(--s4); font-size: 13px; }
.followlist li.moved { background: color-mix(in srgb, var(--hl) 7%, transparent); }
.followlist li span { color: var(--muted); margin-left: auto; }
.followlist li button { font: inherit; font-size: 11.5px; color: var(--muted); background: none; border: 0; border-bottom: 1px solid currentColor; cursor: pointer; padding: 0; margin-left: var(--s3); }

.axes3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: var(--s4); }
.axes3 > div { background: var(--bg); padding: var(--s3) var(--s4); }
.axes3 dt { font-size: 10.5px; letter-spacing: 1.6px; color: var(--muted); }
.axes3 dd { font-size: 13px; color: var(--fg); margin-top: 6px; display: flex; flex-wrap: wrap; gap: 6px; align-items: baseline; }
.axes3 .qual { display: block; width: 100%; font-size: 11px; color: var(--muted); line-height: 1.5; }
.leashcell .lmeta a { color: inherit; }

table.cmp { width: 100%; border-collapse: collapse; font-size: 13px; }
table.cmp th, table.cmp td { border: 1px solid var(--line); padding: var(--s3) var(--s4); vertical-align: top; text-align: left; }
table.cmp thead th { font-size: 13px; font-weight: 500; }
table.cmp thead th a { color: var(--fg); }
table.cmp .cvendor, table.cmp .cmeta { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }
table.cmp .cwhy { display: block; font-size: 12px; color: var(--muted); line-height: 1.55; margin-top: 8px; max-width: 46ch; }
table.cmp tbody th { width: 20%; min-width: 150px; font-weight: 500; }
table.cmp tbody th span { display: block; font-size: 11px; color: var(--muted); margin-top: 4px; }
table.cmp tr.sumrow { background: var(--bg2); }
table.cmp td.yes b { color: var(--agent); }
table.cmp td.no b { color: var(--cronjob); }
table.cmp td.uncertain b { color: var(--muted); }
table.cmp tr.split th { border-left: 2px solid var(--hl); }
.splitflag { color: var(--hl) !important; letter-spacing: 1.2px; font-size: 10px !important; }
.dlist { list-style: none; font-size: 12px; color: var(--muted); line-height: 1.6; }
.dlist b { color: var(--fg); font-weight: 500; }
.cmpadd { display: flex; gap: var(--s3); align-items: center; flex-wrap: wrap; margin-top: var(--s4); font-size: 12px; }
.cmpadd label { color: var(--muted); letter-spacing: 1.1px; text-transform: uppercase; font-size: 11px; }
.cmpadd select { font: inherit; font-size: 12.5px; color: var(--fg); background: var(--bg2); border: 1px solid var(--line); border-radius: 2px; padding: 5px 7px; }
.revlist .rlink { display: block; font-size: 11.5px; margin-top: 6px; }

/* --- evidence gaps: facts about our own dataset, not a popularity board --- */
.gapgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.gap { background: var(--bg); padding: var(--s3) var(--s4); }
.gap b { font-family: "Instrument Serif", Georgia, serif; font-size: 34px; color: var(--hl); line-height: 1; }
.gap span { display: block; font-size: 10.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.gap p { font-size: 12px; line-height: 1.7; color: var(--muted); margin-top: var(--s3); }
.gap p a { color: var(--fg); }
.cmpgrid { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.cmpcard { display: grid; grid-template-columns: 1fr auto; gap: 6px var(--s4); padding: var(--s3) var(--s4); background: var(--bg); text-decoration: none; }
.cmpcard:hover { background: var(--bg2); }
.cmpnames { font-size: 15px; color: var(--fg); }
.cmpnames i { color: var(--muted); font-style: normal; padding: 0 6px; }
.cmpscores { font-size: 14px; color: var(--muted); }
.cmpwhy { grid-column: 1 / -1; font-size: 12px; color: var(--muted); line-height: 1.6; }
.datagrid { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.datagrid li { background: var(--bg); padding: var(--s3) var(--s4); }
.datagrid b { display: block; font-family: "Instrument Serif", Georgia, serif; font-size: 32px; color: var(--fg); line-height: 1; }
.datagrid.small b { font-size: 24px; }
.datagrid span { display: block; font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
.distwrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--s5); }
.distwrap h3 { font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); margin-bottom: var(--s3); font-weight: 500; }
.limits { padding-left: var(--s5); display: grid; gap: var(--s3); font-size: 13.5px; line-height: 1.7; color: var(--muted); max-width: 78ch; }
.limits b { color: var(--fg); font-weight: 500; }
.cite { font-size: 12.5px; line-height: 1.8; color: var(--muted); background: var(--bg2); border: 1px solid var(--line); padding: var(--s4); overflow-x: auto; white-space: pre-wrap; }
.caselist { list-style: none; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.caselist li { display: grid; grid-template-columns: minmax(140px, auto) 1fr; gap: var(--s4); background: var(--bg); padding: var(--s4); }
.caselist .cstatus { font-size: 10px; letter-spacing: 1.5px; font-weight: 600; align-self: start; }
.caselist .s-verdict_overturned { color: var(--wrapper); }
.caselist .s-verdict_upheld { color: var(--muted); }
.caselist .s-submitted, .caselist .s-under_review, .caselist .s-evidence_requested { color: var(--hl); }
.caselist b { font-size: 14px; color: var(--fg); }
.caselist .cmove, .caselist .cwho { display: block; font-size: 11.5px; color: var(--muted); margin-top: 4px; }
.caselist p { font-size: 13px; line-height: 1.65; color: var(--muted); margin: var(--s3) 0; max-width: 78ch; }
.courtfilters a { display: inline-block; padding: 6px 12px; font-size: 11.5px; color: var(--muted); text-decoration: none; border: 1px solid transparent; }
.courtfilters a.on { color: var(--hl); border-color: var(--line2); background: var(--bg2); }
.courttally { display: flex; gap: var(--s5); flex-wrap: wrap; margin-top: var(--s5); }
.courttally b { font-family: "Instrument Serif", Georgia, serif; font-size: 38px; color: var(--fg); }
.courttally span { display: block; font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--muted); }
.vendorsay { border-left: 2px solid var(--line2); padding: var(--s3) 0 var(--s3) var(--s5); max-width: 78ch; }
.vendorsay p { font-size: 14.5px; line-height: 1.7; color: var(--fg); }
.vendorsay footer { font-size: 11.5px; color: var(--muted); margin-top: var(--s3); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* --- mobile navigation ----------------------------------------------------
   Seven links do not fit on a 390px row. They wrap to their own scrollable
   line rather than being hidden behind a hamburger: every destination stays
   one swipe away, keyboard order is unchanged, and there is no JS to fail.
   Two things make the overflow legible rather than looking like a bug:
   the theme toggle leaves the scroller entirely (it had `margin-left: auto`,
   which collapses to zero the moment the row overflows, so it was parked
   off-screen past SPONSOR and unreachable), and a chevron sits over the
   right edge on an opaque fade, so STATS/SPONSOR read as "there is more
   this way" instead of "the layout is cut off". */
@media (max-width: 720px) {
  body { padding-inline: 14px; }
  .hero { padding: var(--s7) 0 var(--s5); }
  h1 { font-size: clamp(43px, 13.2vw, 62px); line-height: .98; }
  .hero .answer { font-size: 14px; line-height: 1.7; }
  .heroctas { display: grid; grid-template-columns: 1fr; gap: var(--s3); }
  .heroctas .cta, .herocmd { width: 100%; justify-content: center; text-align: center; }
  .heroctas .ghost { text-align: center; padding: var(--s2); }
  .measuremap { grid-template-columns: 1fr; margin-top: var(--s6); }
  .measuremap > div { display: grid; grid-template-columns: 92px 1fr; column-gap: var(--s3); }
  .measuremap b { margin-top: 0; }
  .measuremap small { grid-column: 2; }
  .heroproof { gap: var(--s3) var(--s5); }
  #receipts .tablewrap { display: none; }
  #receipts .productcards { display: grid; gap: var(--s3); }
  #receipts .rowkey { margin-bottom: var(--s4); }
  .pcfacts > div { grid-template-columns: 104px minmax(0, 1fr); }
  .pcvote { align-items: flex-start; flex-direction: column; }
  .pcvote .votebtns { width: 100%; }
  .pcvote .votebtns button { flex: 1; }
  .top { flex-wrap: wrap; align-items: center; row-gap: 0; position: relative; }
  .top .logo { flex: 1 1 auto; padding-right: 52px; }
  .navlinks {
    width: 100%; display: flex; align-items: center; gap: var(--s4);
    overflow-x: auto; white-space: nowrap; margin-top: var(--s3);
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    /* room for the last link to scroll out from under the chevron */
    padding-right: 34px;
    scroll-padding-inline: 34px;
    overscroll-behavior-inline: contain;
  }
  .navlinks::-webkit-scrollbar { display: none; }
  .navlinks a {
    margin-left: 0; flex: 0 0 auto;
    min-height: 44px; display: inline-flex; align-items: center;
  }
  /* out of the scroller, onto the logo row, where it is always reachable */
  .navlinks .themetog {
    position: absolute; top: -6px; right: 0; margin-left: 0;
    min-height: 34px; min-width: 40px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  /* the scroll affordance: alt text is empty so screen readers skip it */
  .top::after {
    content: "›";
    content: "›" / "";
    position: absolute; right: 0; bottom: 14px; height: 44px;
    display: flex; align-items: center; justify-content: flex-end;
    width: 46px; padding-right: 2px;
    font-size: 19px; line-height: 1; color: var(--hl);
    background: linear-gradient(to right, transparent 0, var(--bgtop) 55%);
    pointer-events: none; opacity: 1; transition: opacity .2s ease;
  }
  /* theme.js sets .navend when the row is scrolled all the way right */
  .top.navend::after { opacity: 0; }
}
/* a sold rail slot: no price, no "for sale", no rotation, and it names who paid */
.adslot.sold .adcard { border-color: var(--hl); }
.adlabel.sponsored { color: var(--hl); border-bottom-style: solid; }
.spcard.reserved { opacity: .72; cursor: default; }

/* --- dossier table on a phone ---------------------------------------------
   Three columns with a fixed 200px name column cannot fit 390px: the reasoning
   column overflows and the page scrolls sideways, which is how the criteria
   became unreadable on mobile. Below 720px each row becomes a block: the
   verdict mark and the criterion name on one line, the reasoning under it at
   full width. No horizontal scroll, nothing truncated. */
@media (max-width: 720px) {
  .dossier, .dossier tbody, .dossier tr, .dossier td { display: block; width: auto; }
  .dossier tr {
    border-bottom: 1px dashed var(--line);
    padding: var(--s4) 0;
  }
  .dossier tr:last-child { border-bottom: 0; }
  .dossier td { border-bottom: 0; padding: 0; }
  /* mark + name share a line; the mark keeps its colour as the yes/no signal */
  .dossier .cx {
    display: inline-block; width: auto; margin-right: 8px;
    font-size: 16px; vertical-align: baseline;
  }
  .dossier .cname { display: inline-block; width: auto; vertical-align: baseline; }
  .dossier .cname b { display: inline; font-size: 15px; }
  .dossier .cname span { display: block; margin-top: 1px; }
  .dossier .cwhy { margin-top: var(--s3); font-size: 14px; line-height: 1.65; }
  .dossier .cmeta { display: block; margin-top: var(--s3); line-height: 2; }
  /* the three-axis block and any wide table on a dossier also stop overflowing */
  .axes3 { grid-template-columns: 1fr; }
  table.cmp { font-size: 12.5px; }
  table.cmp tbody th { min-width: 110px; }
}


/* --- the hero shows the thing (F1/F2, 2026-08-11 feedback round 2) --------
   A reader said, verbatim: "я читаю и не выкупаю" — reads, doesn't get it.
   So the first screen now shows input -> output: one real result card and
   three steps, replacing the axis explainer that made us read like a
   research project. Methodology lives below the fold, where it belongs. */
.examplewrap { margin-top: var(--s5); max-width: 460px; }
.examplewrap svg { width: 100%; height: auto; display: block; border: 1px solid var(--line2); border-radius: 3px; }
.examplecap { font-size: 11.5px; color: var(--muted); margin-top: var(--s2); line-height: 1.6; }
.howstrip { display: flex; gap: var(--s5); margin-top: var(--s5); flex-wrap: wrap; }
.howstrip div { flex: 1 1 180px; font-size: 12.5px; color: var(--muted); line-height: 1.65; }
.howstrip i { font-style: normal; color: var(--hl); font-size: 11px; letter-spacing: 1.2px; display: block; margin-bottom: 3px; }
.howstrip code { color: var(--fg); background: var(--bg2); padding: 1px 6px; border: 1px solid var(--line); border-radius: 2px; }

/* F3: the punchline above the fold. Satire is the personality that travels;
   one line of it, linked to the dossier that backs it up. */
.heroroast { margin-top: var(--s5); font-size: 13.5px; color: var(--muted); max-width: 66ch; line-height: 1.7; }
.heroroast b { color: var(--fg); }
