/* ============================================================
   Trust Cam Rating — Design System
   Warm-soft direction · Editorial review-portal posture
   ============================================================ */

:root {
  /* ── Surface ───────────────────────────────────────────── */
  --bg:         oklch(97% 0.018 70);   /* warm cream paper */
  --surface:    oklch(99.4% 0.006 70); /* near-white card */
  --surface-2:  oklch(95.5% 0.014 65); /* tinted surface */
  --surface-3:  oklch(93% 0.018 60);   /* deeper tint */

  /* ── Ink ───────────────────────────────────────────────── */
  --fg:         oklch(22% 0.02 50);    /* warm near-black */
  --fg-2:       oklch(34% 0.02 50);    /* secondary text */
  --muted:      oklch(50% 0.018 50);   /* meta text */
  --muted-2:    oklch(63% 0.014 50);   /* low-contrast meta */

  /* ── Lines ─────────────────────────────────────────────── */
  --border:     oklch(89% 0.014 70);
  --border-2:   oklch(83% 0.018 65);   /* stronger separator */
  --hairline:   oklch(91% 0.012 70);

  /* ── Accent (warm rust) ────────────────────────────────── */
  --accent:     oklch(58% 0.14 28);
  --accent-2:   oklch(48% 0.14 28);    /* hover/pressed */
  --accent-soft: oklch(94% 0.04 28);
  --accent-ink: oklch(28% 0.10 28);    /* on accent-soft bg */

  /* ── Semantic ──────────────────────────────────────────── */
  --success:    oklch(48% 0.13 145);
  --success-soft: oklch(94% 0.04 145);
  --success-ink: oklch(26% 0.09 145);

  --warn:       oklch(62% 0.14 75);
  --warn-soft:  oklch(95% 0.05 75);
  --warn-ink:   oklch(30% 0.09 60);

  --info:       oklch(50% 0.13 240);
  --info-soft:  oklch(94% 0.025 240);
  --info-ink:   oklch(28% 0.10 240);

  --danger:     oklch(50% 0.18 25);
  --danger-soft: oklch(94% 0.04 25);

  /* ── Type ──────────────────────────────────────────────── */
  --font-display: 'Tiempos Headline', 'Newsreader', 'Iowan Old Style', 'Charter', Georgia, serif;
  --font-body:    'Söhne', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:    ui-monospace, 'SF Mono', 'JetBrains Mono', 'IBM Plex Mono', Menlo, monospace;

  --t-2xs:  11px;
  --t-xs:   12px;
  --t-sm:   13px;
  --t-base: 16px;
  --t-md:   17px;
  --t-lg:   19px;
  --t-xl:   22px;
  --t-2xl:  26px;
  --t-3xl:  30px;
  --t-4xl:  36px;
  --t-5xl:  44px;
  --t-6xl:  56px;

  /* ── Shape ─────────────────────────────────────────────── */
  --r-xs: 6px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 22px;
  --r-2xl: 28px;
  --r-pill: 999px;

  /* ── Shadow (warm, gentle) ─────────────────────────────── */
  --shadow-1: 0 1px 2px rgb(60 38 18 / .05), 0 1px 1px rgb(60 38 18 / .04);
  --shadow-2: 0 6px 18px rgb(60 38 18 / .06), 0 2px 4px rgb(60 38 18 / .04);
  --shadow-3: 0 18px 44px rgb(60 38 18 / .10), 0 4px 8px rgb(60 38 18 / .06);
  --ring:     0 0 0 3px oklch(58% 0.14 28 / .25);

  /* ── Layout ────────────────────────────────────────────── */
  --container: 1180px;
  --gutter: 20px;
  --header-h: 60px;
}

/* ============================================================
   Reset & base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.55;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select, button { font: inherit; color: inherit; }
table { border-collapse: collapse; }
hr { border: 0; border-top: 1px solid var(--border); margin: 0; }
::selection { background: var(--accent-soft); color: var(--accent-ink); }

/* ============================================================
   Type
   ============================================================ */
