/* ============================================
   COMPLEX COLLECTIVE — Brand Stylesheet
   ============================================ */

/* --- CSS Variables --- */
:root {
  --deep-space: #0D0F1A;
  --midnight: #161829;
  --slate: #1E2035;
  --electric-violet: #8B5CF6;
  --vivid-violet: #A78BFA;
  --royal-blue: #3B82F6;
  --white: #FFFFFF;
  --silver: #C4C7D4;
  --muted: #6B7094;
  --dim: #3A3D52;
  --gradient: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --section-pad: 120px;
  --transition: 200ms ease-out;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--deep-space);
  color: var(--silver);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Container --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography Utilities --- */
.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric-violet);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--silver);
  max-width: 560px;
  line-height: 1.6;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(13, 15, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(30, 32, 53, 0.6);
  padding: 14px 0;
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo-icon {
  flex-shrink: 0;
}

.nav-logo-text .logo-accent {
  color: var(--electric-violet);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--gradient);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: opacity var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 15, 26, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--electric-violet);
}

/* ============================================
   INTRO SEQUENCE OVERLAY
   ============================================ */
.intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: var(--deep-space);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.intro-overlay.done {
  pointer-events: none;
}

.intro-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.intro-flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: var(--electric-violet);
  opacity: 0;
  pointer-events: none;
}

.intro-flash.fire {
  animation: flashBang 0.4s ease-out forwards;
}

@keyframes flashBang {
  0% { opacity: 0.8; }
  100% { opacity: 0; }
}

.intro-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Ring / brand mark animation */
.intro-ring {
  width: 180px;
  height: 180px;
  opacity: 0;
  transform: scale(0.3);
}

