/* Ultra Premium Modern CSS - Next Level Design 2025+ */

/* Advanced CSS Custom Properties */
:root {
  /* Next-Gen Color System */
  --primary-50: #ecfdf5;
  --primary-100: #d1fae5;
  --primary-200: #a7f3d0;
  --primary-300: #6ee7b7;
  --primary-400: #34d399;
  --primary-500: #10b981;
  --primary-600: #059669;
  --primary-700: #047857;
  --primary-800: #065f46;
  --primary-900: #064e3b;

  /* Premium Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
  --gradient-ocean: linear-gradient(135deg, #2196f3 0%, #21cbf3 100%);
  --gradient-forest: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --gradient-aurora: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
  --gradient-neon: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);

  /* Glassmorphism System */
  --glass-ultra-light: rgba(255, 255, 255, 0.03);
  --glass-light: rgba(255, 255, 255, 0.08);
  --glass-medium: rgba(255, 255, 255, 0.12);
  --glass-heavy: rgba(255, 255, 255, 0.18);
  --glass-ultra-heavy: rgba(255, 255, 255, 0.25);

  /* Advanced Blur Effects */
  --blur-light: blur(8px) saturate(120%);
  --blur-medium: blur(16px) saturate(140%);
  --blur-heavy: blur(24px) saturate(160%);
  --blur-ultra: blur(32px) saturate(180%);

  /* Neumorphism Shadows */
  --neomorph-light: 
    8px 8px 16px rgba(163, 177, 198, 0.2),
    -8px -8px 16px rgba(255, 255, 255, 0.8);
  --neomorph-medium: 
    12px 12px 24px rgba(163, 177, 198, 0.3),
    -12px -12px 24px rgba(255, 255, 255, 0.9);
  --neomorph-heavy: 
    16px 16px 32px rgba(163, 177, 198, 0.4),
    -16px -16px 32px rgba(255, 255, 255, 1);

  /* Advanced Spacing Scale */
  --space-px: 1px;
  --space-0: 0px;
  --space-0-5: 0.125rem;
  --space-1: 0.25rem;
  --space-1-5: 0.375rem;
  --space-2: 0.5rem;
  --space-2-5: 0.625rem;
  --space-3: 0.75rem;
  --space-3-5: 0.875rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-11: 2.75rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --space-44: 11rem;
  --space-48: 12rem;
  --space-52: 13rem;
  --space-56: 14rem;
  --space-60: 15rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;

  /* Premium Border Radius System */
  --radius-none: 0px;
  --radius-sm: 0.125rem;
  --radius-base: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-4xl: 2rem;
  --radius-5xl: 2.5rem;
  --radius-6xl: 3rem;
  --radius-full: 9999px;

  /* Advanced Animation Curves */
  --ease-linear: linear;
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-back: cubic-bezier(0.36, 0, 0.66, -0.56);
  --ease-in-out-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease-out-circ: cubic-bezier(0, 0.55, 0.45, 1);
  --ease-in-circ: cubic-bezier(0.55, 0, 1, 0.45);
  --ease-in-out-circ: cubic-bezier(0.85, 0, 0.15, 1);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in-expo: cubic-bezier(0.7, 0, 0.84, 0);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);

  /* Premium Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;
  --text-8xl: 6rem;
  --text-9xl: 8rem;

  /* Advanced Z-Index Scale */
  --z-auto: auto;
  --z-0: 0;
  --z-10: 10;
  --z-20: 20;
  --z-30: 30;
  --z-40: 40;
  --z-50: 50;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-toast: 1080;
  --z-priority: 9999;
}

/* Ultra Modern Global Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: clamp(16px, 2.5vw, 18px);
  scroll-behavior: smooth;
  scroll-padding-top: var(--space-20);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  font-feature-settings: 'cv11', 'ss01';
  font-variation-settings: 'opsz' 32;
  line-height: 1.6;
  color: #1f2937;
  background: 
    radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.05) 0%, transparent 50%),
    linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Next-Gen Container System */
.container {
  max-width: min(1400px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 640px) {
  .container { padding: 0 var(--space-6); }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-8); }
}

/* Ultra Modern Navigation */
.navbar {
  position: fixed;
  top: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: var(--z-fixed);
  background: var(--glass-medium);
  backdrop-filter: var(--blur-heavy);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-4xl);
  padding: var(--space-3) var(--space-6);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.08),
    0 2px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease-out-expo);
}

.navbar:hover {
  background: var(--glass-heavy);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.12),
    0 4px 20px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo .logo {
  height: var(--space-12);
  width: auto;
  transition: all 0.4s var(--ease-out-back);
  filter: drop-shadow(0 4px 12px rgba(16, 185, 129, 0.3));
}

