/* ── Brightfield Research — Editorial Standard ──────────────────────────────
   Fonts: Cormorant Garamond (display) + Libre Baskerville (body) + Figtree (UI)
   Palette: warm cream #FAF8F2, forest green #1B4D2C
   Feel: research journal, magazine front page, institutional authority
   ──────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Figtree:wght@300;400;500;600&display=swap');

:root {
  --ink:      #1A1A18;
  --muted:    #635E56;
  --paper:    #FAF8F2;
  --sheet:    #F2EFE7;
  --line:     #DDD8CA;
  --rule:     #2C2820;
  --accent:   #1B4D2C;
  --gold:     #A07820;
  --soft:     #E4EDE6;
  --dark:     #0F2219;
  --max:      1180px;
  --display:  'Cormorant Garamond', Georgia, serif;
  --body:     'Libre Baskerville', Georgia, serif;
  --ui:       'Figtree', 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

/* ── Masthead strip ── */
.utility-bar {
  background: var(--accent);
  color: rgba(255,255,255,0.85);
  font-family: var(--ui);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.utility-bar a { color: inherit; text-decoration: none; }
.utility-bar a:hover { color: #fff; }
.utility-contact { display: flex; gap: 18px; align-items: center; }
.utility-contact span { opacity: 0.4; }
.utility-tag { border: 1px solid rgba(255,255,255,0.35); padding: 1px 8px; font-size: 9px; letter-spacing: 0.16em; }

/* ── Navigation ── */
.site-header { background: var(--paper); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.nav { max-width: var(--max); margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { text-decoration: none; display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { width: 28px; height: 28px; border: 1.5px solid var(--accent); display: grid; place-items: center; background: transparent; flex-shrink: 0; }
.brand-mark span { display: block; width: 10px; height: 10px; background: var(--accent); clip-path: polygon(0 100%, 50% 0, 100% 100%); }
.brand-name { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 26px; font-family: var(--ui); font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links a { text-decoration: none; color: var(--muted); transition: color 120ms; }
.nav-links a:hover, .nav-links a:focus-visible, .nav-links a[aria-current="page"] { color: var(--accent); outline: none; }
.nav-cta { background: var(--accent) !important; color: #fff !important; padding: 7px 14px; font-size: 10.5px; letter-spacing: 0.1em; text-decoration: none !important; transition: background 120ms; }
.nav-cta:hover { background: var(--dark) !important; }

.skip-link { position: absolute; top: -100%; left: 22px; z-index: 100; padding: 8px 16px; background: var(--accent); color: #fff; font-family: var(--ui); font-size: 12px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.08em; }
.skip-link:focus { top: 8px; }
[id] { scroll-margin-top: 80px; }
main { min-height: 70vh; }

/* ── Typography ── */
.eyebrow, .kicker { display: block; font-family: var(--ui); text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent); font-size: 10px; font-weight: 600; margin-bottom: 16px; line-height: 1; }
h1, h2, h3 { font-family: var(--display); margin: 0; color: var(--ink); font-weight: 600; letter-spacing: -0.01em; line-height: 1.1; text-wrap: balance; }
h1 { font-size: clamp(42px, 6vw, 80px); font-weight: 700; }
h2 { font-size: clamp(28px, 3.8vw, 48px); }
h3 { font-size: 24px; font-weight: 500; }
p { margin: 0; }
.lede { margin-top: 20px; color: var(--muted); font-size: 18.5px; max-width: 660px; line-height: 1.68; font-family: var(--body); font-style: italic; }

/* ── Stats row ── */
.stats-row { border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); background: var(--line); gap: 1px; }
.stats-row div { background: var(--paper); padding: 24px 28px; }
.stats-row strong { display: block; font-family: var(--display); font-size: 52px; font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.stats-row span { display: block; margin-top: 6px; font-family: var(--ui); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); line-height: 1.4; }

/* ── Sections ── */
.section { max-width: var(--max); margin: 0 auto; padding: 56px 24px; }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 17px; margin-top: 12px; line-height: 1.6; font-family: var(--body); font-style: italic; }
.band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--sheet); }
.dark-band { background: var(--dark); color: var(--paper); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.dark-band .kicker { color: rgba(255,255,255,0.45); }
.dark-band h2 { color: var(--paper); font-style: italic; }
.dark-band .section-head p { color: rgba(255,255,255,0.65); }

.coverage-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); margin-top: 32px; }
.coverage-cell { background: rgba(255,255,255,0.03); padding: 28px 22px; transition: background 120ms; }
.coverage-cell:hover { background: rgba(255,255,255,0.07); }
.coverage-badge { display: inline-block; font-family: var(--ui); font-size: 9px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--paper); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 3px 9px; margin-bottom: 14px; }
.coverage-cell h3 { color: #fff; font-size: 18px; margin-bottom: 8px; font-style: italic; }
.coverage-cell p { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.52; margin-top: 8px; }
.coverage-count { margin-top: 16px; font-family: var(--ui); font-size: 10px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; }

/* ── Grid + tiles ── */
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.tile { background: var(--paper); border-top: 2px solid var(--line); padding: 24px 0 0; display: flex; flex-direction: column; gap: 10px; text-decoration: none; transition: border-color 120ms; }
.tile:hover { border-top-color: var(--accent); }
.tile:focus-visible { outline: 2px solid var(--accent); }
.tile h3 { font-size: 22px; font-style: italic; }
.tile p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.tile .meta { margin-top: auto; font-family: var(--ui); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; padding-top: 14px; }

/* ── Reviewer cards ── */
.reviewer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; }
.reviewer-card { border-top: 1px solid var(--rule); padding-top: 24px; display: flex; flex-direction: column; gap: 8px; background: transparent; }
.reviewer-initials { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--accent); background: var(--soft); color: var(--accent); font-family: var(--display); font-weight: 600; font-size: 18px; font-style: italic; margin-bottom: 8px; }
.reviewer-credential { font-family: var(--ui); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.reviewer-name { font-family: var(--display); font-size: 20px; font-weight: 600; color: var(--ink); font-style: italic; }
.reviewer-role { font-family: var(--ui); font-size: 11px; color: var(--muted); line-height: 1.45; }
.reviewer-bio { font-size: 14.5px; color: var(--muted); line-height: 1.6; flex: 1; font-family: var(--body); }
.reviewer-status { margin-top: 14px; font-family: var(--ui); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); border-top: 1px solid var(--line); padding-top: 10px; }
.reviewer-status.active { color: var(--accent); border-color: var(--accent); }
.reviewer-status.active a { color: var(--accent); text-decoration: none; }

