/* ============================================================
   COLD PICKS, Design System
   Glassmorphism, Editorial, Ice
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --bg: #f4f8fc;
  --bg-soft: #e8f1f9;
  --bg-deep: #dceaf5;

  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.7);
  --glass-shadow: 0 8px 32px rgba(14, 116, 178, 0.08);
  --glass-shadow-strong: 0 12px 48px rgba(14, 116, 178, 0.12);

  --text: #0c1a2b;
  --text-muted: #4a6079;
  --text-dim: #7a8ca0;

  --ice: #0ea5e9;
  --ice-deep: #0369a1;
  --ice-soft: #bae6fd;
  --ice-glow: rgba(14, 165, 233, 0.15);

  --green: #059669;
  --red: #dc2626;
  --yellow: #d97706;

  --border: rgba(14, 116, 178, 0.12);
  --border-strong: rgba(14, 116, 178, 0.22);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Monaco, monospace;

  --container: 1180px;
  --container-narrow: 720px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% 5%, rgba(186, 230, 253, 0.6), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 20%, rgba(165, 220, 240, 0.45), transparent 65%),
    radial-gradient(ellipse 900px 700px at 50% 95%, rgba(199, 230, 250, 0.4), transparent 60%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.3 0 0 0 0 0.6 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  mix-blend-mode: overlay;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1.15;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); font-weight: 400; letter-spacing: -0.04em; }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--text-muted); font-size: 1.0625rem; line-height: 1.7; }
p.lead { font-size: 1.25rem; color: var(--text); font-weight: 400; }

a { color: var(--ice-deep); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--ice); }

.mono { font-family: var(--font-mono); font-feature-settings: "tnum"; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ice-deep);
  font-weight: 500;
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--container-narrow); }

main { flex: 1; padding-top: 8.5rem; padding-bottom: 6rem; }
section { padding: 4rem 0; }

/* ============================================================
   Support Banner (top)
   ============================================================ */
.support-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  padding: 0.625rem 1.5rem;
  background: linear-gradient(135deg, var(--ice-deep) 0%, var(--ice) 100%);
  color: white;
  font-size: 0.8125rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.support-banner a {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.support-banner a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.support-banner-icon {
  display: inline-block;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: fixed;
  top: 38px; /* fallback; updated dynamically via JS based on banner height */
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(244, 248, 252, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand {
  display: flex; align-items: center; gap: 0.625rem;
  font-family: var(--font-display);
  font-size: 1.375rem; font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.brand:hover { color: var(--text); }

.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--font-mono);
  font-size: 0.75rem; font-weight: 700;
  box-shadow: 0 4px 12px var(--ice-glow);
}

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { color: var(--text-muted); font-size: 0.9375rem; font-weight: 500; transition: color 0.2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  background: var(--text); color: white;
  border-radius: 999px;
  font-size: 0.875rem; font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { color: white; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(12, 26, 43, 0.25); }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; width: 32px; height: 32px; position: relative; }
.menu-toggle span { display: block; width: 22px; height: 1.5px; background: var(--text); position: absolute; left: 5px; transition: all 0.3s ease; }
.menu-toggle span:nth-child(1) { top: 11px; }
.menu-toggle span:nth-child(2) { top: 18px; }

/* ============================================================
   Glass
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
}
.glass::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

/* ============================================================
   Hero with split layout
   ============================================================ */

.hero { padding: 3rem 0 4rem; position: relative; overflow: visible; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
}

/* Hero graph escapes the container slightly to the right for dynamism */
.hero-grid > .hero-graph {
  margin-right: -3rem;
  transform: translateY(-0.5rem);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.375rem 0.875rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ice-deep);
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.hero h1 { margin-bottom: 1.75rem; }
.hero h1 em { font-style: italic; color: var(--ice-deep); font-weight: 400; }

.hero-subtitle {
  font-size: 1.1875rem; color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 0.875rem; flex-wrap: wrap; align-items: center; }

/* ============================================================
   Hero Graph
   ============================================================ */

.hero-graph {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow-strong);
  position: relative;
  overflow: hidden;
}

.hero-graph::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.graph-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1rem;
}

.graph-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.375rem;
}

.graph-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.graph-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
}

.graph-svg-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  margin: 0.5rem 0 0.75rem;
}

.graph-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.graph-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.graph-tooltip {
  position: absolute;
  background: var(--text);
  color: white;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -110%);
  transition: opacity 0.15s ease;
  white-space: nowrap;
  z-index: 10;
}

