/* ============================================
   GLADHUB KEY SYSTEM - CYBERNETIC NEON NOIR
   ============================================
   A cinematic, immersive experience
   Blade Runner meets Tron meets Cyberpunk 2077
   ============================================ */

/* ============================================
   0. FONT IMPORTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Delius&display=swap');

/* ============================================
   SMOOTH SCROLLING & PERFORMANCE
   ============================================ */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* GPU acceleration for smoother animations */
.getkey-card,
.provider-card,
.verification-box,
.btn,
.glow-orb {
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* ============================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================ */
:root {
  /* VOID BACKGROUNDS - Deep space darkness */
  --void-deep: #000308;
  --void-medium: #020617;
  --void-surface: #0a1628;
  --void-elevated: #111d36;
  --void-card: #0d1a2d;
  
  /* NEON SPECTRUM - Electric light */
  --neon-cyan: #00f5ff;
  --neon-cyan-dim: #00c4cc;
  --neon-cyan-glow: rgba(0, 245, 255, 0.5);
  --neon-cyan-subtle: rgba(0, 245, 255, 0.1);
  --neon-teal: #00d4aa;
  --neon-teal-glow: rgba(0, 212, 170, 0.5);
  --neon-purple: #a855f7;
  --neon-purple-dim: #9333ea;
  --neon-purple-glow: rgba(168, 85, 247, 0.5);
  --neon-purple-subtle: rgba(168, 85, 247, 0.1);
  --neon-pink: #f472b6;
  --neon-pink-glow: rgba(244, 114, 182, 0.5);
  --neon-blue: #3b82f6;
  --neon-blue-glow: rgba(59, 130, 246, 0.5);
  --neon-red: #ef4444;
  --neon-red-glow: rgba(239, 68, 68, 0.5);
  --neon-yellow: #facc15;
  --neon-yellow-glow: rgba(250, 204, 21, 0.5);
  --neon-green: #22c55e;
  --neon-green-glow: rgba(34, 197, 94, 0.5);
  --neon-orange: #f97316;
  --neon-orange-glow: rgba(249, 115, 22, 0.5);
  
  /* GLASS EFFECTS */
  --glass-bg: rgba(10, 22, 40, 0.7);
  --glass-bg-hover: rgba(13, 26, 45, 0.85);
  --glass-bg-solid: rgba(10, 22, 40, 0.9);
  --glass-border: rgba(0, 245, 255, 0.1);
  --glass-border-hover: rgba(0, 245, 255, 0.3);
  --glass-border-active: rgba(0, 245, 255, 0.5);
  --glass-blur: 20px;
  --glass-blur-heavy: 40px;
  
  /* TEXT HIERARCHY */
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-disabled: #475569;
  --text-accent: var(--neon-cyan);
  
  /* GRADIENTS */
  --gradient-aurora: linear-gradient(135deg, #00f5ff 0%, #a855f7 50%, #f472b6 100%);
  --gradient-aurora-reverse: linear-gradient(135deg, #f472b6 0%, #a855f7 50%, #00f5ff 100%);
  --gradient-cyber: linear-gradient(90deg, #00f5ff 0%, #a855f7 100%);
  --gradient-fire: linear-gradient(90deg, #f97316 0%, #ef4444 50%, #f472b6 100%);
  --gradient-ice: linear-gradient(90deg, #3b82f6 0%, #00f5ff 50%, #00d4aa 100%);
  --gradient-void: linear-gradient(180deg, #000308 0%, #020617 40%, #0a1628 100%);
  --gradient-void-radial: radial-gradient(ellipse at center, #0a1628 0%, #020617 50%, #000308 100%);
  --gradient-card: linear-gradient(135deg, rgba(0, 245, 255, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
  
  /* TYPOGRAPHY */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-cute: 'Delius', cursive;
  
  /* FONT SIZES - Fluid typography */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-2xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-3xl: clamp(1.5rem, 1.25rem + 1.25vw, 1.875rem);
  --text-4xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.25rem);
  --text-5xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --text-6xl: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 8rem);
  
  /* SPACING */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  
  /* BORDER RADIUS */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* SHADOWS */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow-cyan: 0 0 20px var(--neon-cyan-glow);
  --shadow-glow-purple: 0 0 20px var(--neon-purple-glow);
  --shadow-glow-mixed: 0 0 20px var(--neon-cyan-glow), 0 0 40px var(--neon-purple-glow);
  
  /* TRANSITIONS */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-slower: 600ms ease;
  --transition-spring: 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  
  /* Z-INDEX LAYERS */
  --z-background: -10;
  --z-base: 0;
  --z-elevated: 10;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-modal: 2000;
  --z-toast: 3000;
  --z-tooltip: 4000;
  
  /* LAYOUT */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px;
  --nav-height: 80px;
}

/* ============================================
   2. CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--void-deep);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Selection styling */
::selection {
  background: var(--neon-cyan);
  color: var(--void-deep);
}

::-moz-selection {
  background: var(--neon-cyan);
  color: var(--void-deep);
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--void-medium);
}

::-webkit-scrollbar-thumb {
  background: var(--void-elevated);
  border-radius: var(--radius-full);
  border: 2px solid var(--void-medium);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan-subtle);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--void-elevated) var(--void-medium);
}

/* Focus styles */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* Base elements */
a {
  color: var(--neon-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--text-primary);
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  color: var(--text-secondary);
}

/* ============================================
   3. UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm { max-width: var(--container-sm); }
.container-md { max-width: var(--container-md); }
.container-lg { max-width: var(--container-lg); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-display { font-family: var(--font-display); }
.font-mono { font-family: var(--font-mono); }
.font-cute { font-family: var(--font-cute); }

.text-gradient {
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   4. BACKGROUND EFFECTS LAYER
   ============================================ */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: var(--z-background);
  pointer-events: none;
  overflow: hidden;
}

/* Gradient Background */
.bg-gradient {
  position: absolute;
  inset: 0;
  background: var(--gradient-void);
}

/* Animated Gradient Mesh */
.bg-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(168, 85, 247, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 60% 80%, rgba(244, 114, 182, 0.1) 0%, transparent 50%);
  animation: meshShift 20s ease-in-out infinite;
}

@keyframes meshShift {
  0%, 100% {
    background-position: 0% 0%, 100% 0%, 50% 100%;
    opacity: 0.4;
  }
  25% {
    background-position: 20% 20%, 80% 10%, 40% 90%;
    opacity: 0.5;
  }
  50% {
    background-position: 10% 30%, 90% 20%, 60% 80%;
    opacity: 0.4;
  }
  75% {
    background-position: 30% 10%, 70% 30%, 50% 90%;
    opacity: 0.5;
  }
}

/* Floating Glow Orbs */
.bg-orbs {
  position: absolute;
  inset: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: floatOrb 25s ease-in-out infinite;
  will-change: transform;
}

.glow-orb-1 {
  width: 600px;
  height: 600px;
  background: var(--neon-cyan);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.glow-orb-2 {
  width: 500px;
  height: 500px;
  background: var(--neon-purple);
  top: 50%;
  right: -150px;
  animation-delay: -8s;
  animation-duration: 30s;
}

.glow-orb-3 {
  width: 400px;
  height: 400px;
  background: var(--neon-pink);
  bottom: -100px;
  left: 30%;
  animation-delay: -15s;
  animation-duration: 28s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -30px) scale(1.05);
  }
  50% {
    transform: translate(-30px, 50px) scale(0.95);
  }
  75% {
    transform: translate(40px, 20px) scale(1.02);
  }
}

/* Grid Overlay */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(0, 245, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 0%, transparent 70%);
}

/* Particle Canvas Container */
.bg-particles {
  position: absolute;
  inset: 0;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Scanlines Effect (subtle) */
.bg-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  opacity: 0.3;
  pointer-events: none;
}

/* Noise Texture Overlay */
.bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

/* Vignette Effect */
.bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 3, 8, 0.5) 100%);
  pointer-events: none;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: var(--z-nav);
  transition: all var(--transition-base);
}

