/* ─────────────────────────────────────────────────────────────────────────
   Football Intelligence — Static-page styling (v2 parity)

   Shared design layer for the standalone HTML pages served outside the SPA:
     · /methodology
     · /value-betting-guide
     · /faq
     · /privacy_policy.html
     · /terms_of_service.html

   Tokens, header strip, footer, typography, cards, tables, and the small set
   of content blocks (formula / warn / info / TOC / details / steps) are all
   here. Each page only carries page-specific tweaks inline. Mirrors the v2
   SPA visual language (design-system.css A1 palette + Inter + 8px grid +
   single mint accent). No frameworks, no build step.
   ───────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.bunny.net/css?family=inter:400,500,600,700,800&display=swap');

/* === Tokens (mirror of design-system.css A1) ============================= */

:root {
  --bg: #060a0f;
  --surface-1: #0b1118;
  --surface-2: #101820;
  --surface-3: #141e28;
  --border: #1a2535;
  --border-strong: #243348;
  --divider: #131c26;

  --text-primary: #f3f4f5;
  --text-secondary: #c8d8e4;
  --text-tertiary: #7a96a8;
  --text-disabled: #3d5468;

  --accent: #00e5a0;
  --accent-strong: #00b87a;
  --accent-soft: rgba(0, 229, 160, 0.12);
  --accent-fg: #000;

  --warn: #ffb800;
  --warn-soft: rgba(255, 184, 0, 0.10);
  --warn-border: rgba(255, 184, 0, 0.30);

  --danger: #ff5577;
  --danger-soft: rgba(255, 85, 119, 0.08);
  --danger-border: rgba(255, 85, 119, 0.25);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --text-display: 2.25rem;
  --text-h1: 1.5rem;
  --text-h2: 1.125rem;
  --text-body: 0.875rem;
  --text-small: 0.75rem;

  --leading-tight: 1.15;
  --leading-snug: 1.35;
  --leading-normal: 1.55;
  --leading-relaxed: 1.7;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.25), 0 1px 3px rgba(0,0,0,0.18);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.24);

  --duration-fast: 150ms;
  --duration-base: 200ms;
  --easing-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* === Reset & base ========================================================= */

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  position: relative;
  min-height: 100vh;
}

/* Subtle atmospheric backdrop — same idea as .app-shell::before in the SPA.
   Mounted on body::before with its own stacking context. Static, no anim. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: var(--bg);
  background-image:
    radial-gradient(55% 45% at 12% -5%,  rgba(0, 229, 160, 0.055) 0%, transparent 60%),
    radial-gradient(50% 45% at 105% 108%, rgba(0, 229, 160, 0.040) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M-1 21 L21 -1 M9 41 L41 9' stroke='%23ffffff' stroke-opacity='0.018' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: auto, auto, 40px 40px;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--duration-fast) var(--easing-out);
}
a:hover { color: var(--accent-strong); text-decoration: underline; }

strong, b { color: var(--text-primary); font-weight: 600; }
em, i { color: var(--text-secondary); }

/* Tabular numbers for stats / formulas. */
.tnum,
code,
.formula-box,
table td.num,
.lambda,
.pct {
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}

/* === Header strip (mirrors v2 .app-header) =============================== */

.lp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 17, 24, 0.85);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.lp-header__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.5rem;
}
.lp-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
}
.lp-header__brand:hover { text-decoration: none; color: var(--text-primary); }
.lp-header__brand img {
  width: 24px;
  height: 24px;
  display: block;
}
.lp-header__crumb {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  font-weight: 500;
}
.lp-header__crumb::before {
  content: "/";
  color: var(--text-disabled);
  margin-right: 0.5rem;
  font-weight: 400;
}
.lp-header__back {
  margin-left: auto;
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.lp-header__back:hover { color: var(--accent); text-decoration: none; }
.lp-header__back-arrow {
  font-size: 0.95rem;
  line-height: 1;
  transition: transform var(--duration-fast) var(--easing-out);
}
.lp-header__back:hover .lp-header__back-arrow { transform: translateX(-2px); }

@media (prefers-reduced-motion: reduce) {
  .lp-header__back-arrow,
  a { transition: none; }
}

/* === Page wrap ============================================================ */

.lp-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}
.lp-wrap--wide { max-width: 880px; }

/* === Page meta band (eyebrow + title + subtitle) ========================= */

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 229, 160, 0.25);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}
.lp-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

h1.lp-title {
  font-size: var(--text-h1);
  font-weight: 700;
  color: var(--text-primary);
  line-height: var(--leading-tight);
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
@media (min-width: 640px) {
  h1.lp-title { font-size: 1.875rem; }
}

.lp-subtitle {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  margin: 0 0 2rem;
}
.lp-subtitle .dot { color: var(--text-disabled); padding: 0 0.4rem; }

/* === Typography (article body) ============================================ */

.lp-wrap h2 {
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 0.75rem;
  line-height: var(--leading-snug);
  letter-spacing: -0.005em;
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
}
.lp-wrap h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 0.95em;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
  transform: translateY(0.08em);
}
.lp-wrap h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 0.5rem;
  line-height: var(--leading-snug);
}
.lp-wrap p {
  margin: 0 0 0.875rem;
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
}
.lp-wrap ul,
.lp-wrap ol {
  margin: 0.5rem 0 1.25rem 1.25rem;
  padding: 0;
  color: var(--text-secondary);
  font-size: var(--text-body);
}
.lp-wrap li {
  margin-bottom: 0.4rem;
  line-height: var(--leading-relaxed);
}
.lp-wrap li::marker { color: var(--text-tertiary); }

