/* ==========================================================================
   PlayBonusGuide — Design System
   Mobile-first. Single stylesheet. No external fonts or libraries.
   System font stack: performance + zero CDN dependency.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg: #F7F6F3;
  --surface: #FFFFFF;
  --ink: #101828;
  --ink-soft: #475467;
  --brand: #0B1F3A;
  --accent: #16A34A;
  --accent-dark: #15803D;
  --gold: #B45309;
  --gold-bg: #FEF3C7;
  --danger: #DC2626;
  --danger-bg: #FEF2F2;
  --border: #E7E5E0;
  --radius-card: 12px;
  --radius-btn: 8px;
  --shadow: 0 1px 3px rgba(16, 24, 40, .08);
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  --container: 1120px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

img, svg { vertical-align: middle; }

a { color: var(--accent-dark); }

h1, h2, h3, h4 { line-height: 1.25; color: var(--brand); }

p { margin: 0 0 1em; }

/* ---------- Utilities ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

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

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.text-link:hover { color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); color: #fff; }
.btn--navy { background: var(--brand); color: #fff; }
.btn--navy:hover { background: #16305a; color: #fff; }
.btn--ghost { background: transparent; border-color: var(--border); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink-soft); }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-btn);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
  border: 1px solid transparent;
}
.badge--active { background: #EAF7EE; color: var(--accent-dark); }
.badge--verified { background: #fff; border-color: var(--accent); color: var(--accent-dark); }
.badge--code { background: var(--brand); color: #fff; }
.badge--no-code { background: #F2F4F7; color: var(--ink-soft); }
.badge--sponsored { background: var(--gold-bg); color: var(--gold); }
.badge--expired { background: var(--danger-bg); color: var(--danger); }

/* ---------- Bonus Value Score badge ---------- */
.score-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  flex: 0 0 auto;
}
.score-badge__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
}
.score-badge__value { font-size: 1.3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.score-badge__max { font-size: .72rem; font-weight: 600; color: var(--ink-soft); }
.score-badge__label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  max-width: 96px;
  line-height: 1.3;
}
.score-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: var(--gold-bg);
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: var(--radius-btn);
  padding: 4px 10px;
  font-weight: 800;
  font-size: .95rem;
  white-space: nowrap;
}
.score-chip small { font-size: .7rem; font-weight: 600; color: var(--ink-soft); }

/* ---------- Header ---------- */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding: 10px 16px;
}
.wordmark {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -.01em;
  text-decoration: none;
  color: var(--brand);
  white-space: nowrap;
}
.wordmark__accent { color: var(--accent); }
.wordmark--footer { color: #fff; }
.wordmark--footer .wordmark__accent { color: #4ADE80; }

.site-header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  order: 2;
}
.site-nav { order: 3; }

.country-picker { display: flex; align-items: center; gap: 6px; }
.country-picker__label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.country-picker__select {
  min-height: 44px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--ink);
}

.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  color: var(--brand);
}