.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 3, 8, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.nav.scrolled::before {
  opacity: 1;
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  z-index: 10;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cyber);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-cyan);
  transition: all var(--transition-base);
}

.nav-logo-icon svg {
  width: 24px;
  height: 24px;
  color: var(--void-deep);
}

.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 0 30px var(--neon-cyan-glow), 0 0 60px var(--neon-purple-glow);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0.1em;
  background: var(--gradient-cyber);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-cyber);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Nav CTA Button */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--void-deep);
  background: var(--gradient-cyber);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-cyan);
  transition: all var(--transition-base);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px var(--neon-cyan-glow), 0 0 60px var(--neon-purple-glow);
  color: var(--void-deep);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 3, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-8);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.nav-mobile.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile .nav-link {
  font-size: var(--text-xl);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-mobile {
    display: flex;
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-16);
  overflow: hidden;
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
  z-index: 1;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-8);
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.hero-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--gradient-cyber);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

.hero-badge-icon svg {
  width: 14px;
  height: 14px;
  color: var(--void-deep);
}

.hero-badge-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 10px var(--neon-cyan-glow);
  }
  50% {
    box-shadow: 0 0 20px var(--neon-cyan-glow), 0 0 30px var(--neon-purple-glow);
  }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title-text {
  display: block;
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 0 30px var(--neon-cyan-glow)) drop-shadow(0 0 60px var(--neon-purple-glow));
  animation: titleGlow 4s ease-in-out infinite;
}

@keyframes titleGlow {
  0%, 100% {
    filter: drop-shadow(0 0 30px var(--neon-cyan-glow)) drop-shadow(0 0 60px var(--neon-purple-glow));
  }
  50% {
    filter: drop-shadow(0 0 50px var(--neon-cyan-glow)) drop-shadow(0 0 80px var(--neon-purple-glow)) drop-shadow(0 0 100px var(--neon-pink-glow));
  }
}

/* Hero Subtitle */
.hero-subtitle {
  font-family: var(--font-cute);
  font-size: var(--text-xl);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto var(--space-10);
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-subtitle-highlight {
  color: var(--neon-cyan);
  font-weight: 600;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-16);
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.hero-stat-value .count-up {
  display: inline-block;
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  animation: fadeInUp 0.8s ease 1s forwards, bounce 2s ease-in-out 2s infinite;
  opacity: 0;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

/* ============================================
   7. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Primary Button - Neon Gradient */
.btn-primary {
  color: var(--void-deep);
  background: var(--gradient-cyber);
  border: none;
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  animation: glowPulse 3s ease-in-out infinite;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(10px);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px var(--neon-cyan-glow), 0 0 80px var(--neon-purple-glow);
  color: var(--void-deep);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:active {
  transform: translateY(-1px);
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px var(--neon-cyan-glow);
  }
  50% {
    box-shadow: 0 0 35px var(--neon-cyan-glow), 0 0 50px var(--neon-purple-glow);
  }
}

/* Secondary/Ghost Button */
.btn-secondary {
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--glass-border-hover);
  box-shadow: 0 0 20px var(--neon-cyan-subtle);
  color: var(--text-primary);
}

/* Outline Button */
.btn-outline {
  color: var(--neon-cyan);
  background: transparent;
  border: 1px solid var(--neon-cyan);
}

.btn-outline:hover {
  background: var(--neon-cyan);
  color: var(--void-deep);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

/* Icon Button */
.btn-icon {
  padding: var(--space-3);
  border-radius: var(--radius-lg);
}

/* Button Sizes */
.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
}

.btn-lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

/* Button States */
.btn:disabled,
.btn.loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn.loading {
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-primary.loading::after {
  border-top-color: var(--void-deep);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   8. FEATURE CARDS
   ============================================ */
.features {
  position: relative;
  padding: var(--space-24) 0;
}

.features-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.features-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.features-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.feature-card {
  position: relative;
  padding: var(--space-8);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-card);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg), 0 0 30px var(--neon-cyan-subtle);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-xl);
  background: var(--void-elevated);
  z-index: 1;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-cyber);
  opacity: 0.3;
  filter: blur(10px);
  transition: opacity var(--transition-base);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.6;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--neon-cyan);
  position: relative;
  z-index: 1;
}

