:root {
  --bg: #0d0d0d;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --border: #2a2a2a;
  --text: #f0ede8;
  --text-muted: #8a8680;
  --accent: #f4a127;
  --accent-dim: rgba(244, 161, 39, 0.12);
  --green: #3ecf6e;
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

/* Nav */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.5px;
}
.nav-tag {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--surface-2);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 32px 80px;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(244, 161, 39, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(244, 161, 39, 0.04) 0%, transparent 50%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.7;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(244, 161, 39, 0.2);
  letter-spacing: 0.3px;
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 12px;
  border: 1.5px solid var(--border);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(244, 161, 39, 0.08);
}
.phone-screen {
  background: #0a0a0a;
  border-radius: 26px;
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 480px;
}
.call-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.call-avatar {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid rgba(244,161,39,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.call-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.call-name { font-size: 13px; font-weight: 600; color: var(--text); }
.call-number { font-size: 11px; color: var(--text-muted); }
.call-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}
.call-status.connected {
  background: rgba(62, 207, 110, 0.12);
  color: var(--green);
  border: 1px solid rgba(62, 207, 110, 0.2);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Waveform */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  padding: 0 4px;
}
.wave-bar {
  flex: 1;
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.7;
  animation: wave 1.2s ease-in-out infinite;
}
.wave-bar:nth-child(1) { animation-delay: 0s; height: 30%; }
.wave-bar:nth-child(2) { animation-delay: 0.1s; height: 60%; }
.wave-bar:nth-child(3) { animation-delay: 0.2s; height: 80%; }
.wave-bar:nth-child(4) { animation-delay: 0.3s; height: 50%; }
.wave-bar:nth-child(5) { animation-delay: 0.15s; height: 90%; }
.wave-bar:nth-child(6) { animation-delay: 0.25s; height: 40%; }
.wave-bar:nth-child(7) { animation-delay: 0.05s; height: 70%; }
.wave-bar:nth-child(8) { animation-delay: 0.35s; height: 55%; }
.wave-bar:nth-child(9) { animation-delay: 0.2s; height: 85%; }
.wave-bar:nth-child(10) { animation-delay: 0.1s; height: 45%; }
.wave-bar:nth-child(11) { animation-delay: 0.3s; height: 65%; }
.wave-bar:nth-child(12) { animation-delay: 0.05s; height: 75%; }
.wave-bar:nth-child(13) { animation-delay: 0.15s; height: 50%; }
.wave-bar:nth-child(14) { animation-delay: 0.25s; height: 60%; }
.wave-bar:nth-child(15) { animation-delay: 0s; height: 35%; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.4); }
}

/* Transcript */
.transcript {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.transcript-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.transcript-line.ai { flex-direction: row; }
.transcript-line.human { flex-direction: row-reverse; }
.speaker {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.transcript-line.ai .speaker {
  background: var(--accent-dim);
  color: var(--accent);
}
.transcript-line.human .speaker {
  background: rgba(255,255,255,0.08);
  color: var(--text-muted);
}
.transcript-line p {
  font-size: 11.5px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: 10px;
}
.transcript-line.ai p {
  background: var(--surface-2);
  color: var(--text);
  border-bottom-left-radius: 3px;
}
.transcript-line.human p {
  background: rgba(244, 161, 39, 0.15);
  color: var(--text);
  border-bottom-right-radius: 3px;
}

/* Call actions */
.call-actions {
  display: flex;
  gap: 10px;
  padding-top: 8px;
}
.action-btn {
  flex: 1;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.action-btn.end {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.25);
  color: #ef4444;
}
.action-btn:hover { background: var(--surface-2); }

/* Lead badge */
.lead-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
}
.lead-badge-inner {
  background: #111;
  border: 1.5px solid var(--green);
  border-radius: 24px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
}

/* Problem / stats */
.problem { padding: 80px 32px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.stat-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* What / features */
.what { padding: 100px 32px; }
.what-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.what h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  max-width: 560px;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid rgba(244,161,39,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Pricing */
.pricing { padding: 100px 32px; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.pricing .section-label { margin-bottom: 16px; }
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  text-align: left;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.pricing-card h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}
.price-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--text);
}
.price-period { font-size: 16px; color: var(--text-muted); }
.pricing-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.6; }
.pricing-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}
.pricing-includes svg { color: var(--accent); flex-shrink: 0; }
.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--text-muted);
}
.pricing-note strong { color: var(--text); }

/* Process */
.process { padding: 100px 32px; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process .section-label { margin-bottom: 16px; }
.step-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.step {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step:last-child { border-right: none; }
.step-num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent);
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Closing */
.closing {
  padding: 120px 32px;
  text-align: center;
  background-image:
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(244, 161, 39, 0.05) 0%, transparent 70%);
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing p { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.closing-statement {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text) !important;
  margin-top: 24px;
}

/* Footer */
footer { padding: 32px; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .step-row { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
}
@media (max-width: 640px) {
  .hero { padding: 90px 20px 60px; }
  .problem, .what, .pricing, .process, .closing { padding: 60px 20px; }
  .stat-grid, .feature-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 20px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
  .hero-pills { gap: 6px; }
}