@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0.5rem rgba(63, 140, 255, 0.4); }
    50% { box-shadow: 0 0 1.5rem rgba(34, 211, 238, 0.65); }
}

@keyframes rise {
    from { opacity: 0; transform: translateY(1.4rem); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-0.5rem); }
}

.reveal {
    opacity: 0;
    transform: translateY(1.4rem);
}

.reveal.is-visible {
    animation: rise 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.delay-1.is-visible { animation-delay: 0.1s; }
.delay-2.is-visible { animation-delay: 0.18s; }
.delay-3.is-visible { animation-delay: 0.26s; }

.brand__dot,
.btn--primary {
    animation: pulseGlow 2.8s ease-in-out infinite;
}

.hero__panel {
    animation: floatY 6s ease-in-out infinite;
}

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