/* PoolStats marketing site — shared stylesheet.
   Visual spec: PoolStats/Claude/Screens/MarketingSite/template-E-championship-statsheet.html
   Token values mirror poolstats-web/src/index.css (light theme). The site is light-only (MS14). */

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

:root {
  --bg-page:        #f8f9fa;
  --bg-card:        #ffffff;
  --text-primary:   #111827;
  --text-secondary: #374151;
  --text-muted:     #6b7280;
  --text-faint:     #9ca3af;
  --border-default: #e5e7eb;
  --border-subtle:  #f3f4f6;
  --brand-primary:  #0B6E4F;
  --brand-dark:     #1B4332;
  --brand-hover:    #095840;
  --brand-bg-subtle:#f0f9f6;
  --gold:           #F4B400;
  --win:            #16a34a;
  --loss:           #dc2626;
  --mono: ui-monospace, 'Cascadia Mono', Consolas, 'Courier New', monospace;
  --shadow-card:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:      0 10px 30px -8px rgba(11,110,79,0.35);
  --shadow-dash:    0 24px 70px -24px rgba(17,24,39,0.28);
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid rgba(11,110,79,0.5);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-subtle);
}
.nav-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); margin-right: auto; }
.brand svg { display: block; }
.brand .word { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; }
.brand .word b { color: var(--brand-primary); font-weight: 800; }
.nav a.link { text-decoration: none; color: var(--text-secondary); font-size: 14.5px; font-weight: 600; }
.nav a.link:hover { color: var(--brand-primary); }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: 15px;
  border-radius: 999px; padding: 11px 22px; transition: all .15s ease; cursor: pointer; border: none;
}
.btn-primary { background: var(--brand-primary); color: #fff; box-shadow: 0 2px 10px rgba(11,110,79,0.3); }
.btn-primary:hover { background: var(--brand-hover); }
.btn-ghost-onbrand { background: rgba(255,255,255,0.14); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost-onbrand:hover { background: rgba(255,255,255,0.22); }
.btn-white { background: #fff; color: var(--brand-dark); }
.btn-white:hover { transform: translateY(-1px); }
.btn-outline { background: #fff; color: var(--brand-primary); border: 2px solid var(--brand-primary); padding: 9px 20px; }
.btn-outline:hover { background: var(--brand-bg-subtle); }
.nav .btn { padding: 9px 18px; font-size: 14px; white-space: nowrap; }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--text-secondary);
}
.nav-toggle svg { display: block; }
.nav-menu { display: contents; }
@media (max-width: 820px) {
  .nav-inner { gap: 14px; }
  .nav-toggle { display: block; }
  .nav-menu {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border-default);
    box-shadow: 0 12px 24px -12px rgba(0,0,0,0.15);
    flex-direction: column; align-items: stretch; padding: 8px 0 14px;
  }
  .nav.open .nav-menu { display: flex; }
  .nav-menu a.link { padding: 12px 24px; font-size: 16px; }
  .nav-menu .btn { margin: 8px 24px 0; text-align: center; }
}

/* ============ HERO (index) ============ */
.hero {
  background: linear-gradient(135deg, #0B6E4F 0%, #1B4332 100%);
  color: #fff; overflow: hidden; position: relative;
  padding: 0; /* the generic section padding is folded into .hero-inner so small screens can shrink it */
}
.hero::after {
  content: ''; position: absolute; right: -180px; top: -180px; width: 560px; height: 560px;
  border-radius: 50%; background: radial-gradient(circle, rgba(244,180,0,0.14), transparent 65%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; padding: 160px 0 168px; }
.hero h1 { font-size: 52px; line-height: 1.06; font-weight: 800; letter-spacing: -0.03em; }
.hero h1 .gold { color: var(--gold); }
.hero p.sub { margin-top: 18px; font-size: 19px; line-height: 1.55; color: rgba(255,255,255,0.88); max-width: 480px; }
.hero .ctas { margin-top: 30px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .fineprint { margin-top: 16px; font-size: 13.5px; color: rgba(255,255,255,0.6); }
.hero-badges { margin-top: 34px; display: flex; gap: 10px; flex-wrap: wrap; }
.hbadge {
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.92); padding: 6px 12px; border-radius: 999px;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 36px 0 64px; }
  .hero h1 { font-size: 38px; }
  .phone-col { display: flex; justify-content: center; }
  /* single-column hero reads as a centered stack, not a left column */
  .hero-copy { text-align: center; padding: 0 14px; }
  .hero p.sub { margin-left: auto; margin-right: auto; }
  .hero .ctas, .hero-badges { justify-content: center; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 34px; }
  .phone { transform: rotate(2.5deg) scale(0.9); }
}

/* ============ PHONE MOCKUP ============ */
.phone-col { position: relative; z-index: 1; display: flex; justify-content: center; }
.phone {
  width: 300px; background: #0d1117; border-radius: 36px; padding: 10px;
  box-shadow: 0 24px 60px -12px rgba(0,0,0,0.5), inset 0 0 0 2px rgba(255,255,255,0.08);
  transform: rotate(2.5deg);
}
.screen { background: #f8f9fa; border-radius: 28px; overflow: hidden; }
.screen img { display: block; width: 100%; height: auto; }
.scr-head {
  background: linear-gradient(135deg, #0B6E4F, #1B4332); color: #fff; padding: 14px 14px 12px;
}
.scr-head .meta { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.65); text-align: center; }
.scoreline { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.pl { text-align: center; flex: 1; }
.pl .nm { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.9); }
.pl .sc { font-size: 30px; font-weight: 800; line-height: 1.1; }
.pl.active .nm::after { content: ' \25CF'; color: var(--gold); font-size: 9px; vertical-align: 2px; }
.vs { font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 700; padding: 0 6px; }
.balls { display: flex; gap: 7px; justify-content: center; padding: 14px 10px 6px; }
.ball {
  width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff; box-shadow: inset -2px -3px 5px rgba(0,0,0,0.25), 0 1px 2px rgba(0,0,0,0.15);
}
.ball span { background: #fff; color: #111827; width: 14px; height: 14px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; }
.b1 { background: #F4B400; } .b2 { background: #2563eb; } .b3 { background: #dc2626; }
.b4 { background: #7c3aed; } .b5 { background: #f97316; } .b6 { background: #16a34a; }
.b7 { background: #991b1b; } .b8 { background: #23262B; }
.b9 { background: linear-gradient(to bottom, #fff 22%, #F4B400 22%, #F4B400 78%, #fff 78%); }
.ball.potted { opacity: 0.28; filter: grayscale(0.4); }
.scr-actions { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 10px 12px 8px; }
.act {
  border-radius: 12px; padding: 12px 0; text-align: center; font-size: 13px; font-weight: 800;
  background: #fff; border: 1px solid #e5e7eb; color: #374151; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.act.pot { background: #0B6E4F; color: #fff; border-color: #0B6E4F; }
.scr-strip { display: flex; gap: 6px; padding: 4px 12px 14px; }
.chip { font-size: 9.5px; font-weight: 700; padding: 5px 8px; border-radius: 999px; background: #fff; border: 1px solid #e5e7eb; color: #6b7280; white-space: nowrap; }
.chip.win { background: #dcfce7; border-color: #bbf7d0; color: #16a34a; }

/* ============ SECTIONS ============ */
section { padding: 84px 0; }
.kicker { font-size: 13px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-primary); }
h2.sec { font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin-top: 10px; }
p.sec-sub { margin-top: 12px; font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.6; }
.center { text-align: center; }
.center p.sec-sub { margin-left: auto; margin-right: auto; }

/* Features */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid3 { grid-template-columns: 1fr; } }
.fcard {
  background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: 16px;
  padding: 26px 24px; box-shadow: var(--shadow-card);
}
.fcard .ic {
  width: 44px; height: 44px; border-radius: 12px; background: var(--brand-bg-subtle);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.fcard h3 { font-size: 17.5px; font-weight: 800; letter-spacing: -0.01em; }
.fcard p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
.fcard .soon {
  display: inline-block; margin-left: 8px; padding: 3px 9px; border-radius: 999px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  background: #fdf5db; border: 1px solid #eacd75; color: #8a6d1a; vertical-align: 2px;
}

/* ============ STATS SHOWCASE ============ */
.stats-band { background: var(--brand-bg-subtle); border-top: 1px solid #dcefe7; border-bottom: 1px solid #dcefe7; }
.dash { margin-top: 44px; text-align: left; background: var(--bg-card); border: 1px solid var(--border-default); border-radius: 18px; box-shadow: var(--shadow-dash); overflow: hidden; font-variant-numeric: tabular-nums; }
.chrome { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); background: #fafbfa; }
.dash > img { display: block; width: 100%; height: auto; }
.shot-note { margin-top: 14px; font-size: 12.5px; color: var(--text-muted); }
.chrome .dot { width: 11px; height: 11px; border-radius: 50%; background: #e5e7eb; }
.chrome .dot:nth-child(1) { background: #fca5a5; } .chrome .dot:nth-child(2) { background: #fde68a; } .chrome .dot:nth-child(3) { background: #bbf7d0; }
.chrome .url { margin-left: 10px; font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 20px 26px 0; flex-wrap: wrap; }
.dash-head h3 { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; }
.dash-head .sample { font-size: 11.5px; font-weight: 700; color: var(--text-muted); font-family: var(--mono); }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter { font-size: 12.5px; font-weight: 700; padding: 7px 13px; border-radius: 999px; border: 1px solid var(--border-default); color: var(--text-muted); background: #fff; }
.filter.on { background: var(--brand-primary); border-color: var(--brand-primary); color: #fff; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding: 20px 26px 8px; }
@media (max-width: 860px) { .kpi-row { grid-template-columns: 1fr 1fr; } }
.kpi { border: 1px solid var(--border-subtle); background: #fafbfa; border-radius: 13px; padding: 16px 18px; }
.kpi .k { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); font-family: var(--mono); }
.kpi .v { margin-top: 7px; font-size: 31px; font-weight: 800; letter-spacing: -0.02em; }
.kpi .v small { font-size: 15px; font-weight: 700; color: var(--text-muted); }
.kpi .d { margin-top: 3px; font-size: 12px; font-weight: 700; color: var(--brand-primary); }
.kpi .d.flat { color: var(--text-muted); }
.dash-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; padding: 14px 26px 26px; }
@media (max-width: 860px) { .dash-grid { grid-template-columns: 1fr; } }
.panel { border: 1px solid var(--border-subtle); border-radius: 13px; padding: 18px 20px; background: #fff; }
.panel h4 { font-size: 13px; font-weight: 800; color: var(--text-secondary); }
.panel .hint { font-size: 11px; color: var(--text-muted); font-family: var(--mono); margin-top: 2px; }
.linechart { margin-top: 14px; }
.linechart svg { display: block; width: 100%; }
.dbars { display: flex; align-items: flex-end; gap: 12px; height: 132px; margin-top: 16px; border-bottom: 1px solid var(--border-subtle); padding-bottom: 2px; }
.dcol { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; gap: 6px; }
.dbar { width: 100%; max-width: 34px; background: var(--brand-primary); border-radius: 4px 4px 0 0; }
.dcol.max .dbar { background: var(--brand-dark); }
.dval { font-size: 11px; font-weight: 800; color: var(--text-secondary); visibility: hidden; }
.dcol.max .dval { visibility: visible; }
.dlbls { display: flex; gap: 12px; margin-top: 7px; }
.dlbls span { flex: 1; text-align: center; font-size: 10.5px; color: var(--text-muted); font-weight: 600; font-family: var(--mono); }
.split { margin-top: 14px; }
.split .bar { display: flex; height: 26px; border-radius: 8px; overflow: hidden; gap: 2px; }
.split .w { background: var(--brand-primary); }
.split .l { background: #d1d5db; }
.split .legend { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; font-weight: 700; color: var(--text-secondary); }
.split .legend .lw::before { content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 3px; background: var(--brand-primary); margin-right: 6px; }
.split .legend .ll::before { content: ''; display: inline-block; width: 9px; height: 9px; border-radius: 3px; background: #d1d5db; margin-right: 6px; }
table.recent { width: 100%; border-collapse: collapse; margin-top: 12px; }
table.recent td { padding: 9px 4px; border-top: 1px solid var(--border-subtle); font-size: 13px; }
table.recent td.g { color: var(--text-muted); font-size: 12px; font-family: var(--mono); }
table.recent td.sc { font-weight: 800; text-align: right; white-space: nowrap; }
.badge { display: inline-block; min-width: 24px; text-align: center; font-size: 11px; font-weight: 800; border-radius: 6px; padding: 3px 6px; }
.badge.w { background: #dcfce7; color: #166534; }
.badge.l { background: #fef2f2; color: #b91c1c; }

/* Game types */
.games { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 40px; }
.game {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border-default);
  border-radius: 999px; padding: 12px 22px 12px 14px; box-shadow: var(--shadow-card); font-weight: 800; font-size: 15px;
}
.gball { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: inset -2px -3px 6px rgba(0,0,0,0.25); }
.gball span { background: #fff; width: 19px; height: 19px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #111827; }
.g8 { background: #23262B; } .g9 { background: linear-gradient(to bottom, #fff 22%, #F4B400 22%, #F4B400 78%, #fff 78%); }
.g10 { background: linear-gradient(to bottom, #fff 22%, #2563eb 22%, #2563eb 78%, #fff 78%); } .g7 { background: #991b1b; }
.geng { background: linear-gradient(90deg, #dc2626 50%, #F4B400 50%); }
.geng span { visibility: hidden; }

/* Pricing teaser (index) */
.price-teaser {
  margin-top: 44px; background: #fff; border: 2px solid var(--brand-primary); border-radius: 20px;
  padding: 36px; text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; box-shadow: var(--shadow-lg);
}
.price-teaser .free { font-size: 42px; font-weight: 800; letter-spacing: -0.03em; color: var(--brand-primary); }
.price-teaser p { margin-top: 10px; color: var(--text-muted); font-size: 15.5px; line-height: 1.6; }
.price-teaser .btn { margin-top: 22px; }
.price-teaser .more { display: block; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--brand-primary); text-decoration: none; }
.price-teaser .more:hover { text-decoration: underline; }

/* Final CTA */
.cta-band { background: linear-gradient(135deg, #0B6E4F 0%, #1B4332 100%); color: #fff; text-align: center; }
.cta-band h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.02em; }
.cta-band p { margin-top: 12px; font-size: 17px; color: rgba(255,255,255,0.8); }
.cta-band .btn { margin-top: 28px; }

/* Footer */
footer { background: #10241c; color: rgba(255,255,255,0.75); padding: 44px 0 36px; font-size: 14px; }
.foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.foot .brand .word { color: #fff; }
.foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot a { color: rgba(255,255,255,0.75); text-decoration: none; font-weight: 600; }
.foot a:hover { color: #fff; }
.foot .made { width: 100%; margin-top: 26px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 13px; color: rgba(255,255,255,0.58); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }

/* ============ SUBPAGES ============ */
.page-head {
  background: linear-gradient(135deg, #0B6E4F 0%, #1B4332 100%);
  color: #fff; padding: 52px 0 56px; position: relative; overflow: hidden;
}
.page-head::after {
  content: ''; position: absolute; right: -220px; top: -260px; width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(244,180,0,0.12), transparent 65%);
  pointer-events: none;
}
.page-head h1 { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; }
.page-head p { margin-top: 12px; font-size: 17px; color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.6; }
@media (max-width: 620px) { .page-head h1 { font-size: 30px; } }

/* Plans page */
.plans-note {
  margin: 40px auto 0; max-width: 720px; background: #fff; border: 1px solid var(--border-default);
  border-left: 4px solid var(--gold); border-radius: 12px; padding: 16px 20px;
  font-size: 14.5px; line-height: 1.6; color: var(--text-secondary); box-shadow: var(--shadow-card);
}
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; align-items: stretch; }
@media (max-width: 900px) { .plan-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.plan {
  background: var(--bg-card); border: 1px solid var(--border-default); border-radius: 20px;
  padding: 30px 26px; text-align: left; box-shadow: var(--shadow-card); display: flex; flex-direction: column;
}
.plan.featured { border: 2px solid var(--brand-primary); box-shadow: var(--shadow-lg); position: relative; }
.plan .flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand-primary); color: #fff; font-size: 11.5px; font-weight: 800;
  letter-spacing: 0.06em; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan h2 { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; }
.plan .tag { margin-top: 4px; font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }
.plan .price { margin-top: 18px; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--brand-primary); }
.plan .price small { font-size: 14px; font-weight: 700; color: var(--text-muted); letter-spacing: 0; }
.plan .price-note { margin-top: 4px; font-size: 12.5px; color: var(--text-muted); }
.plan ul { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14.5px; line-height: 1.45; color: var(--text-secondary); }
.plan li .tick { flex: none; width: 18px; height: 18px; margin-top: 1px; }
.plan li.off { color: var(--text-muted); }
.plan .btn { margin-top: 26px; text-align: center; }
.plan-foot { margin-top: 34px; text-align: center; font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* FAQ page */
.faq-list { max-width: 720px; margin: 40px auto 0; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card); border: 1px solid var(--border-default); border-radius: 14px;
  box-shadow: var(--shadow-card); overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 20px; font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; transition: transform .15s ease; color: var(--text-faint); }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--brand-primary); }
.faq-item .a { padding: 0 20px 18px; font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); }
.faq-item .a p + p { margin-top: 10px; }
.faq-item .a a { color: var(--brand-primary); font-weight: 700; text-decoration: none; }
.faq-item .a a:hover { text-decoration: underline; }

/* Legal pages */
.prose { max-width: 720px; margin: 0 auto; padding: 56px 0 72px; }
.prose h2 { font-size: 21px; font-weight: 800; letter-spacing: -0.01em; margin-top: 36px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: var(--text-secondary); }
.prose ul { margin: 12px 0 0 22px; }
.prose li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-top: 6px; }
.prose a { color: var(--brand-primary); font-weight: 700; text-decoration: none; }
.prose a:hover { text-decoration: underline; }
.prose .updated { font-size: 13px; color: var(--text-muted); margin-top: 0; }

/* 404 */
.notfound { text-align: center; padding: 96px 0 110px; }
.notfound .code { font-size: 72px; font-weight: 800; letter-spacing: -0.04em; color: var(--brand-primary); line-height: 1; }
.notfound h1 { margin-top: 14px; font-size: 30px; font-weight: 800; letter-spacing: -0.02em; }
.notfound p { margin-top: 12px; font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.notfound .ctas { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