/* Header search */
.search { position: relative; }
.search-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  cursor: pointer;
  color: var(--brand);
}
.search-toggle:hover, .nav-toggle:hover { border-color: var(--ink-soft); }
.search-box {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: min(340px, 86vw);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 60;
}
.search-box--static {
  position: static;
  width: 100%;
  max-width: 560px;
}
.search-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  font-family: var(--font);
  font-size: 1rem;
  color: var(--ink);
}
.search-results {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.search-results__link {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
}
.search-results__link:hover, .search-results__link:focus { background: var(--bg); }
.search-results__title { display: block; font-weight: 600; font-size: .9rem; }
.search-results__meta { display: block; font-size: .78rem; color: var(--ink-soft); }

/* Header CTA */
.site-header__cta { padding: 8px 14px; min-height: 44px; font-size: .9rem; }

/* Nav */
.site-nav {
  display: none;
  flex-basis: 100%;
  width: 100%;
}
.site-nav.is-open {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 8px;
  margin-bottom: 8px;
}
.site-nav__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 2px; }
.site-nav__link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius-btn);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
}
.site-nav__link:hover { background: var(--bg); }
.site-nav__link.is-active { color: var(--accent-dark); background: #EAF7EE; }

@media (min-width: 768px) {
  .site-header__inner { flex-wrap: nowrap; padding: 12px 16px; }
  .nav-toggle { display: none; }
  .site-nav { display: block; width: auto; flex-basis: auto; order: 2; }
  .site-header__tools { order: 3; }
  .site-nav__list { display: flex; gap: 2px; }
  .site-nav__link { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .site-header__cta { display: none; }
  .country-picker__label { display: none; }
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: .85rem;
  color: var(--ink-soft);
}
.breadcrumbs__item + .breadcrumbs__item::before {
  content: "/";
  margin: 0 8px;
  color: var(--ink-soft);
}
.breadcrumbs__item a { color: var(--brand); text-decoration: none; }
.breadcrumbs__item a:hover { text-decoration: underline; }

/* ---------- Hero ---------- */
.hero {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 32px 0 28px;
}
.hero__title {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  margin: 0 0 12px;
  max-width: 26ch;
}
.hero__lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0 0 20px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 16px;
}
.freshness-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Sections ---------- */
.section { padding: 40px 0; }
.section--tight { padding: 28px 0; }
.section__title { font-size: 1.45rem; margin: 0 0 6px; }
.section__intro { color: var(--ink-soft); margin: 0 0 20px; max-width: 72ch; }
.section__more { margin-top: 20px; }

/* ---------- Disclosure banner ---------- */
.disclosure-banner {
  background: #F0F4F8;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 16px;
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Bonus card ---------- */
.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.bonus-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bonus-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.bonus-card__operator {
  margin: 0 0 4px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.bonus-card__title { margin: 0; font-size: 1.1rem; }
.bonus-card__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.code-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border: 1.5px dashed var(--ink-soft);
  border-radius: var(--radius-btn);
  background: #FAFAF8;
  padding: 10px 14px;
}
.code-box__label { font-size: .78rem; font-weight: 600; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .04em; }
.code-box__code { font-family: var(--mono); font-size: 1.05rem; font-weight: 700; color: var(--brand); }
.bonus-card__meta { margin: 0; display: grid; gap: 6px; }
.meta-row { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; }
.meta-row dt { color: var(--ink-soft); }
.meta-row dd { margin: 0; font-weight: 600; text-align: right; }
.last-checked {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-soft);
  margin: 0;
}
.last-checked strong { color: var(--ink); }
.bonus-card__verdict { margin: 0; font-size: .95rem; }
.bonus-card__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: auto;
}
.bonus-card__terms-link { color: var(--brand); font-weight: 600; font-size: .9rem; }
.bonus-card--expired { opacity: .85; }
.bonus-card--expired .bonus-card__title { color: var(--ink-soft); }

/* ---------- Compact offer rows / code list ---------- */
.offer-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.offer-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 14px 16px;
}
.offer-row__main { flex: 1 1 220px; min-width: 0; }
.offer-row__operator {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.offer-row__title { font-weight: 600; color: var(--brand); }
.offer-row__link { font-size: .9rem; font-weight: 600; white-space: nowrap; }

.code-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.code-list__item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 12px 16px;
}
.code-list__operator { font-weight: 700; color: var(--brand); }
.code-list__code {
  font-family: var(--mono);
  font-weight: 700;
  border: 1.5px dashed var(--ink-soft);
  border-radius: var(--radius-btn);
  background: #FAFAF8;
  padding: 4px 10px;
  font-size: .95rem;
}
.code-list__meta { font-size: .8rem; color: var(--ink-soft); }

/* ---------- Comparison table ---------- */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.cmp-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 760px;
  font-size: .9rem;
}
.cmp-table th, .cmp-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cmp-table thead th {
  background: var(--brand);
  color: #fff;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}
.cmp-table tbody tr:last-child td { border-bottom: 0; }
.cmp-table__offer { white-space: normal; min-width: 180px; font-weight: 600; color: var(--brand); }
.cmp-table__rank { font-weight: 800; color: var(--ink-soft); }
.cmp-table .btn { min-height: 40px; padding: 8px 14px; font-size: .85rem; white-space: nowrap; }

/* ---------- Fast answer box ---------- */
.fast-answer {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}
.fast-answer__question {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
}
.fast-answer p:last-child { margin-bottom: 0; }
.fast-answer p { color: var(--ink-soft); }

/* ---------- Claim steps ---------- */
.claim-steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; counter-reset: step; }
.claim-steps__item { display: flex; gap: 14px; align-items: flex-start; }
.claim-steps__item::before {
  counter-increment: step;
  content: counter(step);
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
}
.claim-steps__title { margin: 0 0 2px; font-weight: 700; color: var(--brand); }
.claim-steps__body { margin: 0; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Terms explained ---------- */
.terms-explained {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 20px;
}
.terms-explained__title { margin: 0 0 10px; font-size: 1.1rem; }
.terms-explained__list { margin: 0; }
.terms-explained__row {
  display: grid;
  gap: 2px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.terms-explained__row:last-child { border-bottom: 0; }
.terms-explained__row dt { font-weight: 700; color: var(--brand); }
.terms-explained__row dd { margin: 0; color: var(--ink-soft); font-size: .95rem; }
@media (min-width: 768px) {
  .terms-explained__row { grid-template-columns: 220px 1fr; gap: 16px; }
}

/* ---------- Warning box ---------- */
.warning-box {
  background: var(--danger-bg);
  border: 1px solid #FECACA;
  border-left: 4px solid var(--danger);
  border-radius: var(--radius-card);
  padding: 16px 18px;
}
.warning-box__title { margin: 0 0 6px; font-weight: 700; color: var(--danger); }
.warning-box p { margin: 0 0 .6em; color: #7F1D1D; font-size: .95rem; }
.warning-box p:last-child { margin-bottom: 0; }

/* ---------- FAQ accordion ---------- */
.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq__heading { margin: 0; }
.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 16px 18px;
  background: none;
  border: 0;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  text-align: left;
  cursor: pointer;
}
.faq__chevron { flex: 0 0 auto; transition: transform .2s ease; }
.faq__question[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); }
.faq__panel { padding: 0 18px 16px; color: var(--ink-soft); font-size: .95rem; }
.faq__panel p { margin: 0 0 .8em; }
.faq__panel p:last-child { margin-bottom: 0; }

/* ---------- Filter bar ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 16px;
  margin: 0 0 20px;
}
.filter-bar__field { display: grid; gap: 4px; flex: 1 1 150px; min-width: 140px; }
.filter-bar__field label { font-size: .8rem; font-weight: 600; color: var(--ink-soft); }
.filter-bar__field select {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: #fff;
  font-family: var(--font);
  font-size: .9rem;
  color: var(--ink);
}
.filter-bar__count { flex-basis: 100%; margin: 4px 0 0; font-size: .85rem; color: var(--ink-soft); }

/* ---------- Category & guide cards ---------- */
.category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }

