:root {
  --indigo: #1a1040;
  --indigo-light: #2a1c5c;
  --gold: #e8a838;
  --gold-light: #f5c978;
  --cream: #faf7f2;
  --cream-dark: #f0ece3;
  --ink: #1c1a2e;
  --ink-light: #4a4868;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 60px;
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26, 16, 64, 0.08);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--ink-light);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Shared Section Styles ── */
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 640px;
  font-weight: 400;
}

/* ── Hero ── */
.hero {
  background: var(--indigo);
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stars {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
}

.star {
  position: relative;
  animation: twinkle 3s ease-in-out infinite;
}

.star::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 50%;
  top: 30%;
  left: 50%;
}

.star:nth-child(odd)::after { animation: twinkle 2.5s ease-in-out infinite 0.5s; width: 3px; height: 3px; }
.star:nth-child(3n)::after { animation: twinkle 4s ease-in-out infinite 1s; }
.star:nth-child(5n)::after { background: var(--gold); }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(64px, 9vw, 120px);
  font-weight: 900;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero-headline em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 480px;
  font-weight: 300;
}

/* Journal card */
.journal-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(8px);
}

.journal-icon {
  color: var(--gold);
  margin-bottom: 20px;
}

.journal-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.jl {
  height: 1px;
  background: rgba(255,255,255,0.12);
}

.jl:nth-child(1) { width: 90%; }
.jl:nth-child(2) { width: 75%; }
.jl:nth-child(3) { width: 85%; }

.journal-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 12px;
}

.journal-author {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ── What It Is ── */
.what-it-is {
  padding: 120px 0;
  background: var(--cream);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.comparison-card {
  padding: 36px;
  border-radius: 16px;
}

.comparison-old {
  background: rgba(26, 16, 64, 0.04);
  border: 1px solid rgba(26, 16, 64, 0.1);
}

.comparison-new {
  background: var(--indigo);
  border: 1px solid rgba(232, 168, 56, 0.3);
}

.comp-header {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: 24px;
}

.comp-new-header {
  color: var(--gold);
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.comparison-old .comp-list li { color: var(--ink-light); }
.comparison-new .comp-list li { color: rgba(255,255,255,0.8); }

.comp-list svg { flex-shrink: 0; margin-top: 1px; }

/* ── Outcomes ── */
.outcomes {
  padding: 100px 0;
  background: var(--cream-dark);
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.outcome-card {
  padding: 36px 32px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(26, 16, 64, 0.06);
}

.outcome-number {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-stat {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.55;
  margin-bottom: 12px;
}

.outcome-note {
  font-size: 11px;
  color: var(--ink-light);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

.outcomes-statement {
  background: var(--indigo);
  border-radius: 20px;
  padding: 48px 56px;
  margin-top: 0;
}

.outcomes-statement p {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  max-width: 780px;
}

/* ── How It Works ── */
.how-it-works {
  padding: 120px 0;
  background: var(--cream);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.step {
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(26, 16, 64, 0.07);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 12px;
  line-height: 1.3;
}

.step-desc {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  background: var(--indigo);
  padding: 0;
  overflow: hidden;
}

.closing-inner {
  position: relative;
  padding: 120px 60px;
  max-width: 1120px;
  margin: 0 auto;
}

.closing-star-field {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cs {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: twinkle 3s ease-in-out infinite;
}

.cs-1 { top: 20%; left: 15%; animation-delay: 0s; }
.cs-2 { top: 40%; right: 10%; animation-delay: 1s; background: var(--gold); }
.cs-3 { top: 60%; left: 30%; animation-delay: 2s; width: 3px; height: 3px; }
.cs-4 { bottom: 30%; right: 20%; animation-delay: 0.5s; }
.cs-5 { top: 10%; right: 40%; animation-delay: 1.5s; background: var(--gold); }

.closing-content {
  position: relative;
  z-index: 2;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 24px;
  font-weight: 300;
}

.closing-vision {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  line-height: 1.65;
  max-width: 600px;
  opacity: 0.9;
}

/* ── Footer ── */
.footer {
  background: var(--indigo);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 60px 0 40px;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 60px;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-motto {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 400px;
}

.footer-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 40px 0 32px;
}

.footer-bottom {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.02em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 48px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0 60px;
  }

  .journal-card { display: none; }

  .section-inner { padding: 0 24px; }

  .what-it-is, .how-it-works { padding: 80px 0; }

  .comparison-grid { grid-template-columns: 1fr; }

  .outcomes-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr 1fr; }

  .closing-inner { padding: 80px 24px; }

  .footer-inner { padding: 0 24px; }

  .outcomes-statement { padding: 36px 28px; }
  .outcomes-statement p { font-size: 18px; }
}

@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .hero-headline { font-size: 56px; }
  .section-headline { font-size: 32px; }
}