/* Daily Picks Free — shared light board theme */
:root {
  --ink: #12241c;
  --ink-soft: #2a3f35;
  --muted: #5c6f64;
  --paper: #eef3ee;
  --paper-deep: #e2ebe3;
  --line: rgba(18, 36, 28, 0.12);
  --accent: #1f6b4a;
  --accent-hot: #c45c26;
  --win: #1a7a4c;
  --loss: #b33a32;
  --warn: #a67c1a;
  --white: #f7faf7;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --radius: 6px;
  --max: 720px;
  --max-wide: 920px;
  --max-board: 1040px;
  --hero-veil: linear-gradient(105deg, rgba(12, 28, 22, 0.82) 0%, rgba(18, 40, 30, 0.62) 48%, rgba(18, 40, 30, 0.5) 100%);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 16px;
  overflow-x: hidden;
}
a { color: var(--accent); }
a:hover { color: var(--ink); }
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.25rem 5rem;
}
.wrap-wide { max-width: var(--max-wide); }
.wrap-board { max-width: var(--max-board); }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
/* Overlay variant: nav sits on top of a full-bleed hero image. */
.topbar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 5;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 1.1rem 1.25rem;
  border-bottom: none;
}
.topbar-overlay .nav a { color: rgba(247, 250, 247, 0.86); }
.topbar-overlay .nav a:hover,
.topbar-overlay .nav a[aria-current="page"] { color: var(--white); }
.brand-mark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.brand-mark img {
  display: block;
  height: 40px;
  width: auto;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem 1rem;
}
.nav a {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
}
.nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 700; }

/* Keyboard focus has to stay visible on paper and over hero art alike. */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}
.topbar-overlay a:focus-visible,
.hero a:focus-visible,
.hero button:focus-visible { outline-color: var(--white); }

h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.5rem;
}
h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 1.35rem 0 0.4rem;
}
.sub {
  color: var(--muted);
  font-size: 0.97rem;
  margin: 0 0 1.75rem;
  max-width: 40rem;
}
.page-kicker {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: 44px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover { filter: brightness(1.06); color: var(--white); }
.btn-hot {
  background: var(--accent-hot);
  color: #fff8f3;
}
.btn-hot:hover { background: #d4682f; color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--accent);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--ink); }
/* Ghost buttons sitting on hero art invert to the light palette. */
.hero .btn-ghost,
.cs2-hero .btn-ghost {
  border-color: rgba(247, 250, 247, 0.45);
  color: var(--white);
}
.hero .btn-ghost:hover,
.cs2-hero .btn-ghost:hover { border-color: var(--white); color: var(--white); }

.panel {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 0;
  margin: 0 0 1.75rem;
}
.tone-positive, .edge-pos { color: var(--win); }
.tone-accent { color: var(--accent); }
.tone-negative, .edge-neg { color: var(--loss); }
.tone-neutral { color: var(--ink); }

.email-cta {
  border-top: 3px solid var(--accent);
  padding: 1.4rem 0 0.25rem;
  margin-top: 2.5rem;
}
.email-cta h2, .email-cta h3 {
  margin: 0 0 0.35rem;
}
.email-cta p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 0 1rem;
  max-width: 36rem;
}
.email-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.email-form input[type=email] {
  flex: 1;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  outline: none;
}
.email-form input[type=email]:focus { border-color: var(--accent); }
.email-form button {
  background: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 700;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
}

.footer {
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
}
.footer a {
  color: var(--muted);
  font-size: 0.84rem;
  text-decoration: none;
}
.footer a:hover { color: var(--ink); }

.post-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.post-card {
  border-top: 1px solid var(--line);
  padding: 1.15rem 0;
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card:first-child { border-top: none; padding-top: 0; }
.post-card:hover .post-title { color: var(--accent); }
.post-meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.post-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.post-desc {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.prose p { margin: 0 0 1rem; color: var(--ink-soft); max-width: 40rem; }
.prose ul, .prose ol { color: var(--ink-soft); padding-left: 1.2rem; }
.prose li { margin-bottom: 0.35rem; }
.prose strong { color: var(--ink); }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }

.feature-list {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}
.feature-list li {
  border-top: 1px solid var(--line);
  padding: 0.9rem 0;
}
.feature-list li:first-child { border-top: none; }
.feature-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.feature-list span { color: var(--muted); font-size: 0.9rem; }

.breadcrumb {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--ink); }

.post-body { font-size: 1rem; color: var(--ink-soft); }
.post-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.5rem;
  color: var(--ink);
}
.post-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.4rem;
  color: var(--ink);
}
.post-body p { margin: 0 0 1rem; }
.post-body ul { margin: 0 0 1rem; padding-left: 1.4rem; }
.post-body li { margin-bottom: 0.35rem; }
.post-body hr { border: none; border-top: 1px solid var(--line); margin: 2rem 0; }
.post-body strong { color: var(--ink); }
.post-body a { color: var(--accent); }

