/* ==========================================================================
   BRUNO MICHAEL - CLUB DO DELAY | LANDING PAGE
   Design System & High-Performance Modern CSS (Purple Edition)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@500;700;800&family=JetBrains+Mono:wght@400;500;700&display=swap');

:root {
  /* Official Club do Delay Palette: Deep Obsidian Black & Royal Purple */
  --bg-primary: #000000;
  --bg-secondary: #080210;
  --bg-tertiary: #110521;
  --bg-card: rgba(20, 8, 40, 0.75);
  --bg-card-hover: rgba(30, 14, 60, 0.88);
  --bg-glass: rgba(10, 3, 20, 0.82);

  /* Primary Brand Accents: Purple / Violet / Magenta */
  --accent-purple: #8B5CF6;
  --accent-purple-light: #A78BFA;
  --accent-purple-bright: #C084FC;
  --accent-purple-dark: #6D28D9;
  --accent-purple-glow: rgba(139, 92, 246, 0.42);

  --accent-magenta: #D946EF;
  --accent-magenta-glow: rgba(217, 70, 239, 0.35);

  --accent-cyan: #38BDF8;
  --accent-cyan-glow: rgba(56, 189, 248, 0.35);

  /* Functional Accents */
  --accent-green: #10B981;
  --accent-green-bright: #34D399;
  --accent-green-glow: rgba(16, 185, 129, 0.35);

  --accent-danger: #F43F5E;
  --accent-danger-glow: rgba(244, 63, 94, 0.35);

  --text-primary: #FFFFFF;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-purple: rgba(139, 92, 246, 0.45);
  --border-active: rgba(168, 85, 247, 0.65);
  --border-magenta: rgba(217, 70, 239, 0.4);

  /* Typography */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Motion */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s var(--ease-smooth);
  --transition-slow: 0.8s var(--ease-smooth);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #271C4A;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-purple);
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 15%, var(--accent-purple-light) 60%, var(--accent-magenta) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

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

.mono {
  font-family: var(--font-mono);
}

/* Glowing Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid var(--border-purple);
  color: var(--accent-purple-light);
  box-shadow: 0 0 20px var(--accent-purple-glow);
  backdrop-filter: blur(10px);
}

.badge.magenta {
  background: rgba(217, 70, 239, 0.12);
  border-color: var(--border-magenta);
  color: #F0ABFC;
  box-shadow: 0 0 20px var(--accent-magenta-glow);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-purple-light);
  border-radius: 50%;
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.8);
  }
  50% {
    transform: scale(1.3);
    opacity: 0.85;
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0);
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 14px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 32px var(--accent-purple-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 42px rgba(139, 92, 246, 0.65);
  background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(139, 92, 246, 0.12);
  border-color: var(--border-purple);
  color: #FFF;
  transform: translateY(-2px);
}

.btn-pulse {
  animation: btnGlow 3s infinite alternate ease-in-out;
}

@keyframes btnGlow {
  0% {
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.35);
  }
  100% {
    box-shadow: 0 14px 45px rgba(139, 92, 246, 0.75);
  }
}

/* Sound Toggle Button */
.sound-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.sound-toggle-btn.active {
  background: rgba(139, 92, 246, 0.16);
  border-color: var(--border-purple);
  color: var(--accent-purple-light);
  box-shadow: 0 0 15px var(--accent-purple-glow);
}

.sound-toggle-btn:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: #FFF;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition-medium);
  background: rgba(8, 5, 18, 0.65);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 5, 18, 0.95);
  border-bottom: 1px solid var(--border-purple);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #FFF;
}

.nav-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  box-shadow: 0 0 14px var(--accent-purple-glow);
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.nav-brand:hover .nav-avatar {
  transform: scale(1.06);
}

