/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
    }
    50% {
        box-shadow: 0 0 25px rgba(34, 197, 94, 0.25);
    }
    100% {
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

/* Utility Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Children */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }

/* Applied Animations */
.hero-content > * {
    animation: fadeIn 0.8s ease-out forwards;
}

.hero-content h1 { animation-delay: 0.1s; }
.hero-content p { animation-delay: 0.2s; opacity: 0; }
.hero-actions { animation-delay: 0.3s; opacity: 0; }
.disclaimer-badge { animation-delay: 0.4s; opacity: 0; }

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.ambient-pulse {
    animation: pulseGlow 4s infinite ease-in-out;
}