@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --funnel-red: #ef4444;
  --funnel-purple: #a855f7;
  --funnel-emerald: #10b981;
  --funnel-gold: #f59e0b;
}

body.funnel-page {
  font-family: 'Inter', system-ui, sans-serif;
  background: #09090b;
  color: #fafafa;
}

.funnel-display { font-family: 'Space Grotesk', 'Inter', sans-serif; }
.funnel-gradient {
  background: linear-gradient(135deg, var(--funnel-red), var(--funnel-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.funnel-glass {
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.08);
}
.funnel-hero-glow {
  background: radial-gradient(ellipse 80% 55% at 50% -5%, rgba(239,68,68,.16), transparent 55%),
              radial-gradient(ellipse 50% 35% at 85% 15%, rgba(168,85,247,.1), transparent 50%);
}
.funnel-hero-img {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.funnel-hero-img img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.funnel-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,9,11,.85) 0%, transparent 50%);
  pointer-events: none;
}
.funnel-cta {
  background: linear-gradient(135deg, #dc2626, #9333ea);
  transition: opacity .2s, transform .2s;
}
.funnel-cta:hover { opacity: .95; transform: translateY(-1px); }
.funnel-cta-pulse { animation: funnelCtaPulse 2.5s ease infinite; }
@keyframes funnelCtaPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,.45); }
  50% { box-shadow: 0 0 0 14px rgba(239,68,68,0); }
}
.funnel-strike { text-decoration: line-through; opacity: .5; }
.funnel-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .7rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; padding: .35rem .75rem; border-radius: 9999px;
}
.funnel-badge-red { background: rgba(239,68,68,.15); color: #fca5a5; border: 1px solid rgba(239,68,68,.3); }
.funnel-badge-emerald { background: rgba(16,185,129,.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,.3); }
.funnel-badge-amber { background: rgba(245,158,11,.15); color: #fcd34d; border: 1px solid rgba(245,158,11,.3); }
.funnel-badge-purple { background: rgba(168,85,247,.15); color: #d8b4fe; border: 1px solid rgba(168,85,247,.3); }

.funnel-progress {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; color: #71717a;
}
.funnel-progress .step {
  display: flex; align-items: center; gap: .35rem;
}
.funnel-progress .dot {
  width: 1.5rem; height: 1.5rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700;
  background: #27272a; color: #71717a;
}
.funnel-progress .step.active .dot { background: linear-gradient(135deg, #ef4444, #a855f7); color: #fff; }
.funnel-progress .step.done .dot { background: #10b981; color: #fff; }
.funnel-progress .line { width: 2rem; height: 2px; background: #3f3f46; }

.funnel-value-row {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; border-radius: .75rem;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
}
.funnel-timer {
  font-variant-numeric: tabular-nums;
  font-family: 'Space Grotesk', monospace;
  letter-spacing: .05em;
}
.funnel-decline {
  color: #71717a; font-size: .8rem; text-decoration: underline;
  text-underline-offset: 3px; cursor: pointer;
  background: none; border: none;
}
.funnel-decline:hover { color: #a1a1aa; }

.funnel-comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
@media (max-width: 640px) { .funnel-comparison { grid-template-columns: 1fr; } }

.funnel-roi-card {
  background: linear-gradient(135deg, rgba(16,185,129,.08), rgba(168,85,247,.06));
  border: 1px solid rgba(16,185,129,.25);
  border-radius: 1rem; padding: 1.25rem;
}
.funnel-guarantee {
  border: 1px solid rgba(16,185,129,.3);
  background: rgba(16,185,129,.06);
  border-radius: 1rem; padding: 1.5rem; text-align: center;
}