/* ============================================================
   VITALEDGE - Male Growth Protocol™ 3.0
   Premium Sales Landing Page - Fused Design System
   Combines: VitalEdge Linkhub + Vault-Connect + Web App MGP 3.0
   ============================================================ */

/* --- 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&display=swap');

/* --- Design Tokens --- */
:root {
  /* Core Colors - VitalEdge dark luxury */
  --bg: #050505;
  --bg-alt: #080808;
  --surface: #0D0D0D;
  --card-bg: #111111;
  --card-hover: #151515;
  --card-bg-alt: #0a0a0a;

  /* Accent - VitalEdge crimson red */
  --accent: #D90429;
  --accent-hover: #EF233C;
  --accent-glow: rgba(217, 4, 41, 0.15);
  --accent-glow-strong: rgba(217, 4, 41, 0.3);
  --accent-soft: rgba(217, 4, 41, 0.08);

  /* Secondary accents */
  --gold: #d4af37;
  --gold-glow: rgba(212, 175, 55, 0.3);
  --blue-subtle: rgba(30, 64, 175, 0.08);

  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #c0c7d6;
  --text-muted: #9CA3AF;
  --text-dim: #6B7280;

  /* Borders */
  --border-light: rgba(255, 255, 255, 0.06);
  --border-lighter: rgba(255, 255, 255, 0.12);
  --border-accent: rgba(217, 4, 41, 0.2);

  /* Glass - from vault-connect */
  --glass: rgba(17, 17, 17, 0.6);
  --glass-strong: rgba(17, 17, 17, 0.85);

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

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Borders */
  --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.3), 0 1px 4px rgba(0, 0, 0, 0.2);
  --shadow-card-hover: 0 8px 40px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(217, 4, 41, 0.1);
  --shadow-glow: 0 0 30px var(--accent-glow);
  --shadow-glow-strong: 0 0 50px var(--accent-glow-strong);
  --shadow-btn: 0 4px 20px rgba(255, 255, 255, 0.08);
  --shadow-btn-hover: 0 6px 30px rgba(255, 255, 255, 0.15);

  /* Transitions - from vault-connect */
  --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);
  --duration-fast: 0.2s;
  --duration-normal: 0.35s;
  --duration-slow: 0.6s;
}

/* --- 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); color: #fff; }
::-moz-selection { background: var(--accent); color: #fff; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #222; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #333; }


/* ════════════════════════════════════════════
   AMBIENT BACKGROUND - Vault-Connect 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(80px);
  opacity: 0.4;
  will-change: transform;
}

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

.orb-2 {
  width: 500px;
  height: 800px;
  background: radial-gradient(circle, var(--blue-subtle) 0%, transparent 70%);
  right: -200px;
  top: 40%;
  animation: orbFloat2 20s ease-in-out infinite;
}

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

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

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

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

/* Grid overlay - tech feel from vault-connect */
.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(217, 4, 41, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 4, 41, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
}

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


/* ════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════ */
.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);
}

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

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


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

.headline-hero {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

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

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

.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover), #ff6b6b);
  -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(255, 255, 255, 0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  margin-bottom: 1.5rem;
}

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

@keyframes dotPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent-glow-strong); }
  50% { opacity: 0.5; box-shadow: 0 0 15px var(--accent-glow-strong); }
}


/* ════════════════════════════════════════════
   FLOATING PILL NAVBAR - VitalEdge Style
   ════════════════════════════════════════════ */
.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(17, 17, 17, 0.3);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  max-width: 700px;
}

.navbar.scrolled {
  background: rgba(17, 17, 17, 0.85);
  border-color: var(--border-lighter);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  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-glow-strong);
  animation: dotPulse 2s ease-in-out infinite;
}

.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(--text-primary); }

.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: 600 !important;
  transition: all var(--transition) !important;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  white-space: nowrap;
}

.navbar-cta:hover {
  background: #e5e5e5 !important;
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2) !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; display: none; align-items: center; gap: 1rem; }

.corner-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  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(--text-primary); }

.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: 600 !important;
}

/* Mobile Hamburger */
.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(17, 17, 17, 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 Full-Screen Menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5, 5, 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: 600;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.05em;
}

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


