:root {
  --bg: #F7F5F0;
  --bg-alt: #EEEBE3;
  --fg: #1C2B3A;
  --fg-muted: #5A6A7A;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --surface: #FFFFFF;
  --border: rgba(28,43,58,0.12);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* NAV */
.nav { padding: 1.25rem 2rem; border-bottom: 1px solid var(--border); background: var(--bg); }
.nav-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--serif); font-size: 1.5rem; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.8rem; font-weight: 500; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* HERO */
.hero { padding: 5rem 2rem 5rem; position: relative; overflow: hidden; }
.hero-bg-shape {
  position: absolute; top: -80px; right: -120px; width: 600px; height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 760px; margin: 0 auto; position: relative; }
.hero-eyebrow { font-size: 0.8rem; font-weight: 600; color: var(--accent-dark); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
.hero-headline {
  font-family: var(--serif); font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.1; color: var(--fg); margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero-headline em { font-style: italic; color: var(--accent-dark); }
.hero-lede { font-size: 1.15rem; color: var(--fg-muted); max-width: 580px; margin-bottom: 2rem; line-height: 1.7; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.tag { background: var(--fg); color: var(--bg); font-size: 0.78rem; font-weight: 500; padding: 0.4rem 0.85rem; border-radius: 999px; }

/* PROBLEM */
.problem { background: var(--fg); color: var(--bg); padding: 4rem 2rem; }
.problem-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.problem-stat { display: flex; flex-direction: column; gap: 0.5rem; }
.stat-number { font-family: var(--serif); font-size: 3.5rem; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.95rem; color: rgba(247,245,240,0.7); line-height: 1.5; }

/* FEATURES */
.features { padding: 5rem 2rem; }
.features-inner { max-width: 1100px; margin: 0 auto; }
.section-title { font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; margin-bottom: 3rem; letter-spacing: -0.01em; }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(28,43,58,0.08); }
.feature-icon { color: var(--accent-dark); margin-bottom: 1.25rem; }
.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }

/* HOW IT WORKS */
.how-it-works { background: var(--bg-alt); padding: 5rem 2rem; }
.how-inner { max-width: 900px; margin: 0 auto; }
.steps { display: flex; align-items: center; gap: 0; margin-top: 3rem; }
.step { flex: 1; }
.step-number { width: 48px; height: 48px; background: var(--accent); color: var(--fg); font-family: var(--serif); font-size: 1.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; margin-bottom: 1rem; font-weight: 400; }
.step-content h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.step-connector { flex: 0 0 40px; height: 1px; background: var(--border); margin: 0 1rem; margin-bottom: 3.5rem; }

/* OUTCOMES */
.outcomes { padding: 5rem 2rem; }
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.outcome { display: flex; flex-direction: column; gap: 0.5rem; }
.outcome-number { font-family: var(--serif); font-size: 2.8rem; color: var(--fg); line-height: 1; }
.outcome-label { font-size: 0.85rem; color: var(--fg-muted); font-weight: 500; line-height: 1.4; }

/* TESTIMONIALS / VERTICALS */
.testimonials { background: var(--bg-alt); padding: 5rem 2rem; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.verticals { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.vertical-card { background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 1.5rem; }
.vertical-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
.vertical-card h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.5rem; }
.vertical-card p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.55; }

/* CLOSING */
.closing { background: var(--fg); color: var(--bg); padding: 6rem 2rem; text-align: center; }
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.closing-body { font-size: 1.1rem; color: rgba(247,245,240,0.75); line-height: 1.7; margin-bottom: 1.5rem; }
.closing-sub { font-size: 0.9rem; color: var(--accent); font-weight: 500; }

/* FOOTER */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-logo { font-family: var(--serif); font-size: 1.25rem; }
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-note { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .verticals { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; gap: 2rem; }
  .step-connector { display: none; }
}
@media (max-width: 600px) {
  .hero { padding: 3.5rem 1.5rem 3.5rem; }
  .features, .how-it-works, .outcomes, .testimonials { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .verticals { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .stat-number { font-size: 2.5rem; }
}