:root {
  --bg: #FAFAF8;
  --bg-alt: #F0EDE8;
  --fg: #1A1A1A;
  --fg-muted: #6B6B6B;
  --accent: #1B4332;
  --accent-light: #2D6A4F;
  --accent-pale: #D8EAE0;
  --sand: #D4A96A;
  --sand-light: #F0E6D4;
  --white: #FFFFFF;
  --radius: 12px;
  --radius-sm: 8px;
}

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

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 12px;
  color: var(--fg-muted);
  background: var(--bg-alt);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 48px 100px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 480px;
}

/* Dashboard Mock */
.dashboard-mock {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}
.mock-topbar {
  background: var(--fg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mock-dots {
  display: flex;
  gap: 6px;
}
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mock-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin: 0 auto;
}
.mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-card {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mock-card-label {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 6px;
}
.mock-card-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 4px;
}
.mock-card-delta {
  font-size: 10px;
  color: var(--accent);
  font-weight: 500;
}
.mock-chart {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.mock-chart-label {
  font-size: 10px;
  color: var(--fg-muted);
  font-weight: 500;
  margin-bottom: 12px;
}
.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}
.mock-bar {
  flex: 1;
  background: var(--accent-pale);
  border-radius: 4px 4px 0 0;
  height: var(--height, 50%);
}
.mock-bar.active { background: var(--accent); }

/* SHARED SECTION STYLES */
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
}

/* PROBLEM */
.problem {
  background: var(--fg);
  padding: 100px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem .section-label { color: var(--sand); }
.problem .section-headline { color: var(--white); margin-bottom: 60px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.problem-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px;
}
.problem-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--sand);
}
.problem-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.problem-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* SOLUTION */
.solution { padding: 100px 48px; }
.solution-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.solution-text .section-headline { margin-bottom: 20px; }
.solution-text > p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}
.solution-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.solution-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
}
.check {
  width: 22px;
  height: 22px;
  background: var(--accent-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* Funnel mock */
.funnel-mock {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
}
.funnel-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
}
.funnel-stage {
  display: grid;
  grid-template-columns: 120px 1fr 40px;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.funnel-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}
.funnel-bar {
  height: 8px;
  background: var(--bg-alt);
  border-radius: 4px;
  position: relative;
}
.funnel-bar::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: var(--fill, 50%);
  background: var(--color, var(--accent));
  border-radius: 4px;
}
.funnel-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg);
  text-align: right;
}
.funnel-rate {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bg-alt);
}

/* FEATURES */
.features { padding: 100px 48px; background: var(--bg-alt); }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features .section-headline { margin-bottom: 60px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.05);
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* OUTCOMES */
.outcomes { padding: 100px 48px; background: var(--accent); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-content { margin-bottom: 60px; }
.outcomes .section-label { color: var(--sand); }
.outcomes .section-headline { color: var(--white); margin-bottom: 16px; }
.outcomes-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  line-height: 1.6;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 36px;
}
.outcome-num {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 12px;
}
.outcome-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.outcome-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* CLOSING */
.closing { padding: 100px 48px; }
.closing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 32px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}
.footer-note {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-built {
  font-size: 12px;
  color: rgba(0,0,0,0.3);
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 80px;
  }
  .hero-visual { order: -1; }
  .problem { padding: 80px 24px; }
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .solution { padding: 80px 24px; }
  .solution-inner { grid-template-columns: 1fr; gap: 48px; }
  .features { padding: 80px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 80px 24px; }
  .outcomes-grid { grid-template-columns: 1fr; gap: 12px; }
  .closing { padding: 80px 24px; }
  .footer { padding: 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .mock-row { grid-template-columns: 1fr 1fr; }
  .mock-row .mock-card:last-child { display: none; }
}