.nav-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav-subtitle {
  font-size: 0.72rem;
  color: var(--accent-purple-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-purple);
  transition: width var(--transition-fast);
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   LIVE MARQUEE TICKER (PURPLE CYBER THEME)
   ========================================================================== */
.live-ticker-wrap {
  width: 100%;
  background: rgba(14, 9, 31, 0.95);
  border-top: 1px solid rgba(139, 92, 246, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}

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

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-secondary);
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.ticker-item strong {
  color: #FFF;
}

.ticker-tag {
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.ticker-tag.purple {
  background: rgba(139, 92, 246, 0.18);
  color: var(--accent-purple-light);
  border: 1px solid var(--border-purple);
}

.ticker-tag.magenta {
  background: rgba(217, 70, 239, 0.18);
  color: #F0ABFC;
  border: 1px solid var(--border-magenta);
}

/* ==========================================================================
   HERO SECTION (CLEAN STANDARD PURPLE PALETTE BACKGROUND)
   ========================================================================== */
/* Clean Deep Black to Royal Purple Gradient Background (No Grids) */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 160px;
  padding-bottom: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000000;
}

.hero-clean-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: 
    radial-gradient(ellipse 95% 65% at 50% -5%, rgba(139, 92, 246, 0.45) 0%, rgba(88, 28, 135, 0.3) 40%, rgba(26, 7, 51, 0.85) 70%, #000000 100%),
    linear-gradient(180deg, #180430 0%, #0B0217 50%, #000000 100%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.hero-badge-wrap {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 4.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 38px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(139, 92, 246, 0.12);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--accent-purple-light);
  flex-shrink: 0;
}

/* Hero Video Mockup Frame with Purple Glow */
.hero-video-box {
  margin-top: 52px;
  position: relative;
  border-radius: 22px;
  padding: 8px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.5), rgba(217, 70, 239, 0.3), rgba(255, 255, 255, 0.06));
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.85), 0 0 50px rgba(139, 92, 246, 0.28);
  transform: perspective(1000px) rotateX(2deg);
  transition: transform var(--transition-slow);
}

.hero-video-box:hover {
  transform: perspective(1000px) rotateX(0deg);
}

.hero-video-inner {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.hero-video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   SIMULATOR 2.0 (DUAL-SCREEN PURPLE THEME)
   ========================================================================== */
.simulator-section {
  padding: 110px 0;
  position: relative;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.8vw, 3rem);
  margin-bottom: 18px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* ==========================================================================
   STORY SIMULATOR 3.0 (RESPONSIVE 16:9 - ZERO CLIPPING)
   ========================================================================== */
.story-simulator-box {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-purple);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 45px rgba(139, 92, 246, 0.22);
  backdrop-filter: blur(20px);
  box-sizing: border-box;
}

/* 3 Navigation Tabs - Flexible & Responsive */
.story-step-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.story-tab-btn {
  background: rgba(14, 9, 31, 0.85);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 80px;
  color: var(--text-secondary);
  box-sizing: border-box;
}

.story-tab-btn:hover {
  background: rgba(30, 16, 62, 0.9);
  border-color: var(--border-purple);
  transform: translateY(-2px);
}

.story-tab-btn.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.32), rgba(217, 70, 239, 0.18));
  border-color: var(--accent-purple-bright);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.45);
  color: #FFF;
}

.tab-step-icon {
  font-size: 1.35rem;
  line-height: 1;
  margin-bottom: 2px;
}

.tab-step-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-tab-btn.step-1 .tab-step-tag { color: var(--accent-cyan); }
.story-tab-btn.step-2 .tab-step-tag { color: var(--accent-green-bright); }
.story-tab-btn.step-3 .tab-step-tag { color: var(--accent-danger); }

.tab-step-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFF;
}

.tab-step-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 2px;
}

.tab-step-badge.neutral {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
}

.tab-step-badge.green {
  background: rgba(16, 185, 129, 0.18);
  color: var(--accent-green-bright);
}

.tab-step-badge.red {
  background: rgba(244, 63, 94, 0.18);
  color: var(--accent-danger);
}

/* Viewport - 16:9 Aspect Ratio (ZERO CROPPING on any screen) */
.story-viewport {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-purple);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85);
  background: #000;
  box-sizing: border-box;
}

.story-scene {
  display: none;
  position: relative;
  width: 100%;
  animation: sceneFadeIn 0.35s var(--ease-smooth) forwards;
}

.story-scene.active {
  display: block;
}

.scene-media-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* Universal 16:9 widescreen */
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scene-media-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ABSOLUTELY NOTHING GETS CUT OFF */
  object-position: center;
  background: #000;
}

