/* ============================================
   FBA NETWORK — THE NETWORK
   Dark. Electric. Powerful.
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #060b18;
  --bg-card: #0c1225;
  --bg-card-hover: #111a33;
  --bg-surface: #0a1020;
  --border: rgba(255,255,255,.06);
  --border-light: rgba(255,255,255,.1);
  --blue: #0077ff;
  --blue-bright: #339cff;
  --blue-glow: rgba(0,119,255,.15);
  --blue-glow-strong: rgba(0,119,255,.3);
  --white: #fff;
  --text: rgba(255,255,255,.7);
  --text-muted: rgba(255,255,255,.4);
  --text-faint: rgba(255,255,255,.25);
  --green: #00d68f;
  --green-bg: rgba(0,214,143,.1);
  --discord: #5865F2;
  --discord-hover: #4752C4;
  --discord-glow: rgba(88,101,242,.25);
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --radius: 10px;
  --radius-lg: 16px;
  --ease: cubic-bezier(.25,.46,.45,.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px, 4vw, 40px); }

/* ── REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.vis { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .1s; }
.rd2 { transition-delay: .2s; }
.rd3 { transition-delay: .3s; }
.rd4 { transition-delay: .4s; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--white);
  line-height: 1.12;
  font-weight: 800;
}
h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  letter-spacing: -.03em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  letter-spacing: -.02em;
}
h3 {
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  font-weight: 700;
  letter-spacing: -.01em;
}

.overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .68rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 14px;
}
.overline::before {
  content: ''; width: 6px; height: 6px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 8px var(--blue);
}

.accent { color: var(--blue-bright); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-family: var(--font); font-size: .84rem; font-weight: 600;
  transition: all .25s var(--ease); border: none; cursor: pointer;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-blue {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,119,255,.25);
}
.btn-blue:hover {
  background: #0066dd;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,119,255,.35);
}

.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  background: var(--blue-glow);
}
.btn-discord {
  background: var(--discord); color: var(--white);
  border: 1.5px solid var(--discord);
}
.btn-discord:hover {
  background: var(--discord-hover); border-color: var(--discord-hover);
  box-shadow: 0 4px 20px var(--discord-glow);
}

.btn-lg { padding: 15px 34px; font-size: .88rem; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--blue-bright);
  transition: gap .25s var(--ease);
}
.link-arrow:hover { gap: 10px; }
.link-arrow svg { width: 16px; height: 16px; }


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: 68px; padding: 0 clamp(20px, 4vw, 40px);
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease), backdrop-filter .4s;
}
.navbar.scrolled {
  background: rgba(6,11,24,.65);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.nav-logo {
  display: flex; align-items: center; gap: 0;
}
.nav-logo img {
  height: 54px; width: auto;
  filter: brightness(1.15);
}

.nav-links {
  display: flex; gap: 6px; list-style: none;
}
.nav-links a {
  font-size: .88rem; font-weight: 500;
  color: var(--text-muted); padding: 8px 16px;
  border-radius: 6px; transition: all .2s;
  letter-spacing: .4px; text-transform: uppercase;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--white); }

.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-right .btn { padding: 9px 20px; font-size: .82rem; }

.mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--white); padding: 4px;
}

.mobile-nav {
  display: none; position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 16px 24px 20px; z-index: 999;
  box-shadow: 0 16px 48px rgba(0,0,0,.4);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block; padding: 12px 0; font-size: .88rem;
  font-weight: 500; color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 14px; }


/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}
.hero > .container {
  max-width: none;
  margin: 0;
  padding-left: clamp(48px, 8vw, 140px);
  padding-right: 0;
}

/* Pylons background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: right 55%;
  opacity: .4;
  animation: heroZoom 25s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 65%, var(--bg) 100%),
    linear-gradient(90deg, var(--bg) 0%, rgba(6,11,24,.6) 40%, transparent 70%);
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 680px;
}
.hero-content h1 {
  margin-bottom: 20px;
  line-height: 1.08;
}
.hero-content h1 .accent {
  display: block;
  text-shadow: 0 0 40px rgba(0,119,255,.3);
}
.hero-body {
  font-size: clamp(.95rem, 1.2vw, 1.08rem);
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Trust badges */
.hero-trust {
  display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
}
.trust-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-glow);
  border: 1px solid rgba(0,119,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 19px; height: 19px; stroke: var(--blue-bright); }
