:root {
  --bg: #0D0D0D;
  --bg-alt: #161616;
  --surface: #1F1F1F;
  --accent: #FF4D00;
  --accent-dim: rgba(255, 77, 0, 0.15);
  --text: #FFFFFF;
  --text-muted: #999999;
  --border: #2A2A2A;
}

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

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

/* Nav */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Hero */
.hero {
  padding: 96px 48px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-headline br { display: block; }
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 64px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 48px;
}
.stat {
  flex: 1;
  padding-right: 48px;
}
.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 48px;
  flex-shrink: 0;
}

/* Proof */
.proof {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 48px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
}
.proof-list {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-list span {
  font-size: 15px;
  color: var(--text);
  font-weight: 500;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* How */
.how {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  font-weight: 400;
}
.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 64px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 20px;
}
.step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-weight: 400;
}
.step-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing */
.pricing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 48px;
}
.pricing-header {
  max-width: 1100px;
  margin: 0 auto 56px;
}
.pricing .section-title { color: var(--text); }
.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
}
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--accent-dim);
}
.card-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.card-price {
  font-family: 'DM Serif Display', serif;
  font-size: 52px;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  line-height: 1;
}
.card-price span {
  font-size: 20px;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}
.card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}
.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}
.pricing-note {
  max-width: 1100px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* Testimonials */
.testimonials {
  padding: 96px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonials-header {
  margin-bottom: 56px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testimonial {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
}
.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-source {
  font-size: 13px;
  color: var(--text-muted);
}

/* Closing */
.closing {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 96px 48px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
  border-left: 3px solid var(--accent);
  padding-left: 48px;
}
.closing-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 400;
}
.closing-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 56px; }
  .hero-stats { flex-direction: column; gap: 32px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .how, .pricing, .testimonials, .closing { padding: 64px 24px; }
  .closing-inner { padding-left: 24px; }
}