/* LeagueX — Fantasy editorial scoreboard style. Grass Field palette, Manrope, dense-but-calm. */
@import url("./variables.css");

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-700); text-decoration: underline; text-decoration-color: rgba(34, 92, 41, 0.35); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-700); text-decoration: none; }
/* UI chrome (buttons, nav, cards, chrome labels) already has its own visual affordance; keep clean */
.btn, .brand, .main-nav a, .mobile-drawer a, .header-cta a, .hero-cta a, .app-stores a, .store-btn, .topic-card, .news-card, .more, .go, .kicker, .eyebrow, .section-head a, .footer a, .footer-col a, .footer-brand a, .directory a, .scoreboard a, .scoreboard-foot a, .tag, .role, .where, .compare-table a, .digest a, .team-table a, .captain-list a, .pred-card a, .testimonial a, .photo-essay a, .feature-rail a, .method-board a, .verify-flow a, .step-chapter a, .hero-trust a, .stat-card a, .hero-grid a, .app-cta a, .ticker-rail a, .contest-card a, .compliance a, .social-list a, .breadcrumb a, .page-head a, .table a, .pill, .cta, .cta-lnk, .nav a, .menu a, .footer-meta a { text-decoration: none; }
.btn:hover, .btn:focus-visible, .header-cta a:hover, .header-cta a:focus-visible, .hero-cta a:hover, .hero-cta a:focus-visible, .topic-card:hover .go, .topic-card:focus-visible .go, .news-card:hover h3, .more:hover, .more:focus-visible, .go:hover, .scoreboard a:hover, .scoreboard a:focus-visible, .scoreboard-foot a:hover, .scoreboard-foot a:focus-visible, .footer-col a:hover, .footer-col a:focus-visible, .footer-brand a:hover, .footer-brand a:focus-visible, .directory a:hover, .directory a:focus-visible { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 2px; }
*:focus-visible { outline: 2px solid var(--primary-700); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0 0 var(--space-3); line-height: 1.18; letter-spacing: -0.01em; font-weight: 700; }
h1 { font-size: clamp(32px, 5vw, 52px); line-height: 1.1; }
h2 { font-size: clamp(24px, 3.4vw, 34px); }
h3 { font-size: clamp(19px, 2.2vw, 22px); }
h4 { font-size: 17px; text-transform: none; letter-spacing: 0; color: var(--text); }
p { margin: 0 0 var(--space-4); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--space-5); }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-5); }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; gap: var(--space-5);
  min-height: var(--header-h);
  padding: 0 var(--space-5);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 100%);
  display: grid; place-items: center;
  color: #fff; font-weight: 800; font-size: 17px;
  letter-spacing: -0.04em;
}
.brand-name { font-weight: 800; font-size: 19px; color: var(--ink); letter-spacing: -0.01em; }
.brand-name sup { color: var(--accent); font-size: 12.5px; margin-left: 4px; font-weight: 700; } /* WCAG AA on light: #B05D00 on #F6FBF3 ~4.7:1 */
.site-footer .brand-name sup { color: #F5C56A; font-size: 12.5px; } /* WCAG AA on dark #14241a: #F5C56A ~9.8:1 */

.main-nav { display: flex; gap: var(--space-5); align-items: center; flex: 1 1 auto; }
.main-nav a {
  color: var(--text-2); font-weight: 600; font-size: 15px;
  padding: 8px 0; border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--primary-700); border-bottom-color: var(--primary); text-decoration: none; }

.header-cta { display: flex; gap: 10px; align-items: center; flex: 0 0 auto; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 11px 18px;
  font-weight: 700; font-size: 15px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer; line-height: 1;
  white-space: nowrap;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-700); color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--surface-2); text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-700); color: #fff; text-decoration: none; }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--border);
  border-radius: 10px; padding: 0; cursor: pointer;
  align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.hamburger span {
  width: 18px; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .15s;
}

/* mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--surface); z-index: 55;
  padding: var(--space-5);
  border-top: 1px solid var(--border);
  overflow-y: auto;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer nav a {
  display: block; padding: 14px 8px; font-weight: 600;
  color: var(--ink); border-bottom: 1px solid var(--border);
}
.mobile-drawer .drawer-cta { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.mobile-drawer .drawer-cta .btn { width: 100%; }

/* ticker-rail */
.ticker-rail {
  background: var(--ink);
  color: #E5EED9;
  font-size: 13px;
  overflow: hidden;
  border-bottom: 1px solid #0c1a13;
  position: relative;
  max-width: 100vw;
}
.ticker-rail .ticker-track {
  display: flex; gap: var(--space-7);
  padding: 10px 0;
  white-space: nowrap;
  animation: ticker 70s linear infinite;
  width: 100%; max-width: 100%; flex-shrink: 0;
}
.ticker-rail .ticker-track span { display: inline-flex; align-items: center; gap: 8px; }
.ticker-rail .ticker-track span::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); display: inline-block;
}
.ticker-rail .ticker-track strong { color: #fff; font-weight: 700; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: var(--space-6) 0 var(--space-7);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: var(--space-6);
  align-items: start;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary-700);
  background: var(--primary-50); padding: 6px 12px; border-radius: var(--radius-pill);
  margin-bottom: var(--space-3);
}
.hero-lede { color: var(--text-2); font-size: 19px; max-width: 60ch; margin-bottom: var(--space-5); }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: var(--space-6); }
.hero-trust { display: flex; gap: var(--space-4); color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.hero-trust b { color: var(--ink); }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr));
  gap: var(--space-3); margin-top: var(--space-5);
}
.stat-card {
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
}
.stat-card .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--ink); line-height: 1.05; letter-spacing: -.02em; }
.stat-card .lbl { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* scoreboard widget (utility-scoreboard hero right rail) */
.scoreboard {
  background: linear-gradient(180deg, #fff 0%, var(--surface-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.scoreboard-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--ink); color: #fff;
}
.scoreboard-head .live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; color: #ff7a45; letter-spacing: .08em;
}
.scoreboard-head .live::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #ff7a45;
  animation: pulse 1.4s infinite;
}
@keyframes pulse { 0%,100% { opacity:1 } 50% { opacity: .4 } }
.scoreboard-head .stamp { font-size: 12px; color: #cfe2c8; }
.scoreboard-body { padding: 18px; }
.fix-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-3); align-items: center; padding: 12px 0; border-bottom: 1px dashed var(--border); }
.fix-row:last-child { border-bottom: 0; }
.fix-row .team { display: flex; flex-direction: column; gap: 2px; }
.fix-row .team.home { align-items: flex-end; }
.fix-row .team b { font-weight: 700; color: var(--ink); font-size: 15px; }
.fix-row .team small { font-size: 12px; color: var(--muted); }
.fix-row .score { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--ink); letter-spacing: -0.02em; }
.fix-row .status { font-size: 11px; color: var(--accent-700); font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }

.scoreboard-foot {
  padding: 12px 18px;
  background: var(--surface-2); border-top: 1px solid var(--border);
  font-size: 13px; color: var(--text-2);
  display: flex; justify-content: space-between; align-items: center;
}
.scoreboard-foot a { font-weight: 700; }

/* ============================================================ SECTIONS */
section { padding: var(--space-7) 0; }

/* card visual structure (V9 FSL11 verify) */
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); }
.data-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4); }
.data-card .num { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: var(--ink); }
.data-card .lbl { font-size: 12px; color: var(--muted); }
.step-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); position: relative; }
.step-card .step-num { position: absolute; top: 14px; right: 14px; font-weight: 800; color: var(--primary); }
.loose-card { background: linear-gradient(135deg, rgba(255,215,0,0.10) 0%, rgba(255,215,0,0.03) 100%); border: 2px solid rgba(212,175,55,0.45); border-radius: 14px; box-shadow: 0 4px 16px rgba(0,0,0,0.4); padding: var(--space-5); margin: var(--space-4) 0; }
.inline-image-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); align-items: start; margin: var(--space-5) 0; }
.inline-image-row img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 720px) { .faq-grid { grid-template-columns: 1fr 1fr; } }
section.band-alt { background: var(--surface-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
section.band-paper { background: var(--surface); }
section.band-ink { background: var(--ink); color: #E5EED9; }
section.band-ink h2, section.band-ink h3, section.band-ink h4 { color: #fff; }
section.band-ink a { color: #B7E1A9; }
section.band-ink .muted { color: #9eb39c; }

.section-head { display: flex; justify-content: space-between; align-items: end; gap: var(--space-4); margin-bottom: var(--space-5); flex-wrap: wrap; }
.section-head h2 { margin-bottom: 6px; }
.section-head .kicker { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-700); }
.section-head .lead { color: var(--muted); max-width: 60ch; font-size: 15px; margin: 0; }
.section-head .more { font-weight: 700; color: var(--primary-700); font-size: 14px; white-space: nowrap; }

/* Trust strip */
.trust-strip {
  display: grid; grid-template-columns: repeat(5, minmax(0,1fr));
  gap: var(--space-5); align-items: center;
  padding: var(--space-5) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.trust-strip .badge { text-align: center; font-size: 13px; color: var(--muted); }
.trust-strip .badge b { display: block; font-family: var(--font-display); color: var(--ink); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }

/* split feature */
.split-feature { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: var(--space-6); align-items: center; }
.split-feature .image-frame { position: relative; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); }
.split-feature .image-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.split-feature .image-frame figcaption { font-size: 13px; color: var(--muted); padding: 10px 14px; background: var(--surface); border-top: 1px solid var(--border); }

.feature-rails { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-4); margin-top: var(--space-5); }
.feature-rail { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-4); }
.feature-rail .ico { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: 10px; color: var(--primary); }
.feature-rail h3 { margin-bottom: 4px; font-size: 17px; font-weight: 700; color: var(--ink); }
.feature-rail p { font-size: 14px; color: var(--text-2); margin: 0; }

/* topic matrix (one equal-card grid allowed per page) */
.topic-matrix { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-4); }
.topic-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: var(--space-5);
  display: flex; flex-direction: column; min-height: 100%;
  transition: transform .15s ease, box-shadow .15s ease;
}
.topic-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.topic-card .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); }
.topic-card h3 { font-size: 18px; margin: 6px 0 8px; }
.topic-card p { font-size: 14px; color: var(--text-2); margin: 0 0 12px; }
.topic-card .go { font-weight: 700; font-size: 14px; color: var(--primary-700); }

