/* ============================================================
   VITALVAULT - Lookmaxxing System Ebook Landing Page
   Sleek Cyber-Aesthetics Design System
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@600;700;800;900&display=swap');

/* --- Design Tokens --- */
:root {
  /* Core Colors - Cyber Luxury theme */
  --bg: #030303;
  --bg-alt: #07070a;
  --surface: #0a0a0f;
  --card-bg: #0e0e14;
  --card-hover: #14141e;
  --card-bg-alt: #08080c;

  /* Accent - Neon Cyan & Electric Purple Gradients */
  --accent: #00f0ff;
  --accent-purple: #7000ff;
  --accent-gradient: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
  --accent-gradient-hover: linear-gradient(135deg, #33f3ff 0%, #8c33ff 100%);
  
  --accent-glow: rgba(0, 240, 255, 0.15);
  --accent-glow-strong: rgba(112, 0, 255, 0.3);
  --accent-soft: rgba(0, 240, 255, 0.08);
  --accent-purple-soft: rgba(112, 0, 255, 0.08);

  /* Gold - For ratings and pricing highlights */
  --gold: #ffbe0b;
  --gold-glow: rgba(255, 190, 11, 0.3);
  
  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #d1d8e6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Borders */
  --border-light: rgba(255, 255, 255, 0.05);
  --border-lighter: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(0, 240, 255, 0.2);
  --border-accent-purple: rgba(112, 0, 255, 0.2);

  /* Glassmorphism */
  --glass: rgba(10, 10, 15, 0.55);
  --glass-strong: rgba(10, 10, 15, 0.85);

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.6), 0 2px 8px rgba(0, 240, 255, 0.1);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --shadow-glow-strong: 0 0 50px var(--accent-glow-strong);
  
  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; height: auto; }
button { border: none; background: none; cursor: pointer; font-family: inherit; color: inherit; }

::selection { background: var(--accent-purple); color: #fff; }
::-moz-selection { background: var(--accent-purple); color: #fff; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1a1a24; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #2b2b3b; }

/* ════════════════════════════════════════════
   AMBIENT BACKGROUND - Floating Cyber Orbs
   ════════════════════════════════════════════ */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  will-change: transform;
}

.orb-1 {
  width: 500px;
  height: 800px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  left: -200px;
  top: 10%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.orb-2 {
  width: 600px;
  height: 700px;
  background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
  right: -250px;
  top: 35%;
  animation: orbFloat2 25s ease-in-out infinite;
}

.orb-3 {
  width: 800px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  opacity: 0.2;
  animation: orbFloat3 22s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-40px, 60px) scale(1.1); }
  66% { transform: translate(30px, -30px) scale(0.9); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, -40px) scale(1.15); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -50px); }
  80% { transform: translate(-50%, 30px); }
}

/* Grid overlay - tech feel */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0, 240, 255, 0.01) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.01) 1px, transparent 1px);
  background-size: 80px 80px;
}

#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════
   LAYOUT UTILITIES
   ════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 7rem 0;
  position: relative;
}

.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lighter), transparent);
  position: relative;
  z-index: 1;
}

/* ════════════════════════════════════════════
   TYPOGRAPHY & HEADERS
   ════════════════════════════════════════════ */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.headline-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.text-muted {
  color: var(--text-muted);
  line-height: 1.7;
}

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-fade {
  color: var(--text-muted);
}

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

/* Eyebrow Pill */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(0, 240, 255, 0.03);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.05);
}

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

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
  50% { opacity: 0.4; box-shadow: 0 0 16px var(--accent); }
}

/* ════════════════════════════════════════════
   FLOATING PILL NAVBAR
   ════════════════════════════════════════════ */
.navbar-wrapper {
  position: fixed;
  top: 1.25rem;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 1rem;
}

.navbar {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.6rem 0.6rem 0.6rem 1.5rem;
  background: rgba(10, 10, 15, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  max-width: 720px;
  width: 100%;
  justify-content: space-between;
}

.navbar.scrolled {
  background: rgba(5, 5, 8, 0.85);
  border-color: var(--border-lighter);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 240, 255, 0.03);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.navbar-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.navbar-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.navbar-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
  white-space: nowrap;
}

.navbar-links a:hover { color: var(--accent); }

.navbar-cta {
  background: var(--text-primary);
  color: #000 !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.navbar-cta:hover {
  background: var(--accent);
  color: #000 !important;
  transform: scale(1.03);
  box-shadow: 0 0 30px var(--accent-glow) !important;
}

/* Corner Nav */
.nav-corner {
  position: fixed;
  top: 1.4rem;
  z-index: 1001;
  display: none;
}
.nav-corner-left { left: 2rem; }
.nav-corner-right { right: 2rem; align-items: center; gap: 1rem; }

.corner-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-primary);
}