/* ════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 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-content .headline-hero {
  margin-bottom: 1.5rem;
}

.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: 2rem;
}

/* Hero Stats */
.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.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* 3D Ebook Mockup - VitalEdge + vault-connect float */
.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 4.5s ease-in-out infinite;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.7)) drop-shadow(0 15px 30px rgba(217,4,41,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.8)) drop-shadow(0 20px 40px rgba(217,4,41,0.3));
  animation-play-state: paused;
}

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

.ebook-screen {
  width: 360px;
  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: 2rem 1.5rem;
  background: linear-gradient(180deg, #0f0f0f 0%, #080808 100%);
  min-height: 200px;
}

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

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

.ebook-body .ebook-sub {
  font-size: 0.7rem;
  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: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  border: 1px solid var(--border-lighter);
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  transition: all var(--transition);
}

.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.6) 0%, transparent 70%);
  filter: blur(8px);
  animation: shadowFloat 4.5s ease-in-out infinite;
  z-index: 1;
}

@keyframes shadowFloat {
  0%, 100% { transform: translateX(-50%) scale(0.7); opacity: 0.3; } /* Book is UP (-12px) */
  50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; } /* Book is DOWN (12px) */
}

.ebook-label-tag {
  position: absolute;
  bottom: -50px;
  right: -20px;
  padding: 0.5rem 1rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  border: 1px solid var(--accent);
  border-radius: 6px;
  background: var(--accent-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: 600;
  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: var(--shadow-btn);
}

.btn-primary:hover {
  background: #e8e8e8;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-btn-hover);
}

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

/* Shimmer sweep - from vault-connect */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s var(--ease-out);
}

.btn-primary:hover::before { left: 100%; }

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

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

.btn-accent {
  background: linear-gradient(135deg, var(--accent), #b5031f);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Glow pulse - from vault-connect */
.btn-glow {
  animation: btnPulse 3s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: var(--shadow-glow-strong), 0 0 40px var(--accent-glow); }
}

.btn-lg { padding: 1rem 2rem; font-size: 0.95rem; }
.btn-full { width: 100%; max-width: 400px; }


/* ════════════════════════════════════════════
   BENTO GRID CARDS - Modules
   ════════════════════════════════════════════ */
.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.bento-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

/* Holographic shimmer - from vault-connect */
.bento-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(217, 4, 41, 0.03) 50%, transparent 70%);
  transform: rotate(0deg);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.bento-card:hover::after { transform: rotate(180deg); }

.bento-card:hover {
  background: var(--card-hover);
  border-color: var(--border-lighter);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Top shine line on hover */
.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 4, 41, 0.3), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.bento-card:hover::before { opacity: 1; }

.bento-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

.bento-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.bento-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

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

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

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


/* ════════════════════════════════════════════
   GLASS PANELS - Academy Preview
   ════════════════════════════════════════════ */
.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.glass-panel:hover { border-color: var(--border-lighter); }

.glass-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem 2rem 1rem;
}

.glass-panel-header h3 { font-size: 1.25rem; font-weight: 700; }
.glass-panel-header p { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.25rem; }
.glass-panel-icon { font-size: 1.5rem; }
.glass-panel-body { padding: 0 2rem 2rem; }

/* Nested screen preview */
.nested-screen {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.nested-screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border-light);
}

.nested-screen-content { padding: 1.25rem; }

.nested-welcome {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.nested-current-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.nested-product-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.nested-chapters {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.nested-progress {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.nested-progress .status { color: var(--accent); }

.nested-start-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  background: var(--accent);
  border-radius: 6px;
  transition: all var(--transition);
}

.nested-start-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.03);
}

/* Pro Upsell */
.pro-upsell {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
}

.pro-upsell-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pro-upsell h4 { font-size: 1rem; margin-bottom: 0.5rem; }

.pro-upsell p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.pro-features { display: flex; flex-direction: column; gap: 0.5rem; }

.pro-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}

.pro-feature-icon { font-size: 0.8rem; }


/* ════════════════════════════════════════════
   ROADMAP - 90-Day Protocol
   ════════════════════════════════════════════ */
.roadmap-container {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}