.intro-ring.animate {
  animation: ringAppear 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ringAppear {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.intro-ring-svg {
  width: 100%;
  height: 100%;
}

/* Orbit rings draw in */
.intro-orbit {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
}

.intro-ring.animate .intro-orbit-1 {
  animation: orbitDraw 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0s forwards;
}

.intro-ring.animate .intro-orbit-2 {
  animation: orbitDraw 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.15s forwards;
}

.intro-ring.animate .intro-orbit-3 {
  animation: orbitDraw 0.7s cubic-bezier(0.65, 0, 0.35, 1) 0.3s forwards;
}

@keyframes orbitDraw {
  to { stroke-dashoffset: 0; }
}

/* Center play circle pops in */
.intro-ring-inner {
  fill: var(--electric-violet);
  opacity: 0;
  transform-origin: center;
}

.intro-ring.animate .intro-ring-inner {
  animation: centerPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

@keyframes centerPop {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

/* Play triangle */
.intro-ring-dot {
  opacity: 0;
  transform-origin: center;
}

.intro-ring.animate .intro-ring-dot {
  animation: playPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

@keyframes playPop {
  0% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 1; transform: scale(1); }
}

/* Satellites pop in */
.intro-sat {
  opacity: 0;
  transform-origin: center;
}

.intro-ring.animate .intro-sat-1 {
  animation: satPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

.intro-ring.animate .intro-sat-1-glow {
  animation: satGlow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.7s forwards;
}

.intro-ring.animate .intro-sat-2 {
  animation: satPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.intro-ring.animate .intro-sat-2-glow {
  animation: satGlow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

.intro-ring.animate .intro-sat-3 {
  animation: satPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s forwards;
}

.intro-ring.animate .intro-sat-3-glow {
  animation: satGlow 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.85s forwards;
}

@keyframes satPop {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes satGlow {
  0% { opacity: 0; transform: scale(0); }
  100% { opacity: 0.15; transform: scale(1); }
}

/* Text slam */
.intro-text {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  overflow: hidden;
}

.intro-word {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  opacity: 0;
  display: inline-block;
}

.intro-word-1.animate {
  animation: slamFromLeft 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-word-2.animate {
  animation: slamFromRight 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slamFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-80px) scale(1.1);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

@keyframes slamFromRight {
  0% {
    opacity: 0;
    transform: translateX(80px) scale(1.1);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

/* Tagline */
.intro-tagline {
  font-size: clamp(13px, 1.5vw, 16px);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric-violet);
  opacity: 0;
  transform: translateY(10px);
}

.intro-tagline.animate {
  animation: fadeInUp 0.6s ease forwards;
}

/* Skip button */
.intro-skip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  background: none;
  border: 1px solid var(--dim);
  color: var(--muted);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.intro-skip:hover {
  border-color: var(--electric-violet);
  color: var(--white);
}

/* Wipe panels — cinematic exit */
.intro-wipe {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--deep-space);
  z-index: 8;
  pointer-events: none;
}

.intro-wipe-left {
  left: 0;
  transform: translateX(-100%);
}

.intro-wipe-right {
  right: 0;
  transform: translateX(100%);
}

.intro-wipe-left.animate {
  animation: wipeInLeft 0.3s ease-in forwards, wipeOutLeft 0.6s cubic-bezier(0.7, 0, 0.3, 1) 0.3s forwards;
}

.intro-wipe-right.animate {
  animation: wipeInRight 0.3s ease-in forwards, wipeOutRight 0.6s cubic-bezier(0.7, 0, 0.3, 1) 0.3s forwards;
}

@keyframes wipeInLeft {
  to { transform: translateX(0); }
}

@keyframes wipeInRight {
  to { transform: translateX(0); }
}

@keyframes wipeOutLeft {
  to { transform: translateX(-100%); }
}

@keyframes wipeOutRight {
  to { transform: translateX(100%); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Particle canvas */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Floating gradient orbs */
.hero-orbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--electric-violet);
  top: -10%;
  right: -5%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--royal-blue);
  bottom: -15%;
  left: -10%;
  animation-delay: -3s;
  animation-duration: 12s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--electric-violet);
  top: 40%;
  left: 50%;
  animation-delay: -6s;
  animation-duration: 14s;
  opacity: 0.15;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -40px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(15px, 30px) scale(1.02); }
}

/* Grid overlay */
.hero-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial fade on edges */
.hero-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: radial-gradient(ellipse at center, transparent 40%, var(--deep-space) 100%);
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--electric-violet);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-eyebrow.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  margin-right: 0.25em;
  vertical-align: top;
}

.hero-title .word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: none;
}

.hero-title .word .char.animate {
  animation: charReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--silver);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-subtitle.animate {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-actions.animate {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 2.5s forwards;
}

.hero-scroll span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--dim);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--electric-violet);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(139, 92, 246, 0.25);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Shimmer sweep on primary button */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  z-index: 2;
  pointer-events: none;
  animation: shimmerSweep 3s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0%, 100% { left: -100%; }
  50% { left: 150%; }
}

/* Pulse glow ring on primary button */
.btn-primary::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-sm) + 3px);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  animation: pulseGlow 2.5s ease-in-out infinite;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(139, 92, 246, 0.45);
}

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

.btn-primary:hover::after {
  animation: none;
  opacity: 0.6;
  transform: scale(1.06);
  transition: all 0.3s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--electric-violet);
  border: 1px solid var(--electric-violet);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.08);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid var(--dim);
  position: relative;
  overflow: hidden;
}

/* Border trace animation on ghost button */
.btn-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  pointer-events: none;
  background:
    linear-gradient(90deg, var(--electric-violet), var(--royal-blue)) top left / 0% 1px no-repeat,
    linear-gradient(180deg, var(--electric-violet), var(--royal-blue)) top right / 1px 0% no-repeat,
    linear-gradient(270deg, var(--royal-blue), var(--electric-violet)) bottom right / 0% 1px no-repeat,
    linear-gradient(0deg, var(--royal-blue), var(--electric-violet)) bottom left / 1px 0% no-repeat;
  transition: all 0.5s ease;
}

.btn-ghost:hover::before {
  background:
    linear-gradient(90deg, var(--electric-violet), var(--royal-blue)) top left / 100% 1px no-repeat,
    linear-gradient(180deg, var(--electric-violet), var(--royal-blue)) top right / 1px 100% no-repeat,
    linear-gradient(270deg, var(--royal-blue), var(--electric-violet)) bottom right / 100% 1px no-repeat,
    linear-gradient(0deg, var(--royal-blue), var(--electric-violet)) bottom left / 1px 100% no-repeat;
}

.btn-ghost:hover {
  color: var(--white);
  border-color: transparent;
}

/* ============================================
   SECTION — VSL VIDEO
   ============================================ */
