/* Fan2Play — Compact-Feed / Newspaper Authority stylesheet
   Layered photo-notes (hero signature), framed imagery,
   paper-and-ink surfaces, asymmetric leads, full-bleed rhythm. */

/* ====================================================================
   Reset + base
   ==================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 0% 0%, rgba(44, 122, 54, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 100% 100%, rgba(176, 93, 0, 0.03) 0%, transparent 40%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { max-width: 100%; display: block; height: auto; }
img { border-style: none; }
img[width][height] { height: auto; }

a { color: var(--primary-deep); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-deep); text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--sp-4);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: var(--lh-heading);
  color: var(--text-strong);
  letter-spacing: -0.01em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p { margin: 0 0 var(--sp-4); }

ul, ol { margin: 0 0 var(--sp-4); padding-left: var(--sp-5); }
li { margin-bottom: var(--sp-2); }

button { font: inherit; cursor: pointer; }
hr { border: 0; border-top: 1px solid var(--hair); margin: var(--sp-6) 0; }

/* ====================================================================
   Utility
   ==================================================================== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--sp-5); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--sp-5); }

.section { padding: var(--sp-8) 0; }
.section-tight { padding: var(--sp-6) 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-3);
  padding-bottom: 4px;
  border-bottom: 2px solid var(--primary);
}

.eyebrow.accent { color: var(--accent-deep); border-bottom-color: var(--accent); }

.kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.byline {
  font-size: var(--fs-small);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.byline::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.section-header { margin-bottom: var(--sp-6); }
.section-header h2 { margin-bottom: var(--sp-2); }
.section-header p  { color: var(--text-muted); margin: 0; max-width: 720px; }

.text-muted { color: var(--text-muted); }
.text-strong { color: var(--text-strong); }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--sp-2); }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }

/* ====================================================================
   Header / Top utility masthead
   ==================================================================== */
.utility-bar {
  background: var(--surface-ink);
  color: var(--text-on-ink);
  font-size: var(--fs-xs);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.utility-bar a { color: var(--text-on-ink); opacity: 0.86; }
.utility-bar a:hover { color: #C9E5BB; opacity: 1; }
.utility-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--sp-3); }
.utility-bar .util-left, .utility-bar .util-right { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.utility-bar .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 2px 8px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.utility-bar .pill::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: #6CE084;
  border-radius: 50%;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 250;
  background: rgba(246, 251, 243, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--hair);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand {
  display: inline-flex; align-items: center; gap: var(--sp-3);
  color: var(--text-strong);
}
.brand:hover { text-decoration: none; }
.brand .brand-mark {
  width: 40px; height: 40px;
  display: inline-grid; place-items: center;
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #FFFFFF;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 22px;
  border-radius: var(--r-2);
  box-shadow: var(--shadow-1);
}
.brand .brand-name { font-family: var(--font-serif); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; line-height: 1; }
.brand .brand-tag  { display: block; font-size: 11px; color: var(--text-muted); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 2px; }

.main-nav {
  display: flex; align-items: center; gap: var(--sp-2);
}
.main-nav a {
  display: inline-flex;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  border-radius: var(--r-2);
}
.main-nav a:hover { background: var(--surface-2); color: var(--text-strong); text-decoration: none; }
.main-nav a.is-active { background: var(--surface-ink); color: var(--text-on-ink); }

.header-right { display: flex; align-items: center; gap: var(--sp-3); }

/* Hamburger (mobile) */
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-2);
  width: 44px; height: 44px;
  position: relative;
  z-index: 300;
}
.hamburger span {
  display: block;
  position: absolute;
  left: 9px; right: 9px;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
}
.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed; inset: 0;
  background: rgba(246, 251, 243, 0.99);
  z-index: 220;
  padding: calc(var(--header-h) + var(--sp-7)) var(--sp-5) var(--sp-7);
  overflow-y: auto;
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer nav {
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.mobile-drawer nav a {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text-strong);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--hair);
}
.mobile-drawer nav a:hover { color: var(--primary-deep); text-decoration: none; }
.mobile-drawer .drawer-meta { margin-top: var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-3); }