/* photo-essay framed grid (NOT a card grid) */
.photo-essay { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: var(--space-5); }
.photo-essay figure { margin: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.photo-essay figure img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.photo-essay figure figcaption { padding: 14px 18px; font-size: 14px; color: var(--text-2); }
.photo-essay figure figcaption b { color: var(--ink); font-family: var(--font-display); display: block; margin-bottom: 4px; font-size: 16px; }

/* chaptered step */
.step-chapter { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: var(--space-4); counter-reset: step; }
.step-chapter .step {
  position: relative; padding: var(--space-5); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius);
  counter-increment: step;
}
.step-chapter .step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 14px; right: 14px;
  font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--primary); letter-spacing: .04em;
}
.step-chapter .step h3 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.step-chapter .step p { font-size: 14px; color: var(--text-2); margin: 0; }

/* split-method */
.split-method { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--space-6); align-items: start; }
.method-board {
  background: var(--ink); color: #E5EED9;
  border-radius: var(--radius-lg); padding: var(--space-6);
  border: 1px solid #0c1a13;
}
.method-board h3 { color: #fff; }
.method-formula {
  font-family: var(--font-display); font-size: 26px; font-weight: 800;
  background: rgba(255,255,255,.05); padding: var(--space-4); border-radius: var(--radius);
  margin: var(--space-4) 0; color: #fff;
  border-left: 3px solid var(--accent);
}
.method-board ul { padding-left: 18px; color: #cfe2c8; font-size: 14px; line-height: 1.9; }

/* contest carousel */
.contest-rail { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-4); }
.contest-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); }
.contest-card .prize { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--ink); }
.contest-card .tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; background: var(--primary-50); color: var(--primary-700); border-radius: var(--radius-pill); margin-bottom: 8px; }
.contest-card ul { padding-left: 0; list-style: none; margin: var(--space-3) 0 0; font-size: 14px; color: var(--text-2); }
.contest-card ul li { padding: 6px 0; border-bottom: 1px dashed var(--border); display: flex; justify-content: space-between; }
.contest-card ul li:last-child { border-bottom: 0; }

