/* BetNinja Casino player reviews (demo)
   Direction: trust-surface. Warm light ground, ink text, semantic
   green→red rating colors, white review cards, brand red reserved for
   the seal and small identity accents. Credibility over costume. */

/* Colorway: white ground, #0F0F0F/#5C5C5C ink, deep navy #1A1E73,
   bright blue #1434CB, gold #FCC015, #F7F7F7 panels. Rating tile
   colors stay semantic (trust-genre data colors). */
:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-2: #f7f7f7;
  --ink: #0f0f0f;
  --muted: #5c5c5c;
  --line: #e4e4e9;
  --line-strong: #c9c9d2;
  --brand: #1434cb;
  --navy: #1a1e73;
  --gold: #fcc015;
  --star: #fcc015;
  --good: #2e9e5b;
  --mid: #f0b400;
  --bad: #d93a2b;
  --tile-5: #219653;
  --tile-4: #7ab317;
  --tile-3: #f0b400;
  --tile-2: #f07f1e;
  --tile-1: #d93a2b;
  --tile-off: #d9d9de;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "Space Grotesk", "Archivo", system-ui, sans-serif;

  --text-hero: clamp(2rem, 1.1rem + 3.2vw, 3.3rem);
  --space-section: clamp(2.6rem, 1.8rem + 3.5vw, 5rem);
  --radius: 3px;
  --shadow-card: 0 1px 2px rgb(10 14 40 / .05), 0 6px 18px rgb(10 14 40 / .06);
  --shadow-card-hover: 0 2px 4px rgb(10 14 40 / .06), 0 12px 28px rgb(10 14 40 / .1);
  --duration: 250ms;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

.sr-only,
.sr-defs {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.mono { font-family: var(--font-mono); font-weight: 600; font-size: .78rem; letter-spacing: .02em; color: var(--navy); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- header ---------- */

.site-head {
  position: relative;
  padding: 1rem max(1.25rem, calc((100% - 1120px) / 2));
  background: var(--surface-2);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-seal { width: 30px; height: 30px; flex: none; }

.brand-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -.01em;
}

.brand-word em {
  font-family: var(--font-mono);
  font-style: normal;
  font-weight: 500;
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: -1px;
}

.site-nav { display: flex; gap: 1.3rem; margin-left: auto; }

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  padding: .3rem 0;
  border-bottom: 2px solid transparent;
}

.site-nav a[aria-disabled="true"] { opacity: .5; pointer-events: none; }

.site-nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--brand);
}

/* ---------- hero ---------- */

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--space-section) * .8) 1.25rem 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 3.5vw, 4rem);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 .9rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--text-hero);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .9rem;
  text-wrap: balance;
}

.hero-sub {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 0 1.8rem;
  font-size: .96rem;
}

.score { display: flex; align-items: center; gap: .9rem; }

.score-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 1.8rem + 2.4vw, 3.6rem);
  line-height: 1;
}

.score-meta { display: flex; flex-direction: column; gap: .3rem; }

.score-count { color: var(--muted); }

/* stars - rating-colored tiles, white blade-star glyph */

.stars { display: inline-flex; gap: 2px; }

.star {
  width: 18px;
  height: 18px;
  padding: 3px;
  border-radius: 3px;
  background: var(--tile-off);
  fill: #fff;
}

.stars[data-rating="5"] .star.on { background: var(--tile-5); }
.stars[data-rating="4"] .star.on { background: var(--tile-4); }
.stars[data-rating="3"] .star.on { background: var(--tile-3); }
.stars[data-rating="2"] .star.on { background: var(--tile-2); }
.stars[data-rating="1"] .star.on { background: var(--tile-1); }

.score-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
}

.hero-chips {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin: 1.1rem 0 0;
  font-size: .78rem;
  color: var(--muted);
}

.hero-chips .chip-icon { color: var(--good); }

/* rating histogram = summary card + filter */

.fortunes {
  display: grid;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: .9rem;
}

