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

:root {
  --bg:        #0A0A0F;
  --surface:   #111118;
  --surface2:  #181824;
  --border:    #2D2D3A;
  --purple:    #7C3AED;
  --purple-light: #A78BFA;
  --purple-dim:#3D1F8A;
  --text:      #F8F8FF;
  --muted:     #9090A8;
  --green:     #34D399;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image:
    radial-gradient(560px circle at 88% 4%, rgba(124,58,237,0.16), transparent 62%),
    radial-gradient(520px circle at 6% 58%, rgba(124,58,237,0.09), transparent 65%),
    radial-gradient(480px circle at 78% 92%, rgba(124,58,237,0.11), transparent 60%);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 64px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--text);
  text-decoration: none;
}

.nav-logo span { color: var(--purple-light); }

.nav-cta {
  background: var(--purple);
  color: var(--text) !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-cta:hover { background: #6D28D9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(124,58,237,0.3); }

/* ── PAGE HERO (interior pages) ─────────────────────── */
.page-hero {
  padding: 140px 48px 64px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ── HERO (home) ─────────────────────────────────────── */
.hero-section {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 64px 48px 100px;
  transition: height 0.9s cubic-bezier(0.16, 1, 0.3, 1), padding 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll-triggered intro: hero collapses to a slim title band under the nav (~13% of viewport height).
   padding-top stays fixed at 64px throughout so content never jumps relative to the nav. */
.hero-section.intro-collapsed {
  height: 13vh;
  min-height: 112px;
  padding: 64px 48px 8px;
}

.hero-particles, .scroll-cue, .hero-eyebrow, .hero-sub, .hero-actions {
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), max-height 0.7s cubic-bezier(0.16, 1, 0.3, 1), margin 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-eyebrow, .hero-sub, .hero-actions {
  max-height: 120px;
  overflow: hidden;
}

.hero-section.intro-collapsed .hero-particles,
.hero-section.intro-collapsed .scroll-cue,
.hero-section.intro-collapsed .hero-eyebrow,
.hero-section.intro-collapsed .hero-sub,
.hero-section.intro-collapsed .hero-actions {
  opacity: 0;
  transform: translateY(-10px);
  max-height: 0;
  margin: 0 !important;
  pointer-events: none;
}

h1 { transition: font-size 0.8s cubic-bezier(0.16, 1, 0.3, 1), margin-bottom 0.8s cubic-bezier(0.16, 1, 0.3, 1), line-height 0.8s cubic-bezier(0.16, 1, 0.3, 1); }

.hero-section.intro-collapsed h1 {
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 0;
}

.hero-section.intro-collapsed h1 br { display: none; }

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particles .particle {
  position: absolute;
  bottom: -20px;
  width: var(--size);
  height: var(--size);
  background: var(--purple-light);
  border-radius: 50%;
  opacity: 0;
  filter: blur(0.5px);
  animation: particleFloat var(--dur) ease-in var(--delay) infinite;
}

@keyframes particleFloat {
  0% { transform: translate(0, 0); opacity: 0; }
  12% { opacity: var(--op); }
  88% { opacity: var(--op); }
  100% { transform: translate(var(--drift), -75vh); opacity: 0; }
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 720px;
  text-align: center;
}

.scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: fit-content;
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.scroll-cue:hover { color: var(--text); }

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--muted);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.scroll-cue:hover .scroll-mouse { border-color: var(--purple-light); }

.scroll-mouse-wheel {
  width: 3px;
  height: 7px;
  background: var(--purple-light);
  border-radius: 100px;
  animation: scrollWheel 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(9px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--purple-light);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--purple-light);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

h1 .accent { color: var(--purple-light); }

.hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: var(--text);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(124,58,237,0);
}

.btn-primary:hover {
  background: #6D28D9;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124,58,237,0.35);
}

.btn-primary svg { width: 18px; height: 18px; }

.btn-ghost {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-ghost:hover { color: var(--text); }

.hero-visual { position: relative; }

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 9/16;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── VIDEO PROOF STRIP (home, animated) ──────────────── */
.video-proof-wrap {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 48px 56px;
}

/* Scroll-triggered intro: video strip settles into a fixed band (~30% of viewport height) */
.video-proof-wrap.intro-compact {
  min-height: 30vh;
  height: 30vh;
  padding: 4px 48px 10px;
  overflow: hidden;
}

.video-proof-wrap.intro-compact .video-proof-intro { margin-bottom: 10px; }
.video-proof-wrap.intro-compact .video-proof-intro h3 { font-size: 1rem; }
.video-proof-wrap.intro-compact .proof-bar-note { margin-top: 10px !important; font-size: 0.7rem; }
.video-proof-wrap.intro-compact .video-proof-grid { grid-auto-rows: 20vh; }
.video-proof-wrap.intro-compact .video-proof-card { aspect-ratio: auto; height: 100%; }

.video-proof-intro { text-align: center; margin-bottom: 24px; }

.video-proof-intro h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.video-proof-intro .hl { color: var(--purple-light); }

.video-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.video-proof-card {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  opacity: 0;
  transform: scale(0.88) translateY(18px);
  transition: border-color 0.2s, box-shadow 0.25s;
}

.video-proof-grid.visible .video-proof-card {
  animation: videoPop 0.85s cubic-bezier(0.22, 1.1, 0.36, 1) forwards;
  animation-delay: calc(var(--i) * 300ms);
}

@keyframes videoPop {
  0% { opacity: 0; transform: scale(0.88) translateY(18px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.video-proof-card:hover { border-color: var(--purple); box-shadow: 0 14px 32px rgba(124,58,237,0.18); }

.video-proof-thumb { width: 100%; height: 100%; object-fit: cover; display: block; }

.video-proof-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.2) 45%, rgba(10,10,15,0.05) 65%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}

.video-proof-platform {
  align-self: flex-start;
  padding: 3px 7px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.video-proof-platform.yt { background: #FF3B30; color: #fff; }
.video-proof-platform.sc { background: #FFFC00; color: #14141c; }

.video-proof-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(10,10,15,0.55);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.video-proof-card:hover .video-proof-play { opacity: 1; }
.video-proof-play svg { width: 13px; height: 13px; margin-left: 2px; color: #fff; }

.video-proof-views {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
}

.video-proof-handle {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ── PROOF BAR ───────────────────────────────────────── */
.proof-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 56px;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.proof-chip:hover { border-color: var(--purple); color: var(--text); box-shadow: 0 4px 16px rgba(124,58,237,0.15); }
.proof-chip svg { width: 12px; height: 12px; }

.proof-bar-note {
  color: #6a6a80;
  font-size: 0.8rem;
}

/* ── KEY PROOF CARD ──────────────────────────────────── */
.section {
  padding: 0 48px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Scroll-triggered intro: the views→joins proof fills the remaining viewport height (~57%) */
.section.intro-compact {
  min-height: 57vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 24px;
  position: relative;
}

.section.intro-compact .key-proof-card,
.section.intro-compact .proof-cta-card { width: 100%; }

.scroll-cue-inline {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.scroll-cue-inline.visible {
  opacity: 1;
  pointer-events: auto;
}

.key-proof-card {
  background: var(--surface);
  border: 1px solid var(--purple-dim);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 0 60px rgba(124,58,237,0.08);
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.key-proof-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.key-proof-chart { width: 100%; display: block; }

/* ── PROOF CTA CARD (home) ───────────────────────────── */
.proof-cta-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, rgba(124,58,237,0.14), rgba(124,58,237,0.02));
  border: 1px solid var(--purple-dim);
  border-radius: 16px;
  padding: 32px 36px;
  text-decoration: none;
  box-shadow: 0 0 60px rgba(124,58,237,0.1);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-cta-card:hover {
  border-color: var(--purple);
  box-shadow: 0 0 80px rgba(124,58,237,0.18);
  transform: translateY(-3px);
}

.proof-cta-icon {
  width: 56px; height: 56px;
  background: rgba(124,58,237,0.18);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}

.proof-cta-icon svg { width: 26px; height: 26px; }

.proof-cta-text { flex: 1; }

.proof-cta-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.proof-cta-text p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.proof-cta-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}

.proof-cta-card:hover .proof-cta-arrow { background: #6D28D9; }

/* ── OFFER CARDS ─────────────────────────────────────── */
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s;
  position: relative;
}

.offer-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(124,58,237,0.14); }

.offer-card.featured {
  background: var(--surface2);
  border: 2px solid var(--purple);
  box-shadow: 0 0 50px rgba(124,58,237,0.13);
}

.offer-badge {
  position: absolute;
  top: -11px;
  left: 20px;
  background: var(--bg);
  color: var(--purple-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 8px;
}

.offer-card h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
}

.offer-card:not(.featured) .offer-cta {
  border: 1px solid #3D3D52;
  color: #C4C4D4;
  background: #1E1E2E;
}

.offer-card.featured .offer-cta {
  background: var(--purple);
  color: #fff;
}

/* ── CALCULATOR CARD (home, interactive) ─────────────── */
.calc-card-interactive {
  background: var(--surface);
  border: 1px solid var(--purple-dim);
  border-radius: 12px;
  padding: 24px 28px;
  transition: box-shadow 0.3s;
}

.calc-card-interactive:hover { box-shadow: 0 0 40px rgba(124,58,237,0.12); }

.calc-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.calc-icon {
  width: 36px; height: 36px;
  background: rgba(124,58,237,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}

.calc-icon svg { width: 18px; height: 18px; }

.calc-text { flex: 1; }
.calc-text .t1 { color: var(--text); font-size: 0.9rem; font-weight: 600; }
.calc-text .t2 { color: #6a6a80; font-size: 0.8rem; margin-top: 2px; }

.calc-slider-row input[type="range"] {
  margin: 0 0 16px;
}

.calc-slider-readout {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

.calc-slider-readout .calc-slider-num,
.calc-slider-readout .calc-slider-joins {
  color: var(--purple-light);
  font-weight: 800;
}

.calc-slider-revenue {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  margin-top: 8px;
}

.calc-slider-revenue-num { color: var(--green); font-weight: 800; }

.calc-slider-note {
  font-size: 0.72rem;
  color: #6a6a80;
  margin-top: 12px;
}

.calc-more-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
}

.calc-more-link:hover { color: var(--text); }

/* ── FINAL CTA ───────────────────────────────────────── */
.cta-section {
  padding: 64px 48px 96px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--text); }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0) scale(1); }

/* Slower, more gradual fade — used on specific sections (e.g. the key-proof graph) that should ease in more deliberately than the default .reveal pace */
.reveal-slow { transition-duration: 2.6s; }

/* ── PRICING PAGE ────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: start;
}

.pricing-extra {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-extra strong { color: var(--text); font-weight: 700; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 18px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s;
}

.pricing-card:hover { border-color: var(--purple); box-shadow: 0 14px 32px rgba(124,58,237,0.12); }

.pricing-card.featured {
  background: var(--surface2);
  border-color: var(--purple);
  transform: scale(1.02);
  box-shadow: 0 0 50px rgba(124,58,237,0.14);
}

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--purple);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.plan-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 4px;
}

.plan-price sup { font-size: 1rem; font-weight: 700; vertical-align: super; letter-spacing: 0; }

.plan-price-unit {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 2px;
}

.pricing-card.featured .plan-price-unit { color: var(--purple-light); }

.plan-ppv {
  font-size: 0.74rem;
  color: var(--purple-light);
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-desc {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
}

.plan-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 10px 6px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.plan-cta-outline { border: 1px solid #3D3D52; color: #C4C4D4; background: #1E1E2E; }
.plan-cta-outline:hover { border-color: var(--purple); color: var(--text); background: #252538; }
.plan-cta-solid { background: var(--purple); color: #fff; }
.plan-cta-solid:hover { background: #6D28D9; transform: translateY(-1px); }

/* ── ROI CALCULATOR (interactive) ───────────────────── */
.roi-calc {
  background: var(--surface);
  border: 1px solid var(--purple-dim);
  border-radius: 16px;
  padding: 32px;
  margin-top: 64px;
}

.roi-calc h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.roi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}

.roi-inputs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.roi-field { margin-bottom: 20px; }
.roi-field:last-child { margin-bottom: 0; }

.roi-field label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.roi-field label span.val { color: var(--purple-light); font-weight: 700; }

.roi-field input[type="range"] {
  margin: 0;
}

/* Custom range track/thumb — native inputs reserve an inset for the thumb on both ends,
   which makes the track visibly not flush with the label row's edges above it. */
.roi-field input[type="range"],
.calc-slider-row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}

.roi-field input[type="range"]::-webkit-slider-runnable-track,
.calc-slider-row input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: transparent;
}

.roi-field input[type="range"]::-webkit-slider-thumb,
.calc-slider-row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  margin-top: -6px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  cursor: pointer;
}

.roi-field input[type="range"]::-moz-range-track,
.calc-slider-row input[type="range"]::-moz-range-track {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  border: none;
}

.roi-field input[type="range"]::-moz-range-thumb,
.calc-slider-row input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--purple);
  border: none;
  cursor: pointer;
}

.roi-result {
  background: var(--surface2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.roi-result .label { color: var(--muted); font-size: 0.8rem; margin-bottom: 8px; }

.roi-result .value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--purple-light);
  letter-spacing: -0.03em;
}

.roi-result .sub { color: #6a6a80; font-size: 0.75rem; margin-top: 8px; }

/* ── CONTACT OPTIONS (get-started) ──────────────────── */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface2);
  color: var(--text);
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-btn:hover {
  border-color: var(--purple);
  background: rgba(124,58,237,0.08);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(124,58,237,0.15);
}

.contact-btn-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-btn-icon.discord { background: rgba(88,101,242,0.2); color: #5865F2; }
.contact-btn-icon.mail { background: rgba(124,58,237,0.15); color: var(--purple-light); }
.contact-btn-icon svg { width: 20px; height: 20px; }

.contact-btn-text strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.contact-btn-text span { font-size: 0.8rem; color: var(--muted); }

.prep-list {
  max-width: 440px;
  margin: 40px auto 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 24px;
}

.prep-list .t {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.prep-list ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.prep-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.prep-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── FAQ ─────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 32px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--surface); }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 32px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ── RESULTS PAGE ────────────────────────────────────── */
.proof-subhead {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--text);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}

.proof-card { background: var(--surface); display: flex; flex-direction: column; }
.proof-img { width: 100%; display: block; border-bottom: 1px solid var(--border); }

.proof-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.proof-platform {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
}

.proof-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.proof-num span { color: var(--muted); font-weight: 600; }
.proof-sub { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

.proof-link {
  display: inline-block;
  margin-top: auto;
  padding-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--purple-light);
  text-decoration: none;
}

.proof-link:hover { color: var(--text); }

.proof-highlight-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 56px;
}

