/* ========================================
   ANIMATIONS.CSS – Keyframes & Reveal Effects
   ======================================== */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* Float (for hero cards) already defined in components.css */

/* Pulsing glow for CTA */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 6px 16px rgba(124,58,237,0.22); }
    50% { box-shadow: 0 6px 24px rgba(124,58,237,0.38); }
}

.btn-primary {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Stagger children */
.stagger-children > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}
.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }