/* ============================================================
   SCHWEEP — shared stylesheet
   Faceless all-sports daily picks + accountability show.
   Dark theme · turf green #1E7A46 · broom-straw gold #E8A93C
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand */
  --turf:        #1E7A46;
  --turf-bright: #27A15B;
  --turf-glow:   #2FBE6C;
  --turf-deep:   #124B2C;
  --gold:        #E8A93C;
  --gold-soft:   #F3C871;
  --gold-deep:   #B4801F;

  /* Surfaces (green-biased near-black) */
  --bg:      #0A120D;
  --bg-2:    #0C160F;
  --panel:   #101E16;
  --panel-2: #142a1e;
  --line:    rgba(210, 236, 220, 0.10);
  --line-2:  rgba(210, 236, 220, 0.16);

  /* Text */
  --text:  #EAF3ED;
  --muted: #A6BBAF;
  --faint: #7C9187;

  /* Type */
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  --mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, "Liberation Mono", monospace;

  /* Rhythm */
  --wrap: 1160px;
  --pad:  clamp(1.15rem, 4vw, 2rem);
  --sect: clamp(4.5rem, 9vw, 8rem);
  --radius: 18px;

  --shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px -30px rgba(0,0,0,0.85);
  --ring: 0 0 0 3px rgba(232,169,60,0.45);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Ambient page glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(80% 55% at 78% -8%, rgba(30,122,70,0.20), transparent 60%),
    radial-gradient(60% 45% at 8% 0%, rgba(232,169,60,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg) 40%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { line-height: 1.08; letter-spacing: -0.02em; font-weight: 800; }
p { text-wrap: pretty; }

::selection { background: var(--gold); color: #1a1206; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* Skip link — CSS-only reveal on focus (no inline styles / JS). */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--gold); color: #1a1206;
  padding: 0.6rem 1rem; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sect); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--flush-top { padding-top: 0; }
.section--media { position: relative; overflow: hidden; }
.divider { border-top: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--mono);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-head { max-width: 44rem; margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.section-head h2 { font-size: clamp(1.95rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--gold);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; fill: currentColor; }

.btn--primary {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  color: #1c1305;
  box-shadow: 0 10px 30px -12px rgba(232,169,60,0.6);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(232,169,60,0.75); }

.btn--ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { border-color: var(--turf-glow); background: rgba(47,190,108,0.08); transform: translateY(-2px); }

.btn--turf {
  background: linear-gradient(180deg, var(--turf-bright), var(--turf));
  color: #eafff2;
  box-shadow: 0 10px 30px -12px rgba(30,122,70,0.7);
}
.btn--turf:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -12px rgba(30,122,70,0.85); }

.btn--lg { padding: 1.1rem 1.9rem; font-size: 1.05rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; align-items: center; }
.btn-row--center { justify-content: center; margin-top: 2rem; }

/* ============================================================
   NAV
   ============================================================ */
/* Persistent translucent blurred bar — no JS scroll-listener available (CSP),
   so the background is always on (keeps nav text legible over any content). */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,18,13,0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
/* Graceful fallback where backdrop-filter is unsupported: make the bar opaque. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav { background: rgba(9,16,11,0.96); }
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 68px;
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; }
.brand span { background: linear-gradient(90deg, var(--text), var(--muted)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.nav__links { display: flex; align-items: center; gap: 0.35rem; }
.nav__links a {
  position: relative;
  padding: 0.5rem 0.85rem; border-radius: 8px;
  color: var(--muted); font-weight: 600; font-size: 0.95rem;
  transition: color .18s ease, background .18s ease;
}
.nav__links a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__links a[aria-current="page"] { color: var(--text); }
.nav__links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.15rem; height: 2px;
  background: linear-gradient(90deg, var(--turf-glow), var(--gold)); border-radius: 2px;
}
.nav__cta { margin-left: 0.5rem; }
.nav__right { display: flex; align-items: center; gap: 0.5rem; }

/* Mobile: no JS available (CSP), so the nav is always-visible and wraps
   onto a second centered row. No hamburger, no toggle, fully accessible. */
@media (max-width: 820px) {
  .nav__inner { flex-wrap: wrap; height: auto; padding-top: 0.55rem; padding-bottom: 0.55rem; row-gap: 0.4rem; justify-content: center; }
  .nav__right { display: none; }
  .nav__links { order: 3; flex-basis: 100%; justify-content: center; flex-wrap: wrap; gap: 0.1rem 0.2rem; }
  .nav__links a { padding: 0.45rem 0.65rem; font-size: 0.92rem; }
  .nav__links a[aria-current="page"]::after { left: 0.65rem; right: 0.65rem; bottom: -0.05rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-block: clamp(3.5rem, 8vw, 7rem) clamp(3rem, 6vw, 5.5rem); }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background-size: cover; background-position: center 70%;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.55) 55%, transparent);
          mask-image: linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.55) 55%, transparent);
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(70% 60% at 50% 30%, transparent, rgba(10,18,13,0.65) 90%);
}
.hero__bg--stadium { background-image: url("./img/hero-stadium.jpg"); }
.hero__bg--floodlights {
  background-image: url("./img/floodlights.jpg");
  opacity: 0.28; background-position: center;
  -webkit-mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.8) 40%, transparent);
          mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.8) 40%, transparent);
}
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero__eyebrow { color: var(--gold); }
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  margin-top: 0.4rem;
}
.hero h1 .accent { color: var(--gold); }
.hero h1 .turf { color: var(--turf-glow); }
.hero__lead {
  color: var(--muted); font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  max-width: 34rem; margin-top: 1.35rem;
}
.hero .btn-row { margin-top: 2rem; }
.hero__note { margin-top: 1.15rem; font-size: 0.9rem; color: var(--faint); display: flex; align-items: center; gap: 0.5rem; }
.hero__note .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--turf-glow); box-shadow: 0 0 0 4px rgba(47,190,108,0.18); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* Scoreboard record card */
.scoreboard {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(30,122,70,0.22), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.scoreboard::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay; opacity: 0.5;
}
.scoreboard__label {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--faint);
}
.scoreboard__live { color: var(--turf-glow); display: inline-flex; align-items: center; gap: 0.4rem; }
.scoreboard__live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--turf-glow); box-shadow: 0 0 8px var(--turf-glow); animation: pulse 2.4s ease-in-out infinite; }
.scoreboard__score {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 0.5rem;
  margin: 1.1rem 0 0.4rem;
}
.scoreboard__num { font-family: var(--mono); font-weight: 700; font-size: clamp(3.4rem, 9vw, 4.6rem); line-height: 1; font-variant-numeric: tabular-nums; }
.scoreboard__num small { display: block; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-top: 0.4rem; }
.scoreboard__num--w { color: var(--turf-glow); text-align: right; }
.scoreboard__num--w small { color: var(--muted); }
.scoreboard__num--l { color: var(--gold); text-align: left; }
.scoreboard__num--l small { color: var(--muted); }
.scoreboard__dash { font-family: var(--mono); font-size: 2.4rem; color: var(--faint); }
.scoreboard__foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line-2); font-size: 0.88rem; color: var(--muted); text-align: center; }
.scoreboard__foot strong { color: var(--text); }

