:root {
    --xc-fullstory-ink: #32263f;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
    overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
    overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

.xc-fullstory {
    position: relative;
    isolation: isolate;
    overflow: clip;
    z-index: 50;
    background: transparent;
    color: var(--xc-fullstory-ink);
    font-family: "articulat-cf", sans-serif;
    padding-bottom: 4rem;
}

.xc-fullstory * {
    box-sizing: border-box;
}

/* ── Nav hide while xc-fullstory pin is active ──────────────────────────────
   Strategy:
   1. Extend the pinned frame to top:0 / 100vh so the scene imagery covers the
      full viewport — including the slot previously occupied by the nav.
   2. Strip the masthead background + shadow (it becomes invisible glass),
      while its fixed position keeps it in the stacking order above the
      page background (so no page-bg bleed).
   3. Fade out the nav content (header-bar / top-bar / mobile header).
   CSS !important beats GSAP's inline style, so the pin-wrap jumps to top:0
   at the same cascade-resolution pass — no perceptible frame jump.
   ─────────────────────────────────────────────────────────────────────────── */

@media (prefers-reduced-motion: no-preference) {
    #page > .masthead {
        transition:
            background 0.45s cubic-bezier(0.16, 1, 0.3, 1),
            box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #page > .masthead .header-bar,
    #page > .masthead .top-bar,
    .dt-mobile-header {
        transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    }
}

/* Extend the pinned frame to cover the full viewport */
body.xc-fullstory-pin-active .xc-fullstory__pin-wrap {
    top: 0 !important;
    height: 100dvh !important;
}
body.xc-fullstory-pin-active .xc-fullstory__viewport {
    height: 100dvh !important;
    min-height: 100svh !important;
}

/* Masthead becomes transparent glass — no background gap is exposed */
body.xc-fullstory-pin-active #page > .masthead {
    opacity: 0 !important;
    background: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
    pointer-events: none !important;
}

/* Fade out all nav content (links, logo, buttons) */
body.xc-fullstory-pin-active #page > .masthead .header-bar,
body.xc-fullstory-pin-active #page > .masthead .top-bar,
body.xc-fullstory-pin-active .dt-mobile-header,
body.xc-fullstory-pin-active .mobile-bar,
body.xc-fullstory-pin-active #mobile-menu {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* #phantom is a height-only spacer; keep invisible while preserving its height */
body.xc-fullstory-pin-active #phantom {
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (prefers-reduced-motion: reduce) {
    #page > .masthead,
    #page > .masthead .header-bar,
    #page > .masthead .top-bar,
    .dt-mobile-header {
        transition: none;
    }
}

.xc-fullstory h1 {
    font-family: kallisto, sans-serif !important;
}

.xc-fullstory__progress {
    position: fixed;
    inset: 0 0 auto;
    height: 3px;
    z-index: 120;
    background: rgba(17, 12, 24, 0.08);
    overflow: visible; /* allow leading-edge glow to bleed beyond the 3 px track */
}

.xc-fullstory__progress-bar {
    display: block;
    position: relative; /* anchor for ::after dot */
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #c20285 0%, #ff6120 55%, #ffd16f 100%);
    will-change: transform;
}

/* Glowing dot at the leading edge of the progress fill.
   Positioned at right: 0 so it scales with the bar's transform: scaleX(),
   always sitting exactly at the visible right edge of the fill. */
.xc-fullstory__progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(2px, -50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff8e0;
    box-shadow:
        0 0 5px  3px rgba(255, 220, 120, 0.95),
        0 0 14px 5px rgba(255, 97,  32,  0.60),
        0 0 28px 8px rgba(194, 2,   133, 0.30);
    pointer-events: none;
}

/* Skip story — single control; label + arrow swap with scroll direction (JS) */
#xc-fullstory-skip-rail {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    max-width: min(260px, calc(100vw - 24px));
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#xc-fullstory-skip-rail.xc-fullstory-skip-rail--hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
}

#xc-fullstory-skip-rail:not(.xc-fullstory-skip-rail--hidden) {
    pointer-events: auto;
}

.xc-fullstory-skip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(194, 2, 133, 0.45);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow:
        0 3px 16px rgba(17, 12, 24, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.65) inset;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #2a1f33;
    cursor: pointer;
    min-height: 44px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

#xc-fullstory-skip-rail.xc-fullstory-skip-rail--scrolling-up .xc-fullstory-skip-btn {
    flex-direction: row-reverse;
}

.xc-fullstory-skip-btn:focus-visible {
    outline: 2px solid #c20285;
    outline-offset: 2px;
}

.xc-fullstory-skip-arrow {
    flex-shrink: 0;
    font-size: 15px;
    line-height: 1;
    opacity: 0.9;
}

.xc-fullstory-skip-label {
    text-align: center;
    line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
    #xc-fullstory-skip-rail,
    .xc-fullstory-skip-btn {
        transition: none;
    }
}