/* ── Process grid ── */
.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--rule); }
.process-step { padding: 28px 24px 28px 0; border-right: 1px solid var(--line); min-height: 220px; }
.process-step:last-child { border-right: none; }
.process-step span { display: block; margin-bottom: 16px; font-family: var(--display); font-size: 42px; font-weight: 700; color: var(--line); line-height: 1; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; }
.process-step p { color: var(--muted); font-size: 14.5px; line-height: 1.58; }

/* ── Standards grid ── */
.standards-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; border-top: 1px solid var(--line); }
.standard-item { padding: 24px 32px 24px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 20px 1fr; gap: 14px; align-items: start; }
.standard-check { color: var(--accent); font-family: var(--ui); font-weight: 700; font-size: 14px; padding-top: 2px; }
.standard-item h3 { font-size: 16px; margin-bottom: 6px; font-style: italic; }
.standard-item p { color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ── Benchmark cards ── */
.benchmark-feature-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.benchmark-feature-card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; text-decoration: none; transition: border-color 140ms; }
.benchmark-feature-card:hover { border-color: var(--accent); }
.bfc-header { padding: 0; min-height: 140px; overflow: hidden; }
.bfc-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 10px; border-top: 1px solid var(--line); }
.bfc-body h3 { font-size: 20px; font-style: italic; }
.bfc-body p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.bfc-cta { margin-top: auto; font-family: var(--ui); font-size: 10px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; }
.bfc-category { font-family: var(--ui); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.55); }
.bfc-badge { font-family: var(--ui); font-size: 9px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); }
.bfc-visual { display: flex; align-items: center; }

