/* ===== KEYFRAMES + ANIMATIONS ===== */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 154, 61, 0.5); }
    50% { box-shadow: 0 0 0 10px rgba(255, 154, 61, 0); }
}
@keyframes spin-slow {
    from { transform: rotate(0); }
    to { transform: rotate(360deg); }
}
@keyframes fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: none; }
}
@keyframes typewriter-caret {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero title pulse */
.hero h1 .text-gradient {
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
}

/* Floating logo mark */
.logo__mark { animation: float 5s ease-in-out infinite; }

/* KPI count-up ready state */
.kpi-strip__value[data-counting] { opacity: .4; }

/* Hover lift */
.hoverable { transition: transform .35s cubic-bezier(.19,1,.22,1), box-shadow .35s; }
.hoverable:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}
