/* ============================================================
   AI Income Builder — Shared Stylesheet
   ============================================================ */

:root {
  --bg:          #060910;
  --bg-card:     #0D1620;
  --bg-card-alt: #0D1B38;
  --border:      #1E293B;
  --border-blue: #2563EB44;
  --text:        #E2E8F0;
  --text-muted:  #94A3B8;
  --text-dim:    #475569;
  --blue:        #60A5FA;
  --blue-mid:    #3B82F6;
  --blue-dark:   #2563EB;
  --amber:       #F59E0B;
  --green:       #4ADE80;
  --red-strike:  #64748B;

  --glow-blue: 0 0 28px rgba(96,165,250,0.35), 0 0 56px rgba(59,130,246,0.2);
  --glow-soft: 0 0 40px rgba(96,165,250,0.12);

  --radius:    10px;
  --radius-sm: 6px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Nav ──────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6,9,16,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-monogram {
  display: flex;
  align-items: baseline;
  gap: 0;
  line-height: 1;
}

.nav-ai {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.nav-b {
  font-size: 24px;
  font-weight: 900;
  color: var(--blue);
  text-shadow: var(--glow-blue);
}

.nav-label {
  font-size: 7px;
  font-weight: 700;
  color: var(--blue-mid);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-mid);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.nav-cta:hover {
  background: var(--blue-dark);
  box-shadow: var(--glow-blue);
}

/* ── Sections ─────────────────────────────────────────────── */

section { padding: 80px 40px; }
.container { max-width: 1080px; margin: 0 auto; }

/* ── Hero ─────────────────────────────────────────────────── */

.hero {
  padding: 120px 40px 80px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-mid);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  letter-spacing: -0.2px;
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--blue-mid);
  color: var(--blue);
}

/* ── Social Proof Bar ─────────────────────────────────────── */

.proof-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 40px;
}

.proof-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proof-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
  flex-shrink: 0;
}

.proof-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.2px;
}

/* ── Features Grid ────────────────────────────────────────── */

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.feature-card:hover {
  border-color: var(--blue-dark);
  box-shadow: var(--glow-soft);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── How It Works ─────────────────────────────────────────── */

.how-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(to right, var(--blue-mid), var(--blue-dark), var(--blue-mid));
  opacity: 0.4;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border: 2px solid var(--blue-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--blue);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(59,130,246,0.3);
}

.step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 200px;
}

/* ── Testimonial ──────────────────────────────────────────── */

.testimonial-block {
  max-width: 620px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue-mid);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 36px;
  height: 36px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}

.author-info .name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.author-info .handle {
  font-size: 11px;
  color: var(--text-dim);
}

/* ── Final CTA ────────────────────────────────────────────── */

.final-cta {
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ── Footer ───────────────────────────────────────────────── */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 0;
}

.footer-ai { font-size: 16px; font-weight: 900; color: #fff; }
.footer-b  { font-size: 16px; font-weight: 900; color: var(--blue); text-shadow: var(--glow-blue); }

.footer-meta {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-meta a { color: var(--text-dim); transition: color 0.15s; }
.footer-meta a:hover { color: var(--blue); }

.footer-keyword {
  font-size: 11px;
  color: var(--blue-mid);
  letter-spacing: 1px;
}

/* ── Product Page ─────────────────────────────────────────── */

.product-hero {
  padding: 96px 40px 64px;
  max-width: 760px;
  margin: 0 auto;
}

.product-badge {
  display: inline-block;
  background: var(--bg-card-alt);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 24px;
}

.product-hero h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}

.product-hero .sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.deliverables-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.deliverables-card h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.deliverables-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deliverables-card ul li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.deliverables-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px;
}

.info-card h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-card ul li {
  font-size: 13.5px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.info-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-mid);
  font-size: 12px;
}

.price-block {
  background: var(--bg-card-alt);
  border: 1px solid #2563EB55;
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
}

.price-was {
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-now {
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 6px;
}

.price-note {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
}

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 360px;
  background: var(--blue-mid);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
  margin-bottom: 12px;
}

.btn-buy:hover {
  background: var(--blue-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.buy-fine {
  font-size: 12px;
  color: var(--text-dim);
}

.faq-block {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Thank You Page ───────────────────────────────────────── */

.ty-hero {
  padding: 120px 40px 64px;
  text-align: center;
}

.ty-hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 20px;
}

.ty-hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.step-badge {
  width: 48px;
  height: 48px;
  background: var(--bg-card-alt);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.ig-cta {
  text-align: center;
  padding: 64px 40px;
}

.ig-cta h2 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.ig-cta p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.btn-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s var(--ease);
}

.btn-ig:hover {
  border-color: var(--blue-mid);
  color: var(--blue);
}

.wait-block {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 40px;
  text-align: center;
}

.wait-block p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ── Divider ──────────────────────────────────────────────── */
.divider {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--blue-mid), transparent);
  border-radius: 2px;
  margin: 12px 0 20px;
}