code, kbd, samp {
  background: var(--surface-2);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 0.85em;
  border: 1px solid var(--border);
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* === Content blocks ====================================================== */

.lp-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem;
  margin: 1rem 0;
}

.info-box {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin: 1rem 0;
}
.info-box p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: var(--leading-relaxed);
}

.warn-box {
  background: var(--warn-soft);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin: 1rem 0;
}
.warn-box p {
  margin: 0;
  color: var(--warn);
  font-size: 0.8125rem;
  line-height: var(--leading-relaxed);
}
.warn-box strong { color: var(--warn); }
.warn-box a { color: var(--warn); text-decoration: underline; }

.danger-box {
  background: var(--danger-soft);
  border: 1px solid var(--danger-border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin: 1rem 0;
  color: var(--danger);
  font-size: 0.8125rem;
  line-height: var(--leading-relaxed);
}
.danger-box strong { color: var(--danger); }

.formula-box {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  margin: 1rem 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.85;
  overflow-x: auto;
  white-space: pre-wrap;
}
.formula-box strong { color: var(--accent); font-weight: 600; }

/* === Table of contents =================================================== */

.lp-toc {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.125rem;
  margin-bottom: 2rem;
}
.lp-toc__title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 0.625rem;
}
.lp-toc ol {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}
.lp-toc li { margin-bottom: 0.25rem; }
.lp-toc a {
  color: var(--text-secondary);
  text-decoration: none;
}
.lp-toc a:hover {
  color: var(--accent);
  text-decoration: none;
}

/* === Tables =============================================================== */

.lp-wrap table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.8125rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lp-wrap th {
  background: var(--surface-2);
  color: var(--text-tertiary);
  padding: 0.625rem 0.875rem;
  text-align: left;
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
}
.lp-wrap td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--divider);
  color: var(--text-secondary);
  vertical-align: top;
}
.lp-wrap tr:last-child td { border-bottom: none; }
.lp-wrap td:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* === Step list (numbered, OneFootball-row vibe) ========================== */

.step-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  counter-reset: lp-step;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.step-list li {
  counter-increment: lp-step;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  margin: 0;
  transition: border-color var(--duration-fast) var(--easing-out);
}
.step-list li:hover { border-color: var(--border-strong); }
.step-list li::before {
  content: counter(lp-step);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-fg);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.step-list .step-title {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}
.step-list .step-body {
  flex: 1;
}
.step-list .step-body p {
  margin: 0;
  font-size: 0.825rem;
  color: var(--text-tertiary);
  line-height: var(--leading-snug);
}

@media (prefers-reduced-motion: reduce) {
  .step-list li { transition: none; }
}

/* === <details> accordion (FAQ) =========================================== */

.lp-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-accordion details {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--duration-fast) var(--easing-out);
}
.lp-accordion details[open] {
  border-color: var(--border-strong);
}
.lp-accordion summary {
  padding: 0.875rem 1.125rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  user-select: none;
}
.lp-accordion summary::-webkit-details-marker { display: none; }
.lp-accordion summary::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--text-tertiary);
  border-bottom: 1.5px solid var(--text-tertiary);
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--duration-base) var(--easing-out);
}
.lp-accordion details[open] summary::after {
  transform: rotate(-135deg) translateY(-2px);
  border-color: var(--accent);
}
.lp-accordion summary:hover { color: var(--accent); }
.lp-accordion .answer {
  padding: 0 1.125rem 1rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: var(--leading-relaxed);
  border-top: 1px solid var(--divider);
  padding-top: 0.875rem;
}
.lp-accordion .answer p:last-child { margin-bottom: 0; }
.lp-accordion .answer code { font-size: 0.78em; }

@media (prefers-reduced-motion: reduce) {
  .lp-accordion details,
  .lp-accordion summary::after { transition: none; }
}

/* === CTA card ============================================================ */

.cta-card {
  background: linear-gradient(135deg, rgba(0, 229, 160, 0.06), rgba(0, 229, 160, 0.02));
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.cta-card h3 {
  margin: 0 0 0.4rem;
  color: var(--text-primary);
  font-size: 1.0625rem;
  font-weight: 700;
}
.cta-card p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: var(--accent-fg);
  font-weight: 700;
  font-size: 0.8125rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--duration-fast) var(--easing-out), transform var(--duration-fast) var(--easing-out);
}
.cta-btn:hover {
  background: var(--accent-strong);
  text-decoration: none;
  color: var(--accent-fg);
  transform: translateY(-1px);
}
.cta-note {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin: 0.75rem 0 0;
}
.cta-note a { color: var(--text-tertiary); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .cta-btn { transition: none; }
  .cta-btn:hover { transform: none; }
}

