:root {
  --bg: #0f1117;
  --bg-2: #16181f;
  --bg-3: #1e2028;
  --fg: #f0eeeb;
  --fg-muted: #8a8f9e;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-glow: rgba(245, 158, 11, 0.25);
  --border: rgba(255,255,255,0.07);
  --radius: 12px;
  --radius-sm: 8px;
  --nav-h: 64px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 24px 80px;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  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);
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-glow);
  border-radius: 100px;
  background: var(--accent-dim);
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--fg);
}
.hero-headline em {
  color: var(--accent);
  font-style: normal;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 440px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
}
.hero-stat-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.4;
}

/* PHONE WIDGET */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-widget {
  width: 280px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(245,158,11,0.08),
    0 24px 48px rgba(0,0,0,0.5),
    0 0 80px rgba(245,158,11,0.06);
}
.phone-header {
  background: var(--bg-2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.phone-dots { display: flex; gap: 6px; }
.phone-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fg-muted);
  opacity: 0.4;
}
.phone-label { font-size: 0.75rem; color: var(--fg-muted); }
.phone-ai-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent);
}
.ai-ring {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pulse-ring 1.5s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 var(--accent-glow); }
  50% { box-shadow: 0 0 0 4px rgba(245,158,11,0.1); }
}
.phone-waves {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 18px 14px;
  height: 24px;
}
.wave {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  opacity: 0.6;
}
.w1 { width: 5px; animation: wave 1s ease-in-out infinite 0.0s; }
.w2 { width: 7px; animation: wave 1s ease-in-out infinite 0.15s; }
.w3 { width: 9px; animation: wave 1s ease-in-out infinite 0.3s; }
.w4 { width: 7px; animation: wave 1s ease-in-out infinite 0.45s; }
@keyframes wave {
  0%, 100% { height: 30%; opacity: 0.4; }
  50% { height: 100%; opacity: 1; }
}
.phone-caller {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
  background: rgba(245,158,11,0.04);
}
.caller-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
}
.caller-info { display: flex; flex-direction: column; gap: 2px; }
.caller-name { font-size: 0.82rem; font-weight: 600; }
.caller-location { font-size: 0.72rem; color: var(--fg-muted); }
.phone-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 12px 18px;
  border-top: 1px solid var(--border);
}
.phone-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.phone-action.accept {
  background: var(--accent);
  color: #0f1117;
}
.phone-action.accept:hover { filter: brightness(1.1); }
.phone-action.decline {
  background: var(--bg-2);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}
.phone-transcript {
  padding: 12px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--border);
}
.transcript-line { font-size: 0.78rem; color: var(--fg-muted); line-height: 1.5; }
.transcript-line.ai-line { color: var(--fg); font-style: italic; }
.transcript-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

/* PROOF */
.proof {
  padding: 72px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner { max-width: 1100px; margin: 0 auto; }
.proof-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-bottom: 32px;
  text-align: center;
}
.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}
.proof-score {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 8px;
}
.proof-context { font-size: 0.82rem; color: var(--fg-muted); }

/* HOW */
.how { padding: 96px 24px; }
.how-inner { max-width: 1100px; margin: 0 auto; }
.how-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.how-sub { color: var(--fg-muted); margin-bottom: 56px; }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.how-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.how-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  padding-top: 4px;
}
.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.step-content p { color: var(--fg-muted); font-size: 0.92rem; line-height: 1.7; }

/* NICHES */
.niches {
  padding: 96px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.niche-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s;
}
.niche-card:hover { border-color: rgba(245,158,11,0.3); }
.niche-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent);
}
.niche-card h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}
.niche-card p { font-size: 0.84rem; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 96px 24px; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pricing-sub { color: var(--fg-muted); margin-bottom: 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(245,158,11,0.15), 0 0 48px rgba(245,158,11,0.06);
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.pricing-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.pricing-desc { font-size: 0.88rem; color: var(--fg-muted); margin-bottom: 24px; line-height: 1.6; }
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 0.85rem;
  color: var(--fg);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-note { font-size: 0.82rem; color: var(--fg-muted); max-width: 520px; }

/* OBJECTIONS */
.objections { padding: 80px 24px; background: var(--bg-2); border-top: 1px solid var(--border); }
.objections-inner { max-width: 1100px; margin: 0 auto; }
.obj-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}
.obj-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.obj-item { display: flex; flex-direction: column; gap: 10px; }
.obj-q {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
}
.obj-a { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.7; }

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.closing-sub { color: var(--fg-muted); margin-bottom: 56px; font-size: 1rem; }
.closing-manifesto {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.closing-manifesto p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: var(--accent);
  font-size: 1rem;
}
.footer-desc { font-size: 0.82rem; color: var(--fg-muted); }
.footer-links { font-size: 0.82rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .phone-widget { width: 240px; }
  .proof-row { grid-template-columns: 1fr; gap: 16px; }
  .how-step { grid-template-columns: 1fr; gap: 8px; }
  .step-num { font-size: 1.4rem; }
  .niche-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .obj-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .niche-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .hero-stat { min-width: 120px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}