:root {
    --strategy-ink: #0b1830;
    --strategy-ink-soft: #34435d;
    --strategy-muted: #53617a;
    --strategy-surface: #f4f8ff;
    --strategy-white: #ffffff;
    --strategy-blue: #155eef;
    --strategy-blue-deep: #1047b8;
    --strategy-green: #087a45;
    --strategy-cyan: #0b7187;
    --strategy-focus: #073f9d;
    --strategy-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --strategy-cycle-duration: 7000ms;
    --strategy-content-width: 1380px;
}

.strategy-ticker {
    position: relative;
    z-index: 4;
    padding-bottom: 0.7rem !important;
    background: linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
}

.strategy-ticker .strip-card {
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 10px 30px rgba(33, 65, 116, 0.08);
}

.strategy-ticker .ticker-item {
    min-height: 30px;
}

.strategy-hero {
    position: relative;
    isolation: isolate;
    height: 720px;
    min-height: 720px;
    overflow: hidden;
    background: #dce9fb;
    color: var(--strategy-ink);
}

.strategy-hero-scenes,
.strategy-scene,
.strategy-scene-shade {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.strategy-hero-scenes {
    z-index: 0;
    overflow: hidden;
    background: #dce9fb;
}

.strategy-scene {
    opacity: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: translate3d(-1.5%, 0, 0) scale(1.025);
    transition:
        opacity 360ms ease,
        transform 360ms var(--strategy-ease);
    will-change: opacity, transform;
}

.strategy-scene--cashflow {
    background-image: url("../img/homepage/strategy-cashflow-20260721.webp");
}

.strategy-scene--climb {
    background-image: url("../img/homepage/strategy-climb-20260721.webp");
}

.strategy-scene--prediction {
    background-image: url("../img/homepage/strategy-prediction-20260721.webp");
}

.strategy-hero[data-active-strategy="cashflow"] .strategy-scene--cashflow,
.strategy-hero[data-active-strategy="climb"] .strategy-scene--climb,
.strategy-hero[data-active-strategy="prediction"] .strategy-scene--prediction {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.strategy-scene-shade {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(245, 249, 255, 0.97) 0%, rgba(238, 246, 255, 0.9) 22%, rgba(236, 244, 255, 0.12) 62%, rgba(236, 244, 255, 0.08) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(213, 229, 251, 0.16));
}

.strategy-shell {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
    max-width: var(--strategy-content-width);
    min-height: inherit;
    flex-direction: column;
    margin: 0 auto;
    padding-top: 5px;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.strategy-stage {
    display: flex;
    min-height: clamp(400px, calc(100svh - 22rem), 520px);
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-start;
    padding: clamp(1.6rem, 3.5vh, 2.8rem) 0;
}

.strategy-stage-panels {
    display: grid;
    width: min(47vw, 590px);
    justify-items: start;
}

.strategy-stage-panel {
    grid-area: 1 / 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    text-align: left;
    transform: translate3d(-34px, 0, 0);
    transition:
        opacity 230ms ease,
        transform 300ms var(--strategy-ease);
}

.strategy-stage-panel.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 70ms;
}

.strategy-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--strategy-cyan);
    font-size: clamp(0.72rem, 0.85vw, 0.82rem);
    font-weight: 850;
    letter-spacing: 0.2em;
    line-height: 1.4;
}

.strategy-hero-kicker::after {
    content: "";
    width: 2rem;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.strategy-stage-panel h2 {
    max-width: 11ch;
    margin-top: 0.55rem;
    color: var(--strategy-ink);
    font-size: clamp(3.1rem, 5.2vw, 5.4rem);
    font-weight: 900;
    font-kerning: normal;
    line-height: 1.02;
    letter-spacing: -0.025em;
    overflow-wrap: normal;
    text-wrap: balance;
    word-spacing: 0.06em;
}

.strategy-stage-panel[data-strategy-panel="prediction"] h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 4.6vw, 4.8rem);
}

