.reveal-up,
.reveal-left,
.reveal-right,
.scale-in,
.stagger-item {
    opacity: 0;
    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-up,
.stagger-item {
    transform: translate3d(0, 36px, 0);
}

.reveal-left {
    transform: translate3d(-40px, 0, 0);
}

.reveal-right {
    transform: translate3d(40px, 0, 0);
}

.scale-in {
    transform: scale(0.94);
    filter: blur(8px);
}

.reveal-up.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.scale-in.is-visible,
.stagger-item.is-visible,
.is-visible-on-load {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

.hero-copy.is-visible-on-load > * {
    animation: heroFade 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy.is-visible-on-load > *:nth-child(2) {
    animation-delay: 0.08s;
}

.hero-copy.is-visible-on-load > *:nth-child(3) {
    animation-delay: 0.16s;
}

.hero-copy.is-visible-on-load > *:nth-child(4) {
    animation-delay: 0.24s;
}

.hero-copy.is-visible-on-load > *:nth-child(5) {
    animation-delay: 0.32s;
}

.stagger-item:nth-child(2) {
    transition-delay: 0.08s;
}

.stagger-item:nth-child(3) {
    transition-delay: 0.16s;
}

.stagger-item:nth-child(4) {
    transition-delay: 0.24s;
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes mapPulse {
    0%,
    100% {
        opacity: 0.45;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes routeDash {
    to {
        stroke-dashoffset: -220;
    }
}

.map-glow {
    transform-origin: center;
    animation: mapPulse 3.8s ease-in-out infinite;
}

.shipping-map-wrap.is-active .map-route {
    animation: routeDash 6s linear infinite;
}

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

    .reveal-up,
    .reveal-left,
    .reveal-right,
    .scale-in,
    .stagger-item {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-copy.is-visible-on-load > * {
        opacity: 0;
        transform: translateY(24px);
        animation: none;
    }

    .hero-copy.is-visible-on-load .hero-kicker {
        animation: heroFadeUp 0.6s ease-out 0.04s forwards;
    }

    .hero-copy.is-visible-on-load .hero-mini-label {
        animation: heroFadeUp 0.6s ease-out 0.1s forwards;
    }

    .hero-copy.is-visible-on-load .hero-heading {
        animation: heroFadeUp 0.6s ease-out 0.18s forwards;
    }

    .hero-copy.is-visible-on-load .hero-text {
        animation: heroFadeUp 0.6s ease-out 0.28s forwards;
    }

    .hero-copy.is-visible-on-load .hero-buttons {
        animation: heroFadeUp 0.6s ease-out 0.38s forwards;
    }

    .hero-copy.is-visible-on-load .hero-trust {
        animation: heroFadeUp 0.6s ease-out 0.46s forwards;
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-copy.is-visible-on-load .hero-kicker,
.hero-copy.is-visible-on-load .hero-mini-label,
.hero-copy.is-visible-on-load .hero-heading,
.hero-copy.is-visible-on-load .hero-text,
.hero-copy.is-visible-on-load .hero-buttons,
.hero-copy.is-visible-on-load .hero-trust {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
}

.hero-copy.is-visible-on-load .hero-kicker {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.04s;
}

.hero-copy.is-visible-on-load .hero-mini-label {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.1s;
}

.hero-copy.is-visible-on-load .hero-heading {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.18s;
}

.hero-copy.is-visible-on-load .hero-text {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.28s;
}

.hero-copy.is-visible-on-load .hero-buttons {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.36s;
}

.hero-copy.is-visible-on-load .hero-trust {
    animation-name: heroFadeUpRefined;
    animation-delay: 0.44s;
}

@keyframes heroFadeUpRefined {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
