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

:root {
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Fira Code', monospace;
  --accent: #06D6A0;
  --accent-hover: #05C090;
  --accent-muted: rgba(6,214,160,0.06);
  --accent-border: rgba(6,214,160,0.2);
  --accent-glow: rgba(6,214,160,0.15);
  --bg: #F8FDFB;
  --bg-alt: #F0FAF6;
  --text: #111827;
  --text-secondary: #6B7280;
  --text-tertiary: #6B7280;
  --text-ghost: #9CA3AF;
  --fresh: #10B981;
  --stale: #F59E0B;
  --alert: #EF4444;
  --border: #E5E7EB;
  --border-strong: #D1D5DB;
}

html { -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--text); font-family: var(--font-body); overflow-x: hidden; }

/* ==================== ACCESSIBILITY ==================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  padding: 12px 24px; background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  border-radius: 0 0 8px 8px; z-index: 999; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ==================== THEME SWITCHER ==================== */
.theme-switcher {
  position: fixed; bottom: 20px; left: 20px; z-index: 200;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 12px 16px; box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  font-family: var(--font-body); font-size: 11px; max-width: 240px;
  transition: transform 0.3s, opacity 0.3s;
  opacity: 0; pointer-events: none; transform: translateX(-20px);
}
.theme-switcher.visible { opacity: 1; pointer-events: auto; transform: translateX(0); }
.theme-switcher.collapsed { transform: translateX(-220px); }
.ts-title { font-weight: 700; font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-tertiary); margin-bottom: 8px; }
.ts-section { margin-bottom: 10px; }
.ts-label { font-weight: 600; font-size: 11px; color: var(--text-secondary); margin-bottom: 4px; }
.ts-options { display: flex; flex-wrap: wrap; gap: 4px; }
.ts-btn {
  padding: 4px 10px; border-radius: 6px; border: 1px solid var(--border);
  background: var(--bg); color: var(--text-secondary); cursor: pointer;
  font-family: var(--font-body); font-size: 10px; font-weight: 500;
  transition: all 0.15s;
}
.ts-btn:hover { border-color: var(--accent); color: var(--accent); }
.ts-btn.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.ts-color-btn {
  width: 24px; height: 24px; border-radius: 6px; border: 2px solid transparent;
  cursor: pointer; transition: all 0.15s;
}
.ts-color-btn:hover { transform: scale(1.1); }
.ts-color-btn.active { border-color: var(--text); transform: scale(1.15); }

/* ==================== NAV ==================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px;
  background: rgba(248,253,251,0.9); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
.nav.scrolled { border-bottom-color: var(--border); padding: 10px 40px; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--text); text-decoration: none; letter-spacing: -0.03em; }
.nav-logo span { color: #06D6A0; background: rgba(6,214,160,0.12); padding: 1px 2px; border-radius: 3px; }
.nav-logo::after { content: ''; display: inline-block; width: 2px; height: 22px; background: #06D6A0; margin-left: 2px; vertical-align: middle; animation: blink 1s step-end infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link { font-size: 13px; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav-link:hover { color: var(--accent); }
.nav-count { font-family: var(--font-mono); font-size: 12px; color: var(--text-tertiary); transition: opacity 0.3s; }
.nav-count strong { color: var(--accent); font-weight: 600; }
.nav-cta {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 8px 20px; background: var(--accent); color: #fff;
  border: none; border-radius: 8px; cursor: pointer; text-decoration: none;
  transition: all 0.2s; display: none;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav.scrolled .nav-cta { display: inline-block; }
.nav.scrolled .nav-count { opacity: 0; position: absolute; }

/* ==================== HERO ==================== */
.hero-wrap {
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
}
.hero-bg canvas { width: 100%; height: 100%; }

/* Dot grid overlay */
.hero-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}

/* Fade out bottom of hero bg */
.hero-bg-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 200px; z-index: 2;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
}

.hero {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 260px 40px 40px; max-width: 780px; margin: 0 auto;
  position: relative; z-index: 3;
}

/* Social proof — Patel trust signals */
.hero-proof {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 24px; opacity: 0; transform: translateY(12px);
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid #fff; margin-left: -8px;
  background: var(--accent-muted); display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--accent);
}
.hero-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--text-secondary); margin-left: 4px; }
.hero-proof-text strong { color: var(--text); font-weight: 600; }

/* Split text headline — The Unforgettable Thing */
.hero-headline {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 6vw, 68px); line-height: 1.05;
  letter-spacing: -0.045em; margin-bottom: 20px;
}
.hero-headline .char {
  display: inline-block; opacity: 0; transform: translateY(40px) rotate(5deg);
}
.hero-headline .accent-word { color: var(--accent); }
.hero-headline .word { display: inline-block; white-space: pre; }

/* Rotating category pill — above social proof */
.hero-pill-wrap {
  margin-bottom: 16px; opacity: 0; transform: translateY(12px);
}
.hero-pill {
  display: inline-flex; align-items: center;
  padding: 8px 20px; border-radius: 100px;
  background: rgba(255,255,255,0.9); border: 1px solid var(--accent-border);
  font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: #111827;
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

/* Subheadline */
.hero-sub {
  font-size: clamp(16px, 2vw, 19px); line-height: 1.65;
  color: var(--text-secondary); max-width: 540px; margin-bottom: 28px;
  opacity: 0; transform: translateY(16px);
}
.hero-sub strong { color: var(--text); font-weight: 600; }

/* Value props — Hormozi minimize time + effort */
.hero-value {
  display: flex; gap: 28px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 36px; opacity: 0; transform: translateY(12px);
}
.hero-value-item {
  display: flex; align-items: center; gap: 7px; font-size: 14px;
  color: var(--text-secondary); font-weight: 500;
}
.hero-value-check { color: var(--fresh); font-weight: 700; font-size: 16px; }

/* CTA — magnetic button effect */
.hero-form {
  display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 520px;
  opacity: 0; transform: translateY(12px);
}
.hero-form-row {
  display: flex; gap: 8px; width: 100%;
}
.hero-input {
  flex: 1; padding: 14px 18px; font-family: var(--font-body); font-size: 14px;
  background: var(--bg); border: 2px solid var(--border); border-radius: 10px;
  color: var(--text); outline: none; transition: all 0.25s; min-width: 0;
}
.hero-input::placeholder { color: var(--text-ghost); }
.hero-input:focus { border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-glow); }
.hero-submit {
  padding: 16px 32px; font-family: var(--font-body); font-size: 15px; font-weight: 700;
  background: var(--accent); color: #fff; border: none; border-radius: 10px;
  cursor: pointer; transition: all 0.25s; white-space: nowrap;
  position: relative; overflow: hidden; width: 100%;
}
.hero-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px var(--accent-glow); }
.hero-submit::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
}
.hero-submit:hover::after { opacity: 1; }
.hero-form.success .hero-form-row, .hero-form.success .hero-submit { display: none; }
.hero-success {
  display: none; align-items: center; justify-content: center; gap: 8px; width: 100%;
  padding: 16px 24px; background: rgba(16,185,129,0.06); border: 2px solid rgba(16,185,129,0.2);
  border-radius: 10px; font-size: 15px; font-weight: 600; color: #059669;
}
.hero-form.success .hero-success { display: flex; }
.hero-micro { margin-top: 14px; font-size: 12px; color: var(--text-tertiary); opacity: 0; }

