/* Bet of the Day — How It Works · viz-specific CSS
 * ═════════════════════════════════════════════════════════
 * Shell styles (backdrop, HUD, rail, act typography, brain
 * chat-stream, leaderboard, merkle tree) live in
 * pick_winner_how_it_works.css and load first. This file only
 * carries the BoD-specific visualisations.
 *
 * Ordering below mirrors the acts in the template so it's easy
 * to find the styles for a given stage:
 *   Act 1 · Universe        — race-grid mosaic + central pool
 *   Act 2 · Eligibility     — Sankey waterfall
 *   Act 3 · Feature scoring — 7 parallel plugin pipes
 *   Act 4 · Composite       — stacked contribution bar
 *   Act 6 · Conviction      — dial-meter clamps + tier slots
 *   Act 7 · Value edge      — bell-curve overlay
 *   Act 8 · Narrative       — reveal card
 *   Act 9 · Flywheel        — circular orbit hub
 * Continuous motion + mobile trims sit at the bottom.
 */

/* ── Act 1 · Race-grid mosaic ───────────────────────────── */

.bod-mosaic {
  margin: 36px 0 20px;
  padding: 24px;
  background: rgba(6, 10, 20, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  align-items: center;
}
.bod-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
  gap: 6px;
  max-height: 260px;
  overflow: hidden;
}
.bod-mosaic__tile {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(11, 18, 32, 0.75);
  border: 1px solid rgba(212, 175, 55, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Consolas', monospace;
  font-size: 8.5px;
  letter-spacing: 0.04em;
  color: rgba(240, 232, 213, 0.55);
  transition: border-color 0.4s ease, background 0.4s ease;
}
.bod-mosaic__tile.is-hot {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.35);
}
.bod-mosaic__core {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 26px 16px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 6px;
  background: rgba(11, 18, 32, 0.6);
  text-align: center;
  animation: bodCorePulse 3.4s ease-in-out infinite;
}
@keyframes bodCorePulse {
  0%, 100% { box-shadow: 0 0 12px rgba(212, 175, 55, 0.2); }
  50%      { box-shadow: 0 0 26px rgba(212, 175, 55, 0.6); }
}
.bod-mosaic__core-lbl {
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.75);
  margin-bottom: 10px;
}
.bod-mosaic__core-count {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 40px;
  font-weight: 700;
  color: #d4af37;
  line-height: 1;
}
.bod-mosaic__core-unit {
  margin-top: 6px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.55);
}

/* ── Act 2 · Sankey waterfall ───────────────────────────── */