.strategy-stage-lead {
    max-width: 31rem;
    margin-top: 0.9rem;
    color: var(--strategy-ink-soft);
    font-size: clamp(0.95rem, 1.2vw, 1.08rem);
    font-weight: 570;
    line-height: 1.65;
}

.strategy-hero-metric {
    display: flex;
    min-height: 6.35rem;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-top: 1.15rem;
    padding-left: 1rem;
    border-left: 3px solid var(--strategy-blue);
    font-variant-numeric: tabular-nums;
}

.strategy-stage-panel[data-strategy-panel="climb"] .strategy-hero-metric {
    border-left-color: var(--strategy-green);
}

.strategy-stage-panel[data-strategy-panel="prediction"] .strategy-hero-metric {
    border-left-color: var(--strategy-cyan);
}

.strategy-hero-metric > span {
    color: var(--strategy-muted);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.strategy-hero-metric strong {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.62rem;
    margin-top: 0.18rem;
    color: var(--strategy-blue-deep);
    font-size: clamp(2rem, 3.2vw, 3.35rem);
    font-weight: 900;
    line-height: 1;
    font-kerning: normal;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.012em;
    word-spacing: 0.12em;
    white-space: nowrap;
}

.strategy-stage-panel[data-strategy-panel="climb"] .strategy-hero-metric strong {
    color: var(--strategy-green);
    font-size: clamp(1.85rem, 2.8vw, 2.9rem);
}

.strategy-stage-panel[data-strategy-panel="prediction"] .strategy-hero-metric strong {
    color: var(--strategy-cyan);
}

.strategy-hero-metric strong span {
    font-size: 0.55em;
}

.strategy-hero-metric strong small {
    font-size: 0.62em;
    font-weight: 850;
}

.strategy-hero-metric strong b {
    color: #64748b;
    font-size: 0.55em;
    font-weight: 700;
}

.strategy-hero-metric em {
    margin-top: 0.35rem;
    color: var(--strategy-ink-soft);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 700;
}

.strategy-stage-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.strategy-primary-action,
.strategy-zoom-action,
.strategy-secondary-action {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 820;
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms var(--strategy-ease);
}

.strategy-primary-action {
    padding: 0.78rem 1.35rem;
    background: var(--strategy-blue);
    box-shadow: 0 12px 28px rgba(21, 94, 239, 0.23);
    color: var(--strategy-white);
}

.strategy-zoom-action {
    padding: 0.72rem 1.18rem;
    border: 1px solid rgba(21, 94, 239, 0.42);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(21, 94, 239, 0.1);
    color: #1047b8;
}

.strategy-zoom-action::before {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    margin-right: 0.48rem;
    border-radius: 999px;
    background: #2d8cff;
    box-shadow: 0 0 0 4px rgba(45, 140, 255, 0.12);
}

.strategy-stage-panel[data-strategy-panel="climb"] .strategy-primary-action {
    background: var(--strategy-green);
    box-shadow: 0 12px 28px rgba(8, 122, 69, 0.2);
}

.strategy-stage-panel[data-strategy-panel="prediction"] .strategy-primary-action {
    background: var(--strategy-cyan);
    box-shadow: 0 12px 28px rgba(11, 113, 135, 0.2);
}

.strategy-secondary-action {
    gap: 0.4rem;
    padding: 0.75rem 0.25rem;
    color: #273650;
}

.strategy-primary-action:hover,
.strategy-zoom-action:hover,
.strategy-secondary-action:hover {
    transform: translateY(-2px);
}

.strategy-zoom-action:hover {
    border-color: rgba(21, 94, 239, 0.68);
    background: #ffffff;
    box-shadow: 0 12px 28px rgba(21, 94, 239, 0.16);
}

.strategy-primary-action:hover {
    box-shadow: 0 16px 34px rgba(21, 94, 239, 0.3);
}

.strategy-primary-action:active,
.strategy-zoom-action:active,
.strategy-secondary-action:active {
    transform: scale(0.98);
}

.strategy-switcher {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 1.25rem;
    background: rgba(248, 251, 255, 0.84);
    box-shadow: 0 18px 50px rgba(31, 63, 113, 0.13);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    transform: translateY(-20px);
}

.strategy-tab {
    position: relative;
    display: grid;
    min-width: 0;
    min-height: 92px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.8rem;
    align-items: center;
    padding: 1rem 1.15rem;
    border: 0;
    border-right: 1px solid rgba(74, 101, 142, 0.16);
    background: transparent;
    color: var(--strategy-ink);
    cursor: pointer;
    text-align: left;
    text-decoration: none;
    touch-action: manipulation;
    transition:
        color 180ms ease,
        background-color 180ms ease;
}

.strategy-tab:last-child {
    border-right: 0;
}

.strategy-tab:hover,
.strategy-tab.is-active {
    background: rgba(255, 255, 255, 0.78);
}

.strategy-tab-index {
    color: #728198;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.1em;
}

.strategy-tab-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.22rem;
}

