@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes wing-pulse {

    0%,
    100% {
        transform: scale(1) translateY(0);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.05) translateY(-10px);
        opacity: 0.2;
    }
}

.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

/* Image specific animation: Scale up + Fade in */
.animate-image {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-image.visible {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Apple-style Scroll Linked Animation */
.scroll-animate {
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: opacity 0.5s ease-out;
    /* Only smooth opacity */
    will-change: transform, opacity;
}

/* Fly-up Animation (Brand Narrative) */
.fly-up-ready {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fly-up-ready.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Delay classes */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}