.trust-label {
  font-size: .78rem; font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .5px;
  text-transform: uppercase;
  line-height: 1.35;
}


/* ============================================
   PROOF BAR
   ============================================ */
.proof-bar {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.proof-row {
  display: flex; justify-content: center;
  gap: clamp(32px, 6vw, 72px); flex-wrap: wrap;
}
.proof-val {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; color: var(--white);
  letter-spacing: -.02em;
  text-align: center;
}
.proof-lbl {
  font-size: .74rem; color: var(--text-faint);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: 1.2px; text-align: center;
  margin-top: 4px;
}


/* ============================================
   BUILT FOR — audience bands
   ============================================ */
.audience {
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--border);
}
.audience-header {
  margin-bottom: 40px;
}
.audience-header h2 { margin-bottom: 0; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.audience-card {
  background: var(--bg-card);
  padding: clamp(24px, 3vw, 36px);
  transition: background .3s;
}
.audience-card:hover { background: var(--bg-card-hover); }
.audience-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--blue-glow);
  border: 1px solid rgba(0,119,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.audience-card-icon svg { width: 18px; height: 18px; stroke: var(--blue-bright); }
.audience-card h3 { margin-bottom: 8px; font-size: .9rem; }
.audience-card p { font-size: .78rem; color: var(--text-muted); line-height: 1.7; }


/* ============================================
   SECTIONS — shared
   ============================================ */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.section-border { border-bottom: 1px solid var(--border); }

.section-header { margin-bottom: clamp(32px, 5vw, 48px); }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--text-muted); max-width: 500px; }
.section-header-center { text-align: center; }
.section-header-center p { margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 0; font-size: .86rem; color: var(--text);
  line-height: 1.6;
}
.checklist li svg {
  width: 18px; height: 18px; stroke: var(--white);
  flex-shrink: 0; margin-top: 3px;
}


/* ============================================
   BENTO GRID — 3 info cards
   ============================================ */
.bento {
  padding: clamp(60px, 8vw, 100px) 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bento-card {
  background: var(--bg-card);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column;
}
.bento-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.bento-card-top h3 { font-size: .82rem; letter-spacing: .5px; text-transform: uppercase; }
.bento-badge {
  font-size: .55rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px;
  background: var(--blue-glow);
  color: var(--blue-bright);
  border: 1px solid rgba(0,119,255,.15);
}

.bento-list { list-style: none; flex: 1; }
.bento-list li {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; font-size: .78rem; color: var(--text);
}
.bento-list li svg {
  width: 14px; height: 14px; stroke: var(--blue-bright);
  flex-shrink: 0;
}

.bento-card .btn { margin-top: 20px; }

/* Lead preview inside bento */
.bento-lead {
  flex: 1; display: flex; flex-direction: column;
}
.bento-lead-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.bento-lead-row:last-child { border-bottom: none; }
.bento-lead-name { font-size: .78rem; color: var(--text); font-weight: 500; }
.bento-lead-sub { font-size: .65rem; color: var(--text-faint); margin-top: 2px; }
.bento-lead-profit {
  font-size: .82rem; font-weight: 700; color: var(--green);
  white-space: nowrap;
}

/* Quote inside bento */
.bento-quote {
  font-size: .85rem; color: var(--text);
  line-height: 1.7; font-style: italic;
  flex: 1; margin-bottom: 16px;
}
.bento-quote-who {
  display: flex; align-items: center; gap: 10px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.bento-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .7rem;
}
.bento-who-name { font-size: .78rem; font-weight: 600; color: var(--white); }
.bento-who-role { font-size: .65rem; color: var(--text-faint); }


/* ============================================
   FEATURES — for sub pages
   ============================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-cell {
  background: var(--bg-card);
  padding: clamp(28px, 3.5vw, 40px);
  transition: background .3s;
}
.feature-cell:hover { background: var(--bg-card-hover); }
.feature-cell h3 { margin-bottom: 8px; }
.feature-cell p { font-size: .82rem; color: var(--text-muted); line-height: 1.75; }

/* Lead card */
.lead-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}
.lead-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.lead-card-top h3 { font-size: .95rem; }
.lead-live {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .62rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green);
}
.lead-live::before {
  content: ''; width: 6px; height: 6px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.lead-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1px solid var(--border);
}
.lead-row:last-child { border-bottom: none; }
.lead-name { font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.85); }
.lead-sub { font-size: .7rem; color: var(--text-faint); margin-top: 2px; }
.lead-profit { font-size: .88rem; font-weight: 700; color: var(--green); white-space: nowrap; }


