:root {
  --bg: #0f0f12;
  --surface: #16161a;
  --surface2: #1e1e24;
  --fg: #f0ede8;
  --fg-muted: #8a8794;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --border: rgba(240, 237, 232, 0.08);
}

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

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

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.15;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 96px 32px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  color: var(--fg);
  margin-bottom: 24px;
  letter-spacing: -2px;
}
.hero-lede {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 480px;
  line-height: 1.65;
}

/* PHONE SHELL */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-shell {
  width: 260px;
  background: #1a1a20;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06), inset 0 1px 0 rgba(255,255,255,0.04);
}
.phone-screen {
  background: #111118;
  border-radius: 26px;
  padding: 28px 24px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, rgba(245,158,11,0.08) 0%, transparent 100%);
  border-radius: 26px 26px 0 0;
}
.call-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
}
.call-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.call-caller {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}
.call-type {
  font-size: 12px;
  color: #ef4444;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.call-status {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.call-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.call-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--fg-muted);
  padding: 8px 12px;
  background: var(--surface2);
  border-radius: 8px;
}
.call-action.accept { color: #22c55e; }
.action-icon {
  width: 18px;
  height: 18px;
  background: #22c55e22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* STATS */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 32px;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 180px;
  margin: 0 auto;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* FEATURES */
.features {
  padding: 96px 32px;
}
.features-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 56px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--surface);
  padding: 40px 36px;
  border: 1px solid var(--border);
}
.feature-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'Fraunces', Georgia, serif;
}
.feature-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW */
.how {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 96px 32px;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
  font-family: 'Fraunces', Georgia, serif;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  max-width: 560px;
}

/* PRICING */
.pricing {
  padding: 96px 32px;
}
.pricing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 56px 52px;
  max-width: 600px;
}
.pricing-top { margin-bottom: 0; }
.pricing-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 16px;
}
.price-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--fg);
  letter-spacing: -2px;
}
.price-per {
  font-size: 18px;
  color: var(--fg-muted);
}
.pricing-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 36px 0;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-features li {
  font-size: 15px;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23f59e0b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.pricing-note {
  margin-top: 28px;
  font-size: 14px;
  color: var(--fg-muted);
  font-style: italic;
  max-width: 600px;
}

/* CLOSING */
.closing {
  padding: 96px 32px 112px;
}
.closing-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.closing-content {
  max-width: 640px;
}
.closing h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.closing p {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 36px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--fg);
}
.footer-desc { font-size: 13px; color: var(--fg-muted); }
.footer-links { font-size: 13px; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .stats-inner { grid-template-columns: 1fr; gap: 32px; }
  .stat-divider { display: none; }
  .stat { text-align: left; }
  .stat-label { max-width: 100%; margin: 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 48px 1fr; gap: 16px; }
  .step-num { font-size: 32px; }
  .pricing-card { padding: 36px 28px; }
  .price-num { font-size: 44px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
}