/* The7 “scroll to top” (footer a.scroll-top) — hide while skip control is shown (same scroll zone). */
html.xc-scrollytelling-skip-visible a.scroll-top {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: none !important;
}

/* Energy mobile: lift bottom CTA + text stack when skip pill is visible (fixed bottom-right). */
@media (max-width: 800px) {
    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__cta {
        bottom: max(4.75rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
    }

    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__text-stack,
    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        bottom: max(8.5rem, calc(env(safe-area-inset-bottom, 0px) + 7.75rem));
    }
}

@media (max-width: 480px) {
    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__cta {
        bottom: max(4.5rem, calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
    }

    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__text-stack,
    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        bottom: max(8.25rem, calc(env(safe-area-inset-bottom, 0px) + 7.5rem));
    }
}

.xc-fullstory__pin-wrap {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    overflow: hidden;
    z-index: 1;
}

.xc-fullstory__viewport {
    position: relative;
    height: var(--xc-fullstory-height, calc(100svh - var(--xc-fullstory-top-offset, 0px)));
    overflow: hidden;
    z-index: 1;
    background: #ffffff;
    will-change: opacity;
}

.xc-fullstory__scene {
    position: absolute;
    inset: 0;
    min-height: 0;
    overflow: hidden;
    opacity: 0;
}

.xc-fullstory__scene + .xc-fullstory__scene {
    display: block;
}

/* Once GSAP owns the enhanced state it controls scene opacity via autoAlpha inline styles */
.xc-fullstory.is-enhanced .xc-fullstory__scene {
    opacity: 1;
}

.xc-fullstory__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.xc-fullstory__background-stripes {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xc-fullstory__background-image {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
}

.xc-fullstory__scene--generating-energy-01 .xc-fullstory__background::after,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__background::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 28% 56%, rgba(255, 168, 92, 0.18) 0%, rgba(255, 168, 92, 0.08) 16%, rgba(255, 168, 92, 0) 34%),
        linear-gradient(90deg, rgba(32, 18, 42, 0) 36%, rgba(32, 18, 42, 0.1) 54%, rgba(32, 18, 42, 0.08) 72%, rgba(32, 18, 42, 0.04) 100%);
}

.xc-fullstory__title {
    position: absolute;
    top: clamp(1rem, 1.8vw, 1.6rem);
    left: clamp(2rem, 4vw, 4rem);
    margin: 0;
    padding: 0;
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.08;
    font-weight: 300;
    letter-spacing: inherit;
    text-transform: none;
    color: #32263f;
    z-index: 3;
}

.xc-fullstory__body {
    position: absolute;
    top: 18%;
    right: 7%;
    width: min(650px, 43vw);
    margin: 0;
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
    color: #1d1923;
    z-index: 3;
    transform-origin: left top;
}

.xc-fullstory__note {
    position: absolute;
    left: 43%;
    top: 64%;
    width: min(260px, 18vw);
    margin: 0;
    font-size: clamp(1.38rem, 1.65vw, 1.82rem);
    line-height: 1.46;
    color: #1d1923;
    z-index: 3;
    transform-origin: left top;
}

.xc-fullstory__note strong {
    font-weight: 700;
}

.xc-fullstory__scene--bigger-return .xc-fullstory__note {
    left: 31%;
    top: 76%;
    right: auto;
    width: min(360px, 26vw);
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
    line-height: 1.45;
    transform: none;
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__note {
    top: calc(23% + 6.8rem);
    right: 7%;
    left: auto;
    width: min(650px, 43vw);
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
}

.xc-fullstory__subnote {
    position: absolute;
    right: 7%;
    width: min(650px, 43vw);
    margin: 0;
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
    color: #1d1923;
    z-index: 3;
    transform-origin: left top;
}

.xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__note {
    top: calc(23% + 6.8rem);
    right: 7%;
    left: auto;
    width: min(650px, 43vw);
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
}

.xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__subnote {
    top: calc(23% + 13.5rem);
}

.xc-fullstory__tertiary-note {
    position: absolute;
    right: 7%;
    width: min(650px, 43vw);
    margin: 0;
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
    color: #1d1923;
    z-index: 3;
    transform-origin: left top;
}

.xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__note {
    top: calc(23% + 6.8rem);
    right: 7%;
    left: auto;
    width: min(650px, 43vw);
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
}

.xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__subnote {
    top: calc(23% + 13.5rem);
}

.xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__tertiary-note {
    top: calc(23% + 20rem);
}

.xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
    top: calc(23% + 11.5rem);
    right: 7%;
    width: min(650px, 43vw);
}

.xc-fullstory__copy {
    position: absolute;
    top: 18%;
    right: 7%;
    width: min(650px, 43vw);
    display: flex;
    flex-direction: column;
    gap: clamp(1.1rem, 1.7vw, 1.6rem);
    font-size: clamp(1.62rem, 1.9vw, 2.1rem);
    line-height: 1.44;
    color: #1d1923;
    z-index: 3;
}