/* ============================================
   STEPS
   ============================================ */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  margin-top: 40px;
}
.step-item {
  background: var(--bg-card);
  padding: clamp(28px, 3.5vw, 44px);
  transition: background .3s;
}
.step-item:hover { background: var(--bg-card-hover); }
.step-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--blue);
  opacity: .35;
  line-height: 1; margin-bottom: 16px;
}
.step-item h3 { margin-bottom: 8px; }
.step-item p { font-size: .82rem; color: var(--text-muted); line-height: 1.75; }


/* ============================================
   TESTIMONIALS
   ============================================ */
.test-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.test-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .3s;
}
.test-card:hover { border-color: rgba(0,119,255,.15); }
.test-card-quote {
  font-size: .86rem; color: var(--text);
  line-height: 1.7; font-style: italic;
  margin-bottom: 18px;
}
.test-card-who {
  display: flex; align-items: center; gap: 10px;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.test-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: .7rem;
}
.test-name { font-size: .8rem; font-weight: 600; color: var(--white); }
.test-role { font-size: .65rem; color: var(--text-faint); }


/* ============================================
   PRICING
   ============================================ */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
}
.price-card {
  background: var(--bg-card);
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  transition: background .3s;
}
.price-card:hover { background: var(--bg-card-hover); }
.price-card.featured {
  background: linear-gradient(180deg, rgba(0,119,255,.08), var(--bg-card));
  border-top: 2px solid var(--blue);
}
.price-popular {
  position: absolute; top: 16px; right: 16px;
  font-size: .55rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--blue-bright);
}
.price-tier {
  font-weight: 700; font-size: .9rem;
  color: var(--white); margin-bottom: 10px;
}
.price-amount {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 800; color: var(--blue-bright);
  letter-spacing: -.02em; margin-bottom: 4px;
}
.price-amount span { font-size: .82rem; font-weight: 500; color: var(--blue-bright); }
.price-save {
  font-size: .68rem; font-weight: 600;
  color: var(--green); margin-bottom: 8px;
}
.price-desc {
  font-size: .86rem; color: var(--text-muted);
  margin-bottom: 24px; line-height: 1.6;
}
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: .84rem; color: var(--text);
}
.price-list li::before {
  content: '\2713'; font-weight: 700;
  color: var(--blue-bright); font-size: .72rem;
  width: 16px; text-align: center; flex-shrink: 0;
}
.price-list li.off { color: var(--text-faint); }
.price-list li.off::before { content: '\2014'; color: var(--text-faint); }

.price-btn {
  display: block; text-align: center;
  padding: 13px; border-radius: var(--radius);
  font-size: .8rem; font-weight: 600;
  transition: all .25s var(--ease);
}
.price-btn-fill {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(0,119,255,.2);
}
.price-btn-fill:hover {
  background: #0066dd;
  box-shadow: 0 8px 24px rgba(0,119,255,.3);
  transform: translateY(-1px);
}
.price-btn-outline {
  border: 1.5px solid var(--border-light);
  color: var(--text);
}
.price-btn-outline:hover { border-color: var(--blue); color: var(--blue-bright); }
.price-btn-discord {
  background: var(--discord); color: var(--white); border: none;
}
.price-btn-discord:hover {
  background: var(--discord-hover);
  box-shadow: 0 4px 20px var(--discord-glow);
}
.price-note {
  text-align: center; margin-top: 10px;
  font-size: .65rem; color: var(--text-faint);
}