.feature-icon.purple svg { color: var(--neon-purple); }
.feature-icon.pink svg { color: var(--neon-pink); }
.feature-icon.teal svg { color: var(--neon-teal); }
.feature-icon.blue svg { color: var(--neon-blue); }
.feature-icon.yellow svg { color: var(--neon-yellow); }

.feature-title {
  position: relative;
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  z-index: 1;
}

.feature-description {
  position: relative;
  font-family: var(--font-cute);
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: 1.7;
  z-index: 1;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   9. HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
  position: relative;
  padding: var(--space-24) 0;
}

.hiw-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.hiw-title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
}

.hiw-subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
}

/* Connecting Line */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 30px);
  right: calc(12.5% + 30px);
  height: 2px;
  background: linear-gradient(90deg, 
    var(--neon-cyan) 0%, 
    var(--neon-purple) 50%, 
    var(--neon-pink) 100%
  );
  opacity: 0.3;
}

.hiw-step {
  position: relative;
  text-align: center;
  z-index: 1;
}

.hiw-step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--neon-cyan);
  transition: all var(--transition-base);
}

.hiw-step:hover .hiw-step-number {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 30px var(--neon-cyan-glow);
  transform: scale(1.1);
}

.hiw-step-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.2;
}

.hiw-step-icon svg {
  width: 32px;
  height: 32px;
}

.hiw-step-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}

.hiw-step-description {
  font-family: var(--font-cute);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-12);
  }
  
  .hiw-steps::before {
    display: none;
  }
}

@media (max-width: 500px) {
  .hiw-steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   10. CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: var(--space-24) 0;
}

.cta-card {
  position: relative;
  padding: var(--space-16);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-3xl);
  text-align: center;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    var(--neon-cyan) 60deg,
    transparent 120deg,
    var(--neon-purple) 180deg,
    transparent 240deg,
    var(--neon-pink) 300deg,
    transparent 360deg
  );
  animation: rotateBorder 10s linear infinite;
  opacity: 0.1;
}

@keyframes rotateBorder {
  to {
    transform: rotate(360deg);
  }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
}

.cta-description {
  font-family: var(--font-cute);
  font-size: var(--text-lg);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

/* ============================================
   11. FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: var(--space-12) 0;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
}

.footer-links {
  display: flex;
  gap: var(--space-6);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: var(--neon-cyan);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.footer-social-link:hover {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: var(--void-deep);
  box-shadow: var(--shadow-glow-cyan);
}

.footer-social-link svg {
  width: 20px;
  height: 20px;
}

.footer-copyright {
  width: 100%;
  text-align: center;
  padding-top: var(--space-8);
  margin-top: var(--space-8);
  border-top: 1px solid var(--glass-border);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   12. GETKEY PAGE STYLES
   ============================================ */
.getkey-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-12) var(--space-6);
}

.getkey-container {
  width: 100%;
  max-width: 500px;
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--neon-cyan);
}

.back-link svg {
  width: 18px;
  height: 18px;
}

/* Main Card */
.getkey-card {
  position: relative;
  padding: var(--space-10);
  background: var(--glass-bg-solid);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.getkey-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.1;
}

/* Card Header */
.getkey-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.getkey-logo {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 900;
  letter-spacing: 0.15em;
  background: var(--gradient-aurora);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
}

.getkey-subtitle {
  font-family: var(--font-cute);
  font-size: var(--text-lg);
  color: var(--text-secondary);
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--neon-green-glow);
  border: 1px solid var(--neon-green);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.status-badge svg {
  width: 16px;
  height: 16px;
  color: var(--neon-green);
}

.status-badge-text {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--neon-green);
}

/* Key Display */
.key-display-wrapper {
  margin-bottom: var(--space-6);
}

.key-display {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5);
  background: var(--void-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.key-display:hover {
  border-color: var(--glass-border-hover);
}

.key-display.has-key {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan-subtle);
}

.key-text {
  flex: 1;
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-align: center;
  user-select: all;
}

.key-text.placeholder {
  color: var(--text-muted);
}

.key-text.scrambling {
  animation: scramble 0.1s linear infinite;
}

@keyframes scramble {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Copy Button */
.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.copy-btn:hover {
  background: var(--neon-cyan);
  border-color: var(--neon-cyan);
  color: var(--void-deep);
}

.copy-btn.copied {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--void-deep);
}

.copy-btn svg {
  width: 20px;
  height: 20px;
}

/* Timer Display */
.timer-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-base);
  color: var(--text-secondary);
}

.timer-display svg {
  width: 18px;
  height: 18px;
}

.timer-value {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--neon-cyan);
}

.timer-value.warning {
  color: var(--neon-yellow);
}