/* Headline Overlay on top of Media (Video/GIF/Screenshots) */
.scene-media-headline {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: rgba(8, 5, 20, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.85), 0 0 20px rgba(139, 92, 246, 0.25);
  border-radius: 999px;
  padding: 8px 22px;
  max-width: 92%;
  pointer-events: none;
  transition: all 0.3s ease;
}

.scene-media-headline .headline-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.headline-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.headline-indicator.red {
  background: #EF4444;
  box-shadow: 0 0 10px #EF4444, 0 0 18px rgba(239, 68, 68, 0.75);
  animation: blinkIndicator 1.3s infinite ease-in-out;
}

.headline-indicator.green {
  background: #10B981;
  box-shadow: 0 0 10px #10B981, 0 0 18px rgba(16, 185, 129, 0.75);
  animation: blinkIndicator 1.3s infinite ease-in-out;
}

.headline-indicator.yellow {
  background: #F59E0B;
  box-shadow: 0 0 10px #F59E0B, 0 0 16px rgba(245, 158, 11, 0.6);
  animation: blinkIndicator 1.8s infinite ease-in-out;
}

@keyframes blinkIndicator {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.8);
  }
}

@media (max-width: 640px) {
  .scene-media-headline {
    top: 9px;
    padding: 6px 14px;
    gap: 7px;
    max-width: 94%;
  }

  .scene-media-headline .headline-text {
    font-size: 0.70rem;
    letter-spacing: 0.03em;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
  }
}

/* Paused Overlay on Step 1 Video */
.video-paused-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  z-index: 6;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.video-paused-overlay:hover .pause-play-icon {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(217, 70, 239, 0.95);
}

.video-paused-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  display: none !important;
}

.pause-play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-magenta));
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.6);
  padding-left: 3px;
  animation: pulsePlayIcon 2.2s infinite ease-in-out;
}

@keyframes pulsePlayIcon {
  0%, 100% { transform: scale(1); box-shadow: 0 0 18px rgba(139, 92, 246, 0.5); }
  50% { transform: scale(1.08); box-shadow: 0 0 30px rgba(217, 70, 239, 0.85); }
}

.pause-play-text {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFF;
  background: rgba(0, 0, 0, 0.85);
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Scene Caption Details Bar with Integrated Header Row */
.scene-caption-bar {
  padding: 16px 20px;
  background: rgba(14, 9, 31, 0.96);
  border-top: 1px solid var(--border-purple);
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
}

.scene-caption-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.scene-hud-badge {
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.scene-hud-badge.cyan {
  background: rgba(6, 182, 212, 0.22);
  border: 1px solid var(--accent-cyan);
  color: #FFF;
}

.scene-hud-badge.green {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid var(--accent-green-bright);
  color: #FFF;
  box-shadow: 0 0 15px var(--accent-green-glow);
}

.scene-hud-badge.danger {
  background: rgba(244, 63, 94, 0.25);
  border: 1px solid var(--accent-danger);
  color: #FFF;
  box-shadow: 0 0 15px var(--accent-danger-glow);
}

.scene-outcome-pill {
  padding: 5px 14px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

.scene-outcome-pill.green {
  background: rgba(16, 185, 129, 0.2);
  color: var(--accent-green-bright);
  border: 1px solid var(--accent-green-bright);
}

.scene-outcome-pill.red {
  background: rgba(244, 63, 94, 0.2);
  color: var(--accent-danger);
  border: 1px solid var(--accent-danger);
}

.scene-outcome-pill.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.scene-caption-text h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  color: #FFF;
}

.scene-caption-text p {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.45;
}

/* Simulator Control Footer */
.story-controls-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.story-controls-footer #btn-run-story {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 12px;
}

.story-controls-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.story-progress-line {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}

.story-progress-bar {
  height: 100%;
  width: 33.33%;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-magenta));
  transition: width 0.4s ease;
}

.story-nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.story-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 9px;
  padding: 6px 12px;
  color: #FFF;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.story-nav-btn:hover {
  background: rgba(139, 92, 246, 0.22);
  border-color: var(--border-purple);
  color: #FFF;
}

