/**
 * STINA Hero Future — 3D launch chamber
 */

.hero-future {
    position: relative;
    min-height: calc(100dvh - var(--navbar-height));
    display: flex;
    align-items: center;
    overflow: hidden;
    background: transparent;
    padding: 2rem 0 3.5rem;
}

/* ── Background layers ── */
.hero-future__void {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1000px 650px at 12% 15%, rgba(27, 77, 46, 0.1) 0%, transparent 55%),
        radial-gradient(900px 600px at 88% 20%, rgba(197, 160, 115, 0.08) 0%, transparent 52%),
        linear-gradient(180deg, var(--home-bg) 0%, var(--home-bg-alt) 100%);
    pointer-events: none;
}

.hero-future__aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.35;
    animation: hero-aurora 14s ease-in-out infinite;
}

.hero-future__aurora--1 {
    width: 420px;
    height: 420px;
    background: rgba(27, 77, 46, 0.12);
    top: -8%;
    right: 5%;
}

.hero-future__aurora--2 {
    width: 340px;
    height: 340px;
    background: rgba(197, 160, 115, 0.1);
    bottom: 5%;
    left: -5%;
    animation-delay: -6s;
}

@keyframes hero-aurora {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(24px, -18px) scale(1.08); opacity: 0.55; }
}

.hero-future__grid {
    position: absolute;
    bottom: 0;
    left: -25%;
    right: -25%;
    height: 58%;
    background-image:
        linear-gradient(rgba(27, 77, 46, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 77, 46, 0.07) 1px, transparent 1px);
    background-size: 52px 52px;
    transform: perspective(520px) rotateX(78deg);
    transform-origin: center top;
    mask-image: linear-gradient(to top, black 8%, transparent 88%);
    -webkit-mask-image: linear-gradient(to top, black 8%, transparent 88%);
    animation: hero-grid-flow 18s linear infinite;
    pointer-events: none;
    opacity: 0.45;
}

@keyframes hero-grid-flow {
    from { background-position: 0 0; }
    to { background-position: 0 52px; }
}

.hero-future__stars {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(27, 77, 46, 0.12) 1px, transparent 1px);
    background-size: 120px 120px;
    opacity: 0.15;
    animation: hero-stars-drift 60s linear infinite;
    pointer-events: none;
}

@keyframes hero-stars-drift {
    from { transform: translateY(0); }
    to { transform: translateY(-120px); }
}

.hero-future__speedlines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.35;
}

.hero-future__speedline {
    position: absolute;
    top: calc(15% + var(--sl) * 9%);
    left: 55%;
    width: min(180px, 30vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 77, 46, 0.35), transparent);
    transform-origin: left center;
    animation: hero-speedline 2.8s ease-in-out infinite;
    animation-delay: calc(var(--sl) * 0.25s);
    opacity: 0;
}

@keyframes hero-speedline {
    0% { opacity: 0; transform: scaleX(0.3) translateX(0); }
    40% { opacity: 0.9; transform: scaleX(1) translateX(20px); }
    100% { opacity: 0; transform: scaleX(0.5) translateX(80px); }
}

/* ── Content panel ── */
.hero-future__container {
    position: relative;
    z-index: 4;
}

.hero-future__content {
    color: var(--stina-green-dark);
}

.hero-future__left-wrap {
    display: flex;
    flex-direction: column;
}

.hero-future__reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-future.is-ready .hero-future__reveal--1 { transition-delay: 0.1s; opacity: 1; transform: none; }
.hero-future.is-ready .hero-future__reveal--2 { transition-delay: 0.25s; opacity: 1; transform: none; }
.hero-future.is-ready .hero-future__reveal--3 { transition-delay: 0.4s; opacity: 1; transform: none; }
.hero-future.is-ready .hero-future__reveal--4 { transition-delay: 0.55s; opacity: 1; transform: none; }
.hero-future.is-ready .hero-future__reveal--5 { transition-delay: 0.7s; opacity: 1; transform: none; }
.hero-future.is-ready .hero-future__reveal--6 { transition-delay: 0.85s; opacity: 1; transform: none; }

.hero-future__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    background: rgba(27, 77, 46, 0.08);
    border: 1px solid rgba(27, 77, 46, 0.18);
    border-radius: 50px;
    color: var(--stina-green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.15rem;
}