/* digest list */
.digest { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.digest .row { display: grid; grid-template-columns: 78px 1fr auto; gap: var(--space-4); align-items: center; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.digest .row:last-child { border-bottom: 0; }
.digest .row .when { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 16px; }
.digest .row .when small { display: block; font-size: 11px; color: var(--muted); font-weight: 500; margin-top: 2px; letter-spacing: .06em; }
.digest .row .what b { display: block; color: var(--ink); font-size: 15px; }
.digest .row .what small { color: var(--muted); font-size: 13px; }
.digest .row .where { font-size: 12px; font-weight: 700; color: var(--primary-700); background: var(--primary-50); padding: 4px 10px; border-radius: var(--radius-pill); }

/* verification guide */
.verify-flow { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: var(--space-3); counter-reset: vstep; }
.verify-flow .vs { padding: var(--space-4); background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); counter-increment: vstep; position: relative; }
.verify-flow .vs::before { content: counter(vstep); position: absolute; top: 8px; right: 10px; font-weight: 800; color: var(--accent); font-size: 12px; }
.verify-flow .vs h3 { margin: 0 0 6px; font-size: 14px; color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.verify-flow .vs p { margin: 0; font-size: 13px; color: var(--text-2); }

/* team table */
.team-table-wrap { display: block; width: 100%; max-width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.team-table { width: 100%; min-width: 520px; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.team-table th, .team-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.team-table th { background: var(--surface-2); font-family: var(--font-display); color: var(--ink); font-size: 13px; letter-spacing: .04em; }
.team-table tr:last-child td { border-bottom: 0; }
.team-table .form { display: inline-flex; gap: 4px; }
.team-table .form span { width: 14px; height: 14px; border-radius: 50%; background: var(--border); display: inline-block; }
.team-table .form span.win { background: var(--primary); }
.team-table .form span.loss { background: var(--accent); }
.team-table .form span.dr { background: var(--border-strong); }

/* predictions rail (vertical card stack) */
.pred-stack { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-4); }
.pred-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); display: flex; flex-direction: column; gap: 10px; }
.pred-card .match { font-size: 13px; color: var(--muted); font-weight: 700; letter-spacing: .04em; }
.pred-card .pick { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--ink); }
.pred-card .conf { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-2); }
.pred-card .conf .bar { flex: 1 1 auto; height: 6px; background: var(--surface-2); border-radius: 99px; overflow: hidden; }
.pred-card .conf .bar i { display: block; height: 100%; background: var(--primary); }
.pred-card .reason { font-size: 13px; color: var(--muted); border-top: 1px dashed var(--border); padding-top: 8px; }

/* captain split */
.captain-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: var(--space-5); }
.captain-list { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 0; }
.captain-list li { display: grid; grid-template-columns: 36px 1fr auto; gap: 12px; align-items: center; padding: 12px 16px; border-bottom: 1px solid var(--border); list-style: none; }
.captain-list ul { margin: 0; padding: 0; }
.captain-list li:last-child { border-bottom: 0; }
.captain-list .num { font-family: var(--font-display); font-weight: 800; color: var(--accent); font-size: 14px; }
.captain-list .player b { display: block; font-size: 15px; color: var(--ink); }
.captain-list .player small { font-size: 13px; color: var(--muted); }
.captain-list .role { font-size: 12px; font-weight: 700; color: var(--primary-700); background: var(--primary-50); padding: 4px 8px; border-radius: var(--radius-pill); white-space: nowrap; }

/* testimonial */
.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-4); }
.testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }
.testimonial blockquote { margin: 0; font-size: 15px; color: var(--text-2); }
.testimonial .who { display: flex; align-items: center; gap: 10px; }
.testimonial .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-700)); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.testimonial .who small { display: block; color: var(--muted); font-size: 12px; }

/* comparison table */
.compare-table { width: 100%; border-collapse: collapse; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14px; }
.compare-table th { background: var(--surface-2); font-family: var(--font-display); color: var(--ink); }
.compare-table th:first-child, .compare-table td:first-child { background: var(--surface-3); font-weight: 700; color: var(--ink); }
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--primary-700); font-weight: 700; }
.compare-table .no { color: var(--muted); }

/* responsible callout */
.callout {
  background: var(--ink); color: #E5EED9;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--accent);
}
.callout h3 { color: #fff; margin-bottom: 8px; }
.callout p { color: #cfe2c8; margin-bottom: 0; }
.callout .small { font-size: 13px; color: #9eb39c; margin-top: 8px; }

/* app cta split */
.app-cta { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: var(--space-6); align-items: center; background: linear-gradient(180deg, var(--surface-2), var(--background)); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-6); }
.app-cta .qr {
  width: 140px; height: 140px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  display: grid; place-items: center;
}
.app-stores { display: flex; gap: 10px; flex-wrap: wrap; margin-top: var(--space-4); }
.store-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--ink); color: #fff;
  border-radius: var(--radius); font-size: 14px; font-weight: 700;
}
.store-btn:hover { background: #000; color: #fff; text-decoration: none; }
.store-btn small { display: block; font-size: 11px; opacity: .8; font-weight: 500; }

/* directory (hub nav) */
.directory { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: var(--space-4); }
.directory .col h3 { font-family: var(--font-display); color: var(--ink); font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--border); font-weight: 700; }
.directory .col ul { list-style: none; margin: 0; padding: 0; }
.directory .col li { padding: 4px 0; font-size: 14px; }
.directory .col li a { color: var(--text-2); }

