  :root {
    --bg: #0d0c10;
    --bg2: #13111a;
    --bg3: #1a1726;
    --cream: #f0ead8;
    --muted: #7a7490;
    --amber: oklch(0.72 0.14 65);
    --amber-dim: oklch(0.55 0.12 65);
    --amber-glow: oklch(0.72 0.14 65 / 0.15);
    --red-accent: oklch(0.62 0.14 25);
    --blue-bad: oklch(0.65 0.18 260);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--bg);
    color: var(--cream);
    overflow-x: hidden;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 100%, oklch(0.35 0.12 280 / 0.35) 0%, transparent 70%),
                radial-gradient(ellipse 50% 40% at 50% 50%, oklch(0.25 0.08 280 / 0.2) 0%, transparent 60%);
  }

  /* Stars */
  .stars {
    position: absolute; inset: 0; pointer-events: none;
  }
  .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--d, 3s) ease-in-out infinite var(--delay, 0s);
  }
  @keyframes twinkle {
    0%, 100% { opacity: var(--min-op, 0.2); }
    50% { opacity: var(--max-op, 0.9); }
  }

  .eyebrow {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;

    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 28px;
    position: relative;
  }

  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 9vw, 7.5rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.02em;
    position: relative;
    max-width: 900px;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--amber);
  }

  .hero-sub {
    margin-top: 28px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--muted);

    max-width: 500px;
    position: relative;
  }

  .hero-moon {
    margin-top: 60px;
    position: relative;
  }

  /* ── LAYOUT ── */
  .container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .wide-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }

  /* ── SECTIONS ── */
  section { padding: 100px 0; }
  section + section { border-top: 1px solid oklch(1 0 0 / 0.06); }

  /* ── TYPOGRAPHY ── */
  .section-label {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--amber);

    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 32px; height: 1px;
    background: var(--amber);
  }

  h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 32px;
  }

  h2 em { font-style: italic; color: var(--amber); }

  h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 40px;
  }

  p { margin-bottom: 20px; font-size: 1.05rem; color: oklch(0.88 0.01 80); }

  strong { font-weight: 700; color: var(--cream); }

  /* ── PULL QUOTE ── */
  .pull-quote {
    border-left: 3px solid var(--amber);
    padding: 24px 32px;
    margin: 48px 0;
    background: var(--amber-glow);
    border-radius: 0 8px 8px 0;
  }
  .pull-quote p {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--cream);
    margin: 0;
    line-height: 1.5;
  }

  /* ── STAT CALLOUT ── */
  .stat-band {
    background: var(--bg2);
    border: 1px solid oklch(1 0 0 / 0.08);
    border-radius: 16px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    gap: 48px;
    margin: 64px 0;
  }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    white-space: nowrap;
  }
  .stat-desc { font-size: 1.05rem; color: oklch(0.78 0.01 80); }
  .stat-desc strong { color: var(--cream); font-size: 1.15rem; }

  /* ── GRAPHIC CARDS ── */
  .graphic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 56px 0;
  }

  .graphic-card {
    background: var(--bg2);
    border: 1px solid oklch(1 0 0 / 0.08);
    border-radius: 16px;
    padding: 36px;
    position: relative;
    overflow: hidden;
  }

  .graphic-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--cream);
  }
  .graphic-card p { font-size: 0.95rem; margin: 0; }

  /* ── STEPS ── */
  .steps { display: flex; flex-direction: column; gap: 0; margin: 48px 0; }
  .step {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid oklch(1 0 0 / 0.06);
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--amber);
    line-height: 1;
    opacity: 0.6;
  }
  .step h3 { margin-top: 0; font-size: 1.25rem; }
  .step p { margin-bottom: 0; font-size: 0.95rem; }

  /* ── CONTRAST BLOCK ── */
  .contrast-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: 16px;
    overflow: hidden;
    margin: 56px 0;
  }
  .contrast-side {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .contrast-side.bad { background: oklch(0.18 0.04 260); }
  .contrast-side.good { background: oklch(0.18 0.04 60); }
  .contrast-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;

    opacity: 0.6;
  }
  .contrast-side.bad .contrast-label { color: var(--blue-bad); }
  .contrast-side.good .contrast-label { color: var(--amber); }
  .contrast-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-style: italic;
  }
  .contrast-side.bad .contrast-item { color: oklch(0.75 0.08 260); }
  .contrast-side.good .contrast-item { color: oklch(0.8 0.1 65); }

  /* ── CLOSING ── */
  .closing {
    text-align: center;
    padding: 140px 32px;
    position: relative;
    overflow: hidden;
  }

  .closing-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, oklch(0.32 0.1 60 / 0.15) 0%, transparent 70%);
  }

  .closing h2 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    max-width: 700px;
    margin: 0 auto 32px;
  }

  .closing p {
    max-width: 480px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--muted);
  }

  /* ── FOOTER ── */
  footer {
    text-align: center;
    padding: 40px 32px;
    font-size: 12px;
    color: oklch(0.45 0 0);
    border-top: 1px solid oklch(1 0 0 / 0.06);
  }

  /* ── SVG GRAPHICS ── */
  svg text { font-family: 'DM Sans', sans-serif; }

  /* ── REVEAL ANIMATIONS ── */
  /*
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: none;
  }
  */

  @media (max-width: 640px) {
    .graphic-grid { grid-template-columns: 1fr; }
    .contrast-block { grid-template-columns: 1fr; }
    .stat-band { flex-direction: column; gap: 24px; padding: 40px 28px; }
    .step { grid-template-columns: 52px 1fr; }
  }