/* ============================================
   FAQ
   ============================================ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item summary {
  padding: 20px 0; font-size: .88rem;
  font-weight: 600; color: var(--white);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 1.1rem; font-weight: 400;
  color: var(--text-muted); transition: all .3s var(--ease);
  flex-shrink: 0; margin-left: 16px;
}
.faq-item[open] summary { color: var(--blue-bright); }
.faq-item[open] summary::after { content: '\2212'; color: var(--blue-bright); }
.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .35s var(--ease);
}
.faq-item[open] .faq-answer { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding-bottom: 20px; font-size: .82rem;
  color: var(--text-muted); line-height: 1.8;
}


/* ============================================
   INTERACTIVE JOURNEY
   ============================================ */
.journey-scene {
  max-width: 640px; margin: 0 auto;
  position: relative;
}

/* Progress bar */
.journey-progress {
  height: 3px; background: var(--border);
  border-radius: 2px; margin-bottom: 28px;
  overflow: hidden;
}
.journey-progress-fill {
  height: 100%; width: 14.28%;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  border-radius: 2px;
  transition: width .5s var(--ease);
}

/* Step dots */
.journey-dots {
  display: flex; justify-content: center;
  gap: 8px; margin-bottom: 32px;
}
.journey-dot {
  width: 32px; height: 32px;
  border-radius: 50%; border: 1.5px solid var(--border);
  background: var(--bg-card); color: var(--text-faint);
  font-size: .68rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .35s var(--ease);
  position: relative;
}
.journey-dot span { position: relative; z-index: 1; }
.journey-dot.active {
  border-color: var(--blue); color: var(--white);
  background: var(--blue);
  box-shadow: 0 0 18px rgba(0,119,255,.35);
  transform: scale(1.12);
}
.journey-dot.done {
  border-color: var(--green); color: var(--white);
  background: var(--green);
}
.journey-dot:hover:not(.active) {
  border-color: rgba(0,119,255,.4);
  background: rgba(0,119,255,.08);
  color: var(--blue-bright);
}

/* Stage container */
.journey-stage {
  position: relative;
  min-height: 340px;
}

/* Cards */
.journey-card {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
}
.journey-card.active {
  opacity: 1; transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.journey-card.exit-left {
  opacity: 0; transform: translateX(-40px);
}

/* Icon circle */
.journey-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  transition: transform .35s var(--ease);
}
.journey-card.active .journey-icon {
  animation: journeyPop .5s var(--ease) both;
}
@keyframes journeyPop {
  0% { transform: scale(.6); opacity: 0; }
  60% { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}

/* Step label */
.journey-step-label {
  font-size: .62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--blue-bright); margin-bottom: 6px;
}

/* Headings and text */
.journey-card h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--white); margin-bottom: 10px;
  letter-spacing: -.01em;
}
.journey-card p {
  font-size: .82rem; color: var(--text-muted);
  line-height: 1.75; max-width: 480px; margin-bottom: 20px;
}

