.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%,
    100% {
        transform: translate3d(0, 0, 0) rotate(-1deg);
    }
    50% {
        transform: translate3d(0, -18px, 0) rotate(1deg);
    }
}

@keyframes pricingPulse {
    0%,
    100% {
        box-shadow: 0 28px 110px rgba(103, 232, 249, 0.14), 0 34px 100px rgba(0, 0, 0, 0.34);
    }
    50% {
        box-shadow: 0 28px 130px rgba(190, 242, 100, 0.16), 0 34px 100px rgba(0, 0, 0, 0.34);
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
