/* VerifyTheBrand — investigative / consumer-research visual identity.
   Reference register: Consumer Reports, ProPublica, The Markup, 538.
   Anti-promotion: no flashy gradients, no neon, no casino-trope reds-and-golds.
   Reads as a research publication, not a comparison site. */

:root {
  --bg:          #fbfaf7;            /* warm off-white — print-feel */
  --bg-panel:    #ffffff;
  --bg-muted:    #f1efe9;
  --ink:         #1a1a1a;
  --ink-muted:   #555;
  --ink-soft:    #8a8580;
  --rule:        #d9d4ca;
  --accent:      #2e2a55;            /* deep indigo — institutional, not playful */

  /* Risk-tier palette — desaturated, never alarming-red.
     Four-step severity ladder LOW → MEDIUM → HIGH → SEVERE, plus UNKNOWN. */
  --risk-low:        #2f6a3a;
  --risk-low-bg:     #e7efe6;
  --risk-medium:     #8a6912;
  --risk-medium-bg:  #f4ecd2;
  --risk-high:       #8a2a2a;
  --risk-high-bg:    #f1dede;
  --risk-severe:     #ffffff;
  --risk-severe-bg:  #5a1818;            /* inverted: dark maroon fill, white text */
  --risk-unknown:    #6b6b6b;
  --risk-unknown-bg: #ececea;

  /* Reliability label palette */
  --rel-verified:      #1d5f3b;
  --rel-verified-bg:   #dfeee2;
  --rel-claimed:       #4a4a4a;
  --rel-claimed-bg:    #ececea;
  --rel-user:          #6a4a18;
  --rel-user-bg:       #f4ecd2;
  --rel-unknown:       #6b6b6b;
  --rel-unknown-bg:    #ececea;

  --serif: 'Source Serif Pro', 'Charter', Georgia, 'Times New Roman', serif;
  --sans:  -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --mono:  'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --max-width: 760px;                /* readable measure, single column */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--serif);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Layout ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 980px; }

/* ---------- Top bar ---------- */
.topbar {
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
  font-family: var(--sans);
  font-size: 14px;
}
.topbar__inner {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.topbar__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.topbar__nav a {
  color: var(--ink-muted);
  text-decoration: none;
  margin-left: 22px;
}
.topbar__nav a:hover { color: var(--ink); text-decoration: underline; }

/* ---------- Article shell ---------- */
.article { padding: 56px 0 80px; }
.article__kicker {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 12px;
}
.article__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
.article__deck {
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-muted);
  margin: 0 0 28px;
  font-style: italic;
}
.article__meta {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 12px 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.article__meta strong { color: var(--ink); font-weight: 600; }

/* ---------- Body prose ---------- */
.prose h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 44px 0 12px;
  padding-top: 8px;
}
.prose h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 19px;
  margin: 28px 0 8px;
}
.prose p, .prose li { font-size: 18px; line-height: 1.6; }
.prose ul, .prose ol { padding-left: 22px; }
.prose a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
.prose strong { font-weight: 600; }

/* ---------- Risk grid ---------- */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 24px 0 8px;
}
.risk-cell {
  border: 1px solid var(--rule);
  background: var(--bg-panel);
  padding: 14px 14px 12px;
}
.risk-cell__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 6px;
}
.risk-cell__value {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 2px;
}
.risk-cell__value--LOW     { background: var(--risk-low-bg);     color: var(--risk-low); }
.risk-cell__value--MEDIUM  { background: var(--risk-medium-bg);  color: var(--risk-medium); }
.risk-cell__value--HIGH    { background: var(--risk-high-bg);    color: var(--risk-high); }
.risk-cell__value--SEVERE  { background: var(--risk-severe-bg);  color: var(--risk-severe); }
.risk-cell__value--UNKNOWN { background: var(--risk-unknown-bg); color: var(--risk-unknown); }

