/* =====================================================================
   SemaglutideReview.com - v4
   Hybrid dark hero / light editorial content
   Trust palette: deep navy + champagne gold + warm cream
   ===================================================================== */

:root {
  --white: #ffffff;
  --bg: #ffffff;
  --bg-alt: #faf8f3;
  --bg-soft: #fcfaf6;
  --bg-cream: #f7f3ea;
  --navy: #0A1628;
  --navy-1: #0F1E33;
  --navy-2: #15263F;
  --navy-soft: #1E3A5F;
  --ink: #0A1628;
  --ink-1: #1A2A40;
  --ink-2: #4A5968;
  --ink-3: #6B7888;
  --ink-4: #9BA5B1;
  --border: #e8e5dc;
  --border-1: #d4d0c4;
  --border-soft: #f0ede4;
  --brand: #B8932E;
  --brand-dark: #8B6F1F;
  --brand-mid: #D4AF37;
  --brand-light: #E8C967;
  --brand-soft: #F5EBC5;
  --brand-faint: #FBF6E3;
  --brand-cream: #FDFAEF;
  --verified: #1F5FA8;
  --verified-soft: #DBE7F5;
  --green: #15803D;
  --green-soft: #D1FAE5;
  --green-mid: #10B981;
  --amber: #B45309;
  --amber-soft: #FEF3C7;
  --amber-mid: #F59E0B;
  --red: #B91C1C;
  --red-soft: #FEE2E2;
  --red-mid: #EF4444;
  --blue: #1E40AF;
  --blue-soft: #DBEAFE;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-xs: 0 1px 2px rgba(10,22,40,0.04);
  --shadow-sm: 0 1px 3px rgba(10,22,40,0.06), 0 1px 2px rgba(10,22,40,0.04);
  --shadow-md: 0 4px 8px rgba(10,22,40,0.06), 0 2px 4px rgba(10,22,40,0.04);
  --shadow-lg: 0 12px 24px rgba(10,22,40,0.08), 0 4px 8px rgba(10,22,40,0.04);
  --shadow-xl: 0 24px 48px rgba(10,22,40,0.10), 0 8px 16px rgba(10,22,40,0.04);
  --shadow-gold: 0 4px 16px rgba(184,147,46,0.14);
  --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-serif: 'Newsreader', 'Source Serif Pro', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-sans); background: var(--bg); color: var(--ink-1);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}
a { color: var(--brand-dark); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--brand); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 700; line-height: 1.15; letter-spacing: -0.022em; }