.nav-corner-right a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-corner-right a:hover { color: var(--accent); }

.nav-corner-btn {
  background: var(--text-primary);
  color: #000 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

/* Mobile Hamburger Toggle */
.nav-toggle {
  display: flex;
  position: fixed;
  top: 1.4rem;
  right: 1.5rem;
  z-index: 1002;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: rgba(10, 10, 15, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(3, 3, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile.active { display: flex; }

.nav-mobile a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

.nav-mobile a:hover { color: var(--accent); }

/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { z-index: 1; }

.hero-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.hero-stat-item { text-align: left; }

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 3D Product Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.ebook-wrapper {
  position: relative;
  perspective: 1200px;
}

.ebook-mockup {
  position: relative;
  transform: rotateY(-12deg) rotateX(4deg);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
  animation: ebookFloat 5s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8)) drop-shadow(0 15px 30px rgba(0, 240, 255, 0.2));
  z-index: 2;
}

.ebook-mockup:hover {
  transform: rotateY(-6deg) rotateX(2deg) scale(1.03);
  filter: drop-shadow(0 60px 80px rgba(0,0,0,0.9)) drop-shadow(0 20px 40px rgba(112, 0, 255, 0.25));
  animation-play-state: paused;
}

@keyframes ebookFloat {
  0%, 100% { transform: rotateY(-12deg) rotateX(4deg) translateY(-10px); }
  50% { transform: rotateY(-12deg) rotateX(4deg) translateY(10px); }
}

.ebook-screen {
  width: 350px;
  max-width: 80vw;
  background: var(--card-bg);
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.ebook-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border-light);
}

.ebook-dot { width: 8px; height: 8px; border-radius: 50%; }
.ebook-dot.red { background: #ff5f57; }
.ebook-dot.yellow { background: #ffbd2e; }
.ebook-dot.green { background: #28ca42; }

.ebook-bar-title {
  margin-left: 8px;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
}

.ebook-body {
  padding: 2.5rem 1.5rem;
  background: linear-gradient(180deg, #09090f 0%, #030305 100%);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ebook-body .ebook-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.ebook-body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.ebook-body .ebook-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.ebook-start-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  background: rgba(0, 240, 255, 0.03);
  transition: all var(--transition);
  text-align: center;
}

.ebook-ground-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.7) 0%, transparent 70%);
  filter: blur(8px);
  animation: shadowFloat 5s ease-in-out infinite;
  z-index: 1;
}

@keyframes shadowFloat {
  0%, 100% { transform: translateX(-50%) scale(0.85); opacity: 0.4; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 0.8; }
}

.ebook-label-tag {
  position: absolute;
  bottom: -50px;
  right: -10px;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--accent-purple);
  border-radius: 6px;
  background: var(--accent-purple-soft);
  white-space: nowrap;
}

/* ════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--text-primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.08);
}

.btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  border: 1px solid var(--border-lighter);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(112, 0, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-accent:hover {
  background: var(--accent-gradient-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 35px var(--accent-glow-strong), 0 0 15px var(--accent-glow);
}

.btn-glow {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(112, 0, 255, 0.25); }
  50% { box-shadow: 0 4px 35px rgba(0, 240, 255, 0.35); }
}

.btn-arrow { transition: transform var(--transition); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-full { width: 100%; }

/* ════════════════════════════════════════════
   THE PROBLEM SECTION (GLOW-UP TRANSFORMATION)
   ════════════════════════════════════════════ */
.problem-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-content .headline-lg {
  margin-bottom: 2rem;
}

.problem-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ════════════════════════════════════════════
   BENTO GRID (6-MODULE BLUEPRINT)
   ════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover);
}

.bento-icon-wrapper {
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.bento-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.bento-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.bento-feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.bento-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 5px var(--accent);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   90-DAY PROTOCOL ROADMAP
   ════════════════════════════════════════════ */
.roadmap-container {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--accent-purple), transparent);
  z-index: 0;
}

.roadmap-item {
  position: relative;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  z-index: 1;
}

.roadmap-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #000;
  border: 2px solid var(--border-lighter);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.roadmap-circle.active {
  border-color: var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.tech-node {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-lighter);
  transition: all var(--transition);
}

.roadmap-circle.active .tech-node {
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.roadmap-card {
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  flex-grow: 1;
  transition: border-color var(--transition), background var(--transition);
}

.roadmap-item:hover .roadmap-card {
  border-color: var(--border-accent-purple);
  background: rgba(112, 0, 255, 0.02);
}

.roadmap-weeks {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-purple);
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}

.roadmap-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.roadmap-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   EXPECTED OUTCOMES
   ════════════════════════════════════════════ */
.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.outcome-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: transform var(--transition);
}

.outcome-card:hover {
  transform: translateX(4px);
}