.proof-img-wide { width: 100%; border-radius: 10px; border: 1px solid var(--border); display: block; }
.proof-highlight-block p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin: 10px 0 18px; }

.proof-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 56px;
}

.proof-two-col > div { background: var(--surface); }
.proof-two-col img { width: 100%; display: block; border-bottom: 1px solid var(--border); }

.proof-caption { padding: 16px 20px; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

.proof-geo-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 36px;
}

.geo-chart { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.geo-row { display: flex; align-items: center; gap: 10px; }
.geo-country { width: 118px; flex-shrink: 0; font-size: 0.75rem; color: var(--muted); }
.geo-bar-track { flex: 1; height: 8px; background: var(--surface2); border-radius: 100px; overflow: hidden; }
.geo-bar { height: 100%; background: var(--purple); border-radius: 100px; }

.geo-pct {
  width: 42px; flex-shrink: 0; text-align: right;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem; font-weight: 700; color: var(--text);
}

.geo-caption { margin-top: 14px; font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.geo-highlight { margin-top: 12px; font-size: 0.82rem; color: var(--purple-light); font-weight: 600; line-height: 1.5; }

/* ── TEXT PAGE (terms) ──────────────────────────────── */
.text-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px 96px;
  color: var(--muted);
  line-height: 1.75;
}

.text-page h2 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 36px 0 12px;
}

.text-page h2:first-child { margin-top: 0; }
.text-page p { margin-bottom: 14px; }
.text-page strong { color: var(--text); }
.text-page .updated { font-size: 0.8rem; color: #6a6a80; margin-bottom: 40px; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .hero-section { padding: 100px 24px 72px; min-height: 92vh; height: 92vh; }
  .video-proof-wrap { min-height: auto; padding: 8px 24px 40px; }
  .video-proof-grid { grid-template-columns: repeat(3, 1fr); }
  .section { padding: 0 24px 48px; }
  .proof-cta-card { flex-direction: column; text-align: center; padding: 28px 24px; }
  .offer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .roi-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-two-col { grid-template-columns: 1fr; }
  .proof-highlight-block { grid-template-columns: 1fr; }
  .cta-section { padding: 48px 24px 72px; }
  .page-hero { padding: 120px 24px 48px; }
  .text-page { padding: 0 24px 72px; }
  footer { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .proof-grid { grid-template-columns: 1fr; }
  .video-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .video-proof-card:nth-child(n+3) { display: none; }
}