.xc-fullstory__copy .xc-fullstory__body,
.xc-fullstory__copy .xc-fullstory__note,
.xc-fullstory__copy .xc-fullstory__subnote,
.xc-fullstory__copy .xc-fullstory__tertiary-note {
    position: relative;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    width: 100% !important;
    margin: 0;
}

.xc-fullstory__copy .xc-fullstory__body,
.xc-fullstory__copy .xc-fullstory__note,
.xc-fullstory__copy .xc-fullstory__subnote,
.xc-fullstory__copy .xc-fullstory__tertiary-note {
    font-size: inherit !important;
    line-height: inherit !important;
}

.xc-fullstory__copy .xc-fullstory__note {
    transform: none;
}

.xc-fullstory__scene--generating-energy-01 .xc-fullstory__body,
.xc-fullstory__scene--generating-energy-01 .xc-fullstory__image-caption,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__body,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__image-caption,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

.xc-fullstory__scene--generating-energy-01 .xc-fullstory__body,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__body,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
    color: #ffffff;
    text-shadow: none;
}

.xc-fullstory__scene--generating-energy-03 .xc-fullstory__title {
    top: clamp(0.9rem, 1.5vw, 1.4rem) !important;
    left: clamp(1.5rem, 2.5vw, 2.25rem) !important;
    max-width: min(420px, 34vw);
    font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.xc-fullstory__scene--generating-energy-03 .xc-fullstory__body {
    top: 24% !important;
    right: 7% !important;
    width: min(620px, 42vw) !important;
}

.xc-fullstory__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.xc-fullstory__image-caption {
    position: absolute;
    left: 34%;
    top: calc(56% + min(760px, 68vw) * 0.18);
    width: min(360px, 26vw);
    margin: 0;
    font-size: clamp(0.88rem, 0.95vw, 0.98rem);
    line-height: 1.45;
    color: #1d1923;
    transform: translateX(-50%);
    z-index: 3;
}

.xc-fullstory__measurement {
    position: absolute;
    left: 23%;
    top: 55%;
    width: min(108px, 8vw);
    height: 40px;
    z-index: 3;
    color: #3b3542;
    font-size: clamp(0.82rem, 0.92vw, 0.95rem);
    line-height: 1;
}

.xc-fullstory__measurement-line {
    position: absolute;
    left: 3px;
    bottom: -24px;
    width: calc(100% + 82px);
    height: 1px;
    background: rgba(59, 53, 66, 0.82);
    transform: rotate(-30deg);
    transform-origin: left center;
}

.xc-fullstory__measurement-dot {
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4a4450;
}

.xc-fullstory__measurement-dot--start {
    left: 0;
    bottom: -26px;
}

.xc-fullstory__measurement-dot--end {
    right: -63px;
    top: -34px;
}

.xc-fullstory__measurement-label {
    position: absolute;
    right: -93px;
    top: -51px;
    white-space: nowrap;
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement {
    left: 20%;
    top: 63%;
    width: min(837px, 40vw);
    height: 56px;
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement-line {
    left: -79px;
    bottom: 18px;
    width: calc(100% - 16px);
    transform: rotate(-30deg);
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement-dot--start {
    left: -79px;
    bottom: 17px;
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement-dot--end {
    right: 169px;
    top: -262px;
}

.xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement-label {
    right: 122px;
    top: -273px;
}

.xc-fullstory__image {
    position: absolute;
    top: 52%;
    left: 37%;
    width: min(760px, 68vw);
    height: auto;
    max-width: none;
    object-fit: contain;
    transform: translate(-50%, -50%);
    will-change: transform, opacity;
}

.xc-fullstory__image--target,
.xc-fullstory__image--target-return {
    top: 46%;
    left: 41.5%;
    width: min(1680px, 138vw);
    transform: translate(-50%, -50%);
}

/* Fuel-capsule images: center pushed down to clear the title; width reduced
   so the full tube body fits within any reasonable viewport height. */
.xc-fullstory__image--fuel-capsule,
.xc-fullstory__image--fuel-capsule-p3,
.xc-fullstory__image--fuel-capsule-p4 {
    top: 58%;
    left: 41.5%;
    width: min(1350px, 112vw);
    transform: translate(-50%, -50%);
}

.xc-fullstory__image--chamber {
    top: 54%;
    left: 31%;
    width: min(760px, 58vw);
    transform: translate(-50%, -50%);
}

.xc-fullstory__scene--generating-energy-01 .xc-fullstory__image,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__image {
    top: 58% !important;
    left: 41.5% !important;
    width: min(1350px, 112vw) !important;
}

/* Fade both the top and bottom of tube images so laser beams exit the scene
   gracefully on all edges rather than hitting a hard clip. The tube body
   lives between the two fade zones and stays fully opaque. */
.xc-fullstory__image--fuel-capsule,
.xc-fullstory__image--fuel-capsule-p3,
.xc-fullstory__image--fuel-capsule-p4,
.xc-fullstory__scene--generating-energy-01 .xc-fullstory__image,
.xc-fullstory__scene--generating-energy-02 .xc-fullstory__image {
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 11%, black 76%, transparent 96%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 11%, black 76%, transparent 96%);
}

.xc-fullstory__scene--generating-energy-03 .xc-fullstory__image {
    top: 21% !important;
    left: 8% !important;
    width: min(660px, 48vw) !important;
}

.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__title,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__body,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__note,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__subnote,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__tertiary-note,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__image-caption,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__image,
.xc-fullstory:not(.is-enhanced) .xc-fullstory__scene:first-child .xc-fullstory__background-image {
    opacity: 1;
}

body .xc-fullstory__scene--generating-energy-01 h2.xc-fullstory__title {
    color: #fcba55;
}

body .xc-fullstory__scene--bigger-return p.xc-fullstory__note,
body p.xc-fullstory__image-caption {
    background: #ffffffc7;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 8px #00000026;
    font-size: 1.125rem !important;
    text-align: center;
}

.xc-fullstory--homepage {
    --xc-fullstory-ink: #32263f;
    position: relative;
    z-index: 1;
    isolation: isolate;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
}

.xc-fullstory--homepage .xc-fullstory__progress-bar {
    background: linear-gradient(90deg, #c20285 0%, #ff6120 55%, #ffd16f 100%);
}

.xc-fullstory--homepage .xc-fullstory__pin-wrap,
.xc-fullstory--homepage .xc-fullstory__viewport {
    position: relative;
    z-index: 1;
    width: 100vw !important;
    max-width: 100vw !important;
}

.xc-fullstory--homepage .xc-fullstory__viewport {
    min-height: var(--xc-fullstory-height, calc(100svh - var(--xc-fullstory-top-offset, 0px)));
    overflow: hidden;
    background: rgba(255, 255, 255, 0.98);
}

.xc-fullstory--homepage .xc-fullstory__title {
    top: clamp(1rem, 1.8vw, 1.6rem);
}

.xc-fullstory--energy {
    position: relative;
    z-index: 1;
    isolation: isolate;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
}

.xc-fullstory--energy .xc-fullstory__pin-wrap,
.xc-fullstory--energy .xc-fullstory__viewport {
    position: relative;
    z-index: 60;
    width: 100vw !important;
    max-width: 100vw !important;
}

.xc-fullstory--energy .xc-fullstory__viewport {
    height: 100dvh;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
    background: #2e1285;
}

.xc-fullstory__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(53, 2, 147, 0.92);
    pointer-events: none;
    opacity: 0;
}

/* PHOENIX scene: panel covers only the text zone — image stays visible below */
.xc-fullstory--energy .xc-fullstory__scene--energy-intro .xc-fullstory__overlay,
.xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__overlay {
    bottom: auto;
    height: clamp(20rem, 28vw, 32rem);
    background: linear-gradient(
        to bottom,
        rgba(64, 46, 84, 1.0) 0%,
        rgba(64, 46, 84, 1.0) 28%,
        rgba(64, 46, 84, 0.78) 52%,
        rgba(64, 46, 84, 0.28) 80%,
        rgba(64, 46, 84, 0) 100%
    );
    opacity: 1;
}

.xc-fullstory--energy {
    background: transparent;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.xc-fullstory--energy .xc-fullstory__pin-wrap {
    background: #2e1285;
    min-height: 100svh;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}



.xc-fullstory--energy .xc-fullstory__title {
    top: clamp(-0.15rem, 0.5vw, 0.55rem);
    left: clamp(1.5rem, 4vw, 3.75rem);
    right: clamp(1.5rem, 4vw, 3.75rem);
    width: auto;
    max-width: none;
    font-family: kallisto, sans-serif !important;
    color: #ffffff;
    font-size: clamp(4.6rem, 7.2vw, 8.4rem) !important;
    line-height: 1.05;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
    z-index: 6;
    text-wrap: pretty;
    text-align: center;
}

.xc-fullstory--energy .xc-fullstory__title-sweep {
    position: absolute;
    inset: -8% -6%;
    pointer-events: none;
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 0%, rgba(255, 245, 222, 0.92) 45%, rgba(255, 255, 255, 0) 58%);
    mix-blend-mode: screen;
    opacity: 0;
    transform: skewX(-16deg);
    will-change: transform, opacity;
}

.xc-fullstory--energy .xc-fullstory__text-stack {
    position: absolute;
    top: clamp(5rem, 6.5vw, 7.5rem);
    left: clamp(1.5rem, 4vw, 3.75rem);
    right: clamp(1.5rem, 4vw, 3.75rem);
    width: auto;
    z-index: 6;
    pointer-events: none;
}

.xc-fullstory--energy .xc-fullstory__text-block {
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    margin: 0;
    color: rgba(255, 255, 255, 0.97);
    font-size: clamp(1.12rem, 1.4vw, 1.58rem);
    line-height: 1.44;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    opacity: 0;
    /* will-change intentionally omitted — GSAP promotes/demotes the layer
       automatically via force3D during animation. Keeping it in CSS holds
       GPU memory permanently for all text blocks even when nothing is moving. */
}

/* First Athena image — sits below text, explicit height so object-fit:contain works correctly.
   Targets via the .xc-fullstory__media wrapper (FIGs inset) rather than :first-of-type on the img
   so the moved SWBR img (direct child of scene2, no wrapper) is unaffected. */
.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__media:first-of-type img.xc-fullstory__image--energy-match {
    top: clamp(14rem, 22vw, 24rem);
    bottom: auto;
    left: 0;
    right: 0;
    height: calc(100% - clamp(14rem, 22vw, 24rem));
    object-fit: contain;
    object-position: center center;
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__title {
    max-width: none;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.22);
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
    left: clamp(1.5rem, 4vw, 3.75rem);
    right: clamp(1.5rem, 4vw, 3.75rem);
    width: auto;
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__title-sweep {
    display: none !important;
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-block {
    color: rgba(255, 255, 255, 0.97);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__overlay {
    bottom: auto;
    height: clamp(20rem, 28vw, 32rem);
    background: linear-gradient(
        to bottom,
        rgba(64, 46, 84, 1.0) 0%,
        rgba(64, 46, 84, 1.0) 28%,
        rgba(64, 46, 84, 0.78) 52%,
        rgba(64, 46, 84, 0.28) 80%,
        rgba(64, 46, 84, 0) 100%
    );
}

.xc-fullstory--energy .xc-fullstory__scene--energy-athena {
    background: rgb(228, 231, 234);
}

.xc-fullstory--energy .xc-fullstory__body {
    top: clamp(9rem, 17vw, 13rem);
    left: clamp(1.5rem, 4vw, 3.75rem);
    right: auto !important;
    width: min(560px, 36vw) !important;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1.02rem, 1.18vw, 1.3rem) !important;
    line-height: 1.55;
    z-index: 3;
    transform-origin: left top;
}

.xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__body {
    top: clamp(13rem, 23vw, 17.5rem);
}

.xc-fullstory--energy .xc-fullstory__cta {
    position: absolute;
    left: 0;
    right: 0;
    top: clamp(11rem, 14vw, 16rem);
    display: flex;
    justify-content: center;
    z-index: 3;
    pointer-events: auto;
}

.xc-fullstory__image--energy-match {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    max-width: none;
}

@media (max-width: 1400px) {
    .xc-fullstory--energy .xc-fullstory__title {
        font-size: clamp(4rem, 6.4vw, 7.2rem) !important;
    }

    .xc-fullstory--energy .xc-fullstory__text-stack {
        top: clamp(4.8rem, 6.2vw, 7rem);
    }

    .xc-fullstory--energy .xc-fullstory__text-block {
        font-size: clamp(1.08rem, 1.32vw, 1.48rem);
        line-height: 1.4;
    }

}

@media (max-width: 960px) {
    .xc-fullstory--energy .xc-fullstory__title {
        font-size: clamp(3.2rem, 8vw, 5.4rem) !important;
    }

    .xc-fullstory--energy .xc-fullstory__text-stack {
        top: clamp(4rem, 5.5vw, 6rem);
    }

    .xc-fullstory--energy .xc-fullstory__text-block {
        font-size: clamp(0.98rem, 1.9vw, 1.18rem);
        line-height: 1.4;
    }

}

@media (max-width: 1100px) {
    .xc-fullstory--energy .xc-fullstory__title {
        font-size: clamp(3.6rem, 6.8vw, 6.4rem) !important;
    }

    .xc-fullstory--energy .xc-fullstory__text-stack {
        top: clamp(4.4rem, 6vw, 6.6rem);
    }

    .xc-fullstory--energy .xc-fullstory__body {
        right: auto !important;
        width: min(560px, 52vw) !important;
    }

}

@media (max-width: 800px) {
    /* Taller purple band on intro / Phoenix so more body copy sits on the gradient, not the photo */
    .xc-fullstory--energy .xc-fullstory__scene--energy-intro .xc-fullstory__overlay,
    .xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__overlay {
        height: clamp(30rem, 88vw, 44rem);
    }

    /* Athena: taller purple band + room below progress bar */
    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__overlay {
        height: min(78vh, clamp(26rem, 108vw, 42rem));
    }

    /* Tighter top inset + title↔copy gap (mobile Energy): more room on purple panel */
    .xc-fullstory--energy .xc-fullstory__title {
        top: max(1.45rem, calc(env(safe-area-inset-top, 0px) + 0.95rem));
        left: max(1.1rem, calc(env(safe-area-inset-left, 0px) + 0.65rem));
        right: max(1.1rem, calc(env(safe-area-inset-right, 0px) + 0.65rem));
        font-size: clamp(3.4rem, 12vw, 5.2rem);
        line-height: 1.08;
        white-space: normal;
    }

    .xc-fullstory--energy .xc-fullstory__text-stack {
        top: clamp(5.1rem, 16vw, 6.5rem);
        left: max(1.1rem, calc(env(safe-area-inset-left, 0px) + 0.65rem));
        right: max(1.1rem, calc(env(safe-area-inset-right, 0px) + 0.65rem));
        /* Reserve space for bottom-anchored CTA so copy doesn’t run under the button */
        bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
    }

    .xc-fullstory--energy .xc-fullstory__text-block {
        font-size: clamp(0.92rem, 3.4vw, 1.1rem);
        line-height: 1.48;
        padding-inline: 0.15rem;
        box-sizing: border-box;
    }

    .xc-fullstory--energy .xc-fullstory__image--energy-match {
        object-position: center 25%;
    }

    /* Anchor CTA to bottom of viewport so it doesn’t sit on top of body copy (was z-index + fixed top). */
    .xc-fullstory--energy .xc-fullstory__cta {
        top: auto;
        bottom: max(1rem, calc(env(safe-area-inset-bottom, 0px) + 0.75rem));
        left: max(0.65rem, env(safe-area-inset-left, 0px));
        right: max(0.65rem, env(safe-area-inset-right, 0px));
        padding-inline: clamp(0.65rem, 4vw, 1.25rem);
        padding-top: 0.35rem;
        box-sizing: border-box;
    }

    .xc-fullstory--energy .xc-fullstory__body {
        top: auto;
        bottom: 8rem;
        left: max(1.1rem, calc(env(safe-area-inset-left, 0px) + 0.65rem)) !important;
        right: max(1.1rem, calc(env(safe-area-inset-right, 0px) + 0.65rem)) !important;
        width: auto !important;
        max-width: none !important;
        font-size: 1rem !important;
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__body {
        top: auto;
        bottom: 2rem;
    }

    /* Athena: tighter title↔copy gap + diagram lower edge (matches Phoenix mobile tuning) */
    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__media:first-of-type img.xc-fullstory__image--energy-match {
        top: clamp(9.85rem, 35vw, 17.25rem);
        height: calc(100% - clamp(9.85rem, 35vw, 17.25rem));
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        top: clamp(5.5rem, 18.5vw, 7.45rem);
        bottom: max(5.25rem, calc(env(safe-area-inset-bottom, 0px) + 4.5rem));
    }
}

@media (max-width: 480px) {
    .xc-fullstory--energy .xc-fullstory__scene--energy-intro .xc-fullstory__overlay,
    .xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__overlay {
        height: clamp(32rem, 96vw, 48rem);
    }

    .xc-fullstory--energy .xc-fullstory__title {
        top: max(1.35rem, calc(env(safe-area-inset-top, 0px) + 0.85rem));
        left: max(1rem, calc(env(safe-area-inset-left, 0px) + 0.5rem));
        right: max(1rem, calc(env(safe-area-inset-right, 0px) + 0.5rem));
        font-size: clamp(2.85rem, 11vw, 4.2rem) !important;
    }

    .xc-fullstory--energy .xc-fullstory__text-stack {
        top: clamp(4.95rem, 17vw, 6.1rem);
        left: max(1rem, calc(env(safe-area-inset-left, 0px) + 0.5rem));
        right: max(1rem, calc(env(safe-area-inset-right, 0px) + 0.5rem));
        bottom: max(5rem, calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
    }

    .xc-fullstory--energy .xc-fullstory__text-block {
        font-size: clamp(0.9rem, 3.6vw, 1.05rem);
        line-height: 1.5;
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__media:first-of-type img.xc-fullstory__image--energy-match {
        top: clamp(8.85rem, 35vw, 14.75rem);
        height: calc(100% - clamp(8.85rem, 35vw, 14.75rem));
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        top: clamp(5.35rem, 20vw, 6.75rem);
        bottom: max(5rem, calc(env(safe-area-inset-bottom, 0px) + 4.25rem));
    }

    .xc-fullstory--energy .xc-fullstory__cta {
        top: auto;
        bottom: max(0.85rem, calc(env(safe-area-inset-bottom, 0px) + 0.65rem));
    }
}

/* Portrait phones: taller purple panel + slower fade so the last lines of copy stay on tint, not the photo */
@media (max-width: 800px) and (orientation: portrait) {
    .xc-fullstory--energy .xc-fullstory__scene--energy-intro .xc-fullstory__overlay,
    .xc-fullstory--energy .xc-fullstory__scene--energy-phoenix .xc-fullstory__overlay {
        height: clamp(36rem, 96vw, 54rem);
        background: linear-gradient(
            to bottom,
            rgba(64, 46, 84, 1) 0%,
            rgba(64, 46, 84, 1) 34%,
            rgba(64, 46, 84, 0.88) 58%,
            rgba(64, 46, 84, 0.42) 90%,
            rgba(64, 46, 84, 0) 100%
        );
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__overlay {
        height: min(88vh, clamp(30rem, 118vw, 50rem));
        background: linear-gradient(
            to bottom,
            rgba(64, 46, 84, 1) 0%,
            rgba(64, 46, 84, 1) 34%,
            rgba(64, 46, 84, 0.88) 58%,
            rgba(64, 46, 84, 0.42) 90%,
            rgba(64, 46, 84, 0) 100%
        );
    }
}

@media (min-width: 1101px) {
    .xc-fullstory--energy .xc-fullstory__title {
        white-space: nowrap;
    }
}

@media (max-width: 1500px) {
    .xc-fullstory__title {
        font-size: clamp(2.8rem, 4.6vw, 4.4rem);
    }

    .xc-fullstory__body,
    .xc-fullstory__subnote,
    .xc-fullstory__tertiary-note,
    .xc-fullstory__scene--bigger-capsules .xc-fullstory__note,
    .xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__note,
    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__note,
    .xc-fullstory__scene--generating-energy-03 .xc-fullstory__body,
    .xc-fullstory__copy {
        right: 7.5% !important;
        width: min(500px, 38vw) !important;
        font-size: clamp(1.44rem, 1.64vw, 1.84rem);
    }

    .xc-fullstory__scene--bigger-capsules .xc-fullstory__note {
        top: calc(23% + 6.2rem);
        right: 0 !important;
    }

    .xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__subnote {
        top: calc(23% + 12.4rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__subnote {
        top: calc(23% + 12.4rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__tertiary-note,
    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
        top: calc(23% + 18.6rem);
    }

    .xc-fullstory__image--target,
    .xc-fullstory__image--target-return {
        top: 48% !important;
        left: 40% !important;
        width: min(1480px, 126vw) !important;
    }

    .xc-fullstory__image--fuel-capsule,
    .xc-fullstory__image--fuel-capsule-p3,
    .xc-fullstory__image--fuel-capsule-p4,
    .xc-fullstory__scene--generating-energy-01 .xc-fullstory__image,
    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__image {
        top: 58% !important;
        left: 40% !important;
        width: min(1280px, 106vw) !important;
    }

    .xc-fullstory__image-caption {
        left: 28%;
        top: 75%;
        width: min(310px, 25vw);
    }

    .xc-fullstory__scene--bigger-return .xc-fullstory__note {
        left: 28%;
        top: 68%;
        width: min(320px, 26vw);
    }

    .xc-fullstory__measurement {
        left: 20%;
        top: 52%;
    }

    .xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement {
        left: 22%;
        top: 60%;
        width: min(250px, 20vw);
    }
}

@media (max-width: 1280px) {
    .xc-fullstory__image--target,
    .xc-fullstory__image--target-return {
        top: 49.5% !important;
        left: 43% !important;
        width: min(1220px, 110vw) !important;
    }

    .xc-fullstory__image--fuel-capsule,
    .xc-fullstory__image--fuel-capsule-p3,
    .xc-fullstory__image--fuel-capsule-p4,
    .xc-fullstory__scene--generating-energy-01 .xc-fullstory__image,
    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__image {
        top: 58% !important;
        left: 43% !important;
        width: min(1080px, 104vw) !important;
    }

    .xc-fullstory__scene--generating-energy-03 .xc-fullstory__image {
        top: 20% !important;
        left: 8.5% !important;
        width: min(560px, 42vw) !important;
    }

    .xc-fullstory__body,
    .xc-fullstory__subnote,
    .xc-fullstory__tertiary-note,
    .xc-fullstory__scene--bigger-capsules .xc-fullstory__note,
    .xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__note,
    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__note,
    .xc-fullstory__scene--generating-energy-03 .xc-fullstory__body,
    .xc-fullstory__copy {
        right: 6.5% !important;
        width: min(500px, 43vw) !important;
        font-size: clamp(1.42rem, 1.74vw, 1.72rem);
    }

    .xc-fullstory__scene--bigger-capsules .xc-fullstory__note {
        top: calc(23% + 5.8rem);
        right: 0 !important;
    }

    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
        top: calc(23% + 9rem);
    }

    .xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__subnote {
        top: calc(23% + 10.4rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__subnote {
        top: calc(23% + 10.4rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__tertiary-note {
        top: calc(23% + 15rem);
    }

    .xc-fullstory__image-caption {
        left: 26%;
        top: 68%;
        width: min(300px, 26vw);
    }

    .xc-fullstory__scene--bigger-return .xc-fullstory__note {
        left: 26%;
        top: 62%;
        width: min(290px, 25vw);
    }

    .xc-fullstory__measurement {
        left: 18%;
        top: 51%;
        width: min(96px, 8vw);
    }

    .xc-fullstory__scene--bigger-capsules .xc-fullstory__measurement {
        left: 20%;
        top: 59%;
        width: min(220px, 19vw);
    }
}

@media (max-width: 1100px) {
    .xc-fullstory__image--target,
    .xc-fullstory__image--target-return {
        top: 50.5% !important;
        left: 44% !important;
        width: min(1100px, 106vw) !important;
    }

    .xc-fullstory__image--fuel-capsule,
    .xc-fullstory__image--fuel-capsule-p3,
    .xc-fullstory__image--fuel-capsule-p4,
    .xc-fullstory__scene--generating-energy-01 .xc-fullstory__image,
    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__image {
        top: 58% !important;
        left: 44% !important;
        width: min(980px, 104vw) !important;
    }

    .xc-fullstory__scene--generating-energy-03 .xc-fullstory__image {
        top: 24% !important;
        left: 6% !important;
        width: min(500px, 38vw) !important;
    }

    .xc-fullstory__title {
        font-size: clamp(2.6rem, 4.4vw, 4.2rem);
    }

    .xc-fullstory__body,
    .xc-fullstory__subnote,
    .xc-fullstory__tertiary-note,
    .xc-fullstory__scene--generating-energy-03 .xc-fullstory__body,
    .xc-fullstory__copy {
        right: 5.5% !important;
        width: min(390px, 38vw) !important;
        font-size: clamp(1rem, 1.16vw, 1.2rem);
    }

    .xc-fullstory__scene--bigger-capsules .xc-fullstory__note {
        top: calc(23% + 4.8rem);
        right: 0 !important;
    }

    .xc-fullstory__scene--bigger-capsules-p3 .xc-fullstory__subnote {
        top: calc(23% + 8.8rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__subnote {
        top: calc(23% + 8.8rem);
    }

    .xc-fullstory__scene--bigger-capsules-p4 .xc-fullstory__tertiary-note,
    .xc-fullstory__scene--generating-energy-02 .xc-fullstory__tertiary-note {
        top: calc(23% + 12.8rem);
    }

    .xc-fullstory__image-caption {
        left: 30%;
        top: 66%;
        width: min(320px, 28vw);
    }

    .xc-fullstory__scene--bigger-return .xc-fullstory__note {
        left: 24%;
        top: 58%;
        width: min(280px, 26vw);
    }
}

.xcimer-scrollytelling-row,
.xcimer-scrollytelling-row > .vc_column_container,
.xcimer-scrollytelling-row > .wpb_column,
.xcimer-scrollytelling-row .vc_column-inner,
.xcimer-scrollytelling-row .wpb_wrapper {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.xcimer-scrollytelling-row {
    overflow: visible !important;
}

.xcimer-scrollytelling-row .wpb_wrapper > .xc-fullstory:first-child {
    margin-top: 0 !important;
}

.xcimer-scrollytelling-row .wpb_wrapper > .xc-fullstory:last-child {
    margin-bottom: 0 !important;
}

/* ── Phone landscape (e.g. iPhone 16 Pro): very short viewport ─────────────────
   Athena + other Energy slides: bottom-anchored CTA was stacking over multi-line
   copy. Reserve more space below the text stack; allow the stack to scroll if needed.
   Skip-rail visible: extra bottom inset (matches xc-scrollytelling-skip-visible). */

@media (max-width: 932px) and (orientation: landscape) and (max-height: 500px) {
    .xc-fullstory--energy .xc-fullstory__text-stack {
        bottom: max(8.5rem, calc(env(safe-area-inset-bottom, 0px) + 7.25rem));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        max-height: min(52dvh, 22rem);
        box-sizing: border-box;
        padding-right: 0.35rem;
    }

    /* Width 801–932px in landscape skips the max-width:800px mobile CTA rules, so the
       base Energy CTA keeps `top: clamp(11rem,…)` while this block sets `bottom` —
       both insets stretch the flex row vertically and the pill button fills it. */
    .xc-fullstory--energy .xc-fullstory__cta {
        top: auto;
        align-items: center;
        bottom: max(0.65rem, calc(env(safe-area-inset-bottom, 0px) + 0.45rem));
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__title {
        top: max(1.35rem, calc(env(safe-area-inset-top, 0px) + 0.85rem));
        font-size: clamp(2rem, 5.2vw, 3rem) !important;
        line-height: 1.06;
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        top: clamp(5.1rem, 14vh, 6.85rem);
        bottom: max(9rem, calc(env(safe-area-inset-bottom, 0px) + 7.75rem));
        max-height: min(46dvh, 20rem);
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-block {
        font-size: clamp(0.75rem, 2.4vw, 0.9rem);
        line-height: 1.42;
    }

    .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__media:first-of-type img.xc-fullstory__image--energy-match {
        top: clamp(8.25rem, 22vh, 11.25rem);
        height: calc(100% - clamp(8.25rem, 22vh, 11.25rem));
    }

    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__text-stack,
    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__scene--energy-athena .xc-fullstory__text-stack {
        bottom: max(11rem, calc(env(safe-area-inset-bottom, 0px) + 9.25rem));
    }

    html.xc-scrollytelling-skip-visible .xc-fullstory--energy .xc-fullstory__cta {
        top: auto;
        align-items: center;
        bottom: max(4.25rem, calc(env(safe-area-inset-bottom, 0px) + 3.85rem));
    }
}