.graph-tooltip.visible { opacity: 1; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  font-size: 0.9375rem; font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer; border: none;
  font-family: var(--font-body);
}
.btn-primary { background: var(--text); color: white; }
.btn-primary:hover { color: white; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(12, 26, 43, 0.25); }

.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.btn-glass:hover { background: var(--glass-bg-strong); color: var(--text); transform: translateY(-2px); box-shadow: var(--glass-shadow-strong); }

.btn-arrow { transition: transform 0.2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ============================================================
   Stats Grid
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3.5rem;
}

.stat {
  padding: 1.5rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
}
.stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.125rem; font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-value.positive { color: var(--green); }

.stat-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ============================================================
   Section heading & Cards
   ============================================================ */
.section-heading { margin-bottom: 3rem; max-width: 720px; }
.section-heading .eyebrow { display: block; margin-bottom: 1rem; }
.section-heading h2 { margin-bottom: 1rem; }
.section-heading p { font-size: 1.125rem; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.card {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--glass-shadow-strong); }

.card-number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ice-deep);
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: block;
}

.card h3 { margin-bottom: 0.875rem; }
.card p { font-size: 0.9375rem; }

/* ============================================================
   Picks
   ============================================================ */
.picks-header {
  display: flex; align-items: end; justify-content: space-between;
  gap: 2rem; margin-bottom: 2rem; flex-wrap: wrap;
}

.picks-date {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 2.5rem 0 1.25rem 0;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.picks-date:first-child {
  margin-top: 0;
}

.picks-date-icon {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice-deep);
  opacity: 0.5;
}

.picks-date-today .picks-date-icon {
  background: var(--green);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15); }
  50% { box-shadow: 0 0 0 6px rgba(5, 150, 105, 0); }
}

.picks-date-meta {
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-weight: 400;
}

.picks-list { display: flex; flex-direction: column; gap: 0.625rem; }

/* Pick row redesign — clean left-bar accent + better hierarchy */
.pick {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 1.25rem 1rem 1.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.pick::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--border);
  transition: background 0.2s ease;
}

.pick:hover {
  transform: translateX(2px);
  box-shadow: var(--glass-shadow-strong);
}

/* WIN state: green left-bar + subtle green glow */
.pick.pick-win::before {
  background: linear-gradient(180deg, var(--green) 0%, #10b981 100%);
}
.pick.pick-win {
  border-color: rgba(5, 150, 105, 0.25);
}
.pick.pick-win:hover {
  border-color: rgba(5, 150, 105, 0.45);
  box-shadow: 0 8px 30px rgba(5, 150, 105, 0.12), var(--glass-shadow);
}

/* LOSS state: muted red left-bar */
.pick.pick-loss::before {
  background: linear-gradient(180deg, var(--red) 0%, #ef4444 100%);
  opacity: 0.6;
}
.pick.pick-loss {
  border-color: rgba(220, 38, 38, 0.15);
  opacity: 0.85;
}

/* PENDING state: ice blue left-bar with pulse animation */
.pick.pick-pending::before {
  background: linear-gradient(180deg, var(--ice) 0%, var(--ice-deep) 100%);
  animation: pendingPulse 2.5s ease-in-out infinite;
}
.pick.pick-pending {
  border-color: rgba(14, 165, 233, 0.25);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(207, 232, 247, 0.15) 100%);
}

@keyframes pendingPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.pick-match { display: flex; flex-direction: column; gap: 0.25rem; min-width: 0; }
.pick-teams {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pick-selection {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ice-deep);
  padding: 0.375rem 0.75rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 999px;
  white-space: nowrap;
}

.pick-odd {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  font-feature-settings: "tnum";
  min-width: 42px;
  text-align: right;
}

/* Result badge — more visual */
.pick-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-width: 80px;
}

.pick-result.win {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.15) 0%, rgba(5, 150, 105, 0.08) 100%);
  color: var(--green);
  border: 1px solid rgba(5, 150, 105, 0.25);
}
.pick-result.loss {
  background: rgba(220, 38, 38, 0.08);
  color: var(--red);
  border: 1px solid rgba(220, 38, 38, 0.18);
}
.pick-result.pending {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0.06) 100%);
  color: var(--ice-deep);
  border: 1px solid rgba(14, 165, 233, 0.25);
}

/* ============================================================
   Results table
   ============================================================ */
