:root {
  --bg: #F8F5F0;
  --bg-alt: #F0EDE7;
  --fg: #1A1A18;
  --fg-muted: #6B6B63;
  --sage: #6B8E6B;
  --sage-light: #9BBF9B;
  --amber: #D4924A;
  --amber-light: #EAC07A;
  --cream: #FAF8F4;
  --border: #E0DDD6;
}

* { 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;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
  gap: 0;
}
.hero-left {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.stat {}
.stat-number {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--sage);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 90px;
}

.hero-right {
  position: relative;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
}
.hero-orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 40% 40%, var(--sage-light) 0%, var(--sage) 60%, #4A6B4A 100%);
  opacity: 0.18;
  top: -80px;
  right: -60px;
}
.hero-orb-2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, var(--amber) 0%, var(--amber-light) 100%);
  opacity: 0.15;
  bottom: 60px;
  left: 40px;
}
.hero-orb-3 {
  width: 120px;
  height: 120px;
  background: var(--sage);
  opacity: 0.12;
  bottom: 160px;
  right: 140px;
}

.hero-card {
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 20px;
  padding: 36px 40px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
}
.card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.card-headline {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 24px;
}
.card-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.option-chip {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
}
.option-chip:first-child {
  background: var(--sage);
  border-color: var(--sage);
  color: white;
}
.card-motivation {
  font-size: 13px;
  color: var(--sage);
  font-style: italic;
  line-height: 1.5;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* Pain */
.pain {
  background: var(--fg);
  color: var(--cream);
  padding: 100px 60px;
}
.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pain-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber-light);
  margin-bottom: 28px;
}
.pain-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 64px;
  max-width: 700px;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}
.pain-col h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sage-light);
  margin-bottom: 24px;
  font-weight: 500;
}
.pain-list {
  list-style: none;
}
.pain-list li {
  font-size: 15px;
  color: rgba(250,248,244,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  line-height: 1.5;
}
.pain-quote {
  padding: 40px 0 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  color: var(--sage);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}
.pain-quote p {
  font-size: 18px;
  color: var(--cream);
  line-height: 1.65;
  max-width: 600px;
  font-style: italic;
}

/* What It Does */
.what {
  background: var(--bg);
  padding: 100px 60px;
}
.what-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 24px;
}
.what-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.2;
  color: var(--fg);
  max-width: 560px;
  margin-bottom: 72px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}
.what-item {
  padding: 48px 40px 48px 0;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.what-item:nth-child(2n) {
  border-right: none;
  padding-left: 40px;
}
.what-item:nth-child(3),
.what-item:nth-child(4) {
  border-bottom: none;
}
.what-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
}
.what-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  line-height: 1.3;
}
.what-item p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* How It Works */
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--cream);
}
.how-left {
  padding: 100px 60px;
  border-right: 1px solid var(--border);
}
.how-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--sage);
  margin-bottom: 24px;
}
.how-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 60px;
  max-width: 420px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
}
.step-dot::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 5px;
  width: 2px;
  height: calc(100% + 12px);
  background: var(--sage);
  opacity: 0.2;
}
.step:last-child .step-dot::after { display: none; }
.step-body h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 6px;
}
.step-body p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

.how-right {
  padding: 100px 60px;
  display: flex;
  align-items: center;
}
.quote-box {
  background: var(--fg);
  border-radius: 20px;
  padding: 48px;
}
.quote-text {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 24px;
}
.quote-sub {
  font-size: 14px;
  color: rgba(250,248,244,0.5);
  line-height: 1.6;
}

/* Closing */
.closing {
  background: var(--sage);
  padding: 100px 60px;
}
.closing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: white;
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 64px;
  max-width: 600px;
}
.closing-vision {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.vision-line {
  width: 4px;
  min-height: 120px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 4px;
}
.vision-text p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-style: italic;
}

/* Footer */
.footer {
  background: var(--fg);
  color: var(--cream);
  padding: 48px 60px;
  text-align: center;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 12px;
}
.footer-sub {
  font-size: 14px;
  color: rgba(250,248,244,0.5);
  margin-bottom: 16px;
}
.footer-legal {
  font-size: 12px;
  color: rgba(250,248,244,0.3);
}

/* Responsive */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 320px; }
  .hero-left { padding: 60px 32px; }
  .nav { padding: 24px 32px; }
  .pain { padding: 80px 32px; }
  .what { padding: 80px 32px; }
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-grid { grid-template-columns: 1fr; }
  .how { grid-template-columns: 1fr; }
  .how-left { border-right: none; padding: 80px 32px; }
  .how-right { padding: 60px 32px; }
  .closing { padding: 80px 32px; }
  .footer { padding: 40px 32px; }
  .hero-stats { gap: 24px; }
  .stat-number { font-size: 28px; }
  .what-item { padding: 40px 0; border-right: none; }
  .what-item:nth-child(2n) { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .closing-vision { flex-direction: column; gap: 16px; }
  .vision-line { display: none; }
}