.bod-waterfall {
  margin: 32px 0 16px;
  padding: 22px;
  background: rgba(6, 10, 20, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
}
.bod-waterfall__svg {
  width: 100%;
  height: auto;
  max-height: 340px;
}
.bod-waterfall__srcnum,
.bod-waterfall__outnum {
  fill: #d4af37;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
}
.bod-waterfall__srclbl,
.bod-waterfall__outlbl {
  fill: rgba(240, 232, 213, 0.6);
  font-family: 'Consolas', monospace;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bod-waterfall__flow {
  fill: none;
  stroke: url(#bod-flow-in);
  stroke-width: 22;
  stroke-linecap: round;
  opacity: 0.75;
}
.bod-waterfall__cut {
  fill: none;
  stroke: url(#bod-flow-out);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 4 4;
}
.bod-waterfall__gate {
  fill: rgba(240, 232, 213, 0.85);
  font-family: 'Consolas', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bod-waterfall__drop {
  fill: rgba(239, 68, 68, 0.85);
  font-family: 'Consolas', monospace;
  font-size: 12px;
  font-weight: 700;
}

/* ── Act 3 · Feature-plugin pipes ───────────────────────── */

.bod-pipes {
  margin: 32px 0 20px;
  padding: 22px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 26px;
  align-items: center;
}
.bod-pipes__svg {
  width: 100%;
  height: auto;
  max-height: 380px;
}
.bod-pipe__wall {
  fill: none;
  stroke: rgba(212, 175, 55, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
}
.bod-pipe__lbl {
  fill: rgba(212, 175, 55, 0.75);
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bod-pipe__particle {
  fill: #d4af37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.7));
}
.bod-pipes__merge {
  fill: none;
  stroke: rgba(212, 175, 55, 0.4);
  stroke-width: 2;
}
.bod-pipes__out {
  fill: rgba(11, 18, 32, 0.95);
  stroke: #d4af37;
  stroke-width: 1.5;
}
.bod-pipes__out-lbl {
  fill: #d4af37;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.bod-pipes__legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
  font-family: 'Consolas', monospace;
  font-size: 11.5px;
  color: rgba(240, 232, 213, 0.78);
}
.bod-pipes__legend li {
  padding: 6px 10px;
  border-left: 2px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.bod-pipes__legend li.is-active {
  border-left-color: #d4af37;
  background: rgba(212, 175, 55, 0.05);
}
.bod-pipes__legend b { color: #d4af37; display: block; }
.bod-pipes__legend span { color: rgba(240, 232, 213, 0.55); font-size: 10px; }

/* ── Act 4 · Composite contribution bar ─────────────────── */

.bod-contrib {
  margin: 32px 0 16px;
  padding: 22px 26px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
  font-family: 'Consolas', monospace;
}
.bod-contrib__hdr {
  margin: 0 0 16px;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.7);
}
.bod-contrib__bars {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.bod-contrib__row {
  display: grid;
  grid-template-columns: 88px 1fr 70px;
  gap: 12px;
  align-items: center;
  font-size: 12px;
}
.bod-contrib__lbl {
  color: rgba(240, 232, 213, 0.85);
  letter-spacing: 0.08em;
}
.bod-contrib__bar {
  position: relative;
  height: 18px;
  background: rgba(240, 232, 213, 0.05);
  border-radius: 2px;
  overflow: hidden;
}
.bod-contrib__bar em {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* Progressive enhancement: default width to --w so bars render
   * correctly if JS never runs. Animation resets to 0% then
   * tweens back via GSAP. */
  width: var(--w, 0%);
  background: linear-gradient(90deg,
              rgba(212, 175, 55, 0.35),
              rgba(212, 175, 55, 0.85));
  transition: width 1s ease-out;
}
.bod-contrib__row[data-sign="neg"] .bod-contrib__bar em {
  background: linear-gradient(90deg,
              rgba(239, 68, 68, 0.55),
              rgba(239, 68, 68, 0.9));
}
.bod-contrib__val {
  text-align: right;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f0e8d5;
}
.bod-contrib__row[data-sign="pos"] .bod-contrib__val { color: #4ade80; }
.bod-contrib__row[data-sign="neg"] .bod-contrib__val { color: rgba(239, 68, 68, 0.9); }
.bod-contrib__sum {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 12px;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}
.bod-contrib__sum-lbl {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4af37;
}
.bod-contrib__sum-val {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: #f0e8d5;
  text-align: right;
}
.bod-contrib__sum-scale {
  font-size: 12px;
  color: rgba(240, 232, 213, 0.5);
  letter-spacing: 0.12em;
}

/* ── Act 6 · Conviction clamps + tier slots ─────────────── */

.bod-clamps {
  margin: 32px 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.bod-clamp {
  padding: 16px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
}
.bod-clamp[data-clamped="true"] {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.06);
}
.bod-clamp__meter {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(240, 232, 213, 0.08);
  overflow: hidden;
  margin-bottom: 12px;
}
.bod-clamp__meter em {
  position: absolute;
  inset: 0;
  /* Progressive-enhancement default — see .bod-contrib__bar em. */
  width: var(--v, 0%);
  background: linear-gradient(90deg,
              rgba(212, 175, 55, 0.4),
              rgba(212, 175, 55, 0.95));
  transition: width 1s ease-out;
}
.bod-clamp[data-clamped="true"] .bod-clamp__meter em {
  background: linear-gradient(90deg,
              rgba(239, 68, 68, 0.55),
              rgba(239, 68, 68, 0.95));
}
.bod-clamp__k {
  margin: 0 0 4px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.7);
}
.bod-clamp[data-clamped="true"] .bod-clamp__k {
  color: rgba(239, 68, 68, 0.85);
}
.bod-clamp__v {
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: #f0e8d5;
}
.bod-clamp__msg {
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(240, 232, 213, 0.65);
}
.bod-clamp__msg b { color: #d4af37; }
.bod-clamp[data-clamped="true"] .bod-clamp__msg b { color: rgba(239, 68, 68, 0.95); }

.bod-tier {
  margin: 24px 0 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 5px;
}
.bod-tier__k {
  font-family: 'Consolas', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.55);
}
.bod-tier__slots {
  display: flex;
  gap: 10px;
}
.bod-tier__slot {
  padding: 8px 16px;
  font-family: 'Consolas', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(240, 232, 213, 0.4);
  border: 1px solid rgba(240, 232, 213, 0.14);
  border-radius: 3px;
  transition: all 0.4s ease;
}
.bod-tier__slot--on {
  color: #d4af37;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
  animation: bodTierPulse 2.4s ease-in-out infinite;
}
@keyframes bodTierPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 175, 55, 0.25); }
  50%      { box-shadow: 0 0 20px rgba(212, 175, 55, 0.65); }
}

/* ── Act 7 · Value-edge bell-curve overlay ──────────────── */

.bod-edge {
  margin: 32px 0 16px;
  padding: 22px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
}
.bod-edge__svg {
  width: 100%;
  height: auto;
  max-height: 320px;
}
.bod-edge__axis {
  stroke: rgba(240, 232, 213, 0.2);
  stroke-width: 1;
}
.bod-edge__ax-lbl {
  fill: rgba(240, 232, 213, 0.5);
  font-family: 'Consolas', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bod-edge__curve {
  fill: none;
  stroke-width: 2;
  /* Default visible so the page reads correctly if JS never fires.
   * Animation fades in from 0 via g.fromTo instead. */
  opacity: 1;
  transition: opacity 0.8s ease;
}
.bod-edge__curve.is-drawn { opacity: 1; }
.bod-edge__curve--market {
  stroke: rgba(240, 232, 213, 0.55);
  stroke-dasharray: 4 4;
}
.bod-edge__curve--model {
  stroke: #d4af37;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}
.bod-edge__shade {
  opacity: 1;      /* progressive-enhancement default — see .bod-edge__curve */
  transition: opacity 0.8s ease 0.4s;
}
.bod-edge__shade.is-lit { opacity: 1; }
.bod-edge__mean {
  stroke-width: 1;
  stroke-dasharray: 2 3;
  opacity: 1;      /* progressive-enhancement default */
  transition: opacity 0.6s ease;
}
.bod-edge__mean.is-lit { opacity: 1; }
.bod-edge__mean--market { stroke: rgba(240, 232, 213, 0.6); }
.bod-edge__mean--model  { stroke: #d4af37; }
.bod-edge__mean-lbl {
  fill: rgba(240, 232, 213, 0.7);
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bod-edge__shade-lbl {
  fill: #d4af37;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
  opacity: 1;      /* progressive-enhancement default */
  transition: opacity 0.8s ease 0.8s;
}
.bod-edge__shade-lbl.is-lit { opacity: 1; }
.bod-edge__formula {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: rgba(11, 18, 32, 0.6);
  border-left: 2px solid #d4af37;
  border-radius: 3px;
  font-family: 'Consolas', monospace;
  font-size: 13px;
  color: #d4af37;
}
.bod-edge__formula code {
  font-family: inherit;
  color: inherit;
  background: none;
  padding: 0;
}

/* ── Act 8 · Narrative reveal ───────────────────────────── */

.bod-narrative {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  margin: 32px 0 24px;
  align-items: stretch;
}
.bod-narrative__reveal {
  padding: 22px;
  background: rgba(6, 10, 20, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 5px;
  animation: bodRevealPulse 3.6s ease-in-out infinite;
}
@keyframes bodRevealPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.15); }
  50%      { box-shadow: 0 0 22px rgba(212, 175, 55, 0.4); }
}
.bod-narrative__k {
  margin: 0 0 14px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4af37;
}
.bod-narrative__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  margin: 0;
  font-family: 'Georgia', serif;
  font-size: 14px;
  line-height: 1.5;
}
.bod-narrative__dl dt {
  color: rgba(212, 175, 55, 0.7);
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-top: 4px;
}
.bod-narrative__dl dd {
  color: #f0e8d5;
  margin: 0;
}
.bod-conv {
  display: inline-block;
  padding: 3px 10px;
  font-family: 'Consolas', monospace;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 3px;
  font-weight: 700;
}
.bod-conv--med  { color: #d4af37; border-color: rgba(212, 175, 55, 0.5); background: rgba(212, 175, 55, 0.08); }
.bod-conv--high { color: #4ade80; border-color: rgba(74, 222, 128, 0.5);  background: rgba(74, 222, 128, 0.08); }
.bod-conv--spec { color: rgba(240, 232, 213, 0.55); border-color: rgba(240, 232, 213, 0.2); }
.bod-narrative__verify-note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(212, 175, 55, 0.18);
  font-family: 'Consolas', monospace;
  font-size: 11px;
  color: rgba(240, 232, 213, 0.5);
  font-style: italic;
}
.bod-narrative__verify {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(212, 175, 55, 0.18);
  display: flex;
  justify-content: flex-start;
}
.bod-narrative__dl .pw-cine__winner-verdict {
  padding: 3px 10px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  margin-top: 0;
}

/* ── Act 9 · Flywheel HUD (iteration counter above viz) ── */

.bod-flywheel-hud {
  margin: 24px auto 0;
  max-width: 620px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-family: 'Consolas', 'SF Mono', 'Monaco', monospace;
  font-size: 11.5px;
  background: rgba(6, 10, 20, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 3px;
  color: rgba(240, 232, 213, 0.85);
}
.bod-flywheel-hud__k {
  color: rgba(212, 175, 55, 0.65);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 10px;
}
.bod-flywheel-hud__v {
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.bod-flywheel-hud__sep {
  color: rgba(212, 175, 55, 0.25);
  padding: 0 4px;
}

/* ── Act 9 · Measurement flywheel (circular orbit) ─────── */

.bod-flywheel {
  margin: 32px 0 20px;
  padding: 22px;
  background: rgba(6, 10, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 5px;
  display: flex;
  justify-content: center;
}
.bod-flywheel__svg {
  width: 100%;
  height: auto;
  max-width: 520px;
  max-height: 520px;
}
.bod-flywheel__hub-halo {
  animation: bodHubHalo 3.4s ease-in-out infinite;
  transform-origin: 260px 260px;
}
@keyframes bodHubHalo {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.15); }
}
.bod-flywheel__hub {
  fill: rgba(11, 18, 32, 0.95);
  stroke: #d4af37;
  stroke-width: 1.5;
}
.bod-flywheel__hub-lbl {
  fill: #d4af37;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
}
.bod-flywheel__hub-sub {
  fill: rgba(240, 232, 213, 0.5);
  font-family: 'Consolas', monospace;
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bod-flywheel__ring {
  fill: none;
  stroke: rgba(212, 175, 55, 0.3);
  stroke-width: 1.2;
  stroke-dasharray: 3 4;
  animation: bodRingFlow 24s linear infinite;
}
@keyframes bodRingFlow {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -1132; }   /* 2π · 180 ≈ 1131 */
}
.bod-flywheel__node-circle {
  fill: rgba(11, 18, 32, 0.95);
  stroke: rgba(212, 175, 55, 0.55);
  stroke-width: 1.5;
  transition: stroke 0.4s ease, filter 0.4s ease;
}
.bod-flywheel__node-circle.is-hot {
  stroke: #d4af37;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.65));
}
.bod-flywheel__node-lbl {
  fill: #d4af37;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.bod-flywheel__node-sub {
  fill: rgba(240, 232, 213, 0.55);
  font-family: 'Consolas', monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.bod-flywheel__pulse {
  fill: #d4af37;
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.8));
}

/* ── Act badge (β in progress) ──────────────────────────── */

.bod-in-progress {
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-family: 'Consolas', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(74, 222, 128, 0.85);
  border: 1px solid rgba(74, 222, 128, 0.35);
  border-radius: 3px;
  background: rgba(74, 222, 128, 0.06);
  vertical-align: middle;
}

/* ── Mobile trims ───────────────────────────────────────── */

@media (max-width: 900px) {
  .bod-mosaic    { grid-template-columns: 1fr; }
  .bod-pipes     { grid-template-columns: 1fr; }
  .bod-narrative { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .bod-clamps    { grid-template-columns: 1fr 1fr; gap: 10px; }
  .bod-clamp     { padding: 12px; }
  .bod-contrib   { padding: 16px 14px; }
  .bod-contrib__row { grid-template-columns: 60px 1fr 54px; font-size: 10.5px; }
  .bod-contrib__lbl { font-size: 10.5px; }
  .bod-contrib__sum-val { font-size: 22px; }
  .bod-mosaic__core-count { font-size: 32px; }
  .bod-tier      { flex-direction: column; gap: 12px; padding: 14px; }
}

/* Respect reduced-motion — halt every continuous keyframe */
@media (prefers-reduced-motion: reduce) {
  .bod-mosaic__core, .bod-tier__slot--on,
  .bod-narrative__reveal, .bod-flywheel__hub-halo,
  .bod-flywheel__ring
  { animation: none !important; }
}