/* ── Hero Visual + Fingerprint ────────────────────────────── */

.hero { position: relative; overflow: hidden; }

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.46;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-svg {
  width: 560px;
  flex-shrink: 0;
}

.fp-scan {
  animation: fp-scan 4s ease-in-out infinite;
  transform-origin: 50% 50%;
}

@keyframes fp-scan {
  0%   { transform: translateY(-160px); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translateY(160px); opacity: 0; }
}

.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.gradient-text {
  background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 60%, #60A5FA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.btn-hero {
  font-size: 16px;
  padding: 16px 36px;
  box-shadow: 0 0 32px rgba(59,130,246,0.35);
}

.hero-sub-note {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.5px;
}

/* ── Stat Pills ───────────────────────────────────────────── */

.stat-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  color: var(--text-muted);
}

.pill-num {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

/* ── Platform Bar ─────────────────────────────────────────── */

.platform-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
}

.platform-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.platform-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
}

.platforms {
  display: flex;
  align-items: center;
  gap: 28px;
}

.platform-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Problem Section ──────────────────────────────────────── */

.problem-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.problem-left { padding-top: 8px; }

.myth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.myth-card.truth {
  background: #0A1F12;
  border-color: #1A4A2A;
}

.myth-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-strike);
  margin-bottom: 8px;
}

.myth-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.myth-card.truth p {
  color: var(--text);
}

/* ── What's Inside ────────────────────────────────────────── */

.inside-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.inside-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  padding: 28px 28px;
  transition: background 0.2s var(--ease);
}

.inside-item:hover { background: var(--bg-card-alt); }

.inside-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--blue-mid);
  letter-spacing: 1px;
  min-width: 28px;
  padding-top: 2px;
}

.inside-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.inside-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Reviews ──────────────────────────────────────────────── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.review-card:hover {
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}

.review-card.review-featured {
  grid-column: span 2;
  background: var(--bg-card-alt);
  border-color: #2563EB44;
  border-left: 3px solid var(--blue-mid);
}

.review-stars {
  font-size: 13px;
  color: var(--amber);
  letter-spacing: 2px;
}

.review-quote {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 36px;
  height: 36px;
  background: #0D1B38;
  border: 1px solid var(--border-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.review-role {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ── Final CTA Section ────────────────────────────────────── */

.final-cta-section {
  padding: 80px 40px;
}

.final-cta-card {
  position: relative;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card-alt);
  border: 1px solid #2563EB33;
  border-radius: 16px;
  padding: 64px 48px;
  text-align: center;
}

.final-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.final-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-mid);
  margin-bottom: 16px;
  position: relative;
}

.final-cta-card h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 14px;
  position: relative;
}

.final-cta-card p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
  position: relative;
}

.final-fine {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  position: relative;
}

/* ── Three-Tier Pricing ───────────────────────────────────── */

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  align-items: stretch;
}

.tier-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.tier-card:hover {
  border-color: var(--blue-dark);
}

.tier-card.tier-featured {
  background: var(--bg-card-alt);
  border-color: #2563EB55;
  box-shadow: 0 0 40px rgba(59,130,246,0.12);
}

.tier-badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-mid);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.tier-tagline {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
}

.tier-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.tier-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  margin-bottom: 24px;
}

.tier-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.tier-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.tier-price {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 16px;
}

.tier-price-alt {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.btn-tier {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  background: var(--blue-mid);
  color: #fff;
  transition: all 0.2s var(--ease);
  margin-bottom: 10px;
}

.btn-tier:hover {
  background: var(--blue-dark);
  box-shadow: var(--glow-blue);
  transform: translateY(-1px);
}

.btn-tier-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.btn-tier-ghost:hover {
  background: transparent;
  border-color: var(--blue-mid);
  color: var(--blue);
  box-shadow: none;
}

.btn-tier-featured {
  background: var(--blue-mid);
  box-shadow: 0 0 24px rgba(59,130,246,0.3);
}

.btn-tier-featured:hover {
  background: var(--blue-dark);
  box-shadow: var(--glow-blue);
}

.tier-fine {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
}

.tier-footnote {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 24px;
}

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  section { padding: 60px 20px; }
  .hero { padding: 80px 20px 60px; }
  .proof-bar { padding: 20px; }
  .proof-bar .container { gap: 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .steps::before { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .next-steps { grid-template-columns: 1fr; }
  .product-hero { padding: 64px 20px 40px; }
  .ty-hero { padding: 80px 20px 48px; }
  footer { flex-direction: column; align-items: flex-start; }
  .problem-block { grid-template-columns: 1fr; gap: 32px; }
  .inside-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card.review-featured { grid-column: span 1; }
  .inside-header { flex-direction: column; align-items: flex-start; }
  .platform-bar { padding: 16px 20px; }
  .platform-bar .container { gap: 16px; }
  .final-cta-section { padding: 48px 20px; }
  .final-cta-card { padding: 40px 24px; }
  .stat-pills { gap: 8px; }
  .tiers { grid-template-columns: 1fr; }
}