.strategy-tab-copy strong {
    overflow: hidden;
    color: var(--strategy-ink);
    font-size: clamp(0.88rem, 1.25vw, 1.05rem);
    font-weight: 850;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.strategy-tab-copy em {
    overflow: hidden;
    color: var(--strategy-muted);
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.strategy-tab-arrow {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(49, 73, 109, 0.17);
    border-radius: 999px;
    color: #52627a;
    font-size: 1rem;
    transform: rotate(0deg);
    transition:
        color 180ms ease,
        border-color 180ms ease,
        transform 220ms var(--strategy-ease);
}

.strategy-tab:hover .strategy-tab-arrow,
.strategy-tab.is-active .strategy-tab-arrow {
    border-color: rgba(21, 94, 239, 0.35);
    color: var(--strategy-blue);
    transform: rotate(45deg);
}

.strategy-tab-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--strategy-blue);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left center;
}

.strategy-tab[data-strategy-target="climb"] .strategy-tab-progress {
    background: var(--strategy-green);
}

.strategy-tab[data-strategy-target="prediction"] .strategy-tab-progress {
    background: var(--strategy-cyan);
}

.strategy-tab.is-active .strategy-tab-progress {
    opacity: 1;
    transform: scaleX(1);
}

.strategy-hero[data-is-autoplaying="true"] .strategy-tab.is-active .strategy-tab-progress {
    animation: strategy-tab-progress var(--strategy-cycle-duration) linear both;
}

.strategy-primary-action:focus-visible,
.strategy-zoom-action:focus-visible,
.strategy-secondary-action:focus-visible,
.strategy-tab:focus-visible {
    outline: 3px solid var(--strategy-focus);
    outline-offset: -3px;
}

.strategy-primary-action:focus-visible,
.strategy-zoom-action:focus-visible,
.strategy-secondary-action:focus-visible {
    outline-offset: 3px;
}

.strategy-subscribe-section {
    position: relative;
    z-index: 3;
    padding: 1.75rem 0 0.65rem;
}

.strategy-subscribe-section .demo-shell {
    max-width: var(--strategy-content-width);
}

.strategy-subscribe-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    gap: clamp(2rem, 3.5vw, 3.5rem);
    align-items: center;
    padding: clamp(1.75rem, 3vw, 2.7rem) 0 clamp(2rem, 3.4vw, 3rem);
}

.strategy-promo-carousel {
    min-width: 0;
}

.strategy-promo-viewport {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 1.4rem;
    background: #dce9fb;
    box-shadow: 0 18px 48px rgba(31, 63, 113, 0.14);
}

.strategy-promo-track {
    display: flex;
    width: 100%;
    height: 100%;
    transform: translate3d(0, 0, 0);
    transition: transform 360ms var(--strategy-ease);
    will-change: transform;
}

.strategy-promo-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

.strategy-promo-link,
.strategy-promo-image {
    display: block;
    width: 100%;
    height: 100%;
}

.strategy-promo-link {
    cursor: pointer;
    touch-action: manipulation;
}

.strategy-promo-image {
    object-fit: cover;
    transition: transform 500ms var(--strategy-ease);
}

.strategy-promo-link:hover .strategy-promo-image {
    transform: scale(1.015);
}