.roadmap-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--border-lighter), var(--border-light));
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.roadmap-circle {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--border-lighter);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

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

.tech-node {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
}

.roadmap-circle.active .tech-node {
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
}

.roadmap-card {
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  flex: 1;
  transition: all var(--transition);
}

.roadmap-card:hover {
  border-color: var(--border-lighter);
  transform: translateX(4px);
}

.roadmap-weeks {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.roadmap-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.roadmap-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ════════════════════════════════════════════
   STATS - Social Proof
   ════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.stat-item:hover {
  border-color: var(--border-lighter);
  transform: translateY(-3px);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stats-subtext {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-dim);
  font-style: italic;
}


/* ════════════════════════════════════════════
   PROBLEM SECTION
   ════════════════════════════════════════════ */
.problem-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.problem-content .headline-lg {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

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


/* ════════════════════════════════════════════
   OUTCOMES - Checklist
   ════════════════════════════════════════════ */
.outcomes-list {
  max-width: 600px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.outcome-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.outcome-item:hover {
  border-color: var(--border-lighter);
  transform: translateX(4px);
}

.outcome-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════
   WHY METHODS FAIL - Diagram
   ════════════════════════════════════════════ */
.fail-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 3rem;
}

.fail-node {
  padding: 0.75rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-lighter);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.fail-node:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.fail-connector {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.fail-caption {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
}


/* ════════════════════════════════════════════
   BIOLOGICAL FOUNDATION - 3 Cards
   ════════════════════════════════════════════ */
.bio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.bio-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.bio-card:hover {
  border-color: var(--border-lighter);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.bio-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.bio-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

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

.bio-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════
   WHAT THIS IS NOT
   ════════════════════════════════════════════ */
.not-list {
  max-width: 500px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.not-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.not-item.negative {
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.not-item.positive {
  color: var(--text-primary);
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
}

.not-icon {
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.not-item.negative .not-icon { color: var(--text-dim); }
.not-item.positive .not-icon { color: var(--accent); }


/* ════════════════════════════════════════════
   BONUS STACK
   ════════════════════════════════════════════ */
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.bonus-card {
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(217, 4, 41, 0.03) 50%, transparent 70%);
  transform: rotate(0deg);
  transition: transform 0.8s var(--ease-out);
  pointer-events: none;
}

.bonus-card:hover::after { transform: rotate(180deg); }

.bonus-card:hover {
  border-color: var(--border-lighter);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.bonus-badge {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.bonus-card h4 {
  font-size: 0.9rem;
  font-weight: 600;
}


/* ════════════════════════════════════════════
   FREE PERSONAL GUIDANCE
   ════════════════════════════════════════════ */
.guidance-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}

.guidance-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.guidance-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.guidance-card:hover::before { opacity: 1; }

.guidance-card:hover {
  border-color: var(--border-lighter);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.guidance-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.guidance-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.guidance-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Guidance Banner */
.guidance-banner {
  margin-top: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--accent-soft), rgba(217, 4, 41, 0.03));
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.guidance-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(217, 4, 41, 0.05) 50%, transparent 60%);
  animation: bannerShimmer 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes bannerShimmer {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}

.guidance-banner-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.guidance-banner h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.guidance-banner p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Bonus FREE tag */
.bonus-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(16, 185, 129, 0.08);
  margin-bottom: 0.75rem;
}

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

/* ════════════════════════════════════════════
   PRICING - Final CTA
   ════════════════════════════════════════════ */
.pricing-card {
  max-width: 480px;
  margin: 3rem auto 0;
  padding: 3rem;
  background: var(--card-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px var(--accent-glow), var(--shadow-card);
}

/* Animated border glow */
.pricing-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--accent), transparent, var(--accent), transparent);
  border-radius: inherit;
  z-index: -1;
  animation: borderGlow 4s linear infinite;
  background-size: 400% 400%;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pricing-amount {
  margin-bottom: 0.5rem;
}

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

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: top;
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-period {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
  text-align: left;
}

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

.pricing-feature-icon {
  color: var(--accent);
  font-weight: 700;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}


/* ════════════════════════════════════════════
   FUTURE EXPANSION
   ════════════════════════════════════════════ */
.future-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.future-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.future-card:hover {
  border-color: var(--border-lighter);
  transform: translateY(-3px);
}

.future-icon { font-size: 1.8rem; margin-bottom: 1rem; }

.future-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.future-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.08);
}

.future-caption {
  text-align: center;
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  padding: 4rem 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

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

.footer-brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer-social-link:hover {
  color: var(--accent);
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

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


/* ════════════════════════════════════════════
   MOBILE STICKY CTA
   ════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 998;
  padding: 1rem;
  background: rgba(5, 5, 5, 0.95);
  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 ANIMATIONS - From vault-connect
   ════════════════════════════════════════════ */
.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);
}

/* Legacy animate-fade-in */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-fade-in.visible {
  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; }
.delay-4 { transition-delay: 0.4s; }

/* Hero load animations - from vault-connect */
.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); }
}


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

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

  .bonus-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .future-grid {
    grid-template-columns: repeat(4, 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: 4rem;
  }
}

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

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .fail-diagram {
    flex-direction: column;
  }

  .fail-connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--accent), transparent);
  }

  .pricing-card { padding: 2rem 1.5rem; }
  .pricing-value { font-size: 3rem; }

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

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