/* Simulator Responsive Breakpoints */
@media (max-width: 768px) {
  .story-simulator-box {
    padding: 16px 12px;
    border-radius: 18px;
  }

  .story-step-tabs {
    gap: 6px;
    margin-bottom: 14px;
  }

  .story-tab-btn {
    padding: 8px 4px;
    min-height: 66px;
    border-radius: 10px;
    gap: 2px;
  }

  .tab-step-icon {
    font-size: 1.15rem;
  }

  .tab-step-tag {
    font-size: 0.65rem;
  }

  .tab-step-title {
    font-size: 0.76rem;
  }

  .tab-step-badge {
    font-size: 0.6rem;
    padding: 1px 6px;
  }

  .scene-caption-bar {
    padding: 12px 14px;
    gap: 8px;
  }

  .scene-hud-badge {
    font-size: 0.68rem;
    padding: 4px 10px;
  }

  .scene-outcome-pill {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .scene-caption-text h4 {
    font-size: 0.92rem;
  }

  .scene-caption-text p {
    font-size: 0.78rem;
    line-height: 1.38;
  }

  .story-controls-footer #btn-run-story {
    padding: 12px 14px;
    font-size: 0.86rem;
  }
}

@media (max-width: 480px) {
  .story-simulator-box {
    padding: 12px 8px;
  }

  .story-tab-btn {
    padding: 6px 2px;
    min-height: 58px;
  }

  .tab-step-icon {
    font-size: 1rem;
  }

  .tab-step-tag {
    font-size: 0.6rem;
  }

  .tab-step-title {
    font-size: 0.7rem;
  }

  .tab-step-badge {
    display: none;
  }

  .story-controls-footer #btn-run-story {
    font-size: 0.8rem;
    padding: 11px 8px;
  }

  .story-nav-btn {
    padding: 5px 8px;
    font-size: 0.74rem;
  }
}

/* ==========================================================================
   DELIVERABLES (HOLOGRAPHIC 3D TILT CARDS IN PURPLE)
   ========================================================================== */
.deliverables-section {
  padding: 120px 0;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform var(--transition-medium), border-color var(--transition-medium), box-shadow var(--transition-medium);
}

/* Specular Light Sheen */
.feature-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

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

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-active);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(139, 92, 246, 0.22);
}

.feature-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(217, 70, 239, 0.1));
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-purple-light);
  font-size: 1.6rem;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.25);
}

.feature-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feature-desc {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* ==========================================================================
   PARALLAX IMMERSIVE BREAK SECTION (PURPLE OVERLAY)
   ========================================================================== */
.parallax-break {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 110px 0;
  margin: 40px 0;
}

.parallax-break-bg {
  position: absolute;
  top: -25%;
  left: 0;
  width: 100%;
  height: 150%;
  z-index: 1;
  pointer-events: none;
}

.parallax-break-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.32;
  filter: contrast(1.15) brightness(0.85);
}

.parallax-break-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 9, 31, 0.65) 0%, var(--bg-primary) 96%);
  z-index: 2;
}

.parallax-break-content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  text-align: center;
  background: rgba(14, 9, 31, 0.82);
  border: 1px solid var(--border-purple);
  border-radius: 26px;
  padding: 55px 44px;
  backdrop-filter: blur(22px);
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.85), 0 0 45px rgba(139, 92, 246, 0.25);
}

.parallax-break-content h3 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 20px;
}

.parallax-break-content p {
  color: var(--text-secondary);
  font-size: 1.12rem;
  margin-bottom: 34px;
}

/* ==========================================================================
   DISCORD LIVE ROOM SPOTLIGHT
   ========================================================================== */
.discord-section {
  padding: 110px 0;
  position: relative;
}

.discord-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 55px;
  align-items: center;
}

.discord-mockup-wrap {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-purple);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.85), 0 0 45px var(--accent-purple-glow);
  transform: perspective(1000px) rotateY(-4deg);
  transition: transform var(--transition-slow);
}

.discord-mockup-wrap:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.discord-mockup-img {
  width: 100%;
  height: auto;
  display: block;
}

.discord-info-header .badge {
  margin-bottom: 16px;
}

.discord-info-title {
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  margin-bottom: 20px;
}

.discord-info-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.discord-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.discord-perk {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--text-primary);
}

.discord-perk-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.16);
  color: var(--accent-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ==========================================================================
   YOUTUBE REAL PROOF SHOWCASE
   ========================================================================== */
.youtube-showcase {
  padding: 110px 0;
  position: relative;
  background: var(--bg-secondary);
}

.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), 0 0 28px rgba(139, 92, 246, 0.3);
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
  overflow: hidden;
}

