/* THE EDGE — Scott Bot site
   Light, ESPN-like. Designed by the rule: no black backgrounds, no terminal vibes. */

:root {
  --bg:        #FFFFFF;
  --bg-gray:   #F4F4F5;
  --border:    #E5E5E7;
  --border-strong: #D0D0D3;
  --text:      #0C0C0C;
  --text-dim:  #5A5A5E;
  --text-mute: #8A8A8E;

  --brand-red:   #D7232D;
  --brand-red-d: #B81B25;
  --win:    #00854B;
  --loss:   #E83E3E;
  --push:   #8A8A8E;
  --gold:   #D4843B;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;

  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Big Shoulders Display', 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--brand-red); text-decoration: none; }
a:hover { text-decoration: underline; }

button {
  font-family: inherit;
  font-size: inherit;
  border: 0;
  background: none;
  cursor: pointer;
  color: inherit;
}

/* ── Top nav ────────────────────────────────────────────────────────── */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: saturate(180%) blur(10px);
}
.topnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.brand {
  display: flex; align-items: baseline; gap: 8px;
  color: var(--text);
}
.brand:hover { text-decoration: none; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--text);
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  letter-spacing: 0.01em;
  color: var(--brand-red);
}
.brand-tag {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  padding-left: 10px;
  border-left: 1px solid var(--border);
  margin-left: 4px;
}
.nav-record {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 12px;
  color: var(--text-dim);
}
.nav-label {
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  font-size: 9px;
}
.nav-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.nav-value.positive { color: var(--win); }
.nav-value.negative { color: var(--loss); }

@media (max-width: 600px) {
  .brand-tag { display: none; }
  .nav-record { gap: 8px; font-size: 11px; }
  .nav-label { font-size: 8px; }
  .nav-value { font-size: 13px; }
  .brand-name, .brand-mark { font-size: 20px; }
}

/* ── Paused banner ──────────────────────────────────────────────────── */
.paused-banner {
  background: #FEF3C7;
  border-bottom: 2px solid var(--gold);
  color: #78350F;
  padding: 12px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}
.paused-banner strong {
  margin-right: 8px;
  letter-spacing: 0.1em;
}

/* ── Ladder strip (compact, horizontal) ─────────────────────────────── */
.ladder-strip {
  background: linear-gradient(90deg, #FFF8F0 0%, #FFFFFF 60%);
  border-bottom: 1px solid var(--border);
}
.ladder-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ladder-strip-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}
.ladder-kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--brand-red);
}
.ladder-rungs {
  display: flex;
  gap: 6px;
  align-items: center;
}
.rung {
  flex: 1;
  height: 12px;
  border-radius: 6px;
  background: var(--border);
  transition: background 0.3s ease;
  position: relative;
  max-width: 56px;
}
.rung.on {
  background: var(--brand-red);
  box-shadow: 0 0 0 3px rgba(215,35,45,0.12);
}
.rung.target {
  background: var(--border);
  border: 2px dashed var(--brand-red);
  background: transparent;
}

.ladder-strip-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.ls-progress {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ls-progress-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 32px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ls-progress-sub {
  font-size: 11px;
  color: var(--text-mute);
  font-weight: 600;
}
.ls-stats {
  display: flex;
  gap: 14px;
  padding-left: 20px;
  border-left: 1px solid var(--border);
}
.ls-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}
.ls-stat-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.ls-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

@media (max-width: 720px) {
  .ladder-strip-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px 16px;
  }
  .ladder-strip-right {
    justify-content: space-between;
    gap: 12px;
  }
  .rung { max-width: none; }
  .ls-progress { text-align: left; flex-direction: row; align-items: baseline; gap: 8px; }
  .ls-progress-num { font-size: 24px; }
  .ls-progress-sub { font-size: 11px; }
  .ls-stats { padding-left: 14px; gap: 12px; }
  .ls-stat-value { font-size: 16px; }
}

.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--brand-red);
  margin-bottom: 8px;
}

/* ── Sections ──────────────────────────────────────────────────────── */
.section {
  padding: 44px 20px;
}
.section-gray { background: var(--bg-gray); }
.section > * { max-width: 1280px; margin-left: auto; margin-right: auto; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  gap: 16px;
  flex-wrap: wrap;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.01em;
}
.section-title-xl {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 8vw, 72px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}
.section-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

/* Picks-hero: amplify the picks section */
.picks-hero {
  padding-top: 36px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFBFA 100%);
}

@media (max-width: 600px) {
  .section { padding: 32px 16px; }
  .picks-hero { padding-top: 24px; padding-bottom: 36px; }
  .section-title { font-size: 26px; }
  .section-title-xl { font-size: 36px; }
}