/* ==================== PRODUCT FRAME ==================== */
.product-section {
  padding: 20px 40px 80px; display: flex; justify-content: center;
  position: relative;
}
.product-header { text-align: center; margin-bottom: 32px; }
.product-headline {
  font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 36px); font-weight: 800;
  letter-spacing: -0.04em; color: var(--text); margin-bottom: 10px;
}
.product-sub {
  font-size: 15px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.6;
}
.product-frame {
  max-width: 1100px; width: 100%;
  border-radius: 16px; border: 1px solid var(--border);
  box-shadow: 0 4px 6px rgba(0,0,0,0.02), 0 25px 80px rgba(0,0,0,0.07);
  overflow: hidden; opacity: 0; transform: translateY(40px) scale(0.97);
}
.pf-bar { display: flex; align-items: center; padding: 10px 20px; background: var(--bg-alt); border-bottom: 1px solid var(--border); gap: 10px; }
.pf-dots { display: flex; gap: 6px; }
.pf-dot { width: 10px; height: 10px; border-radius: 50%; }
.pf-dot:nth-child(1) { background: #EF4444; }
.pf-dot:nth-child(2) { background: #F59E0B; }
.pf-dot:nth-child(3) { background: #10B981; }
.pf-bar-title { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); flex: 1; text-align: center; }
.pf-body { display: grid; grid-template-columns: 200px 1fr 280px; height: 580px; }

.pf-rail { background: var(--bg-alt); border-right: 1px solid var(--border); padding: 14px 10px; }
.pf-rl { font-family: var(--font-mono); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-tertiary); padding: 0 8px; margin-bottom: 3px; }
.pf-doc { display: flex; align-items: center; gap: 8px; padding: 5px 8px; border-radius: 6px; margin-bottom: 0; border-left: 3px solid transparent; cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.pf-doc:hover { background: rgba(0,0,0,0.03); }
.pf-doc.act { background: var(--accent-muted); border-left-color: var(--accent); }
.pf-dn { font-size: 11px; font-weight: 500; color: var(--text); }
.pf-dm { font-family: var(--font-mono); font-size: 9px; color: var(--text-tertiary); }
.pf-div { height: 1px; background: var(--border); margin: 6px 0; }
.pf-ir { display: flex; justify-content: space-between; padding: 3px 8px; }
.pf-il { font-size: 10px; color: var(--text-tertiary); }
.pf-iv { font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: var(--text-secondary); }
.pf-tool { cursor: pointer; border-radius: 4px; transition: background 0.2s; }
.pf-tool:hover { background: rgba(99,102,241,0.06); }
.pf-tool:hover .pf-il { color: var(--accent); }

.pf-center { padding: 24px 32px; overflow: hidden; position: relative; }
.pf-view { display: none; animation: fadeInView 0.3s ease; }
.pf-view.active { display: block; }
@keyframes fadeInView { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Presentation flip */
.product-flip-wrap { perspective: 2000px; position: relative; z-index: 1; }
.product-flip-inner {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-flip-inner.flipped {
  transform: rotateY(540deg);
}
.product-frame { backface-visibility: hidden; }
.product-flip-inner.flipped .product-frame { pointer-events: none; }
.product-flip-inner.flipped .product-report { pointer-events: auto; }
/* ---- Report: polished presentation slide ---- */
.product-report {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  backface-visibility: hidden; transform: rotateY(180deg);
  background: #FAF5F2; border-radius: 16px; border: 1px solid #E4DDD8;
  box-shadow: 0 20px 80px rgba(14,35,69,0.08); overflow: hidden;
  display: flex; flex-direction: column;
}
/* Nav */
.pr-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 40px; background: #0E2345; position: relative;
  transition: background 0.4s ease;
}
.pr-nav-logo {
  font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #fff;
}
.pr-nav-logo span { color: #FF8831; font-weight: 400; }
.pr-nav-dots { display: flex; gap: 6px; align-items: center; }
.pr-nav-dots .dot {
  width: 20px; height: 20px; border-radius: 50%;
  background: transparent; display: flex; align-items: center; justify-content: center;
  cursor: pointer; position: relative;
}
.pr-nav-dots .dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2); transition: all 0.3s;
}
.pr-nav-dots .dot.active::after { background: #FF8831; transform: scale(1.3); box-shadow: 0 0 8px rgba(255,136,49,0.4); }
/* Slide */
.pr-slide-inner { margin-bottom: 24px; }
.pr-tag {
  font-family: var(--font-mono); font-size: 10px; font-weight: 500;
  color: #FF8831; text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 10px; display: flex; align-items: center; gap: 12px;
}
.pr-tag span { display: inline-block; width: 24px; height: 2px; background: #FF8831; }
.pr-headline {
  font-family: var(--font-display); font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  color: #0E2345; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 8px;
}
.pr-headline em { font-style: normal; color: #FF8831; }
.pr-headline-light { font-weight: 300; color: #5A6A80; }
.pr-sub { font-size: 12px; color: #5A6A80; line-height: 1.5; max-width: 440px; }
/* Stat cards */
.pr-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.pr-card {
  background: #fff; border: 1px solid #E4DDD8; border-radius: 10px;
  padding: 18px 14px; transition: border-color 0.2s;
}
.pr-card:hover { border-color: #FF8831; }
.pr-card-val {
  font-family: var(--font-mono); font-size: 24px; font-weight: 700;
  color: #0E2345; letter-spacing: -0.02em; margin-bottom: 4px; line-height: 1;
}
.pr-card-label {
  font-family: var(--font-body); font-size: 11px; color: #0E2345;
  font-weight: 500; line-height: 1.4; margin-bottom: 6px;
}
.pr-card-src {
  font-family: var(--font-mono); font-size: 8px; color: #8A96A6;
  text-transform: uppercase; letter-spacing: 0.08em;
}
/* Nav arrows */
.pr-nav-mid { position: absolute; left: 50%; transform: translateX(-50%); }
.pr-nav-arrows { display: flex; align-items: center; gap: 8px; }
.pr-arrow {
  width: 30px; height: 30px; border: 1px solid rgba(255,255,255,0.15); border-radius: 6px;
  background: transparent; color: rgba(255,255,255,0.5); font-size: 14px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.pr-arrow:hover { border-color: #FF8831; color: #FF8831; background: rgba(255,136,49,0.1); }
.pr-nav-counter { font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.06em; }
.pr-nav-counter span { color: #fff; }
/* Slides */
.pr-slides { flex: 1; position: relative; overflow: hidden; }
.pr-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 28px 48px 16px; opacity: 0; transform: translateX(40px);
  pointer-events: none; transition: opacity 0.4s ease, transform 0.4s ease;
}
.pr-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; position: relative; }
.pr-slide.exit-left { opacity: 0; transform: translateX(-40px); }
/* Matrix */
.pr-matrix {
  width: 100%; border-collapse: separate; border-spacing: 0;
  font-size: 11px; border: 1px solid #E4DDD8; border-radius: 8px; overflow: hidden;
  margin-top: 4px;
}
.pr-matrix thead th {
  font-family: var(--font-mono); font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #0E2345;
  padding: 10px 12px; text-align: left; background: #F0EBE6;
  border-bottom: 1px solid #E4DDD8;
}
.pr-matrix thead th.pr-you { background: rgba(255,136,49,0.1); color: #FF8831; }
.pr-matrix tbody td {
  padding: 8px 12px; border-bottom: 1px solid #F0EBE6;
  font-family: var(--font-mono); font-size: 10px; color: #0E2345; background: #fff;
}
.pr-matrix tbody tr:last-child td { border-bottom: none; }
.pr-matrix .pr-rl { font-family: var(--font-body); font-weight: 600; font-size: 11px; background: #FAF5F2; }
.pr-matrix .pr-yc {
  background: rgba(255,136,49,0.05); color: #FF8831; font-weight: 600;
  border-left: 2px solid rgba(255,136,49,0.15); border-right: 2px solid rgba(255,136,49,0.15);
}
.pr-matrix thead th.pr-you { border-left: 2px solid rgba(255,136,49,0.15); border-right: 2px solid rgba(255,136,49,0.15); }
/* Threats */
.pr-threats { display: flex; flex-direction: column; gap: 14px; margin-top: 4px; }
.pr-threat-top { display: flex; justify-content: space-between; margin-bottom: 5px; }
.pr-threat-name { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: #0E2345; }
.pr-threat-lv { font-family: var(--font-mono); font-size: 10px; }
.pr-threat-bar { height: 6px; border-radius: 3px; background: #F0EBE6; overflow: hidden; }
.pr-threat-bar div { height: 100%; border-radius: 3px; }
/* Insight box */
.pr-insight-box {
  background: #fff; border: 1px solid #E4DDD8; border-left: 3px solid #FF8831;
  border-radius: 10px; padding: 20px 24px; font-size: 13px; line-height: 1.7; color: #5A6A80;
}
.pr-insight-box p { margin-bottom: 8px; }
.pr-insight-box p:last-child { margin-bottom: 0; }
.pr-insight-bold { color: #0E2345; font-weight: 600; }
/* Cover slide */
.pr-cover {
  background:
    linear-gradient(180deg, rgba(14,35,69,0.82) 0%, rgba(14,35,69,0.96) 100%),
    url('https://images.pexels.com/photos/18108149/pexels-photo-18108149.jpeg?auto=compress&cs=tinysrgb&fit=crop&h=627&w=1200') center/cover no-repeat;
  background-color: #0E2345;
  justify-content: center; align-items: center; text-align: center;
}
.pr-cover-inner { display: flex; flex-direction: column; align-items: center; gap: 0; position: relative; }
.pr-cover-logo {
  font-family: var(--font-display); font-size: 36px; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 16px;
}
.pr-cover-logo span { color: #FF8831; }
.pr-cover-line { width: 48px; height: 2px; background: #FF8831; margin-bottom: 20px; }
.pr-cover-title {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.18em; color: rgba(255,255,255,0.4); margin-bottom: 28px;
}
.pr-cover-meta {
  font-family: var(--font-body); font-size: 13px; color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.pr-cover-meta strong { color: #fff; font-weight: 600; }
.pr-cover-badge {
  position: absolute; bottom: 24px; right: 32px;
  font-family: var(--font-mono); font-size: 8px; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.15);
}
/* Nav inverted (cream) for cover slide */
.pr-nav.nav-light {
  background: #FAF5F2;
}
.pr-nav.nav-light .pr-nav-logo { color: #0E2345; }
.pr-nav.nav-light .pr-nav-logo span { color: #FF8831; }
.pr-nav.nav-light .pr-nav-dots .dot::after { background: rgba(14,35,69,0.15); }
.pr-nav.nav-light .pr-nav-dots .dot.active::after { background: #FF8831; }
.pr-nav.nav-light .pr-arrow { border-color: rgba(14,35,69,0.15); color: rgba(14,35,69,0.4); }
.pr-nav.nav-light .pr-arrow:hover { border-color: #FF8831; color: #FF8831; background: rgba(255,136,49,0.08); }
.pr-nav.nav-light .pr-nav-counter { color: rgba(14,35,69,0.35); }
.pr-nav.nav-light .pr-nav-counter span { color: #0E2345; }
/* Footer */
.pr-footer {
  padding: 12px 48px; border-top: 1px solid #E4DDD8;
  font-family: var(--font-mono); font-size: 9px; color: #8A96A6;
  text-transform: uppercase; letter-spacing: 0.08em;
  display: flex; justify-content: space-between; align-items: center;
}
.pr-reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.pr-reveal.visible { opacity: 1; transform: translateY(0); }
.generate-btn {
  display: inline; padding: 0; background: none; border: none;
  font-family: var(--font-mono); font-size: 12px; color: var(--accent);
  cursor: pointer; transition: color 0.2s; letter-spacing: 0.02em;
}
.generate-btn:hover { color: var(--accent-hover); }
.generate-btn.flipped-state { color: var(--text-tertiary); }

.pf-dt { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 4px; }
.pf-dv { font-family: var(--font-mono); font-size: 10px; color: var(--accent); background: var(--accent-muted); padding: 2px 6px; border-radius: 3px; }
.pf-tbl { width: 100%; border-collapse: collapse; font-size: 11px; margin-top: 14px; }
.pf-tbl th { text-align: left; font-family: var(--font-mono); font-size: 9px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-tertiary); padding: 5px 8px; border-bottom: 2px solid var(--border); }
.pf-tbl td { padding: 6px 8px; border-bottom: 1px solid #F3F4F6; color: var(--text-secondary); }
.pf-tbl td:first-child { color: var(--text); font-weight: 500; }
.pf-cf { font-family: var(--font-mono); font-size: 8px; padding: 1px 4px; border-radius: 2px; }
.pf-cf.v { background: rgba(16,185,129,0.08); color: #059669; }
.pf-cf.e { background: rgba(245,158,11,0.08); color: #D97706; }
.pf-upd { border-left: 2px solid var(--accent); padding-left: 14px; margin-top: 14px; background: linear-gradient(90deg, var(--accent-muted) 0%, transparent 200px); }
.pf-upd-l { font-size: 12px; font-weight: 600; margin-bottom: 4px; display: flex; align-items: center; gap: 6px; }
.pf-tag { font-family: var(--font-mono); font-size: 9px; color: var(--accent); background: var(--accent-muted); padding: 1px 5px; border-radius: 3px; }

.pf-chat { border-left: 1px solid var(--border); display: flex; flex-direction: column; background: var(--bg-alt); }
.pf-ch { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 11px; font-weight: 600; color: var(--text-secondary); }
.pf-msgs { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.pf-m { font-size: 11px; line-height: 1.6; }
.pf-mu { background: #fff; padding: 8px 12px; border-radius: 6px; border: 1px solid var(--border); color: var(--text); }
.pf-ma { border-left: 2px solid var(--accent); padding: 6px 10px; font-family: var(--font-mono); font-size: 10px; line-height: 1.8; color: var(--text-secondary); }
.pf-ms { color: var(--text-secondary); font-size: 11px; padding: 0 4px; }
.pf-ci { padding: 10px 14px; border-top: 1px solid var(--border); }
.pf-cf2 { width: 100%; padding: 7px 10px; font-family: var(--font-body); font-size: 11px; background: #fff; border: 1px solid var(--border); border-radius: 5px; display: flex; align-items: center; }
.tc { display: inline-block; width: 1px; height: 13px; background: var(--accent); animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ==================== PRODUCT GRID CARDS ==================== */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.product-grid + .product-grid { margin-top: 16px; }
.product-card {
  background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 28px;
}
.product-card-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.product-card-title {
  font-family: var(--font-display); font-weight: 800; font-size: 17px;
  line-height: 1.3; margin-bottom: 8px;
}
.product-card-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.product-card-desc .tag-buyer { font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: rgba(6,214,160,0.1); color: var(--accent); }
.product-card-desc .tag-partner { font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: rgba(59,130,246,0.1); color: #3B82F6; }
.product-card-desc .tag-champion { font-family: var(--font-mono); font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: rgba(245,158,11,0.1); color: #F59E0B; }

/* Product example callout */
.product-example {
  margin-top: 32px; padding: 28px; background: #0A0F1A; border-radius: 16px;
}
.product-example-label {
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.product-example-headline {
  font-family: var(--font-display); font-weight: 700; font-size: 18px;
  color: #fff; line-height: 1.4; margin-bottom: 12px;
}
.product-example-note { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Divider */
.section-divider { max-width: 400px; margin: 0 auto; padding: 30px 0; }
.section-divider hr { border: none; border-top: 2px solid rgba(0,0,0,0.12); border-radius: 1px; }
.section-divider-light hr { border-top-color: rgba(0,0,0,0.06); }

/* See it in action */
.see-report { text-align: center; padding: 60px 40px; max-width: 700px; margin: 0 auto; }
.see-report-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
}
.see-report-headline {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  margin-bottom: 16px; color: var(--text);
}
.see-report-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.see-report-link {
  display: inline-block; padding: 14px 32px; background: var(--text); color: #fff;
  border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px;
}

/* Early access CTA */
.early-cta { text-align: center; padding: 60px 40px; max-width: 600px; margin: 0 auto; }
.early-cta-headline {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  margin-bottom: 16px; color: var(--text);
}
.early-cta-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }
.early-cta-link {
  display: inline-block; padding: 14px 32px; background: var(--accent); color: #fff;
  border-radius: 10px; text-decoration: none; font-weight: 600; font-size: 14px;
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  padding: 40px 40px; text-align: center;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.trust-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.trust-stat-val {
  font-family: var(--font-display); font-size: 40px; font-weight: 800;
  letter-spacing: -0.04em;
}
.trust-stat-val:nth-child(1) { color: var(--accent); }
.trust-stats > div:nth-child(1) .trust-stat-val { color: #6366F1; }
.trust-stats > div:nth-child(2) .trust-stat-val { color: #10B981; }
.trust-stats > div:nth-child(3) .trust-stat-val { color: #F59E0B; }
.trust-stats > div:nth-child(4) .trust-stat-val { color: #EC4899; }
.trust-stat-lbl { font-size: 13px; color: var(--text-tertiary); margin-top: 2px; }

/* ==================== QUOTE BREAK ==================== */
.quote-break {
  position: relative; padding: 120px 40px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--text); color: #fff;
}
.quote-break-text {
  position: relative; z-index: 2; text-align: center; max-width: 800px;
}
.quote-break-line {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.04em; line-height: 1.15;
  opacity: 0; transform: translateY(30px);
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.5);
}
.quote-break-line:nth-child(1) {
  font-size: clamp(24px, 3.5vw, 38px); color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.quote-break-line:nth-child(2) {
  font-size: clamp(32px, 4.5vw, 52px); color: #fff;
  margin-bottom: 20px;
}
.quote-break-line:nth-child(3) {
  font-size: clamp(18px, 2.5vw, 26px); color: var(--accent);
  letter-spacing: 0.02em; text-transform: uppercase;
  font-family: var(--font-mono); font-weight: 600;
}
.quote-break-attr {
  font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.3);
  margin-top: 32px; opacity: 0;
}

/* ==================== AMBIENT FLOATING SHAPES ==================== */
.amb { position: absolute; pointer-events: none; z-index: 0; opacity: 0.07; }
.amb-circle { border-radius: 50%; }
.amb-square { border-radius: 20%; }
.amb-diamond { transform: rotate(45deg); border-radius: 4px; }
.amb-ring { border-radius: 50%; background: transparent !important; border: 3px solid; }
.amb-cross { background: transparent !important; }
.amb-cross::before, .amb-cross::after { content: ''; position: absolute; background: currentColor; border-radius: 2px; }
.amb-cross::before { width: 100%; height: 30%; top: 35%; left: 0; }
.amb-cross::after { width: 30%; height: 100%; left: 35%; top: 0; }
.amb-dots { background: transparent !important; background-image: radial-gradient(currentColor 2px, transparent 2px) !important; background-size: 8px 8px !important; }
.amb-tri { background: transparent !important; width: 0 !important; height: 0 !important; border-left: var(--amb-s, 20px) solid transparent; border-right: var(--amb-s, 20px) solid transparent; border-bottom: calc(var(--amb-s, 20px) * 1.7) solid; }
@keyframes ambFloat { 0%, 100% { transform: var(--amb-base, none) translateY(0) rotate(0deg); } 50% { transform: var(--amb-base, none) translateY(var(--amb-d, -15px)) rotate(var(--amb-r, 8deg)); } }
@keyframes ambSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ambPulse { 0%, 100% { opacity: var(--amb-o, 0.07); transform: scale(1); } 50% { opacity: calc(var(--amb-o, 0.07) * 1.5); transform: scale(1.1); } }
.amb-float { animation: ambFloat var(--amb-t, 6s) ease-in-out infinite; }
.amb-spin { animation: ambSpin var(--amb-t, 20s) linear infinite; }
.amb-pulse { animation: ambPulse var(--amb-t, 4s) ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .amb { animation: none !important; } }
@media (max-width: 768px) { .amb { display: none; } }
.amb-wrap { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100vw; height: 100%; pointer-events: none; z-index: 0; }
.amb-section { position: relative; }

/* ==================== VALUE STACK ==================== */
.value-stack { padding: 100px 40px; max-width: 960px; margin: 0 auto; position: relative; }
.vs-headline {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -0.04em; text-align: center; margin-bottom: 12px;
  opacity: 0; transform: translateY(20px);
}
.vs-sub {
  font-size: 16px; color: var(--text-secondary); text-align: center; margin-bottom: 56px;
  opacity: 0; transform: translateY(12px);
}

.vs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 900px) { .vs-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 580px) { .vs-grid { grid-template-columns: 1fr; } }
.vs-item {
  padding: 28px 24px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg); position: relative; overflow: hidden;
  opacity: 0; transform: translateY(24px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.vs-item:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(6,214,160,0.12); }
.vs-item.vs-full { grid-column: 1 / -1; }
.vs-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 18px; margin-bottom: 16px;
}
.vs-icon.ic1 { background: rgba(6,214,160,0.08); color: var(--accent); }
.vs-icon.ic2 { background: rgba(16,185,129,0.08); color: var(--fresh); }
.vs-icon.ic3 { background: rgba(245,158,11,0.08); color: var(--stale); }
.vs-icon.ic4 { background: rgba(244,63,94,0.08); color: #F43F5E; }
.vs-icon.ic5 { background: rgba(139,92,246,0.08); color: #8B5CF6; }
.vs-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.vs-desc { font-size: 14px; line-height: 1.65; color: var(--text-secondary); }
.vs-worth { font-family: var(--font-mono); font-size: 11px; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.vs-worth-label { color: var(--text-tertiary); }
.vs-worth-val { color: var(--accent); font-weight: 600; }
.vs-total {
  margin-top: 24px; padding: 28px 32px; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent) 0%, #8B5CF6 100%); color: #fff; text-align: center;
  opacity: 0; transform: translateY(20px);
}
.vs-total-label { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.7); margin-bottom: 8px; }
.vs-total-val { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 800; letter-spacing: -0.04em; }
.vs-total-val .vs-free { color: #FCD34D; }
.vs-total-sub { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 4px; }

/* ==================== MID CTA ==================== */
.mid-cta {
  padding: 80px 40px; text-align: center; background: #111827;
  border-top: none; border-bottom: none;
  position: relative; overflow: hidden;
}
.mid-cta::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
}
.mid-cta > * { position: relative; z-index: 1; }
.mid-cta-text {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 24px; color: #FFFFFF;
  opacity: 0; transform: translateY(16px);
}
.mid-cta-form { display: flex; flex-direction: column; gap: 10px; max-width: 520px; margin: 0 auto; align-items: center; }
.mid-cta-row { display: flex; gap: 8px; width: 100%; }
.mid-cta-input { flex: 1; padding: 14px 18px; font-family: var(--font-body); font-size: 14px; border: 2px solid rgba(255,255,255,0.15); border-radius: 10px; background: rgba(255,255,255,0.08); color: #FFFFFF; outline: none; transition: all 0.25s; min-width: 0; }
.mid-cta-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.mid-cta-input::placeholder { color: rgba(255,255,255,0.4); }
.mid-cta-submit { padding: 14px 28px; font-family: var(--font-body); font-size: 15px; font-weight: 700; background: var(--accent); color: #fff; border: none; border-radius: 10px; cursor: pointer; transition: all 0.25s; width: 100%; }
.mid-cta-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }
.mid-cta-form.success .mid-cta-row, .mid-cta-form.success .mid-cta-submit { display: none; }
.mid-cta-success { display: none; font-size: 15px; color: #34D399; padding: 14px; }
.mid-cta-form.success .mid-cta-success { display: block; }

/* ==================== HOW IT WORKS ==================== */
.how { padding: 100px 40px; max-width: 800px; margin: 0 auto; text-align: center; position: relative; }
.how-headline {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -0.04em; margin-bottom: 56px;
  opacity: 0; transform: translateY(20px);
}
.how-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; text-align: center; }
.how-step { opacity: 0; transform: translateY(24px); }
.how-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-size: 18px; font-weight: 800; margin-bottom: 16px;
  transition: transform 0.3s;
}
.how-step:hover .how-num { transform: scale(1.1) rotate(-3deg); }
.how-step:nth-child(3) .how-num { background: var(--fresh); }
.how-step:nth-child(5) .how-num { background: var(--stale); }
.how-t { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.01em; }
.how-d { font-size: 13px; line-height: 1.6; color: var(--text-secondary); }
.how-time { font-family: var(--font-mono); font-size: 12px; color: var(--accent); margin-top: 8px; font-weight: 500; }
.how-arrow { display: flex; align-items: center; padding-top: 8px; color: var(--text-ghost); font-size: 24px; }

/* ==================== OBJECTIONS ==================== */
.objections-wrap { position: relative; overflow: hidden; }
.objections-bg { position: absolute; inset: 0; z-index: 0; }
.objections-bg canvas { width: 100%; height: 100%; }
.objections-grid {
  position: absolute; inset: 0; z-index: 1;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 80%);
}
.objections { padding: 100px 40px; max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.obj-headline {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; letter-spacing: -0.03em; text-align: center; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
}
.obj-item {
  padding: 24px 0; border-bottom: 1px solid var(--border);
  opacity: 0; transform: translateY(16px);
  transition: padding-left 0.3s;
}
.obj-item:hover { padding-left: 8px; }
.obj-item:last-child { border-bottom: none; }
.obj-q { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.obj-a { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

/* ==================== BOTTOM CTA ==================== */
.compound-to-cta-divider {
  height: 120px; position: relative;
  background: linear-gradient(180deg, #0B0F1A 0%, #0F172A 50%, #111827 100%);
  overflow: hidden;
}
.compound-to-cta-divider::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 600px; height: 1px; transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.3), transparent);
}
.bottom-cta {
  padding: 100px 40px; text-align: center;
  background: #111827; color: #fff; position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.6;
}
.bc-hl {
  font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.08; margin-bottom: 14px;
  position: relative;
  opacity: 0; transform: translateY(20px);
}
.bc-sub { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 36px; position: relative; opacity: 0; }
.bc-form { display: flex; flex-direction: column; gap: 10px; max-width: 520px; margin: 0 auto; position: relative; align-items: center; }
.bc-form-row { display: flex; gap: 8px; width: 100%; }
.bc-input { flex: 1; padding: 14px 18px; font-family: var(--font-body); font-size: 14px; background: rgba(255,255,255,0.08); border: 2px solid rgba(255,255,255,0.12); border-radius: 10px; color: #fff; outline: none; transition: all 0.25s; min-width: 0; }
.bc-input::placeholder { color: rgba(255,255,255,0.3); }
.bc-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(99,102,241,0.2); }
.bc-submit { padding: 16px 32px; font-family: var(--font-body); font-size: 15px; font-weight: 700; background: var(--accent); color: #fff; border: none; border-radius: 10px; cursor: pointer; transition: all 0.25s; white-space: nowrap; width: 100%; }
.bc-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.3); }
.bc-form.success .bc-form-row, .bc-form.success .bc-submit { display: none; }
.bc-success { display: none; font-size: 15px; color: var(--fresh); padding: 16px; }
.bc-form.success .bc-success { display: block; }
.bc-note { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,0.3); position: relative; }

/* ==================== TESTIMONIALS ==================== */
.testimonials { padding: 80px 40px; max-width: 1000px; margin: 0 auto; position: relative; }
.test-headline {
  font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; letter-spacing: -0.03em; text-align: center; margin-bottom: 48px;
  opacity: 0; transform: translateY(20px);
}
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.test-card {
  padding: 28px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg); opacity: 0; transform: translateY(20px);
  transition: box-shadow 0.3s, transform 0.3s;
}
.test-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.test-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.test-quote {
  font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 20px;
  font-style: italic;
}
.test-quote strong { color: var(--text); font-weight: 600; font-style: normal; }
.test-author { display: flex; align-items: center; gap: 10px; }
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--accent-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent);
}
.test-card:nth-child(2) .test-avatar { background: rgba(16,185,129,0.08); color: var(--fresh); }
.test-card:nth-child(3) .test-avatar { background: rgba(245,158,11,0.08); color: var(--stale); }
.test-name { font-size: 13px; font-weight: 600; color: var(--text); }
.test-role { font-size: 12px; color: var(--text-tertiary); }

/* ==================== INTELLIGENCE HUB ==================== */
.intel {
  padding: 100px 40px; max-width: 1000px; margin: 0 auto;
}
.intel-headline {
  font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800; letter-spacing: -0.04em; text-align: center; margin-bottom: 10px;
  opacity: 0; transform: translateY(20px);
}
.intel-sub {
  font-size: 16px; color: var(--text-secondary); text-align: center; margin-bottom: 48px;
  opacity: 0; transform: translateY(12px);
}
.intel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.intel-card {
  padding: 28px; border-radius: 14px; border: 1px solid var(--border);
  background: var(--bg); text-decoration: none; color: inherit;
  opacity: 0; transform: translateY(16px);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.intel-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-3px);
  border-color: var(--accent-border);
}
.intel-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 100px;
  background: var(--accent-muted); color: var(--accent);
  margin-bottom: 12px;
}
.intel-title {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.intel-card:hover .intel-title { color: var(--accent); }
.intel-desc {
  font-size: 14px; line-height: 1.6; color: var(--text-secondary); margin-bottom: 14px;
}
.intel-meta {
  font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary);
}

/* ==================== PRODUCT BUILD ANIMATION ==================== */
.pf-body [data-build] { opacity: 0; transform: translateY(6px); transition: opacity 0.4s, transform 0.4s; }
.pf-body [data-build].built { opacity: 1; transform: translateY(0); }

/* ==================== REPORT PREVIEW ==================== */
.rp { padding: 100px 40px; background: #0B0F1A; position: relative; overflow: hidden; }
.rp::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 50% 50% at 50% 50%, black 10%, transparent 70%);
}
.rp-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.rp-header { text-align: center; margin-bottom: 40px; }
.rp-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
  padding: 4px 12px; border: 1px solid rgba(99,102,241,0.3); border-radius: 20px; margin-bottom: 16px;
}
.rp-headline {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.04em; color: #FFFFFF; margin-bottom: 12px;
}
.rp-sub { font-size: 16px; color: rgba(255,255,255,0.5); }

/* Tabs */
.rp-tabs { display: flex; justify-content: center; gap: 4px; margin-bottom: 32px; }
.rp-tab {
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  padding: 8px 20px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.1);
  background: transparent; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.25s;
}
.rp-tab:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.rp-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }

/* Panels */
.rp-panel { display: none; }
.rp-panel.active { display: block; animation: rpFadeIn 0.4s ease; }
@keyframes rpFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.rp-chart-wrap {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 32px; backdrop-filter: blur(8px);
}
.rp-chart-title {
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  color: #FFFFFF; margin-bottom: 24px; letter-spacing: -0.02em;
}
.rp-insight {
  margin-top: 20px; padding: 12px 16px; border-radius: 8px;
  background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15);
  font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7);
}

/* Scatter Plot */
.rp-scatter { margin-bottom: 8px; }
.rp-scatter-row { display: flex; gap: 0; }
.rp-axis-y {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0 12px 0 0; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.35);
  min-width: 44px; text-align: right;
}
.rp-axis-x {
  display: flex; justify-content: space-between; padding: 8px 0 0 0;
  margin-left: 44px;
  font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.35);
}
.rp-plot {
  flex: 1; height: 340px; position: relative;
  border-left: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1);
}
.rp-grid-line {
  position: absolute; left: 0; right: 0; height: 1px;
  background: rgba(255,255,255,0.05);
}
.rp-quad {
  position: absolute; font-family: var(--font-mono); font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.2);
}

/* Dots */
.rp-dot {
  position: absolute; width: 40px; height: 40px; transform: translate(-50%, 50%);
  cursor: pointer; z-index: 2;
}
.rp-dot-inner {
  width: 14px; height: 14px; border-radius: 50%; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  transition: all 0.3s; box-shadow: 0 0 0 4px rgba(99,102,241,0.15);
}
.rp-dot-you .rp-dot-inner { background: #6366F1; box-shadow: 0 0 0 4px rgba(99,102,241,0.3), 0 0 20px rgba(99,102,241,0.4); width: 18px; height: 18px; }
.rp-dot-high .rp-dot-inner { background: #EF4444; box-shadow: 0 0 0 4px rgba(239,68,68,0.15); }
.rp-dot-med .rp-dot-inner { background: #F59E0B; box-shadow: 0 0 0 4px rgba(245,158,11,0.15); }
.rp-dot-low .rp-dot-inner { background: #9CA3AF; box-shadow: 0 0 0 4px rgba(156,163,175,0.15); }

.rp-dot:hover .rp-dot-inner { transform: translate(-50%, -50%) scale(1.4); }
.rp-tooltip {
  position: absolute; bottom: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #1F2937; border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  padding: 10px 14px; font-size: 12px; line-height: 1.5; color: #fff; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: all 0.25s; z-index: 10;
}
.rp-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  border: 5px solid transparent; border-top-color: #1F2937;
}
.rp-dot:hover .rp-tooltip { opacity: 1; transform: translateX(-50%) translateY(-4px); }

/* Radar */
.rp-radar-wrap { display: flex; flex-direction: column; align-items: center; }
.rp-radar { width: 100%; max-width: 360px; height: auto; }
.rp-radar text { font-family: var(--font-body); }
.rp-radar-you, .rp-radar-comp { transition: all 0.4s; }
.rp-radar:hover .rp-radar-you { fill: rgba(99,102,241,0.25); }
.rp-radar:hover .rp-radar-comp { fill: rgba(239,68,68,0.15); }
.rp-radar-legend {
  display: flex; flex-wrap: wrap; gap: 12px 20px; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,0.6);
  justify-content: center;
}
.rp-radar-legend i {
  display: inline-block; width: 10px; height: 10px; border-radius: 50%;
  margin-right: 6px; vertical-align: middle;
}

/* Funnel */
.rp-funnel { display: flex; flex-direction: column; gap: 12px; }
.rp-funnel-tier {
  display: flex; align-items: center; gap: 20px; padding: 16px 20px;
  border-radius: 12px; transition: all 0.3s; cursor: default;
}
.rp-funnel-tier:hover { transform: translateX(4px); }
.rp-funnel-tam { background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.2); }
.rp-funnel-sam { background: rgba(99,102,241,0.05); border: 1px solid rgba(99,102,241,0.12); }
.rp-funnel-som { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.15); }
.rp-funnel-bar {
  width: 6px; border-radius: 3px; align-self: stretch; min-height: 40px;
}
.rp-funnel-tam .rp-funnel-bar { background: #6366F1; }
.rp-funnel-sam .rp-funnel-bar { background: #818CF8; }
.rp-funnel-som .rp-funnel-bar { background: #10B981; }
.rp-funnel-info { flex: 1; }
.rp-funnel-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px;
}
.rp-funnel-val {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: #FFFFFF; letter-spacing: -0.03em;
}
.rp-funnel-desc { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }
.rp-funnel-trend {
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--fresh);
  white-space: nowrap;
}

/* Scatter dot entrance animation */
.rp-dot { opacity: 0; }
.rp-dot.animated { opacity: 1; }
.rp-dot.selected .rp-dot-inner { transform: translate(-50%, -50%) scale(1.5); }

/* Split layout: chart left, detail right */
.rp-split { display: flex; gap: 20px; align-items: stretch; }
.rp-split-chart { flex: 1; min-width: 0; }
.rp-split-detail {
  width: 280px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.rp-detail-placeholder {
  text-align: center; padding: 20px;
}

/* Detail card */
.rp-detail {
  display: none; padding: 20px;
  background: rgba(255,255,255,0.03); border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  animation: rpFadeIn 0.3s ease;
  width: 100%;
}
.rp-detail.open { display: block; }
.rp-detail-name {
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  color: #fff; margin-bottom: 16px;
}
.rp-detail-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px;
}
.rp-detail-stat { text-align: center; }
.rp-detail-stat-val {
  font-family: var(--font-mono); font-size: 15px; font-weight: 700; color: #fff;
}
.rp-detail-stat-lbl { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
.rp-detail-bars { display: flex; flex-direction: column; gap: 8px; }
.rp-detail-bar-row {
  display: flex; align-items: center; gap: 12px; font-size: 11px; color: rgba(255,255,255,0.5);
}
.rp-detail-bar-row span:first-child { width: 80px; text-align: right; flex-shrink: 0; }
.rp-detail-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rp-detail-bar-fill { height: 100%; border-radius: 3px; background: var(--accent); width: 0%; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1); }

/* Radar stroke animation */
.rp-radar-you, .rp-radar-comp, .rp-radar-extra { stroke-dasharray: 2000; stroke-dashoffset: 2000; }
.rp-radar-you.drawn, .rp-radar-comp.drawn, .rp-radar-extra.drawn { stroke-dashoffset: 0; }
.rp-radar-extra.drawn { transition: stroke-dashoffset 0.8s 0.1s cubic-bezier(0.4, 0, 0.2, 1); }
.rp-radar-you.drawn { fill: rgba(99,102,241,0.12); transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1), fill 0.6s 0.8s; }
.rp-radar-comp.drawn { fill: rgba(239,68,68,0.06); transition: stroke-dashoffset 1s 0.3s cubic-bezier(0.4, 0, 0.2, 1), fill 0.6s 1s; }
.rp-radar circle { opacity: 0; transition: opacity 0.3s; }
.rp-radar.animated circle { opacity: 1; }

/* Funnel expand — now handled by side panel */
.rp-funnel-tier { cursor: pointer; }
.rp-funnel-tier.selected { border-color: var(--accent); background: rgba(99,102,241,0.1); }

/* Market detail side panel */
.rp-market-detail {
  width: 100%; padding: 20px;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; animation: rpFadeIn 0.3s ease;
}
.rp-market-detail-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 4px;
}
.rp-market-detail-val {
  font-family: var(--font-display); font-size: 28px; font-weight: 800;
  color: #fff; letter-spacing: -0.03em; margin-bottom: 16px;
}
.rp-market-detail-rows { display: flex; flex-direction: column; gap: 0; }
.rp-market-detail-row {
  display: flex; justify-content: space-between; align-items: center; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 12px;
}
.rp-market-detail-row span:first-child { color: rgba(255,255,255,0.5); }
.rp-market-detail-row span:last-child { font-family: var(--font-mono); font-weight: 600; color: rgba(255,255,255,0.8); }
.rp-market-detail-bar {
  height: 4px; border-radius: 2px; background: rgba(255,255,255,0.06);
  margin-top: 4px; overflow: hidden;
}
.rp-market-detail-bar-fill {
  height: 100%; border-radius: 2px; width: 0%; transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Funnel entrance animation */
.rp-funnel-tier { opacity: 0; transform: translateX(-20px); }
.rp-funnel-tier.animated { opacity: 1; transform: translateX(0); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }

/* Pulse on "you" dot */
@keyframes rpPulse {
  0% { box-shadow: 0 0 0 4px rgba(99,102,241,0.3), 0 0 20px rgba(99,102,241,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(99,102,241,0.15), 0 0 30px rgba(99,102,241,0.3); }
  100% { box-shadow: 0 0 0 4px rgba(99,102,241,0.3), 0 0 20px rgba(99,102,241,0.4); }
}
.rp-dot-you.animated .rp-dot-inner { animation: rpPulse 2s ease-in-out infinite; }

@media (max-width: 900px) {
  .rp { padding: 60px 20px; }
  .rp-chart-wrap { padding: 20px; }
  .rp-plot { height: 240px; }
  .rp-tabs { flex-wrap: wrap; }
  .rp-funnel-val { font-size: 22px; }
  .rp-split { flex-direction: column; }
  .rp-split-detail { width: 100%; }
}

/* ==================== COMPOUNDING INTELLIGENCE ==================== */
.compound {
  padding: 120px 40px 100px; background: #0B0F1A;
  position: relative; overflow: hidden;
}
.compound::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(99,102,241,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 40% 40% at 50% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 40% 40% at 50% 30%, black 10%, transparent 70%);
}
.compound::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 800px; height: 800px; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 60%);
  pointer-events: none; animation: compoundPulse 8s ease-in-out infinite;
}
@keyframes compoundPulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.15); }
}
.compound-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.compound-tag {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
  padding: 4px 12px; border: 1px solid rgba(99,102,241,0.3); border-radius: 20px; margin-bottom: 16px;
  animation: tagGlow 3s ease-in-out infinite;
}
@keyframes tagGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(99,102,241,0.1); }
  50% { box-shadow: 0 0 20px rgba(99,102,241,0.3); }
}
.compound-headline {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 12px; line-height: 1.15;
}
.compound-sub { font-size: 16px; color: rgba(255,255,255,0.5); margin-bottom: 48px; max-width: 600px; }

/* Comparison grid — interactive flip cards */
.compound-compare {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 56px;
  perspective: 1200px;
}
.compound-others, .compound-you {
  padding: 28px; border-radius: 16px; display: flex; flex-direction: column; gap: 14px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s;
  transform-style: preserve-3d;
}
.compound-others {
  background: rgba(239,68,68,0.04); border: 1px solid rgba(239,68,68,0.12);
}
.compound-others:hover {
  transform: rotateY(-3deg) rotateX(2deg) scale(1.02);
  box-shadow: -8px 8px 40px rgba(239,68,68,0.08);
}
.compound-you {
  background: rgba(99,102,241,0.06); border: 1px solid rgba(99,102,241,0.25);
}
.compound-you:hover {
  transform: rotateY(3deg) rotateX(2deg) scale(1.03);
  box-shadow: 8px 8px 40px rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.5);
}
.compound-others-label, .compound-you-label {
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.compound-others-label { color: rgba(239,68,68,0.6); }
.compound-you-label { color: var(--accent); }
.compound-others-item, .compound-you-item {
  font-size: 13px; line-height: 1.5; display: flex; align-items: flex-start; gap: 8px;
  opacity: 0; transform: translateX(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.compound-others-item.revealed { opacity: 1; }
.compound-you-item.revealed { opacity: 1; }
.compound-others-item { color: rgba(255,255,255,0.4); }
.compound-you-item { color: rgba(255,255,255,0.85); }
.compound-x { color: #EF4444; font-size: 14px; flex-shrink: 0; margin-top: 1px; transition: transform 0.3s; }
.compound-others-item:hover .compound-x { transform: rotate(90deg); }
.compound-check { color: #10B981; font-size: 14px; flex-shrink: 0; margin-top: 1px; transition: transform 0.3s; }
.compound-you-item:hover .compound-check { transform: scale(1.3); }
.compound-you-item:hover { color: #fff; }

/* Connecting line between comparison cards */
.compound-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: #0B0F1A; border: 2px solid rgba(99,102,241,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.5); z-index: 2;
}

/* Timeline — enhanced with progress animation */
.compound-timeline {
  position: relative; padding-left: 40px; margin-bottom: 48px;
}
.compound-tl-line {
  position: absolute; left: 6px; top: 8px; bottom: 8px; width: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 1px;
}
.compound-tl-progress {
  position: absolute; left: 6px; top: 8px; width: 2px; height: 0;
  background: linear-gradient(180deg, var(--accent), #10B981);
  border-radius: 1px; transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.compound-tl-node {
  position: relative; padding: 0 0 32px 0;
  opacity: 0; transform: translateY(16px);
}
.compound-tl-node.animated { opacity: 1; transform: translateY(0); transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); }
.compound-tl-dot {
  position: absolute; left: -40px; top: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: rgba(255,255,255,0.15); border: 3px solid #0B0F1A;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.compound-tl-node.animated .compound-tl-dot {
  background: var(--accent); box-shadow: 0 0 0 2px var(--accent), 0 0 16px rgba(99,102,241,0.4);
}
.compound-tl-node:last-child.animated .compound-tl-dot {
  background: #10B981; box-shadow: 0 0 0 2px #10B981, 0 0 16px rgba(16,185,129,0.4);
}
.compound-tl-time {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 4px;
  transition: color 0.5s;
}
.compound-tl-node.animated .compound-tl-time { color: var(--accent); }
.compound-tl-node:last-child.animated .compound-tl-time { color: #10B981; }
.compound-tl-title {
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: #fff; margin-bottom: 6px;
}
.compound-tl-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.45); }
.compound-tl-node:hover .compound-tl-title { color: var(--accent); transition: color 0.3s; }
.compound-tl-node:last-child:hover .compound-tl-title { color: #10B981; }

/* Bottom stats — animated counters */
.compound-bottom {
  display: flex; justify-content: center; gap: 48px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06);
}
.compound-stat { text-align: center; transition: transform 0.3s; }
.compound-stat:hover { transform: translateY(-4px); }
.compound-stat-val {
  font-family: var(--font-display); font-size: 32px; font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 40%, var(--accent) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compound-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.35); margin-top: 4px; }

@media (max-width: 900px) {
  .compound { padding: 80px 20px; }
  .compound-compare { grid-template-columns: 1fr; }
  .compound-others:hover, .compound-you:hover { transform: none; }
  .compound-bottom { gap: 24px; }
  .compound-stat-val { font-size: 24px; }
  .compound-to-cta-divider { height: 80px; }
}

.footer { padding: 36px 40px; text-align: center; font-size: 12px; color: var(--text-tertiary); }

/* Float CTA */
.float-cta {
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  padding: 12px 24px; font-family: var(--font-body); font-size: 14px; font-weight: 600;
  background: var(--accent); color: #fff; border: none; border-radius: 10px;
  cursor: pointer; box-shadow: 0 4px 20px var(--accent-glow);
  transition: all 0.3s; opacity: 0; transform: translateY(20px); pointer-events: none;
}
.float-cta.vis { opacity: 1; transform: translateY(0); pointer-events: auto; }
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); }
.float-cta.inverted { background: #fff; color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.float-cta.inverted:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; z-index: 101;
  background: var(--accent); width: 0%; transition: width 0.1s;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
  .hero { padding: 100px 24px 40px; }
  .hero-headline { font-size: clamp(32px, 9vw, 48px); }
  .hero-form, .mid-cta-form, .bc-form { flex-direction: column; }
  .hero-form-row, .mid-cta-row, .bc-form-row { flex-direction: column; }
  .hero-value { flex-direction: column; gap: 10px; }
  .pf-body { grid-template-columns: 1fr; height: auto; }
  .pf-rail, .pf-chat { display: none; }
  .how-steps { grid-template-columns: 1fr; gap: 32px; }
  .how-arrow { display: none; }
  .trust-stats { gap: 32px; }
  .nav { padding: 12px 16px; }
  .nav-count { display: none; }
  .nav-logo { font-size: 22px; }
  .nav-right { gap: 12px; }
  .nav-link { font-size: 12px; }
  .nav-cta { font-size: 12px; padding: 7px 14px; white-space: nowrap; }
  .theme-switcher { bottom: auto; top: 60px; left: 8px; font-size: 10px; padding: 8px 12px; }

  /* Presentation report — mobile: swap 3D flip for show/hide */
  .product-flip-wrap { perspective: none; }
  .product-flip-inner { transform-style: flat; transition: none; }
  .product-report { position: relative; transform: none; height: auto; backface-visibility: visible; display: none; }
  .product-flip-inner.flipped .product-report { display: flex; }
  .product-flip-inner.flipped { transform: none; }
  .product-flip-inner.flipped .product-frame { display: none; }
  .pr-nav { padding: 10px 14px; gap: 8px; }
  .pr-nav-logo { font-size: 11px; flex-shrink: 0; }
  .pr-nav-mid { display: none; }
  .pr-nav-arrows { gap: 6px; flex-shrink: 0; }
  .pr-arrow { width: 26px; height: 26px; font-size: 12px; }
  .pr-nav-counter { font-size: 9px; }
  .pr-slides { overflow: visible; }
  .pr-slide { position: absolute; padding: 16px 16px 12px; justify-content: flex-start; }
  .pr-slide.active { position: relative; }
  .pr-slide-inner { margin-bottom: 16px; }
  .pr-cards { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
  .pr-card { padding: 12px 10px; }
  .pr-card-val { font-size: 18px; }
  .pr-card-label { font-size: 10px; }
  .pr-matrix { font-size: 9px; }
  .pr-matrix th, .pr-matrix td { padding: 5px 3px; }
  .pr-headline { font-size: clamp(18px, 5vw, 24px); }
  .pr-sub { font-size: 11px; }
  .blob { opacity: 0.2; }
  .test-grid { grid-template-columns: 1fr; }
  .intel-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr !important; }
  .product-section { padding: 20px 20px 60px; }
  .product-example { padding: 20px; }
  .product-example-headline { font-size: 15px; }
}
@media (max-width: 480px) {
  .nav-logo { font-size: 20px; }
  .nav-link { display: none; }
  .nav-cta { font-size: 11px; padding: 6px 12px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .hero-headline .char { opacity: 1 !important; transform: none !important; }
}

/* ====== SCANNING OVERLAY ====== */
.scan-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg, #F8FDFB);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.scan-overlay--active {
  opacity: 1;
  pointer-events: all;
}

.scan-overlay--active {
  display: flex;
  flex-direction: row;
}

.scan-overlay__inner {
  width: 420px;
  flex-shrink: 0;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  border-right: 1px solid #E5E7EB;
  overflow-y: auto;
}

/* Right panel */
.scan-right {
  flex: 1;
  min-width: 0;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

.scan-right__empty {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.scan-findings {
  max-width: 440px;
  width: 100%;
}

.scan-findings__header {
  font-family: var(--font-display, 'Inter', sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent, #06D6A0);
  margin-bottom: 24px;
}

.scan-findings__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scan-finding {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  animation: finding-in 0.4s ease;
}

.scan-finding:first-child { border-top: 1px solid rgba(0,0,0,0.06); }

.scan-finding__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(0,0,0,0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  min-width: 80px;
  padding-top: 2px;
}

.scan-finding__value {
  font-size: 14px;
  color: rgba(0,0,0,0.8);
  line-height: 1.5;
}

.scan-finding__insight {
  margin-top: 20px;
  padding: 16px;
  background: rgba(6, 214, 160, 0.06);
  border-left: 3px solid var(--accent, #06D6A0);
  border-radius: 0 8px 8px 0;
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  font-style: italic;
  animation: finding-in 0.4s ease;
}

@keyframes finding-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left panel slide off */
.scan-overlay__inner--exit {
  animation: slide-off-left 0.5s cubic-bezier(0.4, 0, 1, 1) forwards;
}

@keyframes slide-off-left {
  0% { transform: translateX(0); opacity: 1; }
  100% { transform: translateX(-100%); opacity: 0; }
}

/* Right panel goes full width */
.scan-right--fullscreen {
  position: fixed;
  inset: 0;
  width: 100%;
  z-index: 10;
}

/* CRT boot animation */
.scan-right__empty--fading canvas {
  transition: opacity 0.6s ease;
  opacity: 0;
}

/* Report in right panel */
.scan-right__report {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  z-index: 2;
  clip-path: inset(50% 0 50% 0);
  animation: crt-boot 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.scan-right__report::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #06D6A0;
  z-index: 10;
  animation: crt-line 0.3s ease forwards, crt-line-fade 0.4s ease 0.3s forwards;
}

@keyframes crt-boot {
  0% { clip-path: inset(50% 0 50% 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes crt-line {
  0% { left: 40%; right: 40%; opacity: 0; }
  100% { left: 0; right: 0; opacity: 1; }
}

@keyframes crt-line-fade {
  0% { opacity: 1; height: 2px; }
  100% { opacity: 0; height: 0; }
}

.scan-right__report-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.scan-right__back {
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.15s;
}

.scan-right__back:hover {
  color: #111827;
}

.scan-right__report-label {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #06D6A0;
}

.scan-right__report-open {
  font-size: 13px;
  font-weight: 600;
  color: #06D6A0;
  text-decoration: none;
  transition: opacity 0.15s;
}

.scan-right__report-open:hover {
  opacity: 0.7;
}

.scan-right__iframe {
  flex: 1;
  width: 100%;
  border: none;
}

@media (max-width: 768px) {
  .scan-overlay--active {
    flex-direction: column;
  }
  .scan-overlay__inner {
    width: 100%;
    padding: 40px 24px;
    border-right: none;
    border-bottom: 1px solid #E5E7EB;
    height: auto;
    overflow-y: visible;
  }
  .scan-right {
    height: 50vh;
  }
}

.scan-overlay__logo {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--text, #111827);
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}

.scan-overlay__logo span {
  color: #06D6A0;
}

/* Steps */
.scan-overlay__steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.scan-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}

.scan-step--active {
  opacity: 1;
}

.scan-step--done {
  opacity: 0.5;
}

.scan-step__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.scan-step__spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #E5E7EB;
  border-top-color: #06D6A0;
  border-radius: 50%;
  animation: scan-spin 0.7s linear infinite;
}

.scan-step--done .scan-step__spinner,
.scan-step--done .scan-step__dot {
  width: 18px;
  height: 18px;
  border: none;
  background: #06D6A0;
  border-radius: 50%;
  animation: none;
  position: relative;
}

.scan-step--done .scan-step__spinner,
.scan-step--done .scan-step__dot {
  display: none;
}

.scan-step--done .scan-step__icon svg.scan-check {
  display: block;
}

.scan-check {
  display: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* Cycling sub-text */
.scan-step__sub {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 3px;
  min-height: 16px;
  transition: opacity 0.2s;
}

.scan-step--done .scan-step__sub {
  display: none;
}

/* Done message */
.scan-overlay__done {
  margin-top: 32px;
  text-align: center;
  animation: scan-preview-in 0.4s ease;
}

.scan-overlay__done-text {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 18px;
  font-weight: 700;
  color: #06D6A0;
  margin-bottom: 16px;
}

.scan-overlay__done-btn {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  background: #06D6A0;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.scan-overlay__done-btn:hover {
  background: #05C090;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(6, 214, 160, 0.3);
}

.scan-step__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #E5E7EB;
  margin: 5px;
}

.scan-step--active .scan-step__dot {
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #E5E7EB;
  border-top-color: #06D6A0;
  background: none;
  animation: scan-spin 0.7s linear infinite;
}

@keyframes scan-spin {
  to { transform: rotate(360deg); }
}

.scan-step__title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text, #111827);
  line-height: 1.4;
}

.scan-step--active .scan-step__title {
  color: #06D6A0;
}

.scan-step__detail {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 11px;
  color: #9CA3AF;
  margin-top: 2px;
}

/* Live URLs */
.scan-overlay__urls {
  margin-top: 32px;
  width: 100%;
  max-height: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scan-overlay__url {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 10px;
  color: #9CA3AF;
  opacity: 0.5;
  animation: scan-url-in 0.3s ease forwards;
}

.scan-overlay__url:last-child {
  color: #06D6A0;
  opacity: 1;
}

@keyframes scan-url-in {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 0.5; transform: translateY(0); }
}

/* Error */
.scan-overlay__error {
  text-align: center;
  margin-top: 24px;
}

.scan-overlay__error p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.btn-scan-back {
  font-family: var(--font-body, 'Manrope', sans-serif);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-scan-back:hover {
  border-color: #06D6A0;
  color: #06D6A0;
}

/* Split layout when preview opens */
.scan-overlay--split {
  justify-content: flex-start;
}

.scan-overlay--split .scan-overlay__inner {
  width: 380px;
  flex-shrink: 0;
  padding: 40px 32px;
  align-items: flex-start;
}

.scan-overlay--split .scan-overlay__logo {
  margin-bottom: 32px;
}

.scan-overlay--split .scan-overlay__urls {
  display: none;
}

/* Live preview panel */
.scan-preview {
  flex: 1;
  height: 100vh;
  display: none;
  flex-direction: column;
  border-left: 1px solid #E5E7EB;
  background: #FAFAFA;
  overflow-y: auto;
  position: relative;
  z-index: 1;
  animation: scan-preview-in 0.5s ease;
}

.scan-overlay--split .scan-preview {
  display: flex;
}

@keyframes scan-preview-in {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.scan-preview__header {
  padding: 16px 24px;
  border-bottom: 1px solid #E5E7EB;
  flex-shrink: 0;
}

.scan-preview__label {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #06D6A0;
}

.scan-preview__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.scan-preview__section {
  padding: 18px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scan-preview__section--visible {
  opacity: 1;
  transform: translateY(0);
}

.scan-preview__tag {
  font-family: var(--font-mono, 'Fira Code', monospace);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #06D6A0;
  background: rgba(6, 214, 160, 0.08);
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}

/* Shimmer loading bars */
.scan-preview__shimmer {
  height: 12px;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  border-radius: 6px;
  animation: shimmer 1.5s ease-in-out infinite;
}

.scan-preview__shimmer--short { width: 65%; }
.scan-preview__shimmer--med { width: 80%; }
.scan-preview__shimmer--name { width: 100px; height: 10px; }
.scan-preview__shimmer--tiny { width: 60px; height: 8px; margin-top: 4px; }

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Competitor cards */
.scan-preview__cards {
  display: flex;
  gap: 8px;
}

.scan-preview__card {
  flex: 1;
  padding: 12px;
  background: #F9FAFB;
  border: 1px solid #F3F4F6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.scan-preview__shimmer--dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

/* Lead rows */
.scan-preview__leads {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.scan-preview__lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #F9FAFB;
  border-radius: 8px;
}

.scan-preview__shimmer--avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F3F4F6 25%, #E5E7EB 50%, #F3F4F6 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.scan-preview__badge-ph {
  width: 48px;
  height: 18px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(6,214,160,0.08) 25%, rgba(6,214,160,0.15) 50%, rgba(6,214,160,0.08) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  margin-left: auto;
}

.scan-preview__iframe {
  width: 100%;
  height: calc(100vh - 120px);
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  background: #111;
  animation: scan-preview-in 0.4s ease;
}

.scan-preview__open-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #06D6A0;
  text-decoration: none;
  padding: 12px 0;
  text-align: center;
  transition: opacity 0.15s;
}

.scan-preview__open-link:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .scan-overlay--split {
    flex-direction: column;
  }
  .scan-overlay--split .scan-overlay__inner {
    width: 100%;
    padding: 24px 16px;
  }
  .scan-preview {
    height: auto;
    min-height: 50vh;
    border-left: none;
    border-top: 1px solid #E5E7EB;
  }
  .scan-preview__iframe {
    height: 60vh;
  }
}

/* Report reveal */
.scan-overlay__report {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #fff;
  display: flex;
  flex-direction: column;
  animation: scan-report-in 0.5s ease;
}

@keyframes scan-report-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.scan-overlay__report-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid #E5E7EB;
  background: #fff;
  flex-shrink: 0;
}

.scan-overlay__report-title {
  font-family: var(--font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 15px;
  color: #111827;
}

.scan-overlay__report-open {
  font-size: 13px;
  font-weight: 600;
  color: #06D6A0;
  text-decoration: none;
  transition: opacity 0.15s;
}

.scan-overlay__report-open:hover {
  opacity: 0.7;
}

.scan-overlay__iframe {
  flex: 1;
  width: 100%;
  border: none;
}