.results-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  position: relative;
}
.results-wrapper::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.results-table { width: 100%; border-collapse: collapse; }
.results-table th, .results-table td {
  text-align: left;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.results-table th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  font-weight: 500;
  background: rgba(255, 255, 255, 0.4);
}
.results-table tbody tr:last-child td { border-bottom: none; }
.results-table tbody tr { transition: background 0.15s ease; }
.results-table tbody tr:hover { background: rgba(14, 165, 233, 0.04); }
.results-table td {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text);
}
.results-table td:first-child { font-family: var(--font-body); font-weight: 500; }
.results-table .positive { color: var(--green); }
.results-table .negative { color: var(--red); }

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter {
  padding: 3rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: ''; position: absolute;
  bottom: -50%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 100%;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.15), transparent 60%);
  pointer-events: none;
}
.newsletter h2 { margin-bottom: 0.75rem; position: relative; z-index: 1; }
.newsletter > p { max-width: 480px; margin: 0 auto 1.5rem; position: relative; z-index: 1; }

.newsletter-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin: 0 auto 2rem;
  max-width: 560px;
  position: relative;
  z-index: 1;
}

.newsletter-benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.newsletter-benefit-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.625rem;
  font-weight: 700;
  flex-shrink: 0;
}

.newsletter-form {
  display: flex; gap: 0.5rem;
  max-width: 440px; margin: 0 auto;
  position: relative; z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border 0.2s ease;
}
.newsletter-form input:focus { border-color: var(--ice); }
.newsletter-form button {
  padding: 0.875rem 1.5rem;
  background: var(--text); color: white;
  border: none;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.9375rem; font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(12, 26, 43, 0.25); }

/* ============================================================
   Article
   ============================================================ */
.article { max-width: var(--container-narrow); margin: 0 auto; }

.article-header { margin-bottom: 3rem; text-align: center; }
.article-meta {
  display: flex; justify-content: center; gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.article h1 { margin-bottom: 1rem; font-size: clamp(2rem, 4.5vw, 3.25rem); }
.article-subtitle { font-size: 1.1875rem; color: var(--text-muted); max-width: 60ch; margin: 0 auto; }

.article-body { padding: 3rem 3.5rem; }
.article-body h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.875rem; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.article-body p { margin-bottom: 1.25rem; color: var(--text); font-size: 1.0625rem; line-height: 1.75; }
.article-body p:last-child { margin-bottom: 0; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; color: var(--text); }
.article-body li { margin-bottom: 0.5rem; line-height: 1.7; }

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(14, 165, 233, 0.06);
  border-left: 3px solid var(--ice);
  border-radius: 8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  color: var(--text);
}

.callout {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
}

.callout-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-deep);
  margin-bottom: 0.5rem;
}

/* ============================================================
   Footer with support
   ============================================================ */
.site-footer {
  margin-top: auto;
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand p { font-size: 0.875rem; margin-top: 1rem; max-width: 32ch; }

.footer-support {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 32ch;
}

.footer-support-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.8125rem;
  color: var(--text);
  font-weight: 500;
  transition: all 0.2s ease;
}

.footer-support-link:hover {
  color: var(--text);
  background: white;
  transform: translateY(-1px);
  box-shadow: var(--glass-shadow);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.625rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9375rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-disclaimer { max-width: 60ch; font-size: 0.75rem; line-height: 1.6; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.fade-in-1 { animation-delay: 0.1s; }
.fade-in-2 { animation-delay: 0.2s; }
.fade-in-3 { animation-delay: 0.3s; }
.fade-in-4 { animation-delay: 0.4s; }
.fade-in-5 { animation-delay: 0.5s; }
.fade-in-6 { animation-delay: 0.6s; }

@keyframes graphDraw {
  to { stroke-dashoffset: 0; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-grid > .hero-graph { margin-right: 0; transform: none; }
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .article-body { padding: 2rem 1.75rem; }
}

@media (max-width: 720px) {
  main { padding-top: 8rem; }
  .support-banner {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    line-height: 1.4;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(12, 26, 43, 0.18), 0 4px 12px rgba(12, 26, 43, 0.08);
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
  }
  .menu-toggle { display: block; z-index: 201; }
  .nav-cta { display: none; }
  section { padding: 3rem 0; }
  .pick { grid-template-columns: 1fr auto; gap: 0.75rem 1rem; padding: 1rem 1rem 1rem 1.25rem; }
  .pick-match { grid-column: 1; grid-row: 1; }
  .pick-result { grid-column: 2; grid-row: 1; min-width: 70px; padding: 0.3125rem 0.625rem; font-size: 0.625rem; }
  .pick-selection { grid-column: 1; grid-row: 2; justify-self: start; }
  .pick-odd { grid-column: 2; grid-row: 2; justify-self: end; }
  .pick-teams { white-space: normal; font-size: 0.875rem; }
  .results-table th, .results-table td { padding: 0.75rem 1rem; font-size: 0.8125rem; }
  .results-table th:nth-child(n+5), .results-table td:nth-child(n+5) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .newsletter { padding: 2.5rem 1.5rem; }
  .newsletter-form { flex-direction: column; }
  .hero-graph { padding: 1.5rem; }
  .graph-svg-wrap { height: 180px; }
}

/* ============================================================
   Principles Grid (4 columns, strategy page intro)
   ============================================================ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.principle {
  padding: 1.5rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.principle::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.principle:hover { transform: translateY(-3px); box-shadow: var(--glass-shadow-strong); }

.principle-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  display: flex; align-items: center; justify-content: center;
  color: white;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-shadow: 0 4px 12px var(--ice-glow);
}

.principle h4 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.principle p {
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

/* ============================================================
   Strategy Cards Grid (14 strategy cards)
   ============================================================ */
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

.strategy-card {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: inherit;
}

.strategy-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-strong);
  color: inherit;
}

.strategy-card-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.strategy-number {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-deep);
  margin-bottom: 0.375rem;
}