/* Aggregate risk callout */
.aggregate {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--bg-muted);
  border-left: 4px solid var(--accent);
  margin: 28px 0;
}
.aggregate__label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.aggregate__value {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.04em;
  padding: 4px 14px;
}
.aggregate__value--LOW     { background: var(--risk-low-bg);     color: var(--risk-low); }
.aggregate__value--MEDIUM  { background: var(--risk-medium-bg);  color: var(--risk-medium); }
.aggregate__value--HIGH    { background: var(--risk-high-bg);    color: var(--risk-high); }
.aggregate__value--SEVERE  { background: var(--risk-severe-bg);  color: var(--risk-severe); }
.aggregate__value--UNKNOWN { background: var(--risk-unknown-bg); color: var(--risk-unknown); }
.aggregate__note { font-size: 14px; color: var(--ink-muted); font-family: var(--sans); }

/* ---------- Evidence tags / footnotes ---------- */
.tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 2px;
  vertical-align: middle;
  margin: 0 4px;
}
.tag--VERIFIED      { background: var(--rel-verified-bg);  color: var(--rel-verified); }
.tag--CLAIMED       { background: var(--rel-claimed-bg);   color: var(--rel-claimed); }
.tag--USER-REPORTED { background: var(--rel-user-bg);      color: var(--rel-user); }
.tag--UNKNOWN       { background: var(--rel-unknown-bg);   color: var(--rel-unknown); }
.tag--SEVERE        { background: var(--risk-severe-bg);   color: var(--risk-severe); }

.fn {
  font-family: var(--sans);
  font-size: 12px;
  vertical-align: super;
  color: var(--accent);
  text-decoration: none;
  padding: 0 1px;
}
.fn:hover { text-decoration: underline; }

.sources {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
}
.sources h2 {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 14px;
}
.sources ol { padding-left: 22px; }
.sources li { margin-bottom: 6px; }
.sources a { color: var(--accent); }

/* ---------- Structured fact tables (License Verification, Domain Intel) ---------- */
.fact-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-family: var(--sans);
  font-size: 14px;
}
.fact-table th,
.fact-table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--rule);
}
.fact-table thead th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  background: transparent;
}
.fact-table td:first-child {
  width: 30%;
  color: var(--ink);
  font-weight: 600;
}
.fact-table tbody tr:last-child td { border-bottom: none; }
.fact-table .fact-ok      { color: var(--rel-verified); font-weight: 600; }
.fact-table .fact-warn    { color: var(--rel-user);     font-weight: 600; }
.fact-table .fact-fail    { color: var(--risk-high);    font-weight: 600; }
.fact-table .fact-unknown { color: var(--ink-soft);     font-weight: 600; font-style: italic; }
@media (max-width: 560px) {
  .fact-table, .fact-table tbody, .fact-table tr, .fact-table td { display: block; width: 100%; }
  .fact-table thead { display: none; }
  .fact-table td { padding: 8px 0; border-bottom: none; }
  .fact-table td:first-child { padding-top: 14px; border-top: 1px solid var(--rule); }
}

/* ---------- Unknowns box ---------- */
.unknowns {
  background: var(--bg-panel);
  border: 1px dashed var(--rule);
  padding: 18px 20px;
  margin: 24px 0;
}
.unknowns h3 {
  margin: 0 0 8px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.unknowns ul { margin: 0; padding-left: 18px; font-size: 15px; }
.unknowns li { margin-bottom: 4px; }

/* ---------- Section card grid (Apple-Privacy-Labels-style scannable cards) ---------- */
.section-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 36px;
}
.section-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-left: 4px solid var(--rule);
  border-radius: 10px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.section-card:hover { box-shadow: 0 4px 14px rgba(46, 42, 85, 0.06); transform: translateY(-1px); }
.section-card--LOW     { border-left-color: var(--risk-low); }
.section-card--MEDIUM  { border-left-color: var(--risk-medium); }
.section-card--HIGH    { border-left-color: var(--risk-high); }
.section-card--SEVERE  { border-left-color: var(--risk-severe-bg); }
.section-card--UNKNOWN { border-left-color: var(--risk-unknown); }