.vsl-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.vsl-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--midnight);
  border: 1px solid var(--slate);
}

.vsl-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.05));
  transition: all 0.3s ease;
}

.vsl-placeholder:hover {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(59, 130, 246, 0.08));
}

.vsl-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--electric-violet);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.vsl-play-btn::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--electric-violet);
  opacity: 0.3;
  animation: playPulseRing 2s ease-in-out infinite;
}

@keyframes playPulseRing {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0; }
}

.vsl-placeholder:hover .vsl-play-btn {
  transform: scale(1.08);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.vsl-play-btn svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

.vsl-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--silver);
  letter-spacing: 0.02em;
}

.vsl-iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.vsl-context {
  margin-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.vsl-context .eyebrow {
  margin-bottom: 0;
  white-space: nowrap;
  padding-top: 2px;
}

.vsl-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.vsl-points li {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.vsl-points li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--electric-violet);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .vsl-context {
    flex-direction: column;
    gap: 12px;
  }

  .vsl-points {
    flex-direction: column;
    gap: 8px;
  }
}

/* ============================================
   SECTION — PROBLEM
   ============================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark {
  background: var(--deep-space);
}

.section-mid {
  background: var(--midnight);
}

/* Reveal animation base */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Problem section */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.problem-statements {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-item {
  padding: 20px 20px 20px 24px;
  border-left: 2px solid var(--dim);
  transition: border-color 0.4s ease;
}

.problem-item:hover {
  border-left-color: var(--electric-violet);
}

.problem-item h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.problem-item p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Sequential border light-up: cycles through items in order, then fades, repeats */
.problem-dead {
  border-left-color: var(--dim);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.problem-dead.visible {
  animation: borderFlashRed 4s ease-in-out infinite;
  animation-delay: calc(var(--seq) * 0.6s);
}

@keyframes borderFlashRed {
  0%, 100% {
    border-left-color: var(--dim);
    box-shadow: none;
  }
  15%, 30% {
    border-left-color: #EF4444;
    box-shadow: -4px 0 16px -4px rgba(239, 68, 68, 0.3);
  }
}

.problem-dead.visible h3 {
  animation: textFlashRed 4s ease-in-out infinite;
  animation-delay: calc(var(--seq) * 0.6s);
}

@keyframes textFlashRed {
  0%, 100% { color: var(--white); }
  15%, 30% { color: #EF4444; }
}

/* YouTube stays permanently lit */
.problem-alive {
  border-left-color: var(--electric-violet);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.problem-alive.visible {
  animation: borderGlowPurple 3s ease-in-out infinite;
}

@keyframes borderGlowPurple {
  0%, 100% {
    border-left-color: var(--electric-violet);
    box-shadow: -4px 0 12px -4px rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.03);
  }
  50% {
    border-left-color: var(--vivid-violet);
    box-shadow: -6px 0 24px -4px rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.06);
  }
}

/* ============================================
   SECTION — SOLUTION
   ============================================ */
.solution-header {
  text-align: center;
  margin-bottom: 64px;
}

.solution-header .section-subtitle {
  margin: 0 auto;
}

.solution-cards-wrapper {
  position: relative;
}

.solution-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.solution-cards-wrapper.active .solution-canvas {
  opacity: 1;
}

.solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.solution-card {
  background: var(--midnight);
  border: 1px solid var(--slate);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* When ANY card in the grid is hovered, fade out the siblings */
.solution-cards:hover .solution-card {
  opacity: 0.15;
  transform: scale(0.96);
  filter: blur(2px);
}

/* The hovered card stays fully visible and expands */
.solution-cards:hover .solution-card:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: blur(0);
  border-color: var(--electric-violet);
  box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(139, 92, 246, 0.3);
  z-index: 2;
}

.solution-cards:hover .solution-card:hover::before {
  opacity: 1;
}

/* Glow ring behind the hovered card */
.solution-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-md) + 2px);
  background: var(--gradient);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-cards:hover .solution-card:hover::after {
  opacity: 0.15;
  animation: cardRingPulse 2s ease-in-out infinite;
}

@keyframes cardRingPulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(1.02); }
}