.video-thumb-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.06);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.7);
  transition: transform var(--transition-fast);
}

.video-card:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.18);
}

.video-info {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.video-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  margin-top: auto;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   AUTHORITY SECTION WITH ANIMATED COUNTERS
   ========================================================================== */
.authority-section {
  padding: 120px 0;
  position: relative;
}

.authority-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.authority-image-box {
  position: relative;
}

.authority-image-wrapper {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--border-purple);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 45px var(--accent-purple-glow);
}

.authority-image-wrapper img {
  width: 100%;
  display: block;
  filter: contrast(1.08);
  transition: transform var(--transition-slow);
}

.authority-image-wrapper:hover img {
  transform: scale(1.03);
}

.authority-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-secondary);
  border: 2px solid var(--accent-purple);
  border-radius: 18px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.exp-years {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--accent-purple-bright);
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
}

.authority-content .badge {
  margin-bottom: 16px;
}

.authority-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 24px;
}

.authority-text {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.authority-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
}

.stat-item h4 {
  font-size: 2.1rem;
  color: var(--accent-purple-bright);
  margin-bottom: 6px;
  font-family: var(--font-mono);
}

.stat-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   SOCIAL PROOF & RESULTS CAROUSEL (DISCORD PRINTS)
   ========================================================================== */
.proof-section {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at 50% 15%, rgba(139, 92, 246, 0.1) 0%, var(--bg-primary) 70%);
}

.proof-metrics-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 45px;
}

.proof-metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(22, 11, 46, 0.75);
  border: 1px solid var(--border-purple);
  font-size: 0.92rem;
  color: #E2E8F0;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(139, 92, 246, 0.15);
}

.proof-metric-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}

.proof-metric-dot.green {
  background: var(--accent-green-bright);
  box-shadow: 0 0 12px var(--accent-green-bright);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

.proof-metric-icon {
  font-size: 1.1rem;
}

.proof-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 10, 42, 0.88);
  border: 1px solid var(--border-purple);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 20px rgba(139, 92, 246, 0.35);
  backdrop-filter: blur(12px);
}

.carousel-nav-btn.prev {
  left: -26px;
}

.carousel-nav-btn.next {
  right: -26px;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
  border-color: var(--accent-purple-bright);
  transform: translateY(-50%) scale(1.12);
  box-shadow: 0 14px 36px rgba(139, 92, 246, 0.65);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.proof-carousel-viewport {
  overflow: hidden;
  border-radius: 24px;
  cursor: grab;
  user-select: none;
  padding: 18px 4px 26px;
}

.proof-carousel-viewport:active {
  cursor: grabbing;
}

.proof-carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  gap: 24px;
}

.proof-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
  display: flex;
}

.proof-card {
  width: 100%;
  background: linear-gradient(180deg, rgba(24, 12, 50, 0.88) 0%, rgba(10, 4, 22, 0.96) 100%);
  border: 1px solid var(--border-purple);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 25px rgba(139, 92, 246, 0.15);
  position: relative;
  cursor: pointer;
}

.proof-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-purple-bright);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.85), 0 0 35px rgba(139, 92, 246, 0.4);
}

.proof-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(8, 3, 18, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discord-channel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
  color: #A1A1AA;
}

.hash-icon {
  color: var(--accent-purple-light);
  font-weight: 700;
  font-size: 1rem;
}

.proof-badge {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-badge.green {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid var(--accent-green);
  color: var(--accent-green-bright);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.28);
}

.proof-badge.purple {
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid var(--accent-purple);
  color: var(--accent-purple-light);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.28);
}

.proof-badge.magenta {
  background: rgba(217, 70, 239, 0.18);
  border: 1px solid var(--accent-magenta);
  color: #F0ABFC;
  box-shadow: 0 0 12px rgba(217, 70, 239, 0.28);
}

.proof-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #0B0C10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
  display: block;
}

.proof-card:hover .proof-card-media img {
  transform: scale(1.05);
}

.proof-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 4, 22, 0.65);
  backdrop-filter: blur(4px);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.proof-card:hover .proof-card-overlay {
  opacity: 1;
}

