/**
 * All Themes - Neophi Light/Dark Only
 * Simplified theme system for investment landing page
 * Generates CSS custom properties for light and dark themes
 */
:root,
:root[data-theme=light] {
  --background: #FFFFFF;
  --text: #333333;
  --primary: #6750A4;
  --secondary: #E91E63;
  --accent: #F06292;
  --border: #E0E0E0;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glow: rgba(103, 80, 164, 0.3);
  --shadow: rgba(0, 0, 0, 0.1);
}

:root[data-theme=dark] {
  /* Base colors - WCAG AA compliant with enhanced purple theme */
  --background: #0A0A0A; /* Rich black background */
  --text: #E0D5EB; /* Light purple-gray text - 14.2:1 contrast */
  --text-secondary: #C9BBDD; /* Medium purple-gray for secondary text - 11.8:1 contrast */
  --text-muted: #B8A8CC; /* Muted purple-gray with good contrast - 9.2:1 contrast */
  --primary: #D14BFF; /* Lilac Flash primary - 8.9:1 contrast */
  --secondary: #A563D1; /* Deep purple secondary - 6.8:1 contrast */
  --accent: #FF6EC4; /* Bright pink accent - 7.8:1 contrast */
  --border: #252525; /* Dark gray borders */
}

:root[data-theme=dark] {
  --glass-bg: rgba(var(--background-rgb), 0.05);
  --glass-border: rgba(var(--border-rgb), 0.15);
  --glass-backdrop-blur: 12px;
  --glow-primary: rgba(var(--primary-rgb), 0.5);
  --glow-secondary: rgba(var(--secondary-rgb), 0.5);
  --glow-accent: rgba(var(--accent-rgb), 0.5);
}
:root[data-theme=dark] .neon-text {
  text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5), 0 0 10px rgba(var(--primary-rgb), 0.3), 0 0 15px rgba(var(--primary-rgb), 0.2);
}
:root[data-theme=dark] .neon-border {
  box-shadow: 0 0 5px rgba(var(--primary-rgb), 0.4), 0 0 10px rgba(var(--primary-rgb), 0.2), inset 0 0 5px rgba(var(--primary-rgb), 0.1);
}
:root[data-theme=dark] .neon-glow {
  animation: neonPulse 2s ease-in-out infinite alternate;
}

:root[data-theme=light] {
  --glass-bg: rgba(var(--background-rgb), 0.7);
  --glass-border: rgba(var(--border-rgb), 0.3);
  --glass-backdrop-blur: 8px;
  --glow-primary: rgba(var(--primary-rgb), 0.2);
  --glow-secondary: rgba(var(--secondary-rgb), 0.2);
  --glow-accent: rgba(var(--accent-rgb), 0.2);
}
:root[data-theme=light] .subtle-glow {
  box-shadow: 0 2px 8px rgba(var(--primary-rgb), 0.1);
}
:root[data-theme=light] .professional-border {
  border: 1px solid rgba(var(--border-rgb), 0.2);
}

@keyframes neonPulse {
  0% {
    text-shadow: 0 0 5px rgba(var(--primary-rgb), 0.5), 0 0 10px rgba(var(--primary-rgb), 0.3);
    filter: brightness(1);
  }
  100% {
    text-shadow: 0 0 8px rgba(var(--primary-rgb), 0.7), 0 0 15px rgba(var(--primary-rgb), 0.5), 0 0 20px rgba(var(--primary-rgb), 0.3);
    filter: brightness(1.1);
  }
}
@keyframes investmentGlow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(var(--success-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 10px rgba(var(--success-rgb), 0.5), 0 0 20px rgba(var(--success-rgb), 0.3);
  }
}
@keyframes professionalFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes metricCounter {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.investment-card {
  transition: all var(--transition-normal);
}
.investment-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--shadow-rgb), 0.15), 0 0 0 1px rgba(var(--primary-rgb), 0.1);
}

.metric-display {
  animation: metricCounter 0.6s ease-out;
}
.metric-display.positive {
  color: var(--success);
  text-shadow: 0 0 8px rgba(var(--success-rgb), 0.3);
}
.metric-display.negative {
  color: var(--error);
  text-shadow: 0 0 8px rgba(var(--error-rgb), 0.3);
}

* {
  transition: background-color var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), box-shadow var(--transition-normal);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .neon-glow {
    animation: none;
  }
}
@media (prefers-contrast: high) {
  :root[data-theme=light] {
    --glass-bg: rgba(var(--background-rgb), 0.9);
    --glass-border: rgba(var(--border-rgb), 0.6);
  }
  :root[data-theme=dark] {
    --glass-bg: rgba(var(--background-rgb), 0.1);
    --glass-border: rgba(var(--border-rgb), 0.4);
  }
}

/*# sourceMappingURL=all-themes.css.map */