/* Icon animates on hover */
.solution-cards:hover .solution-card:hover .solution-icon {
  background: rgba(139, 92, 246, 0.2);
  transform: scale(1.1);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.solution-cards:hover .solution-card:hover .solution-icon svg {
  animation: iconBounce 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iconBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.solution-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--electric-violet);
}

.solution-icon svg {
  width: 24px;
  height: 24px;
}

.solution-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.6;
}

/* ============================================
   SECTION — HOW IT WORKS
   ============================================ */
.steps-header {
  text-align: center;
  margin-bottom: 80px;
}

.steps-header .section-subtitle {
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  position: relative;
}

.step {
  text-align: center;
}

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--midnight);
  border: 2px solid var(--slate);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 28px;
  font-weight: 800;
  color: var(--muted);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

/* Connector lines between steps */
.step-connector {
  display: flex;
  align-items: center;
  height: 80px;
  padding: 0 0;
}

.connector-line {
  width: 100%;
  min-width: 40px;
  height: 2px;
  background: var(--slate);
  position: relative;
  border-radius: 1px;
}

.connector-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--electric-violet);
  border-radius: 1px;
  transition: width 0.5s ease;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

/* Active states applied by JS */
.step.step-active .step-number {
  border-color: var(--electric-violet);
  color: var(--electric-violet);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
  background: rgba(139, 92, 246, 0.08);
}

.step.step-filled .step-number {
  border-color: var(--electric-violet);
  background: var(--electric-violet);
  color: var(--white);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.25);
}

.connector-fill.filled {
  width: 100%;
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.step p {
  font-size: 16px;
  color: var(--silver);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ============================================
   SECTION — RESULTS
   ============================================ */
.results-header {
  text-align: center;
  margin-bottom: 64px;
}

.results-header .section-subtitle {
  margin: 0 auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.result-stat {
  background: var(--midnight);
  border: 1px solid var(--slate);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s ease;
}

.result-stat:hover {
  border-color: var(--electric-violet);
  transform: translateY(-2px);
}

.result-number {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 8px;
}

.result-label {
  font-size: 16px;
  color: var(--silver);
}

.result-context {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Testimonial */
.testimonial {
  background: var(--midnight);
  border: 1px solid var(--slate);
  border-radius: var(--radius-md);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 32px;
  font-size: 80px;
  color: var(--electric-violet);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial blockquote {
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--electric-violet);
}

.testimonial-role {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================
   SECTION — WHO THIS IS FOR
   ============================================ */
.qualify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.qualify-col h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.qualify-col h3 .icon-yes {
  color: #22C55E;
}

.qualify-col h3 .icon-no {
  color: #EF4444;
}

.qualify-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qualify-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: var(--silver);
  line-height: 1.5;
}

.qualify-list .check {
  color: #22C55E;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.qualify-list .cross {
  color: #EF4444;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   SECTION — ABOUT / FOUNDER
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--slate);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
}

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  font-size: 17px;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-text p strong {
  color: var(--white);
  font-weight: 600;
}

/* ============================================
   SECTION — FAQ
   ============================================ */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--midnight);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--electric-violet);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--muted);
  transition: all 0.3s ease;
}

.faq-icon::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.faq-icon::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--silver);
  font-size: 16px;
  line-height: 1.7;
}

/* ============================================
   SECTION — FINAL CTA
   ============================================ */
.cta-section {
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--electric-violet);
  opacity: 0.06;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content .section-title {
  margin-bottom: 16px;
}

.cta-content .section-subtitle {
  margin: 0 auto 40px;
}

.calendly-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--midnight);
  border: 1px solid var(--slate);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

/* Prevent Calendly iframe from hijacking page scroll */
.calendly-wrapper iframe {
  max-height: 700px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--slate);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 15px;
  color: var(--muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 10px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--electric-violet);
}

.footer-bottom {
  border-top: 1px solid var(--slate);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--dim);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 80px;
  }

  .problem-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-cards,
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-title {
    font-size: clamp(36px, 9vw, 56px);
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .solution-cards,
  .steps,
  .results-grid,
  .qualify-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .testimonial {
    padding: 32px 24px;
  }

  .orb-1 { width: 300px; height: 300px; }
  .orb-2 { width: 250px; height: 250px; }
  .orb-3 { width: 200px; height: 200px; }
}
