:root {
  --bg: #0d0f14;
  --bg-alt: #111318;
  --fg: #f4f4f0;
  --fg-muted: #8a8f9d;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.12);
  --accent-border: rgba(245, 158, 11, 0.3);
  --surface: #161920;
  --surface-2: #1e222a;
  --border: rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);
  --success: #22c55e;
  --danger: #ef4444;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

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

/* ── HERO ── */
.hero {
  padding: 80px 48px 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 24px;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
  max-width: 100px;
}
.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
  flex-shrink: 0;
}

/* ── PHONE FRAME ── */
.phone-frame {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1);
}
.phone-topbar {
  background: var(--surface-2);
  padding: 12px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}
.phone-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
  font-family: 'Syne', sans-serif;
}
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 6px var(--success);
}

.call-screen { padding: 20px; }
.caller-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.caller-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.caller-details { flex: 1; }
.caller-name { font-size: 15px; font-weight: 600; color: var(--fg); }
.caller-company { font-size: 13px; color: var(--fg-muted); }
.call-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.call-status.answered { background: rgba(34,197,94,0.15); color: var(--success); }

.emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #ef4444;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 8px;
  margin-bottom: 16px;
  width: fit-content;
}
.badge-icon { font-size: 13px; }

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 36px;
  margin-bottom: 16px;
}
.wave-bar {
  flex: 1;
  border-radius: 3px;
  background: var(--accent);
  opacity: 0.5;
  height: 100%;
  animation: wave-anim 1.4s ease-in-out infinite;
}
.wave-bar:nth-child(odd) { animation-duration: 0.8s; }
.wave-bar:nth-child(2n) { animation-duration: 1.2s; }
.wave-bar:nth-child(3n) { animation-duration: 1.6s; }
.wave-bar:nth-child(4n) { animation-duration: 1s; }
@keyframes wave-anim {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

.transcript-line {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}
.transcript-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 3px;
}
.transcript-line.agent .transcript-tag { background: var(--accent-dim); color: var(--accent); }
.transcript-line.caller .transcript-tag { background: rgba(34,197,94,0.1); color: var(--success); }
.transcript-line span:last-child { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }

.booking-slot {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.slot-time {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.slot-detail { font-size: 12px; color: var(--fg-muted); flex: 1; }
.slot-status {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  flex-shrink: 0;
}
.slot-status.confirmed { background: rgba(34,197,94,0.15); color: var(--success); }

.call-duration {
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.duration-label { font-size: 10px; color: var(--fg-muted); letter-spacing: 0.05em; }
.duration-time { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; color: var(--fg); }

/* ── PIPELINE ── */
.pipeline {
  padding: 96px 48px;
  background: var(--bg-alt);
  position: relative;
}
.pipeline::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.section-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 56px;
}
.pipeline-header { text-align: center; }

.pipeline-steps {
  max-width: 1100px;
  margin: 0 auto;
}
.pipeline-step {
  display: grid;
  grid-template-columns: 80px 1fr 280px;
  gap: 40px;
  align-items: start;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}
.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.feature-chip {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 100px;
  padding: 3px 10px;
}
.step-connector {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}
.connector-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--border-strong), transparent);
}

/* Ring visual */
.ring-visual {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.3;
  animation: ring-expand 2s ease-out infinite;
}
@keyframes ring-expand {
  0% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}
.ring-inner {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1.5px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}
.ring-icon svg { width: 100%; height: 100%; }
.call-label {
  font-size: 11px;
  color: var(--success);
  font-weight: 600;
  margin-top: 8px;
  text-align: center;
}

/* SMS bubble */
.sms-bubble-stack { display: flex; flex-direction: column; gap: 8px; }
.sms-sent, .sms-reply {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
}
.sms-reply { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.05); }
.sms-sent { border-color: var(--accent-border); background: var(--accent-dim); }
.sms-meta { font-size: 10px; color: var(--fg-muted); margin-bottom: 4px; font-weight: 600; }
.sms-body { font-size: 12px; color: var(--fg); line-height: 1.5; }

/* Sequence timeline */
.sequence-timeline { display: flex; flex-direction: column; gap: 10px; }
.seq-item { display: flex; align-items: center; gap: 12px; }
.seq-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}
.seq-text { font-size: 13px; color: var(--fg-muted); }

/* ── NICHES ── */
.niches {
  padding: 96px 48px;
  background: var(--bg);
  position: relative;
}
.niches::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.niches-header { text-align: center; margin-bottom: 56px; }

.niches-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.niche-card {
  background: var(--bg);
  padding: 32px 28px;
  transition: background 0.2s;
}
.niche-card:hover { background: var(--surface); }
.niche-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}
.niche-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.niche-stat {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 12px;
}
.niche-detail {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.6;
}
.niches-cta {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--fg-muted);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 96px 48px;
  background: var(--bg-alt);
  position: relative;
}
.manifesto::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.manifesto-body p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.manifesto-body p:last-of-type { margin-bottom: 48px; }
.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border-strong);
  padding-top: 36px;
}
.mstat-val {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 6px;
}
.mstat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ── CLOSING ── */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  position: relative;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.closing-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  margin: 0 auto 56px;
}
.closing-offer {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: left;
}
.offer-header { margin-bottom: 32px; }
.offer-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}
.offer-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
}
.offer-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 32px;
  margin-bottom: 36px;
}
.include-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.check-icon {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}
.offer-price {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
}
.price-from { font-size: 13px; color: var(--fg-muted); }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
}
.per-mo { font-size: 18px; font-weight: 400; color: var(--fg-muted); margin-left: 2px; }
.price-note { font-size: 13px; color: var(--fg-muted); flex: 1; }
.price-comparison {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.6;
}

/* ── FOOTER ── */
.footer {
  padding: 56px 48px 40px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { margin-bottom: 32px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.logo-icon { width: 24px; height: 24px; color: var(--accent); }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--fg);
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links {
  display: flex;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.footer-link {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 8px;
  cursor: pointer;
}
.footer-link:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-meta { font-size: 12px; color: var(--fg-muted); opacity: 0.6; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .phone-frame { max-width: 360px; margin: 0 auto; }
  .pipeline-step { grid-template-columns: 60px 1fr; }
  .step-visual { display: none; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 24px; }
  .offer-includes { grid-template-columns: 1fr; }
  .offer-price { flex-wrap: wrap; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero, .pipeline, .niches, .manifesto, .closing, .footer { padding: 64px 24px; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .stat-sep { display: none; }
  .stat { padding: 0; }
  .niches-grid { grid-template-columns: 1fr; }
  .closing-offer { padding: 28px 24px; }
}