@media (max-width: 960px) {
  .main-nav { display: none; }
  /* !important: .btn { display: inline-flex } has equal specificity and later source order */
  .header-cta-desktop { display: none !important; }
  .hamburger { display: inline-block; }
  /* Safety net: prevent horizontal scroll from any third-party widget / lazy image / etc. */
  html, body { overflow-x: hidden; }
  .site-header { overflow-x: clip; }
}

/* Hero affiliate CTA (BROWSER-AFFILIATE-CONTRACT-001) */
.hero-affiliate-cta {
  margin-top: var(--sp-5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
}
.hero-affiliate-cta .btn-affiliate {
  /* Match the body slot — pulled out of the desktop-only navigation surface */
  white-space: normal;
  text-align: center;
  min-height: 48px;
  padding: 12px 22px;
}
.hero-affiliate-cta .affiliate-disclosure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  font-weight: 600;
}
.hero-affiliate-cta .affiliate-disclosure::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
@media (max-width: 480px) {
  .hero-affiliate-cta .btn-affiliate { flex: 1 1 100%; }
}

/* ====================================================================
   Buttons (CTA pair)
   ==================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  font-weight: 700; font-size: 15px;
  border-radius: var(--r-2);
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
  box-shadow: var(--shadow-2);
}
.btn-primary:hover { background: var(--primary-deep); color: #FFFFFF; }

.btn-accent {
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: var(--shadow-2);
}
.btn-accent:hover { background: var(--accent-deep); color: #FFFFFF; }

.btn-ghost {
  background: transparent;
  color: var(--text-strong);
  border: 1px solid var(--hair-strong);
}
.btn-ghost:hover { background: var(--surface-2); color: var(--text-strong); }

.btn-ink {
  background: var(--text-strong);
  color: var(--text-on-ink);
}
.btn-ink:hover { background: #000; color: var(--text-on-ink); }

.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 16px 26px; font-size: 17px; }

.cta-pair { display: inline-flex; flex-wrap: wrap; gap: var(--sp-3); }

/* ====================================================================
   Hero — Asymmetric lead with layered photo-notes (signature device)
   ==================================================================== */
.hero {
  position: relative;
  padding: var(--sp-7) 0 var(--sp-6);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: center;
}

.hero h1 {
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.02em;
}
.hero h1 .ink-accent {
  display: inline-block;
  background: linear-gradient(180deg, transparent 60%, rgba(176, 93, 0, 0.30) 60%);
  padding: 0 4px;
}

.hero-lede {
  font-size: var(--fs-body-lg);
  color: var(--text);
  margin-bottom: var(--sp-5);
  max-width: 56ch;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: var(--sp-5);
}
.hero-meta b { color: var(--text-strong); font-weight: 700; }

/* Hero photo-notes (signature device — layered annotated photo card) */
.hero-photo-notes {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-4);
  overflow: visible;
  isolation: isolate;
}
.hero-photo-notes .photo-frame {
  position: absolute; inset: 0;
  border-radius: var(--r-4);
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: var(--surface-2);
}
.hero-photo-notes .photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-notes .photo-caption {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(31, 48, 32, 0.86);
  color: var(--text-on-ink);
  padding: 8px 12px;
  border-radius: var(--r-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(6px);
}

/* Note card 1: top-right floating scorecard */
.note-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-3);
  padding: 14px 16px;
  box-shadow: var(--shadow-2);
  min-width: 200px;
}
.note-card.accent { border-left-color: var(--accent); }
.note-card.ink    { background: var(--surface-ink); color: var(--text-on-ink); border-color: transparent; border-left-color: var(--accent); }

