/* === BASE === */
:root {
  --bg: #F5EFE6;
  --bg-dark: #0F2E2E;
  --surface: #FFFFFF;
  --surface-2: #F0EAE0;
  --accent: #0F2E2E;
  --accent-warm: #C9922A;
  --text: #1A1A1A;
  --text-muted: #6B6455;
  --border: #DDD5C8;
}

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

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

/* === NAV === */
.nav {
  padding: 20px 40px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--accent);
  letter-spacing: -0.3px;
}
.nav-badge {
  font-size: 11px;
  font-weight: 500;
  background: var(--accent);
  color: var(--bg);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 40px 60px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* === DASHBOARD CARD === */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}
.dash-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
  box-shadow: 0 4px 24px rgba(15, 46, 46, 0.08), 0 1px 4px rgba(15, 46, 46, 0.04);
}
.dash-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
}
.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dash-dot.red { background: #FF5F57; }
.dash-dot.amber { background: #FFBD2E; }
.dash-dot.green { background: #28C840; }
.dash-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
  letter-spacing: 0.5px;
}
.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.metric {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px 10px;
  text-align: center;
}
.metric-val {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.metric-label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.dash-bars { margin-bottom: 16px; }
.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.bar-name {
  font-size: 12px;
  color: var(--text-muted);
  width: 70px;
  font-weight: 500;
}
.bar {
  flex: 1;
  height: 8px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-warm), #D4A843);
  border-radius: 4px;
}
.bar-pct {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  width: 34px;
  text-align: right;
}
.dash-footer {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.dash-update {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

/* === PROOF === */
.proof {
  padding: 40px 40px;
  background: var(--accent);
  color: var(--bg);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.proof-stat {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}
.proof-stat:first-child { padding-left: 0; }
.proof-stat:last-child { padding-right: 0; }
.proof-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 8px;
}
.proof-label {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.7);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(245, 239, 230, 0.15);
  flex-shrink: 0;
}

/* === FEATURES === */
.features {
  padding: 80px 40px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 12px;
}
.section-head {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  max-width: 520px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feat-card {
  background: var(--surface);
  padding: 36px 32px;
  border: 1px solid var(--border);
}
.feat-icon {
  color: var(--accent-warm);
  margin-bottom: 16px;
  display: flex;
}
.feat-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}
.feat-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === HOW === */
.how {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step {
  flex: 1;
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-right: none;
}
.step:last-of-type { border-right: 1px solid var(--border); }
.step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--accent-warm);
  padding-top: 32px;
  flex-shrink: 0;
}
.step-num {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-warm);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CLOSING === */
.closing {
  padding: 100px 40px;
  background: var(--accent);
  text-align: center;
}
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-head {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: var(--bg);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(245, 239, 230, 0.65);
}

/* === FOOTER === */
.footer {
  padding: 24px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.footer-tag {
  font-size: 12px;
  color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { justify-content: flex-start; }
  .hero-headline { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-stat { padding: 0; }
  .proof-divider { display: none; }
  .how-steps { flex-direction: column; }
  .step { border-right: 1px solid var(--border); border-bottom: none; }
  .step:last-of-type { border-bottom: 1px solid var(--border); }
  .step-arrow { display: none; }
  .hero { padding: 48px 20px 40px; }
  .features, .how { padding: 48px 20px; }
  .closing { padding: 60px 20px; }
  .proof { padding: 40px 20px; }
  .nav { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .dash-card { max-width: 100%; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .metric:last-child { grid-column: span 2; }
}