.inline-cta {
  border-top: 3px solid var(--accent);
  padding: 1.25rem 0 0.25rem;
  margin: 2.5rem 0;
}
.inline-cta p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0.35rem 0 0.75rem;
}
.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.back-link:hover { color: var(--ink); }
.empty { color: var(--muted); }
.fine { font-size: 0.78rem; color: var(--muted); }
.footer-disc {
  width: 100%;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0.5rem 0 0;
}

/* One pill spec sitewide. Every board, card, and table row uses this. */
.pill {
  display: inline-block;
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.24rem 0.6rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  white-space: nowrap;
}
.pill-line { color: var(--accent); border-color: rgba(31, 107, 74, 0.28); }
.pill-edge, .pill-edge-pos {
  color: var(--win);
  border-color: rgba(26, 122, 76, 0.3);
  background: rgba(26, 122, 76, 0.08);
}
.pill-edge-neg { color: var(--loss); border-color: rgba(179, 58, 50, 0.3); }
.pill-status, .pill-conv { color: var(--muted); font-weight: 500; }
.pill-status-live {
  color: var(--win);
  border-color: rgba(26, 122, 76, 0.28);
  background: rgba(26, 122, 76, 0.08);
}
.pill-status-final { color: var(--ink-soft); }
.pill-status-pending { color: var(--muted); }
.pill-outage { color: var(--warn); border-color: rgba(166, 124, 26, 0.35); }

/* Result badge. Rectangular so W / L / PUSH / pending all fit the same shape. */
.badge {
  display: inline-block;
  border-radius: 3px;
  font-size: 0.74rem;
  font-weight: 700;
  min-width: 2rem;
  padding: 0.14rem 0.45rem;
  text-align: center;
}
.badge-w { background: rgba(26, 122, 76, 0.12); color: var(--win); }
.badge-l { background: rgba(179, 58, 50, 0.12); color: var(--loss); }
.badge-p, .badge-push { background: var(--paper-deep); color: var(--muted); }
.badge-outage {
  background: rgba(166, 124, 26, 0.12);
  border: 1px solid rgba(166, 124, 26, 0.28);
  color: var(--warn);
  min-width: 0;
}

.disclosure-bar {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.65rem 1rem;
  margin-bottom: 1.75rem;
}
.books { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.book {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.book-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
}
.book-desc { color: var(--muted); font-size: 0.9rem; margin: 0; }
.book-badge {
  font-size: 0.75rem;
  color: var(--win);
  margin-top: 0.35rem;
  display: inline-block;
}
.book-extra { margin-top: 0.85rem; font-size: 0.82rem; color: var(--muted); }
.faq { margin-bottom: 2rem; }
.faq-item { border-top: 1px solid var(--line); padding: 1rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0 0 0.4rem; font-size: 0.97rem; }
.faq-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }
.section-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0 0 0.9rem;
}

.record-bar {
  border-left: 3px solid var(--win);
  border-top: 1px solid var(--line);
  padding: 0.95rem 0 0.95rem 1rem;
  margin-bottom: 2rem;
}
.record-bar-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}
.record-stats { display: flex; gap: 1.75rem; flex-wrap: wrap; align-items: baseline; }
.record-stat-val { font-size: 1.35rem; font-weight: 700; font-family: var(--font-display); }
.record-stat-note { font-size: 0.78rem; color: var(--muted); }
.stat-w { color: var(--win); }
.stat-u { color: var(--accent); }

/* ── Pro waitlist page ── */
.page-pro {
  background:
    radial-gradient(ellipse 90% 55% at 8% -8%, rgba(31, 107, 74, 0.10), transparent 55%),
    radial-gradient(ellipse 70% 45% at 100% 12%, rgba(196, 92, 38, 0.06), transparent 50%),
    var(--paper);
}

/* Hero */
.pro-hero { margin-bottom: 1.5rem; }
.pro-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 0.22rem 0.7rem;
  margin: 0 0 0.9rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pro-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-hot);
}
.pro-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 0.7rem;
}
.pro-lead { max-width: 40rem; margin: 0; font-size: 1.02rem; }