.note-card .note-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}
.note-card.accent .note-label { color: var(--accent); }
.note-card.ink    .note-label { color: #C9E5BB; }
.note-card .note-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-strong);
  line-height: 1.1;
}
.note-card.ink .note-value { color: #FFFFFF; }
.note-card .note-sub {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-top: 4px;
}
.note-card.ink .note-sub { color: #A8C9A1; }

.note-card.n1 { top: -16px; right: -8px; }
.note-card.n2 { bottom: 28%; left: -22px; }
.note-card.n3 { bottom: -10px; right: 8%; min-width: 240px; }

@media (max-width: 760px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .hero-photo-notes { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .note-card.n1 { top: -10px; right: -6px; }
  .note-card.n2 { bottom: 26%; left: -8px; }
  .note-card.n3 { bottom: -8px; right: 6%; }
}
@media (max-width: 480px) {
  .note-card { min-width: 0; padding: 10px 12px; }
  .note-card .note-value { font-size: 16px; }
}

/* ====================================================================
   Score strip — utility data row
   ==================================================================== */
.score-strip {
  background: var(--surface-warm);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  font-size: var(--fs-small);
  padding: 14px 0;
}
.score-strip .container {
  display: flex; flex-wrap: wrap; gap: var(--sp-5) var(--sp-6);
  align-items: center;
}
.score-strip .item { display: flex; align-items: center; gap: 8px; }
.score-strip .item .label { color: var(--text-muted); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }
.score-strip .item .value { color: var(--text-strong); font-weight: 700; font-family: var(--font-serif); }
.score-strip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); }
.score-strip .dot.live { background: #E84C4C; animation: pulse 1.6s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ====================================================================
   Generic section blocks (band variants)
   ==================================================================== */
.band-paper  { background: var(--bg); }
.band-soft   { background: var(--bg-soft); }
.band-cream  { background: var(--surface-warm); }
.band-white  { background: var(--surface); }
.band-ink    { background: var(--surface-ink); color: var(--text-on-ink); }
.band-ink h1, .band-ink h2, .band-ink h3, .band-ink h3 { color: #FFFFFF; }
.band-ink a { color: #C9E5BB; }
.band-ink .text-muted, .band-ink p { color: #C5D9C0; }

.divider-rule {
  display: flex; align-items: center; gap: var(--sp-4);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: var(--fs-h3);
  color: var(--text-strong);
  margin-bottom: var(--sp-5);
}
.divider-rule::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--hair-strong);
}

/* ====================================================================
   Cards
   ==================================================================== */
.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  box-shadow: var(--shadow-1);
  transition: box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.card:hover { box-shadow: var(--shadow-2); }
.card h3, .card h4 { margin-bottom: var(--sp-2); }
.card a:hover { text-decoration: none; }

.card-link { display: block; color: inherit; }
.card-link:hover { text-decoration: none; }

.card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  background: var(--surface-2);
  color: var(--primary-deep);
  padding: 4px 8px;
  border-radius: var(--r-1);
  margin-bottom: var(--sp-2);
}

.card-cta { color: var(--primary); font-weight: 700; font-size: var(--fs-small); display: inline-flex; align-items: center; gap: 4px; }
.card-cta::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.card-cta:hover::after { transform: translateX(3px); }

/* Grid layouts */
.grid {
  display: grid;
  gap: var(--sp-4);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (max-width: 920px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ====================================================================
   Asymmetric lead (homepage hero secondary block)
   ==================================================================== */
.asym-lead {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: start;
}
.asym-lead .lead-body { font-size: var(--fs-body-lg); }
.asym-lead .lead-body p { margin-bottom: var(--sp-4); }
.asym-lead .lead-aside {
  background: var(--surface-2);
  padding: var(--sp-5);
  border-radius: var(--r-3);
  border-left: 4px solid var(--primary);
}
.asym-lead .lead-aside h3 { font-size: var(--fs-h4); }
.asym-lead .lead-aside ul { padding-left: var(--sp-4); }
.asym-lead .lead-aside li { margin-bottom: var(--sp-2); font-size: 15px; }
@media (max-width: 760px) { .asym-lead { grid-template-columns: 1fr; gap: var(--sp-4); } }

/* ====================================================================
   Explainer timeline (6 steps)
   ==================================================================== */
.timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--sp-4);
  counter-reset: step;
}
.timeline .step {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5) var(--sp-4);
  position: relative;
}
.timeline .step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 24px;
  color: var(--accent);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.01em;
}
.timeline .step h3 { font-size: 16px; margin-bottom: var(--sp-2); }
.timeline .step p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 980px) { .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ====================================================================
   Evidence gallery (image grid with captions)
   ==================================================================== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}