/* Visual widgets shared */
.journey-visual {
  width: 100%; max-width: 320px;
  animation: journeySlideUp .55s var(--ease) .15s both;
}
@keyframes journeySlideUp {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Notification widget */
.journey-notif {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 16px;
  animation: notifSlide .5s var(--ease) .3s both;
}
@keyframes notifSlide {
  0% { opacity: 0; transform: translateX(-20px) scale(.96); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}
.journey-notif-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(0,119,255,.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Receipt widget */
.journey-receipt {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}

/* Package widget */
.journey-package {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px;
  text-align: center;
}

/* Checklist widget */
.journey-checklist {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  text-align: left;
}
.journey-check {
  display: flex; align-items: center; gap: 8px;
  font-size: .72rem; color: var(--text-muted);
  padding: 4px 0;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.journey-card.active .journey-check.done { opacity: 1; }
.journey-card.active .journey-check:nth-child(1) { transition-delay: .3s; }
.journey-card.active .journey-check:nth-child(2) { transition-delay: .5s; }
.journey-card.active .journey-check:nth-child(3) { transition-delay: .7s; }

/* Tracker widget */
.journey-tracker {
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
}
.journey-tracker-step {
  font-size: .68rem; font-weight: 600;
  color: var(--text-faint); padding: 4px 10px;
  border-radius: 20px; white-space: nowrap;
  transition: all .3s var(--ease);
}
.journey-tracker-step.done {
  color: var(--green); background: rgba(0,214,143,.1);
}
.journey-tracker-step.active {
  color: var(--blue-bright); background: rgba(0,119,255,.12);
  animation: trackerPulse 1.5s ease-in-out infinite;
}
@keyframes trackerPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,119,255,.2); }
  50% { box-shadow: 0 0 0 6px rgba(0,119,255,0); }
}
.journey-tracker-line {
  width: 32px; height: 2px;
  background: var(--border); flex-shrink: 0;
}

/* Sold widget */
.journey-sold {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  text-align: center;
}

/* Profit card */
.journey-profit-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,214,143,.2);
  border-radius: var(--radius); padding: 18px 20px;
}

/* Controls */
.journey-controls {
  display: flex; align-items: center;
  justify-content: center; gap: 16px;
  margin-top: 32px;
}
.journey-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 20px; border-radius: 8px;
  font-size: .78rem; font-weight: 600;
  font-family: var(--font);
  background: var(--bg-card); border: 1px solid var(--border);
  color: var(--text-muted); cursor: pointer;
  transition: all .25s var(--ease);
}
.journey-btn:hover {
  border-color: rgba(0,119,255,.3); color: var(--white);
  background: var(--bg-card-hover);
}
.journey-btn:disabled {
  opacity: .3; cursor: not-allowed;
}
.journey-btn-primary {
  background: var(--blue); border-color: var(--blue);
  color: var(--white);
}
.journey-btn-primary:hover {
  background: var(--blue-bright); border-color: var(--blue-bright);
  box-shadow: 0 4px 20px rgba(0,119,255,.3);
}

/* Counter */
.journey-counter {
  font-size: .72rem; font-weight: 700;
  color: var(--text-faint); min-width: 44px; text-align: center;
}
.journey-counter span { color: var(--white); }

/* Repeat message */
.journey-repeat {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  margin-top: 28px; padding: 16px;
  background: rgba(0,119,255,.06);
  border: 1px solid rgba(0,119,255,.15);
  border-radius: var(--radius);
  font-size: .82rem; color: var(--blue-bright);
  font-weight: 600;
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.journey-repeat.vis {
  opacity: 1; transform: translateY(0);
}

/* Ping animation on radar dot */
@keyframes pingDot {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-3px); opacity: .5; }
}
.ping-dot { animation: pingDot 1.2s ease-in-out infinite; }

/* Responsive */
@media (max-width: 600px) {
  .journey-dots { gap: 6px; }
  .journey-dot { width: 28px; height: 28px; font-size: .6rem; }
  .journey-stage { min-height: 380px; }
  .journey-card h3 { font-size: 1rem; }
  .journey-card p { font-size: .78rem; }
  .journey-controls { gap: 10px; }
  .journey-btn { padding: 8px 14px; font-size: .72rem; }
}


/* ============================================
   ROI CALCULATOR
   ============================================ */