.section-card__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.section-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-muted);
  color: var(--accent);
}
.section-card__icon svg { width: 22px; height: 22px; stroke-width: 1.6; }
.section-card--LOW    .section-card__icon { background: var(--risk-low-bg);     color: var(--risk-low); }
.section-card--MEDIUM .section-card__icon { background: var(--risk-medium-bg);  color: var(--risk-medium); }
.section-card--HIGH   .section-card__icon { background: var(--risk-high-bg);    color: var(--risk-high); }
.section-card--SEVERE .section-card__icon { background: var(--risk-severe-bg);  color: var(--risk-severe); }
.section-card--UNKNOWN .section-card__icon { background: var(--risk-unknown-bg); color: var(--risk-unknown); }

.section-card__titles { flex: 1; min-width: 0; }
.section-card__kicker {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 2px;
  font-weight: 600;
}
.section-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  margin: 0;
  letter-spacing: -0.005em;
  line-height: 1.25;
}
.section-card__tier {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 9px;
  border-radius: 4px;
  align-self: flex-start;
  white-space: nowrap;
}
.section-card__tier--LOW     { background: var(--risk-low-bg);     color: var(--risk-low); }
.section-card__tier--MEDIUM  { background: var(--risk-medium-bg);  color: var(--risk-medium); }
.section-card__tier--HIGH    { background: var(--risk-high-bg);    color: var(--risk-high); }
.section-card__tier--SEVERE  { background: var(--risk-severe-bg);  color: var(--risk-severe); }
.section-card__tier--UNKNOWN { background: var(--risk-unknown-bg); color: var(--risk-unknown); }

.section-card__lead {
  font-family: var(--serif);
  font-size: 15.5px;
  line-height: 1.45;
  margin: 0;
  color: var(--ink);
}
.section-card__facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-muted);
}
.section-card__facts li {
  position: relative;
  padding-left: 16px;
}
.section-card__facts li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.55;
}
.section-card__facts strong { color: var(--ink); font-weight: 600; }

.section-card__details {
  font-family: var(--sans);
  font-size: 13px;
  border-top: 1px dashed var(--rule);
  padding-top: 12px;
  margin-top: 4px;
}
.section-card__details > summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--accent);
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
}
.section-card__details > summary::-webkit-details-marker { display: none; }
.section-card__details > summary::after {
  content: "→";
  font-size: 14px;
  transition: transform 180ms ease;
  display: inline-block;
}
.section-card__details[open] > summary::after { transform: rotate(90deg); }
.section-card__details > summary:hover { text-decoration: underline; }
.section-card__details-body {
  margin-top: 14px;
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.section-card__details-body p { margin: 0 0 10px; }
.section-card__details-body p:last-child { margin-bottom: 0; }
.section-card__details-body .fact-table { font-size: 13px; }

@media (max-width: 760px) {
  .section-grid { grid-template-columns: 1fr; gap: 14px; }
}

/* ---------- Hero card (replaces the old kicker/title/deck/meta + aggregate strip) ---------- */
.hero-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 28px 32px;
  margin: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
.hero-card__left { min-width: 0; }
.hero-card__lead {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.45;
  margin: 0 0 18px;
  font-style: italic;
  color: var(--ink-muted);
}
.hero-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
}
.hero-card__meta strong { color: var(--ink); font-weight: 600; }
.hero-card__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 140px;
}
.hero-card__tier-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero-card__tier {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 8px;
  line-height: 1;
}
.hero-card__tier--LOW     { background: var(--risk-low-bg);     color: var(--risk-low); }
.hero-card__tier--MEDIUM  { background: var(--risk-medium-bg);  color: var(--risk-medium); }
.hero-card__tier--HIGH    { background: var(--risk-high-bg);    color: var(--risk-high); }
.hero-card__tier--SEVERE  { background: var(--risk-severe-bg);  color: var(--risk-severe); }
.hero-card__tier--UNKNOWN { background: var(--risk-unknown-bg); color: var(--risk-unknown); }
.hero-card__tier-note {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-soft);
  text-align: center;
  max-width: 160px;
  line-height: 1.4;
  margin-top: 2px;
}

@media (max-width: 600px) {
  .hero-card { grid-template-columns: 1fr; padding: 22px; }
  .hero-card__right { align-items: flex-start; }
  .hero-card__tier-note { text-align: left; max-width: none; }
}