.fortune-row {
  display: grid;
  grid-template-columns: 6.6rem 1fr 2.2rem;
  align-items: center;
  gap: .8rem;
  width: 100%;
  padding: .5rem .6rem;
  background: none;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background var(--duration) var(--ease-out), border-color var(--duration) var(--ease-out);
}

.fortune-row:hover { background: var(--surface-2); }

.fortune-row[aria-pressed="true"] {
  background: var(--surface-2);
  border-color: var(--navy);
}

.row-label { font-size: .84rem; font-weight: 600; white-space: nowrap; }

.row-label small {
  color: var(--muted);
  font-weight: 500;
  font-size: .78rem;
}

.fortune-track {
  height: 9px;
  background: var(--surface-2);
  border-radius: 3px;
  overflow: hidden;
}

.fortune-bar {
  display: block;
  height: 100%;
  border-radius: 3px;
  background: var(--good);
  transform-origin: left center;
  transform: scaleX(var(--w, 0));
  transition: transform 650ms var(--ease-out);
}

.fortune-row[data-star="3"] .fortune-bar { background: var(--mid); }

.fortune-row[data-star="1"] .fortune-bar,
.fortune-row[data-star="2"] .fortune-bar { background: var(--bad); }

.fortune-count {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--muted);
  text-align: right;
}

/* ---------- toolbar ---------- */

.toolbar {
  position: sticky;
  top: 0;
  z-index: 5;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(8px);
  border-block: 1px solid var(--line);
  padding: .65rem max(1.25rem, calc((100% - 1120px) / 2));
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.search { flex: 1 1 220px; max-width: 330px; }

.search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  font-size: .88rem;
  padding: .5rem .75rem;
}

.search input::placeholder { color: #8a8a92; }

.verified-toggle {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  user-select: none;
  padding: .45rem .7rem;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  background: var(--surface);
  transition: color var(--duration), border-color var(--duration);
}

.verified-toggle:has(input:checked) {
  color: var(--ink);
  border-color: var(--good);
  background: #eef7f1;
}

.verified-toggle input { position: absolute; opacity: 0; }

.verified-toggle:has(input:focus-visible) { outline: 2px solid var(--brand); outline-offset: 2px; }

.chip-icon { width: 14px; height: 14px; color: var(--good); }

.sort select {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  font-size: .84rem;
  padding: .5rem .55rem;
}

.result-count { color: var(--muted); margin: 0 0 0 auto; }

.clear-btn,
.link-btn {
  background: none;
  border: none;
  color: var(--brand);
  font: inherit;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: .2rem;
}

/* ---------- write a review ---------- */

.write-btn {
  margin-top: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 3px;
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  padding: .65rem 1.3rem;
  cursor: pointer;
  transition: background var(--duration), color var(--duration);
}

.write-btn:hover { background: var(--navy); color: #fff; }

.write-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.2rem 1.3rem;
  margin-bottom: 1.1rem;
}

.write-panel h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 .8rem;
}

.rate-pick { border: none; margin: 0 0 .9rem; padding: 0; }

.rate-pick legend {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0;
  margin-bottom: .4rem;
}

.rate-tiles { display: inline-flex; gap: 3px; }

.rate-tile {
  width: 34px;
  height: 34px;
  padding: 6px;
  border: none;
  border-radius: 2px;
  background: var(--tile-off);
  cursor: pointer;
  transition: background 120ms;
}

