/* ---------- Tokens ---------- */
:root {
  /* Rocket-inspired: warm red on charcoal + pure white */
  --bg: #ffffff;
  --bg-warm: #ffffff;
  --bg-deep: #f4f4f4;
  --ink: oklch(0.22 0.005 30);
  --ink-2: oklch(0.40 0.005 30);
  --ink-3: oklch(0.58 0.005 30);
  --line: oklch(0.22 0.005 30 / 0.10);
  --line-2: oklch(0.22 0.005 30 / 0.18);

  /* Accent = warm Rocket-style red. Variables retain their old names so
     the rest of the stylesheet keeps working without a mass rename. */
  --green:       oklch(0.62 0.18 28);   /* primary red */
  --green-soft:  oklch(0.96 0.03 28);
  --green-deep:  oklch(0.50 0.19 28);   /* deeper red for buttons / numbers */

  --clay: oklch(0.62 0.06 50);
  --clay-soft: oklch(0.95 0.02 60);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 0 oklch(0.18 0.01 80 / 0.04), 0 1px 2px oklch(0.18 0.01 80 / 0.04);
  --shadow-md: 0 1px 0 oklch(0.18 0.01 80 / 0.05), 0 8px 24px -12px oklch(0.18 0.01 80 / 0.18);
  --shadow-lg: 0 1px 0 oklch(0.18 0.01 80 / 0.05), 0 24px 60px -24px oklch(0.18 0.01 80 / 0.25);

  --font-sans: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
button { font-family: inherit; cursor: pointer; }
input { font-family: inherit; }
a { color: inherit; }

/* ---------- Layout ---------- */
.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
section { padding: 64px 24px; }
.section-head { max-width: 1200px; margin: 0 auto 40px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-weight: 600; letter-spacing: -0.01em;
}
.brand em { font-style: italic; font-weight: 400; color: var(--ink-2); }
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--ink); color: var(--bg);
  border-radius: 8px;
}
.brand.small .brand-mark { width: 26px; height: 26px; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-link { text-decoration: none; color: var(--ink-2); font-size: 14px; }
.nav-link:hover { color: var(--ink); }
.nav-cta {
  text-decoration: none; padding: 8px 14px;
  background: var(--ink); color: var(--bg);
  border-radius: 999px; font-size: 13px; font-weight: 500;
}

/* ---------- Hero ---------- */
.hero { padding-top: 56px; padding-bottom: 80px; }
.hero-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 540px; gap: 56px; align-items: start;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-2);
  border: 1px solid var(--line);
  background: var(--bg-warm);
  padding: 6px 12px; border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px oklch(0.62 0.18 28 / 0.18); }
.h1 {
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 20px;
  text-wrap: balance;
}
.h1 em { font-style: italic; font-weight: 500; color: var(--green-deep); }
.lede {
  font-size: 19px; color: var(--ink-2);
  max-width: 520px; margin: 0 0 28px;
  text-wrap: pretty;
}
.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 15px; color: var(--ink-2);
}
.hero-bullets li { display: flex; align-items: center; gap: 10px; }
.hero-bullets .ic { color: var(--green); flex-shrink: 0; }
.hero-meta {
  display: flex; align-items: center; gap: 18px;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: var(--radius-md);
  background: var(--bg-warm);
  max-width: 540px;
}
.meta-stat { display: flex; flex-direction: column; gap: 2px; }
.meta-num { font-family: var(--font-mono); font-size: 18px; font-weight: 500; letter-spacing: -0.02em; }
.meta-lab { font-size: 12px; color: var(--ink-3); }
.meta-divider { width: 1px; height: 28px; background: var(--line-2); }

/* ---------- Calc card ---------- */
.calc-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.calc-card::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: linear-gradient(180deg, oklch(1 0 0 / 0.5), transparent 30%);
}
.calc-head {
  display: flex; align-items: baseline; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px dashed var(--line-2);
}
.calc-step {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-3);
}
.calc-title { font-weight: 500; font-size: 15px; }

.field { display: flex; flex-direction: column; gap: 8px; }
.field-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.field-label { font-size: 14px; font-weight: 500; }
.field-hint { font-size: 12px; color: var(--ink-3); }

/* Money input */
.money-input {
  display: flex; align-items: center;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  background: var(--bg);
  transition: border-color 120ms, box-shadow 120ms;
}
.money-input:focus-within { border-color: var(--ink); box-shadow: 0 0 0 4px oklch(0.18 0.01 80 / 0.06); }
.money-glyph { padding: 0 12px 0 14px; color: var(--ink-3); font-family: var(--font-mono); }
.money-input input {
  flex: 1; border: 0; outline: 0; background: transparent;
  padding: 14px 14px 14px 0;
  font-family: var(--font-mono);
  font-size: 18px; letter-spacing: -0.01em; color: var(--ink);
}