/* Offer panel — the page's primary action */
.pro-offer {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) * 2);
  padding: 1.4rem 1.35rem 1.25rem;
  margin: 1.75rem 0 2rem;
  box-shadow: 0 1px 2px rgba(18, 36, 28, 0.04), 0 10px 26px -14px rgba(18, 36, 28, 0.22);
}
.pro-offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}
.pro-offer h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
}
.pro-offer .sub { margin: 0 0 1rem; font-size: 0.93rem; }
.pro-offer-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pro-offer-form input[type=email] { flex: 1 1 220px; }
.pro-offer .fine { margin: 0.7rem 0 0; }

/* Public record strip */
.pro-record-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  align-items: baseline;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.8rem 0;
  margin: 0 0 2.25rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.pro-record-kicker {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pro-record-strip strong { font-family: var(--font-display); font-size: 1.1rem; }

/* Locked board */
.pro-board { margin-bottom: 2.5rem; }
.pro-board-head { margin-bottom: 1rem; }
.pro-board-head .sub { margin: 0.35rem 0 0; max-width: 42rem; }
.pro-board-list { display: grid; gap: 0.6rem; }
.pro-board-row {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.pro-board-row.is-pod {
  border-color: rgba(31, 107, 74, 0.35);
  box-shadow: inset 3px 0 0 var(--accent);
}
.pro-board-row-top {
  display: flex;
  justify-content: space-between;
  gap: 0.6rem 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.pro-slot {
  display: block;
  color: var(--accent);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.pro-matchup {
  margin: 0.1rem 0 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pro-board-state {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.8rem;
  align-items: baseline;
  justify-content: flex-end;
  text-align: right;
}
.pro-score { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.pro-status { font-size: 0.78rem; color: var(--muted); font-weight: 600; }

/* Redacted detail row: shows the shape of what Pro unlocks, never fake numbers */
.pro-locked {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-top: 0.8rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
}
.pro-locked-item { display: flex; align-items: center; gap: 0.45rem; }
.pro-locked-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.pro-redact {
  display: inline-block;
  height: 0.72rem;
  border-radius: 3px;
  background: repeating-linear-gradient(
    135deg,
    rgba(18, 36, 28, 0.15) 0 5px,
    rgba(18, 36, 28, 0.06) 5px 10px
  );
}
.pro-redact.is-sm { width: 2.7rem; }
.pro-redact.is-md { width: 3.5rem; }
.pro-redact.is-lg { width: 6.5rem; }
.pro-lock-note {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}
.pro-free-note {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--win);
}
/* Locked rows on the dated archive reuse the Pro redaction treatment */
.pick-row.is-locked { opacity: 0.92; }
.pick-row.is-locked .pro-locked { margin-top: 0.6rem; padding-top: 0.6rem; }
.locked-note { margin: 0 0 0.85rem; font-size: 0.88rem; }

.pro-free-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pro-free-note a:hover { color: var(--ink); }
.pro-board-meta { min-width: 0; }
.pro-empty {
  color: var(--muted);
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin: 0;
}

/* Benefits */
.pro-benefits { margin-bottom: 2.5rem; }
.pro-benefit-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  counter-reset: pro-benefit;
}
.pro-benefit-list li {
  counter-increment: pro-benefit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
}
.pro-benefit-list li::before {
  content: counter(pro-benefit, decimal-leading-zero);
  display: block;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.pro-benefit-list strong { display: block; font-size: 0.98rem; color: var(--ink); margin-bottom: 0.2rem; }
.pro-benefit-list span { display: block; color: var(--muted); font-size: 0.87rem; line-height: 1.5; }

/* Free vs Pro comparison */
.pro-compare { margin-bottom: 2.5rem; }
.pro-compare-scroll { overflow-x: auto; margin-top: 0.9rem; }
.pro-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.pro-compare-table th,
.pro-compare-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.pro-compare-table thead th {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--paper-deep);
}
.pro-compare-table tbody th {
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--ink-soft);
  width: 34%;
}
.pro-compare-table td { color: var(--muted); }
.pro-compare-table .col-pro {
  background: rgba(31, 107, 74, 0.05);
  color: var(--ink-soft);
  font-weight: 600;
}
.pro-compare-table thead .col-pro { color: var(--accent); background: rgba(31, 107, 74, 0.09); }
.pro-compare-table tbody tr:last-child th,
.pro-compare-table tbody tr:last-child td { border-bottom: 0; }

.trust { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.trust-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}
.trust-check { color: var(--win); font-weight: 700; flex-shrink: 0; }

.full-pick {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
}
.full-pick-main {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.slot {
  color: var(--accent);
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}
.pick-redacted {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--muted);
  margin: 0.15rem 0 0;
}
.matchup { color: var(--muted); display: block; font-size: 0.84rem; margin-top: 0.1rem; }
.pills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.why {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
}
.why-obscured {
  filter: blur(8px);
  opacity: 0.75;
  pointer-events: none;
  user-select: none;
}
.preview-note { color: var(--muted); font-size: 0.8rem; margin: 0 0 0.85rem; }
.empty-card { color: var(--muted); padding: 1rem 0; border-top: 1px solid var(--line); }

.pod {
  border-top: 3px solid var(--accent);
  padding: 1.25rem 0 0;
  margin-bottom: 1.25rem;
}
.pod-eyebrow {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.55rem;
}
.pod-matchup { font-size: 0.95rem; color: var(--muted); margin-bottom: 0.25rem; }
.pod-pick {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.pod-meta { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 0.85rem; }
.pod-why {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  max-width: 40rem;
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
}
.card-rest { margin-bottom: 2rem; }
.pick-row { border-top: 1px solid var(--line); padding: 0.95rem 0; }
.pr-row-main {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.pr-slot {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.2rem;
}
.pr-pick { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 0.15rem; }
.pr-matchup { font-size: 0.82rem; color: var(--muted); }
.pr-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; align-items: center; }
.pr-why {
  margin: 0.55rem 0 0;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}
.pr-shop {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.aff-bar {
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.8rem 1.2rem;
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 2rem;
}
.record-badge {
  display: inline-flex;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding: 0.6rem 0;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.rb-w { color: var(--win); font-weight: 700; }
.rb-l { color: var(--loss); font-weight: 700; }

.proof-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}
.proof-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--win);
}
.proof-item span { font-size: 0.8rem; color: var(--muted); }
.bullets { list-style: none; margin: 0 0 2rem; padding: 0; }
.bullets li {
  padding: 0.55rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  border-top: 1px solid var(--line);
}
.bullets li::before { content: "✓ "; color: var(--win); font-weight: 700; }
.form-wrap {
  border-top: 3px solid var(--accent);
  padding: 1.5rem 0 0;
}
.form-wrap .email-form { flex-direction: column; }
.thank-check {
  font-size: 2.5rem;
  color: var(--win);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.what-next {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0 0;
  margin: 2rem 0;
  text-align: left;
}
.what-next h2 {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-body);
  font-weight: 700;
}
.center-page { text-align: center; max-width: 520px; }
.center-page .topbar { justify-content: center; }
.center-page .nav { justify-content: center; }
.center-page .footer { justify-content: center; }

@media (max-width: 720px) {
  .wrap { padding: 1rem 1rem 3rem; }
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.55rem;
  }
  .nav { justify-content: flex-start; gap: 0.55rem 0.8rem; }
  .email-form input[type=email],
  .email-form button { font-size: 16px; }
  .book { align-items: stretch; }
  .book .btn { width: 100%; text-align: center; }
  .pro-benefit-list { grid-template-columns: 1fr; }
  .pro-compare-table { min-width: 460px; }
  .pro-board-state { justify-content: flex-start; text-align: left; }
  .pro-lock-note, .pro-free-note { margin-left: 0; }
  .pro-offer { padding: 1.2rem 1rem 1.1rem; }
}

/* ══ Season record (shared by the MLB hub and every record page) ══ */
.season-record {
  border-top: 1px solid var(--line);
  padding: 1.35rem 0 0;
  margin: 0 0 2rem;
}
.season-record-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.season-kicker {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0 0 0.2rem;
  text-transform: uppercase;
}
.season-record h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.season-note {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  margin: 0;
  max-width: 16rem;
  text-align: right;
}
.season-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}
.season-stat { min-width: 0; }
.season-label {
  color: var(--muted);
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  font-weight: 600;
}
.season-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  overflow-wrap: anywhere;
  letter-spacing: -0.02em;
}
.season-context,
.season-settled,
.season-pod-policy {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
  margin: 0.55rem 0 0;
}
.season-context {
  border-top: 1px solid var(--line);
  padding-top: 0.85rem;
  margin-top: 1rem;
}
.season-record-link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.65rem;
  text-decoration: none;
}