/* Hero mini-stats strip */
.hero__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: clamp(2.5rem, 5vw, 3.5rem); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--line); }
.hero__stats div { background: rgba(16,30,22,0.7); padding: 1.25rem 1rem; text-align: center; }
.hero__stats b { display: block; font-family: var(--mono); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text); font-weight: 700; }
.hero__stats span { font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .scoreboard { max-width: 420px; }
}

/* ============================================================
   CARDS + GRIDS
   ============================================================ */
.grid { display: grid; gap: 1.1rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid > * { min-width: 0; }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3, .grid--2 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  background: linear-gradient(180deg, rgba(20,42,30,0.55), rgba(16,30,22,0.55));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--line-2);
  box-shadow: 0 24px 50px -30px rgba(0,0,0,0.9);
  background: linear-gradient(180deg, rgba(26,52,37,0.7), rgba(16,30,22,0.6));
}
.card__icon {
  display: grid; place-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  font-size: 1.4rem;
  background: rgba(30,122,70,0.16);
  border: 1px solid rgba(47,190,108,0.25);
  margin-bottom: 1.1rem;
}
.card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.card p { color: var(--muted); font-size: 0.96rem; }

/* ============================================================
   DAILY RHYTHM (timeline)
   ============================================================ */
.rhythm { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; position: relative; }
.rhythm__card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  position: relative; overflow: hidden;
}
.rhythm__am { background: linear-gradient(150deg, rgba(232,169,60,0.14), rgba(16,30,22,0.4)); }
.rhythm__pm { background: linear-gradient(150deg, rgba(30,122,70,0.20), rgba(16,30,22,0.4)); }
.rhythm__time { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; }
.rhythm__pm .rhythm__time { color: var(--turf-glow); }
.rhythm__card h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin: 0.9rem 0 0.6rem; }
.rhythm__card p { color: var(--muted); }
.rhythm__emoji { position: absolute; top: -0.5rem; right: 0.6rem; font-size: 4.5rem; opacity: 0.14; }
.rhythm__arrow { display: grid; place-content: center; color: var(--faint); font-family: var(--mono); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; }