.zoom-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-dark));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.65);
  transform: translateY(8px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-card:hover .zoom-btn {
  transform: translateY(0);
}

.proof-card-footer {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(12, 6, 26, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-avatar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.user-avatar-dot.green {
  background: var(--accent-green-bright);
  box-shadow: 0 0 8px var(--accent-green);
}

.user-avatar-dot.purple {
  background: var(--accent-purple-light);
  box-shadow: 0 0 8px var(--accent-purple);
}

.user-avatar-dot.magenta {
  background: var(--accent-magenta);
  box-shadow: 0 0 8px var(--accent-magenta);
}

.proof-username {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 700;
  color: #FFFFFF;
}

.proof-gain-tag {
  font-size: 0.82rem;
  color: var(--accent-green-bright);
  font-weight: 600;
  font-family: var(--font-mono);
}

.proof-carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

.proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.22);
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.proof-dot:hover {
  background: rgba(139, 92, 246, 0.7);
}

.proof-dot.active {
  width: 34px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-magenta));
  box-shadow: 0 0 14px var(--accent-purple-glow);
}

.proof-carousel-hint {
  text-align: center;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   PROOF LIGHTBOX ZOOM MODAL
   ========================================================================== */
.proof-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 1, 8, 0.93);
  backdrop-filter: blur(14px);
}

.lightbox-container {
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 1050px;
  max-height: 90vh;
  background: #0E071D;
  border: 1px solid var(--border-purple);
  border-radius: 22px;
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.95), 0 0 60px rgba(139, 92, 246, 0.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.93);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.proof-lightbox.active .lightbox-container {
  transform: scale(1);
}

.lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(18, 9, 38, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lightbox-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

.lightbox-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lightbox-close-btn:hover {
  background: rgba(244, 63, 94, 0.3);
  border-color: var(--accent-danger);
  transform: scale(1.08);
}

.lightbox-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-grow: 1;
  overflow: hidden;
  max-height: calc(90vh - 130px);
  background: #080312;
}

.lightbox-image-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}

#lightbox-img {
  max-width: 100%;
  max-height: calc(90vh - 160px);
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.85);
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(20, 10, 42, 0.85);
  border: 1px solid var(--border-purple);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 10;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
}

.lightbox-nav-btn.prev {
  left: 18px;
}

.lightbox-nav-btn.next {
  right: 18px;
}

.lightbox-nav-btn:hover {
  background: var(--accent-purple);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 25px rgba(139, 92, 246, 0.7);
}

.lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: rgba(18, 9, 38, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.lightbox-counter {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--accent-purple-light);
}

kbd {
  background: rgba(255, 255, 255, 0.12);
  padding: 2px 7px;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   PRICING / OFFER SECTION
   ========================================================================== */
.pricing-section {
  padding: 120px 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(139, 92, 246, 0.12) 0%, var(--bg-primary) 70%);
}

.pricing-card-box {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(22, 14, 46, 0.96), rgba(8, 5, 18, 0.98));
  border: 1px solid var(--border-purple);
  padding: 52px 46px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.92), 0 0 60px rgba(139, 92, 246, 0.28);
  text-align: center;
}

.popular-tag {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-magenta));
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 8px 24px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 25px rgba(139, 92, 246, 0.6);
}

.pricing-title {
  font-size: 2.3rem;
  margin-bottom: 12px;
}

.pricing-subtitle {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 32px;
}

.price-wrapper {
  margin-bottom: 36px;
}

.price-anchor {
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.price-highlight {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  color: #FFF;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  line-height: 1;
  margin: 8px 0;
}

.price-highlight .currency {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-purple-light);
}

.price-highlight .price-amount {
  color: #FFF;
  letter-spacing: -0.02em;
}

.price-highlight .price-cents {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-purple-light);
}

.price-recurrence {
  font-size: 0.95rem;
  color: var(--accent-green-bright);
  font-weight: 600;
  margin-top: 4px;
}

.checklist {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.02rem;
  color: #E2E8F0;
}

.checklist-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.2);
  color: var(--accent-purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  width: 100%;
  font-size: 1.15rem;
  padding: 20px;
}