/* ── Picks grid ────────────────────────────────────────────────────── */
.picks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 16px;
}
.pick-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.18s ease, transform 0.18s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pick-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.pick-card:active { transform: translateY(0); }
@media (max-width: 600px) {
  .picks-grid { grid-template-columns: 1fr; gap: 14px; }
  .pick-card { padding: 18px; }
}
.pick-card.ladder {
  border: 2px solid var(--brand-red);
  background: linear-gradient(180deg, #FFF8F0 0%, #FFFFFF 60%);
  box-shadow: 0 4px 16px rgba(215,35,45,0.10), var(--shadow-md);
}
.pick-card.ladder::before {
  content: '🪜 LADDER PICK';
  position: absolute;
  top: 0; right: 0;
  background: var(--brand-red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  letter-spacing: 0.12em;
  border-bottom-left-radius: var(--r-md);
}
.pick-card.late-add {
  border-color: #F59E0B;
}
.pick-card.late-add::before {
  content: '⚡ LATE ADD';
  position: absolute;
  top: 0; right: 0;
  background: #F59E0B;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 12px;
  letter-spacing: 0.12em;
  border-bottom-left-radius: var(--r-md);
}
.pick-card.ladder.late-add::before {
  content: '🪜 LADDER · ⚡ LATE';
  background: var(--brand-red);
}

/* DK / FD / MGM price row */
.book-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 10px 0 8px;
}
.book-cell {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 8px 4px;
  background: var(--bg-gray);
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  min-height: 56px;
}
.book-cell.best {
  border-color: var(--brand-red);
  background: rgba(215,35,45,0.06);
}
.book-cell.linked {
  cursor: pointer;
}
.book-cell.linked:hover, .book-cell.linked:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  background: #FFFFFF;
  text-decoration: none;
}
.book-cell.linked.best:hover, .book-cell.linked.best:active {
  background: rgba(215,35,45,0.10);
}
.book-tap {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  margin-top: 2px;
}
.book-cell.best .book-tap { color: var(--brand-red); }
.book-name {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-mute);
}
.book-cell.best .book-name { color: var(--brand-red); }
.book-odds {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

/* Modal: late-add note + parlay legs */
.m-late-note {
  margin-top: 14px;
  padding: 14px 16px;
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: var(--r-md);
  font-size: 13px;
  color: #78350F;
}
.m-legs {
  display: grid;
  gap: 8px;
}
.m-leg {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 8px;
  padding: 12px 14px;
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.m-leg-game {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.m-leg-pick {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
}
.m-leg-meta {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 12px;
  color: var(--text-dim);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.pick-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}
.sport-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--brand-red);
  padding: 4px 8px;
  background: rgba(215,35,45,0.08);
  border-radius: var(--r-sm);
}
.win-prob {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  line-height: 1;
}
.wp-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: var(--brand-red);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.wp-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  margin-top: 2px;
}
.win-prob.conf-fallback .wp-num { color: var(--text-dim); font-size: 20px; }

.pick-game {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  color: var(--text-dim);
}
.pick-time {
  font-size: 11px;
  color: var(--text-mute);
  margin-bottom: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.pick-line {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 6px;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--text);
}
.pick-odds-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-dim);
}
.pick-odds {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pick-units {
  font-weight: 800;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(212,132,59,0.12);
  border-radius: 4px;
}

.pick-headline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex: 1;
}
.pick-cta {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand-red);
  letter-spacing: 0.12em;
}

@media (max-width: 600px) {
  .pick-line { font-size: 28px; }
  .pick-odds { font-size: 22px; }
  .pick-game { font-size: 17px; }
  .pick-headline { font-size: 14px; }
}

.empty-state {
  color: var(--text-mute);
  font-style: italic;
  padding: 24px;
  text-align: center;
}

/* ── Executive summary band (top-of-page, above picks) ─────────────── */
.exec-summary-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
}
.exec-summary-inner {
  max-width: 920px;
  margin: 0 auto;
}
.exec-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.exec-summary {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  font-weight: 500;
}
@media (max-width: 600px) {
  .exec-summary-section { padding: 18px 16px; }
  .exec-summary { font-size: 16px; line-height: 1.5; }
}

/* ── Methodology / Under the Hood ───────────────────────────────────── */
.methodology { background: var(--bg-gray); padding-top: 56px; padding-bottom: 64px; }
.meth-intro {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  text-align: center;
}
.meth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.meth-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.meth-num {
  position: absolute;
  top: 16px; right: 22px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--brand-red);
  opacity: 0.85;
  letter-spacing: -0.02em;
}
.meth-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding-right: 60px;
  color: var(--text);
}
.meth-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.meth-card p + p { margin-top: 10px; }
.meth-card p + ul { margin-top: 8px; }
.meth-card ul {
  list-style: none;
  padding: 0;
}
.meth-card ul li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  margin-bottom: 6px;
}
.meth-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-red);
}
.meth-card ul + p { margin-top: 12px; }
.meth-card strong { font-weight: 700; color: var(--text); }
.meth-card em { font-style: italic; color: var(--text-dim); }

@media (max-width: 720px) {
  .meth-grid { grid-template-columns: 1fr; gap: 12px; }
  .meth-card { padding: 20px 20px; }
  .meth-num { top: 14px; right: 18px; font-size: 24px; }
  .meth-title { font-size: 19px; padding-right: 48px; }
  .meth-card p, .meth-card ul li { font-size: 14px; }
  .meth-intro { font-size: 15px; }
}