@media (max-width: 760px) { .rhythm { grid-template-columns: 1fr; } }

/* ============================================================
   STEPS (how it works)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; counter-reset: step; }
.step {
  padding: 1.5rem; border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(16,30,22,0.45);
  position: relative;
}
.step__n {
  font-family: var(--mono); font-weight: 700; font-size: 1rem;
  width: 40px; height: 40px; display: grid; place-content: center;
  border-radius: 11px; color: var(--gold);
  background: rgba(232,169,60,0.12); border: 1px solid rgba(232,169,60,0.28);
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.step p { color: var(--muted); font-size: 0.94rem; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   SPORTS
   ============================================================ */
.sports { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.85rem; }
.sport {
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem;
  border-radius: 16px; border: 1px solid var(--line);
  background: radial-gradient(120% 120% at 50% 0%, rgba(30,122,70,0.14), rgba(16,30,22,0.5));
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
  text-align: center;
}
.sport:hover { transform: translateY(-4px); border-color: rgba(47,190,108,0.4); background: radial-gradient(120% 120% at 50% 0%, rgba(30,122,70,0.28), rgba(16,30,22,0.5)); }
.sport span { font-size: clamp(1.8rem, 4vw, 2.4rem); }
.sport b { font-size: 0.9rem; letter-spacing: 0.04em; color: var(--text); }
@media (max-width: 720px) { .sports { grid-template-columns: repeat(3, 1fr); } }

/* ============================================================
   VOCAB BAND
   ============================================================ */