/* Tile grid */
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
@media (min-width: 600px) {
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
}
.tile {
  text-align: left;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
  padding: 12px 12px;
  display: flex; flex-direction: column; gap: 2px;
  transition: all 120ms;
  min-height: 64px;
}
.tile:hover { border-color: var(--ink-2); }
.tile.active {
  border-color: var(--ink); background: var(--ink); color: var(--bg);
  box-shadow: var(--shadow-sm);
}
.tile-label { font-size: 13px; font-weight: 500; }
.tile-sub { font-size: 11px; color: var(--ink-3); }
.tile.active .tile-sub { color: oklch(1 0 0 / 0.6); }

.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 540px) { .row-2 { grid-template-columns: 1fr; } }

/* Year stepper */
.year-stepper {
  display: flex; align-items: stretch;
  border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  overflow: hidden; background: var(--bg);
}
.year-stepper button {
  width: 38px; border: 0; background: var(--bg-warm);
  font-size: 18px; color: var(--ink-2); font-family: var(--font-mono);
}
.year-stepper button:hover { background: var(--bg-deep); color: var(--ink); }
.year-display {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 8px 4px; gap: 1px;
}
.year-num { font-family: var(--font-mono); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.year-meta { font-size: 10px; color: var(--ink-3); font-family: var(--font-mono); }

/* Chip row */
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  border: 1px solid var(--line-2); background: var(--bg);
  padding: 8px 12px; border-radius: 999px;
  font-size: 13px; color: var(--ink-2); font-family: var(--font-mono);
  transition: all 120ms;
}
.chip:hover { border-color: var(--ink-2); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Advanced */
.adv-toggle {
  align-self: flex-start;
  background: transparent; border: 0;
  font-size: 13px; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 0;
}
.adv-toggle:hover { color: var(--ink); }
.adv-toggle span {
  width: 18px; height: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--bg-deep);
  font-family: var(--font-mono); font-size: 12px;
}
.adv-grid {
  display: flex; flex-direction: column; gap: 8px;
  padding: 14px; background: var(--bg-warm);
  border: 1px solid var(--line); border-radius: var(--radius-md);
}
.toggle-field {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.toggle-text { display: flex; flex-direction: column; gap: 2px; }
.toggle-pair { display: flex; gap: 4px; padding: 3px; background: var(--bg); border: 1px solid var(--line); border-radius: 999px; }
.toggle-btn {
  border: 0; background: transparent;
  padding: 5px 14px; border-radius: 999px;
  font-size: 12px; color: var(--ink-2);
}
.toggle-btn.active { background: var(--ink); color: var(--bg); }

/* Buttons */
.primary-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 0; background: var(--green-deep); color: var(--bg);
  padding: 16px 22px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 500; letter-spacing: -0.005em;
  transition: all 120ms;
  box-shadow: 0 1px 0 oklch(1 0 0 / 0.15) inset, 0 1px 2px oklch(0.18 0.01 80 / 0.2);
}
.primary-btn:hover { background: var(--green); transform: translateY(-1px); box-shadow: 0 1px 0 oklch(1 0 0 / 0.15) inset, 0 6px 16px -6px oklch(0.50 0.19 28 / 0.5); }
.primary-btn.solid { padding: 14px 20px; font-size: 14px; }
.primary-btn.light { background: var(--bg); color: var(--ink); }
.primary-btn.light:hover { background: oklch(1 0 0); }
.ic-arr { transition: transform 120ms; }
.primary-btn:hover .ic-arr { transform: translateX(2px); }

.ghost-btn {
  background: transparent; border: 1px solid var(--line-2);
  padding: 13px 18px; border-radius: var(--radius-sm);
  font-size: 14px; color: var(--ink); font-weight: 500;
  transition: all 120ms;
}
.ghost-btn:hover { border-color: var(--ink); background: var(--bg-warm); }

.calc-foot {
  font-size: 12px; color: var(--ink-3); margin: 0;
  text-wrap: pretty;
}

/* ---------- Result ---------- */
.result-section {
  padding: 80px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.result-head { max-width: 1200px; margin: 0 auto 32px; }
.kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--green-deep);
  display: inline-block; margin-bottom: 12px;
}
.kicker.light { color: oklch(0.92 0.05 28); }
.h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08; letter-spacing: -0.03em; font-weight: 600;
  margin: 0; max-width: 720px; text-wrap: balance;
}
.h2.light { color: var(--bg); }

