:root {
  --bg: #0e1117;
  --bg-alt: #141820;
  --fg: #f0ece6;
  --fg-muted: #8a8a8a;
  --accent: #e8a23c;
  --accent-dim: #c4842a;
  --border: #1e2430;
  --card-bg: #111620;
}

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

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

/* NAV */
.nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* HERO */
.hero {
  padding: 7rem 2rem 5rem;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.hero-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  padding: 0 2rem 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  max-width: 110px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  margin: 0 2rem;
}

/* SECTION HEADINGS */
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin-bottom: 3rem;
}

/* OUTCOMES */
.outcomes {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
}
.outcome-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1rem;
}
.outcome-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.6rem;
}
.outcome-body {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.process-inner {
  max-width: 800px;
  margin: 0 auto;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.step-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.2rem;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent-dim);
}
.pricing-badge {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  border-radius: 20px;
  padding: 0.2rem 0.7rem;
  display: inline-block;
  margin-bottom: 1rem;
  font-weight: 600;
}
.pricing-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 0.8rem;
}
.pricing-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pricing-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}
.pricing-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-bottom: 1.8rem;
}
.pricing-features {
  list-style: none;
  margin-bottom: 1.8rem;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-features li::before {
  content: '—';
  color: var(--accent);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.pricing-setup {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding-top: 0.5rem;
}

/* MANIFESTO */
.manifesto {
  padding: 6rem 2rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 720px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.8vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--fg);
  margin-bottom: 2rem;
  letter-spacing: -0.015em;
}
.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

/* FOOTER */
.footer {
  padding: 4rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .hero-headline { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 1.2rem; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .outcomes, .process, .pricing, .manifesto { padding: 3.5rem 1.5rem; }
  .manifesto { padding: 4rem 1.5rem; }
  .footer { padding: 3rem 1.5rem; }
}