.hero-future__badge-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--stina-green);
    box-shadow: 0 0 0 4px rgba(27, 77, 46, 0.12);
    animation: hero-pulse 2s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-future__title {
    font-size: clamp(2.15rem, 4.8vw, 3.85rem);
    color: var(--stina-green-dark);
    margin-bottom: 1rem;
    line-height: 1.08;
    overflow: hidden;
}

.hero-future__sync-line {
    display: block;
    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.75s ease;
    will-change: opacity, transform, filter;
}

.hero-future__sync-line.is-leaving {
    opacity: 0;
    transform: translateY(-1.15rem);
    filter: blur(8px);
}

.hero-future__sync-line.is-entering {
    opacity: 0;
    transform: translateY(1.35rem);
    filter: blur(6px);
}

.hero-future__sync-line--lead.is-leaving {
    transform: translateY(-0.55rem);
    filter: blur(4px);
}

.hero-future__sync-line--lead.is-entering {
    transform: translateY(0.75rem);
    filter: blur(3px);
}

.hero-future__lead {
    font-size: clamp(1rem, 1.8vw, 1.12rem);
    color: var(--stina-gray);
    max-width: 480px;
    margin-bottom: 1.35rem;
    line-height: 1.75;
    overflow: hidden;
}

#hero-primary-cta {
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-future__chips {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.hero-future__chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.85rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--home-stroke);
    border-radius: 8px;
    font-size: 0.88rem;
    color: var(--stina-green-dark);
    width: fit-content;
    box-shadow: 0 8px 24px rgba(13, 18, 16, 0.04);
}

.hero-future__chip-icon {
    color: var(--stina-green);
    display: flex;
}

.hero-future__actions {
    margin-bottom: 1.75rem;
}

.hero-future__stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--home-stroke);
}

.hero-future__stat-value {
    display: block;
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--stina-green);
    line-height: 1.1;
}

.hero-future__stat-label {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--stina-gray);
}

.hero-future .btn-hero-outline {
    color: var(--stina-green-dark);
    border: 2px solid rgba(27, 77, 46, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.hero-future .btn-hero-outline:hover {
    color: var(--stina-white);
    background: var(--stina-green);
    border-color: var(--stina-green);
}

/* ── 3D Chamber ── */
.hero-future__visual-col {
    position: relative;
}

.hero-future__stage {
    position: relative;
    perspective: 1400px;
    perspective-origin: 50% 45%;
    min-height: calc(var(--hero-slider-height, 700px) + 3rem);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-future__chamber--slider {
    transform: none !important;
    transform-style: flat;
    opacity: 1;
}

.hero-future__chamber--slider .hero-future__pod-glow {
    filter: blur(20px);
    opacity: 0.55;
}

.hero-future:has(.hero-future__chamber--slider) .hero-future__stage {
    perspective: none;
}

.hero-future__chamber--slider .hero-future__slide img {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.hero-future__chamber {
    position: relative;
    width: min(100%, calc(var(--hero-slider-width, 520px) + 7rem));
    max-width: 100%;
    margin: 0 auto;
    transform-style: preserve-3d;
    opacity: 0;
    transform: scale(0.88) translateZ(-60px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s, transform 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.hero-future.is-ready .hero-future__chamber {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.hero-future__tunnel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 110%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    pointer-events: none;
    z-index: 0;
}

.hero-future__ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - var(--ring) * 9%);
    height: calc(75% - var(--ring) * 7%);
    transform: translate(-50%, -50%) translateZ(calc(var(--ring) * -38px)) rotateX(10deg);
    border: 1px solid rgba(197, 160, 115, calc(0.4 - var(--ring) * 0.05));
    border-radius: 50% / 42%;
    opacity: calc(1 - var(--ring) * 0.12);
    animation: hero-ring-pulse 3.5s ease-in-out infinite;
    animation-delay: calc(var(--ring) * 0.18s);
}

@keyframes hero-ring-pulse {
    0%, 100% { border-color: rgba(197, 160, 115, 0.12); }
    50% { border-color: rgba(197, 160, 115, 0.38); }
}

.hero-future__beams {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-future__beam {
    position: absolute;
    top: 10%;
    bottom: 15%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 115, 0.55), transparent);
    box-shadow: 0 0 20px rgba(197, 160, 115, 0.35);
    opacity: 0.6;
}

.hero-future__beam--l { left: 8%; }
.hero-future__beam--r { right: 8%; }

.hero-future__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 105%;
    height: 105%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.hero-future__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(197, 160, 115, 0.25);
    border-radius: 50%;
}

.hero-future__orbit-ring--1 {
    animation: hero-orbit 22s linear infinite;
}

.hero-future__orbit-ring--2 {
    inset: 8%;
    border-style: solid;
    border-color: rgba(27, 77, 46, 0.35);
    animation: hero-orbit 16s linear infinite reverse;
}

@keyframes hero-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ── Product pod (XR) ── */
.hero-future__slider-shell {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    width: 100%;
    max-width: calc(var(--hero-slider-width, 520px) + 7rem);
    margin: 0 auto;
}

.hero-future__slider-shell .hero-future__pod {
    flex: 1 1 auto;
    min-width: 0;
    max-width: min(100%, calc(var(--hero-slider-width, 520px) + 2rem));
}

.hero-future__slider-arrow {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(197, 160, 115, 0.45);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--stina-green-dark);
    box-shadow: 0 8px 22px rgba(13, 18, 16, 0.12);
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-future__slider-arrow:hover {
    background: var(--stina-green);
    border-color: var(--stina-green);
    color: var(--stina-white);
    box-shadow: 0 10px 26px rgba(27, 77, 46, 0.22);
    transform: scale(1.05);
}

.hero-future__slider-arrow:active {
    transform: scale(0.96);
}

.hero-future__slider-arrow:focus-visible {
    outline: 2px solid var(--stina-gold);
    outline-offset: 3px;
}

.hero-future__pod {
    position: relative;
    z-index: 5;
    margin: 0 auto;
    width: 100%;
    padding: 1rem;
    transform: none;
    transform-style: flat;
}

.hero-future__corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(197, 160, 115, 0.75);
    border-style: solid;
    pointer-events: none;
    z-index: 6;
}

.hero-future__corner--tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.hero-future__corner--tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.hero-future__corner--bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.hero-future__corner--br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.hero-future__pod-glow {
    position: absolute;
    inset: -15%;
    background: radial-gradient(circle, rgba(197, 160, 115, 0.2) 0%, rgba(27, 77, 46, 0.15) 45%, transparent 70%);
    filter: blur(30px);
    pointer-events: none;
    animation: hero-glow-breathe 5s ease-in-out infinite;
}

@keyframes hero-glow-breathe {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.06); }
}