.strategy-promo-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(8, 24, 48, 0.58);
    box-shadow: 0 8px 22px rgba(8, 24, 48, 0.16);
    color: #ffffff;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity 180ms ease, background-color 180ms ease;
}

.strategy-promo-arrow--previous {
    left: 1rem;
}

.strategy-promo-arrow--next {
    right: 1rem;
}

.strategy-promo-viewport:hover .strategy-promo-arrow,
.strategy-promo-viewport:focus-within .strategy-promo-arrow {
    opacity: 1;
}

.strategy-promo-arrow:hover {
    background: rgba(8, 24, 48, 0.78);
}

.strategy-promo-dots {
    position: absolute;
    right: 50%;
    bottom: 0.85rem;
    z-index: 2;
    display: flex;
    gap: 0;
    align-items: center;
    padding: 0.45rem 0.6rem;
    border-radius: 999px;
    background: rgba(8, 24, 48, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateX(50%);
}

.strategy-promo-dot {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.strategy-promo-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    transform: translate(-50%, -50%);
    transition: width 180ms ease, background-color 180ms ease;
}

.strategy-promo-dot.is-active::after {
    width: 14px;
    background: #ffffff;
}

.strategy-promo-arrow:focus-visible,
.strategy-promo-dot:focus-visible,
.strategy-promo-link:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: -4px;
}

