:root {
  --bg: #F8F5F0;
  --bg-alt: #FFFFFF;
  --fg: #0D3B3E;
  --fg-muted: #4A6B70;
  --accent: #F4A940;
  --accent-dark: #D4860E;
  --border: #DDD8D0;
  --surface: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  border-left: 1px solid var(--border);
  padding-left: 16px;
}

/* HERO */
.hero {
  padding: 96px 0 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.7;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-left: 2px solid var(--accent);
  padding-left: 40px;
}
.stat-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* PAIN */
.pain {
  background: var(--fg);
  color: #fff;
  padding: 96px 0;
}
.pain-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
}
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.pain-card {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 40px;
}
.pain-quote {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 16px;
}
.pain-attribution {
  font-size: 0.85rem;
  opacity: 0.5;
}
.pain-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pain-item:last-child { border-bottom: none; }
.pain-x {
  color: #FF6B6B;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-item p { font-size: 0.95rem; line-height: 1.5; }

/* FEATURES */
.features { padding: 96px 0; }
.features-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.feature {
  background: var(--surface);
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature:nth-child(3n) { border-right: none; }
.feature:nth-child(n+4) { border-bottom: none; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.feature p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step { position: relative; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.step p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 96px 0; }
.pricing-inner { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px;
}
.pricing-card--monthly {
  border-color: var(--fg);
  position: relative;
}
.pricing-card--monthly::before {
  content: 'Popular';
  position: absolute;
  top: -1px;
  right: 40px;
  background: var(--accent);
  color: var(--fg);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 0 0 4px 4px;
}
.pricing-header { margin-bottom: 20px; }
.pricing-header h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
}
.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1;
}
.pricing-per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-list li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.pricing-note {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* CLOSING */
.closing {
  background: var(--fg);
  color: #fff;
  padding: 96px 0;
}
.closing-inner { max-width: 700px; margin: 0 auto; padding: 0 32px; text-align: center; }
.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.closing p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-verticals {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-top: 24px;
  letter-spacing: 0.02em;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--fg-muted); margin-top: 6px; }
.footer-meta p { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-stats { border-left: none; border-top: 2px solid var(--accent); padding-left: 0; padding-top: 32px; flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(3n) { border-right: 1px solid var(--border); }
  .feature:nth-child(2n) { border-right: none; }
  .feature:nth-child(n+3) { border-bottom: 1px solid var(--border); }
  .feature:nth-child(n+5) { border-bottom: none; }
  .step-row { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding: 64px 0 56px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--border); }
  .feature:last-child { border-bottom: none; }
  .nav-inner { padding: 16px 20px; }
  .hero-inner, .pain-inner, .features-inner, .how-inner, .pricing-inner, .closing-inner, .footer-inner { padding: 0 20px; }
}