.result-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px;
  grid-template-areas:
    "hero break"
    "hero persona";
}
@media (max-width: 980px) {
  .result-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "hero" "break" "persona";
  }
}
.result-card {
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.hero-card { grid-area: hero; padding: 36px; display: flex; flex-direction: column; gap: 18px; }
.breakdown { grid-area: break; }
.persona { grid-area: persona; }

.rc-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); }
.rc-big {
  font-family: var(--font-mono);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1; letter-spacing: -0.04em;
  font-weight: 500;
  color: var(--green-deep);
  font-variant-numeric: tabular-nums;
}
.tick { display: inline-block; }
.rc-conf {
  display: inline-flex; padding: 3px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: 999px;
  align-self: flex-start;
}
.rc-conf button {
  border: 0; background: transparent;
  padding: 7px 14px; border-radius: 999px;
  font-size: 12px; color: var(--ink-2);
  font-family: var(--font-mono);
}
.rc-conf .conf-active { background: var(--ink); color: var(--bg); }
.rc-narrative {
  font-size: 16px; color: var(--ink-2); line-height: 1.55; max-width: 640px;
  text-wrap: pretty;
}
.rc-narrative strong { color: var(--ink); font-weight: 500; }

.rc-cta-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }

.email-row {
  display: flex; gap: 8px; align-items: stretch;
  margin-top: 8px;
}
.email-row input {
  flex: 1; border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 12px 14px; font-size: 14px; outline: 0;
  background: var(--bg);
}
.email-row input:focus { border-color: var(--ink); }
.email-row button {
  border: 0; background: var(--ink); color: var(--bg);
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500;
}
.email-sent { color: var(--green-deep); font-size: 14px; display: inline-flex; gap: 8px; align-items: center; }

/* Breakdown */
.bar {
  display: flex; height: 14px; border-radius: 999px; overflow: hidden;
  background: var(--bg-deep); margin: 14px 0 18px;
  border: 1px solid var(--line);
}
.bar-seg { transition: width 400ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.bar-seg.c5 { background: var(--green-deep); }
.bar-seg.c15 { background: var(--green); }
.bar-seg.c39 { background: var(--bg-deep); border-left: 1px solid var(--line); }

.alloc-list { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.alloc-list li { display: grid; grid-template-columns: auto 1fr auto auto; gap: 10px; align-items: center; }
.alloc-list .dot { width: 8px; height: 8px; border-radius: 50%; }
.alloc-list .dot.c5 { background: var(--green-deep); }
.alloc-list .dot.c15 { background: var(--green); }
.alloc-list .dot.c39 { background: var(--ink-3); }
.al-pct { color: var(--ink-3); font-family: var(--font-mono); font-size: 12px; }
.al-dol { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }

.kv-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; padding-top: 14px; border-top: 1px dashed var(--line-2); }
.kv-row > div { display: flex; flex-direction: column; gap: 2px; }
.kv-row span { font-size: 11px; color: var(--ink-3); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.04em; }
.kv-row strong { font-size: 14px; font-weight: 500; font-family: var(--font-mono); color: var(--ink); }
.kv-row strong.positive { color: var(--green-deep); }

/* Persona */
.persona-h { font-size: 18px; line-height: 1.3; margin: 8px 0 8px; letter-spacing: -0.015em; font-weight: 500; }
.persona-body { font-size: 14px; color: var(--ink-2); margin: 0 0 16px; line-height: 1.55; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--green-deep);
  font-weight: 500; font-size: 14px;
  border-bottom: 1px solid currentColor; padding-bottom: 2px;
}
.link-arrow:hover { color: var(--green); }
.link-arrow.big { font-size: 17px; padding-bottom: 3px; }
.persona-foot {
  margin-top: 18px; padding-top: 14px;
  border-top: 1px dashed var(--line-2);
  font-size: 12px; color: var(--ink-3); font-family: var(--font-mono);
}

