/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg: #0c0a1a;
  --bg-card: #13112a;
  --bg-card-hover: #1a1740;
  --border: rgba(167,139,250,0.12);
  --border-hover: rgba(167,139,250,0.3);
  --text: #f0eef8;
  --text-muted: #9690b8;
  --accent: #a78bfa;
  --accent-bright: #c4b5fd;
  --accent-dim: rgba(167,139,250,0.12);
  --accent-glow: rgba(167,139,250,0.3);
  --green: #4ade80;
  --green-dim: rgba(74,222,128,0.1);
  --red: #f87171;
  --red-dim: rgba(248,113,113,0.1);
  --radius: 16px;
  --radius-sm: 12px;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 16px;
}

img, video {
  max-width: 100%;
  height: auto;
}

/* ===== LAYOUT ===== */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ===== STICKY BAR ===== */
.sticky-bar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(12,10,26,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.sticky-bar.visible { transform: translateY(0); }

.sticky-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sticky-label {
  font-weight: 700;
  font-size: 0.9rem;
}

.sticky-price {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sticky-price s { opacity: 0.5; }
.sticky-price strong { color: var(--accent); font-size: 1.1rem; }

.sticky-cta {
  padding: 10px 24px;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s;
}

.sticky-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #ff8a1f 0%, #ff6a00 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(255, 122, 0, 0.42);
}

.btn-white {
  background: #fff;
  color: var(--bg);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.15);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== BADGE ===== */
.badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(167,139,250,0.25);
  letter-spacing: 0.03em;
}

.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 24px 60px;
  text-align: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(167,139,250,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 7vw, 3.8rem);
  line-height: 1.07;
  font-weight: 800;
  letter-spacing: -0.045em;
  margin: 28px auto 24px;
  max-width: 820px;
  background: linear-gradient(135deg, #9d61ff 0%, #54c1ff 36%, #7a78ff 62%, #ff6fc6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(123, 106, 255, 0.14);
}

.hero h1 strong,
.hero h1 em {
  color: inherit;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: inherit;
}

.hero h1 em {
  font-style: normal;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto 28px;
  text-align: center;
}

.hero-topline {
  color: rgba(255,255,255,0.92);
}

.hero-sub strong { color: var(--text); }

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-bullets div {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.hero-ctas {
  margin-bottom: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* VSL */
.vsl-wrap { max-width: 920px; margin: 0 auto; width: 100%; }

.vsl-shell {
  width: 100%;
  padding: 14px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(167,139,250,0.08) 0%, rgba(19,17,42,0.92) 100%);
  border: 1px solid rgba(167,139,250,0.18);
  box-shadow: 0 18px 56px rgba(0,0,0,0.35);
}

.vsl-video {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #05050b;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.vsl-copy {
  margin-top: 18px;
  text-align: center;
}

.vsl-copy strong { font-size: 1.1rem; margin-bottom: 6px; }
.vsl-copy p { color: var(--text-muted); font-size: 0.95rem; }

.vsl-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 40px;
  background: linear-gradient(180deg, rgba(167,139,250,0.08) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  text-align: center;
}

.play-btn {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 32px var(--accent-glow);
  transition: transform 0.3s;
}

.play-btn:hover { transform: scale(1.08); }

.vsl-placeholder strong { font-size: 1.1rem; margin-bottom: 6px; }
.vsl-placeholder p { color: var(--text-muted); font-size: 0.9rem; }

/* ===== NARRATIVE ===== */
.narrative {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0d22 100%);
}

.narrative h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.narrative p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.narrative strong { color: var(--text); }
.narrative em { color: var(--accent); font-style: normal; font-weight: 700; }

/* ===== SECTIONS ===== */
.section-dark {
  padding: 80px 0;
}

.section-light {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f7ff 0%, #eeeaff 100%);
  color: #1a1740;
}

