/* ============================================================
   ANIMATIONS & EFFETS NÉON — palette Void/Kai'sa
   ============================================================ */

.neon-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 550px;
    height: 550px;
    background: var(--accent);
    top: -20%;
    right: -12%;
    animation-delay: 0s;
}

.orb-2 {
    width: 380px;
    height: 380px;
    background: var(--accent-2);
    bottom: 0%;
    left: -10%;
    animation-delay: -4s;
    opacity: 0.35;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(199,36,212,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(199,36,212,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

/* Apparition au chargement */
.hero-eyebrow { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.hero-title   { animation: fadeUp 0.7s ease both; animation-delay: 0.25s; }
.hero-desc    { animation: fadeUp 0.7s ease both; animation-delay: 0.4s; }
.hero-actions { animation: fadeUp 0.7s ease both; animation-delay: 0.55s; }

/* Apparition pages intérieures */
.page-hero-eyebrow { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.page-hero-title   { animation: fadeUp 0.6s ease both; animation-delay: 0.22s; }
.page-hero-desc    { animation: fadeUp 0.6s ease both; animation-delay: 0.34s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
    0%, 100% { filter: drop-shadow(0 0 16px rgba(199,36,212,0.4)); }
    50%       { filter: drop-shadow(0 0 36px rgba(199,36,212,0.75)); }
}
.neon-text { animation: glow-pulse 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}