/**
 * Animations & Micro-physics - BioEndurance Luxury Edition
 * Pure CSS Fluid Micro-interactions (Emil Kowalski style)
 * Zero Emojis
 */

@keyframes bioFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-14px) rotate(0.5deg);
    }
}

@keyframes bioPulseGlow {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.75;
        transform: scale(1.04);
    }
}

@keyframes bioBeaconWave {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.6);
        opacity: 0;
    }
}

@keyframes bioFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bio-float-anim {
    animation: bioFloat 7s ease-in-out infinite;
    will-change: transform;
}

.bio-fade-in-up {
    animation: bioFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
