/* Solo Ads Freedom Stack — shared styles
   Recreated from the React/Tailwind build at products.anilkrishna.com */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Barlow', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: #0f172a;
  color: #e2e8f0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ── shell ───────────────────────────────────────── */
.min-h-screen { min-height: 100vh; }
.bg-slate-900-deep { background: #0f172a; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── neon hero badge ─────────────────────────────── */
.neon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.25rem;
  background: rgba(59,130,246,0.10);
  border: 1px solid rgba(59,130,246,0.30);
  border-radius: 9999px;
  box-shadow: 0 0 20px rgba(59,130,246,0.30);
  color: #3b82f6;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(59,130,246,0.30); }
  50% { box-shadow: 0 0 30px rgba(59,130,246,0.50); }
}

/* ── grid bg + floating orbs ─────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 0),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 0);
  background-size: 50px 50px;
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}
.floating-orb-1 {
  width: 400px; height: 400px;
  background: rgba(59,130,246,0.30);
  top: 10%; right: -10%;
  animation: float 8s ease-in-out infinite;
}
.floating-orb-2 {
  width: 300px; height: 300px;
  background: rgba(139,92,246,0.20);
  bottom: 20%; left: -5%;
  animation: float 10s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

/* ── headlines ───────────────────────────────────── */
h1, h2, h3, h4 { color: #fff; margin: 0; line-height: 1.15; }
.gradient-text {
  background: linear-gradient(135deg, #3b82f6, #06b6d4 50%, #8b5cf6);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.glow-cyan { color: #fff; text-shadow: 0 0 20px #00d4ff, 0 0 40px #00b4ff; }
.glow-orange { color: #ff6b35; text-shadow: 0 0 15px rgba(255,107,53,0.6); }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94a3b8;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; text-align: center; margin: 0 0 1rem; }
.section-sub { color: #94a3b8; font-size: 1.15rem; text-align: center; max-width: 720px; margin: 0 auto 2.5rem; line-height: 1.6; }

/* ── CTA buttons ─────────────────────────────────── */
.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border: 2px solid rgba(255,255,255,0.20);
  box-shadow: 0 0 30px rgba(59,130,246,0.60), 0 0 60px rgba(6,182,212,0.30), 0 4px 15px rgba(0,0,0,0.30);
  text-align: center;
  animation: cta-pulse 2s ease-in-out infinite;
  transition: transform .15s ease, box-shadow .15s ease;
}
.cta-button-large:hover { transform: translateY(-1px); }
@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(59,130,246,0.60), 0 0 60px rgba(6,182,212,0.30), 0 4px 15px rgba(0,0,0,0.30); }
  50% { box-shadow: 0 0 50px rgba(59,130,246,0.80), 0 0 80px rgba(6,182,212,0.50), 0 4px 15px rgba(0,0,0,0.30); }
}

.btn-orange {
  background: linear-gradient(135deg, #f97316, #ef4444);
  box-shadow: 0 0 30px rgba(249,115,22,0.50);
}
.btn-green {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 0 30px rgba(34,197,94,0.50);
}
.btn-purple {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 0 30px rgba(139,92,246,0.50);
}
.btn-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 0 30px rgba(245,158,11,0.50);
}
.btn-red {
  background: linear-gradient(135deg, #ef4444, #b91c1c);
  box-shadow: 0 0 30px rgba(239,68,68,0.50);
}
.btn-emerald {
  background: linear-gradient(135deg, #10b981, #047857);
  box-shadow: 0 0 30px rgba(16,185,129,0.50);
}
.btn-pink {
  background: linear-gradient(135deg, #ec4899, #be185d);
  box-shadow: 0 0 30px rgba(236,72,153,0.50);
}

/* sticky mobile bottom CTA */
.mobile-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  padding: 12px;
  background: rgba(15,23,42,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(59,130,246,0.30);
}
.mobile-cta a { width: 100%; padding: 16px; font-size: 1.05rem; border-radius: 14px; display: block; }
@media (min-width: 768px) { .mobile-cta { display: none; } }

/* ── trust strip ─────────────────────────────────── */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 1.5rem;
  color: #94a3b8;
}
.trust-strip svg { display: inline-block; vertical-align: middle; }
.trust-strip > div { display: inline-flex; gap: 8px; align-items: center; }

/* ── card primitives ─────────────────────────────── */
.card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
}
.card:hover { border-color: #3b82f6; }
.card-glass {
  background: linear-gradient(135deg, rgba(30,41,59,0.85) 0%, rgba(15,23,42,0.85) 100%);
  border: 1px solid rgba(59,130,246,0.20);
  backdrop-filter: blur(8px);
}
.card-pad-lg { padding: 36px; }

/* grid */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* sections */
section { padding: 70px 0; }
.section-narrow { padding: 50px 0; }
.section-dark { background: #0b1222; }
.section-darker { background: #060c1a; }

/* utility */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-blue { color: #60a5fa; }
.text-cyan { color: #22d3ee; }
.text-green { color: #4ade80; }
.text-red { color: #f87171; }
.text-amber { color: #fbbf24; }
.text-purple { color: #a78bfa; }
.text-orange { color: #fb923c; }
.text-slate-300 { color: #cbd5e1; }
.text-slate-400 { color: #94a3b8; }
.text-white { color: #fff; }
.font-black { font-weight: 900; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }

/* lists */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: #cbd5e1; font-size: 1.05rem; line-height: 1.5;
}
.checklist li::before {
  content: "✓";
  color: #22c55e; font-weight: 900;
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(34,197,94,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.xlist { list-style: none; padding: 0; margin: 0; }
.xlist li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  color: #cbd5e1; font-size: 1.05rem; line-height: 1.5;
}
.xlist li::before {
  content: "✕";
  color: #ef4444; font-weight: 900;
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%; background: rgba(239,68,68,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}

/* compare panel */
.compare-grid { display: grid; gap: 18px; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { padding: 28px; border-radius: 16px; border: 1px solid; }
.compare-old { background: rgba(239,68,68,0.05); border-color: rgba(239,68,68,0.30); }
.compare-old h3 { color: #f87171; font-size: 1.4rem; }
.compare-new { background: rgba(34,197,94,0.05); border-color: rgba(34,197,94,0.30); position: relative; }
.compare-new h3 { color: #4ade80; font-size: 1.4rem; }
.tag-recommend {
  position: absolute; top: -14px; right: 18px;
  background: #22c55e; color: #052e16;
  padding: 6px 14px; border-radius: 999px;
  font-weight: 900; font-size: 0.78rem; letter-spacing: 0.06em;
}

/* steps */
.step-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 28px;
  position: relative;
}
.step-num {
  position: absolute; top: -22px; left: 24px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(59,130,246,0.50);
}

/* price tag */
.price-row { display: flex; align-items: baseline; gap: 14px; justify-content: center; flex-wrap: wrap; }
.price-old { color: #94a3b8; text-decoration: line-through; font-size: 1.5rem; font-weight: 700; }
.price-new {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 3.2rem; font-weight: 900;
}
.price-save {
  background: #ef4444;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 900; font-size: 0.85rem; letter-spacing: 0.05em;
}

/* value table */
.value-table { background: #1e293b; border: 1px solid #334155; border-radius: 16px; padding: 28px; max-width: 600px; margin: 0 auto; }
.value-row { display: flex; justify-content: space-between; padding: 14px 0; border-bottom: 1px dashed #334155; color: #cbd5e1; gap: 14px; }
.value-row:last-of-type { border-bottom: none; }
.value-row.total { font-weight: 900; color: #fff; font-size: 1.15rem; padding-top: 18px; border-top: 2px solid #334155; }
.value-row .v { color: #94a3b8; text-decoration: line-through; }
.value-row.price-final { color: #4ade80; font-size: 1.6rem; font-weight: 900; padding: 18px 0 6px; }

/* warning bar */
.warning-bar {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.95rem;
}
.flash-bar {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

/* countdown */
.countdown-wrap { text-align: center; margin: 16px 0; }
.countdown-label { color: #94a3b8; font-size: 0.9rem; margin-bottom: 6px; }
.countdown-time {
  background: #1e293b;
  color: #fbbf24;
  border: 1px solid #f59e0b;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 12px;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

/* footer */
.footer-wrap {
  background: #060c1a;
  border-top: 1px solid #1e293b;
  padding: 50px 0 30px;
  color: #94a3b8;
  font-size: 0.92rem;
}
.footer-wrap a { color: #cbd5e1; }
.footer-wrap a:hover { color: #60a5fa; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-bottom: 24px; }
.footer-disclaimer { max-width: 920px; margin: 0 auto; line-height: 1.6; color: #64748b; font-size: 0.85rem; padding-bottom: 100px; }

/* faq */
details.faq {
  background: #1e293b; border: 1px solid #334155;
  border-radius: 14px; padding: 18px 22px;
  margin-bottom: 12px;
}
details.faq summary {
  cursor: pointer;
  font-weight: 800; color: #fff; font-size: 1.05rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+"; color: #3b82f6; font-size: 1.4rem; font-weight: 900;
}
details.faq[open] summary::after { content: "−"; }
details.faq[open] { border-color: #3b82f6; }
details.faq p { color: #cbd5e1; line-height: 1.65; margin: 12px 0 0; }

/* exit warning hero */
.exit-section {
  background: linear-gradient(180deg, rgba(239,68,68,0.10), rgba(15,23,42,1));
  border-top: 1px solid rgba(239,68,68,0.30);
  padding: 60px 0;
}
.exit-banner {
  display: inline-block;
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.40);
  color: #fca5a5;
  padding: 8px 18px; border-radius: 999px;
  font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

/* utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.rounded-xl { border-radius: 14px; }
.rounded-2xl { border-radius: 18px; }
.shadow-blue { box-shadow: 0 0 30px rgba(59,130,246,0.4); }
.max-w-3xl { max-width: 768px; margin: 0 auto; }
.max-w-4xl { max-width: 896px; margin: 0 auto; }
.max-w-5xl { max-width: 1024px; margin: 0 auto; }
.relative { position: relative; }
.z-10 { position: relative; z-index: 10; }

.video-frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #3b82f6;
  box-shadow: 0 0 30px rgba(59,130,246,0.40);
  max-width: 900px;
  margin: 0 auto;
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-wrap {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 50%, #3b82f6 100%);
  padding: 4px;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(59,130,246,0.50), 0 0 80px rgba(6,182,212,0.30);
}
.video-inner { background: #0f172a; padding: 12px; border-radius: 14px; }

/* stats row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 720px; margin: 32px auto 0; }
@media (max-width: 640px) { .stats-row { grid-template-columns: 1fr; } }
.stat-box {
  background: rgba(30,41,59,0.6);
  border: 1px solid #334155;
  border-radius: 14px; padding: 22px 14px; text-align: center;
}
.stat-num { font-size: 2.2rem; font-weight: 900; color: #3b82f6; }
.stat-num.amber { color: #fbbf24; }
.stat-num.green { color: #4ade80; }
.stat-num.purple { color: #a78bfa; }
.stat-num.orange { color: #fb923c; }
.stat-label { color: #94a3b8; font-size: 0.85rem; margin-top: 4px; }

/* small "free bonus" tag */
.bonus-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.40);
  color: #4ade80;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}

/* sticky countdown bar */
.top-bar {
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  padding: 8px 16px;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-bar strong { font-weight: 900; }

/* pull-quote */
.pull-quote {
  background: rgba(59,130,246,0.06);
  border-left: 4px solid #3b82f6;
  padding: 18px 22px;
  border-radius: 0 14px 14px 0;
  color: #cbd5e1;
  font-style: italic;
  line-height: 1.6;
  margin: 24px 0;
}

/* PS list */
.ps-block { color: #cbd5e1; line-height: 1.7; max-width: 720px; margin: 24px auto; }
.ps-block strong { color: #fbbf24; }
.ps-block p { margin: 14px 0; }
