:root {
  --bg: #0D0D0D;
  --card: #1A1A1A;
  --card-hover: #222222;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --text: #FAFAFA;
  --text-muted: #8A8A8A;
  --border: rgba(250, 250, 250, 0.08);
  --phone-bg: #111111;
}

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

html { scroll-behavior: smooth; }

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

/* ── NAV ── */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.nav-waitlist-btn {
  background: var(--accent);
  color: #0D0D0D;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.nav-waitlist-btn:hover { background: #D97706; }

/* ── HERO ── */
.hero {
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero-line-through {
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 4px;
  opacity: 0.7;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 440px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-stat-row {
  display: flex;
  gap: 2rem;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  display: block;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* ── PHONE MOCKUP ── */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
}
.phone-frame {
  width: 260px;
  background: #0A0A0A;
  border-radius: 36px;
  border: 2px solid #2A2A2A;
  padding: 12px;
  box-shadow: 0 0 60px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(245,158,11,0.08);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #0A0A0A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--card);
  border-radius: 24px;
  padding: 1.25rem;
  min-height: 380px;
}
.call-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.call-status-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.call-contact {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.call-name {
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.call-intent {
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--accent);
  padding: 0.6rem 0.75rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.call-actions {
  margin-bottom: 1rem;
}
.call-action {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}
.call-action.booked {
  background: rgba(34, 197, 94, 0.1);
  color: #22C55E;
}
.call-action-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #22C55E;
  color: #0D0D0D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
}
.ai-badge {
  text-align: right;
}
.ai-badge span {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

/* ── PROOF ── */
.proof {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3rem 2rem;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.proof-stat {
  text-align: center;
  flex: 1;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: var(--accent);
  display: block;
}
.proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.5rem;
  line-height: 1.4;
  max-width: 180px;
  margin: 0.5rem auto 0;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
}

/* ── HOW IT WORKS ── */
.how {
  padding: 6rem 2rem;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.how-steps {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.step p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
}

/* ── FEATURES ── */
.features {
  padding: 0 2rem 6rem;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── NICHES ── */
.niches {
  padding: 0 2rem 6rem;
}
.niches-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.niche-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.niche-pill {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1.25rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s;
}
.niche-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.niches-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 500px;
  font-style: italic;
}

/* ── CLOSING ── */
.closing {
  padding: 6rem 2rem 8rem;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 3rem;
  border-radius: 2px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.closing-promise {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.footer-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 0.72rem;
  color: #555;
  margin-top: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .hero-headline { font-size: 2.8rem; }
  .proof-inner { flex-direction: column; }
  .proof-divider { width: 60px; height: 1px; }
  .how-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .proof { padding: 2rem 1.25rem; }
  .how { padding: 4rem 1.25rem; }
  .features { padding: 0 1.25rem 4rem; }
  .niches { padding: 0 1.25rem 4rem; }
  .closing { padding: 4rem 1.25rem 5rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
}