.hero-future__viewport {
    position: relative;
    width: min(100%, var(--hero-slider-width, 520px));
    height: var(--hero-slider-height, 700px);
    max-width: 100%;
    margin: 0 auto;
    border-radius: calc(var(--stina-radius-lg) - 4px);
    overflow: hidden;
    background: #fff;
    border: 2px solid rgba(197, 160, 115, 0.5);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08) inset,
        0 32px 64px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(197, 160, 115, 0.15);
    isolation: isolate;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-future__iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: grab;
}

.hero-future__iframe:active {
    cursor: grabbing;
}

.hero-future__slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100%;
}

.hero-future__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-future__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.hero-future__slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--hero-slider-object-fit, contain);
    object-position: center center;
    backface-visibility: hidden;
    image-rendering: auto;
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(1.04);
    transition: transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-future__slide.is-active img {
    transform: scale(1);
}

.hero-future__slider--zoom .hero-future__slide.is-active {
    cursor: none;
}

.hero-future__magnifier {
    position: absolute;
    width: var(--hero-slider-lens-size, 160px);
    height: var(--hero-slider-lens-size, 160px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.96);
    box-shadow:
        0 10px 28px rgba(13, 18, 16, 0.28),
        inset 0 0 0 1px rgba(197, 160, 115, 0.55);
    overflow: hidden;
    pointer-events: none;
    z-index: 6;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.12s ease;
}

.hero-future__magnifier.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-future__magnifier img {
    position: absolute;
    top: 0;
    left: 0;
    max-width: none;
    max-height: none;
    width: auto;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

.hero-future__scan {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 115, 0.85), rgba(255,255,255,0.5), rgba(197, 160, 115, 0.85), transparent);
    box-shadow: 0 0 14px rgba(197, 160, 115, 0.6);
    animation: hero-scan 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes hero-scan {
    0%, 100% { top: 0; opacity: 0; }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.hero-future__shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.2) 48%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.2) 52%, transparent 58%);
    pointer-events: none;
    animation: hero-shimmer 5s ease-in-out infinite;
    z-index: 3;
}

