/* =============================================================
   Mass Appeal Marketing — Design System & Stylesheet
   Theme: "Midnight Capital" — deep charcoal/navy + warm gold
   Built mobile-first, WCAG 2.1 AA conscious.
   ============================================================= */

/* ---------- Design Tokens ---------- */
:root {
  /* Color — surfaces */
  --bg:            #0a0e17;
  --bg-2:          #0e1320;
  --surface:       #131a2a;
  --surface-2:     #1a2336;
  --border:        #25304a;
  --border-soft:   #1d2740;

  /* Color — text */
  --text:          #f4f6fb;
  --text-muted:    #aab4c8;
  --text-faint:    #7d889e;

  /* Color — brand accents */
  --gold:          #e5b567;   /* primary accent, AA on dark bg */
  --gold-bright:   #f1cd8c;
  --gold-deep:     #b98a3c;
  --ink:           #0a0e17;   /* dark text used on gold */

  /* Functional */
  --focus:         #8ab4ff;
  --success:       #57c98a;

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #f1cd8c 0%, #e5b567 45%, #b98a3c 100%);
  --grad-surface: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);

  /* Type */
  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid type scale (clamp) */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1rem;
  --fs-md:   clamp(1.0625rem, 0.5vw + 0.95rem, 1.1875rem);
  --fs-lg:   clamp(1.25rem, 1vw + 1rem, 1.5rem);
  --fs-xl:   clamp(1.6rem, 2vw + 1rem, 2.1rem);
  --fs-2xl:  clamp(2rem, 3.2vw + 1rem, 3rem);
  --fs-3xl:  clamp(2.5rem, 5vw + 1rem, 4.25rem);

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --section-y: clamp(4rem, 8vw, 7.5rem);

  /* UI */
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --maxw: 1180px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow: 0 18px 50px -18px rgba(0,0,0,.65);
  --shadow-gold: 0 14px 40px -14px rgba(229,181,103,.45);
  --transition: 200ms cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
p  { color: var(--text-muted); }
p.lede { font-size: var(--fs-md); color: var(--text-muted); max-width: 60ch; }

a { color: var(--gold-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
/* Links sitting inside running text must be distinguishable without color (WCAG 1.4.1) */
.breadcrumb a, p a:not(.btn), .ci .v a { text-decoration: underline; text-underline-offset: 2px; }
img, svg { max-width: 100%; display: block; height: auto; }
ul { list-style: none; padding: 0; }
strong { color: var(--text); font-weight: 600; }

/* Accessibility helpers */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--gold); color: var(--ink); padding: .65rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm); font-weight: 600; z-index: 1000;
  transition: top var(--transition);
}
.skip-link:focus { top: 0; color: var(--ink); }

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

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.bg-alt { background: var(--bg-2); }
.bg-surface { background: var(--grad-surface); }

.grid { display: grid; gap: var(--space-5); }
@media (min-width: 720px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Eyebrow + Section header ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--grad-gold); display: inline-block;
}
.section-head { max-width: 64ch; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm);
  padding: .9rem 1.6rem; border-radius: var(--radius-sm); cursor: pointer;
  border: 1px solid transparent; transition: transform var(--transition), background var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-align: center; line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad-gold); color: var(--ink); box-shadow: var(--shadow-gold); }
.btn-primary:hover { color: var(--ink); transform: translateY(-2px); box-shadow: 0 18px 46px -12px rgba(229,181,103,.6); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--gold); background: rgba(229,181,103,.06); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--fs-base); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,14,23,.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--border-soft); background: rgba(10,14,23,.9); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: var(--space-5); }
.brand { display: inline-flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.brand:hover { color: var(--text); }
.brand .mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; color: var(--text); line-height: 1; }
.brand-name span { display: block; font-size: .62rem; font-weight: 500; letter-spacing: .26em; color: var(--gold); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-list { display: flex; align-items: center; gap: var(--space-6); }
.nav-list a { color: var(--text-muted); font-size: var(--fs-sm); font-weight: 500; }
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: var(--space-4); }

.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--border);
  border-radius: var(--radius-sm); width: 46px; height: 46px; cursor: pointer; color: var(--text);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border);
    padding: var(--space-4) clamp(1.1rem,4vw,2rem) var(--space-6);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    max-height: calc(100dvh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: var(--space-4) 0; border-bottom: 1px solid var(--border-soft); font-size: var(--fs-md); }
  .nav-cta { flex-direction: column; align-items: stretch; gap: var(--space-3); margin-top: var(--space-5); }
  .nav-cta .btn { width: 100%; }
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(3.5rem, 9vw, 7rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 55% at 78% 12%, rgba(229,181,103,.16), transparent 60%),
    radial-gradient(50% 50% at 12% 88%, rgba(95,130,220,.10), transparent 60%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--border-soft) 1px, transparent 1px), linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
}
.hero-inner { max-width: 56rem; }
.hero h1 { margin-bottom: var(--space-5); }
.hero .lede { margin-bottom: var(--space-6); font-size: var(--fs-md); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-bottom: var(--space-7); }
.hero-meta { display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-6); color: var(--text-faint); font-size: var(--fs-sm); }
.hero-meta li { display: inline-flex; align-items: center; gap: .5rem; }
.hero-meta svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