.timer-value.danger {
  color: var(--neon-red);
  animation: timerPulse 1s ease-in-out infinite;
}

@keyframes timerPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Generate Button */
.generate-btn-wrapper {
  margin-bottom: var(--space-6);
}

.generate-btn {
  width: 100%;
  padding: var(--space-5);
  font-size: var(--text-lg);
}

/* Verification Required Box */
.verification-box {
  padding: var(--space-6);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid var(--neon-orange);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
}

.verification-box-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.verification-box-header svg {
  width: 24px;
  height: 24px;
  color: var(--neon-orange);
}

.verification-box-title {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neon-orange);
}

.verification-box-text {
  font-family: var(--font-cute);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.verify-btn {
  width: 100%;
  background: var(--neon-orange);
  color: var(--void-deep);
  box-shadow: 0 0 20px var(--neon-orange-glow);
}

.verify-btn:hover {
  box-shadow: 0 0 40px var(--neon-orange-glow);
}

/* Info Text */
.info-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.info-text svg {
  width: 16px;
  height: 16px;
}

.info-text.success {
  color: var(--neon-green);
}

/* ============================================
   PROVIDER SELECTION
   ============================================ */
.provider-selection {
  padding: var(--space-6) 0;
}

.section-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-8);
}

.provider-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .provider-grid {
    flex-direction: row;
  }
}

.provider-card {
  position: relative;
  flex: 1;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: all var(--transition-base);
  text-align: left;
}

.provider-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-cyan);
}

.provider-card[data-provider="lootlabs"]:hover {
  border-color: var(--neon-purple);
}

.provider-card:hover .provider-card-glow {
  opacity: 1;
}

.provider-card-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.provider-card-glow.cyan {
  background: radial-gradient(circle at 50% 0%, rgba(0, 245, 255, 0.15) 0%, transparent 70%);
  box-shadow: inset 0 1px 0 rgba(0, 245, 255, 0.3);
}

.provider-card-glow.purple {
  background: radial-gradient(circle at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  box-shadow: inset 0 1px 0 rgba(168, 85, 247, 0.3);
}

.provider-card-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
}

.provider-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.provider-icon.cyan {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.2);
}

.provider-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.2);
}

.provider-icon svg {
  width: 28px;
  height: 28px;
}

.provider-info {
  flex: 1;
  min-width: 0;
}

.provider-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.provider-desc {
  font-family: var(--font-cute);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.provider-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.checkpoint-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
}

.checkpoint-badge svg {
  width: 12px;
  height: 12px;
}

.provider-arrow {
  color: var(--text-muted);
  transition: transform var(--transition-fast), color var(--transition-fast);
}

.provider-arrow svg {
  width: 20px;
  height: 20px;
}

.provider-card:hover .provider-arrow {
  transform: translateX(4px);
  color: var(--neon-cyan);
}

.provider-card[data-provider="lootlabs"]:hover .provider-arrow {
  color: var(--neon-purple);
}

.provider-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
  font-family: var(--font-cute);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.provider-hint svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   VERIFICATION SECTIONS
   ============================================ */
.verification-section {
  padding: var(--space-6) 0;
}

.verification-box {
  text-align: center;
  padding: var(--space-8);
  background: rgba(0, 245, 255, 0.03);
  border: 1px solid rgba(0, 245, 255, 0.1);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
}

.verification-box.purple-theme {
  background: rgba(168, 85, 247, 0.03);
  border-color: rgba(168, 85, 247, 0.1);
}

.verification-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-xl);
}

.verification-icon.cyan {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
}

.verification-icon.purple {
  background: rgba(168, 85, 247, 0.1);
  color: var(--neon-purple);
}

.verification-icon svg {
  width: 32px;
  height: 32px;
}

.verification-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.verification-text {
  font-family: var(--font-cute);
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.verification-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.verification-note svg {
  width: 14px;
  height: 14px;
}

/* LootLabs Status */
.lootlabs-status {
  margin-top: var(--space-4);
}

.status-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
}

.status-item.checking {
  color: var(--neon-purple);
}

.status-item.complete {
  color: var(--neon-green);
  background: rgba(34, 197, 94, 0.1);
}

.status-item.waiting {
  color: var(--neon-yellow);
}

.status-item svg {
  width: 18px;
  height: 18px;
}

/* Purple Button Variant */
.btn-purple {
  background: linear-gradient(90deg, var(--neon-purple), var(--neon-pink));
  color: white;
  border: none;
  box-shadow: 0 0 20px var(--neon-purple-glow);
}

.btn-purple:hover {
  box-shadow: 0 0 40px var(--neon-purple-glow), 0 0 60px var(--neon-pink-glow);
  transform: translateY(-2px);
  color: white;
}

/* Change Provider Button */
.change-provider-btn {
  margin-top: var(--space-4);
  width: 100%;
}

/* ============================================
   GENERATE SECTION
   ============================================ */
.generate-section {
  padding: var(--space-6) 0;
  text-align: center;
}

.generate-ready {
  margin-bottom: var(--space-8);
}

.ready-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  color: var(--neon-green);
  animation: pulse-success 2s ease-in-out infinite;
}

@keyframes pulse-success {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(34, 197, 94, 0);
  }
}

.ready-icon svg {
  width: 40px;
  height: 40px;
}

.ready-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.ready-text {
  font-family: var(--font-cute);
  color: var(--text-secondary);
}

.generate-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.generate-note svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   SUCCESS SECTION
   ============================================ */
.success-section {
  padding: var(--space-6) 0;
  text-align: center;
}

.success-message {
  margin-bottom: var(--space-8);
}

.success-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(0, 212, 170, 0.2));
  border-radius: 50%;
  color: var(--neon-green);
  animation: pulse-success 2s ease-in-out infinite;
}