.h-display, .h1, .h2, .h3, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--fg);
  margin: 0;
}
.h1   { font-size: clamp(30px, 6.4vw, 44px); line-height: 1.08; letter-spacing: -0.012em; }
.h2   { font-size: clamp(24px, 4.6vw, 32px); line-height: 1.15; letter-spacing: -0.008em; }
.h3   { font-size: clamp(20px, 3.4vw, 24px); line-height: 1.2; }
.h4   { font-size: 18px; line-height: 1.3; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.eyebrow.accent { color: var(--accent); }

.lede   { font-size: var(--t-md); line-height: 1.55; color: var(--fg-2); }
.meta   { font-size: var(--t-xs); color: var(--muted); }
.mono   { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

p { margin: 0; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: 32px; }
.section + .section { border-top: 1px solid var(--hairline); }
.stack > * + * { margin-top: var(--gap, 12px); }
.stack-md { --gap: 16px; }
.stack-lg { --gap: 24px; }
.row { display: flex; gap: 12px; align-items: center; }
.row.between { justify-content: space-between; }
.row.wrap { flex-wrap: wrap; }

/* ============================================================
   Header (mobile sticky)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg) 88%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
  display: flex; align-items: center;
}
.site-header-inner {
  display: flex; align-items: center; gap: 12px;
  width: 100%;
}
.brand {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 26px; height: 26px;
  border-radius: 7px;
  background:
    radial-gradient(circle at 30% 30%, oklch(72% 0.16 28) 0%, transparent 55%),
    linear-gradient(135deg, var(--accent) 0%, oklch(48% 0.13 35) 100%);
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after {
  content: ""; position: absolute;
  inset: 7px 7px 7px 7px;
  border-radius: 50%;
  background: oklch(99% 0 0);
  box-shadow: inset 0 0 0 2px var(--accent);
}
.brand-name b { font-weight: 600; }
.brand-name span { color: var(--muted); font-weight: 400; }

.nav-spacer { flex: 1; }

.icon-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: transparent;
  color: var(--fg);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s;
}
.icon-btn:hover { background: var(--surface-2); }
.icon-btn:active { background: var(--surface-3); }
.icon-btn svg { width: 20px; height: 20px; }

.nav-desktop { display: none; }
@media (min-width: 900px) {
  .site-header { height: 68px; }
  .nav-desktop {
    display: flex; gap: 4px; align-items: center;
    margin-left: 12px;
  }
  .nav-desktop a {
    font-size: 14.5px;
    color: var(--fg-2);
    padding: 8px 12px;
    border-radius: var(--r-sm);
  }
  .nav-desktop a:hover { background: var(--surface-2); color: var(--fg); }
  .nav-desktop a[aria-current] { color: var(--accent); font-weight: 500; }
  .icon-btn.menu-toggle { display: none; }
}

/* ============================================================
   18+ Notice bar
   ============================================================ */
.age-notice {
  display: flex; gap: 10px; align-items: flex-start;
  background: var(--warn-soft);
  border-bottom: 1px solid color-mix(in oklab, var(--warn) 30%, var(--border));
  padding: 10px var(--gutter);
  font-size: 13px;
  color: var(--warn-ink);
}
.age-notice .age-badge {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  background: var(--warn);
  color: oklch(99% 0 0);
  padding: 3px 7px;
  border-radius: var(--r-xs);
  letter-spacing: 0.05em;
  margin-top: 1px;
}
.age-notice strong { font-weight: 600; }

/* Larger inline 18+ banner used inside articles */
.age-banner {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--warn-soft);
  border: 1px solid color-mix(in oklab, var(--warn) 35%, var(--border));
  border-radius: var(--r-md);
  padding: 14px;
  font-size: 14px;
  color: var(--warn-ink);
}
.age-banner .age-badge {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  background: var(--warn);
  color: oklch(99% 0 0);
  padding: 4px 9px;
  border-radius: var(--r-xs);
  flex-shrink: 0;
}
.age-banner p { margin: 0; line-height: 1.5; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 44px;
  padding-inline: 18px;
  border-radius: var(--r-md);
  font-weight: 500;
  font-size: 15px;
  border: 1px solid transparent;
  background: var(--surface);
  color: var(--fg);
  transition: transform .12s, background .12s, border-color .12s, box-shadow .12s;
  white-space: nowrap;
}
.btn:hover { background: var(--surface-2); }
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--accent); color: oklch(99% 0 0);
  border-color: color-mix(in oklab, var(--accent) 80%, black);
  box-shadow: 0 1px 0 oklch(35% 0.10 28) inset, 0 1px 2px rgb(60 38 18 / .14);
}
.btn-primary:hover { background: var(--accent-2); }
.btn-secondary { border-color: var(--border-2); }
.btn-ghost { background: transparent; }
.btn-sm { height: 36px; padding-inline: 14px; font-size: 13.5px; border-radius: var(--r-sm); }
.btn-lg { height: 52px; padding-inline: 22px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }
.btn svg { width: 16px; height: 16px; }
.btn-arrow { transition: transform .15s; }
.btn:hover .btn-arrow { transform: translateX(2px); }