.vocab { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.vocab__item {
  padding: clamp(1.6rem, 3vw, 2.4rem); border-radius: var(--radius);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.vocab__clean { background: linear-gradient(140deg, rgba(30,122,70,0.22), rgba(16,30,22,0.3)); }
.vocab__schwept { background: linear-gradient(140deg, rgba(180,60,40,0.16), rgba(16,30,22,0.3)); }
.vocab__item .k { font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--faint); }
.vocab__item h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0.5rem 0 0.5rem; }
.vocab__clean h3 { color: var(--turf-glow); }
.vocab__schwept h3 { color: #e88a6f; }
.vocab__item p { color: var(--muted); }
@media (max-width: 640px) { .vocab { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 0.75rem; }
.faq details {
  border: 1px solid var(--line); border-radius: 14px;
  background: rgba(16,30,22,0.5); overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq details[open] { border-color: var(--line-2); background: rgba(20,42,30,0.6); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 1.1rem 1.3rem; font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--mono); font-size: 1.4rem; color: var(--gold);
  transition: transform .2s ease; line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; color: var(--muted); font-size: 0.97rem; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta {
  position: relative; overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-2);
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  background:
    radial-gradient(80% 120% at 50% -10%, rgba(30,122,70,0.35), transparent 60%),
    radial-gradient(60% 100% at 50% 110%, rgba(232,169,60,0.18), transparent 60%),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
.cta .eyebrow { justify-content: center; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.cta p { color: var(--muted); max-width: 40rem; margin: 1rem auto 0; font-size: clamp(1.05rem, 1.6vw, 1.2rem); }
.cta .btn-row { justify-content: center; margin-top: 2rem; }

/* Social buttons */
.socials-row { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; margin-top: 2rem; }
.social {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.8rem 1.25rem; border-radius: 12px;
  border: 1px solid var(--line-2); background: rgba(255,255,255,0.03);
  font-weight: 600; color: var(--text);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.social svg { width: 20px; height: 20px; fill: currentColor; }
.social:hover { transform: translateY(-3px); border-color: var(--turf-glow); background: rgba(47,190,108,0.1); }
.social small { color: var(--faint); font-weight: 500; }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.page-head { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.5rem, 3vw, 2.5rem); }
.page-head .eyebrow { color: var(--gold); }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-head .updated { color: var(--faint); font-family: var(--mono); font-size: 0.85rem; margin-top: 0.9rem; }

.prose { max-width: 760px; }
.prose > .lead { font-size: 1.15rem; color: var(--muted); }
.rule {
  border: 1px solid var(--line); border-radius: 16px;
  background: rgba(16,30,22,0.45);
  padding: clamp(1.3rem, 3vw, 1.8rem);
  margin-bottom: 1rem;
  transition: border-color .2s ease;
}
.rule:hover { border-color: var(--line-2); }
.rule h2 {
  font-size: 1.2rem; margin-bottom: 0.6rem;
  display: flex; gap: 0.7rem; align-items: baseline;
}
.rule h2 .rule__n { font-family: var(--mono); color: var(--gold); font-size: 0.95rem; flex: none; }
.rule p { color: var(--muted); font-size: 0.98rem; }
.rule p + p { margin-top: 0.8rem; }
.rule a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.rule a:hover { color: var(--gold); }
.prose .intro { margin-bottom: 1.6rem; }
.prose .intro p { color: var(--muted); }
.prose .intro p + p { margin-top: 0.9rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem; margin-top: var(--sect); }
.footer__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer__brand { max-width: 22rem; }
.footer__brand .brand { margin-bottom: 0.9rem; }
.footer__brand p { color: var(--muted); font-size: 0.94rem; }
.footer__cols { display: flex; gap: clamp(2rem, 6vw, 4rem); flex-wrap: wrap; }
.footer__col h4 { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 0.9rem; font-weight: 700; }
.footer__col a { display: block; color: var(--muted); padding: 0.28rem 0; font-size: 0.95rem; transition: color .15s ease; }
.footer__col a:hover { color: var(--text); }
.footer__socials { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer__socials a {
  width: 42px; height: 42px; border-radius: 11px;
  display: grid; place-content: center;
  border: 1px solid var(--line-2); color: var(--muted);
  transition: color .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
}
.footer__socials a:hover { color: var(--text); border-color: var(--turf-glow); background: rgba(47,190,108,0.1); transform: translateY(-3px); }
.footer__socials svg { width: 19px; height: 19px; fill: currentColor; }
.footer__bottom {
  margin-top: 2.5rem; padding-top: 1.6rem; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.5rem; justify-content: space-between; align-items: center;
  color: var(--faint); font-size: 0.85rem;
}
.footer__disc { max-width: 40rem; }

/* ============================================================
   DAILY CARD PAGE (card.html) — the day's full 5-pick card
   ============================================================ */
.card-head { padding-block: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 3vw, 2rem); text-align: center; }
.card-head .eyebrow { justify-content: center; }
.card-head h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); }
.card-head h1 .accent { color: var(--gold); }
.card-date { color: var(--muted); font-family: var(--mono); font-size: 0.95rem; margin-top: 0.9rem; letter-spacing: 0.03em; }

/* Receipts record bar (the trust mechanic, up top) */
.receipts-bar {
  max-width: 660px; margin: 1.7rem auto 0;
  display: flex; align-items: center; justify-content: center; gap: 0.9rem 1.8rem; flex-wrap: wrap;
  background: radial-gradient(120% 130% at 50% 0%, rgba(30,122,70,0.18), transparent 65%), linear-gradient(180deg, var(--panel-2), var(--panel));
  border: 1px solid var(--line-2); border-radius: 18px; padding: 1.05rem 1.6rem;
}
.receipts-bar__rec { display: flex; align-items: baseline; gap: 0.45rem; font-family: var(--mono); font-variant-numeric: tabular-nums; }
.receipts-bar__w { color: var(--turf-glow); font-weight: 700; font-size: 2rem; line-height: 1; }
.receipts-bar__l { color: var(--gold); font-weight: 700; font-size: 2rem; line-height: 1; }
.receipts-bar__dash { color: var(--faint); font-size: 1.5rem; }
.receipts-bar__meta { text-align: left; }
.receipts-bar__label { display: block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.68rem; color: var(--faint); font-weight: 700; }
.receipts-bar__note { color: var(--muted); font-size: 0.9rem; }
.receipts-bar__note a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.receipts-bar__note a:hover { color: var(--gold); }

.card-count { text-align: center; color: var(--faint); font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 1.4rem; }

/* The pick list */
.card-list { max-width: 900px; margin-inline: auto; display: grid; gap: 1.1rem; }
.pick {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(20,42,30,0.5), rgba(16,30,22,0.5));
  padding: clamp(1.3rem, 3vw, 1.9rem);
  transition: border-color .2s ease, transform .2s ease;
}
.pick:hover { border-color: var(--line-2); transform: translateY(-3px); }
.pick__head { display: flex; align-items: center; gap: 0.6rem 0.9rem; flex-wrap: wrap; }
.pick__sport { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 700; font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); padding: 0.32rem 0.7rem; border: 1px solid var(--line-2); border-radius: 999px; }
.pick__sport .e { font-size: 1.05rem; line-height: 1; }
.pick__matchup { color: var(--text); font-weight: 600; font-size: 1rem; }
.pick__head .pill { margin-left: auto; }