.calc-wrap {
  max-width: 800px; margin: 0 auto;
}
.calc-slider-area {
  text-align: center; margin-bottom: 36px;
}
.calc-label {
  font-size: .78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 8px; display: block;
}
.calc-amount {
  font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 20px;
}
.calc-range {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(90deg, var(--blue) 0%, var(--bg-card-hover) 0%);
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px;
  border-radius: 50%; background: var(--blue); border: 3px solid var(--white);
  cursor: pointer; box-shadow: 0 0 16px rgba(0,119,255,.4);
  transition: transform .15s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc-range::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); border: 3px solid var(--white);
  cursor: pointer; box-shadow: 0 0 16px rgba(0,119,255,.4);
}
.calc-range-labels {
  display: flex; justify-content: space-between;
  font-size: .72rem; color: var(--text-faint); margin-top: 8px;
}
.calc-results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px;
}
.calc-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
  transition: all .3s var(--ease);
}
.calc-card:hover {
  border-color: rgba(0,119,255,.2); transform: translateY(-2px);
}
.calc-card-featured {
  border-color: var(--blue); background: linear-gradient(180deg, rgba(0,119,255,.08) 0%, var(--bg-card) 100%);
  transform: scale(1.04);
}
.calc-card-featured:hover { transform: scale(1.04) translateY(-2px); }
.calc-card-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-faint); margin-bottom: 8px;
}
.calc-card-value {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white);
  letter-spacing: -.02em; margin-bottom: 4px;
}
.calc-card-profit {
  font-size: .78rem; font-weight: 600; color: var(--green);
}
.calc-note {
  text-align: center; font-size: .72rem; color: var(--text-faint);
  font-style: italic;
}
@media (max-width: 600px) {
  .calc-results { grid-template-columns: 1fr; gap: 12px; }
  .calc-card-featured { transform: none; }
  .calc-card-featured:hover { transform: translateY(-2px); }
}

/* ============================================
   BOOK A CALL
   ============================================ */
.book-section {
  padding: clamp(60px, 10vw, 100px) 0;
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.book-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, var(--blue-glow), transparent);
  pointer-events: none;
}
.book-section .container { position: relative; z-index: 1; }
.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
.book-text { padding-top: 20px; }
.book-text h2 { margin-bottom: 12px; }
.book-text p {
  color: var(--text-muted); line-height: 1.8;
  font-size: .88rem; margin-bottom: 20px;
}
.book-details { list-style: none; margin-top: 20px; }
.book-details li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; font-size: .82rem; color: var(--text);
}
.book-details li svg {
  width: 16px; height: 16px; stroke: var(--blue-bright);
  flex-shrink: 0;
}
.book-embed {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 700px;
}
.book-embed iframe {
  width: 100%; height: 700px; border: none;
}

@media (max-width: 1024px) {
  .book-inner { grid-template-columns: 1fr; }
  .book-embed { max-width: 520px; }
}

/* Nav book button */
.btn-book {
  background: transparent; color: var(--blue-bright);
  border: 1.5px solid var(--blue);
}
.btn-book:hover {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,119,255,.25);
}


/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: clamp(60px, 10vw, 100px) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, var(--blue-glow), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 14px; }
.cta-band p {
  color: var(--text-muted); max-width: 440px;
  margin: 0 auto 32px; font-size: .92rem;
}
.cta-actions {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}