/* ══ Record page: highlights, filters, ledger ══ */
.highlights {
  border-top: 1px solid var(--line);
  margin: 0 0 2rem;
  padding: 1.35rem 0 0;
}
.highlights h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.35rem;
}
.highlights .hint { color: var(--muted); font-size: 0.88rem; margin: 0 0 1.1rem; max-width: 42rem; }
.highlight-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}
.highlight-stat span {
  color: var(--muted);
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  font-weight: 600;
}
.highlight-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.highlight-stat em {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-style: normal;
  margin-top: 0.2rem;
}
.highlight-lists {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.highlight-list h3 {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.highlight-list ul { list-style: none; margin: 0; padding: 0; }
.highlight-list li {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
}
.highlight-list li:first-child { border-top: 0; }
.highlight-list .meta { color: var(--muted); font-size: 0.82rem; white-space: nowrap; }

.filters {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1rem;
  padding: 1.25rem 0 0;
}
.filters-cs2 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.field label {
  color: var(--muted);
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  font-weight: 600;
}
.field input, .field select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.92rem;
  font-family: var(--font-body);
  min-height: 44px;
  padding: 0.5rem 0.6rem;
  width: 100%;
}
.filter-btn, .csv-btn {
  background: var(--accent);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font-body);
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.csv-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
}
.csv-btn:hover { border-color: var(--accent); color: var(--ink); }
.table-meta {
  margin: 0 0 0.9rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}