/* ── Report layout ── */
.report-layout { display: grid; grid-template-columns: 210px 1fr; gap: 52px; align-items: start; max-width: var(--max); margin: 0 auto; padding: 52px 24px 80px; }
.report-sidebar-sticky { position: sticky; top: 76px; max-height: calc(100vh - 96px); overflow-y: auto; scrollbar-width: none; font-family: var(--ui); font-size: 11.5px; color: var(--muted); }
.report-sidebar-sticky::-webkit-scrollbar { display: none; }
.report-sidebar-sticky .kicker { margin-bottom: 16px; }
.report-sidebar-sticky p { margin-top: 12px; font-size: 11.5px; line-height: 1.5; color: var(--muted); }
.report-sidebar-sticky strong { color: var(--ink); display: block; margin-bottom: 2px; }
.report-sidebar-sticky hr { border: none; border-top: 1px solid var(--line); margin: 16px 0; }
.report-sidebar-sticky a { color: var(--muted); text-decoration: none; }
.report-sidebar-sticky a:hover { color: var(--accent); }
.report-toc { margin-top: 14px; }
.report-toc-label { display: block; color: var(--ink); font-weight: 600; margin-bottom: 8px; font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.1em; }
.report-toc a { display: block; padding: 5px 0; border-bottom: 1px solid var(--line); font-size: 11px; color: var(--muted); text-decoration: none; transition: color 100ms; }
.report-toc a:last-child { border-bottom: none; }
.report-toc a:hover { color: var(--accent); }
.report-toc-sub { padding-left: 10px; font-size: 10.5px; }
.report-sidebar p { margin-top: 16px; font-size: 15px; line-height: 1.55; color: var(--muted); }
.report-sidebar strong { color: var(--ink); }
.report-sidebar hr { border: none; border-top: 1px solid var(--line); margin: 20px 0; }

/* ── Prose ── */
.prose { background: transparent; border: none; padding: 0; }
.prose > h1:first-child { font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 20px; font-style: italic; }
.prose h2 { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); font-size: clamp(22px, 2.8vw, 30px); font-weight: 600; font-style: italic; }
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { margin-top: 26px; font-size: 20px; font-style: italic; }
.prose p, .prose li { color: var(--muted); font-size: 16.5px; line-height: 1.78; font-family: var(--body); }
.prose p + p, .prose p + ul, .prose ul + p, .prose p + ol, .prose ol + p { margin-top: 18px; }
.prose ul, .prose ol { margin: 14px 0 0; padding-left: 22px; }
.prose li + li { margin-top: 8px; }
.prose a { color: var(--accent); text-underline-offset: 3px; }