.pill {
  display: inline-flex; align-items: center; gap: .55rem; margin-bottom: var(--space-5);
  padding: .4rem .85rem .4rem .55rem; border: 1px solid var(--border);
  border-radius: 999px; font-size: var(--fs-xs); color: var(--text-muted); background: rgba(255,255,255,.02);
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px rgba(87,201,138,.18); }

/* ---------- Trust bar ---------- */
.trustbar { border-block: 1px solid var(--border-soft); }
.trustbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-5); padding-block: var(--space-5); }
.trustbar p { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .14em; color: var(--text-faint); }
.trust-items { display: flex; flex-wrap: wrap; gap: var(--space-5) var(--space-7); }
.trust-items span { font-family: var(--font-display); font-weight: 600; color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: var(--space-6);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  height: 100%;
}
.card:hover { transform: translateY(-4px); border-color: var(--border); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm); display: grid; place-items: center;
  background: rgba(229,181,103,.1); border: 1px solid rgba(229,181,103,.25); color: var(--gold);
  margin-bottom: var(--space-5);
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--space-3); }
.card p { font-size: var(--fs-sm); }
.card .tag { display: inline-block; margin-top: var(--space-4); font-size: var(--fs-xs); color: var(--gold); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

/* ---------- Process / Steps ---------- */
.steps { counter-reset: step; display: grid; gap: var(--space-5); }
@media (min-width: 860px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { position: relative; padding: var(--space-6); background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--radius); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1px var(--gold-deep); display: block; margin-bottom: var(--space-4);
}
.step h3 { font-size: var(--fs-md); margin-bottom: var(--space-3); }
.step p { font-size: var(--fs-sm); }

/* ---------- Stats ---------- */
.stats { display: grid; gap: var(--space-5); text-align: center; }
@media (min-width: 680px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-2xl); background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat .label { display: block; margin-top: var(--space-3); font-size: var(--fs-sm); color: var(--text-muted); }

/* ---------- Split / Feature rows ---------- */
.split { display: grid; gap: var(--space-7); align-items: center; }
@media (min-width: 920px) { .split { grid-template-columns: 1.05fr .95fr; } .split.reverse > :first-child { order: 2; } }
.feature-list { display: grid; gap: var(--space-4); margin-top: var(--space-5); }
.feature-list li { display: grid; grid-template-columns: 26px 1fr; gap: var(--space-3); align-items: start; color: var(--text-muted); font-size: var(--fs-sm); }
.feature-list svg { width: 22px; height: 22px; color: var(--gold); margin-top: 2px; }

/* Visual panel (decorative) */
.panel {
  background: var(--grad-surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--space-6); box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.panel::after { content:""; position:absolute; top:-40%; right:-30%; width:60%; height:80%; background: radial-gradient(circle, rgba(229,181,103,.14), transparent 70%); }
.panel-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--border-soft); }
.panel-row:last-child { border-bottom: 0; }
.panel-row .k { font-size: var(--fs-sm); color: var(--text-muted); }
.panel-row .v { font-family: var(--font-display); font-weight: 600; color: var(--text); }
.panel-row .v.up { color: var(--success); }

