:root {
  --bg: #f8f9fb;
  --bg2: #f1f3f7;
  --fg: #0f172a;
  --fg2: #475569;
  --fg3: #94a3b8;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --card-border: #e2e8f0;
  --success: #10b981;
  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 5px;
}

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

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(--card-border);
  background: #fff;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.nav-logo-accent { color: var(--accent); }
.nav-tag {
  font-size: 12px;
  color: var(--fg3);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 520px; }
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg2);
  line-height: 1.6;
  max-width: 440px;
}

/* DASHBOARD CARD */
.hero-visual { position: relative; }
.dashboard-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.3);
}
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dash-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
}
.dash-status {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
}
.dash-status.in-progress {
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
}
.dash-metrics {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.metric {
  flex: 1;
  text-align: center;
}
.metric-val {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.metric-denom {
  font-size: 16px;
  font-weight: 500;
  color: #64748b;
}
.metric-label {
  font-size: 11px;
  color: #64748b;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-recommendations { margin-bottom: 20px; }
.rec-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
  margin-bottom: 12px;
}
.rec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: #cbd5e1;
}
.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.dash-field-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.field-chip {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #94a3b8;
}
.field-chip.flag {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent);
  border-color: rgba(245, 158, 11, 0.3);
}

/* PROBLEM */
.problem {
  background: var(--navy);
  padding: 100px 40px;
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.problem-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.problem-body {
  font-size: 18px;
  color: #94a3b8;
  max-width: 640px;
  margin-bottom: 60px;
  line-height: 1.7;
}
.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 48px;
}
.pstat-val {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 12px;
}
.pstat-text {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.features-header { margin-bottom: 60px; }
.features-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.features-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.features-sub {
  font-size: 18px;
  color: var(--fg2);
  max-width: 560px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--card-border);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: #fff;
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #f8fafc; }
.feat-icon {
  width: 40px;
  height: 40px;
  background: var(--bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  margin-bottom: 20px;
}
.feat-title {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
  margin-bottom: 16px;
}
.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.feat-tags span {
  font-size: 11px;
  font-weight: 500;
  color: var(--fg3);
  background: var(--bg2);
  padding: 3px 8px;
  border-radius: 4px;
}

/* WHO IT'S FOR */
.whoitsfor {
  background: #f1f3f7;
  padding: 80px 40px;
}
.whoitsfor-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.whoitsfor-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.whoitsfor-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 48px;
}
.whoitsfor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.who-card {
  background: #fff;
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--card-border);
}
.who-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 18px;
}
.who-title {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.who-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
}
.who-cities {
  border-top: 1px solid var(--card-border);
  padding-top: 28px;
}
.who-cities-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 10px;
}
.city-list {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-list span + span::before {
  content: ' · ';
  color: var(--fg3);
}

/* OUTCOMES */
.outcomes {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
}
.outcomes-header { margin-bottom: 60px; }
.outcomes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.outcomes-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.8px;
  line-height: 1.1;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.outcome-card {
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 36px;
}
.outcome-stat {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.outcome-num {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -2px;
  line-height: 1;
}
.outcome-unit {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--fg3);
}
.outcome-desc {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  background: var(--navy);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-closing p {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.closing-closing p:last-child { color: var(--accent); }

/* FOOTER */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 32px 40px;
  background: #fff;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.footer-logo-accent { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--fg3);
  margin-top: 2px;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg3);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 24px 40px; }
  .hero-visual { display: none; }
  .problem-stats { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .whoitsfor-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .problem, .closing { padding: 60px 24px; }
  .features, .outcomes { padding: 60px 24px; }
  .whoitsfor { padding: 60px 24px; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav { padding: 16px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}