.table-scroll { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.ledger { border-collapse: collapse; font-size: 0.88rem; min-width: 820px; width: 100%; }
.ledger th {
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  padding: 0.55rem;
  text-align: left;
  text-transform: uppercase;
  font-weight: 700;
}
.ledger td {
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0.55rem;
  vertical-align: middle;
}
.ledger .cell-nowrap { white-space: nowrap; }
.ledger .cell-muted { color: var(--muted); }
.ledger .cell-team { font-weight: 700; }
.ledger .cell-sub { color: var(--muted); font-size: 0.75rem; }
tr.row-w td { background: rgba(26, 122, 76, 0.04); }
tr.row-l td { background: rgba(179, 58, 50, 0.04); }
tr.row-push td { background: rgba(92, 111, 100, 0.04); }
.edge-na { color: var(--muted); }

/* ══ MLB hub: hero, status line, card teaser, history ══ */
.hero {
  position: relative;
  min-height: min(78vh, 620px);
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background:
    var(--hero-veil),
    url("/static/hero-ballpark.jpg") center 40% / cover no-repeat,
    #1a3328;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 28, 22, 0.68), transparent 46%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 6rem 1.25rem 2.75rem;
  animation: rise 0.9s ease-out both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-kicker {
  color: #a8d4ba;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.75rem;
}
.hero-headline {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  max-width: 20ch;
}
.hero-support {
  color: rgba(247, 250, 247, 0.82);
  font-size: 1.02rem;
  margin: 0;
  max-width: 34rem;
}
.hero-support strong { color: var(--white); }
.hero-support a { color: #a8d4ba; }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

/* Sport hubs with no photographic hero open on a typographic band, so all three
   sports still lead with one composition rather than a stack of controls. */
.hero-band {
  position: relative;
  overflow: hidden;
  margin: 0 0 2.25rem;
  padding: 2.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 120% at 0% 0%, rgba(31, 107, 74, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 110% at 100% 100%, rgba(196, 92, 38, 0.07), transparent 55%);
}
.hero-band h1 {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  margin: 0 0 0.6rem;
  max-width: 18ch;
}
.hero-band .sub { margin: 0 0 1.35rem; }
.hero-band .hero-cta { margin-top: 0; }

.banner {
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
}
.banner-ok {
  background: rgba(26, 122, 76, 0.1);
  border: 1px solid rgba(26, 122, 76, 0.28);
  color: var(--win);
}

.today-block { margin-bottom: 2.5rem; }
.today-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.65rem;
}
.pod-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  max-width: 40rem;
}
.pod-shop {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 0.84rem;
  color: var(--muted);
}
.pod-ref { margin-left: 0.4rem; font-size: 0.75rem; opacity: 0.65; }

/* Stat grid shared by the MLB / NFL / CS2 free pick so all three read alike. */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0;
}
.stat-cell span {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-cell strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-top: 0.15rem;
  letter-spacing: -0.02em;
}

.status-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  margin: 0 0 1.5rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}
.status-line strong { color: var(--ink); font-weight: 700; margin-right: 0.3rem; }