/* ── Slate analysis ─────────────────────────────────────────────────── */
.slate-analysis-section { background: var(--bg-gray); }
.slate-analysis {
  max-width: 780px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-sm);
}
.slate-analysis p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}
.slate-analysis p + p { margin-top: 14px; }
.slate-analysis p:first-child {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 600px) {
  .slate-analysis { padding: 22px 20px; }
  .slate-analysis p { font-size: 15px; }
  .slate-analysis p:first-child { font-size: 16px; }
}

/* ── Scope tabs + rollups ──────────────────────────────────────────── */
.scope-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg);
  border-radius: var(--r-md);
  padding: 4px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  width: max-content;
  max-width: 100%;
  overflow-x: auto;
}
.scope-tab {
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  border-radius: var(--r-sm);
  transition: all 0.15s ease;
  white-space: nowrap;
}
.scope-tab.active {
  background: var(--text);
  color: #fff;
}
.scope-tab:not(.active):hover {
  background: var(--bg-gray);
  color: var(--text);
}

.rollup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.rollup-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
}
.rc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.rc-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.rc-value.positive { color: var(--win); }
.rc-value.negative { color: var(--loss); }
.rc-sub {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 4px;
}

/* ── Recent form ticker ────────────────────────────────────────────── */
.ticker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg);
  font-size: 13px;
  white-space: nowrap;
}
.tick .result {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.tick .result.WIN { color: var(--win); }
.tick .result.LOSS { color: var(--loss); }
.tick .result.PUSH { color: var(--push); }
.tick .tunits {
  font-family: var(--font-display);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.tick .tunits.positive { color: var(--win); }
.tick .tunits.negative { color: var(--loss); }
.tick .tladder { font-size: 12px; }

/* ── History table ─────────────────────────────────────────────────── */
.history-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow-x: auto;
}
.history-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.history-table th,
.history-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.history-table th {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  background: var(--bg-gray);
  position: sticky;
  top: 0;
}
.history-table tbody tr:hover { background: #FAFAFA; }
.history-table td.right { text-align: right; }
.history-table td.win { color: var(--win); font-weight: 700; }
.history-table td.loss { color: var(--loss); font-weight: 700; }
.history-table td.push { color: var(--push); }
.history-table td.pend { color: var(--text-mute); font-style: italic; }
.history-table .units-pl.positive { color: var(--win); font-weight: 700; }
.history-table .units-pl.negative { color: var(--loss); font-weight: 700; }
.history-table .ladder-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 6px;
  background: rgba(215,35,45,0.1);
  color: var(--brand-red);
  border-radius: 3px;
  margin-left: 6px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

/* ── Footer ────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px 56px;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-mute);
  font-size: 13px;
}
.footer-tag {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto 8px;
}
.footer-meta {
  font-size: 11px;
  margin-top: 6px;
}

/* ── Modal (pick detail) ───────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 20px;
  overflow-y: auto;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,12,12,0.45);
}
.modal-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 40px;
  max-width: 760px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  font-size: 24px;
  color: var(--text-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
}
.modal-close:hover { background: var(--bg-gray); }

.m-kicker {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--brand-red);
  margin-bottom: 8px;
}
.m-game {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.m-time {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
}
.m-pickline {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.m-pick {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  color: var(--text);
}
.m-odds {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
}
.m-book {
  font-size: 12px;
  color: var(--text-mute);
}
.m-units {
  font-weight: 800;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.08em;
}
.m-headline {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--text);
}
.m-section {
  margin-top: 24px;
}
.m-section h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.m-section p { font-size: 15px; line-height: 1.65; color: var(--text); }
.m-section p + p { margin-top: 12px; }

.m-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.m-data-card.m-wp-card {
  background: linear-gradient(135deg, rgba(215,35,45,0.10), rgba(215,35,45,0.04));
  border-color: rgba(215,35,45,0.35);
}
.m-data-card.m-wp-card .m-data-label { color: var(--brand-red); }
.m-data-card.m-wp-card .m-data-value { color: var(--brand-red); font-size: 28px; }
.m-data-card {
  background: var(--bg-gray);
  padding: 12px 14px;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.m-data-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.m-data-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  margin: 4px 0;
  font-variant-numeric: tabular-nums;
}
.m-data-context {
  font-size: 12px;
  color: var(--text-dim);
}

.m-quip {
  margin-top: 28px;
  padding: 16px 20px;
  background: linear-gradient(90deg, rgba(215,35,45,0.06) 0%, rgba(215,35,45,0) 100%);
  border-left: 3px solid var(--brand-red);
  font-style: italic;
  font-size: 15px;
  color: var(--text);
}
.m-ladder-note {
  margin-top: 14px;
  padding: 14px 16px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--r-md);
  font-size: 13px;
  color: #7C2D12;
}

@media (max-width: 600px) {
  .modal { padding: 20px 12px; }
  .modal-card { padding: 24px 18px; border-radius: var(--r-md); }
  .m-game { font-size: 24px; }
  .m-pick { font-size: 28px; }
  .m-odds { font-size: 20px; }
  .m-headline { font-size: 16px; }
  .m-data-grid { grid-template-columns: 1fr 1fr; }
  .m-section h4 { font-size: 10px; }
}