.success-icon svg {
  width: 44px;
  height: 44px;
}

.success-message h3 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.success-message p {
  font-family: var(--font-cute);
  color: var(--text-secondary);
}

.key-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.info-item svg {
  width: 14px;
  height: 14px;
}

/* Key Status */
.key-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-3);
  flex-wrap: wrap;
}

/* GetKey Logo Image */
.getkey-logo-img {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  border-radius: var(--radius-xl);
  display: block;
}

/* Checkpoint Tracker Purple Theme */
.checkpoint-tracker.purple-theme .checkpoint-status {
  color: var(--neon-purple);
}

.checkpoint-tracker.purple-theme .checkpoint-status.completed {
  color: var(--neon-green);
}

/* Utility */
.hidden {
  display: none !important;
}

.spin {
  animation: spin 1s linear infinite;
}

/* Button Full Width */
.btn-full {
  width: 100%;
}

/* ============================================
   CHECKPOINT / PROGRESS SYSTEM
   ============================================ */
.checkpoint-section {
  margin-bottom: var(--space-6);
}

.checkpoint-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.checkpoint-status {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
}

.checkpoint-status svg {
  width: 18px;
  height: 18px;
  color: var(--neon-cyan);
}

.checkpoint-status.completing {
  color: var(--neon-yellow);
}

.checkpoint-status.completing svg {
  color: var(--neon-yellow);
  animation: spin 1s linear infinite;
}

.checkpoint-status.completed {
  color: var(--neon-green);
}

.checkpoint-status.completed svg {
  color: var(--neon-green);
}

.checkpoint-count {
  font-family: var(--font-mono);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--neon-cyan);
}

.checkpoint-count span {
  color: var(--text-muted);
}

/* Progress Bar */
.progress-bar-wrapper {
  position: relative;
  height: 12px;
  background: var(--void-elevated);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.progress-bar {
  height: 100%;
  background: var(--gradient-cyber);
  border-radius: var(--radius-full);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.progress-bar.complete {
  background: var(--neon-green);
  box-shadow: 0 0 20px var(--neon-green-glow);
}

/* Checkpoint Steps */
.checkpoint-steps {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-4);
  padding: 0 var(--space-2);
}

.checkpoint-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.checkpoint-step-dot {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void-elevated);
  border: 2px solid var(--glass-border);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition-base);
}

.checkpoint-step.active .checkpoint-step-dot {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px var(--neon-cyan-glow);
  animation: stepPulse 2s ease-in-out infinite;
}

.checkpoint-step.completed .checkpoint-step-dot {
  background: var(--neon-green);
  border-color: var(--neon-green);
  color: var(--void-deep);
}

.checkpoint-step.completed .checkpoint-step-dot svg {
  width: 16px;
  height: 16px;
}

@keyframes stepPulse {
  0%, 100% { box-shadow: 0 0 15px var(--neon-cyan-glow); }
  50% { box-shadow: 0 0 25px var(--neon-cyan-glow), 0 0 35px var(--neon-purple-glow); }
}

.checkpoint-step-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.checkpoint-step.active .checkpoint-step-label {
  color: var(--neon-cyan);
}

.checkpoint-step.completed .checkpoint-step-label {
  color: var(--neon-green);
}

/* Continue Button (for next checkpoint) */
.continue-btn {
  width: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-teal));
  color: var(--void-deep);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

.continue-btn:hover {
  box-shadow: 0 0 40px var(--neon-cyan-glow), 0 0 60px var(--neon-teal-glow);
}

/* ============================================
   13. TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: var(--z-toast);
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  min-width: 320px;
  max-width: 420px;
  background: var(--glass-bg-solid);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  pointer-events: auto;
  animation: toastSlideIn 0.4s var(--transition-spring) forwards;
  transform: translateX(120%);
}

.toast.removing {
  animation: toastSlideOut 0.3s ease forwards;
}

@keyframes toastSlideIn {
  to {
    transform: translateX(0);
  }
}

@keyframes toastSlideOut {
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.toast-icon svg {
  width: 20px;
  height: 20px;
}

.toast.success .toast-icon {
  background: rgba(34, 197, 94, 0.2);
  color: var(--neon-green);
}

.toast.error .toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: var(--neon-red);
}

.toast.warning .toast-icon {
  background: rgba(250, 204, 21, 0.2);
  color: var(--neon-yellow);
}

.toast.info .toast-icon {
  background: rgba(0, 245, 255, 0.2);
  color: var(--neon-cyan);
}

.toast-content {
  flex: 1;
  min-width: 0;
}

.toast-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.toast-message {
  font-family: var(--font-cute);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.toast-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.toast-close:hover {
  background: var(--void-elevated);
  color: var(--text-primary);
}

.toast-close svg {
  width: 16px;
  height: 16px;
}

/* Toast accent borders */
.toast.success {
  border-left: 3px solid var(--neon-green);
}

.toast.error {
  border-left: 3px solid var(--neon-red);
}

.toast.warning {
  border-left: 3px solid var(--neon-yellow);
}

.toast.info {
  border-left: 3px solid var(--neon-cyan);
}

@media (max-width: 480px) {
  .toast-container {
    left: var(--space-4);
    right: var(--space-4);
  }
  
  .toast {
    min-width: unset;
    max-width: unset;
    width: 100%;
  }
}

/* ============================================
   14. SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.stagger-children .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.stagger-children .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   15. LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--void-elevated) 25%,
    var(--void-surface) 50%,
    var(--void-elevated) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--void-deep);
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--void-elevated);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* ============================================
   16. ACCESSIBILITY & REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .glow-orb,
  .bg-mesh {
    animation: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --glass-bg: rgba(0, 0, 0, 0.9);
    --glass-border: rgba(255, 255, 255, 0.3);
  }
}

/* ============================================
   17. PRINT STYLES
   ============================================ */