/* Review pages: duplicate primary “Visit …” above the fold (after hero intro) */
.review-top-cta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
@media (max-width: 767px) {
  .review-top-cta .btn.btn-primary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* ============================================================
   Badges, pills, chips
   ============================================================ */
.pill {
  display: inline-flex; align-items: center; gap: 5px;
  height: 22px;
  padding-inline: 9px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--surface-2);
  color: var(--fg-2);
  border: 1px solid var(--border);
  white-space: nowrap;
}
.pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--muted);
}
.pill.success { background: var(--success-soft); color: var(--success-ink); border-color: color-mix(in oklab, var(--success) 25%, var(--border)); }
.pill.success::before { background: var(--success); }
.pill.warn { background: var(--warn-soft); color: var(--warn-ink); border-color: color-mix(in oklab, var(--warn) 28%, var(--border)); }
.pill.warn::before { background: var(--warn); }
.pill.info { background: var(--info-soft); color: var(--info-ink); border-color: color-mix(in oklab, var(--info) 22%, var(--border)); }
.pill.info::before { background: var(--info); }
.pill.accent { background: var(--accent-soft); color: var(--accent-ink); border-color: color-mix(in oklab, var(--accent) 25%, var(--border)); }
.pill.accent::before { background: var(--accent); }
.pill.bare { background: transparent; }
.pill.no-dot::before { display: none; }

.tag {
  display: inline-flex; align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.score-badge {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.score-badge .num { font-size: 22px; color: var(--fg); }
.score-badge .den { font-size: 11px; color: var(--muted); }

.rank-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.rank-badge.first  { background: var(--accent); color: oklch(99% 0 0); }
.rank-badge.second { background: oklch(85% 0.04 70); color: var(--fg); }
.rank-badge.third  { background: oklch(80% 0.05 60); color: oklch(30% 0.06 60); }

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 18px;
}
.card.tinted { background: var(--surface-2); }
.card.tight { padding: 14px; }
.card.spacious { padding: 22px; }
.card-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

/* ============================================================
   Platform logos — real .webp imagery
   ============================================================ */
.platform-logo {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 1px 2px rgb(60 38 18 / .04);
  position: relative;
  overflow: hidden;
  padding: 0;
}
.platform-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}
.platform-logo.lg {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
}
.platform-logo.sm { width: 36px; height: 36px; border-radius: var(--r-sm); }
.platform-logo.xs { width: 28px; height: 28px; border-radius: var(--r-xs); }

/* ============================================================
   Quick Answer box
   ============================================================ */
.quick-answer {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 18px;
  position: relative;
}
.quick-answer::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  inset-block: 14px;
  width: 3px;
  background: var(--accent);
  border-radius: 0 3px 3px 0;
}
.quick-answer .qa-head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  padding-inline-start: 12px;
}
.quick-answer .qa-head .qa-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
}
.quick-answer h2 { font-family: var(--font-display); font-size: 20px; margin: 0; font-weight: 500; letter-spacing: -0.005em; }
.quick-answer ul { list-style: none; padding: 0 0 0 12px; margin: 0; }
.quick-answer li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: baseline;
  padding-block: 8px;
  border-bottom: 1px dashed var(--hairline);
  font-size: 14.5px;
}
.quick-answer li:last-child { border-bottom: 0; }
.quick-answer li .qa-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.quick-answer li .qa-pick { font-weight: 600; color: var(--fg); }
.quick-answer li .qa-pick a { color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 35%, transparent); }
.quick-answer .qa-foot {
  margin-top: 12px;
  padding-inline-start: 12px;
  display: flex; gap: 12px; flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
}
.quick-answer .qa-foot .dot { width: 4px; height: 4px; background: var(--muted-2); border-radius: 50%; align-self: center; }