.section-light h2,
.section-light h3,
.section-light strong { color: #1a1740; }
.section-light p, .section-light li { color: #4a4565; }
.section-light .label { color: #7c5cff; }

.section-dark h2,
.section-dark h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 20ch;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 55ch;
  margin-bottom: 40px;
}

/* ===== PERSONAS ===== */
.personas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.persona-card {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.persona-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(167,139,250,0.08);
}

.persona-highlight {
  border-color: rgba(167,139,250,0.3);
  background: linear-gradient(180deg, rgba(167,139,250,0.08) 0%, var(--bg-card) 100%);
}

.persona-emoji {
  font-size: 2rem;
  margin-bottom: 14px;
}

.persona-card h3 {
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.persona-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.persona-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.persona-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.persona-tag {
  margin-top: 16px;
  padding: 6px 14px;
  display: inline-block;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: var(--accent-dim);
  color: var(--accent);
}

.problem-diagnosis {
  margin-top: 40px;
  padding: 28px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.problem-diagnosis p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.problem-diagnosis strong { color: var(--text); }
.problem-diagnosis em { color: var(--accent); font-style: normal; font-weight: 700; }

/* ===== SOLUTION ===== */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.solution-card {
  padding: 28px;
  background: #fff;
  border: 1px solid #e5e3ef;
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.solution-card:hover {
  border-color: #a78bfa;
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(167,139,250,0.1);
}

.solution-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.solution-header span { font-size: 1.6rem; }
.solution-header h3 { font-size: 1rem; margin-bottom: 0; }

.solution-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.solution-card li {
  font-size: 0.88rem;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}

.solution-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #a78bfa;
}

.solution-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-ai {
  background: rgba(74,222,128,0.12);
  color: #16a34a;
}

.pill-you {
  background: #f3f1f9;
  color: #6b6180;
}

.solution-you {
  border-color: rgba(167,139,250,0.3);
  background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
}

.solution-note {
  margin-top: 32px;
  text-align: center;
  font-size: 1.05rem;
}

.section-light .solution-note strong { color: #4b2bc7; }

/* ===== TRANSFORM ===== */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

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

.transform-card h3 {
  font-size: 1.2rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid;
}

.transform-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.transform-card li {
  font-size: 0.92rem;
  line-height: 1.6;
}

.transform-before {
  background: var(--red-dim);
  border-color: rgba(248,113,113,0.2);
}
.transform-before h3 { color: var(--red); border-color: rgba(248,113,113,0.2); }
.transform-before li { color: #fca5a5; }

.transform-after {
  background: var(--green-dim);
  border-color: rgba(74,222,128,0.25);
}
.transform-after h3 { color: var(--green); border-color: rgba(74,222,128,0.2); }
.transform-after li { color: #86efac; }

/* ===== AGENTS ===== */
.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.agent-card-v2 {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.agent-card-v2:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(167,139,250,0.08);
}

.agent-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.agent-card-v2 h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.agent-card-v2 p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ===== METRICS ===== */
.section-metrics {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(167,139,250,0.08) 0%, rgba(129,140,248,0.06) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.metric {
  padding: 24px;
}

.metric-value {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===== USE CASES ===== */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.usecase-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.35s ease;
}

.usecase-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.usecase-card > span {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 12px;
}

.usecase-card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.usecase-card ul {
  list-style: none;
  display: grid;
  gap: 6px;
}

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

.usecase-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ===== MID CTA ===== */
.mid-cta {
  padding: 80px 24px;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
}

.mid-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  max-width: 20ch;
  margin: 0 auto 14px;
}

.mid-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
}

/* ===== PROOF SHOWCASE ===== */
.proof-showcase-section {
  padding-top: 40px;
}

.proof-showcase-title {
  max-width: 15ch;
  margin-bottom: 42px;
}

.proof-showcase-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  grid-template-areas:
    "pills top"
    "bottom bottom";
  column-gap: 36px;
  row-gap: 22px;
  align-items: start;
}

.proof-pills {
  grid-area: pills;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 330px;
  padding-top: 18px;
}

.proof-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 2px solid currentColor;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06) inset,
    0 10px 24px rgba(0,0,0,0.18);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
}

.proof-pill span {
  display: block;
  line-height: 1.02;
  text-shadow: 0 0 8px currentColor;
}

.proof-pill-gold {
  color: #f6d100;
  background: linear-gradient(180deg, rgba(180, 140, 0, 0.94), rgba(136, 105, 0, 0.94));
  border-color: #ffd84a;
}

.proof-pill-blue {
  color: #8da0ff;
  background: linear-gradient(180deg, rgba(78, 91, 173, 0.94), rgba(70, 81, 158, 0.94));
  border-color: #7d8cff;
}

.proof-pill-pink {
  color: #ff24da;
  background: linear-gradient(180deg, rgba(145, 0, 160, 0.96), rgba(115, 0, 132, 0.96));
  border-color: #ff38e5;
}

.proof-stage {
  margin: 0;
}

.proof-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-stage-top {
  grid-area: top;
}

.proof-stage-bottom {
  grid-area: bottom;
  margin-top: -8px;
}

/* ===== TIMELINE ===== */
.timeline-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  margin-bottom: 40px;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(167,139,250,0.1));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 16px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 18px;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  z-index: 2;
}

.timeline-content {
  padding: 18px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-left: 16px;
  transition: all 0.35s ease;
}

.timeline-content:hover {
  border-color: var(--border-hover);
}

.timeline-content strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.timeline-highlight .timeline-content {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(167,139,250,0.08) 0%, var(--bg-card) 100%);
}

.timeline-highlight .timeline-dot {
  background: var(--accent);
  color: #fff;
}

.module-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--accent-dim);
  color: var(--accent);
  margin-bottom: 6px;
}