@media print {
  .bg-effects,
  .nav,
  .toast-container {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* ============================================
   18. ADDITIONAL COMPONENTS
   ============================================ */

/* Divider */
.divider {
  height: 1px;
  background: var(--glass-border);
  margin: var(--space-8) 0;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-1) var(--space-3);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.badge.cyan {
  background: var(--neon-cyan-subtle);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.badge.purple {
  background: var(--neon-purple-subtle);
  border-color: var(--neon-purple);
  color: var(--neon-purple);
}

/* Tooltip */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  padding: var(--space-2) var(--space-3);
  background: var(--void-elevated);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: var(--z-tooltip);
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

/* Pulse animation for active states */
.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

/* Glitch Effect */
.glitch {
  position: relative;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  left: 2px;
  text-shadow: -2px 0 var(--neon-pink);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
  left: -2px;
  text-shadow: -2px 0 var(--neon-cyan);
  clip: rect(44px, 450px, 56px, 0);
  animation: glitch-anim2 5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
  0% { clip: rect(10px, 9999px, 31px, 0); }
  5% { clip: rect(70px, 9999px, 71px, 0); }
  10% { clip: rect(22px, 9999px, 40px, 0); }
  15% { clip: rect(54px, 9999px, 98px, 0); }
  20% { clip: rect(32px, 9999px, 45px, 0); }
  25% { clip: rect(85px, 9999px, 98px, 0); }
  30% { clip: rect(5px, 9999px, 22px, 0); }
  35% { clip: rect(40px, 9999px, 85px, 0); }
  40% { clip: rect(62px, 9999px, 75px, 0); }
  45% { clip: rect(15px, 9999px, 28px, 0); }
  50% { clip: rect(78px, 9999px, 92px, 0); }
  55% { clip: rect(35px, 9999px, 50px, 0); }
  60% { clip: rect(8px, 9999px, 18px, 0); }
  65% { clip: rect(65px, 9999px, 80px, 0); }
  70% { clip: rect(42px, 9999px, 58px, 0); }
  75% { clip: rect(25px, 9999px, 38px, 0); }
  80% { clip: rect(88px, 9999px, 100px, 0); }
  85% { clip: rect(12px, 9999px, 25px, 0); }
  90% { clip: rect(55px, 9999px, 68px, 0); }
  95% { clip: rect(38px, 9999px, 52px, 0); }
  100% { clip: rect(72px, 9999px, 88px, 0); }
}

@keyframes glitch-anim2 {
  0% { clip: rect(65px, 9999px, 85px, 0); }
  5% { clip: rect(18px, 9999px, 32px, 0); }
  10% { clip: rect(82px, 9999px, 95px, 0); }
  15% { clip: rect(5px, 9999px, 18px, 0); }
  20% { clip: rect(48px, 9999px, 62px, 0); }
  25% { clip: rect(28px, 9999px, 42px, 0); }
  30% { clip: rect(72px, 9999px, 88px, 0); }
  35% { clip: rect(12px, 9999px, 25px, 0); }
  40% { clip: rect(55px, 9999px, 72px, 0); }
  45% { clip: rect(38px, 9999px, 55px, 0); }
  50% { clip: rect(8px, 9999px, 22px, 0); }
  55% { clip: rect(78px, 9999px, 92px, 0); }
  60% { clip: rect(32px, 9999px, 48px, 0); }
  65% { clip: rect(58px, 9999px, 75px, 0); }
  70% { clip: rect(15px, 9999px, 30px, 0); }
  75% { clip: rect(68px, 9999px, 82px, 0); }
  80% { clip: rect(42px, 9999px, 58px, 0); }
  85% { clip: rect(22px, 9999px, 38px, 0); }
  90% { clip: rect(85px, 9999px, 98px, 0); }
  95% { clip: rect(48px, 9999px, 65px, 0); }
  100% { clip: rect(35px, 9999px, 50px, 0); }
}

/* ============================================
   19. SPECIAL EFFECTS
   ============================================ */

/* Neon border animation */
.neon-border {
  position: relative;
}

.neon-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-aurora);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.neon-border:hover::before {
  opacity: 1;
  animation: borderGlow 2s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { filter: blur(4px); opacity: 0.6; }
  50% { filter: blur(8px); opacity: 1; }
}

/* Floating animation */
.float {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Shine effect on hover */
.shine {
  position: relative;
  overflow: hidden;
}

.shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(30deg);
  transition: transform 0.6s;
  opacity: 0;
}

.shine:hover::after {
  opacity: 1;
  transform: rotate(30deg) translateX(100%);
}

/* Text reveal animation */
.text-reveal {
  overflow: hidden;
}

.text-reveal span {
  display: inline-block;
  transform: translateY(100%);
  animation: textReveal 0.6s ease forwards;
}

@keyframes textReveal {
  to {
    transform: translateY(0);
  }
}

/* ============================================
   20. RESPONSIVE UTILITIES
   ============================================ */
@media (max-width: 1280px) {
  .container {
    padding: 0 var(--space-8);
  }
}

@media (max-width: 1024px) {
  :root {
    --nav-height: 70px;
  }
  
  .hero {
    padding-top: calc(var(--nav-height) + var(--space-8));
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }
  
  .container {
    padding: 0 var(--space-4);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .features,
  .how-it-works,
  .cta-section {
    padding: var(--space-16) 0;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .getkey-card {
    padding: var(--space-6);
  }
}

/* ============================================
   21. ULTRA ADVANCED EFFECTS & ANIMATIONS
   ============================================ */

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: transform 0.15s ease, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  width: 50px;
  height: 50px;
  border-color: var(--neon-purple);
  background: rgba(168, 85, 247, 0.1);
}

.custom-cursor.click {
  transform: translate(-50%, -50%) scale(0.8);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--neon-cyan);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* Magnetic Button Effect */
.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Ripple Effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Tilt Effect */
.tilt-effect {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.tilt-effect .tilt-content {
  transform: translateZ(50px);
}

/* Aurora Background */
.aurora-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.aurora-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0.15;
  filter: blur(100px);
  animation: auroraMove 20s ease-in-out infinite;
}

.aurora-layer-1 {
  background: radial-gradient(ellipse at 30% 30%, var(--neon-cyan) 0%, transparent 50%);
  animation-delay: 0s;
}

.aurora-layer-2 {
  background: radial-gradient(ellipse at 70% 50%, var(--neon-purple) 0%, transparent 50%);
  animation-delay: -7s;
}

.aurora-layer-3 {
  background: radial-gradient(ellipse at 40% 70%, var(--neon-pink) 0%, transparent 50%);
  animation-delay: -14s;
}

@keyframes auroraMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(5%, -5%) rotate(5deg) scale(1.05); }
  50% { transform: translate(-5%, 5%) rotate(-5deg) scale(0.95); }
  75% { transform: translate(-10%, -5%) rotate(3deg) scale(1.02); }
}

/* Glitch Text Effect */
.glitch-text {
  position: relative;
  animation: glitchText 3s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  animation: glitchBefore 3s infinite;
  color: var(--neon-cyan);
  z-index: -1;
}

.glitch-text::after {
  animation: glitchAfter 3s infinite;
  color: var(--neon-pink);
  z-index: -2;
}

@keyframes glitchText {
  0%, 5%, 10%, 15%, 20%, 25%, 30%, 100% { opacity: 1; }
  6%, 16%, 26% { opacity: 0.8; }
}

@keyframes glitchBefore {
  0%, 100% { transform: translate(0); }
  5% { transform: translate(-3px, 2px); }
  10% { transform: translate(3px, -2px); }
  15% { transform: translate(-2px, 3px); }
  20% { transform: translate(2px, -3px); }
  25% { transform: translate(-3px, -2px); }
  30% { transform: translate(0); }
}

@keyframes glitchAfter {
  0%, 100% { transform: translate(0); }
  5% { transform: translate(3px, -2px); }
  10% { transform: translate(-3px, 2px); }
  15% { transform: translate(2px, -3px); }
  20% { transform: translate(-2px, 3px); }
  25% { transform: translate(3px, 2px); }
  30% { transform: translate(0); }
}

/* Holographic Effect */
.holographic {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% 200%;
  animation: holographicShine 5s ease infinite;
}

.holographic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(0, 245, 255, 0.1) 25%,
    rgba(168, 85, 247, 0.1) 50%,
    rgba(244, 114, 182, 0.1) 75%,
    transparent 100%
  );
  background-size: 400% 400%;
  animation: holographicGradient 8s ease infinite;
  pointer-events: none;
}