.strategy-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
}

.strategy-type-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  white-space: nowrap;
}

.strategy-type-badge.favourite {
  background: rgba(14, 165, 233, 0.1);
  color: var(--ice-deep);
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.strategy-type-badge.home {
  background: rgba(5, 150, 105, 0.1);
  color: var(--green);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.strategy-type-badge.away {
  background: rgba(217, 119, 6, 0.1);
  color: var(--yellow);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.strategy-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.strategy-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.strategy-stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.strategy-stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.strategy-stat-value.positive { color: var(--green); }
.strategy-stat-value.mono {
  font-family: var(--font-mono);
  font-size: 1.125rem;
  font-weight: 600;
}

.strategy-footer {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.strategy-footer-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strategy-link {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ice-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.strategy-card:hover .strategy-link {
  gap: 0.625rem;
  color: var(--ice);
}

/* ============================================================
   Strategy Detail Page
   ============================================================ */
.strategy-detail-header {
  text-align: center;
  margin-bottom: 3rem;
}

.strategy-detail-header .eyebrow {
  display: block;
  margin-bottom: 1rem;
}

.strategy-detail-header h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.strategy-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.detail-stat {
  padding: 1.5rem 1.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.detail-stat::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.detail-stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.detail-stat-value {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.detail-stat-value.positive { color: var(--green); }
.detail-stat-value.negative { color: var(--red); }
.detail-stat-value.mono {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
}

.detail-stat-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  margin-top: 0.375rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color 0.2s ease, gap 0.2s ease;
}

.back-link:hover {
  color: var(--text);
  gap: 0.75rem;
}

/* ============================================================
   Contact icon SVG support
   ============================================================ */
.contact-icon-svg {
  width: 24px;
  height: 24px;
  fill: white;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .strategy-detail-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .principles-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .strategy-grid { grid-template-columns: 1fr; }
  .strategy-stats { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Strategy v4: Win rate primary + curve
   ============================================================ */

/* Override strategy stat layout: P&L is now primary, win rate secondary */
.strategy-stats-primary {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.strategy-pl-box {
  display: flex;
  flex-direction: column;
}

.strategy-pl-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.375rem;
}

.strategy-pl-value {
  font-family: var(--font-display);
  font-size: 2.875rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--green);
  line-height: 0.95;
}

.strategy-pl-unit {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

.strategy-winrate-secondary-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.strategy-winrate-secondary-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.strategy-winrate-secondary-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1;
}

.strategy-secondary-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.strategy-mini-stat {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.strategy-mini-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.strategy-mini-value {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.strategy-mini-value.positive { color: var(--green); }

/* Detail page wider container */
.container-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Detail page curve chart */
.detail-curve-wrap {
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow-strong);
  position: relative;
  overflow: hidden;
}

.detail-curve-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.detail-curve-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.detail-curve-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.detail-curve-headline {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}

.detail-curve-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-align: right;
}

.detail-curve-svg-wrap {
  position: relative;
  width: 100%;
  height: 280px;
}

.detail-curve-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.detail-curve-axis {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  fill: var(--text-dim);
}

.detail-curve-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 720px) {
  .strategy-stats-primary { grid-template-columns: 1fr; gap: 1rem; }
  .strategy-pl-value { font-size: 2.5rem; }
  .strategy-secondary-stats { grid-template-columns: 1fr 1fr; }
  .detail-curve-svg-wrap { height: 220px; }
  .detail-curve-headline { font-size: 1.75rem; }
}

/* ============================================================
   Last updated badge (subtle, mono)
   ============================================================ */
.data-updated-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.375rem 0.75rem;
  background: rgba(14, 116, 178, 0.06);
  border: 1px solid rgba(14, 116, 178, 0.12);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ice-deep);
}
.data-updated-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice-deep);
  opacity: 0.5;
}

/* ============================================================
   Compact Journey Teaser (horizontal asymmetric)
   ============================================================ */
.journey-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem 2.25rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-teaser::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.journey-teaser:hover {
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-strong);
}

.journey-teaser-content { display: flex; flex-direction: column; gap: 0.5rem; }

.journey-teaser-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-deep);
  margin-bottom: 0.25rem;
}