/* ===== FAQ ===== */
.faq {
  max-width: 720px;
  margin-top: 32px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item:hover,
.faq-item.open { border-color: var(--border-hover); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: var(--bg-card);
  border: none;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-arrow {
  color: var(--accent);
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  background: var(--bg-card);
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* ===== OFFER ===== */
.section-offer {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #0f0d22 100%);
}

.section-offer h2 {
  max-width: 24ch;
  margin: 0 auto 12px;
}

.offer-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.offer-card {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(167,139,250,0.2);
  border-radius: 24px;
  padding: 48px 32px 32px;
  box-shadow: 0 0 60px rgba(167,139,250,0.1);
}

.offer-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a78bfa, #818cf8);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 4px 20px var(--accent-glow);
  white-space: nowrap;
}

.offer-price {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.price-old {
  display: block;
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  opacity: 0.5;
  margin-bottom: 4px;
}

.price-current {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #a78bfa, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.price-lifetime {
  display: block;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
}

.offer-stack {
  text-align: left;
  margin-bottom: 28px;
}

.stack-title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.stack-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.check {
  color: var(--green);
  font-weight: 700;
}

.guarantee {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-top: 20px;
  padding: 16px;
  background: var(--green-dim);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-sm);
  text-align: left;
}

.guarantee-icon { font-size: 1.4rem; flex-shrink: 0; }

.guarantee strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}

.guarantee p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  padding: 32px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 72px 20px 48px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }

  .personas-grid,
  .solution-grid,
  .agents-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .transform-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vsl-placeholder { min-height: 280px; }

  .sticky-info { display: none; }
  .sticky-inner { justify-content: center; }
  .sticky-cta { width: 100%; text-align: center; }

  .section-dark, .section-light, .narrative { padding: 56px 0; }
  .mid-cta { padding: 56px 20px; }
  .section-offer { padding: 56px 16px; }

  .offer-card { padding: 40px 20px 24px; }

  .proof-showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "pills"
      "top"
      "bottom";
    row-gap: 18px;
  }

  .proof-pills,
  .proof-stage {
    width: 100%;
    max-width: 100%;
  }

  .proof-pills {
    gap: 14px;
    max-width: 420px;
    margin: 0 auto 6px;
    padding-top: 0;
  }

  .proof-pill {
    min-height: 52px;
    padding: 0 18px;
    font-size: 0.88rem;
  }

  .proof-showcase-title {
    max-width: 12ch;
    margin-bottom: 28px;
  }

  .proof-stage-top,
  .proof-stage-bottom {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .hero { padding: 56px 16px 36px; }
  .hero-bullets div { font-size: 0.88rem; }

  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .metric-value { font-size: 2.2rem; }

  .container, .container-sm { padding: 0 16px; }

  .btn-lg { padding: 16px 24px; font-size: 1rem; }

  .proof-showcase-section {
    padding-top: 28px;
  }

  .proof-pills {
    max-width: 100%;
    gap: 12px;
  }

  .proof-pill {
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .proof-showcase-title {
    max-width: 100%;
    margin-bottom: 22px;
  }
}

/* ===== TOP PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 240;
  background: rgba(255, 255, 255, 0.08);
}

.scroll-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ef4444 0%, #f97316 45%, #fb7185 100%);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.65);
  transition: width 0.08s linear;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 88px 24px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 18%, rgba(251, 113, 133, 0.22), transparent 40%),
    radial-gradient(circle at 80% 74%, rgba(249, 115, 22, 0.25), transparent 45%),
    linear-gradient(135deg, #7f1d1d 0%, #c2410c 54%, #ea580c 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  margin-bottom: 14px;
  color: #fff;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.15rem;
  margin-bottom: 30px;
}

.final-cta p strong {
  color: #fff;
}

.final-cta-btn {
  min-width: min(460px, 100%);
  background: #f8fafc;
  color: #c2410c;
  font-weight: 800;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.final-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
}

@media (max-width: 768px) {
  .final-cta {
    padding: 64px 20px;
  }

  .scroll-progress {
    height: 3px;
  }
}

/* ===== BRAND ASSETS ===== */
.hero-logo-wrap {
  margin: 0 auto 14px;
  display: flex;
  justify-content: center;
}

.hero-logo {
  width: min(540px, 92%);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

@media (max-width: 768px) {
  .hero-logo {
    width: min(420px, 95%);
  }
}

/* ===== PERF MOBILE ===== */
main > section:not(.hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .sticky-bar {
    backdrop-filter: none;
  }

  .vsl-placeholder {
    box-shadow: none;
  }
}

/* ===== OFFER CTA GREEN OVERRIDE ===== */
.section-offer .btn-primary {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #052e16;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
}

.section-offer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.42);
}

/* ===== OFFER BADGE GREEN OVERRIDE ===== */
.offer-badge {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #052e16;
  box-shadow: 0 8px 26px rgba(34, 197, 94, 0.42);
}

.hero-reference {
  max-width: 980px;
}

.hero-topline {
  display: block;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
  opacity: 0.9;
}

.hero-split {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.9rem, 4.8vw, 2.9rem);
  line-height: 1.06;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
}

.hero-split strong {
  background: linear-gradient(135deg, #b18cff 0%, #5bd3ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-split em {
  background: linear-gradient(135deg, #8f6bff 0%, #ff7ecb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-cta-secondary {
  margin-top: 26px;
  margin-bottom: 8px;
}

.hero-price-note {
  margin-top: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
}

.hero-price-note strong { color: #fff; }

.vsl-wrap { max-width: 900px; margin: 0 auto; width: 100%; }
.vsl-shell {
  padding: 10px;
  border-radius: 24px;
  background: rgba(7, 10, 20, 0.72);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.vsl-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #05050b;
}
.vsl-copy { display: none; }


.hero-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}