/* ── Callouts / tables / buttons ── */
.note { margin-top: 24px; padding: 16px 20px; border-left: 3px solid var(--accent); background: var(--soft); font-size: 15px; color: var(--ink); line-height: 1.6; }
.answer-capsule { display: grid; grid-template-columns: 140px 1fr; margin: 24px 0; border: 1px solid var(--rule); background: var(--sheet); }
.answer-capsule span { display: grid; place-items: center; padding: 16px; background: var(--rule); color: #fff; font-family: var(--ui); font-size: 9.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; text-align: center; }
.answer-capsule p { padding: 16px 20px; color: var(--ink); font-size: 15.5px; line-height: 1.6; }
.table-wrap { overflow-x: auto; margin-top: 20px; }
table { width: 100%; border-collapse: collapse; background: var(--paper); min-width: 560px; }
th, td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-family: var(--ui); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); background: var(--sheet); font-weight: 600; }
td { color: var(--muted); font-size: 14.5px; line-height: 1.52; }
tr:last-child td { border-bottom: none; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 24px; border: 1.5px solid var(--rule); background: var(--rule); color: #fff; text-decoration: none; font-family: var(--ui); font-weight: 500; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; transition: background 120ms, border-color 120ms; }
.button:hover, .button:focus-visible { background: var(--accent); border-color: var(--accent); outline: none; }
.button.secondary { background: transparent; color: var(--rule); }
.button.secondary:hover { background: var(--rule); color: #fff; }

/* ── Timeline / Author ── */
.timeline { margin-top: 24px; border-top: 1px solid var(--line); }
.timeline div { display: grid; grid-template-columns: 100px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); align-items: start; }
.timeline span { color: var(--accent); font-family: var(--ui); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; font-size: 10.5px; padding-top: 4px; }
.timeline strong { display: block; margin-bottom: 6px; font-size: 16px; font-family: var(--display); font-style: italic; }
.timeline p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.author-head { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; margin-bottom: 28px; }
.author-avatar { width: 64px; height: 64px; display: grid; place-items: center; border: 1px solid var(--accent); background: var(--soft); color: var(--accent); font-family: var(--display); font-style: italic; font-size: 22px; font-weight: 600; }

/* ── Hero card / metric ── */
.hero-card { border: 1px solid var(--line); background: var(--paper); }
.card-head { padding: 10px 16px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-family: var(--ui); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); background: var(--sheet); }
.card-body { padding: 16px; }
.metric { display: grid; grid-template-columns: 44px 1fr; gap: 8px 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: start; }
.metric:last-child { border-bottom: none; }
.metric strong { color: var(--accent); font-size: 22px; font-family: var(--display); font-style: italic; }
.metric span { color: var(--muted); font-size: 14px; line-height: 1.52; }

