:root {
  --bg: #080b0a;
  --bg-2: #0d1311;
  --card: rgba(255, 255, 255, 0.035);
  --card-brd: rgba(255, 255, 255, 0.08);
  --ink: #eafaf0;
  --muted: #8ca298;
  --faint: #5c6f66;
  --grad-1: #10b981;
  --grad-2: #a3e635;
  --grad-3: #f5b83d;
  --gold: #f5c542;
  --green: #34e6a4;
  --amber: #fbbf24;
  --red: #fb7185;
  --line: rgba(255, 255, 255, 0.14);
  --radius: 18px;
  --shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.75);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Space Grotesk", system-ui, sans-serif;
  background: radial-gradient(1200px 800px at 80% -10%, #10201a 0%, var(--bg) 55%);
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo b { font-family: "Sora", sans-serif; }

/* Animated background orbs */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; }
.orb-1 { width: 480px; height: 480px; background: var(--grad-1); top: -120px; left: -80px; animation: float1 18s ease-in-out infinite; }
.orb-2 { width: 420px; height: 420px; background: var(--grad-2); top: 30%; right: -100px; animation: float2 22s ease-in-out infinite; }
.orb-3 { width: 380px; height: 380px; background: var(--grad-3); bottom: -120px; left: 30%; animation: float1 26s ease-in-out infinite reverse; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(40px,60px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,40px)} }

main, .nav, .foot { position: relative; z-index: 1; }

/* Nav */
.nav {
  max-width: 1120px; margin: 0 auto; padding: 26px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }
.brand b { font-weight: 800; }
.logo { color: var(--grad-2); font-size: 1.2rem; filter: drop-shadow(0 0 10px var(--grad-2)); }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 0.92rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }

/* Hero */
.hero { max-width: 1120px; margin: 0 auto; padding: 60px 24px 30px; text-align: center; }
.tag {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--card-brd);
  color: var(--muted); font-size: 0.8rem; letter-spacing: 0.04em; margin-bottom: 26px;
}
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; }
.grad { background: linear-gradient(100deg, var(--grad-1), var(--grad-2) 55%, var(--grad-3)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lede { max-width: 640px; margin: 22px auto 0; color: var(--muted); font-size: 1.08rem; line-height: 1.55; }

.hero-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 42px; }
.hstat {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 20px 26px; min-width: 150px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}
.hstat .num { font-family: "Sora"; font-size: 2.1rem; font-weight: 800; letter-spacing: -0.02em; }
.hstat .lbl { color: var(--faint); font-size: 0.82rem; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.06em; }
.num.g { color: var(--green); } .num.b { color: var(--grad-2); } .num.p { color: var(--grad-1); } .num.gold { color: var(--gold); }
.updated { color: var(--faint); font-size: 0.82rem; margin-top: 24px; }

/* Sections */
.section { max-width: 1120px; margin: 0 auto; padding: 56px 24px; }
.section-head { margin-bottom: 30px; }
.section-head h2 { font-size: 1.9rem; font-weight: 700; letter-spacing: -0.02em; }
.section-head p { color: var(--muted); margin-top: 8px; }

/* Score cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 24px; position: relative; overflow: hidden; backdrop-filter: blur(8px);
  transition: transform 0.25s, border-color 0.25s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.18); }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--grad-1), var(--grad-2)); opacity: 0.8; }
.card .big { font-family: "Sora"; font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em; }
.card .cap { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.card .sub { color: var(--faint); font-size: 0.8rem; margin-top: 10px; }
.bar { height: 7px; border-radius: 99px; background: rgba(255,255,255,0.08); margin-top: 14px; overflow: hidden; }
.bar > span { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--grad-2), var(--green)); }

/* Filters */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 18px; }
.chip {
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--card-brd);
  background: var(--card); color: var(--muted); font-size: 0.86rem; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.chip:hover { color: var(--ink); }