/* Big stats line */
.stats-line {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.stats-line-inner {
  display: flex; align-items: center;
  justify-content: center; gap: clamp(24px, 4vw, 48px);
  flex-wrap: wrap;
}
.stats-line .overline { margin-bottom: 0; }
.stat-chip {
  display: flex; align-items: baseline; gap: 6px;
}
.stat-chip-val {
  font-size: 1.1rem; font-weight: 800; color: var(--white);
  letter-spacing: -.01em;
}
.stat-chip-lbl {
  font-size: .68rem; color: var(--text-faint);
  font-weight: 500; text-transform: uppercase;
  letter-spacing: .5px;
}


/* ============================================
   INTERIOR HERO
   ============================================ */
.hero-interior {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-interior::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 0%, var(--blue-glow), transparent);
  pointer-events: none;
}
.hero-interior .container { position: relative; z-index: 1; }
.hero-interior h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.5vw, 3rem);
}
.hero-interior p {
  max-width: 500px; margin: 0 auto;
  color: var(--text-muted);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 40px;
}
.footer-brand { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-brand img { height: 44px; width: auto; filter: brightness(1.15); }
.footer-brand p {
  font-size: .76rem; color: var(--text-faint);
  line-height: 1.7; max-width: 240px;
}
.footer-brand .email {
  font-size: .74rem; color: var(--blue-bright);
}
.footer-col h4 {
  font-size: .58rem; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 12px;
}
.footer-col a {
  display: block; font-size: .78rem;
  color: var(--text-muted); padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: .65rem; color: var(--text-faint);
  text-align: center;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-socials {
  display: flex; gap: 12px; align-items: center;
}
.footer-socials a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--text-muted); transition: all .25s var(--ease);
}
.footer-socials a:hover {
  background: var(--blue); border-color: var(--blue); color: var(--white);
  transform: translateY(-2px);
}
.footer-socials svg { width: 15px; height: 15px; }


/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue); color: var(--white); border: none;
  cursor: pointer; z-index: 999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0,119,255,.3);
}
.scroll-top.vis {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  background: var(--blue-bright);
  transform: translateY(-2px);
}
.scroll-top svg { width: 18px; height: 18px; }

/* ============================================
   BLOG PREVIEW (homepage)
   ============================================ */
.blog-preview-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all .3s var(--ease);
  display: flex; flex-direction: column;
}
.blog-preview-card:hover {
  border-color: rgba(0,119,255,.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
}
.blog-preview-cat {
  font-size: .6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--blue-bright); margin-bottom: 10px;
}
.blog-preview-card h3 {
  font-size: .95rem; font-weight: 700; color: var(--white);
  line-height: 1.4; margin-bottom: 10px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-preview-card p {
  font-size: .78rem; color: var(--text-muted); line-height: 1.7;
  flex: 1; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-preview-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .65rem; color: var(--text-faint);
}
.blog-preview-author {
  display: flex; align-items: center; gap: 6px;
}
.blog-preview-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .5rem; font-weight: 700; color: var(--white);
}
@media (max-width: 768px) {
  .blog-preview-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LEAD FRAME (bento card)
   ============================================ */
.lead-frame {
  flex: 1; position: relative;
  background: var(--bg-surface);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.lead-frame-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid var(--border);
}
.lead-frame-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.lead-frame-title {
  font-size: .62rem; font-weight: 600; color: var(--text-faint);
  margin-left: 6px; text-transform: uppercase; letter-spacing: 1px;
}
.lead-frame-body {
  flex: 1; padding: 0;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lead-frame-body img {
  width: 100%; height: 100%; object-fit: cover;
}
.lead-frame-footer {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: rgba(0,0,0,.15);
  border-top: 1px solid var(--border);
}

/* ============================================
   LIVE ACTIVITY TOAST
   ============================================ */
.live-toast {
  position: fixed; bottom: 28px; left: 28px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
  z-index: 998;
  opacity: 0; transform: translateY(20px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events: none;
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
  max-width: 320px;
}
.live-toast.vis {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.live-toast-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.live-toast-text {
  font-size: .75rem; color: var(--text); line-height: 1.4;
}
.live-toast-text strong {
  color: var(--white); font-weight: 600;
}
@media (max-width: 600px) {
  .live-toast { left: 12px; right: 12px; max-width: none; bottom: 80px; }
  .scroll-top { bottom: 20px; right: 16px; width: 38px; height: 38px; }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; }
  .split-reverse { direction: ltr; }
  .audience-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .mobile-toggle { display: block; }

  .hero { min-height: auto; padding: 110px 0 60px; }
  .hero > .container { padding-left: clamp(20px, 4vw, 40px); padding-right: clamp(20px, 4vw, 40px); }
  .hero-trust { flex-direction: column; gap: 12px; }
  .audience-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .stats-line-inner { flex-direction: column; gap: 16px; }
}