/* === Risk-tier chips (used by methodology + FAQ) ========================== */

.risk-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid;
  background: var(--surface-2);
}
.risk-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.risk-chip.low { color: #7fbfa0; border-color: rgba(127, 191, 160, 0.4); }
.risk-chip.med { color: #d9b27a; border-color: rgba(217, 178, 122, 0.4); }
.risk-chip.high { color: #a89bc4; border-color: rgba(168, 155, 196, 0.4); }
.risk-chip.reject { color: var(--text-tertiary); border-color: var(--border-strong); }

/* === Language toggle (legal pages) ======================================= */

.lang-toggle {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.lang-btn {
  font-family: inherit;
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--duration-fast) var(--easing-out);
}
.lang-btn:hover {
  color: var(--text-secondary);
  border-color: var(--border-strong);
}
.lang-btn.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.lang-section { display: none; }
.lang-section.active { display: block; }

@media (prefers-reduced-motion: reduce) {
  .lang-btn { transition: none; }
}

/* === Footer (YMYL responsible-gambling disclaimer) ======================== */

.lp-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: rgba(11, 17, 24, 0.6);
}
.lp-footer__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: var(--leading-relaxed);
}
.lp-footer__age {
  color: var(--warn);
  font-weight: 700;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lp-footer__body {
  color: var(--text-tertiary);
  max-width: 600px;
  margin: 0 auto;
}
.lp-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.25rem 1rem;
  color: var(--text-disabled);
}
.lp-footer__links a {
  color: var(--text-tertiary);
}
.lp-footer__links a:hover { color: var(--accent); }
.lp-footer__copy {
  color: var(--text-disabled);
  font-size: 0.6875rem;
}
.lp-footer__copy a { color: var(--text-tertiary); }

/* === Live widget (methodology + value-betting-guide) ===================== */

.vbw {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 1.5rem 2.5rem;
}
.vbw__header {
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
  margin-bottom: 1rem;
}
.vbw__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 0.25rem;
}
.vbw__sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin: 0 0 1rem;
}
.vbw__sub a { color: var(--text-secondary); }
.vbw__sub a:hover { color: var(--accent); }
.vbw__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.625rem;
}
.vbw__placeholder {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem;
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-align: center;
}
.vbw__card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: border-color var(--duration-fast) var(--easing-out);
}
.vbw__card:hover { border-color: var(--border-strong); }
.vbw__meta {
  font-size: 0.625rem;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}
.vbw__match {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: var(--leading-snug);
}
.vbw__probs {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
}
.vbw__prob {
  font-size: 0.6875rem;
  font-weight: 600;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.1rem 0.45rem;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
}
.vbw__prob.fav {
  color: var(--accent);
  border-color: rgba(0, 229, 160, 0.3);
  background: var(--accent-soft);
}
.vbw__lambda {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}
.vbw__lambda strong { color: var(--text-secondary); font-weight: 600; }
.vbw__cta {
  font-size: 0.75rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.15rem;
}
.vbw__cta:hover { color: var(--accent-strong); }
.vbw__neutral {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.2rem 0.5rem;
}
.vbw__footnote {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  margin: 0.75rem 0 0;
}
.vbw__footnote a { color: var(--text-secondary); }

@media (prefers-reduced-motion: reduce) {
  .vbw__card { transition: none; }
}

/* === Plan callout (terms_of_service) ====================================== */

.plan-card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.875rem 1.125rem;
  margin: 0.5rem 0 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.plan-card strong { color: var(--accent); }
.plan-card.pro strong { color: var(--text-primary); }
.plan-card.elite strong { color: var(--warn); }

/* === Related links footer band =========================================== */

.lp-related {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.lp-related__title {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 0.625rem;
  font-weight: 600;
}
.lp-related a {
  display: inline-block;
  margin: 0 1rem 0.4rem 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}
.lp-related a:hover { color: var(--accent); }

/* === Responsive ========================================================== */

@media (max-width: 600px) {
  .lp-header__inner { padding: 0.625rem 1rem; gap: 0.625rem; }
  .lp-header__crumb { display: none; }
  .lp-wrap { padding: 1.75rem 1.125rem 3rem; }
  h1.lp-title { font-size: 1.375rem; }
  .lp-wrap h2 { font-size: 1.0625rem; margin-top: 2rem; }
  .cta-card { padding: 1.25rem 1rem; }
  .lp-footer__inner { padding: 1.5rem 1.125rem 2rem; }
  .vbw { padding: 0 1.125rem 2rem; }
  /* Tables overflow horizontally on narrow phones rather than forcing the
     whole page to scroll. Each table becomes its own horizontally-scrollable
     pane with -webkit-overflow-scrolling for iOS momentum. */
  .lp-wrap table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .lp-wrap table th,
  .lp-wrap table td {
    white-space: normal;
  }
}