/* TOPBAR */
.topbar { background: var(--navy); color: rgba(255,255,255,0.82); font-size: 0.78rem; padding: 9px 20px; text-align: center; border-bottom: 1px solid var(--navy-soft); position: relative; }
.topbar::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center top, rgba(212,175,55,0.10), transparent 70%); pointer-events: none; }
.topbar > * { position: relative; }
.topbar strong { color: var(--brand-light); font-weight: 600; }
.topbar a { color: var(--brand-light); text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: #fff; }

/* NAV */
.site-nav { background: #fff; border-bottom: 1px solid var(--border-soft); position: sticky; top: 0; z-index: 100; backdrop-filter: blur(8px); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 14px 28px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; font-size: 1.05rem; letter-spacing: -0.02em; font-family: var(--ff-serif); }
.nav-logo:hover { color: var(--ink); }
.nav-logo-mark { width: 30px; height: 30px; border-radius: 7px; background: var(--navy); color: var(--brand-mid); display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-weight: 700; font-size: 1rem; letter-spacing: -0.04em; position: relative; }
.nav-logo-mark::after { content: ''; position: absolute; inset: 0; border-radius: 7px; border: 1px solid var(--brand-mid); opacity: 0.3; }
.nav-logo span { color: var(--brand-dark); font-family: var(--ff-sans); }
.nav-pill { font-size: 0.62rem; background: var(--brand-faint); color: var(--brand-dark); padding: 3px 8px; border-radius: 999px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-left: 4px; border: 1px solid var(--brand-soft); }
.nav-links { display: flex; align-items: center; list-style: none; gap: 26px; }
.nav-links a { color: var(--ink-2); font-size: 0.88rem; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--brand-dark); font-weight: 600; }
.nav-cta { background: var(--navy); color: #fff !important; padding: 9px 18px; border-radius: var(--radius); font-weight: 600; font-size: 0.85rem; border: 1px solid var(--navy); transition: all 0.18s; box-shadow: var(--shadow-sm); }
.nav-cta:hover { background: var(--navy-1); color: var(--brand-mid) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-mobile { display: none; background: none; border: none; font-size: 1.2rem; color: var(--ink); cursor: pointer; }

/* CRUMBS */
.crumbs { max-width: 1280px; margin: 0 auto; padding: 14px 28px 0; font-size: 0.82rem; color: var(--ink-3); }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--ink-1); }
.crumbs .sep { margin: 0 10px; color: var(--ink-4); }

/* HERO */
.hero { background: var(--navy); color: #fff; padding: 72px 28px 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.14), transparent 50%), radial-gradient(ellipse at 90% 100%, rgba(31,95,168,0.12), transparent 60%); pointer-events: none; }
.hero.with-bg { background: var(--navy); }
.hero.with-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 0%, rgba(212,175,55,0.14), transparent 50%), radial-gradient(ellipse at 90% 100%, rgba(31,95,168,0.12), transparent 60%); pointer-events: none; }
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; text-align: center; }
.hero-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; border: 1px solid rgba(212,175,55,0.32); background: rgba(212,175,55,0.06); color: var(--brand-light); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px; }
.hero-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand-mid); box-shadow: 0 0 0 3px rgba(212,175,55,0.20); }
.hero h1 { font-family: var(--ff-serif); font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.08; font-weight: 500; color: #fff; margin: 0 0 18px; letter-spacing: -0.022em; }
.hero h1 em { font-style: italic; color: var(--brand-mid); font-weight: 500; }
.hero-sub { font-size: clamp(1rem, 1.5vw, 1.18rem); color: rgba(255,255,255,0.78); max-width: 720px; margin: 0 auto 28px; line-height: 1.55; font-weight: 400; }
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.hero-meta { margin-top: 22px; font-size: 0.84rem; color: rgba(255,255,255,0.62); display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; }
.hero-meta span { display: inline-flex; align-items: center; gap: 7px; }
.hero-meta .dot { color: var(--brand-mid); font-size: 0.6rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius); font-size: 0.9rem; font-weight: 600; font-family: inherit; text-decoration: none; border: 1px solid transparent; cursor: pointer; transition: all 0.18s ease; white-space: nowrap; }
.btn.lg { padding: 15px 28px; font-size: 0.98rem; }
.btn.sm { padding: 8px 14px; font-size: 0.82rem; }
.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--navy-1); color: var(--brand-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-brand { background: var(--brand); color: #fff; border-color: var(--brand); box-shadow: var(--shadow-sm); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--border-1); }
.btn-outline:hover { background: var(--bg-alt); border-color: var(--ink-3); }
.btn-ghost { background: transparent; color: var(--ink-1); border-color: transparent; }
.btn-ghost:hover { color: var(--ink); background: var(--bg-alt); }
.btn-white { background: #fff; color: var(--navy); border-color: #fff; box-shadow: var(--shadow-md); }
.btn-white:hover { background: var(--brand-mid); color: var(--navy); border-color: var(--brand-mid); transform: translateY(-1px); }
.btn-arrow::after { content: '\2192'; display: inline-block; transition: transform 0.18s; font-weight: 400; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* SECTIONS */
.section { padding: 80px 28px; }
.section.tight { padding: 44px 28px; }
.section.bg-alt { background: var(--bg-alt); }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section.narrow .section-inner { max-width: 820px; }
.section.mid .section-inner { max-width: 1100px; }
.eyebrow { font-size: 0.78rem; color: var(--brand-dark); font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 10px; padding-left: 28px; position: relative; display: inline-block; }
.eyebrow::before { content: ''; position: absolute; left: 0; top: 50%; width: 18px; height: 1px; background: var(--brand); }
.section-head { margin-bottom: 38px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { padding-left: 0; }
.section-head.center .eyebrow::before { display: none; }
.section-title { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; color: var(--ink); margin-bottom: 12px; }
.section-title em { font-style: italic; color: var(--brand-dark); font-weight: 500; }
.section-sub { font-size: 1.02rem; color: var(--ink-2); max-width: 680px; line-height: 1.6; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* PICKS */
.picks-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; gap: 18px; margin-top: 8px; }
@media(max-width:900px){ .picks-grid { grid-template-columns: 1fr; } }
.pick-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 24px; position: relative; transition: all 0.2s; display: flex; flex-direction: column; }
.pick-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-1); }
.pick-card.featured { background: linear-gradient(180deg, var(--brand-cream) 0%, #fff 60%); border: 2px solid var(--brand); box-shadow: var(--shadow-gold); }
.pick-card.featured::before { content: '\2605 Editor\27s top pick'; position: absolute; top: -12px; left: 24px; background: var(--navy); color: var(--brand-mid); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; border: 1px solid var(--brand); }
.pick-rank { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.pick-card.featured .pick-rank { color: var(--brand-dark); }
.pick-name { font-family: var(--ff-serif); font-size: 1.5rem; font-weight: 500; color: var(--ink); margin-bottom: 4px; letter-spacing: -0.02em; }
.pick-tagline { font-size: 0.86rem; color: var(--ink-2); margin-bottom: 18px; line-height: 1.45; }
.pick-score-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px; }
.pick-score { font-size: 2.6rem; font-weight: 700; color: var(--brand); line-height: 1; letter-spacing: -0.04em; font-feature-settings: 'tnum'; }
.pick-card:not(.featured) .pick-score { color: var(--ink); }
.pick-score-label { font-size: 0.78rem; color: var(--ink-3); }
.pick-bar { height: 5px; background: var(--bg-cream); border-radius: 3px; overflow: hidden; margin-bottom: 18px; }
.pick-bar-fill { height: 100%; background: var(--brand); border-radius: 3px; }
.pick-card:not(.featured) .pick-bar-fill { background: var(--ink-2); }
.pick-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 12px; font-size: 0.82rem; color: var(--ink-2); margin-bottom: 18px; }
.pick-stat-label { color: var(--ink-3); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; }
.pick-stat-val { color: var(--ink); font-weight: 600; }
.pick-cta { margin-top: auto; }

/* RISK SCORE */
.risk-badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 600; letter-spacing: 0.02em; border: 1px solid; }
.risk-badge.high { background: var(--green-soft); color: var(--green); border-color: var(--green-mid); }
.risk-badge.med  { background: var(--amber-soft); color: var(--amber); border-color: var(--amber-mid); }
.risk-badge.low  { background: var(--red-soft); color: var(--red); border-color: var(--red-mid); }
.risk-badge .dot { width: 6px; height: 6px; border-radius: 50%; }
.risk-badge.high .dot { background: var(--green-mid); }
.risk-badge.med .dot  { background: var(--amber-mid); }
.risk-badge.low .dot  { background: var(--red-mid); }
.risk-score-block { display: inline-flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 10px 14px; }
.risk-score-num { font-size: 1.6rem; font-weight: 700; font-feature-settings: 'tnum'; line-height: 1; }
.risk-score-num.high { color: var(--green); }
.risk-score-num.med  { color: var(--amber); }
.risk-score-num.low  { color: var(--red); }
.risk-score-meta { font-size: 0.72rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }

/* DECISION ENGINE */
.decision-engine { background: rgba(255,255,255,0.04); border: 1px solid rgba(212,175,55,0.20); border-radius: var(--radius-lg); padding: 22px 22px 18px; max-width: 560px; margin: 24px auto 0; text-align: left; backdrop-filter: blur(12px); position: relative; }
.de-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.de-label { font-size: 0.7rem; color: var(--brand-mid); letter-spacing: 0.10em; text-transform: uppercase; font-weight: 600; }
.de-step { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.de-question { font-size: 1.05rem; font-weight: 500; color: #fff; margin-bottom: 14px; font-family: var(--ff-serif); }
.de-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px; }
@media(max-width:520px){ .de-options { grid-template-columns: 1fr; } }
.de-opt { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); padding: 12px 14px; cursor: pointer; transition: all 0.15s; font-family: inherit; text-align: left; color: #fff; }
.de-opt:hover { background: rgba(212,175,55,0.08); border-color: rgba(212,175,55,0.40); }
.de-opt.selected { background: rgba(212,175,55,0.10); border-color: var(--brand-mid); }
.de-opt-title { font-size: 0.92rem; font-weight: 600; color: #fff; margin-bottom: 2px; }
.de-opt-sub { font-size: 0.74rem; color: rgba(255,255,255,0.55); }
.de-next { display: block; width: 100%; background: var(--brand); color: #fff; font-size: 0.92rem; font-weight: 600; padding: 12px; border: none; border-radius: var(--radius); cursor: pointer; transition: all 0.18s; font-family: inherit; }
.de-next:hover { background: var(--brand-dark); transform: translateY(-1px); }
.de-next:disabled { background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.35); cursor: not-allowed; transform: none; }
.de-skip { display: block; text-align: center; margin-top: 10px; font-size: 0.74rem; color: rgba(255,255,255,0.45); }
.de-skip a { color: rgba(255,255,255,0.65); text-decoration: underline; }
.de-skip a:hover { color: var(--brand-mid); }

/* PROVIDER TABLE */
.provider-table-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.provider-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.provider-table thead { background: var(--bg-alt); border-bottom: 1px solid var(--border); }
.provider-table th { text-align: left; padding: 14px 16px; font-size: 0.74rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-2); cursor: pointer; white-space: nowrap; }
.provider-table th:hover { color: var(--ink); }
.provider-table th.sortable::after { content: ' \21C5'; color: var(--ink-4); font-size: 0.78rem; }
.provider-table th.sort-asc::after { content: ' \2191'; color: var(--brand-dark); }
.provider-table th.sort-desc::after { content: ' \2193'; color: var(--brand-dark); }
.provider-table td { padding: 16px; border-bottom: 1px solid var(--border-soft); vertical-align: middle; }
.provider-table tr:last-child td { border-bottom: none; }
.provider-table tr:hover td { background: var(--bg-soft); }
.provider-table tr.nexlife-row td { background: var(--brand-faint); position: relative; }
.provider-table tr.nexlife-row td:first-child::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--brand); }
.provider-table tr.nexlife-row:hover td { background: var(--brand-soft); }
.provider-logo-cell { display: flex; align-items: center; gap: 12px; }
.provider-logo { width: 42px; height: 42px; border-radius: 9px; background: var(--bg-alt); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.94rem; color: var(--ink); font-family: var(--ff-serif); flex-shrink: 0; }
.provider-logo.nexlife { background: var(--navy); color: var(--brand-mid); border-color: var(--navy-soft); }
.provider-logo.henry { background: #FCE7F3; color: #831843; border-color: #FBCFE8; }
.provider-logo.calibrate { background: #DBEAFE; color: #1E3A8A; border-color: #BFDBFE; }
.provider-logo.hims { background: #1F2937; color: #F3F4F6; border-color: #374151; }
.provider-logo.ro { background: #064E3B; color: #D1FAE5; border-color: #047857; }
.provider-logo.found { background: #FEF3C7; color: #78350F; border-color: #FDE68A; }
.provider-logo.sesame { background: #FECACA; color: #7F1D1D; border-color: #FCA5A5; }
.provider-logo.mochi { background: #FED7AA; color: #7C2D12; border-color: #FDBA74; }
.provider-name { font-weight: 600; color: var(--ink); font-size: 0.96rem; }
.provider-sub { font-size: 0.78rem; color: var(--ink-3); }
.score-cell { font-weight: 700; font-size: 1.05rem; font-feature-settings: 'tnum'; }
.score-cell.top { color: var(--brand); }
.score-cell.high { color: var(--green); }
.score-cell.med { color: var(--amber); }
.score-cell.low { color: var(--ink-3); }
.editor-pick-tag { display: inline-block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: var(--brand); color: #fff; padding: 3px 8px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }

/* CARDS */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; text-decoration: none; color: inherit; display: block; transition: all 0.2s; }
.card:hover { border-color: var(--border-1); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.card-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; color: var(--brand-dark); margin-bottom: 8px; }
.card-title { font-family: var(--ff-serif); font-size: 1.15rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; line-height: 1.3; }
.card-desc { font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; margin-bottom: 14px; }
.card-meta { display: flex; gap: 14px; font-size: 0.78rem; color: var(--ink-3); border-top: 1px solid var(--border-soft); padding-top: 12px; flex-wrap: wrap; }
.card-meta strong { color: var(--ink); font-weight: 600; }

/* WEIGHT GRID */
.weight-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.weight-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; position: relative; transition: all 0.2s; }
.weight-card:hover { border-color: var(--brand-soft); box-shadow: var(--shadow-sm); }
.weight-pct { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; letter-spacing: -0.02em; }
.weight-name { font-size: 0.94rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.weight-desc { font-size: 0.84rem; color: var(--ink-2); line-height: 1.55; }

/* PROSE */
.prose { font-size: 1rem; line-height: 1.75; color: var(--ink-1); }
.prose h2 { font-family: var(--ff-serif); font-size: 1.55rem; font-weight: 500; margin: 36px 0 14px; letter-spacing: -0.02em; color: var(--ink); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; font-weight: 600; margin: 24px 0 10px; color: var(--ink); }
.prose p { margin-bottom: 16px; }
.prose ul, .prose ol { margin: 10px 0 18px 24px; }
.prose li { margin-bottom: 7px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose blockquote { border-left: 3px solid var(--brand); background: var(--brand-faint); padding: 14px 20px; margin: 18px 0; font-family: var(--ff-serif); font-style: italic; color: var(--ink-1); border-radius: 0 var(--radius) var(--radius) 0; font-size: 1.05rem; }
.prose a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--brand); }
.editorial-note { background: var(--brand-faint); border: 1px solid var(--brand-soft); border-left: 3px solid var(--brand); border-radius: var(--radius); padding: 16px 18px; font-size: 0.92rem; color: var(--ink-1); line-height: 1.6; }
.editorial-note strong { color: var(--brand-dark); }

/* DIFF / SAFETY */
.diff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.diff-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; }
.diff-icon { width: 36px; height: 36px; background: var(--brand-faint); border: 1px solid var(--brand-soft); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--brand-dark); font-weight: 700; }
.diff-title { font-size: 0.98rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.diff-desc { font-size: 0.86rem; color: var(--ink-2); line-height: 1.55; }
.safety-list { display: grid; grid-template-columns: 1fr; gap: 10px; }
.safety-item { background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--red-mid); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; }
.safety-item-title { font-weight: 600; color: var(--ink); font-size: 0.96rem; margin-bottom: 4px; }
.safety-item-desc { font-size: 0.86rem; color: var(--ink-2); line-height: 1.55; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; position: relative; }
.process-step { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; position: relative; }
.process-num { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: var(--brand-mid); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-weight: 600; font-size: 0.9rem; margin-bottom: 14px; }
.process-title { font-size: 0.98rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.process-desc { font-size: 0.86rem; color: var(--ink-2); line-height: 1.55; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.team-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px 20px; text-align: center; }
.team-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--brand-mid); display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-size: 1.3rem; font-weight: 600; margin: 0 auto 12px; border: 2px solid var(--brand-mid); }
.team-name { font-family: var(--ff-serif); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.team-role { font-size: 0.78rem; color: var(--brand-dark); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: 0.84rem; color: var(--ink-2); line-height: 1.55; }

/* TRENDS */
.trend-list { display: grid; grid-template-columns: 1fr; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); background: #fff; overflow: hidden; }
.trend-item { display: grid; grid-template-columns: 140px 1fr; gap: 22px; padding: 22px 24px; border-bottom: 1px solid var(--border-soft); text-decoration: none; color: inherit; transition: background 0.18s; }
.trend-item:last-child { border-bottom: none; }
.trend-item:hover { background: var(--bg-soft); }
.trend-badge { display: inline-block; font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--brand-dark); background: var(--brand-faint); border: 1px solid var(--brand-soft); padding: 3px 8px; border-radius: 4px; margin-bottom: 6px; }
.trend-date { font-size: 0.76rem; color: var(--ink-3); }
.trend-title { font-family: var(--ff-serif); font-size: 1.08rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; line-height: 1.35; }
.trend-desc { font-size: 0.88rem; color: var(--ink-2); line-height: 1.55; }
@media(max-width:600px){ .trend-item { grid-template-columns: 1fr; gap: 8px; } }

/* NEWSLETTER */
.newsletter { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 36px 32px; text-align: center; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at top right, rgba(212,175,55,0.16), transparent 60%); pointer-events: none; }
.newsletter > * { position: relative; }
.newsletter h3 { font-family: var(--ff-serif); font-size: 1.6rem; color: #fff; margin-bottom: 6px; }
.newsletter p { color: rgba(255,255,255,0.72); font-size: 0.94rem; margin-bottom: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 12px 14px; border: 1px solid rgba(255,255,255,0.20); background: rgba(255,255,255,0.06); color: #fff; font-family: inherit; font-size: 0.92rem; border-radius: var(--radius); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--brand-mid); background: rgba(255,255,255,0.10); }
.newsletter-form button { background: var(--brand-mid); color: var(--navy); border: none; font-weight: 600; font-size: 0.92rem; padding: 12px 22px; border-radius: var(--radius); cursor: pointer; font-family: inherit; transition: all 0.18s; }
.newsletter-form button:hover { background: var(--brand-light); transform: translateY(-1px); }
.newsletter-fine { font-size: 0.76rem; color: rgba(255,255,255,0.50); margin-top: 12px; }
@media(max-width:520px){ .newsletter-form { flex-direction: column; } }

/* CTA BAND */
.cta-band { background: var(--navy); color: #fff; padding: 56px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 0%, rgba(212,175,55,0.14), transparent 60%), radial-gradient(ellipse at 80% 100%, rgba(31,95,168,0.10), transparent 50%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { font-family: var(--ff-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: #fff; margin-bottom: 10px; font-weight: 500; }
.cta-band p { font-size: 1.02rem; color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 22px; }
.cta-band .btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* STATS BAR */
.stats-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.stat-cell { padding: 22px 20px; border-right: 1px solid var(--border-soft); text-align: center; }
.stat-cell:last-child { border-right: none; }
@media(max-width:700px){ .stat-cell { border-right: none; border-bottom: 1px solid var(--border-soft); } .stat-cell:last-child { border-bottom: none; } }
.stat-num { font-family: var(--ff-serif); font-size: 1.8rem; font-weight: 600; color: var(--ink); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; font-feature-settings: 'tnum'; }
.stat-num.gold { color: var(--brand-dark); }
.stat-label { font-size: 0.78rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

/* SCORE BREAKDOWN */
.score-breakdown { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.score-row { display: grid; grid-template-columns: 1fr 60px 100px; gap: 14px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.score-row:last-child { border-bottom: none; }
.score-row-label { font-size: 0.92rem; color: var(--ink-1); font-weight: 500; }
.score-row-pct { font-size: 0.78rem; color: var(--ink-3); }
.score-row-bar { height: 6px; background: var(--bg-cream); border-radius: 3px; overflow: hidden; }
.score-row-fill { height: 100%; background: var(--brand); border-radius: 3px; }

/* FILTER PILLS */
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-pill { background: #fff; border: 1px solid var(--border-1); color: var(--ink-2); padding: 7px 14px; border-radius: 999px; font-size: 0.84rem; cursor: pointer; transition: all 0.15s; font-family: inherit; }
.filter-pill:hover { border-color: var(--ink-3); color: var(--ink); }
.filter-pill.active { background: var(--navy); color: var(--brand-mid); border-color: var(--navy); }

/* H2H */
.h2h-grid { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 18px; align-items: stretch; }
@media(max-width:740px){ .h2h-grid { grid-template-columns: 1fr; } .h2h-vs { display: none; } }
.h2h-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 22px; }
.h2h-card.winner { border: 2px solid var(--brand); background: linear-gradient(180deg, var(--brand-cream), #fff 80%); box-shadow: var(--shadow-gold); position: relative; }
.h2h-card.winner::before { content: '\2605 Editor\27s pick'; position: absolute; top: -12px; left: 22px; background: var(--navy); color: var(--brand-mid); font-size: 0.66rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; border: 1px solid var(--brand); }
.h2h-vs { display: flex; align-items: center; justify-content: center; font-family: var(--ff-serif); font-style: italic; color: var(--ink-3); font-size: 1.1rem; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.70); padding: 64px 28px 28px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--brand-mid) 50%, transparent); opacity: 0.5; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
@media(max-width:900px){ .footer-cols { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media(max-width:560px){ .footer-cols { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-brand .nav-logo:hover { color: #fff; }
.footer-brand .nav-logo-mark { background: var(--brand-mid); color: var(--navy); }
.footer-brand .nav-logo-mark::after { border-color: var(--brand-light); }
.footer-brand .nav-logo span { color: var(--brand-mid); }
.footer-brand p { font-size: 0.84rem; line-height: 1.65; color: rgba(255,255,255,0.62); margin-top: 14px; }
.footer-col h4 { color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: rgba(255,255,255,0.65); font-size: 0.86rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--brand-mid); }
.footer-disclosure { background: var(--navy-1); border: 1px solid var(--navy-soft); border-radius: var(--radius); padding: 18px 22px; margin-bottom: 22px; }
.footer-disclosure p { font-size: 0.78rem; line-height: 1.65; color: rgba(255,255,255,0.58); margin-bottom: 10px; }
.footer-disclosure p:last-child { margin-bottom: 0; }
.footer-disclosure strong { color: var(--brand-mid); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; border-top: 1px solid var(--navy-soft); font-size: 0.78rem; color: rgba(255,255,255,0.50); }
.footer-bottom a { color: rgba(255,255,255,0.65); margin-left: 16px; }
.footer-bottom a:hover { color: var(--brand-mid); }
@media(max-width:600px){ .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; } .footer-bottom a { margin-left: 0; margin-right: 16px; } }

.btn-group { display: flex; gap: 10px; flex-wrap: wrap; }

@media(max-width:880px) {
  .nav-mobile { display: block; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; align-items: stretch; padding: 14px 22px 18px; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); display: none; }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px; text-align: center; }
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 40px; }

.verified-badge { display: inline-flex; align-items: center; gap: 5px; background: var(--verified-soft); color: var(--verified); font-size: 0.72rem; font-weight: 600; padding: 3px 8px; border-radius: 4px; letter-spacing: 0.02em; }
.verified-badge::before { content: '\2713'; font-weight: 700; }