.pick__body { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 1.1rem 1.6rem; align-items: center; margin-top: 1.15rem; }
.pick__label { font-family: var(--mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }
.pick__team { font-size: clamp(1.4rem, 3.2vw, 2rem); margin-top: 0.35rem; letter-spacing: -0.01em; }
.pick__win { color: var(--faint); font-weight: 600; font-size: 0.62em; letter-spacing: 0; }
.badge { display: inline-block; margin-top: 0.6rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; padding: 0.3rem 0.65rem; border-radius: 999px; }
.badge--upset { color: #1c1305; background: linear-gradient(180deg, var(--gold-soft), var(--gold)); }
.badge--conf { color: var(--muted); border: 1px solid var(--line-2); }

/* Confidence read + meter */
.conf { align-self: center; }
.conf__row { display: flex; align-items: baseline; justify-content: space-between; gap: 0.6rem; }
.conf__tier { font-weight: 700; font-size: 1rem; }
.conf__tier--strong { color: var(--turf-glow); }
.conf__tier--solid { color: var(--gold); }
.conf__tier--lean { color: var(--muted); }
.conf__pct { font-family: var(--mono); font-weight: 700; font-size: 1.15rem; color: var(--text); font-variant-numeric: tabular-nums; }
.meter { height: 9px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; margin: 0.55rem 0 0.45rem; }
.meter__fill { display: block; height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--turf), var(--turf-glow)); }
.meter__fill--strong { background: linear-gradient(90deg, var(--turf), var(--turf-glow)); }
.meter__fill--solid { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.meter__fill--lean { background: linear-gradient(90deg, #55655c, #86988d); }
.conf__cap { font-size: 0.7rem; color: var(--faint); text-transform: uppercase; letter-spacing: 0.12em; }
/* width buckets — dynamic width without inline styles (CSP-safe) */
.mw-0{width:0}.mw-5{width:5%}.mw-10{width:10%}.mw-15{width:15%}.mw-20{width:20%}
.mw-25{width:25%}.mw-30{width:30%}.mw-35{width:35%}.mw-40{width:40%}.mw-45{width:45%}
.mw-50{width:50%}.mw-55{width:55%}.mw-60{width:60%}.mw-65{width:65%}.mw-70{width:70%}
.mw-75{width:75%}.mw-80{width:80%}.mw-85{width:85%}.mw-90{width:90%}.mw-95{width:95%}.mw-100{width:100%}

.pick__why { color: var(--muted); font-size: 0.97rem; margin-top: 1.15rem; padding-top: 1.1rem; border-top: 1px solid var(--line); }

/* Result / status pills */
.pill { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em; padding: 0.32rem 0.7rem; border-radius: 999px; border: 1px solid var(--line-2); text-transform: uppercase; }
.pill--pending { color: var(--muted); }
.pill--win { color: #86e3a8; border-color: rgba(47,190,108,0.45); background: rgba(47,190,108,0.14); }
.pill--loss { color: #ec9a82; border-color: rgba(200,80,55,0.45); background: rgba(200,80,55,0.14); }
.pill--push { color: var(--faint); }

.card-empty { max-width: 640px; margin: 2rem auto; text-align: center; color: var(--muted); border: 1px dashed var(--line-2); border-radius: var(--radius); padding: 2.5rem 1.5rem; }

@media (max-width: 620px) {
  .pick__body { grid-template-columns: 1fr; gap: 1rem; }
  .pick__head .pill { margin-left: 0; }
}

/* Homepage -> card promo band */
.today-band {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem 2rem; flex-wrap: wrap;
  border: 1px solid var(--line-2); border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  background: radial-gradient(100% 140% at 0% 0%, rgba(232,169,60,0.14), transparent 60%), linear-gradient(180deg, var(--panel-2), var(--panel));
}
.today-band__text h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.today-band__text p { color: var(--muted); margin-top: 0.4rem; }

/* ============================================================
   MOTION
   All content is ALWAYS fully visible — there is no opacity or
   scroll gating anywhere, so nothing can ever be hidden (no JS,
   any browser, any CSP). Polish comes from hover/transition states
   and the pulsing "live" dots, all defined on the components above.
   (The .reveal class remains in markup as a harmless no-op.)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__note .dot, .scoreboard__live .dot { animation: none; }
  .btn, .card, .sport, .social, .footer__socials a { transition: none; }
}

/* ===== header record chip (all pages; value auto-patched by site-gen) ===== */
.nav__rec { display: inline-flex; align-items: baseline; gap: 0.35rem;
  padding: 0.35rem 0.8rem; border-radius: 999px; text-decoration: none;
  background: rgba(30,122,70,0.16); border: 1px solid rgba(30,122,70,0.45);
  margin-right: 0.6rem; }
.nav__rec b { color: #5fd08d; font-variant-numeric: tabular-nums; }
.nav__rec span { color: #9db3a6; font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.08em; }
@media (max-width: 720px) { .nav__rec span { display: none; } }
