:root {
  --bg: #F7F4EE;
  --fg: #1A1A1A;
  --accent: #C17B4A;
  --accent-light: #E8C9A8;
  --muted: #6B6560;
  --border: #E0D9CF;
  --card-bg: #EFECE4;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 900px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 32px;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.stat {
  padding-right: 48px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  margin-right: 48px;
}

/* WHAT */
.what {
  background: var(--fg);
  color: var(--bg);
  padding: 100px 40px;
}
.what-inner { max-width: 900px; }
.what-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 500;
}
.what-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 64px;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.what-card {
  background: rgba(255,255,255,0.05);
  padding: 40px 36px;
}
.what-card-num {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  font-weight: 600;
}
.what-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.what-card-body {
  font-size: 15px;
  color: rgba(247,244,238,0.65);
  line-height: 1.65;
  font-weight: 300;
}

/* FEATURES */
.features {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.features-inner { max-width: 900px; }
.features-headline {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 48px;
  font-weight: 500;
}
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.feature-item {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.feature-item:nth-child(odd) {
  padding-right: 48px;
  border-right: 1px solid var(--border);
}
.feature-item:nth-child(even) {
  padding-left: 48px;
}
.feature-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.feature-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  font-weight: 300;
}

/* PROOF */
.proof {
  background: var(--card-bg);
  padding: 100px 40px;
}
.proof-inner { max-width: 900px; }
.proof-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
.proof-body {
  max-width: 560px;
}
.proof-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 300;
}
.proof-body p:last-child { margin-bottom: 0; }

/* THIRTY */
.thirty {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.thirty-inner { max-width: 900px; }
.thirty-label {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 48px;
  font-weight: 500;
}
.thirty-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.thirty-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.thirty-item:last-child { border-bottom: none; }
.thirty-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 8px;
}
.thirty-text {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
}

/* CLOSING / PRICING */
.closing {
  padding: 100px 40px;
}
.closing-inner { max-width: 900px; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
}
.closing-pricing {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.pricing-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.pricing-period {
  font-size: 24px;
  font-weight: 600;
}
.pricing-note {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  font-weight: 300;
}
.closing-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 40px;
}
.closing-feature {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.closing-feature::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.closing-disclaimer {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 48px 40px;
}
.footer-inner { max-width: 900px; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 300;
  max-width: 400px;
}
.footer-copy {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px 48px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding-right: 0; }
  .stat-divider { display: none; }
  .what { padding: 72px 24px; }
  .what-grid { grid-template-columns: 1fr; }
  .what-card { padding: 28px 24px; }
  .features { padding: 72px 24px; }
  .features-list { grid-template-columns: 1fr; }
  .feature-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .feature-item:nth-child(even) { padding-left: 0; }
  .proof { padding: 72px 24px; }
  .thirty { padding: 72px 24px; }
  .closing { padding: 72px 24px; }
  .closing-features { grid-template-columns: 1fr; }
  .footer { padding: 40px 24px; }
  .pricing-amount { font-size: 44px; }
  .closing-pricing { flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 48px; }
  .what-headline { font-size: 32px; }
  .proof-headline { font-size: 28px; }
}