.nav-logo .logo:hover {
  transform: scale(1.05) rotate(2deg);
  filter: drop-shadow(0 8px 24px rgba(16, 185, 129, 0.5));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-1);
  background: rgba(255, 255, 255, 0.1);
  padding: var(--space-2);
  border-radius: var(--radius-3xl);
  backdrop-filter: blur(8px);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  font-size: var(--text-sm);
  border-radius: var(--radius-2xl);
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-forest);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out-expo);
  z-index: -1;
}

.nav-link:hover::before {
  opacity: 0.15;
}

.nav-link:hover {
  color: #059669;
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(16, 185, 129, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link-login {
  background: var(--gradient-forest);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

.nav-link-login::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
}

.nav-link-login:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
  color: white;
}

/* Premium Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--gradient-forest);
  overflow: hidden;
  padding-top: var(--space-24);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: heroBackground 20s ease-in-out infinite alternate;
}

@keyframes heroBackground {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(1deg);
    opacity: 0.8;
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--glass-medium);
  backdrop-filter: var(--blur-medium);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: white;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-8);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, #10b981, #059669, #34d399, #10b981);
  border-radius: var(--radius-full);
  z-index: -1;
  animation: rotate 8s linear infinite;
}

.hero-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.hero-badge:hover::after {
  left: 100%;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: var(--space-8);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transition: transform 0.8s var(--ease-out-expo);
}

.hero:hover .highlight::after {
  transform: scaleX(1);
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-10);
  line-height: 1.7;
  font-weight: 400;
}

.hero-features {
  display: flex;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: white;
  font-weight: 500;
  font-size: var(--text-base);
}

.hero-feature i {
  width: var(--space-10);
  height: var(--space-10);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-medium);
  backdrop-filter: var(--blur-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease-out-back);
}

.hero-feature:hover i {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-buttons {
  display: flex;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

/* Ultra Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-8);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--text-lg);
  border-radius: var(--radius-2xl);
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  min-width: 200px;
  justify-content: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s var(--ease-out-expo);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: rgba(255, 255, 255, 0.95);
  color: #059669;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: var(--blur-light);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), transparent);
  transition: left 0.8s var(--ease-out-expo);
  z-index: 0;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.16),
    0 8px 24px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 1);
}

.btn-secondary {
  background: var(--glass-medium);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: var(--blur-medium);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--glass-heavy);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-trust {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 500;
}

.hero-image {
  position: relative;
  perspective: 1000px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-6xl);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.25),
    0 12px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: all 0.6s var(--ease-out-expo);
  transform: rotateY(-5deg) rotateX(2deg);
}

.hero-img:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
  box-shadow: 
    0 35px 70px rgba(0, 0, 0, 0.3),
    0 15px 30px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-stats {
  position: absolute;
  bottom: var(--space-8);
  left: var(--space-8);
  right: var(--space-8);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-4);
}

.hero-stat {
  background: var(--glass-heavy);
  backdrop-filter: var(--blur-heavy);
  padding: var(--space-6);
  border-radius: var(--radius-3xl);
  text-align: center;
  box-shadow: 
    0 12px 32px rgba(0, 0, 0, 0.15),
    0 4px 16px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s var(--ease-out-back);
  transform: translateY(0);
}

.hero-stat:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-stat-number {
  font-size: var(--text-2xl);
  font-weight: 900;
  color: #059669;
  margin-bottom: var(--space-2);
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Ultra Modern Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-12);
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  animation: bounce 3s ease-in-out infinite;
  z-index: 2;
}

.scroll-mouse {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-2xl);
  position: relative;
  margin: 0 auto var(--space-3);
  background: var(--glass-light);
  backdrop-filter: var(--blur-light);
}

.scroll-wheel {
  width: 4px;
  height: 12px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-full);
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2.5s ease-in-out infinite;
}

@keyframes scroll {
  0%, 20% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-12px);
  }
  60% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .navbar {
    top: var(--space-2);
    left: var(--space-2);
    right: var(--space-2);
    padding: var(--space-2) var(--space-4);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
    text-align: center;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    position: static;
    margin-top: var(--space-8);
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .hero {
    padding: var(--space-20) 0 var(--space-16);
  }
  
  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-4);
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: var(--space-2) var(--space-3);
  }
  
  .nav-logo .logo {
    height: var(--space-10);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
  
  .hero-stat {
    padding: var(--space-4);
  }
}

/* Dark Mode Enhancement */
@media (prefers-color-scheme: dark) {
  body {
    background: 
      radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 75% 75%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
      linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }
  
  .navbar {
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
  }
  
  .nav-link {
    color: #e2e8f0;
  }
  
  .hero-stat-label {
    color: #94a3b8;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero::before {
    animation: none;
  }
  
  .hero-badge {
    animation: none;
  }
  
  .hero-badge::before {
    animation: none;
  }
  
  .scroll-indicator {
    animation: none;
  }
  
  .scroll-wheel {
    animation: none;
  }
}

/* High Performance Mode */
@media (prefers-reduced-data: reduce) {
  .hero::before {
    display: none;
  }
  
  .hero-badge::before {
    display: none;
  }
}