.chip.active { background: linear-gradient(100deg, var(--grad-1), var(--grad-2)); color: #06101f; border-color: transparent; font-weight: 600; }

/* Predictions — predicted vs actual, made obvious */
.legend { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 20px; color: var(--muted); font-size: 0.82rem; }
.legend .lg { display: inline-flex; align-items: center; }
.lg-dot { width: 9px; height: 9px; border-radius: 50%; margin-right: 8px; }
.hl-pred { color: var(--grad-2); } .hl-real { color: var(--gold); }

.pred-list { display: flex; flex-direction: column; gap: 10px; }
.pmatch {
  display: grid; grid-template-columns: 128px 1fr auto 128px; align-items: center; gap: 20px;
  background: var(--card); border: 1px solid var(--card-brd); border-radius: 14px;
  padding: 14px 20px; backdrop-filter: blur(6px); position: relative; overflow: hidden;
  transition: transform 0.18s, border-color 0.18s;
}
.pmatch::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--faint); }
.pmatch:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.16); }
.pmatch.pm-exact::before { background: var(--green); }
.pmatch.pm-dir::before { background: var(--amber); }
.pmatch.pm-miss::before { background: var(--red); }
.pmatch.pm-pending::before { background: var(--faint); }

.pm-meta { display: flex; flex-direction: column; gap: 4px; }
.pm-round { font-size: 0.78rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.pm-conf { font-size: 0.72rem; color: var(--faint); }

.pm-teams { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pm-side { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.pm-home { justify-content: flex-end; text-align: right; }
.pm-away { justify-content: flex-start; }
.pm-name { font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pm-vs { color: var(--faint); font-size: 0.78rem; font-weight: 600; }

.tier { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 2px 7px; border-radius: 6px; white-space: nowrap; border: 1px solid transparent; }
.t-elite { background: rgba(245,197,66,0.14); color: var(--gold); border-color: rgba(245,197,66,0.3); }
.t-contender { background: rgba(52,230,164,0.12); color: var(--green); border-color: rgba(52,230,164,0.28); }
.t-darkhorse { background: rgba(163,230,53,0.1); color: var(--grad-2); border-color: rgba(163,230,53,0.24); }
.t-challenger { background: rgba(138,148,179,0.12); color: var(--muted); }
.t-underdog { background: rgba(255,255,255,0.04); color: var(--faint); }

.pm-scores { display: flex; align-items: center; gap: 12px; }
.pm-box { text-align: center; min-width: 74px; padding: 6px 10px; border-radius: 10px; border: 1px solid transparent; }
.pm-cap { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 3px; }
.pm-val { font-family: "Sora"; font-weight: 800; font-size: 1.25rem; letter-spacing: 0.01em; }
.pm-val .dash { margin: 0 2px; opacity: 0.5; }
.b-pred { background: rgba(163,230,53,0.08); border-color: rgba(163,230,53,0.22); }
.b-pred .pm-cap { color: var(--grad-2); }
.b-real { background: rgba(245,197,66,0.08); border-color: rgba(245,197,66,0.22); }
.b-real .pm-cap { color: var(--gold); }
.b-tbd .pm-cap { color: var(--faint); }
.pm-wait { font-size: 0.8rem !important; font-weight: 500; color: var(--faint); font-family: "Space Grotesk"; }
.pm-pens { font-size: 0.66rem; font-weight: 700; color: var(--gold); margin-top: 3px; text-transform: uppercase; letter-spacing: 0.03em; }
.pm-arrow { color: var(--faint); font-size: 0.74rem; font-weight: 600; }

.pm-verdict { text-align: right; }
.verdict { display: inline-block; font-size: 0.76rem; font-weight: 700; padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
.v-exact { background: rgba(53,230,164,0.14); color: var(--green); }
.v-dir { background: rgba(255,179,71,0.14); color: var(--amber); }
.v-miss { background: rgba(255,107,129,0.13); color: var(--red); }
.v-tbd { background: rgba(138,148,179,0.12); color: var(--muted); }
.pm-empty { text-align: center; color: var(--faint); padding: 30px; }

.badge { display: inline-block; padding: 3px 9px; border-radius: 7px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.b-exact { background: rgba(53,230,164,0.14); color: var(--green); }
.b-dir { background: rgba(255,179,71,0.14); color: var(--amber); }
.b-miss { background: rgba(255,107,129,0.13); color: var(--red); }
.b-pending { background: rgba(138,148,179,0.14); color: var(--muted); }
.d-exact{background:var(--green)} .d-dir{background:var(--amber)} .d-miss{background:var(--red)} .d-pending{background:var(--faint)}

/* Futures */
.futures { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.future {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 26px; display: flex; align-items: center; gap: 18px; position: relative; overflow: hidden;
}
.future::after { content: ""; position: absolute; right: -30px; top: -30px; width: 120px; height: 120px; background: radial-gradient(circle, var(--gold), transparent 70%); opacity: 0.12; }
.future .ic { font-size: 2rem; }
.future .lbl { color: var(--muted); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.future .pk { font-family: "Sora"; font-size: 1.5rem; font-weight: 800; margin-top: 4px; }
.future .mp { color: var(--faint); font-size: 0.8rem; margin-top: 6px; }

/* Title race */
.race { display: flex; flex-direction: column; gap: 12px; }
.rrow { display: grid; grid-template-columns: 150px 1fr 56px; align-items: center; gap: 16px; }
.rrow .rteam { font-weight: 500; }
.rrow .rbar { height: 12px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; }
.rrow .rbar > span { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--grad-1), var(--grad-3)); }
.rrow .rpct { font-family: "Sora"; font-weight: 700; text-align: right; }
.rrow:first-child .rbar > span { background: linear-gradient(90deg, var(--gold), var(--amber)); }
.rrow:first-child .rpct { color: var(--gold); }
.rrow.rpick .rteam { font-weight: 700; }

/* Footer */
.foot {
  max-width: 1120px; margin: 40px auto 0; padding: 30px 24px 50px;
  border-top: 1px solid var(--card-brd); display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; color: var(--faint); font-size: 0.84rem;
}

/* Flags */
.flag { font-size: 1.15em; vertical-align: -0.06em; }

/* Knockout bracket */
.bracket-scroll { overflow-x: auto; padding-bottom: 10px; }
.bracket { --bx-gap: 40px; display: flex; gap: var(--bx-gap); min-width: max-content; align-items: stretch; }
.round { display: flex; flex-direction: column; min-width: 208px; }
.round-head {
  text-align: center; color: var(--faint); font-size: 0.74rem; text-transform: uppercase;
  letter-spacing: 0.08em; font-weight: 600; padding-bottom: 12px; position: sticky; left: 0;
}
.match { flex: 1 1 0; display: flex; align-items: center; position: relative; }
/* horizontal connector out to the next round */
.round:not(.r-last) .match::after {
  content: ""; position: absolute; right: calc(-1 * var(--bx-gap)); top: 50%;
  width: var(--bx-gap); height: 2px; background: var(--line);
}
/* vertical connector joining each pair of feeders into the current match */
.round:not(.r-first) .match::before {
  content: ""; position: absolute; left: -1px; top: 25%; height: 50%; width: 2px; background: var(--line);
}
.bx {
  width: 100%; background: var(--card); border: 1px solid var(--card-brd); border-radius: 12px;
  padding: 9px 11px; backdrop-filter: blur(6px); position: relative; z-index: 1;
  transition: transform 0.2s, border-color 0.2s;
}
.bx:hover { transform: translateY(-2px); border-color: rgba(163,230,53,0.28); }
.bx-tbd { opacity: 0.5; border-style: dashed; }
.bx-team { display: flex; align-items: center; gap: 7px; padding: 3px 0; color: var(--muted); font-size: 0.9rem; }
.bx-team .bx-name { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bx-team .bx-score { font-family: "Sora"; font-weight: 700; color: var(--faint); }
.bx-team.bx-win { color: var(--ink); font-weight: 600; }
.bx-team.bx-win .bx-score { color: var(--grad-2); }
.bx-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 6px; padding-top: 6px; border-top: 1px solid rgba(255,255,255,0.06); }
.bx-badge { font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 2px 7px; border-radius: 6px; }
.bx-actual { font-family: "Sora"; font-weight: 700; font-size: 0.8rem; color: var(--muted); }
.bx-pens { font-size: 0.66rem; font-weight: 700; color: var(--gold); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.3; }

/* Shared "Paul now predicts" banner (golden boot + title race) */
.pick-banner {
  display: flex; align-items: center; gap: 18px; margin-bottom: 18px;
  background: linear-gradient(100deg, rgba(245,197,66,0.12), rgba(245,197,66,0.03));
  border: 1px solid rgba(245,197,66,0.32); border-radius: var(--radius);
  padding: 20px 22px; position: relative; overflow: hidden;
}
.pb-ic { font-size: 2.2rem; filter: drop-shadow(0 0 12px rgba(245,197,66,0.4)); }
.pb-main { flex: 1; min-width: 0; }
.pb-lbl { color: var(--gold); font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.pb-name { font-family: "Sora"; font-size: 1.6rem; font-weight: 800; margin: 3px 0 6px; }
.pb-metric { font-size: 0.95rem; color: var(--gold); font-weight: 700; margin-left: 8px; }
.pb-sub { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.pb-sub b { color: var(--ink); font-weight: 700; }
.pb-orig { color: var(--faint); font-size: 0.82rem; margin: 4px 0 8px; }
.pb-orig s { color: var(--muted); text-decoration-color: rgba(255,255,255,0.3); }
.pb-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 6px 12px; border-radius: 8px; white-space: nowrap; }
.pb-drift { background: rgba(245,197,66,0.16); color: var(--gold); }
.pb-hold { background: rgba(52,230,164,0.14); color: var(--green); }

/* Golden boot race */

.gb-board { display: flex; flex-direction: column; gap: 8px; }
.gb-row {
  display: grid; grid-template-columns: 34px minmax(150px, 1.5fr) auto 2fr 58px; align-items: center;
  gap: 14px; padding: 12px 16px; background: var(--card); border: 1px solid var(--card-brd);
  border-radius: 12px; transition: border-color 0.2s;
}
.gb-row:hover { border-color: rgba(255,255,255,0.16); }
.gb-rank { font-family: "Sora"; font-weight: 800; color: var(--faint); text-align: center; }
.gb-name { font-weight: 600; min-width: 0; }
.gb-name .gb-note { color: var(--faint); font-size: 0.76rem; font-weight: 400; margin-top: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.gb-pen { font-size: 0.85em; }
.gb-mid { text-align: center; }
.gb-badge { font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 3px 9px; border-radius: 6px; background: rgba(245,197,66,0.16); color: var(--gold); white-space: nowrap; }
.gb-badge.gb-elim { background: rgba(255,107,129,0.13); color: var(--red); }
.gb-bar { height: 10px; border-radius: 99px; background: rgba(255,255,255,0.06); overflow: hidden; }
.gb-bar > span { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--grad-1), var(--grad-2)); }
.gb-pct { font-family: "Sora"; font-weight: 800; text-align: right; }
.gb-pct .gb-g { font-size: 0.7rem; color: var(--faint); font-weight: 600; margin-left: 1px; }
.gb-lead { border-color: rgba(245,197,66,0.35); background: rgba(245,197,66,0.06); }
.gb-lead .gb-rank, .gb-lead .gb-pct { color: var(--gold); }
.gb-lead .gb-bar > span { background: linear-gradient(90deg, var(--gold), var(--amber)); }
.gb-out { opacity: 0.6; }
.gb-out .gb-bar > span { background: var(--faint); }

/* Futures: Original pick -> Current pick */
.future { justify-content: space-between; }
.future .f-info { min-width: 0; flex: 1; }
.f-picks { display: flex; align-items: flex-end; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.f-slot { display: flex; flex-direction: column; gap: 5px; }
.f-slabel { color: var(--faint); text-transform: uppercase; font-size: 0.66rem; letter-spacing: 0.08em; font-weight: 700; }
.f-team { font-family: "Sora"; font-size: 1.35rem; font-weight: 800; white-space: nowrap; }
.f-orig { color: var(--muted); }
.f-curr { color: var(--ink); }
.f-changed .f-orig { text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.28); text-decoration-thickness: 2px; }
.f-arrow { font-size: 1.25rem; color: var(--gold); padding-bottom: 5px; }
.f-holding .f-arrow { color: var(--green); }
.f-chip { align-self: flex-start; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
.chip-hold { color: var(--green); background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.32); }
.chip-drift { color: var(--amber); background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.32); }

/* Trend chart */
.trend-wrap {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 22px 20px 12px; backdrop-filter: blur(8px); box-shadow: var(--shadow);
}
.trend-chart svg { width: 100%; height: auto; display: block; }
.trend-chart .grid { stroke: rgba(255,255,255,0.06); stroke-width: 1; }
.trend-chart .axis { fill: var(--faint); font-size: 12px; font-family: "Space Grotesk", sans-serif; }
.trend-chart .pt-lbl { fill: var(--muted); font-size: 11px; font-family: "Sora", sans-serif; font-weight: 600; }
.trend-chart .l-acc { stroke: var(--grad-2); stroke-width: 3; stroke-linejoin: round; stroke-linecap: round; }
.trend-chart .l-eff { stroke: var(--grad-1); stroke-width: 2.5; stroke-dasharray: 2 6; stroke-linecap: round; }
.trend-chart .d-acc { fill: var(--grad-2); stroke: var(--bg); stroke-width: 2; }
.trend-legend { display: flex; gap: 22px; justify-content: center; padding: 10px 0 6px; color: var(--muted); font-size: 0.85rem; }
.trend-legend .sw { display: inline-block; width: 22px; height: 3px; border-radius: 2px; margin-right: 8px; vertical-align: middle; }
.sw-acc { background: var(--grad-2); }
.sw-eff { background: var(--grad-1); }

/* Behind the scenes */
.methods { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.method {
  background: var(--card); border: 1px solid var(--card-brd); border-radius: var(--radius);
  padding: 24px; transition: transform 0.25s, border-color 0.25s; backdrop-filter: blur(8px);
}
.method:hover { transform: translateY(-4px); border-color: rgba(163,230,53,0.28); }
.method .m-ic { font-size: 1.7rem; }
.method .m-name { font-family: "Sora"; font-weight: 700; font-size: 1.08rem; margin: 12px 0 8px; }
.method .m-body { color: var(--muted); font-size: 0.92rem; line-height: 1.55; }
.pipeline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px;
  margin-top: 26px; color: var(--muted); font-size: 0.86rem;
}
.pipeline span { padding: 8px 14px; border-radius: 999px; background: var(--card); border: 1px solid var(--card-brd); }
.pipeline b { color: var(--grad-2); font-size: 1.1rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  .rrow { grid-template-columns: 100px 1fr 48px; gap: 10px; }
  .pipeline b { display: none; }
  .pmatch { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .pm-meta { flex-direction: row; align-items: center; gap: 10px; justify-content: space-between; }
  .pm-teams { justify-content: space-between; }
  .pm-scores { justify-content: center; }
  .pm-verdict { text-align: center; }
  .tier { display: none; }
  .f-picks { flex-direction: column; align-items: flex-start; gap: 10px; }
  .f-arrow { transform: rotate(90deg); padding-bottom: 0; }
  .gb-row { grid-template-columns: 24px 1fr 40px; grid-template-areas: "rank name pct" "rank mid mid" "rank bar bar"; row-gap: 8px; padding: 12px; }
  .gb-rank { grid-area: rank; }
  .gb-name { grid-area: name; }
  .gb-pct { grid-area: pct; }
  .gb-mid { grid-area: mid; text-align: left; }
  .gb-mid:empty { display: none; }
  .gb-bar { grid-area: bar; }
}

/* Accessibility: visible keyboard focus */
a:focus-visible,
button:focus-visible,
.chip:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html { scroll-behavior: auto; }
  .orb-1, .orb-2, .orb-3 { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