/* ============================================================
   Methodology box
   ============================================================ */
.methodology {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.methodology h2 { font-family: var(--font-display); font-size: 22px; margin: 0 0 4px; font-weight: 500; }
.methodology .lede { margin: 0 0 14px; }
.methodology-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.methodology-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 14px;
}
.methodology-list .bar {
  grid-column: 1 / -1;
  height: 6px;
  background: var(--surface);
  border-radius: var(--r-pill);
  overflow: hidden;
  border: 1px solid var(--border);
}
.methodology-list .bar > span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: var(--r-pill);
}
.methodology-list .label { color: var(--fg-2); }
.methodology-list .pct { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-weight: 600; color: var(--fg); }

/* ============================================================
   Tables — desktop full / mobile card mode
   ============================================================ */
.ranking-table {
  width: 100%;
  font-size: 14px;
  background: var(--surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.ranking-table thead th {
  text-align: start;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  white-space: nowrap;
}
.ranking-table tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
.ranking-table tbody tr:last-child td { border-bottom: 0; }

/* mobile card transforms */
.ranking-cards { display: grid; gap: 10px; }
.ranking-cards .ranking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: flex-start;
}
.ranking-cards .ranking-card .col-platform { display: flex; gap: 12px; min-width: 0; }
.ranking-cards .ranking-card .platform-meta { min-width: 0; }
.ranking-cards .ranking-card .platform-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ranking-cards .ranking-card .platform-tag {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-top: 4px;
}
.ranking-cards .ranking-card .col-stats {
  font-size: 12.5px;
  color: var(--muted);
  text-align: end;
  display: flex; flex-direction: column; gap: 4px; align-items: flex-end;
}
.ranking-cards .ranking-card .col-stats .price {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--fg);
  font-size: 13px;
}
.ranking-cards .ranking-card .row-cta {
  grid-column: 1 / -1;
  display: flex; gap: 8px; align-items: center;
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px dashed var(--hairline);
}
.ranking-cards .ranking-card .row-cta .visit { margin-inline-start: auto; }

/* ============================================================
   Comparison matrix
   ============================================================ */
.matrix {
  width: 100%;
  font-size: 13.5px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.matrix th, .matrix td {
  padding: 12px 12px;
  vertical-align: top;
  text-align: start;
  border-bottom: 1px solid var(--hairline);
}
.matrix thead th {
  background: var(--surface-2);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.matrix tbody th {
  font-weight: 500;
  color: var(--fg-2);
  font-size: 13px;
  width: 32%;
  background: var(--surface-2);
}
.matrix .winner {
  font-weight: 600;
  color: var(--accent);
  font-size: 12px;
}
.matrix tbody tr:last-child th,
.matrix tbody tr:last-child td { border-bottom: 0; }

/* ============================================================
   Scenario cards
   ============================================================ */
.scenario-list { display: grid; gap: 10px; }
.scenario {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .15s, transform .15s;
}
.scenario:hover { border-color: var(--border-2); }
.scenario:active { transform: scale(.99); }
.scenario .scenario-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.scenario .scenario-a {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 3px;
}
.scenario .scenario-arrow {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background .15s, transform .15s;
}
.scenario:hover .scenario-arrow {
  background: var(--accent-soft);
  transform: translateX(2px);
}

/* ============================================================
   Selector cards (homepage hero)
   ============================================================ */
.selector-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 640px) {
  .selector-grid { grid-template-columns: repeat(3, 1fr); }
}
.selector-card {
  display: block;
  padding: 14px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  transition: border-color .15s, transform .15s;
}
.selector-card:hover { border-color: var(--border-2); }
.selector-card:active { transform: scale(.98); }
.selector-card .sc-icon {
  width: 28px; height: 28px;
  margin-bottom: 10px;
  color: var(--accent);
}
.selector-card .sc-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.selector-card .sc-meta {
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   FAQ accordion
   ============================================================ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--border); }
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  font-weight: 500;
  font-size: 16px;
  color: var(--fg);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  width: 22px; text-align: center;
  transition: transform .2s, color .2s;
}
.faq details[open] summary::after { content: "−"; color: var(--accent); }
.faq details > p {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  padding-inline-end: 28px;
  text-wrap: pretty;
}

