/* ==================== ANIMATIONS ==================== */

/* Quirky text wobble */
@keyframes wobble {
    0%, 100% {
        transform: rotate(-2deg);
    }
    50% {
        transform: rotate(-1deg) translateY(-1px);
    }
}

/* Fade in on load */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered entrance animations */
.header {
    animation: fadeIn 0.5s ease-out;
}

.hero-section {
    animation: fadeIn 0.5s ease-out 0.1s backwards;
}

.signup-card {
    animation: fadeIn 0.5s ease-out 0.2s backwards;
}

/* Button success pulse */
@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.notify-btn.success {
    animation: successPulse 0.4s ease-out;
}

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