@keyframes holographicShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes holographicGradient {
  0% { background-position: 0% 0%; }
  50% { background-position: 100% 100%; }
  100% { background-position: 0% 0%; }
}

/* Scanline Effect */
.scanlines::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.1) 2px,
    rgba(0, 0, 0, 0.1) 4px
  );
  pointer-events: none;
  animation: scanlineMove 10s linear infinite;
}

@keyframes scanlineMove {
  0% { background-position: 0 0; }
  100% { background-position: 0 100px; }
}

/* Morphing Border */
.morph-border {
  position: relative;
}

.morph-border::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: conic-gradient(
    from var(--angle, 0deg),
    var(--neon-cyan),
    var(--neon-purple),
    var(--neon-pink),
    var(--neon-cyan)
  );
  border-radius: inherit;
  z-index: -1;
  animation: morphBorderRotate 4s linear infinite;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes morphBorderRotate {
  to { --angle: 360deg; }
}

/* Breathing Glow */
.breathe-glow {
  animation: breatheGlow 4s ease-in-out infinite;
}

@keyframes breatheGlow {
  0%, 100% {
    box-shadow: 
      0 0 20px rgba(0, 245, 255, 0.3),
      0 0 40px rgba(0, 245, 255, 0.1);
  }
  50% {
    box-shadow: 
      0 0 40px rgba(0, 245, 255, 0.5),
      0 0 80px rgba(0, 245, 255, 0.3),
      0 0 120px rgba(168, 85, 247, 0.2);
  }
}

/* Parallax Layers */
.parallax-container {
  perspective: 1000px;
  overflow: hidden;
}

.parallax-layer {
  transform-style: preserve-3d;
  will-change: transform;
}

.parallax-layer-1 { transform: translateZ(-100px) scale(1.1); }
.parallax-layer-2 { transform: translateZ(-50px) scale(1.05); }
.parallax-layer-3 { transform: translateZ(0); }