.outcome-check {
  font-size: 1.25rem;
  color: #10b981;
  margin-top: 0.1rem;
}

.outcome-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.outcome-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════
   SUCCESS TICKER / TESTIMONIALS
   ════════════════════════════════════════════ */
.ticker-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 120px, #000 calc(100% - 120px), transparent);
}

.ticker-row {
  display: flex;
  width: max-content;
  margin-bottom: 2rem;
  animation: tickerLeft 42s linear infinite;
  gap: 20px;
}

.ticker-row:hover {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  gap: 20px;
  padding-right: 20px;
}

@keyframes tickerLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.crimson-card {
  min-width: 310px;
  max-width: 310px;
  width: 310px;
  background: rgba(14, 14, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.crimson-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  background: rgba(14, 14, 20, 0.85);
  box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.user-meta {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-grow: 1;
}

.crimson-name {
  font-weight: 700;
  color: #FFFFFF;
  font-size: 0.9rem;
}

.crimson-loc {
  font-size: 0.72rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 4px;
}

.verified-badge {
  color: #10b981;
  font-weight: 600;
}

.crimson-stars {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 1.5px;
}

.crimson-quote {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  flex-grow: 1;
}

.crimson-quote strong {
  color: #fff;
  font-weight: 600;
}

/* ════════════════════════════════════════════
   CHECKOUT PRICING CARD
   ════════════════════════════════════════════ */
.pricing-card {
  max-width: 500px;
  margin: 3.5rem auto 0;
  background: rgba(14, 14, 20, 0.55);
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-card), 0 0 30px rgba(112, 0, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-gradient);
}

.pricing-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-card-hover), 0 0 45px rgba(0, 240, 255, 0.05);
}

.pricing-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-original {
  font-size: 1.1rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-right: 0.5rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  vertical-align: middle;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  margin-bottom: 2.5rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-feature-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  font-size: 0.68rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════
   LIVE PURCHASE NOTIFICATION TOAST
   ════════════════════════════════════════════ */
.purchase-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.05);
  transform: translateY(120px) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out);
}

.purchase-toast.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.purchase-toast-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.85rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.purchase-toast-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.purchase-toast-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.purchase-toast-title strong {
  color: #fff;
}

.purchase-toast-meta {
  font-size: 0.65rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
}

.purchase-toast-verified {
  color: #10b981;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
}

/* ════════════════════════════════════════════
   MOBILE STICKY CTA
   ════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem;
  background: rgba(3, 3, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: center;
  transition: bottom 0.4s var(--ease-out);
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta .btn {
  width: 100%;
  max-width: 400px;
  padding: 1rem;
  font-size: 0.9rem;
}

/* ════════════════════════════════════════════
   SCROLL REVEAL UTILITIES
   ════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out), transform var(--duration-slow) var(--ease-out);
}

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

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Hero load animations */
.hero-load-1 { opacity: 0; animation: heroReveal 0.8s var(--ease-out) 0.2s forwards; }
.hero-load-2 { opacity: 0; animation: heroReveal 0.8s var(--ease-out) 0.35s forwards; }
.hero-load-3 { opacity: 0; animation: heroReveal 0.8s var(--ease-out) 0.5s forwards; }
.hero-load-4 { opacity: 0; animation: heroReveal 0.8s var(--ease-out) 0.65s forwards; }
.hero-load-5 { opacity: 0; animation: heroReveal 0.8s var(--ease-out) 0.8s forwards; }

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: #020204;
  padding: 5rem 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.footer-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  background: var(--accent-soft);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.1);
}

.footer-copy {
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.65;
}

/* ════════════════════════════════════════════
   RESPONSIVE DESIGN BREAKPOINTS
   ════════════════════════════════════════════ */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
  }

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

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

  .navbar-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-corner {
    display: flex;
  }

  .nav-corner-right {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero .headline-hero {
    font-size: 4.2rem;
  }
}

@media (max-width: 899px) {
  .purchase-toast {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem;
    transform: translateY(150px) scale(0.9);
  }
}

@media (max-width: 767px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 4.5rem 0; }

  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-grid { gap: 2rem; }

  .pricing-card { padding: 2.5rem 1.5rem; }
  .price-current { font-size: 2.8rem; }

  .ebook-label-tag {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 1.5rem;
    display: inline-block;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .roadmap-line {
    left: 11px;
  }

  .roadmap-circle {
    width: 24px;
    height: 24px;
  }

  .tech-node {
    width: 8px;
    height: 8px;
  }

  .roadmap-card {
    padding: 1.25rem;
  }

  .crimson-card {
    min-width: 280px;
    max-width: 280px;
    width: 280px;
    padding: 16px;
  }
  .ticker-wrapper {
    mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 40px, #000 calc(100% - 40px), transparent);
  }
}
