@keyframes energyPulse {
    0%, 100% { transform: rotate(-7deg) scale(1); }
    50% { transform: rotate(-7deg) scale(1.05); }
}

.hero-z {
    animation: energyPulse 2.8s ease-in-out infinite;
}

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