.gallery figure { margin: 0; border-radius: var(--r-3); overflow: hidden; background: var(--surface-2); }
.gallery figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figure figcaption {
  padding: var(--sp-3) var(--sp-4);
  background: var(--surface);
  border-top: 1px solid var(--hair);
  font-size: var(--fs-small);
  color: var(--text-muted);
}
.gallery figure figcaption strong { display: block; color: var(--text-strong); font-weight: 700; font-size: 15px; margin-bottom: 2px; }
@media (max-width: 920px) { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* ====================================================================
   Comparison desk (table)
   ==================================================================== */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  overflow: hidden;
  box-shadow: var(--shadow-1);
}
.compare-table th, .compare-table td {
  text-align: left;
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--hair);
  font-size: 15px;
  vertical-align: top;
}
.compare-table th {
  background: var(--surface-2);
  color: var(--text-strong);
  font-weight: 700;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  font-size: 13px;
  text-transform: uppercase;
}
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table .yes { color: var(--primary-deep); font-weight: 700; }
.compare-table .no  { color: var(--accent-deep); font-weight: 700; }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

@media (max-width: 720px) {
  .compare-table thead { display: none; }
  .compare-table tr { display: block; border-bottom: 8px solid var(--bg-soft); }
  .compare-table tr:last-child { border-bottom: 0; }
  .compare-table td {
    display: flex; justify-content: space-between; gap: var(--sp-3);
    padding: var(--sp-3);
    border-bottom: 1px solid var(--hair);
  }
  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--text-strong);
    flex: 0 0 40%;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.04em;
  }
  .compare-table td:last-child { border-bottom: 0; }
}

/* ====================================================================
   FAQ (accessible)
   ==================================================================== */
.faq { border-top: 1px solid var(--hair); }
.faq details {
  border-bottom: 1px solid var(--hair);
  padding: var(--sp-4) 0;
}
.faq summary {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-strong);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-3);
  padding-right: var(--sp-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 28px;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--t-base) var(--ease);
  font-family: var(--font-sans);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body {
  margin-top: var(--sp-3);
  color: var(--text);
  max-width: 70ch;
}
.faq .faq-body p { margin-bottom: var(--sp-3); }

/* ====================================================================
   News stream / Article list (with thumb)
   ==================================================================== */
.news-list { display: grid; gap: var(--sp-4); }
.news-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: var(--sp-4);
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease);
}
.news-item:hover { box-shadow: var(--shadow-2); }
.news-item .news-thumb { aspect-ratio: 1/1; background: var(--surface-2); }
.news-item .news-thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item .news-body { padding: var(--sp-4) var(--sp-4) var(--sp-4) 0; }
.news-item .news-meta { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: 6px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }
.news-item .news-title { font-family: var(--font-serif); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.news-item .news-title a { color: var(--text-strong); }
.news-item .news-excerpt { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 560px) {
  .news-item { grid-template-columns: 88px minmax(0, 1fr); }
  .news-item .news-body { padding: var(--sp-3) var(--sp-3) var(--sp-3) 0; }
  .news-item .news-title { font-size: 16px; }
}

/* ====================================================================
   Hub grid (nav cards)
   ==================================================================== */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-4);
}
.hub-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  color: var(--text-strong);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.hub-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(44, 122, 54, 0.06) 100%);
  opacity: 0; transition: opacity var(--t-base) var(--ease);
}
.hub-card:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-2); border-color: var(--hair-strong); }
.hub-card:hover::before { opacity: 1; }
.hub-card .hub-icon {
  width: 44px; height: 44px;
  background: var(--surface-2);
  color: var(--primary-deep);
  display: grid; place-items: center;
  border-radius: var(--r-2);
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 20px;
  margin-bottom: var(--sp-3);
}
.hub-card .hub-icon.accent { background: rgba(176, 93, 0, 0.12); color: var(--accent-deep); }
.hub-card .hub-icon.ink    { background: var(--surface-ink); color: #FFFFFF; }
.hub-card h3 { font-size: 18px; margin-bottom: 6px; }
.hub-card p { font-size: 14px; color: var(--text-muted); margin: 0; }
@media (max-width: 920px) { .hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .hub-grid { grid-template-columns: 1fr; } }

/* ====================================================================
   Image + text band (inline visual)
   ==================================================================== */
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: center;
}
.split-band.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); direction: rtl; }
.split-band.reverse > * { direction: ltr; }
.split-band img { border-radius: var(--r-3); border: 1px solid var(--hair); box-shadow: var(--shadow-2); aspect-ratio: 5/4; object-fit: cover; width: 100%; }
@media (max-width: 820px) {
  .split-band, .split-band.reverse { grid-template-columns: 1fr; gap: var(--sp-4); direction: ltr; }
  .split-band img { aspect-ratio: 16/10; }
}

