:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EDE6;
  --bg-dark: #0B1120;
  --fg: #0B1120;
  --fg-inv: #FAF8F5;
  --fg-muted: #6B7280;
  --accent: #B8923A;
  --accent-light: #D4AF6A;
  --border: #E5E0D8;
  --border-dark: #1E2D42;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

/* HERO */
.hero {
  background: var(--bg-dark);
  color: var(--fg-inv);
  padding: 160px 40px 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.hero-headline {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 28px;
  color: var(--fg-inv);
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  line-height: 1.65;
  color: #A8B4C4;
  max-width: 680px;
  margin-bottom: 64px;
}

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border-dark);
  padding-top: 40px;
}

.hero-stat {
  padding-right: 48px;
}

.hero-stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 8px;
}

.hero-stat-label {
  display: block;
  font-size: 13px;
  color: #6B7F91;
  line-height: 1.4;
  max-width: 180px;
}

.hero-stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-dark);
  margin-right: 48px;
  flex-shrink: 0;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg);
  padding: 120px 40px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-label, .mechanism-label, .outcomes-label, .pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.manifesto-headline {
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 40px;
  line-height: 1.15;
}

.manifesto-body p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 24px;
  line-height: 1.75;
}

.manifesto-insight {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-top: 48px;
}

.manifesto-insight-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.55;
}

/* MECHANISM */
.mechanism {
  background: var(--bg-alt);
  padding: 120px 40px;
}

.mechanism-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mechanism-headline {
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 72px;
  max-width: 500px;
}

.mechanism-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.mech-step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.6;
}

.mech-step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.mech-step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* OUTCOMES */
.outcomes {
  background: var(--bg);
  padding: 120px 40px;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 64px;
  max-width: 560px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.outcome-item {
  background: var(--bg);
  padding: 40px 36px;
}

.outcome-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.outcome-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PRICING */
.pricing {
  background: var(--bg-dark);
  color: var(--fg-inv);
  padding: 120px 40px;
}

.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pricing .pricing-label {
  color: var(--accent-light);
}

.pricing-headline {
  font-size: clamp(28px, 3.5vw, 44px);
  margin-bottom: 64px;
  max-width: 520px;
  color: var(--fg-inv);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dark);
  border: 2px solid var(--border-dark);
  margin-bottom: 32px;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 36px;
}

.pricing-card-featured {
  background: rgba(184, 146, 58, 0.12);
  border: 1px solid var(--accent);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--fg-inv);
  margin-bottom: 12px;
  line-height: 1;
}

.pricing-period {
  font-size: 18px;
  font-weight: 400;
  color: #6B7F91;
}

.pricing-desc {
  font-size: 14px;
  color: #8899AA;
  line-height: 1.55;
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  font-size: 14px;
}

.pricing-features li {
  color: #A8B4C4;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-note {
  font-size: 13px;
  color: #6B7F91;
  text-align: center;
}

/* CLOSING */
.closing {
  background: var(--accent);
  padding: 100px 40px;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-size: clamp(28px, 3.5vw, 46px);
  color: var(--bg-dark);
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.closing-sub {
  font-size: 18px;
  color: rgba(11,17,32,0.7);
  font-weight: 400;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: var(--bg-dark);
  color: var(--fg-inv);
  padding: 48px 40px;
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg-inv);
}

.footer-tagline {
  font-size: 13px;
  color: #6B7F91;
  margin-top: 4px;
}

.footer-copy {
  font-size: 13px;
  color: #4A5568;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 120px 24px 80px; }
  .hero-stat-row { flex-direction: column; gap: 28px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding-right: 0; border-bottom: 1px solid var(--border-dark); padding-bottom: 28px; }

  .mechanism-steps { grid-template-columns: 1fr; gap: 40px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }

  .manifesto, .mechanism, .outcomes, .pricing { padding: 80px 24px; }
  .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .hero-sub { font-size: 16px; }
  .hero-stat-number { font-size: 32px; }
}