/* ============================================================================
   Axlura — Design System  (Light & clean)
   Single source of truth for the marketing site + shared components.
   Load AFTER the Google-Fonts link, BEFORE any page-specific CSS.
   ========================================================================== */

/* ---- Tokens ---------------------------------------------------------------- */
:root {
  /* Surfaces */
  --bg:            #fbfbfd;
  --surface:       #ffffff;
  --surface-2:     #f5f6f9;
  --surface-3:     #eceef3;
  --border:        #e4e6ec;
  --border-strong: #d3d7e0;

  /* Text (all pairs meet WCAG AA on --bg / --surface) */
  --text:   #0f172a;
  --text-2: #47506a;
  --text-3: #616c86;
  --text-4: #8a93a8;

  /* Brand — indigo / blue */
  --brand:       #4f46e5;
  --brand-2:     #6366f1;
  --brand-ink:   #3730a3;
  --brand-tint:  #eef2ff;
  --brand-tint2: #e0e7ff;
  --accent:      #2563eb;
  --on-brand:    #ffffff;

  /* Status */
  --ok: #15803d;        --ok-tint: #f0fdf4;   --ok-border: #bbf7d0;
  --warn: #b45309;      --warn-tint: #fffbeb; --warn-border: #fde68a;
  --danger: #dc2626;    --danger-tint: #fef2f2; --danger-border: #fecaca;

  /* Radius */
  --r-xs: 6px; --r-sm: 8px; --r: 12px; --r-lg: 16px; --r-xl: 22px; --r-full: 999px;

  /* Shadows — soft, layered */
  --shadow-xs: 0 1px 2px rgba(15,23,42,.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,.07), 0 1px 2px rgba(15,23,42,.04);
  --shadow:    0 6px 18px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.04);
  --shadow-lg: 0 16px 40px rgba(15,23,42,.10), 0 6px 12px rgba(15,23,42,.05);
  --shadow-xl: 0 30px 70px rgba(15,23,42,.14);
  --ring: 0 0 0 3px rgba(79,70,229,.22);

  /* Layout */
  --maxw: 1140px;
  --nav-h: 66px;

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

/* ---- Dark theme (opt-in via toggle) ------------------------------------- */
:root[data-theme="dark"] {
  --bg:            #0b0c10;
  --surface:       #14161c;
  --surface-2:     #1b1e26;
  --surface-3:     #232733;
  --border:        #262b36;
  --border-strong: #333a48;

  --text:   #f1f3f8;
  --text-2: #b7bfd0;
  --text-3: #8b95a9;
  --text-4: #626c80;

  --brand:       #818cf8;
  --brand-2:     #a5b4fc;
  --brand-ink:   #c7d2fe;
  --brand-tint:  #1e2130;
  --brand-tint2: #262a3d;
  --accent:      #60a5fa;
  --on-brand:    #0b0c10;

  --ok: #4ade80; --ok-tint: #10231a; --ok-border: #1f5133;
  --warn: #fbbf24; --warn-tint: #241c0d; --warn-border: #5a4415;
  --danger: #f87171; --danger-tint: #2a1315; --danger-border: #5c2427;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.4);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.5);
  --shadow:    0 8px 24px rgba(0,0,0,.5);
  --shadow-lg: 0 18px 44px rgba(0,0,0,.55);
  --shadow-xl: 0 32px 72px rgba(0,0,0,.6);
  --ring: 0 0 0 3px rgba(129,140,248,.32);
}