/* ============================================================
   Author box
   ============================================================ */
.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  align-items: start;
}
.author-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), oklch(46% 0.13 28));
  color: oklch(99% 0 0);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 15px; margin-bottom: 1px; }
.author-role { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.author-bio { font-size: 14px; color: var(--fg-2); line-height: 1.55; }
.author-links { margin-top: 8px; display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; }
.author-links a { color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 35%, transparent); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding-block: 32px 24px;
  margin-top: 40px;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-disclosure {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  background: var(--surface);
  border: 1px dashed var(--border-2);
  border-radius: var(--r-md);
  padding: 12px 14px;
  margin-block: 18px;
}
.footer-disclosure strong { color: var(--fg-2); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 14px;
  margin-bottom: 20px;
}
.footer-grid h6 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 8px;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.footer-grid a { font-size: 13.5px; color: var(--fg-2); }
.footer-grid a:hover { color: var(--accent); }
.footer-bar {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   Pros / Cons grid
   ============================================================ */
.proscons {
  display: grid;
  gap: 12px;
}
.proscons .pc-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
}
.proscons .pc-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
  display: flex; align-items: center; gap: 6px;
}
.proscons .pros h4 { color: var(--success-ink); }
.proscons .cons h4 { color: var(--danger); }
.proscons ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.proscons li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--fg-2);
}
.proscons li::before {
  content: "+";
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--success);
  margin-top: 1px;
  text-align: center;
}
.proscons .cons li::before { content: "−"; color: var(--danger); }

/* ============================================================
   Misc
   ============================================================ */
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-bottom-width: 2px;
  border-radius: 5px;
  color: var(--fg-2);
}

.divider-label {
  display: flex; align-items: center; gap: 12px;
  margin: 24px 0 12px;
}
.divider-label::before, .divider-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider-label > span {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  display: block;
  min-width: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-2);
  padding: 12px 14px;
  padding-inline-start: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  text-wrap: pretty;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 14px;
  inset-block-start: 12px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  background-image: none;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--success);
}
.checklist li::after {
  content: none;
}

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

/* ============================================================
   Star rating SVG inline
   ============================================================ */
.stars {
  display: inline-flex;
  gap: 2px;
  align-items: center;
  color: var(--accent);
}
.stars .star { width: 12px; height: 12px; fill: currentColor; }
.stars .star.dim { color: oklch(86% 0.012 60); }
.stars + .stars-num {
  margin-inline-start: 6px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-2);
}

/* ============================================================
   Article body type
   ============================================================ */
.article {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg);
}
.article h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.008em;
  margin: 28px 0 10px;
  line-height: 1.2;
}
.article h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  margin: 22px 0 8px;
}
.article p { margin: 12px 0; text-wrap: pretty; }
.article a { color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 30%, transparent); }
.article ul, .article ol { padding-inline-start: 22px; margin: 10px 0; }
.article ul li, .article ol li { margin-block: 4px; }
.article blockquote {
  margin: 18px 0;
  padding: 4px 0 4px 16px;
  border-inline-start: 3px solid var(--accent);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--fg-2);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  display: flex; gap: 6px; align-items: center;
  flex-wrap: wrap;
  font-size: 12.5px;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--muted-2); }
.breadcrumb .here { color: var(--fg-2); font-weight: 500; }

/* ============================================================
   Sticky CTA bar (mobile)
   ============================================================ */
.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 40;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
}

/* ============================================================
   Mobile bottom nav (homepage variant)
   ============================================================ */
.mobile-nav {
  position: sticky; bottom: 0; z-index: 40;
  background: color-mix(in oklab, var(--bg) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 8px 4px calc(8px + env(safe-area-inset-bottom));
}
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px;
  padding: 6px 2px;
  font-size: 10px;
  color: var(--muted);
  border-radius: var(--r-sm);
  min-height: 44px;
}
.mobile-nav a svg { width: 20px; height: 20px; }
.mobile-nav a[aria-current="true"] { color: var(--accent); font-weight: 600; }

/* ============================================================
   Focus
   ============================================================ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .mobile-nav, .sticky-cta { display: none; }
}