.cat-card, .guide-card, .operator-card {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease;
}
.cat-card:hover, .guide-card:hover { border-color: var(--brand); }
.cat-card__title, .guide-card__title { margin: 0 0 6px; font-size: 1.05rem; color: var(--brand); }
.cat-card__desc, .guide-card__desc { margin: 0; font-size: .9rem; color: var(--ink-soft); }

.operator-card { display: flex; flex-direction: column; gap: 10px; }
.operator-card__name { margin: 0; font-size: 1.05rem; color: var(--brand); }
.operator-card__verticals { display: flex; flex-wrap: wrap; gap: 6px; }
.operator-card__desc { margin: 0; font-size: .9rem; color: var(--ink-soft); }
.operator-card__link { font-weight: 600; font-size: .9rem; margin-top: auto; }

/* ---------- Factor list (score section) ---------- */
.factor-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.factor-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font-size: .92rem;
}
@media (min-width: 768px) { .factor-list { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Responsible gambling note ---------- */
.rg-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  font-size: .95rem;
  color: var(--ink-soft);
}
.rg-note strong { color: var(--brand); }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta { display: none; }
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: var(--brand);
    color: #fff;
    padding: 8px 12px;
    transform: translateY(110%);
    transition: transform .25s ease;
  }
  .sticky-cta.is-visible { transform: translateY(0); }
  body.has-sticky-cta { padding-bottom: 84px; }
}
.sticky-cta__inner { display: flex; align-items: center; gap: 10px; }
.sticky-cta__text { margin: 0; font-size: .82rem; flex: 1 1 auto; }
.sticky-cta__btn { min-height: 44px; padding: 8px 14px; font-size: .85rem; white-space: nowrap; }
.sticky-cta__close {
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

/* ---------- Long-form prose (added for the guides & legal page set) ----------
   Article/legal body copy only: comfortable measure, heading rhythm, list spacing.
   Component classes (cards, tables, boxes) are unchanged and reused inside .prose. */
.prose { max-width: 76ch; }
.prose > h2 { font-size: 1.35rem; margin: 2em 0 .5em; }
.prose > h2:first-child { margin-top: 0; }
.prose > h3 { font-size: 1.08rem; margin: 1.6em 0 .4em; }
.prose ul, .prose ol { margin: 0 0 1em; padding-left: 1.4em; }
.prose li { margin-bottom: .4em; }
.prose li > ul { margin-top: .4em; }
.prose .table-scroll, .prose .terms-explained, .prose .warning-box,
.prose .rg-note, .prose .claim-steps, .prose .factor-list { margin: 0 0 1.4em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brand);
  color: #D7DEEA;
  margin-top: 48px;
}
.site-footer__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  padding: 40px 0 28px;
}
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .site-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr; } }
.site-footer__blurb { font-size: .9rem; max-width: 38ch; margin: 12px 0 0; }
.site-footer__title {
  margin: 0 0 10px;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff;
}
.site-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: .9rem; }
.site-footer a { color: #D7DEEA; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding: 18px 0 26px;
  display: grid;
  gap: 8px;
  font-size: .85rem;
}
.site-footer__legal p { margin: 0; }

/* ------------------------------------------------------------------
   /go/ placeholder pages — verified-link interstitial
------------------------------------------------------------------ */
.go-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.go-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(16, 24, 40, .08);
  max-width: 520px;
  width: 100%;
  padding: 32px 28px;
  text-align: center;
}
.go-note {
  margin: 20px 0 0;
  font-size: .8rem;
  color: var(--ink-soft);
}