/* ====================================================================
   Winners / social-proof bar
   ==================================================================== */
.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-5);
  align-items: center;
}
.proof-bar .stat {
  text-align: center;
  padding: var(--sp-4) var(--sp-3);
  border-right: 1px solid var(--hair);
}
.proof-bar .stat:last-child { border-right: 0; }
.proof-bar .stat .n {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 32px;
  color: var(--text-strong);
  line-height: 1;
}
.proof-bar .stat .l {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-weight: 600;
  margin-top: 8px;
}
@media (max-width: 720px) {
  .proof-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-3); }
  .proof-bar .stat { border-right: 0; border-bottom: 1px solid var(--hair); padding-bottom: var(--sp-3); }
}

/* ====================================================================
   Testimonial / winner quote cards
   ==================================================================== */
.quote {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--primary);
  border-radius: var(--r-3);
  padding: var(--sp-5);
}
.quote p { font-family: var(--font-serif); font-size: 17px; font-style: italic; color: var(--text); }
.quote .attribution { display: flex; align-items: center; gap: var(--sp-3); margin-top: var(--sp-3); }
.quote .attribution .avatar {
  width: 36px; height: 36px;
  background: var(--surface-2);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  color: var(--primary-deep);
}
.quote .attribution .who { font-weight: 700; color: var(--text-strong); font-size: 14px; }
.quote .attribution .what { font-size: 12px; color: var(--text-muted); }

/* ====================================================================
   Two-column layout (hub page sidebar)
   ==================================================================== */
.layout-two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--sp-7);
  align-items: start;
}
.layout-two-col .sidebar {
  position: sticky; top: calc(var(--header-h) + var(--sp-4));
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5);
}
.layout-two-col .sidebar h4 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: var(--sp-3); font-family: var(--font-sans); }
.layout-two-col .sidebar ul { list-style: none; padding: 0; margin: 0; }
.layout-two-col .sidebar li { padding: 8px 0; border-bottom: 1px solid var(--hair); }
.layout-two-col .sidebar li:last-child { border-bottom: 0; }
.layout-two-col .sidebar a { color: var(--text-strong); font-weight: 600; font-size: 14px; }
.layout-two-col .sidebar a:hover { color: var(--primary-deep); }
@media (max-width: 920px) {
  .layout-two-col { grid-template-columns: 1fr; gap: var(--sp-5); }
  .layout-two-col .sidebar { position: static; }
}

/* ====================================================================
   TOC (table of contents)
   ==================================================================== */
.toc {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-4) var(--sp-5);
}
.toc h4 {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); font-family: var(--font-sans);
  margin-bottom: var(--sp-3);
}
.toc ol { list-style: none; padding: 0; margin: 0; counter-reset: tocitem; }
.toc ol li {
  counter-increment: tocitem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--hair);
}
.toc ol li:last-child { border-bottom: 0; }
.toc ol li::before {
  content: counter(tocitem, decimal-leading-zero) ".";
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  margin-right: 8px;
}
.toc ol li a { color: var(--text-strong); font-weight: 600; font-size: 14px; }

/* ====================================================================
   Prose (article body)
   ==================================================================== */
.prose { max-width: 70ch; font-size: var(--fs-body-lg); }
.prose h2 { font-size: var(--fs-h2); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.prose h3 { font-size: var(--fs-h3); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose p { margin-bottom: var(--sp-4); }
.prose ul, .prose ol { margin-bottom: var(--sp-4); padding-left: var(--sp-5); }
.prose li { margin-bottom: 6px; }
.prose blockquote {
  border-left: 4px solid var(--accent);
  background: var(--surface-warm);
  padding: var(--sp-3) var(--sp-5);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text);
  margin: var(--sp-5) 0;
}
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* Inline image row */
.inline-image {
  margin: var(--sp-5) 0;
}
.inline-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--r-3);
  border: 1px solid var(--hair);
  box-shadow: var(--shadow-2);
}
.inline-image figcaption {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-top: var(--sp-2);
  font-style: italic;
}

