:root {
  --bg: #f7f3ec;
  --bg-alt: #eee9e0;
  --fg: #1a1a1a;
  --fg-muted: #5a5a5a;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --tile-1: #f59e0b;
  --tile-2: #1a1a1a;
  --tile-3: #d97706;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  border-bottom: 1px solid rgba(26,26,26,0.1);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  width: 40px;
  height: 40px;
  background: var(--fg);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}
.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  font-weight: 400;
}
.nav-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 60px 100px;
  align-items: center;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin-top: 28px;
  max-width: 480px;
  font-weight: 300;
}
.hero-pricing-note {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg);
}

/* VIDEO GRID */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 8px;
}
.video-tile {
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 140px;
  position: relative;
}
.tile-1 { background: var(--tile-1); }
.tile-2 { background: var(--tile-2); }
.tile-3 { background: var(--tile-3); }
.tile-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.tile-1 .tile-label, .tile-3 .tile-label { color: rgba(255,255,255,0.6); }
.tile-2 .tile-label { color: rgba(255,255,255,0.5); }
.tile-bar {
  background: rgba(255,255,255,0.25);
  border-radius: 4px;
  height: 8px;
}
.bar-1 { width: 70%; }
.bar-2 { width: 45%; }
.bar-3 { width: 85%; }
.bar-4 { width: 55%; }
.bar-5 { width: 60%; }
.tile-2 .tile-bar { background: rgba(255,255,255,0.15); }

/* SECTION COMMON */
.section-header {
  margin-bottom: 48px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
}
.howitworks .section-label { color: var(--accent); }
.howitworks .section-title { color: var(--bg); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 20px;
  font-style: italic;
}
.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--bg);
}
.step-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(247,243,236,0.65);
  font-weight: 300;
}

/* WHO IT'S FOR */
.whositsfor { padding: 100px 60px; }
.niche-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.niche-card {
  background: var(--bg-alt);
  padding: 36px 32px;
}
.niche-icon {
  width: 32px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 20px;
}
.niche-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.niche-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-muted);
  font-weight: 300;
}

/* WHY IT WORKS */
.whyitworks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 100px 60px;
  background: var(--bg-alt);
  align-items: center;
}
.why-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.why-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 16px;
}
.stat-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
.stat-value {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--accent);
  font-style: italic;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 140px;
}
.testimonial-block {
  border: 1px solid rgba(26,26,26,0.15);
  padding: 40px;
  border-radius: 4px;
}
.testimonial-quote {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-source {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* PROCESS */
.process { padding: 100px 60px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.process-week {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.process-step {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}
.process-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fg-muted);
  font-weight: 300;
}

/* CLOSING */
.closing {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 60px;
  text-align: center;
}
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 18px;
  line-height: 1.65;
  color: rgba(247,243,236,0.65);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* FOOTER */
.footer {
  padding: 40px 60px;
  border-top: 1px solid rgba(26,26,26,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-name {
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
  margin-left: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .nav-tagline { display: none; }
  .hero { grid-template-columns: 1fr; padding: 60px 24px 80px; gap: 40px; }
  .hero-right { order: -1; }
  .howitworks { padding: 80px 24px; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .whositsfor { padding: 80px 24px; }
  .niche-grid { grid-template-columns: 1fr; }
  .whyitworks { grid-template-columns: 1fr; padding: 80px 24px; gap: 40px; }
  .stat-row { flex-direction: column; gap: 24px; }
  .process { padding: 80px 24px; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .footer-tagline { margin-left: 0; margin-top: 4px; }
}