/* ════════════════════════════════════════════
   TESTIMONIALS (DM STYLE WALL & SPOTLIGHT)
   ════════════════════════════════════════════ */
.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 40s linear infinite;
}

.ticker-row-reverse {
  animation: tickerRight 40s linear infinite;
}

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

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

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

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

/* Spotlight Card Styles */
.spotlight-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(217, 4, 41, 0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(217, 4, 41, 0.05), var(--shadow-card);
  transition: all var(--transition);
}

.spotlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.spotlight-card:hover {
  border-color: rgba(217, 4, 41, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 50px rgba(217, 4, 41, 0.1), var(--shadow-card-hover);
}

.spotlight-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.spotlight-body {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.spotlight-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
  font-family: var(--font-display);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.spotlight-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-rating {
  color: var(--gold);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.spotlight-tag {
  font-size: 0.7rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 600;
}

.spotlight-quote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: normal;
}

.spotlight-quote strong {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(120deg, rgba(217, 4, 41, 0.15) 0%, rgba(217, 4, 41, 0.05) 100%);
  padding: 2px 4px;
  border-radius: 4px;
}

.spotlight-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}

.spotlight-name {
  font-weight: 700;
  color: #fff;
}

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

.spotlight-verified {
  color: #10b981;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.spotlight-divider {
  color: rgba(255, 255, 255, 0.1);
}

/* Ticker Card Styles */
.crimson-card {
  min-width: 320px;
  max-width: 320px;
  width: 320px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  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: rgba(217, 4, 41, 0.3);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(217, 4, 41, 0.08);
}

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

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  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: 2px;
  flex-grow: 1;
}

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

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

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

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

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

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

/* Responsive */
@media (max-width: 767px) {
  .crimson-card {
    min-width: 290px;
    max-width: 290px;
    width: 290px;
    padding: 18px;
  }
  .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);
  }
  .spotlight-body {
    flex-direction: column;
    gap: 1.25rem;
  }
  .spotlight-card {
    padding: 1.75rem;
  }
}

/* ════════════════════════════════════════════
   RAZORPAY PAYMENT BUTTON CUSTOM OVERRIDES
   ════════════════════════════════════════════ */
.razorpay-payment-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 1rem 2rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  cursor: pointer !important;
  transition: all var(--transition) !important;
  border-radius: var(--radius-sm) !important;
  white-space: nowrap !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 400px !important;
  background: linear-gradient(135deg, var(--accent), #b5031f) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-glow) !important;
  animation: btnPulse 3s ease-in-out infinite !important;
  margin: 0 auto !important;
}

.razorpay-payment-button:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent)) !important;
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: var(--shadow-glow-strong), 0 0 50px var(--accent-glow) !important;
}

.razorpay-btn-container form {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* ════════════════════════════════════════════
   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, 10, 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(217, 4, 41, 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(217, 4, 41, 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: 600;
}

@media (max-width: 899px) {
  .purchase-toast {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem; /* Sits cleanly above the sticky mobile CTA */
    transform: translateY(150px) scale(0.9);
  }
}