.strategy-subscribe-panel {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 1.4rem;
    align-items: stretch;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.strategy-subscribe-copy {
    display: grid;
    gap: 0.82rem;
    align-content: center;
}

.strategy-subscribe-panel .briefing-title {
    margin-top: 0.38rem;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 800;
    font-kerning: normal;
    line-height: 1.18;
    letter-spacing: -0.015em;
}

.strategy-subscribe-panel .briefing-copy {
    max-width: 36rem;
    font-size: 0.92rem;
    line-height: 1.75;
}

.strategy-subscribe-panel form {
    width: 100%;
    max-width: none;
}

.strategy-community-proof {
    color: #52627a;
    font-size: 0.78rem;
    font-weight: 700;
}

.strategy-community-proof strong {
    display: inline-block;
    margin-inline: 0.16em;
    color: var(--strategy-green);
    font-weight: 900;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.015em;
}

.strategy-subscribe-panel .hero-subscribe-form input,
.strategy-subscribe-panel .hero-subscribe-form button,
.strategy-subscribe-panel .interest-tag {
    min-height: 44px;
}

@keyframes strategy-tab-progress {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@media (max-width: 1023px) {
    .strategy-shell {
        max-width: none;
    }

    .strategy-stage {
        min-height: 510px;
        padding-right: 0;
        padding-left: 0;
    }

    .strategy-stage-panels {
        width: min(63vw, 560px);
    }

    .strategy-stage-panel h2 {
        font-size: clamp(3rem, 8vw, 4.8rem);
    }

    .strategy-tab {
        gap: 0.55rem;
        padding-inline: 0.85rem;
    }

    .strategy-tab-arrow {
        width: 30px;
        height: 30px;
    }

    .strategy-subscribe-layout {
        grid-template-columns: minmax(0, 7fr) minmax(340px, 5fr);
        gap: 1.75rem;
    }

    .strategy-subscribe-panel {
        gap: 1.15rem;
    }
}

@media (max-width: 900px) {
    .strategy-subscribe-layout {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

@media (max-width: 767px) {
    .strategy-ticker {
        padding-bottom: 0.55rem !important;
    }

    .strategy-ticker .strip-card {
        border-radius: 1rem;
    }

    .strategy-hero {
        min-height: 650px;
    }

    .strategy-shell {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .strategy-scene {
        background-position: 42% center;
    }

    .strategy-scene-shade {
        background:
            linear-gradient(90deg, rgba(247, 250, 255, 0.98) 0%, rgba(240, 247, 255, 0.78) 62%, rgba(237, 245, 255, 0.28) 100%),
            linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(214, 230, 251, 0.16));
    }

    .strategy-stage {
        min-height: 492px;
        padding: 1.4rem 0;
    }

    .strategy-stage-panels {
        width: min(84vw, 430px);
    }

    .strategy-stage-panel h2,
    .strategy-stage-panel[data-strategy-panel="prediction"] h2 {
        margin-top: 0.45rem;
        font-size: clamp(2.55rem, 12.5vw, 3.7rem);
        line-height: 1.04;
        letter-spacing: -0.018em;
        word-spacing: 0.04em;
    }

    .strategy-hero-kicker {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .strategy-stage-lead {
        max-width: 22rem;
        margin-top: 0.7rem;
        font-size: 0.91rem;
        line-height: 1.55;
    }

    .strategy-hero-metric {
        min-height: 5.6rem;
        margin-top: 0.8rem;
        padding-right: 0;
        padding-left: 0.75rem;
    }

    .strategy-hero-metric strong,
    .strategy-stage-panel[data-strategy-panel="climb"] .strategy-hero-metric strong {
        font-size: clamp(1.7rem, 8.3vw, 2.3rem);
    }

    .strategy-hero-metric > span,
    .strategy-hero-metric em {
        font-size: 0.72rem;
    }

    .strategy-stage-actions {
        gap: 0.55rem;
        margin-top: 1rem;
        padding-right: 0;
    }

    .strategy-primary-action,
    .strategy-zoom-action,
    .strategy-secondary-action {
        min-height: 44px;
        font-size: 0.78rem;
    }

    .strategy-primary-action {
        padding-inline: 1rem;
    }

    .strategy-zoom-action {
        padding-inline: 0.95rem;
    }

    .strategy-switcher {
        border-radius: 1rem;
    }

    .strategy-tab {
        min-height: 88px;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        justify-items: start;
        padding: 0.75rem 0.55rem;
        text-align: left;
    }

    .strategy-tab-index,
    .strategy-tab-arrow {
        display: none;
    }

    .strategy-tab-copy {
        align-items: flex-start;
        gap: 0.32rem;
    }

    .strategy-tab-copy strong {
        max-width: 100%;
        font-size: 0.78rem;
        white-space: normal;
    }

    .strategy-tab-copy em {
        width: 100%;
        font-size: 0.65rem;
    }

    .strategy-subscribe-section {
        padding-top: 1.1rem;
    }

    .strategy-subscribe-panel {
        gap: 1.25rem;
        padding: 0 0 0.85rem;
    }

    .strategy-promo-viewport {
        border-radius: 1rem;
    }

    .strategy-promo-arrow {
        width: 44px;
        height: 44px;
        opacity: 1;
    }

    .strategy-promo-arrow--previous {
        left: 0.65rem;
    }

    .strategy-promo-arrow--next {
        right: 0.65rem;
    }

    .strategy-subscribe-panel .briefing-copy {
        font-size: 0.9rem;
    }
}

@media (max-width: 390px) {
    .strategy-hero {
        min-height: 620px;
    }

    .strategy-stage {
        min-height: 470px;
        padding-inline: 0;
    }

    .strategy-stage-panel h2,
    .strategy-stage-panel[data-strategy-panel="prediction"] h2 {
        font-size: 2.55rem;
    }

    .strategy-stage-lead {
        max-width: 19rem;
        font-size: 0.86rem;
    }

    .strategy-primary-action,
    .strategy-zoom-action,
    .strategy-secondary-action {
        font-size: 0.74rem;
    }

    .strategy-tab-copy strong {
        font-size: 0.72rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .strategy-scene,
    .strategy-stage-panel,
    .strategy-primary-action,
    .strategy-zoom-action,
    .strategy-secondary-action,
    .strategy-tab,
    .strategy-tab-arrow,
    .strategy-tab-progress {
        animation: none !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .strategy-scene {
        transform: none !important;
    }

    .strategy-primary-action:hover,
    .strategy-zoom-action:hover,
    .strategy-secondary-action:hover,
    .strategy-primary-action:active,
    .strategy-zoom-action:active,
    .strategy-secondary-action:active {
        transform: none;
    }

    .strategy-promo-track,
    .strategy-promo-image {
        transition: none !important;
    }
}