/* ---- Reset / base ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
[hidden] { display: none !important; }

h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.02em; color: var(--text); font-weight: 800; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

::selection { background: var(--brand-tint2); color: var(--brand-ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---- Skip link -------------------------------------------------------------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--brand); color: var(--on-brand);
  padding: 10px 18px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px; z-index: 2000;
  transition: top .2s;
}
.skip-link:focus { top: 12px; text-decoration: none; }

/* ---- Layout --------------------------------------------------------------- */
.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section + .section { padding-top: 0; }
.section-tint { background: var(--surface-2); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint);
  padding: 6px 14px; border-radius: var(--r-full); margin-bottom: 18px;
}
.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; }
.grad {
  background: linear-gradient(120deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc { margin-top: 14px; color: var(--text-2); font-size: 17px; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: var(--r-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space: nowrap; text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-sm { padding: 9px 15px; font-size: 13px; }

.btn-primary { background: var(--brand); color: var(--on-brand); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--brand-2); box-shadow: var(--shadow); transform: translateY(-1px); }

.btn-secondary { background: var(--surface); color: var(--text); border-color: var(--border-strong); box-shadow: var(--shadow-xs); }
.btn-secondary:hover { background: var(--surface-2); border-color: var(--text-4); }

.btn-ghost { background: transparent; color: var(--text-2); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); }

.btn-block { width: 100%; }

/* ---- Nav --------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--border); box-shadow: var(--shadow-xs); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  color: var(--text-2); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--r-xs);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.logo { display: inline-flex; align-items: center; text-decoration: none; }
.wordmark {
  font-size: 21px; font-weight: 800; letter-spacing: -0.03em; color: var(--text);
}
.wordmark .x {
  background: linear-gradient(140deg, var(--brand), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.theme-toggle {
  width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); color: var(--text-2); cursor: pointer; font-size: 16px;
  transition: background .15s, border-color .15s;
}
.theme-toggle:hover { background: var(--surface-2); border-color: var(--border-strong); }
:root[data-theme="dark"] .theme-toggle .i-sun,
:root:not([data-theme="dark"]) .theme-toggle .i-moon { display: inline; }
:root[data-theme="dark"] .theme-toggle .i-moon,
:root:not([data-theme="dark"]) .theme-toggle .i-sun { display: none; }

.nav-burger {
  display: none; width: 40px; height: 40px; border: 1px solid var(--border);
  border-radius: var(--r-sm); background: var(--surface); color: var(--text);
  font-size: 18px; cursor: pointer;
}

/* Mobile drawer */
.drawer-scrim {
  position: fixed; inset: 0; background: rgba(15,23,42,.4);
  opacity: 0; pointer-events: none; transition: opacity .2s; z-index: 200;
}
.drawer-scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 86vw);
  background: var(--surface); z-index: 201; padding: 20px;
  transform: translateX(100%); transition: transform .24s ease;
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
  border-left: 1px solid var(--border);
}
.drawer.open { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.drawer a { color: var(--text); font-weight: 600; padding: 12px 10px; border-radius: var(--r-sm); }
.drawer a:hover { background: var(--surface-2); text-decoration: none; }
.drawer-cta { margin-top: auto; display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
.drawer-close {
  width: 38px; height: 38px; border: 1px solid var(--border); border-radius: var(--r-sm);
  background: var(--surface); color: var(--text); font-size: 18px; cursor: pointer;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn, .nav-cta #nav-login { display: none; }
  .nav-burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ---- Hero ------------------------------------------------------------- */
.hero { position: relative; padding: 96px 0 72px; overflow: hidden; text-align: center; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(560px 300px at 50% -40px, var(--brand-tint), transparent 70%),
    linear-gradient(var(--border) 1px, transparent 1px) 0 0 / 100% 56px,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0 / 56px 100%;
  -webkit-mask-image: radial-gradient(60% 60% at 50% 30%, #000 40%, transparent 100%);
          mask-image: radial-gradient(60% 60% at 50% 30%, #000 40%, transparent 100%);
  opacity: .6;
}
.hero h1 { font-size: clamp(34px, 5.4vw, 58px); font-weight: 800; }
.hero .sub { max-width: 620px; margin: 18px auto 0; color: var(--text-2); font-size: clamp(16px, 2vw, 19px); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--brand-ink);
  background: var(--surface); border: 1px solid var(--brand-border, var(--brand-tint2));
  padding: 6px 14px; border-radius: var(--r-full); box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }

.scanbox {
  max-width: 560px; margin: 30px auto 0; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 16px; box-shadow: var(--shadow-lg);
}
.scanbox .row { display: flex; gap: 10px; }
.field {
  flex: 1; background: var(--bg); border: 1px solid var(--border-strong);
  border-radius: var(--r-sm); padding: 13px 15px; font-size: 15px; color: var(--text);
  outline: none; transition: border-color .15s, box-shadow .15s;
}
.field::placeholder { color: var(--text-4); }
.field:focus { border-color: var(--brand); box-shadow: var(--ring); }
.scanbox .note { margin-top: 12px; font-size: 12.5px; color: var(--text-3); text-align: center; }

.hero-stats {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 40px;
  margin-top: 48px;
}
.hero-stats .stat { text-align: center; }
.hero-stats .n { font-size: 24px; font-weight: 800; color: var(--text); }
.hero-stats .l { font-size: 12.5px; color: var(--text-3); }

/* ---- Cards / grids ---------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 26px; box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card-hover:hover { box-shadow: var(--shadow); border-color: var(--border-strong); transform: translateY(-2px); }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.feature-ico {
  width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-sm); background: var(--brand-tint); color: var(--brand);
  font-size: 20px; margin-bottom: 14px;
}
.card h3, .card h4 { font-size: 17px; margin-bottom: 6px; }
.card p { color: var(--text-2); font-size: 14.5px; }
.tag {
  display: inline-block; margin-top: 12px; font-size: 11px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--text-3); background: var(--surface-2);
  border: 1px solid var(--border); padding: 4px 9px; border-radius: var(--r-full);
}

/* ---- Steps --------------------------------------------------------------- */
.steps { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 18px; }
.step-n {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--brand); color: var(--on-brand);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.step-b { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--shadow-xs); flex: 1; }
.step-b h3 { font-size: 16px; margin-bottom: 4px; }
.step-b p { color: var(--text-2); font-size: 14px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.chip { font-size: 11.5px; font-weight: 600; color: var(--text-3); background: var(--surface-2); border: 1px solid var(--border); padding: 3px 9px; border-radius: var(--r-full); }
.chip.ok { color: var(--ok); background: var(--ok-tint); border-color: var(--ok-border); }

/* ---- Pricing --------------------------------------------------------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.price {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-xs);
  display: flex; flex-direction: column;
}
.price.featured { border-color: var(--brand); box-shadow: var(--shadow-lg); position: relative; }
.price-flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: var(--on-brand); font-size: 11px; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--r-full);
}
.price .name { font-size: 14px; font-weight: 700; color: var(--text-2); text-transform: uppercase; letter-spacing: .06em; }
.price .amt { font-size: 40px; font-weight: 800; margin: 6px 0 2px; }
.price .amt .cur { font-size: 20px; vertical-align: super; }
.price .amt .per { font-size: 15px; font-weight: 600; color: var(--text-3); }
.price .lede { color: var(--text-2); font-size: 13.5px; margin-bottom: 18px; }
.price ul { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; flex: 1; }
.price li { font-size: 14px; color: var(--text-2); display: flex; gap: 9px; }
.price li::before { content: '✓'; color: var(--ok); font-weight: 800; flex-shrink: 0; }

/* ---- Compare table ------------------------------------------------------ */
.compare { border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; background: var(--surface); box-shadow: var(--shadow-xs); }
.compare-row { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; border-top: 1px solid var(--border); }
.compare-row:first-child { border-top: none; background: var(--surface-2); font-weight: 700; }
.compare-row > div { padding: 13px 16px; font-size: 13.5px; }
.compare-row .lbl { color: var(--text-2); }
.compare-row .best { color: var(--brand-ink); font-weight: 700; background: var(--brand-tint); }
@media (max-width: 720px) { .compare { overflow-x: auto; } .compare-row { min-width: 560px; } }

/* ---- Testimonials (marquee) ------------------------------------------- */
.marquee { position: relative; overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 20px; width: max-content; animation: marquee 48s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee { -webkit-mask-image: none; mask-image: none; overflow-x: auto; }
  .marquee-track { animation: none; }
}
.testi {
  width: 340px; flex-shrink: 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; box-shadow: var(--shadow-xs);
}
.testi .stars { color: #f5a623; letter-spacing: 2px; font-size: 13px; }
.testi .quote { font-size: 14.5px; font-weight: 700; margin: 8px 0 8px; }
.testi .body { font-size: 13.5px; color: var(--text-2); }
.testi .who { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.testi .av { width: 34px; height: 34px; border-radius: 50%; background: var(--brand-tint); color: var(--brand); font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.testi .nm { font-size: 13px; font-weight: 700; }
.testi .rl { font-size: 12px; color: var(--text-3); }

/* ---- FAQ ------------------------------------------------------------- */
.faq { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: var(--surface); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 16px 18px; font-size: 15px; font-weight: 700; color: var(--text);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.faq-q:hover { background: var(--surface-2); }
.faq-q .caret { transition: transform .2s; color: var(--text-3); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .caret { transform: rotate(180deg); }
.faq-a { padding: 0 18px 16px; color: var(--text-2); font-size: 14px; }

/* ---- Banner / callout ---------------------------------------------------- */
.callout {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: var(--brand-tint); border: 1px solid var(--brand-tint2);
  border-radius: var(--r-lg); padding: 24px 28px;
}
.callout .ico { font-size: 30px; flex-shrink: 0; }
.callout h2 { font-size: 18px; margin-bottom: 4px; }
.callout p { color: var(--text-2); font-size: 14px; margin: 0; }
.callout .btn { flex-shrink: 0; }

/* ---- Final CTA --------------------------------------------------------- */
.cta { text-align: center; padding: 80px 0; background: var(--surface-2); }
.cta h2 { font-size: clamp(26px, 4vw, 38px); }
.cta p { color: var(--text-2); margin: 12px 0 24px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-trust { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-top: 20px; font-size: 13px; color: var(--text-3); }

/* ---- Footer ---------------------------------------------------------- */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand p { color: var(--text-3); font-size: 13.5px; margin-top: 10px; max-width: 260px; }
.footer-col h3 { font-size: 12px; text-transform: uppercase; letter-spacing: .07em; color: var(--text-3); margin-bottom: 12px; }
.footer-col a { display: block; color: var(--text-2); font-size: 13.5px; padding: 4px 0; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom { border-top: 1px solid var(--border); margin-top: 36px; padding-top: 20px; text-align: center; color: var(--text-4); font-size: 12.5px; }

/* ---- Alerts (shared with forms) ------------------------------------------ */
.alert { padding: 12px 16px; border-radius: var(--r-sm); font-size: 14px; font-weight: 500; }
.alert-error { background: var(--danger-tint); border: 1px solid var(--danger-border); color: var(--danger); }
.alert-success { background: var(--ok-tint); border: 1px solid var(--ok-border); color: var(--ok); }
.alert-info { background: var(--brand-tint); border: 1px solid var(--brand-tint2); color: var(--brand-ink); }

/* ---- Scroll-reveal (progressive; content visible even if JS is off) ----- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
.no-js .reveal { opacity: 1; transform: none; }

/* ---- Prose (legal pages, methodology, articles) ----------------------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h1 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 6px; }
.prose .updated { color: var(--text-3); font-size: 13px; margin-bottom: 32px; }
.prose h2 { font-size: 20px; margin: 34px 0 10px; }
.prose h3 { font-size: 16px; margin: 22px 0 6px; }
.prose p, .prose li { color: var(--text-2); font-size: 15px; line-height: 1.75; }
.prose p { margin-bottom: 12px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose a { color: var(--accent); }
.prose strong { color: var(--text); }
.prose table { width: 100%; border-collapse: collapse; margin: 12px 0 18px; font-size: 14px; }
.prose th, .prose td { border: 1px solid var(--border); padding: 8px 12px; text-align: left; vertical-align: top; }
.prose th { background: var(--surface-2); font-weight: 700; color: var(--text); }
.prose hr { border: 0; border-top: 1px solid var(--border); margin: 28px 0; }
.prose .lead { font-size: 16px; color: var(--text-2); }

/* ---- Utilities --------------------------------------------------------- */
.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.text-center { text-align: center; }
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