.sched-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.sched { width: 100%; border-collapse: collapse; font-size: 0.88rem; margin-top: 0.35rem; min-width: 640px; }
.sched th, .sched td { text-align: left; padding: 0.55rem 0.35rem; border-bottom: 1px solid var(--line); }
.sched th { color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; }
.sched td:last-child { color: var(--muted); font-size: 0.84rem; }
.sched .is-live { color: var(--win); font-weight: 600; }
.sched .cell-score { white-space: nowrap; font-weight: 600; }

.fc-preview-section { margin: 2rem 0 2.5rem; }
.fc-preview-lead {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
  margin: 0 0 1rem;
  max-width: 40rem;
}
.fc-preview-hit {
  display: block;
  text-decoration: none;
  color: inherit;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0 1rem;
  transition: background 0.15s ease;
}
.fc-preview-hit:hover { background: rgba(31, 107, 74, 0.04); }
.fc-preview-row {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0 0;
  margin-top: 0.8rem;
}
.fc-preview-row:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.fc-preview-row-main { display: flex; justify-content: space-between; gap: 0.75rem; flex-wrap: wrap; }
.fc-slot {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 700;
}
.fc-pick-redacted { font-size: 1rem; font-weight: 700; color: var(--muted); display: block; }
.fc-pick-note { font-size: 1rem; font-weight: 700; color: var(--win); display: block; }
.fc-matchup { font-size: 0.84rem; color: var(--muted); display: block; margin-top: 0.1rem; }
.fc-pills { display: flex; flex-wrap: wrap; gap: 0.35rem; justify-content: flex-end; align-items: flex-start; }
.fc-preview-row .pro-locked { margin-top: 0.65rem; padding-top: 0.65rem; }
.fc-preview-go {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
}

.history-block { margin-bottom: 2.5rem; }
.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 0.85rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.record-panel { margin: 2.75rem 0 2.25rem; }
.record-panel .season-record:first-of-type { border-top: none; padding-top: 0.35rem; }
.record-upsell {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  padding-top: 0.9rem;
  max-width: 42rem;
}
.section-note { color: var(--muted); font-size: 0.84rem; margin: 0; }

/* Quick trailing-window presets on the record page. */
.window-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0 0 1rem;
}
.window-preset {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.window-preset:hover { border-color: var(--accent); color: var(--ink); }
.window-preset.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.controls { display: flex; flex-wrap: wrap; gap: 0.55rem; align-items: center; }
.controls label { color: var(--muted); font-size: 0.84rem; }
.controls select {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.35rem 0.55rem;
  border-radius: 4px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  min-height: 44px;
}
table.hist { width: 100%; border-collapse: collapse; font-size: 0.875rem; min-width: 640px; }
table.hist th {
  text-align: left;
  padding: 0.5rem 0.55rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
table.hist td {
  text-align: left;
  padding: 0.65rem 0.55rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
table.hist tr:hover td { background: rgba(31, 107, 74, 0.03); }
table.hist .cell-nowrap { white-space: nowrap; }
table.hist .cell-muted { color: var(--muted); }
table.hist .cell-date { color: var(--muted); white-space: nowrap; }
table.hist .cell-slot { white-space: nowrap; font-size: 0.8rem; color: var(--muted); }
table.hist .cell-pick { font-weight: 600; }
table.hist .cell-matchup { color: var(--muted); font-size: 0.85rem; }
.history-toggle-wrap { margin-top: 0.85rem; }
.history-toggle-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  font-family: var(--font-body);
  min-height: 44px;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  cursor: pointer;
}
.history-toggle-btn:hover { border-color: var(--accent); color: var(--ink); }

.glossary {
  margin-top: 3.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}
.glossary h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 1.35rem 0 0.4rem;
}
.glossary h3:first-child { margin-top: 0; }
.glossary p { margin: 0 0 0.6rem; line-height: 1.6; max-width: 42rem; }
.glossary strong { color: var(--ink); }
.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .nav { gap: 0.15rem 0.9rem; }
  .nav a { min-height: 44px; }
  .topbar-overlay { padding: 0.85rem 1rem; }
  .hero { min-height: min(88vh, 640px); }
  .hero-inner { padding: 6.5rem 1rem 2.5rem; }
  .season-record-head { flex-direction: column; gap: 0.35rem; }
  .season-note { max-width: none; text-align: left; }
  .season-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.85rem; }
  .highlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .highlight-lists { grid-template-columns: 1fr; }
  .filters, .filters-cs2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field input, .field select, .filter-btn, .csv-btn,
  .controls select, .email-form input[type=email], .email-form button { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-inner, .today-block { animation: none; }
  .btn:hover { transform: none; }
}