/* ── Newsletter ── */
.newsletter-band { background: var(--sheet); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.newsletter-inner { max-width: var(--max); margin: 0 auto; padding: 52px 24px; display: grid; grid-template-columns: 1fr auto; gap: 52px; align-items: center; }
.newsletter-form { display: flex; gap: 0; max-width: 440px; margin-top: 18px; }
.newsletter-form input { flex: 1; padding: 11px 16px; border: 1px solid var(--rule); border-right: none; font-family: var(--body); font-size: 14px; background: #fff; color: var(--ink); outline: none; }
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button { padding: 11px 20px; background: var(--accent); color: #fff; border: 1px solid var(--accent); font-family: var(--ui); font-size: 10.5px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; cursor: pointer; transition: background 120ms; }
.newsletter-form button:hover { background: var(--dark); border-color: var(--dark); }
.newsletter-proof { font-family: var(--ui); font-size: 10.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 12px; }

/* ── TOC inline ── */
.toc-inline { border-left: 2px solid var(--line); padding: 2px 0 2px 18px; margin: 28px 0 32px; }
.toc-inline-label { font-family: var(--ui); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); font-weight: 400; display: block; margin-bottom: 10px; }
.toc-inline ol { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.toc-inline a { color: var(--muted); text-decoration: none; font-size: 14.5px; transition: color 100ms; font-family: var(--body); font-style: italic; }
.toc-inline a:hover { color: var(--accent); }

/* ── Image ── */
.article-image { margin: 28px 0; border: 1px solid var(--line); background: var(--sheet); }
.article-image img { aspect-ratio: 16/9; width: 100%; display: block; object-fit: cover; }
.article-image figcaption { padding: 10px 14px; color: var(--muted); font-family: var(--ui); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.07em; border-top: 1px solid var(--line); }

/* ── Footer ── */
.site-footer { background: var(--dark); color: var(--paper); border-top: 3px solid var(--accent); }
.footer-top { max-width: var(--max); margin: 0 auto; padding: 56px 24px 40px; display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 48px; }
.footer-brand strong { display: block; font-family: var(--display); font-size: 22px; font-style: italic; font-weight: 600; color: #fff; margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 13.5px; line-height: 1.55; margin-top: 0; font-family: var(--body); font-style: italic; }
.footer-contact { margin-top: 20px; font-family: var(--ui); font-size: 11px; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-contact a:hover { color: #fff; }
.footer-col h4 { font-family: var(--ui); font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.16em; color: rgba(255,255,255,0.35); margin: 0 0 16px; font-weight: 500; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13.5px; padding: 4px 0; font-family: var(--body); font-style: italic; transition: color 100ms; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; max-width: var(--max); margin: 0 auto; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-legal-links { display: flex; gap: 18px; flex-wrap: wrap; font-family: var(--ui); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-legal-links a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 100ms; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
.footer-copyright { font-family: var(--ui); font-size: 10px; color: rgba(255,255,255,0.25); }
.footer-disclaimer { margin-top: 12px; font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.5; max-width: 900px; font-family: var(--body); font-style: italic; }

/* ── Misc ── */
.status-line { color: var(--muted); font-family: var(--ui); font-size: 12.5px; padding: 20px 0; }
.dashboard-grid, .check-grid, .desk-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.dashboard-cell, .check-grid p, .desk-grid > div { background: var(--paper); padding: 20px; }
.dashboard-cell span { display: block; margin-bottom: 10px; color: var(--accent); font-family: var(--ui); font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; }
.dashboard-cell strong { color: var(--muted); font-size: 15.5px; font-weight: 400; line-height: 1.52; }
.check-grid p { color: var(--muted); font-size: 15px; font-weight: 400; line-height: 1.52; margin: 0; }
.check-grid strong { color: var(--ink); }
.research-dashboard { display: grid; grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: 36px; align-items: start; }
.legitimacy-check { display: grid; grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr); gap: 36px; align-items: start; }
.split { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr); gap: 44px; align-items: start; }
.toc { border-left: 2px solid var(--accent); padding-left: 18px; font-family: var(--ui); font-size: 11.5px; color: var(--muted); position: sticky; top: 70px; }
.toc .kicker { margin-bottom: 16px; }
.toc a { display: block; text-decoration: none; padding: 6px 0; color: var(--muted); border-bottom: 1px solid var(--line); transition: color 100ms; }
.toc a:last-child { border-bottom: none; }
.toc a:hover { color: var(--accent); }

/* ── Focus / motion ── */
.nav-links a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.tile:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: 0.01ms !important; } }

/* ── Responsive ── */
@media (max-width: 1040px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 820px) {
  .nav { flex-direction: column; height: auto; padding: 12px 18px; gap: 10px; }
  .nav-links { width: 100%; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; gap: 18px; }
  .stats-row { grid-template-columns: 1fr 1fr; background: var(--line); }
  .coverage-grid, .reviewer-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr 1fr; }
  .benchmark-feature-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .standards-grid { grid-template-columns: 1fr; }
  .report-layout { grid-template-columns: 1fr; padding: 32px 18px 60px; }
  .report-sidebar-sticky { position: static; max-height: none; margin-bottom: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
  .answer-capsule { grid-template-columns: 1fr; }
  .split, .legitimacy-check, .research-dashboard { grid-template-columns: 1fr; }
  .dashboard-grid, .check-grid, .desk-grid { grid-template-columns: 1fr; }
  .toc { position: static; margin-bottom: 28px; }
}
@media (max-width: 520px) { .process-grid, .grid { grid-template-columns: 1fr; } .stats-row { grid-template-columns: 1fr; } .footer-top { grid-template-columns: 1fr; } }

/* ── Reviewer photo placeholder ── */
.reviewer-photo-wrap {
  margin-bottom: 24px;
}
.reviewer-photo-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border: 1px solid var(--line);
}
.reviewer-photo-placeholder {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  background: var(--sheet);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.reviewer-photo-placeholder span {
  font-family: var(--ui, 'Figtree', sans-serif);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
