/* 10-0-0 — visual system per spec/design-handover-v1.0.md
   Source of truth: spec/property-game-mockup.html
   Brass = brand/CTA/active only. Green/red/amber = meaning only. */

/* ---------- design tokens ---------- */
:root {
  /* surfaces */
  --canvas: #0E1116;
  --surface: #171B22;
  --raised: #1E2530;
  --line: #252C37;
  /* brand */
  --brass: #C8A45C;
  --brass-lt: #E3C77F;
  --on-brass: #1a140a;
  /* semantic */
  --pos: #16C784;
  --neg: #EA3943;
  --watch: #F0B90B;
  /* text */
  --txt: #F4F6F9;
  --muted: #8A93A2;
  --faint: #5A626E;
  /* rarity tiers (wired to street growth percentile) */
  --tier-common: #6B7280;
  --tier-bronze: #B87333;
  --tier-silver: #C0C7D0;
  --tier-gold: #C8A45C;
  /* type */
  --disp: "Space Grotesk", system-ui, sans-serif;
  --body: "Inter", system-ui, sans-serif;
  --mono: "IBM Plex Mono", monospace;
}

/* ---------- self-hosted fonts ---------- */
@font-face { font-family: "Space Grotesk"; src: url("/fonts/space-grotesk-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/fonts/space-grotesk-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Space Grotesk"; src: url("/fonts/space-grotesk-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Inter"; src: url("/fonts/inter-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/fonts/plex-mono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/fonts/plex-mono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "IBM Plex Mono"; src: url("/fonts/plex-mono-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  color: var(--txt);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 1.5rem 20px;
}

h1, h2, h3 {
  font-family: var(--disp);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

button { font-family: var(--body); font-size: 1rem; cursor: pointer; }

:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* mono "terminal" label */
.k, .eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- buttons ---------- */
.btn-primary {
  background: var(--brass);
  color: var(--on-brass);
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.6rem;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease-out;
}
.btn-primary:hover:not(:disabled) { background: var(--brass-lt); }
.btn-primary:disabled { background: var(--surface); color: var(--faint); cursor: default; }

.btn-ghost {
  background: transparent;
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.6rem 1.1rem;
  transition: border-color 0.15s ease-out, color 0.15s ease-out;
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

/* ---------- entry screen ---------- */
#screen-entry { text-align: center; padding-top: 6vh; }
#screen-entry h1 {
  font-size: clamp(3.4rem, 12vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.tagline { font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); margin: 0.5rem 0 1.4rem; }
.intro { max-width: 34rem; margin: 0 auto 1.6rem; color: var(--muted); }

.entry-row { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
#postcode {
  font-family: var(--mono);
  font-size: 1.4rem;
  text-transform: uppercase;
  width: 9ch;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--txt);
  text-align: center;
}
#postcode::placeholder { color: var(--faint); }

#entry-message { min-height: 1.4em; color: var(--watch); font-weight: 600; font-size: 0.9rem; }

.modes { border: none; margin-top: 1.4rem; display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; padding: 0; }
.modes label { display: flex; flex-direction: column; align-items: center; gap: 0.15rem; cursor: pointer; font-family: var(--disp); font-weight: 600; }
.modes small { color: var(--muted); font-family: var(--body); font-weight: 400; }

/* ---------- board screen ---------- */
.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(14, 17, 22, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
}
.board-header h2 { font-size: 1.4rem; }
#board-subtitle { margin: 0.15rem 0 0; font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
#sound-toggle { background: var(--surface); border: 1px solid var(--line); border-radius: 30px; color: var(--txt); padding: 0.45rem 0.9rem; font-size: 0.85rem; }

.sponsor-strip {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 0.75rem;
  padding: 0.45rem 0.8rem;
  margin: 0.8rem 0 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sponsor-strip a { color: var(--brass); }
.sponsor-logo { height: 24px; width: auto; flex: none; }

.slots {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 1rem 0;
}
.slot {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 11px;
  min-height: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.4rem 0.2rem;
  text-align: center;
}
.slot.filled { border-style: solid; border-color: var(--brass); }
.slot.active { border-color: var(--muted); }
.slot-empty { font-family: var(--disp); font-weight: 600; font-size: 1.4rem; color: var(--faint); }
.slot-name { font-family: var(--disp); font-weight: 600; font-size: 0.66rem; line-height: 1.15; }
.slot-label { font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; }
.slot svg { border-radius: 6px; }

.reel-row { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; margin: 0.4rem 0 1rem; }
.reel {
  flex: 1;
  min-width: 220px;
  margin: 0;
  font-family: var(--mono);
  font-size: 0.95rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0.7rem 0.9rem;
  min-height: 2.6rem;
}

/* ---------- lot cards (asset rows, handover §5.5) ---------- */
.lots { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }

.lot {
  position: relative;
  background: var(--surface);
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  padding: 0.85rem 0.85rem 0.85rem calc(3px + 0.95rem);
}
.lot::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--tier-common);
}
.lot.tier-bronze::before { background: var(--tier-bronze); }
.lot.tier-silver::before { background: var(--tier-silver); }
.lot.tier-gold::before { background: var(--tier-gold); }
.lot.tier-prime::before { background: linear-gradient(180deg, #7af6ff, #b78bff, #ffb86b); }

.lot-tag {
  position: absolute;
  right: 0.85rem; top: 0.7rem;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  color: var(--faint);
  text-transform: uppercase;
}
.lot.tier-prime .lot-tag {
  background: linear-gradient(90deg, #7af6ff, #b78bff, #ffb86b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}

.lot header { display: flex; gap: 0.7rem; align-items: center; }
.lot header svg { flex: none; border-radius: 11px; }
.lot h3 { font-size: 1rem; font-weight: 600; line-height: 1.15; }
.lot-type { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.lot-meta { font-size: 0.8rem; color: var(--muted); margin: 0.6rem 0 0.35rem; }
.lot-meta b { color: var(--txt); font-variant-numeric: tabular-nums; }

.lot-spark { margin-bottom: 0.6rem; line-height: 0; display: flex; align-items: center; gap: 0.6rem; }
.lot-pct { font-family: var(--mono); font-size: 10px; line-height: 1.3; letter-spacing: 0.04em; color: var(--muted); }
body.expert .lot-spark { visibility: hidden; }

.lot-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 0.7rem;
}
.lot-stats .stat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.28rem 0.45rem;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
}
.lot-stats b { font-weight: 500; color: var(--muted); }
.lot-stats em { font-style: normal; font-family: var(--disp); font-weight: 600; font-size: 12px; font-variant-numeric: tabular-nums; }
.stat-bar { display: block; height: 3px; border-radius: 2px; background: var(--line); overflow: hidden; }
.stat-bar i { display: block; height: 100%; border-radius: 2px; }
.stat.r-hi .stat-bar i { background: var(--pos); }
.stat.r-md .stat-bar i { background: var(--watch); }
.stat.r-lo .stat-bar i { background: var(--neg); }
.stat.r-hi em { color: var(--pos); }
.stat.r-md em { color: var(--watch); }
.stat.r-lo em { color: var(--neg); }
body.expert .lot-stats, body.expert .lot-ovr { visibility: hidden; }

/* rating badge (handover §5.6) — tappable to explain */
.rating-chip {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  color: var(--txt);
  font-family: var(--disp);
  font-weight: 700;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  border: 2px solid var(--faint);
  cursor: pointer;
  padding: 0;
}
.rating-chip.r-hi { border-color: var(--pos); box-shadow: inset 0 0 12px rgba(22, 199, 132, 0.25); }
.rating-chip.r-md { border-color: var(--watch); box-shadow: inset 0 0 12px rgba(240, 185, 11, 0.2); }
.rating-chip.r-lo { border-color: var(--neg); box-shadow: inset 0 0 12px rgba(234, 57, 67, 0.2); }

.lot-foot { display: flex; justify-content: space-between; align-items: center; }
.lot-ovr { display: flex; align-items: center; gap: 0.5rem; font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.draft-btn {
  background: var(--brass);
  color: var(--on-brass);
  border: none;
  border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-family: var(--disp);
  font-weight: 600;
  transition: background 0.15s ease-out;
}
.draft-btn:hover { background: var(--brass-lt); }

/* radar drill-down (handover §6.3) */
.lot-radar[hidden] { display: none; }
.lot-radar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}
.lot-radar svg { width: 96px; height: 96px; flex-shrink: 0; }
.lot-radar .legend { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.lot-radar .legend div { display: flex; align-items: center; gap: 8px; font-family: var(--mono); font-size: 10px; color: var(--muted); letter-spacing: 0.04em; }
.lot-radar .legend i { width: 5px; height: 5px; border-radius: 50%; background: var(--brass); }
.lot-radar .legend b { color: var(--txt); font-weight: 600; font-variant-numeric: tabular-nums; margin-left: auto; }
.lot-radar .ovr-note { font-family: var(--mono); font-size: 9px; color: var(--faint); margin-top: 4px; letter-spacing: 0.02em; }

/* ---------- result screen ---------- */
#screen-result { text-align: center; }
.record {
  font-family: var(--disp);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: clamp(3.2rem, 12vw, 5.6rem);
  letter-spacing: -0.025em;
  margin: 1.2rem 0 0;
  line-height: 1;
}
.record-key { font-family: var(--mono); font-size: 10.5px; color: var(--muted); margin: 0.4rem 0 1rem; text-transform: uppercase; letter-spacing: 0.16em; }
.tier { font-family: var(--disp); font-weight: 600; font-size: 1.5rem; color: var(--brass); margin: 0; }
.squad { font-family: var(--mono); font-size: 0.8rem; color: var(--muted); margin: 0.4rem 0 0.3rem; font-variant-numeric: tabular-nums; }

.alpha {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-variant-numeric: tabular-nums;
  margin: 0 0 1.2rem;
  color: var(--muted);
}
.alpha b, .daily-reveal b { font-weight: 600; color: var(--txt); }
.up { color: var(--pos) !important; }
.dn { color: var(--neg) !important; }

.breakdown {
  text-align: left;
  max-width: 36rem;
  margin: 0 auto 1.4rem;
  padding-left: 1.2rem;
  line-height: 1.65;
  color: var(--muted);
  font-size: 0.92rem;
}
.breakdown b { color: var(--txt); }

.revealed { max-width: 36rem; margin: 0 auto 1.5rem; display: grid; gap: 8px; }
.reveal-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0.5rem 0.7rem;
  text-align: left;
  font-size: 0.85rem;
}
.reveal-row svg { border-radius: 8px; flex: none; }
.reveal-name { font-family: var(--disp); font-weight: 600; flex: none; }
.reveal-meta { flex: 1; color: var(--muted); font-family: var(--mono); font-size: 10px; letter-spacing: 0.04em; }
.reveal-ovr .rating-chip { width: 36px; height: 36px; font-size: 13px; cursor: default; }

.share-row { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
#share-link {
  font-family: var(--mono);
  font-size: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--muted);
  padding: 0.45rem 0.6rem;
  width: min(20rem, 100%);
}

.support-row { display: flex; flex-direction: column; gap: 0.4rem; align-items: center; }
.support-row a { color: var(--brass); font-size: 0.88rem; }

/* ---------- The Daily ---------- */
.daily {
  margin: 2.2rem auto 0;
  max-width: 26rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.2rem 1.2rem;
  text-align: left;
}
.daily-header {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.55rem;
  margin-bottom: 0.6rem;
}
.daily p { font-size: 0.85rem; color: var(--muted); }
.daily-streak { color: var(--brass); font-family: var(--mono); font-size: 0.72rem; min-height: 1em; }
.daily-count { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.daily-street-row { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; }
.daily-street-row h3 { font-size: 1.1rem; color: var(--txt); }
.daily-spark { line-height: 0; flex: none; }
.daily-buttons { display: flex; gap: 8px; margin-top: 0.6rem; }
.daily-buttons button {
  flex: 1;
  font-family: var(--mono);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.75rem 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--raised);
  color: var(--txt);
  transition: border-color 0.15s ease-out;
}
.daily-buttons button:hover:not(:disabled) { border-color: var(--brass); color: var(--brass); }
.daily-buttons button:disabled { opacity: 0.45; }
.daily-reveal { font-family: var(--mono); font-size: 0.78rem; min-height: 1.3em; color: var(--muted); }
#daily-share { margin-top: 0.5rem; font-family: var(--mono); font-size: 0.75rem; }

/* ---------- weekly + street teaser ---------- */
.weekly { margin: 1.6rem 0 0; }
.weekly a { color: var(--brass); font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.04em; }
.street-teaser { font-size: 0.85rem; margin-top: 0.8rem; color: var(--muted); }
.street-teaser a { color: var(--txt); }

/* ---------- My Street page ---------- */
#street-page { text-align: center; padding-top: 4vh; }
.street-title { font-size: clamp(2.4rem, 9vw, 4rem); font-weight: 700; }
#street-picker { margin-top: 1.2rem; }
#street-select {
  font-family: var(--body);
  font-size: 1rem;
  padding: 0.6rem 0.7rem;
  max-width: min(26rem, 100%);
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--txt);
}
#street-message { min-height: 1.4em; color: var(--watch); font-weight: 600; font-size: 0.9rem; }
#street-result { margin-top: 1.4rem; }
.street-canvas {
  width: min(640px, 100%);
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.6);
}
.street-caption { max-width: 36rem; margin: 0.9rem auto; color: var(--muted); }
#street-result .share-row { margin-bottom: 0.6rem; }
#street-result .btn-ghost, #street-result a.btn-ghost { text-decoration: none; display: inline-block; }

/* ---------- mobile tab bar (handover §5.7) ---------- */
.tab-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: 64px;
  background: rgba(13, 16, 22, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.tab-bar a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  color: var(--faint);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tab-bar a.active, .tab-bar a:hover { color: var(--brass); }
.tab-icon { font-size: 1.1rem; line-height: 1; }
.tab-bar svg { width: 21px; height: 21px; }

@media (max-width: 640px) {
  .tab-bar { display: flex; }
  body { padding-bottom: 4rem; }
}

/* ---------- ad slots ---------- */
.ad-slot:not(:empty), .ad-between:not(:empty) { margin: 1.2rem auto; max-width: 42rem; }

/* ---------- footer ---------- */
footer {
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  text-align: center;
  color: var(--muted);
}
footer p { margin: 0.25rem 0; }
.footer-nav { margin-bottom: 0.5rem; }
.footer-nav a { color: var(--brass); }

/* ---------- content pages (guides + postcode pages) ---------- */
body.content-page { background: var(--canvas); color: var(--txt); }

.site-header {
  background: rgba(14, 17, 22, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 20px;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-logo {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--txt);
  text-decoration: none;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.site-header nav { display: flex; gap: 1rem; flex-wrap: wrap; }
.site-header nav a { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.site-header nav a:hover { color: var(--brass); }

.content { max-width: 42rem; line-height: 1.65; }
.content h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); margin: 0.5rem 0 1rem; }
.content h2 { font-size: 1.3rem; margin: 1.8rem 0 0.5rem; }
.content p { color: #c7cdd6; }
.content a { color: var(--brass); }

.btn-link {
  display: inline-block;
  background: var(--brass);
  color: var(--on-brass) !important;
  text-decoration: none;
  font-family: var(--disp);
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}

.price-table {
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 0.8rem;
  width: 100%;
  max-width: 28rem;
  font-variant-numeric: tabular-nums;
}
.price-table th, .price-table td { border: 1px solid var(--line); padding: 0.4rem 0.7rem; text-align: right; }
.price-table th:first-child, .price-table td:first-child { text-align: left; }
.price-table thead { background: var(--surface); color: var(--muted); text-transform: uppercase; font-size: 0.68rem; letter-spacing: 0.08em; }

.guide-list, .area-list { line-height: 1.8; color: #c7cdd6; }
.small-print { font-size: 0.78rem; color: var(--faint); margin-top: 2rem; }

body.content-page .sponsor-strip { max-width: 36rem; }

/* ---------- small screens ---------- */
@media (max-width: 480px) {
  .slots { grid-template-columns: repeat(3, 1fr); }
  .board-header h2 { font-size: 1.2rem; }
}

/* ---------- motion (handover §7) ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