/* news cards */
.news-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: var(--space-4); }
.news-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.news-card .thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card .body { padding: var(--space-4); display: flex; flex-direction: column; gap: 8px; flex: 1 1 auto; }
.news-card .eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-700); }
.news-card h3 { font-size: 17px; margin: 0; line-height: 1.25; }
.news-card p { font-size: 14px; color: var(--text-2); margin: 0; }
.news-card .meta { font-size: 12px; color: var(--muted); margin-top: auto; padding-top: 8px; border-top: 1px dashed var(--border); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: var(--space-2); }
.faq-list details { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; }
.faq-list summary { font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 22px; color: var(--primary); transition: transform .15s; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin-top: 10px; font-size: 15px; color: var(--text-2); }

/* compliance strip */
.compliance { font-size: 13px; color: var(--muted); padding: var(--space-4) 0; border-top: 1px solid var(--border); }
.compliance strong { color: var(--text-2); }
.compliance a, .callout a { text-decoration: underline; text-underline-offset: 2px; }
.compliance a { color: #1F5A24; } /* WCAG AA on light bg: #1F5A24 on #F6FBF3 ~7.2:1; visually distinct from #4F6253 surrounding */
.callout a { color: #7FCB85; } /* WCAG AA on dark #14241a: ~6.4:1 */

/* ============================================================ FOOTER */
.site-footer {
  background: var(--ink); color: #cfe2c8;
  padding: var(--space-7) 0 var(--space-5);
  margin-top: var(--space-7);
}
.footer-grid { display: grid; grid-template-columns: minmax(0,1.4fr) repeat(3, minmax(0,1fr)); gap: var(--space-6); }
.footer-brand p { color: #9eb39c; font-size: 14px; max-width: 36ch; }
.footer-col h3 { font-family: var(--font-display); color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; font-size: 14px; }
.footer-col a { color: #cfe2c8; }
.footer-col a:hover { color: #fff; }
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid #1b2e23; margin-top: var(--space-5); padding-top: var(--space-4);
  font-size: 12px; color: #9eb39c;
}
.social-list { display: flex; gap: 12px; }
.social-list a {
  display: grid; place-items: center; width: 36px; height: 36px;
  border: 1px solid #1b2e23; border-radius: 10px;
  color: #cfe2c8;
}
.social-list a:hover { color: #fff; border-color: var(--primary); text-decoration: none; }

/* ============================================================ MOBILE STICKY CTA */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(20,36,26,.96);
  backdrop-filter: blur(6px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid #0c1a13;
}
.sticky-cta .btn { width: 100%; padding: 14px 18px; font-size: 16px; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .split-feature, .split-method, .captain-split, .app-cta { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-matrix, .news-row, .pred-stack, .contest-rail, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .step-chapter { grid-template-columns: repeat(3, 1fr); }
  .verify-flow { grid-template-columns: repeat(3, 1fr); }
  .photo-essay { grid-template-columns: 1fr; }
  .directory { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 899px) {
  .hero { min-height: 480px !important; max-height: 720px !important; padding: 80px 0 60px !important; }
  .hero img { height: 100% !important; object-fit: cover !important; }
  .hero-grid { gap: var(--space-4); }
  .stat-grid { margin-top: var(--space-3); }
  .hero-trust { display: none !important; }
}
@media (max-width: 720px) {
  .main-nav { display: none; }
  .header-cta .btn { display: none; }
  .hamburger { display: inline-flex; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .topic-matrix, .news-row, .pred-stack, .contest-rail, .testimonials, .step-chapter, .verify-flow, .directory, .footer-grid {
    grid-template-columns: 1fr;
  }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .sticky-cta { display: block; }
  .digest .row { grid-template-columns: 1fr; gap: 6px; }
  .digest .row .where { justify-self: start; }
  .compare-table { display: block; overflow-x: auto; }
  .hero { padding-top: var(--space-5); padding-bottom: var(--space-5); }
  .hero img, .hero .image-frame img { aspect-ratio: 16/10; }
}
@media (max-width: 430px) {
  .container, .container-wide, .header-inner { padding: 0 14px; }
  .stat-card .num { font-size: 24px; }
}

/* anchor offset so sticky nav doesn't cover anchor targets */
section[id] { scroll-margin-top: calc(var(--header-h) + 12px); }
main img { background: var(--surface-3); }

/* small utility */
.muted { color: var(--muted); }
.row-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: var(--space-5); }
.text-center { text-align: center; }
.kicker { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-700); }