.journey-teaser-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin: 0;
}

.journey-teaser-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 560px;
}

@media (max-width: 720px) {
  .journey-teaser {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.5rem 1.5rem;
    text-align: left;
  }
  .journey-teaser-title { font-size: 1.25rem; }
}

/* ============================================================
   Strategy Preview Block (homepage)
   ============================================================ */
.strategy-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 3rem;
  background: var(--glass-bg);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.strategy-preview::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.strategy-preview-content { display: flex; flex-direction: column; }

.strategy-preview h2 {
  font-size: clamp(1.875rem, 3vw, 2.5rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.strategy-preview h2 em { font-style: italic; color: var(--ice-deep); font-weight: 400; }

.strategy-preview-lead {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.strategy-preview-bullets {
  list-style: none;
  margin: 0 0 2rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.strategy-preview-bullets li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.strategy-preview-bullets li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  flex-shrink: 0;
  margin-top: 2px;
  background-image:
    linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.5l2.5 2.5 4.5-5.5'/%3E%3C/svg%3E");
  background-blend-mode: normal;
  background-size: cover;
  position: relative;
}

.strategy-preview-bullets li strong {
  color: var(--text);
  font-weight: 600;
}

.strategy-preview-bullets li span.muted {
  color: var(--text-muted);
}

/* Right side: visual stack of strategy data */
.strategy-preview-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.strategy-preview-stat {
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.strategy-preview-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.strategy-preview-stat-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  margin-bottom: 0.375rem;
}

.strategy-preview-stat-value {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}

.strategy-preview-stat-value.positive { color: var(--green); }
.strategy-preview-stat-value.mono {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 600;
}

.strategy-preview-stat-meta {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: var(--text-dim);
  margin-top: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.strategy-preview-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ice-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: 0.5rem;
}

.strategy-preview-link:hover {
  gap: 0.75rem;
  color: var(--ice);
}

/* ============================================================
   Journey Editorial Block (homepage)
   ============================================================ */
.journey-editorial {
  position: relative;
  padding: 4rem 3rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(207, 232, 247, 0.4) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  overflow: hidden;
  text-align: center;
}

.journey-editorial::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
}

.journey-editorial::after {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16rem;
  line-height: 1;
  color: rgba(14, 116, 178, 0.06);
  pointer-events: none;
  z-index: 0;
}

.journey-editorial-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.journey-editorial-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ice-deep);
  margin-bottom: 1.5rem;
}

.journey-editorial h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.journey-editorial h2 em { font-style: italic; color: var(--ice-deep); font-weight: 400; }

.journey-editorial-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.journey-editorial-pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.375rem;
  color: var(--text);
  line-height: 1.4;
  margin: 2rem 0 2rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.journey-editorial-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 0.375rem;
  border-bottom: 2px solid var(--text);
  transition: gap 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.journey-editorial-link:hover {
  gap: 0.75rem;
  color: var(--ice-deep);
  border-color: var(--ice-deep);
}

@media (max-width: 900px) {
  .strategy-preview { grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 2rem; }
  .strategy-preview-visual { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .strategy-preview { padding: 2rem 1.5rem; }
  .strategy-preview-visual { grid-template-columns: 1fr; }
  .journey-editorial { padding: 3rem 2rem; }
  .journey-editorial::after { font-size: 10rem; top: -1rem; left: 0.5rem; }
  .journey-editorial-pull { font-size: 1.125rem; margin: 1.5rem 0; }
}

/* Results page: cumulative graph styling */
.results-graph {
  margin-bottom: 3rem;
}
.results-graph #cumulative-graph {
  width: 100%;
}