.prose figure.full-bleed {
  margin-left: calc(50% - 50vw + var(--sp-5));
  margin-right: calc(50% - 50vw + var(--sp-5));
}
@media (min-width: 1200px) {
  .prose figure.full-bleed {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ====================================================================
   Info / callout boxes
   ==================================================================== */
.callout {
  background: var(--surface-warm);
  border: 1px solid var(--hair);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-3);
  padding: var(--sp-4) var(--sp-5);
  margin: var(--sp-5) 0;
}
.callout h3 { color: var(--accent-deep); font-size: 16px; margin-bottom: 6px; font-family: var(--font-sans); letter-spacing: 0.04em; text-transform: uppercase; }
.callout p { margin: 0; color: var(--text); font-size: 15px; }
.callout p a { text-decoration: underline; text-underline-offset: 2px; }

.callout.info  { border-left-color: var(--primary); background: var(--surface-2); }
.callout.info  h3 { color: var(--primary-deep); }

.callout.warn  { border-left-color: #C0392B; background: #FBEEEA; }
.callout.warn  h3 { color: #7B2218; }

/* Verified-fact box */
.fact-box {
  background: var(--surface);
  border: 1px solid var(--hair-strong);
  border-radius: var(--r-3);
  padding: var(--sp-5);
}
.fact-box h4 { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); margin-bottom: var(--sp-3); }
.fact-box dl { margin: 0; }
.fact-box dt { font-weight: 700; color: var(--text-strong); margin-top: var(--sp-3); font-size: 14px; }
.fact-box dt:first-child { margin-top: 0; }
.fact-box dd { margin: 4px 0 0; font-size: 14px; color: var(--text); }

/* ====================================================================
   Section ID scroll-margin (sticky header offset)
   ==================================================================== */
section[id] { scroll-margin-top: calc(var(--header-h) + var(--sp-3)); }

/* ====================================================================
   Mobile sticky CTA bar (persistent affiliate)
   ==================================================================== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--hair-strong);
  padding: 12px 16px;
  z-index: 240;
  display: none;
}
.sticky-cta.is-visible { display: block; }
.sticky-cta .row {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; gap: var(--sp-3);
}
.sticky-cta .copy { flex: 1; min-width: 0; }
.sticky-cta .copy .title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-strong);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta .copy .sub {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sticky-cta .btn {
  flex: 0 0 auto;
  padding: 14px 22px;
  width: auto;
  min-width: 130px;
}
@media (max-width: 420px) {
  .sticky-cta .copy { display: none; }
  .sticky-cta .btn { flex: 1 1 auto; padding: 14px 18px; min-width: 0; }
}
@media (min-width: 961px) {
  /* Keep sticky CTA visible on desktop too but smaller */
  .sticky-cta.is-visible { display: block; }
}

/* ====================================================================
   Footer (trust footer)
   ==================================================================== */
.site-footer {
  background: var(--surface-ink);
  color: var(--text-on-ink);
  padding: var(--sp-7) 0 var(--sp-5);
  margin-bottom: 80px; /* room for sticky CTA on mobile */
}
.site-footer h3 {
  color: #FFFFFF;
  font-size: 13px;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.site-footer a { color: #C9E5BB; }
.site-footer a:hover { color: #FFFFFF; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; font-size: 14px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.footer-grid .brand-col .brand-tag { color: #A8C9A1; }
.footer-grid .brand-col p { color: #C5D9C0; font-size: 14px; margin-top: var(--sp-3); max-width: 380px; }

.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: var(--sp-5);
  display: flex; flex-wrap: wrap; gap: var(--sp-4);
  justify-content: space-between; align-items: center;
  font-size: 13px;
  color: #A8C9A1;
}
.footer-meta .legal { max-width: 760px; }
/* PAGESPEED-MOBILE-001: contrast + link-distinguishable on dark footer ink */
.site-footer .text-muted,
.site-footer .footer-meta .text-muted { color: #C9E5BB; }
.site-footer .legal a,
.site-footer .footer-meta .legal a {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.site-footer .legal a:hover,
.site-footer .footer-meta .legal a:hover { color: #FFFFFF; }

@media (max-width: 920px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid .brand-col { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { margin-bottom: 72px; }
}

/* ====================================================================
   Page banner (child-page hero)
   ==================================================================== */
.page-banner {
  position: relative;
  min-height: 280px;
  display: grid;
  align-items: end;
  background: var(--surface-2);
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.page-banner img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 48, 32, 0.10) 0%, rgba(31, 48, 32, 0.78) 100%);
  z-index: 1;
}
.page-banner .page-banner-inner {
  position: relative; z-index: 2;
  padding: var(--sp-7) 0;
  color: #FFFFFF;
  max-width: 880px;
}
.page-banner .page-banner-inner h1 { color: #FFFFFF; }
.page-banner .page-banner-inner p  { color: #E2EDD9; font-size: var(--fs-body-lg); max-width: 60ch; }
.page-banner .breadcrumbs {
  font-size: 13px;
  color: #C9E5BB;
  margin-bottom: var(--sp-3);
  letter-spacing: 0.04em;
}
.page-banner .breadcrumbs a { color: #C9E5BB; }
.page-banner .breadcrumbs a:hover { color: #FFFFFF; }

/* ====================================================================
   Section: trust strip with checks
   ==================================================================== */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
}
.trust-strip .item {
  display: flex; gap: var(--sp-3); align-items: flex-start;
}
.trust-strip .item .glyph {
  width: 36px; height: 36px;
  background: var(--surface-2);
  border-radius: var(--r-2);
  display: grid; place-items: center;
  color: var(--primary-deep);
  font-weight: 800;
  flex: 0 0 36px;
}
.trust-strip .item h5 { font-size: 14px; margin: 0 0 4px; font-family: var(--font-sans); font-weight: 700; }
.trust-strip .item p { font-size: 13px; color: var(--text-muted); margin: 0; }
@media (max-width: 760px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-strip { grid-template-columns: 1fr; } }

/* ====================================================================
   Specific utilities
   ==================================================================== */
.skip-link {
  position: absolute; left: -9999px;
}
.skip-link:focus {
  position: static;
  background: var(--primary);
  color: #FFFFFF;
  padding: 8px 14px;
  border-radius: var(--r-2);
  display: inline-block;
  margin: 8px;
}

.partners-disclosure {
  background: var(--surface-2);
  border-left: 4px solid var(--accent);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-2);
  font-size: 14px;
  color: var(--text);
  margin-top: var(--sp-5);
}
.partners-disclosure b { color: var(--accent-deep); }

.verified-date {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
  background: var(--surface-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.verified-date::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
}

/* Print */
@media print {
  .site-header, .site-footer, .sticky-cta, .hamburger, .mobile-drawer { display: none !important; }
  body { background: white; color: black; }
}

/* Focus states */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--r-1);
}

/* ====================================================================
   Article TOC (mini)
   ==================================================================== */
.related-rail {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5);
}
.related-rail h3 { font-size: 18px; margin-bottom: var(--sp-3); }
.related-rail ul { list-style: none; padding: 0; margin: 0; }
.related-rail li { padding: 10px 0; border-bottom: 1px dashed var(--hair); }
.related-rail li:last-child { border-bottom: 0; }
.related-rail a { color: var(--text-strong); font-weight: 600; font-size: 14px; }

/* Decision tool (captain VC) */
.decision-card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-3);
  padding: var(--sp-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: center;
}
.decision-card .pick { font-family: var(--font-serif); font-size: 22px; font-weight: 800; color: var(--text-strong); }
.decision-card .pick small { display: block; font-family: var(--font-sans); font-size: 12px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.decision-card .meta { font-size: 13px; color: var(--text-muted); }

/* Mobile bottom safe area */
@supports (padding: max(0px)) {
  .sticky-cta { padding-bottom: max(12px, env(safe-area-inset-bottom)); }
  body { padding-bottom: env(safe-area-inset-bottom); }
}