.guarantee-box {
  margin-top: 36px;
  padding-top: 30px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.guarantee-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  border: 1px solid var(--border-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple-light);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.guarantee-text h5 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.guarantee-text p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.45;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  padding: 110px 0;
  position: relative;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item.active {
  border-color: var(--border-active);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  text-align: left;
  color: #FFF;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--accent-purple-light);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-medium);
  padding: 0 26px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  padding-bottom: 22px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 60px 0 40px;
  background: #040209;
  border-top: 1px solid var(--border-purple);
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

.footer-disclaimer {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid rgba(139, 92, 246, 0.1);
  padding-top: 24px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  color: #64748B;
}


/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST OPTIMIZATION)
   ========================================================================== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .discord-grid, .authority-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .discord-mockup-wrap {
    transform: none;
  }
  .proof-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
  .carousel-nav-btn.prev {
    left: -12px;
  }
  .carousel-nav-btn.next {
    right: -12px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .dual-screen-stage {
    grid-template-columns: 1fr;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .video-cards-grid {
    grid-template-columns: 1fr;
  }
  .hero-trust-bar {
    gap: 18px;
  }
  .authority-experience-badge {
    position: static;
    margin-top: 16px;
  }
  .authority-stats-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .pricing-card-box {
    padding: 40px 22px;
  }
  .price-highlight {
    font-size: 2.8rem;
  }
  .proof-slide {
    flex: 0 0 100%;
  }
  .carousel-nav-btn {
    width: 44px;
    height: 44px;
  }
  .carousel-nav-btn.prev {
    left: -6px;
  }
  .carousel-nav-btn.next {
    right: -6px;
  }
  .proof-metrics-row {
    gap: 10px;
    margin-bottom: 30px;
  }
  .proof-metric-pill {
    font-size: 0.84rem;
    padding: 8px 14px;
    width: 100%;
    justify-content: center;
  }
  .lightbox-container {
    width: 96%;
    max-height: 94vh;
  }
  .lightbox-header {
    padding: 12px 16px;
  }
  .lightbox-body {
    padding: 10px;
  }
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
  }
  .lightbox-nav-btn.prev {
    left: 8px;
  }
  .lightbox-nav-btn.next {
    right: 8px;
  }
  .lightbox-footer {
    padding: 10px 16px;
  }
  .lightbox-tip {
    display: none;
  }
}

/* ==========================================================================
   LENIS SMOOTH SCROLL INTEGRATION
   ========================================================================== */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

/* ==========================================================================
   TRUE CASCADE / STAGGER SCROLL REVEAL SYSTEM (FADE IN & FADE OUT)
   ========================================================================== */
.cascade-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Standalone element in view */
.cascade-standalone.in-view,
.cascade-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Standalone element out of view */
.cascade-standalone.out-view,
.cascade-item.out-view {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease-out,
              transform 0.35s ease-out;
  transition-delay: 0s !important;
}

/* Container-driven cascade */
.cascade-container.in-view .cascade-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--stagger-delay, 0.08s);
}

.cascade-container.out-view .cascade-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease-out,
              transform 0.3s ease-out;
  transition-delay: 0s !important;
}

/* Fallback / Nth-child cascade delays if CSS var is not set */
.cascade-container.in-view .cascade-item:nth-child(1) { transition-delay: var(--stagger-delay, 0.06s); }
.cascade-container.in-view .cascade-item:nth-child(2) { transition-delay: var(--stagger-delay, 0.18s); }
.cascade-container.in-view .cascade-item:nth-child(3) { transition-delay: var(--stagger-delay, 0.30s); }
.cascade-container.in-view .cascade-item:nth-child(4) { transition-delay: var(--stagger-delay, 0.42s); }
.cascade-container.in-view .cascade-item:nth-child(5) { transition-delay: var(--stagger-delay, 0.54s); }
.cascade-container.in-view .cascade-item:nth-child(6) { transition-delay: var(--stagger-delay, 0.66s); }

/* Interactive Hover Effects (Hardware-Accelerated CSS) */
.feature-card, .video-card {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.3s ease;
}

.feature-card:hover, .video-card:hover {
  transform: translateY(-6px) !important;
  border-color: var(--border-active);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .cascade-item,
  .cascade-standalone,
  .cascade-item.in-view,
  .cascade-item.out-view,
  .cascade-container.in-view .cascade-item,
  .cascade-container.out-view .cascade-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