/* ---------- Trust ---------- */
.trust { background: var(--bg); }
.trust-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-cell {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.trust-cell:nth-child(3n) { border-right: 0; }
.trust-cell:nth-last-child(-n+3) { border-bottom: 0; }
@media (max-width: 880px) {
  .trust-cell { border-right: 1px solid var(--line) !important; border-bottom: 1px solid var(--line) !important; }
  .trust-cell:nth-child(2n) { border-right: 0 !important; }
  .trust-cell:nth-last-child(-n+2) { border-bottom: 0 !important; }
}
.trust-num { font-family: var(--font-mono); font-size: 11px; color: var(--ink-3); margin-bottom: 12px; letter-spacing: 0.08em; }
.trust-t { font-size: 16px; font-weight: 500; margin-bottom: 4px; letter-spacing: -0.01em; }
.trust-d { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ---------- Affects ---------- */
.affects { background: #ffffff; }
.aff-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 880px) { .aff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .aff-grid { grid-template-columns: 1fr; } }
.aff-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all 200ms;
}
.aff-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.aff-num { font-family: var(--font-mono); font-size: 11px; color: var(--green-deep); letter-spacing: 0.08em; margin-bottom: 6px; }
.aff-t { font-size: 16px; font-weight: 500; letter-spacing: -0.01em; }
.aff-d { font-size: 13px; color: var(--ink-2); line-height: 1.5; }

/* ---------- Objection ---------- */
.objection { padding: 64px 24px; }
.obj-card {
  max-width: 880px; margin: 0 auto;
  padding: 48px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  text-align: left;
}
.obj-card .kicker { font-size: 14px; }
.obj-body { font-size: 19px; color: var(--ink); line-height: 1.5; margin: 16px 0 24px; max-width: 640px; text-wrap: pretty; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg); }
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line-2); }
.faq-item { border-bottom: 1px solid var(--line-2); }
.faq-q {
  width: 100%; text-align: left;
  background: transparent; border: 0;
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  font-size: 17px; font-weight: 500; color: var(--ink);
  letter-spacing: -0.015em;
}
.faq-q:hover { color: var(--green-deep); }
.faq-icon {
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-2); border-radius: 50%;
  font-family: var(--font-mono); font-size: 16px; color: var(--ink-2);
  flex-shrink: 0;
}
.faq-item.open .faq-icon { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.faq-a-wrap { overflow: hidden; transition: max-height 240ms cubic-bezier(0.2, 0.8, 0.2, 1); }
.faq-a {
  font-size: 15px; color: var(--ink-2);
  padding: 0 60px 22px 0;
  line-height: 1.55; max-width: 720px;
  text-wrap: pretty;
}

/* ---------- Final CTA ---------- */
.final-cta { padding: 80px 24px; }
.fc-card {
  max-width: 1200px; margin: 0 auto;
  background: var(--ink); color: var(--bg);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center;
}
@media (max-width: 760px) {
  .fc-card { grid-template-columns: 1fr; padding: 36px; }
}
.fc-sub { color: oklch(0.85 0.005 30); font-size: 17px; margin: 16px 0 0; max-width: 520px; }
.fc-right { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
@media (min-width: 760px) { .fc-right { align-items: flex-end; } }
.fc-price { font-family: var(--font-mono); font-size: 13px; color: oklch(0.7 0.005 30); }

/* ---------- Disclaimer ---------- */
.disclaimer { padding: 32px 24px 16px; }
.disclaimer p {
  max-width: 880px; margin: 0 auto;
  font-size: 12px; color: var(--ink-3);
  border-top: 1px dashed var(--line-2);
  padding-top: 24px;
  text-wrap: pretty;
  line-height: 1.6;
}
.disclaimer strong { color: var(--ink-2); font-weight: 500; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 40px 24px; background: var(--bg); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--ink-2); text-decoration: none; }
.footer-links a:hover { color: var(--ink); }
.footer-fine { font-family: var(--font-mono); font-size: 11px; }

/* ---------- Tweak overrides ---------- */
body[data-theme="rocket"] {
  --green:      oklch(0.62 0.18 28);
  --green-deep: oklch(0.50 0.19 28);
  --green-soft: oklch(0.96 0.03 28);
}
body[data-theme="forest"] {
  --green:      oklch(0.42 0.09 155);
  --green-deep: oklch(0.30 0.08 155);
  --green-soft: oklch(0.95 0.04 155);
}
body[data-theme="indigo"] {
  --green:      oklch(0.45 0.13 265);
  --green-deep: oklch(0.32 0.12 265);
  --green-soft: oklch(0.96 0.03 265);
}
body[data-theme="ember"] {
  --green:      oklch(0.55 0.14 35);
  --green-deep: oklch(0.42 0.13 35);
  --green-soft: oklch(0.96 0.04 35);
}
body[data-theme="ink"] {
  --green:      oklch(0.30 0.01 80);
  --green-deep: oklch(0.18 0.01 80);
  --green-soft: oklch(0.94 0.01 80);
}

body[data-density="cozy"] section { padding: 96px 24px; }
body[data-density="compact"] section { padding: 48px 24px; }

body[data-headline="bold"] .h1 { font-weight: 700; letter-spacing: -0.04em; }
body[data-headline="bold"] .h1 em { color: var(--green); }
body[data-headline="serif"] .h1 { font-family: "Newsreader", Georgia, serif; font-weight: 500; letter-spacing: -0.025em; }
body[data-headline="serif"] .h2 { font-family: "Newsreader", Georgia, serif; font-weight: 500; }