/* Elastic Scale */
.elastic-scale {
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.elastic-scale:hover {
  transform: scale(1.05);
}

.elastic-scale:active {
  transform: scale(0.95);
}

/* Magnetic Hover */
.magnetic-hover {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Stagger Animation Children */
.stagger-fade-in > * {
  opacity: 0;
  transform: translateY(30px);
  animation: staggerFadeIn 0.6s ease forwards;
}

.stagger-fade-in > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-fade-in > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-fade-in > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-fade-in > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-fade-in > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-fade-in > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes staggerFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Card Hover 3D */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-3d:hover {
  transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(20px);
}

.card-3d-content {
  transform: translateZ(30px);
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Neon Pulse */
.neon-pulse {
  animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {
  0%, 100% {
    text-shadow: 
      0 0 5px currentColor,
      0 0 10px currentColor,
      0 0 20px currentColor;
  }
  50% {
    text-shadow: 
      0 0 10px currentColor,
      0 0 20px currentColor,
      0 0 40px currentColor,
      0 0 80px currentColor;
  }
}

/* Smooth Scroll Snap */
.scroll-snap-container {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

.scroll-snap-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

/* Loading Skeleton */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: skeleton 1.5s ease-in-out infinite;
}

@keyframes skeleton {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Focus Ring Animation */
:focus-visible {
  outline: none;
  box-shadow: 
    0 0 0 2px var(--void-deep),
    0 0 0 4px var(--neon-cyan),
    0 0 20px var(--neon-cyan-glow);
  animation: focusRing 1.5s ease-in-out infinite;
}

@keyframes focusRing {
  0%, 100% { box-shadow: 0 0 0 2px var(--void-deep), 0 0 0 4px var(--neon-cyan), 0 0 20px var(--neon-cyan-glow); }
  50% { box-shadow: 0 0 0 2px var(--void-deep), 0 0 0 6px var(--neon-cyan), 0 0 40px var(--neon-cyan-glow); }
}

/* Page Transition */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--void-deep);
  z-index: 99999;
  pointer-events: none;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}

.page-transition.active {
  transform: scaleY(1);
  transform-origin: top;
}

/* Text Gradient Animation */
.text-gradient-animated {
  background: linear-gradient(
    90deg,
    var(--neon-cyan) 0%,
    var(--neon-purple) 25%,
    var(--neon-pink) 50%,
    var(--neon-purple) 75%,
    var(--neon-cyan) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGradientMove 3s linear infinite;
}

@keyframes textGradientMove {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Cyber Button Enhanced */
.btn-cyber {
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  transition: all 0.3s ease;
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.4), transparent);
  transition: left 0.5s ease;
}

.btn-cyber:hover::before {
  left: 100%;
}

.btn-cyber::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--void-deep);
  z-index: -1;
}

.btn-cyber:hover {
  background: var(--neon-cyan);
  color: var(--void-deep);
  box-shadow: 
    0 0 20px var(--neon-cyan-glow),
    0 0 40px var(--neon-cyan-glow),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

/* Data Stream Effect */
.data-stream {
  position: relative;
  overflow: hidden;
}

.data-stream::before {
  content: '01001010101110010101010111001010';
  position: absolute;
  top: 0;
  left: 0;
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--neon-cyan);
  opacity: 0.1;
  white-space: nowrap;
  animation: dataStreamScroll 20s linear infinite;
}

@keyframes dataStreamScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Noise Texture Overlay */
.noise-overlay::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
  z-index: 99990;
}

/* Smooth Card Entrance */
.card-enter {
  opacity: 0;
  transform: translateY(60px) scale(0.9);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-enter.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Interactive Glow Follow */
.glow-follow {
  position: relative;
}

.glow-follow::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--neon-cyan-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.glow-follow:hover::before {
  opacity: 1;
}

/* ============================================
   22. ENHANCED BUTTON STYLES
   ============================================ */

.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: scale(0.98);
}

/* Primary button glow */
.btn-primary {
  box-shadow: 
    0 0 0 1px var(--neon-cyan),
    0 4px 15px rgba(0, 245, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 
    0 0 0 1px var(--neon-cyan),
    0 4px 20px rgba(0, 245, 255, 0.5),
    0 8px 40px rgba(0, 245, 255, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.1);
}

/* Feature card enhanced */
.feature-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 245, 255, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: inherit;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover {
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 245, 255, 0.2),
    0 0 60px rgba(0, 245, 255, 0.1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Provider card enhanced */
.provider-card {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.provider-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.provider-card:active {
  transform: translateY(-4px) scale(0.98);
}

/* Navigation enhanced */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-aurora);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after {
  width: 100%;
}

/* CTA card enhanced */
.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(0, 245, 255, 0.1),
    transparent,
    rgba(168, 85, 247, 0.1),
    transparent
  );
  animation: ctaRotate 10s linear infinite;
}

@keyframes ctaRotate {
  to { transform: rotate(360deg); }
}

/* Stats enhanced */
.hero-stat {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-stat:hover {
  transform: translateY(-5px) scale(1.05);
}

.hero-stat:hover .hero-stat-value {
  text-shadow: 0 0 20px var(--neon-cyan-glow);
}

/* Key display enhanced */
.key-display {
  transition: all 0.4s ease;
}

.key-display:hover {
  box-shadow: 
    0 0 0 2px rgba(0, 245, 255, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(0, 245, 255, 0.1);
}

/* HIW step enhanced */
.hiw-step {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiw-step:hover {
  transform: translateY(-10px);
}

.hiw-step:hover .hiw-step-number {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--neon-cyan-glow);
}

.hiw-step-number {
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Noise overlay for texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 99990;
}

/* Hide custom cursor on mobile */
@media (max-width: 768px), (hover: none) {
  .custom-cursor,
  .cursor-dot,
  .cursor-trail {
    display: none !important;
  }
}

/* Performance optimization for animations */
@media (prefers-reduced-motion: reduce) {
  .aurora-layer,
  .glitch-text::before,
  .glitch-text::after,
  .text-gradient-animated,
  .breathe-glow,
  .morph-border::before {
    animation: none !important;
  }
  
  .custom-cursor,
  .cursor-dot,
  .cursor-trail {
    display: none !important;
  }
}