.rate-tile svg { width: 100%; height: 100%; fill: #fff; display: block; }

.rate-tiles[data-value="5"] .rate-tile.lit { background: var(--tile-5); }
.rate-tiles[data-value="4"] .rate-tile.lit { background: var(--tile-4); }
.rate-tiles[data-value="3"] .rate-tile.lit { background: var(--tile-3); }
.rate-tiles[data-value="2"] .rate-tile.lit { background: var(--tile-2); }
.rate-tiles[data-value="1"] .rate-tile.lit { background: var(--tile-1); }

.field-row { display: flex; gap: .8rem; flex-wrap: wrap; }

.field {
  display: block;
  flex: 1 1 150px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .8rem;
}

.field input,
.field select,
.field textarea {
  display: block;
  width: 100%;
  margin-top: .3rem;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  font-size: .88rem;
  font-weight: 400;
  padding: .5rem .7rem;
}

.field textarea { resize: vertical; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.form-error { color: var(--bad); font-size: .82rem; font-weight: 600; margin: 0 0 .6rem; }

.form-actions { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }

.submit-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 3px;
  font: inherit;
  font-size: .88rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  cursor: pointer;
  transition: background var(--duration), color var(--duration);
}

.submit-btn:hover { background: var(--navy); color: #fff; }

.submit-btn[disabled] { opacity: .6; cursor: default; }

.form-note { font-size: .74rem; color: var(--muted); }

.form-success { color: var(--good); font-weight: 600; font-size: .9rem; margin: 0; }

/* ---------- layout: review list + sidebar ---------- */

.layout {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.3rem 1.25rem 2.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 316px;
  gap: 2rem;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 4.4rem;
  display: grid;
  gap: .9rem;
}

.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1rem 1.1rem;
}

.side-know { background: #eef1fb; border-color: #d7ddf4; }

.side-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  margin: 0 0 .45rem;
}

.side-card p { margin: 0 0 .55rem; font-size: .82rem; color: var(--muted); line-height: 1.5; }

.side-card p:last-child { margin-bottom: 0; }

.side-stat strong { color: var(--ink); font-size: 1rem; }

.side-sub { display: block; font-size: .76rem; }

.side-cat { letter-spacing: .04em; }

.side-link {
  font-size: .8rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.side-link[aria-disabled="true"] { color: var(--muted); pointer-events: none; text-decoration: none; }

.integrity {
  margin: .9rem 0 0;
  padding: .55rem .8rem;
  background: var(--surface-2);
  border-radius: 3px;
  font-size: .76rem;
  color: var(--muted);
}

.integrity a { color: var(--ink); }

/* ---------- topic chips ---------- */

.topics {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.topics-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-right: .2rem;
}

.topic-chip {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--ink);
  font: inherit;
  font-size: .8rem;
  font-weight: 600;
  padding: .35rem .75rem;
  cursor: pointer;
  transition: background var(--duration), color var(--duration), border-color var(--duration);
}

.topic-chip small {
  font-family: var(--font-mono);
  font-size: .68rem;
  color: var(--muted);
}

.topic-chip:hover { border-color: var(--ink); }

.topic-chip[aria-pressed="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.topic-chip[aria-pressed="true"] small { color: #cfd5de; }

/* ---------- review feed ---------- */

.feed {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  align-items: start;
}

.slip-exp {
  margin: -.35rem 0 .85rem;
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--muted);
}

.slip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 1.05rem 1.15rem 1rem;
  transition: transform var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.slip:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }

.reveal { opacity: 0; transform: translateY(12px); }

.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 450ms var(--ease-out), transform 450ms var(--ease-out);
}

.slip-head { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; }

.avatar {
  width: 34px;
  height: 34px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
}

.slip-who { min-width: 0; }

.slip-author {
  font-weight: 600;
  font-size: .89rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slip-meta {
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .03em;
}

.slip-date {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .66rem;
  color: var(--muted);
  flex: none;
}

.slip-rating { display: flex; align-items: center; gap: .55rem; margin-bottom: .3rem; }

.slip .star { width: 16px; height: 16px; padding: 2.5px; }

.verified-chip {
  display: inline-flex;
  align-items: center;
  gap: .28rem;
  font-family: var(--font-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--good);
}

.verified-chip .chip-icon { width: 12px; height: 12px; }

.slip-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 .35rem;
}

.slip-text { margin: 0 0 .85rem; font-size: .89rem; line-height: 1.55; color: #2c2c2c; }

.slip-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: .6rem;
}

.helpful-btn {
  margin-left: auto;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: .68rem;
  padding: .3rem .7rem;
  cursor: pointer;
  transition: color var(--duration), border-color var(--duration);
}

.helpful-btn:hover { color: var(--good); border-color: var(--good); }