@keyframes hero-shimmer {
    0%, 100% { transform: translateX(-120%); opacity: 0; }
    45% { opacity: 1; }
    55% { transform: translateX(120%); opacity: 0; }
}

.hero-future__pod-hud {
    margin-top: 0.85rem;
    text-align: center;
}

.hero-future__pod-hint {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    color: var(--stina-gray);
    font-size: 0.78rem;
    font-weight: 500;
    box-shadow: 0 8px 24px rgba(13, 18, 16, 0.06);
}

.hero-future__pod-hint-icon {
    color: var(--stina-green);
    display: flex;
    animation: hero-spin 10s linear infinite;
}

@keyframes hero-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-future__live-badge {
    position: absolute;
    top: 0;
    right: 5%;
    z-index: 8;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--home-stroke);
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stina-green);
    box-shadow: 0 8px 20px rgba(13, 18, 16, 0.06);
}

.hero-future__live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: hero-pulse 1.5s ease-in-out infinite;
}

/* ── Scroll cue ── */
.hero-future__scroll {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--stina-gray);
    transition: color 0.3s ease;
    opacity: 0;
    animation: hero-scroll-in 0.8s ease 1.2s forwards;
}

.hero-future__scroll:hover {
    color: var(--stina-green);
}

.hero-future__scroll-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-future__scroll-line {
    display: block;
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(27, 77, 46, 0.45), transparent);
    animation: hero-scroll-line 2s ease-in-out infinite;
}

@keyframes hero-scroll-in {
    to { opacity: 1; }
}

@keyframes hero-scroll-line {
    0%, 100% { opacity: 0.35; transform: scaleY(0.65); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .hero-future {
        min-height: auto;
        padding: 1.5rem 0 3rem;
    }

    .hero-future__stage {
        perspective: none;
        min-height: calc(var(--hero-slider-height, 700px) + 2rem);
        padding: 0.5rem 0 1rem;
    }

    .hero-future__chamber {
        width: min(100%, calc(var(--hero-slider-width, 520px) + 2rem));
    }

    .hero-future__content {
        text-align: center;
    }

    .hero-future__lead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-future__chips {
        align-items: center;
    }

    .hero-future__actions {
        justify-content: center;
    }

    .hero-future__stats {
        justify-content: center;
    }

    .hero-future__speedlines {
        opacity: 0.25;
    }

    .hero-future__scroll {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .hero-future {
        padding: 1.25rem 0 2.5rem;
    }

    .hero-future__title {
        font-size: clamp(1.7rem, 7.5vw, 2.2rem);
    }

    .hero-future__lead {
        font-size: 0.94rem;
    }

    .hero-future__chip {
        font-size: 0.82rem;
        width: 100%;
        max-width: 320px;
    }

    .hero-future__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-future__stats {
        gap: 0.75rem 1.25rem;
    }

    .hero-future__stat-value {
        font-size: 1.25rem;
    }

    .hero-future__pod {
        padding: 0.65rem;
    }

    .hero-future__viewport {
        width: min(100%, var(--hero-slider-width, 520px));
        height: min(var(--hero-slider-height, 700px), 85vh);
    }

    .hero-future__corner {
        width: 20px;
        height: 20px;
    }

    .hero-future__live-badge {
        top: -4px;
        right: 2%;
        font-size: 0.62rem;
    }

    .hero-future__aurora--1 {
        width: 220px;
        height: 220px;
    }

    .hero-future__aurora--2 {
        width: 180px;
        height: 180px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-future__grid,
    .hero-future__stars,
    .hero-future__aurora,
    .hero-future__speedline,
    .hero-future__ring,
    .hero-future__orbit-ring,
    .hero-future__scan,
    .hero-future__shimmer,
    .hero-future__pod-glow,
    .hero-future__pod-hint-icon,
    .hero-future__badge-pulse,
    .hero-future__live-dot,
    .hero-future__scroll-line {
        animation: none;
    }

    .hero-future__reveal,
    .hero-future__chamber {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .hero-future__slide,
    .hero-future__slide img,
    .hero-future__sync-line,
    .hero-future__slider-arrow,
    #hero-primary-cta {
        transition: none;
    }

    .hero-future__sync-line.is-leaving,
    .hero-future__sync-line.is-entering {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .hero-future__scroll {
        opacity: 1;
        animation: none;
    }
}