/* ============================================================
   Locked picks: today's picks reserved for subscribers
   ============================================================ */
.pick.pick-locked {
  position: relative;
  cursor: default;
  border-color: rgba(14, 165, 233, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(207, 232, 247, 0.18) 100%);
}

.pick.pick-locked::before {
  background: linear-gradient(180deg, var(--ice) 0%, var(--ice-deep) 100%);
}

.pick.pick-locked:hover {
  transform: none;
}

/* Blur ONLY the team names — selection + odds stay visible as proof */
.pick.pick-locked .pick-teams {
  filter: blur(6px);
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* Lock icon badge replaces result badge */
.pick-result.locked {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12) 0%, rgba(14, 165, 233, 0.06) 100%);
  color: var(--ice-deep);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.pick-result.locked .lock-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Subscriber CTA card under today's picks */
.subscriber-cta {
  margin-top: 1rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg,
    rgba(207, 232, 247, 0.55) 0%,
    rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(14, 116, 178, 0.10), var(--glass-shadow);
  position: relative;
  overflow: hidden;
}

.subscriber-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
}

.subscriber-cta-header {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-deep);
}

.subscriber-cta-icon {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--ice) 0%, var(--ice-deep) 100%);
  color: white;
  font-size: 0.75rem;
  box-shadow: 0 4px 10px var(--ice-glow);
}

.subscriber-cta h3 {
  font-size: 1.375rem;
  margin: 0 0 0.625rem 0;
  letter-spacing: -0.015em;
}

.subscriber-cta p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 1.5rem 0;
  max-width: 540px;
}

.subscriber-cta-form {
  display: flex;
  gap: 0.625rem;
  max-width: 480px;
}

.subscriber-cta-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.subscriber-cta-form input:focus {
  border-color: var(--ice-deep);
  box-shadow: 0 0 0 3px rgba(14, 116, 178, 0.12);
}

.subscriber-cta-form button {
  padding: 0.75rem 1.5rem;
  background: var(--text);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.subscriber-cta-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(12, 26, 43, 0.25);
}

.subscriber-cta-footnote {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

@media (max-width: 720px) {
  .subscriber-cta { padding: 1.5rem 1.5rem; }
  .subscriber-cta-form { flex-direction: column; }
  .subscriber-cta-form button { width: 100%; }
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-category {
  margin-bottom: 3rem;
}

.faq-category-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ice-deep);
  margin-bottom: 1.25rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.faq-category-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ice-deep);
  opacity: 0.5;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--glass-shadow);
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  z-index: 1;
}

.faq-item.is-open {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 0 8px 30px rgba(14, 116, 178, 0.10), var(--glass-shadow);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--ice-deep);
}

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--ice-deep);
  font-size: 1rem;
  font-weight: 400;
  transition: transform 0.3s ease, background 0.2s ease;
  font-family: var(--font-mono);
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: rgba(14, 165, 233, 0.15);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-top: -1px;
}

.faq-answer-inner p {
  margin: 0 0 0.875rem 0;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

.faq-answer-inner strong {
  color: var(--text);
  font-weight: 600;
}

.faq-answer-inner a {
  color: var(--ice-deep);
  text-decoration: underline;
  text-decoration-color: rgba(14, 116, 178, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease;
}

.faq-answer-inner a:hover {
  text-decoration-color: var(--ice-deep);
}

/* FAQ closing CTA */
.faq-bottom-cta {
  margin-top: 4rem;
  padding: 2rem 2.25rem;
  background: linear-gradient(135deg,
    rgba(207, 232, 247, 0.45) 0%,
    rgba(255, 255, 255, 0.7) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
  text-align: center;
}

.faq-bottom-cta h3 {
  font-size: 1.375rem;
  margin: 0 0 0.625rem 0;
  letter-spacing: -0.015em;
}

.faq-bottom-cta p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem 0;
}

@media (max-width: 720px) {
  .faq-question { font-size: 0.9375rem; padding: 1rem 1.25rem; gap: 1rem; }
  .faq-answer-inner { padding: 1rem 1.25rem 1.25rem; }
  .faq-toggle { width: 24px; height: 24px; font-size: 0.875rem; }
}