.helpful-btn[disabled] { color: var(--good); border-color: var(--good); cursor: default; }

/* brand reply */

.reply {
  margin-top: .8rem;
  background: var(--surface-2);
  border-radius: 3px;
  padding: .75rem .85rem;
}

.reply-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-bottom: .35rem;
}

.reply-brand {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
}

.reply-brand svg { width: 14px; height: 14px; }

.reply-date { font-family: var(--font-mono); font-size: .64rem; color: var(--muted); }

.reply-text { margin: 0; font-size: .82rem; line-height: 1.5; color: #3d3d3d; }

/* ---------- supplementary Q&A ---------- */

.qa {
  max-width: 740px;
  margin: 0 auto;
  padding: 2.2rem 1.25rem var(--space-section);
  border-top: 1px solid var(--line);
}

.qa h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 1.8rem 0 .5rem;
}

.qa h2:first-child { margin-top: 0; }

.qa p { color: var(--muted); font-size: .9rem; margin: 0; }

/* ---------- empty state / footer ---------- */

.empty {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4rem;
  text-align: center;
  color: var(--muted);
}

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 1.8rem 1.25rem 2.4rem;
}

.site-foot p {
  max-width: 760px;
  margin: 0 auto .55rem;
  font-size: .78rem;
  color: var(--muted);
  text-align: center;
}

.foot-rg { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .05em; }

/* ---------- peripheral trust pages ---------- */

.subpage {
  max-width: 740px;
  margin: 0 auto;
  padding: 2.4rem 1.25rem var(--space-section);
}

.subpage h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem);
  letter-spacing: -.01em;
  line-height: 1.15;
  margin: 0 0 .4rem;
}

.page-updated {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.9rem;
}

.subpage h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  margin: 2rem 0 .55rem;
}

.subpage p { color: #3d3d3d; font-size: .92rem; margin: 0 0 .8rem; }
.subpage ul { margin: 0 0 .9rem; padding-left: 1.15rem; color: #3d3d3d; font-size: .92rem; }
.subpage li { margin-bottom: .35rem; }
.subpage li::marker { color: var(--brand); }
.subpage a { color: var(--brand); }
.subpage strong { color: var(--ink); }

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 1.4rem;
  margin: 0 auto 1.2rem;
  max-width: 760px;
}

.foot-nav a {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
  text-decoration: none;
}

.foot-nav a:hover { color: var(--ink); text-decoration: underline; }

.site-foot .foot-rg a { color: var(--muted); }

/* AI review summary */
.ai-summary {
  background: #eef1fb;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.1rem .85rem;
  margin-bottom: 1.2rem;
}

.ai-summary h3 {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin: 0 0 .5rem;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
}

.ai-icon { color: var(--navy); flex: none; }

.ai-summary p { margin: 0; font-size: .9rem; line-height: 1.55; color: #3d3d3d; }

.ai-summary .ai-note {
  margin-top: .55rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: .68rem;
  letter-spacing: .03em;
  color: var(--muted);
}

/* mobile menu button */
.nav-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- responsive / motion ---------- */

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .site-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    margin: 0;
    padding: .4rem 1.25rem 1rem;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
  }
  .site-nav.open a { padding: .55rem 0; font-size: .95rem; }
  .nav-btn { display: inline-flex; margin-left: auto; }
  .layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

@media (max-width: 480px) {
  .fortune-row { grid-template-columns: 5.6rem 1fr 1.9rem; gap: .5rem; padding-inline: .4rem; }
  .row-label small { display: none; }
  .result-count { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .fortune-bar { transition: none; }
  .reveal { opacity: 1; transform: none; }
  .slip, .slip:hover { transform: none; transition: none; }
}

/* metadata readouts: Space Grotesk + navy (operator directive 2026-09-18) */
.score-count, .result-count, .side-cat, .page-updated, .reply-date, .slip-date, .foot-rg {
  color: var(--navy);
}

/* lucide icon sizing */
.write-btn { display: inline-flex; align-items: center; gap: .5rem; }
.btn-icon { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 2; flex: none; }