/* ---------- Comparison (old vs new) ---------- */
.compare { display: grid; gap: var(--space-5); }
@media (min-width: 820px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare .col { border-radius: var(--radius); padding: var(--space-6); border: 1px solid var(--border-soft); }
.compare .col.old { background: var(--bg-2); }
.compare .col.new { background: var(--surface); border-color: rgba(229,181,103,.3); box-shadow: var(--shadow-gold); }
.compare h3 { font-size: var(--fs-md); margin-bottom: var(--space-4); }
.compare ul { display: grid; gap: var(--space-3); }
.compare li { display: grid; grid-template-columns: 24px 1fr; gap: var(--space-3); font-size: var(--fs-sm); color: var(--text-muted); }
.compare svg { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.compare .old svg { color: #c0566b; }
.compare .new svg { color: var(--success); }

/* ---------- Audience cards ---------- */
.audience .card { display: flex; flex-direction: column; }
.audience .card p { flex-grow: 1; }

/* ---------- Testimonial ---------- */
.quote { max-width: 60rem; margin-inline: auto; text-align: center; }
.quote blockquote { font-family: var(--font-display); font-size: var(--fs-xl); line-height: 1.35; letter-spacing: -.01em; color: var(--text); margin-bottom: var(--space-5); }
.quote blockquote::before { content: "“"; color: var(--gold); }
.quote blockquote::after { content: "”"; color: var(--gold); }
.quote cite { font-style: normal; color: var(--text-muted); font-size: var(--fs-sm); }
.quote cite strong { display: block; color: var(--text); }

/* ---------- FAQ ---------- */
.faq { max-width: 52rem; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  background: transparent; border: 0; cursor: pointer; text-align: left;
  padding: var(--space-5) 0; color: var(--text); font-family: var(--font-display);
  font-weight: 600; font-size: var(--fs-md);
}
.faq-q .chev { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; transition: transform var(--transition); }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height var(--transition); }
.faq-a > div { padding-bottom: var(--space-5); color: var(--text-muted); font-size: var(--fs-sm); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(2.5rem,6vw,4.5rem); text-align: center; background: var(--grad-surface); border: 1px solid var(--border); }
.cta-band::before { content:""; position:absolute; inset:0; z-index:0; background: radial-gradient(60% 120% at 50% 0%, rgba(229,181,103,.16), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: var(--space-4); }
.cta-band p { margin-inline: auto; margin-bottom: var(--space-6); max-width: 52ch; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--space-4); }
.form .row { display: grid; gap: var(--space-4); }
@media (min-width: 620px) { .form .row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 500; color: var(--text); }
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: var(--fs-base); color: var(--text);
  background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: .85rem 1rem; transition: border-color var(--transition), box-shadow var(--transition);
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(229,181,103,.18);
}
.field textarea { resize: vertical; min-height: 130px; }
.field .hint { font-size: var(--fs-xs); color: var(--text-faint); }
.form-note { font-size: var(--fs-xs); color: var(--text-faint); }
.form-success {
  display: none; padding: var(--space-5); border-radius: var(--radius);
  background: rgba(87,201,138,.1); border: 1px solid rgba(87,201,138,.35); color: var(--text);
}
.form-success.show { display: block; }

/* Contact layout */
.contact-grid { display: grid; gap: var(--space-7); }
@media (min-width: 920px) { .contact-grid { grid-template-columns: 1.15fr .85fr; } }
.contact-aside .card { height: auto; margin-bottom: var(--space-4); }
.contact-aside .card:last-child { margin-bottom: 0; }
.contact-aside .ci { display: flex; gap: var(--space-4); align-items: flex-start; margin-bottom: var(--space-5); }
.contact-aside .ci:last-child { margin-bottom: 0; }
.contact-aside .ci svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.contact-aside .ci .k { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .1em; color: var(--text-faint); }
.contact-aside .ci .v { color: var(--text); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--border-soft); padding-block: var(--space-8) var(--space-6); margin-top: var(--space-7); }
.footer-top { display: grid; gap: var(--space-7); margin-bottom: var(--space-7); }
@media (min-width: 800px) { .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: var(--fs-sm); max-width: 34ch; margin-top: var(--space-4); }
.footer-col h2 { font-family: var(--font-display); font-size: var(--fs-sm); font-weight: 600; line-height: 1.2; letter-spacing: .04em; margin-bottom: var(--space-4); color: var(--text); }
.footer-col ul { display: grid; gap: var(--space-3); }
.footer-col a { color: var(--text-muted); font-size: var(--fs-sm); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; justify-content: space-between; padding-top: var(--space-5); border-top: 1px solid var(--border-soft); }
.footer-bottom p { font-size: var(--fs-xs); color: var(--text-faint); }
.footer-legal { display: flex; gap: var(--space-5); flex-wrap: wrap; }
.footer-legal a { font-size: var(--fs-xs); color: var(--text-faint); }
.disclaimer { font-size: var(--fs-xs); color: var(--text-faint); line-height: 1.6; max-width: 90ch; margin-top: var(--space-5); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; padding-block: clamp(3rem,7vw,5.5rem) clamp(2rem,4vw,3rem); overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(50% 80% at 80% 0%, rgba(229,181,103,.12), transparent 60%); }
.page-hero .eyebrow { justify-content: flex-start; }
.page-hero h1 { margin-bottom: var(--space-4); max-width: 20ch; }
.page-hero .lede { max-width: 58ch; }
.breadcrumb { font-size: var(--fs-xs); color: var(--text-faint); margin-bottom: var(--space-5); }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb [aria-current] { color: var(--gold); }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 72ch; }
.prose h2 { font-size: var(--fs-lg); margin-top: var(--space-7); margin-bottom: var(--space-4); }
.prose h3 { font-size: var(--fs-md); margin-top: var(--space-5); margin-bottom: var(--space-3); }
.prose p, .prose li { color: var(--text-muted); font-size: var(--fs-sm); }
.prose p { margin-bottom: var(--space-4); }
.prose ul { list-style: disc; padding-left: 1.4rem; display: grid; gap: var(--space-2); margin-bottom: var(--space-4); }
.prose a { text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.flex-cta { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.center-cta { display: flex; justify-content: center; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-7); }
