:root {
  --bg: #0D1F18;
  --surface: #132619;
  --surface-2: #1A3524;
  --accent: #E8A53B;
  --accent-dim: rgba(232, 165, 59, 0.12);
  --text: #F2EDE4;
  --text-muted: #8B9F90;
  --border: rgba(242, 237, 228, 0.08);
}

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

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

/* Nav */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* Hero */
.hero { padding: 80px 40px 100px; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--accent);
}
.hero-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-stats { display: flex; gap: 32px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); }

/* Call Widget */
.call-widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.call-widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.call-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}
.call-transcript { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.transcript-row { display: flex; gap: 10px; align-items: flex-start; }
.speaker {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  margin-top: 2px;
}
.agent .speaker { background: var(--accent-dim); color: var(--accent); }
.user .speaker { background: rgba(139, 159, 144, 0.15); color: var(--text-muted); }
.transcript-row p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text);
}
.user p { color: var(--text-muted); }
.call-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
}
.badge-success {
  background: rgba(74, 222, 128, 0.12);
  color: #4ade80;
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* Proof strip */
.proof {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.proof-inner { max-width: 1200px; margin: 0 auto; }
.proof-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}
.proof-headline strong { color: var(--text); }

/* Features */
.features { padding: 100px 40px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 40px;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* How It Works */
.how { padding: 80px 40px 100px; background: var(--surface); }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; max-width: 600px; }

/* Voice Matters */
.voice-matters {
  padding: 100px 40px;
  background: linear-gradient(135deg, var(--bg) 0%, #111D14 100%);
}
.voice-matters-inner { max-width: 800px; margin: 0 auto; }
.voice-matters-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: var(--text);
}
.voice-matters-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.voice-matters-content p:last-child { margin-bottom: 0; }
.voice-matters-content strong { color: var(--accent); }

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 28px;
}
.closing p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Footer */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); }
.footer-note { font-size: 0.85rem; color: var(--text-muted); text-align: right; }
.footer-note strong { color: var(--text); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-right { order: -1; }
  .features-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .footer-note { text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .features { padding: 60px 24px; }
  .how { padding: 60px 24px; }
  .voice-matters { padding: 60px 24px; }
  .closing { padding: 60px 24px; }
  .nav { padding: 16px 24px; }
  .feature-card { padding: 28px; }
}