/* ---------- Compact sources block ---------- */
.sources--compact {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  font-family: var(--sans);
}
.sources--compact > summary {
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sources--compact > summary::-webkit-details-marker { display: none; }
.sources--compact > summary::after {
  content: "▾";
  font-size: 11px;
  transition: transform 180ms ease;
}
.sources--compact[open] > summary::after { transform: rotate(180deg); }
.sources--compact ol { padding-left: 24px; margin-top: 14px; font-size: 13px; line-height: 1.55; }
.sources--compact li { margin-bottom: 7px; color: var(--ink-muted); }
.sources--compact a { color: var(--accent); }

/* ---------- Gated state — locked content + sticky CTA + signup modal ---------- */
body.locked .locked-content,
body.locked .section-card__lead,
body.locked .section-card__facts,
body.locked .section-card__details,
body.locked .unknowns,
body.locked .sources--compact {
  filter: blur(7px);
  pointer-events: none;
  user-select: none;
  opacity: 0.85;
}
body.locked { padding-bottom: 88px; }
body.gate-modal-open { overflow: hidden; }

.gate-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: var(--bg-panel);
  padding: 14px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 22px;
  box-shadow: 0 -4px 18px rgba(20, 18, 40, 0.12);
  z-index: 100;
  font-family: var(--sans);
}
body.locked .gate-bar { display: flex; }
.gate-bar__msg { font-size: 14px; line-height: 1.4; max-width: 480px; }
.gate-bar__msg strong { font-weight: 700; }
.gate-bar__cta {
  background: var(--bg-panel);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--sans);
  letter-spacing: 0.01em;
}
.gate-bar__cta:hover { background: var(--bg-muted); }
@media (max-width: 640px) {
  .gate-bar { flex-direction: column; gap: 10px; padding: 14px; }
  .gate-bar__msg { text-align: center; font-size: 13px; }
  body.locked { padding-bottom: 140px; }
}

.gate-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 40, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.gate-modal.gate-modal--open { display: flex; }
.gate-modal__dialog {
  background: var(--bg-panel);
  border-radius: 14px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  position: relative;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  font-family: var(--sans);
  margin: auto;
}
.gate-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink-soft);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.gate-modal__close:hover { background: var(--bg-muted); color: var(--ink); }
.gate-modal__kicker {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 6px;
}
.gate-modal__title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.gate-modal__lead {
  margin: 0 0 22px;
  color: var(--ink-muted);
  font-size: 13.5px;
  line-height: 1.5;
}
.gate-modal__field {
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.gate-modal__field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.gate-modal__field input[type="email"],
.gate-modal__field input[type="tel"] {
  font-family: var(--sans);
  font-size: 14px;
  padding: 11px 12px;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color 120ms ease;
}
.gate-modal__field input:focus { border-color: var(--accent); }
.gate-modal__field--hint {
  font-size: 11.5px;
  color: var(--ink-soft);
  margin-top: -2px;
}
.gate-modal__consents {
  margin: 18px 0 22px;
  padding: 14px 16px;
  background: var(--bg-muted);
  border-radius: 8px;
}
.gate-modal__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--ink-muted);
  margin-bottom: 10px;
}
.gate-modal__consent:last-child { margin-bottom: 0; }
.gate-modal__consent input[type="checkbox"] {
  margin: 2px 0 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.gate-modal__consent label { cursor: pointer; color: var(--ink-muted); }
.gate-modal__submit {
  background: var(--accent);
  color: var(--bg-panel);
  border: none;
  padding: 13px 18px;
  width: 100%;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 120ms ease;
}
.gate-modal__submit:hover { background: #1c1840; }
.gate-modal__submit:disabled { opacity: 0.55; cursor: not-allowed; }
.gate-modal__footnote {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  text-align: center;
}
.gate-modal__footnote a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.gate-modal__status {
  margin-top: 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  display: none;
}
.gate-modal__status--success { background: var(--rel-verified-bg); color: var(--rel-verified); display: block; }
.gate-modal__status--error   { background: var(--risk-high-bg);    color: var(--risk-high);    display: block; }

/* ---------- Notice banner (mission / not-a-recommendation) ---------- */
.notice {
  background: var(--bg-muted);
  border-top: 2px solid var(--accent);
  padding: 16px 20px;
  margin: 40px 0;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
}
.notice strong { font-weight: 700; }

/* ---------- Landing hero ---------- */
.hero { padding: 88px 0 56px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  max-width: 14ch;
}
.hero__lede {
  font-size: 21px;
  line-height: 1.45;
  color: var(--ink-muted);
  max-width: 44ch;
  margin: 0 0 28px;
}
.hero__cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--bg-panel);
  background: var(--accent);
  padding: 14px 22px;
  text-decoration: none;
  border-radius: 6px;
}
.hero__cta:hover { background: #1c1840; }
.hero__cta--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  margin-left: 8px;
}

/* Hero search bar — input + submit, single rounded pill */
.hero__search {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 2px 8px rgba(46, 42, 85, 0.04);
  margin: 0 0 14px;
}
.hero__search input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 15.5px;
  padding: 12px 14px;
  outline: none;
  color: var(--ink);
  min-width: 0;
}
.hero__search input::placeholder { color: var(--ink-soft); }
.hero__search button {
  background: var(--accent);
  color: var(--bg-panel);
  border: none;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14.5px;
  padding: 0 22px;
  border-radius: 8px;
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero__search button:hover { background: #1c1840; }
.hero__hint {
  margin: 0 0 36px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 560px;
}

/* Stats row — 4 cards under the hero */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 0 64px;
}
.stat-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 10px;
  padding: 22px 20px 18px;
}
.stat-card__num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--accent);
}
.stat-card__label {
  margin: 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink-muted);
}
@media (max-width: 860px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 460px) {
  .stats-row { grid-template-columns: 1fr; }
}

/* CTA card — pre-footer call to action */
.cta-card {
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
  padding: 32px 36px;
  margin: 48px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}
.cta-card__title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 10px;
  max-width: 22ch;
}
.cta-card__lede {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-muted);
  max-width: 56ch;
}
a.cta-card__btn,
.cta-card__btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bg-panel);
  background: var(--accent);
  padding: 14px 26px;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  border: none;
}
a.cta-card__btn:hover,
.cta-card__btn:hover { background: #1c1840; color: var(--bg-panel); text-decoration: none; }
@media (max-width: 700px) {
  .cta-card { grid-template-columns: 1fr; padding: 26px; }
  .cta-card__title { font-size: 24px; }
}

/* Callout quote — for the trust-building copy rule */
.callout-quote {
  background: var(--bg-muted);
  border-left: 3px solid var(--accent);
  padding: 18px 22px;
  margin: 28px 0;
  border-radius: 0 6px 6px 0;
}
.callout-quote__label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 6px;
}
.callout-quote__body {
  margin: 0;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--rule);
  padding: 40px 0 44px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
}
.footer__cols {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 32px;
  margin: 0 0 28px;
}
.footer__col h4 {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 10px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin: 0 0 6px; }
.footer__col a { color: var(--ink-muted); text-decoration: none; }
.footer__col a:hover { text-decoration: underline; color: var(--ink); }
.footer__brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin: 0 0 6px;
  display: block;
  text-decoration: none;
  letter-spacing: -0.005em;
}
.footer__tagline {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12.5px;
  line-height: 1.5;
  max-width: 24ch;
}
.footer__disclaimer-panel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg-panel);
  border: 1px solid var(--rule);
  margin: 0 0 18px;
}
.footer__disclaimer-tag {
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 9px;
  border: 1px solid var(--ink-muted);
  color: var(--ink);
  white-space: nowrap;
  align-self: flex-start;
}
.footer__disclaimer-body {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12.5px;
  line-height: 1.5;
}
.footer__meta {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__meta-right { color: var(--ink-soft); }

@media (max-width: 760px) {
  .footer__cols { grid-template-columns: 1fr 1fr; row-gap: 28px; }
}
@media (max-width: 460px) {
  .footer__cols { grid-template-columns: 1fr; }
  .footer__disclaimer-panel { flex-direction: column; }
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  body { font-size: 17px; }
  .article__title { font-size: 32px; }
  .hero__title { font-size: 38px; }
  .hero__lede { font-size: 18px; }
  .topbar__nav a { margin-left: 14px; }
  .risk-grid { grid-template-columns: repeat(2, 1fr); }
}
