/* Application sector index and detail pages. */
:root {
        --application-ink: var(--site-text-color, #000);
        --application-muted: var(--site-muted-color, #000);
        --application-bg: #ffffff;
        --application-line: rgba(7, 17, 31, .1);
        --application-nav: 80px;
    }

    body {
        background: var(--application-bg);
    }

    .application-index {
        min-height: 100svh;
        overflow-x: clip;
        padding: calc(var(--application-nav) + clamp(4rem, 4.5vw, 4.5rem)) clamp(1rem, 6.5vw, 7rem) clamp(4rem, 8vw, 7rem);
        color: #000;
        background: #fff;
        font-family: var(--rounded-brand-font);
    }

    .application-index__shell {
        width: min(1680px, 100%);
        margin: 0 auto;
    }

    .application-index__hero {
        padding: 0 0 clamp(2.625rem, 3vw, 3rem);
        padding-left: .75rem;
        text-align: left;
    }

    .application-index__hero h1 {
        margin: 0;
        color: #000;
        font-family: var(--site-heading-font);
        font-size: clamp(3.125rem, 3.7vw, 3.75rem);
        font-weight: 500;
        letter-spacing: -.035em;
        line-height: 1.02;
        white-space: nowrap;
    }

    .application-index__title-line {
        display: inline;
    }

    .application-index__hero p {
        max-width: 42rem;
        margin: .95rem 0 0;
        color: #000;
        font-size: clamp(.9375rem, 1.05vw, 1.0625rem);
        font-weight: 400;
        line-height: 1.7;
    }

    .application-domain-explorer {
        width: 100%;
        min-width: 0;
    }

    .application-domain-tabs {
        display: grid;
        grid-template-columns: repeat(8, max-content);
        gap: clamp(1rem, 1.6vw, 1.75rem);
        align-items: stretch;
        justify-content: space-between;
        width: min(1112px, 100%);
        padding-left: .75rem;
    }

    .application-domain-tab {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        justify-self: start;
        min-width: 0;
        min-height: 44px;
        padding: .25rem 0 .75rem;
        border: 0;
        border-bottom: 0;
        border-radius: 0;
        color: #000;
        background: transparent;
        font: inherit;
        font-size: clamp(1rem, 1.05vw, 1.125rem);
        font-weight: 500;
        line-height: 1.3;
        text-align: left;
        white-space: nowrap;
        cursor: pointer;
        transition: opacity .2s ease;
    }

    .application-domain-tab::after {
        content: "";
        position: absolute;
        right: 0;
        bottom: -1px;
        left: 0;
        height: 2px;
        background: #000;
        opacity: 0;
        transform: scaleX(.4);
        transform-origin: center;
        transition: opacity .2s ease, transform .2s cubic-bezier(.22, 1, .36, 1);
    }

    .application-domain-tab.is-active,
    .application-domain-tab[aria-selected="true"] {
        color: #000;
    }

    .application-domain-tab.is-active::after,
    .application-domain-tab[aria-selected="true"]::after {
        opacity: 1;
        transform: scaleX(1);
    }

    .application-domain-tab:focus-visible,
    .application-domain-stage__media:focus-visible,
    .application-domain-stage__copy a:focus-visible,
    .application-product-thumb:focus-visible {
        outline: 2px solid #000;
        outline-offset: 4px;
    }

    .application-domain-tab:focus-visible {
        z-index: 1;
    }

    .application-domain-panel[hidden] {
        display: none;
    }

    .application-domain-panel.is-panel-entering {
        animation: application-panel-enter .24s cubic-bezier(.22, 1, .36, 1) both;
    }

    @keyframes application-panel-enter {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    .application-domain-stage {
        display: grid;
        grid-template-columns: minmax(0, 1.9fr) minmax(18rem, 1fr);
        gap: clamp(3rem, 3.5vw, 3.5rem);
        align-items: center;
        min-width: 0;
        margin-top: clamp(1.75rem, 2vw, 2.25rem);
    }

    .application-domain-stage__media {
        position: relative;
        display: block;
        width: 100%;
        min-width: 0;
        aspect-ratio: 1.9 / 1;
        overflow: hidden;
        background: #f7f7f7;
    }

    .application-domain-stage__image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        opacity: 1;
        transition: opacity .18s ease;
    }

    .application-domain-stage__media.is-product-image .application-domain-stage__image {
        object-fit: contain;
        padding: clamp(1.25rem, 3vw, 3rem);
        background: #fff;
    }

    .application-domain-stage__media.is-image-changing .application-domain-stage__image {
        opacity: 0;
    }

    .application-domain-stage__copy {
        display: grid;
        justify-items: start;
        align-content: center;
        min-width: 0;
        color: #000;
    }

    .application-domain-stage__copy h2 {
        margin: 0;
        color: #000;
        font-family: var(--site-heading-font);
        font-size: clamp(2rem, 2.5vw, 2.5rem);
        font-weight: 500;
        letter-spacing: -.025em;
        line-height: 1.08;
    }

    .application-domain-stage__copy p {
        max-width: 27rem;
        margin: clamp(1.15rem, 2vw, 1.75rem) 0 0;
        color: #000;
        font-size: clamp(.9375rem, 1.02vw, 1rem);
        font-weight: 400;
        line-height: 1.75;
    }

    .application-domain-stage__copy a {
        display: inline-flex;
        align-items: center;
        gap: .3rem;
        min-height: 44px;
        margin-top: clamp(3.5rem, 6vw, 6rem);
        color: #000;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        transition: opacity .2s ease;
    }

    .application-domain-stage__copy a span {
        font-size: 1.3em;
        line-height: 1;
        transform: translateY(-.02em);
    }

    .application-product-strip {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(.75rem, 1.35vw, 1.25rem);
        width: 100%;
        margin-top: clamp(.875rem, 1.2vw, 1.125rem);
    }

    .application-product-thumb {
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        overflow: hidden;
        padding: .5rem .5rem .8rem;
        border: 1px solid rgba(0, 0, 0, .08);
        border-radius: 18px;
        color: #000;
        background: #fafafa;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .035);
        font-family: inherit;
        text-align: left;
        cursor: pointer;
        transition:
            background-color .2s ease,
            border-color .2s ease,
            box-shadow .2s ease,
            transform .2s cubic-bezier(.22, 1, .36, 1);
    }

    .application-product-thumb.is-active,
    .application-product-thumb[aria-pressed="true"] {
        border-color: transparent;
        background: #fff;
        box-shadow:
            inset 0 0 0 1px #000,
            0 8px 24px rgba(0, 0, 0, .055);
    }

    .application-product-thumb__media {
        display: block;
        width: 100%;
        aspect-ratio: 1.85 / 1;
        overflow: hidden;
        border-radius: 12px;
        background: transparent;
    }

    .application-product-thumb img {
        display: block;
        width: 100%;
        height: 100%;
        padding: clamp(1rem, 1.5vw, 1.625rem);
        object-fit: contain;
        opacity: 1;
    }

    .application-product-thumb__name {
        display: -webkit-box;
        min-height: 2.8em;
        margin: .75rem .35rem 0;
        overflow: hidden;
        color: #000;
        font-size: clamp(.8125rem, .85vw, .9375rem);
        font-weight: 500;
        line-height: 1.4;
        text-align: left;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    @media (hover: hover) and (pointer: fine) {
        .application-domain-tab:hover,
        .application-domain-stage__copy a:hover {
            opacity: .62;
        }

        .application-product-thumb:hover {
            border-color: rgba(0, 0, 0, .13);
            background: #fff;
            box-shadow: 0 10px 28px rgba(0, 0, 0, .07);
            transform: translateY(-2px);
        }
    }

    .application-list-js.application-reveal-ready .application-index__hero.application-list-reveal,
    .application-list-js.application-reveal-ready .application-list-reveal-item {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition:
            opacity .42s ease,
            transform .42s cubic-bezier(.22, 1, .36, 1);
        transition-delay: var(--reveal-delay, 0ms);
    }

    .application-list-js.application-reveal-ready .application-index__hero.application-list-reveal.is-visible,
    .application-list-js.application-reveal-ready .application-list-reveal-item.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .application-gsap-reveal.application-list-js.application-reveal-ready .application-index__hero.application-list-reveal,
    .application-gsap-reveal.application-list-js.application-reveal-ready .application-list-reveal-item {
        transition: none;
    }

    @media (max-width: 1180px) {
        .application-domain-tabs {
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: clamp(.75rem, 1.2vw, 1.25rem);
            justify-content: stretch;
        }

        .application-domain-stage {
            grid-template-columns: minmax(0, 1.55fr) minmax(16rem, .8fr);
            gap: clamp(2rem, 4vw, 3.5rem);
        }
    }

    @media (max-width: 820px) {
        .application-domain-stage {
            grid-template-columns: 1fr;
            gap: 0;
        }

        .application-domain-stage__copy {
            padding-top: clamp(1.75rem, 4vw, 2.5rem);
        }

        .application-domain-stage__copy p {
            max-width: 38rem;
        }

        .application-domain-stage__copy a {
            margin-top: 2rem;
        }
    }

    @media (max-width: 700px) {
        :root {
            --application-nav: 66px;
        }

        .application-index {
            padding-top: calc(var(--application-nav) + 2rem);
            padding-inline: 1.25rem;
        }

        .application-index__hero {
            padding-bottom: 1.75rem;
            padding-left: 0;
        }

        .application-index__hero h1 {
            font-size: clamp(2.5rem, 10.5vw, 3rem);
            line-height: 1.04;
            white-space: normal;
        }

        .application-index__title-line {
            display: block;
            white-space: nowrap;
        }

        .application-index__hero p {
            max-width: 21rem;
            margin-top: .9rem;
            font-size: .9375rem;
            line-height: 1.65;
        }

        .application-domain-tabs {
            display: flex;
            gap: 1.5rem;
            margin-inline: -1.25rem;
            padding-inline: 1.25rem;
            width: auto;
            overflow-x: auto;
            overscroll-behavior-x: contain;
            scrollbar-width: none;
        }

        .application-domain-tabs::-webkit-scrollbar {
            display: none;
        }

        .application-domain-tab {
            flex: 0 0 auto;
            justify-content: flex-start;
            min-height: 44px;
            padding-inline: 0;
            text-align: left;
        }

        .application-domain-stage {
            margin-top: 1.75rem;
        }

        .application-domain-stage__media {
            aspect-ratio: 4 / 3;
        }

        .application-domain-stage__copy h2 {
            font-size: clamp(2rem, 10vw, 2.75rem);
        }

        .application-domain-stage__copy p {
            font-size: .9375rem;
            line-height: 1.7;
        }

        .application-product-strip {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: .625rem;
            margin-top: 1.5rem;
        }

        .application-product-thumb {
            padding: .375rem .375rem .7rem;
            border-radius: 14px;
        }

        .application-product-thumb__media {
            aspect-ratio: 4 / 3;
            border-radius: 10px;
        }

        .application-product-thumb__name {
            margin: .625rem .25rem 0;
            font-size: .8125rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .application-domain-panel.is-panel-entering,
        .application-domain-tab,
        .application-domain-tab::after,
        .application-domain-stage__image,
        .application-domain-stage__copy a,
        .application-product-thumb,
        .application-product-thumb img,
        .application-list-js.application-reveal-ready .application-index__hero.application-list-reveal,
        .application-list-js.application-reveal-ready .application-list-reveal-item {
            animation: none !important;
            opacity: 1 !important;
            transform: none !important;
            transition: none !important;
            transition-delay: 0s !important;
        }
    }

    html.application-detail-js {
        overflow-x: clip;
    }

    html.application-detail-js body {
        overflow-x: clip;
    }

    .application-detail-page {
        overflow-x: clip;
        color: var(--application-ink);
        background: var(--application-bg);
        font-family: var(--rounded-brand-font);
    }

    .application-detail-screen {
        position: relative;
        display: grid;
        min-height: clamp(18rem, 36svh, 24rem);
        align-items: center;
        padding: clamp(2.4rem, 4vw, 3.6rem) clamp(1rem, 5vw, 6rem);
    }

    .application-detail-screen + .application-detail-screen {
        border-top: 1px solid rgba(7, 17, 31, .06);
    }

    .application-detail-screen__inner {
        display: grid;
        width: min(1320px, 100%);
        margin: 0 auto;
        gap: clamp(1.5rem, 4vw, 3.5rem);
        align-items: center;
    }

    .application-detail-two-col {
        grid-template-columns: minmax(17rem, .74fr) minmax(0, 1.26fr);
        align-items: start;
    }

    .application-detail-hero {
        min-height: auto;
        padding-top: calc(var(--application-nav) + clamp(1rem, 2.6vw, 1.75rem));
        padding-bottom: clamp(2rem, 3.2vw, 2.8rem);
        background: #fff;
    }

    .application-overview-screen,
    .application-help-screen,
    .application-products-screen {
        min-height: auto;
        align-items: start;
        padding-top: clamp(2.8rem, 4.7vw, 4.2rem);
        padding-bottom: clamp(2.8rem, 4.7vw, 4.2rem);
    }

    .application-detail-hero__grid {
        position: relative;
        min-height: clamp(25rem, 48svh, 35rem);
        overflow: hidden;
        border-radius: 8px;
        background-color: #eef2f5;
        box-shadow: 0 22px 58px rgba(7, 17, 31, .10);
        isolation: isolate;
    }

    .application-detail-hero__content {
        display: grid;
        grid-area: 1 / 1;
        align-content: center;
        align-self: end;
        gap: clamp(.8rem, 1.4vw, 1.05rem);
        z-index: 2;
        max-width: 42rem;
        padding: clamp(1.6rem, 4vw, 4rem);
    }

    .application-detail-back {
        display: inline-flex;
        width: fit-content;
        min-height: 2rem;
        align-items: center;
        padding: 0 .78rem;
        border: 1px solid rgba(7, 17, 31, .12);
        border-radius: 999px;
        color: #fff;
        background: rgba(7, 17, 31, .18);
        font-size: .74rem;
        font-weight: 500;
        line-height: 1;
        text-decoration: none;
        transition: border-color .18s ease, color .18s ease, background .18s ease;
    }

    .application-detail-back:hover {
        border-color: rgba(255, 255, 255, .42);
        color: #fff;
        background: rgba(7, 17, 31, .26);
    }

    .application-detail-back:focus-visible {
        border-color: rgba(255, 255, 255, .48);
        color: #fff;
        background: rgba(7, 17, 31, .28);
        outline: 2px solid rgba(255, 255, 255, .52);
        outline-offset: 3px;
    }

    .application-detail-hero h1,
    .application-section-head h2 {
        margin: 0;
        color: var(--application-ink);
        font-family: var(--site-heading-font);
        font-weight: 500;
        letter-spacing: 0;
    }

    .application-detail-hero h1 {
        max-width: 9em;
        color: #fff;
        font-size: clamp(2.12rem, 3.55vw, 3.65rem);
        line-height: 1.06;
        text-shadow: 0 3px 24px rgba(0, 0, 0, .34);
    }

    .application-detail-hero__lead {
        margin: 0;
        max-width: 35rem;
        color: rgba(255, 255, 255, .92);
        font-size: clamp(1rem, 1.12vw, 1.1rem);
        line-height: 1.7;
        text-shadow: 0 2px 14px rgba(0, 0, 0, .28);
    }

    .application-detail-hero__media {
        position: relative;
        grid-area: 1 / 1;
        z-index: 1;
        height: 100%;
        min-height: 0;
        margin: 0;
        overflow: hidden;
        border-radius: 0;
        background: #e8edf0;
        box-shadow: none;
        isolation: isolate;
    }

    .application-detail-hero__image {
        position: absolute;
        inset: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.08) contrast(1.01) brightness(1.18);
        transform: scale(1.01);
    }

    .application-detail-hero__shade {
        position: absolute;
        inset: 0;
        z-index: 1;
        pointer-events: none;
        background:
            linear-gradient(90deg, rgba(3, 8, 14, .28), rgba(3, 8, 14, .08) 42%, rgba(3, 8, 14, 0)),
            linear-gradient(180deg, rgba(3, 8, 14, 0), rgba(3, 8, 14, .035));
    }

    .application-detail-hero .application-detail-back {
        border-color: rgba(255, 255, 255, .24);
        color: rgba(255, 255, 255, .9);
        background: rgba(255, 255, 255, .12);
    }

    .application-detail-hero .application-detail-back:hover {
        border-color: rgba(255, 255, 255, .38);
        color: #fff;
        background: rgba(255, 255, 255, .18);
    }

    .application-detail-hero .application-detail-back:focus-visible {
        border-color: rgba(255, 255, 255, .5);
        color: #fff;
        background: rgba(255, 255, 255, .2);
        outline-color: rgba(255, 255, 255, .68);
    }

    .application-section-head {
        display: grid;
        gap: .6rem;
        align-content: start;
        align-self: start;
        max-width: 34rem;
        padding-top: .15rem;
    }

    .application-section-head h2 {
        font-size: clamp(2rem, 2.65vw, 2.75rem);
        line-height: 1.08;
    }

    .application-section-head p {
        margin: 0;
        color: var(--application-muted);
        font-size: 1.06rem;
        line-height: 1.75;
    }

    .application-overview-screen .application-detail-two-col,
    .application-help-screen .application-detail-two-col {
        grid-template-columns: minmax(16rem, .38fr) minmax(0, 1fr);
        gap: clamp(2rem, 4.6vw, 4.8rem);
        width: min(1180px, 100%);
        align-items: center;
    }

    .application-overview-screen .application-section-head,
    .application-help-screen .application-section-head {
        max-width: 21rem;
        padding-top: 0;
    }

    .application-overview-screen .application-section-head h2,
    .application-help-screen .application-section-head h2 {
        font-size: clamp(2rem, 2.35vw, 2.55rem);
        line-height: 1.1;
    }

    .application-overview-visual {
        position: relative;
        width: min(100%, 20.5rem);
        margin: clamp(.95rem, 1.8vw, 1.35rem) 0 0;
        overflow: hidden;
        border: 1px solid rgba(7, 17, 31, .075);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 32px rgba(7, 17, 31, .045);
        aspect-ratio: 16 / 11;
    }

    .application-overview-visual img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(1.04) contrast(1.01) brightness(1.06);
    }

    .application-detail-copy {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(.88rem, 1.55vw, 1.2rem);
        max-width: none;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .application-detail-copy p {
        margin: 0;
        padding: clamp(1.05rem, 1.65vw, 1.45rem);
        border: 1px solid rgba(7, 17, 31, .075);
        border-radius: 8px;
        color: var(--application-ink);
        background: #fff;
        box-shadow: 0 10px 28px rgba(7, 17, 31, .035);
        font-size: clamp(1rem, 1.03vw, 1.08rem);
        line-height: 1.82;
    }

    .application-detail-copy p:first-child {
        grid-column: 1 / -1;
        max-width: 60rem;
        font-size: clamp(1.08rem, 1.12vw, 1.2rem);
        line-height: 1.82;
    }

    .application-detail-copy p:not(:first-child) {
        border-top: 1px solid rgba(7, 17, 31, .075);
    }

    .application-help-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(.88rem, 1.5vw, 1.12rem);
        margin: 0;
        padding: 0;
        border: 0;
        list-style: none;
    }

    .application-help-grid li {
        display: block;
        min-width: 0;
        min-height: 0;
        padding: clamp(1.08rem, 1.72vw, 1.52rem);
        border: 1px solid rgba(7, 17, 31, .075);
        border-radius: 8px;
        color: var(--application-ink);
        background: #fff;
        box-shadow: 0 10px 28px rgba(7, 17, 31, .035);
        font-size: clamp(1rem, 1vw, 1.08rem);
        font-weight: 400;
        line-height: 1.82;
        text-align: left;
    }

    .application-help-grid li + li {
        border-left: 1px solid rgba(7, 17, 31, .075);
    }

    .application-help-grid li::before {
        content: none;
    }

    .application-products-screen .application-detail-two-col {
        grid-template-columns: 1fr;
        gap: clamp(1.1rem, 1.8vw, 1.55rem);
        width: min(1180px, 100%);
    }

    .application-products-screen .application-section-head {
        max-width: 48rem;
        padding-top: 0;
    }

    .application-product-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(.86rem, 1.22vw, 1.05rem);
    }

    .application-product-card {
        position: relative;
        display: grid;
        grid-template-columns: minmax(7.7rem, .38fr) minmax(0, 1fr);
        gap: .85rem;
        align-items: stretch;
        min-width: 0;
        min-height: 11.2rem;
        overflow: hidden;
        padding: .82rem;
        border: 1px solid rgba(7, 17, 31, .085);
        border-radius: 8px;
        color: var(--application-ink);
        background: #fff;
        box-shadow: 0 6px 18px rgba(7, 17, 31, .025);
        isolation: isolate;
        text-decoration: none;
        cursor: pointer;
        transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .application-product-card::before {
        content: none;
    }

    .application-product-card:hover {
        border-color: rgba(7, 17, 31, .16);
        background: #fff;
        box-shadow: 0 12px 28px rgba(7, 17, 31, .045);
        transform: translateY(-2px);
    }

    .application-product-card:hover::before {
        opacity: 0;
    }

    .application-product-card:focus-visible {
        outline: 2px solid rgba(7, 17, 31, .42);
        outline-offset: 4px;
    }

    .application-product-card__media {
        position: relative;
        display: grid;
        place-items: center;
        width: 100%;
        min-height: 8.8rem;
        overflow: hidden;
        border-radius: 8px;
        background: #fff;
        box-shadow: inset 0 0 0 1px rgba(7, 17, 31, .055);
        transition: background .18s ease, box-shadow .18s ease;
    }

    .application-product-card:hover .application-product-card__media,
    .application-product-card:focus-visible .application-product-card__media {
        background: #fff;
        box-shadow: inset 0 0 0 1px rgba(7, 17, 31, .09);
    }

    .application-product-card__media img {
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 78%;
        height: 78%;
        max-width: none;
        max-height: none;
        object-fit: contain;
        filter: none;
        transform: translate(-50%, -50%);
    }

    .application-product-card__placeholder {
        color: var(--application-ink);
        font-size: .76rem;
        font-weight: 500;
    }

    .application-product-card__body {
        display: grid;
        align-content: start;
        gap: .34rem;
        min-width: 0;
        padding: .04rem .04rem .02rem;
    }

    .application-product-card__model {
        color: var(--application-ink);
        font-size: .68rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .application-product-card h3 {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: currentColor;
        font-family: var(--site-heading-font);
        font-size: clamp(1.02rem, .94vw, 1.12rem);
        font-weight: 500;
        line-height: 1.34;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .application-product-card p {
        display: -webkit-box;
        margin: 0;
        overflow: hidden;
        color: var(--application-ink);
        font-size: .86rem;
        line-height: 1.66;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    .application-product-card__action {
        width: fit-content;
        margin-top: .12rem;
        padding-bottom: .1rem;
        border-bottom: 1px solid var(--application-ink);
        color: var(--application-ink);
        font-size: .73rem;
        font-weight: 500;
        line-height: 1.25;
        transition: border-color .18s ease, color .18s ease;
    }

    .application-product-card:hover .application-product-card__action,
    .application-product-card:focus-visible .application-product-card__action {
        color: var(--application-ink);
        border-color: var(--application-ink);
    }

    .application-detail-js.application-reveal-ready .application-detail-reveal-item {
        opacity: 0;
        transform: translate3d(0, 14px, 0);
        transition:
            opacity .42s ease,
            transform .46s cubic-bezier(.22, 1, .36, 1);
        transition-delay: var(--reveal-delay, 0ms);
        will-change: opacity, transform;
    }

    .application-detail-js.application-reveal-ready .application-detail-reveal-item.is-visible {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        will-change: auto;
    }

    .application-gsap-reveal.application-detail-js.application-reveal-ready .application-detail-reveal-item {
        transition: none;
    }

    @media (max-width: 1080px) {
        .application-detail-two-col,
        .application-detail-hero__grid,
        .application-products-screen .application-detail-two-col {
            grid-template-columns: 1fr;
        }

        .application-detail-hero__content,
        .application-section-head {
            max-width: 46rem;
        }

        .application-detail-hero__grid {
            min-height: clamp(20rem, 58vw, 35rem);
        }

        .application-detail-hero__media {
            min-height: 0;
        }
    }

    @media (max-width: 900px) {
        :root {
            --application-nav: 66px;
        }

        .application-detail-screen {
            min-height: auto;
            padding: clamp(3rem, 9vw, 4.5rem) 1rem;
        }

        .application-detail-hero {
            min-height: auto;
            padding-top: calc(var(--application-nav) + 1.4rem);
        }

        .application-overview-screen .application-detail-two-col,
        .application-help-screen .application-detail-two-col {
            grid-template-columns: 1fr;
            gap: 1.15rem;
            width: 100%;
            align-items: start;
        }

        .application-overview-screen .application-section-head,
        .application-help-screen .application-section-head {
            max-width: none;
        }

        .application-overview-visual {
            width: 100%;
            max-width: none;
            aspect-ratio: 16 / 8.8;
        }

        .application-help-grid {
            grid-template-columns: 1fr;
            gap: .75rem;
        }

        .application-help-grid li {
            min-height: 0;
        }

        .application-help-grid li + li {
            border-left: 1px solid rgba(7, 17, 31, .075);
        }

        .application-product-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: .82rem;
            overflow: visible;
            padding-bottom: 0;
        }

        .application-product-card {
            grid-column: auto !important;
            width: 100%;
            min-height: 13.4rem;
        }
    }

    @media (max-width: 560px) {
        .application-detail-hero__content {
            gap: .66rem;
            padding: 1.15rem;
        }

        .application-detail-back {
            min-height: 1.86rem;
            padding: 0 .62rem;
            font-size: .68rem;
        }

        .application-detail-hero h1 {
            font-size: clamp(1.65rem, 8.4vw, 2.25rem);
        }

        .application-detail-hero__lead {
            font-size: .92rem;
            line-height: 1.62;
        }

        .application-section-head h2 {
            font-size: clamp(1.8rem, 9vw, 2.5rem);
        }

        .application-detail-copy {
            grid-template-columns: 1fr;
            gap: .95rem;
        }

        .application-detail-copy p:first-child {
            grid-column: auto;
        }

        .application-detail-hero__grid {
            min-height: 29rem;
        }

        .application-product-card {
            min-height: 14.2rem;
            padding: .82rem;
            grid-template-columns: 1fr;
            gap: .66rem;
        }

        .application-product-card__media {
            min-height: 8.4rem;
            aspect-ratio: 16 / 8.6;
        }

        .application-product-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .application-detail-js.application-reveal-ready .application-detail-reveal-item,
        .application-product-card {
            opacity: 1;
            transform: none;
            transition: none;
        }
    }

/* Energy application story — intentionally scoped so the other application pages stay unchanged. */
.application-detail-page--story {
    --application-story-ink: #000;
    --application-story-body-size: clamp(1rem, 1.03vw, 1.08rem);
    --application-story-copy-width: 34rem;
}

.application-detail-page--energy {
    --energy-ink: var(--application-story-ink);
    --energy-muted: var(--application-story-ink);
    --energy-line: #dde0e3;
    --energy-screen-soft: #f3f3f3;
    --energy-radius: 36px;
    --energy-hero-title-size: clamp(2.75rem, 4.25vw, 4.5rem);
    --energy-section-title-size: clamp(2.55rem, 3.4vw, 3.5rem);
    --energy-card-title-size: clamp(1.12rem, 1.42vw, 1.46rem);
    --energy-body-size: var(--application-story-body-size);
    color: var(--energy-ink);
    background: #fff;
    font-family: var(--rounded-brand-font);
}

.application-detail-page--energy,
.application-detail-page--energy * {
    box-sizing: border-box;
}

.application-detail-page--energy .scene-reveal {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
    transition:
        opacity .62s cubic-bezier(.2, .8, .2, 1),
        transform .62s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.has-gsap-motion .application-detail-page--energy .scene-reveal {
    transition: none !important;
}

.application-detail-page--energy .energy-story-screen.is-visible .scene-reveal,
.application-detail-page--energy .scene-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

/* Financial infrastructure panorama: one continuous physical space with real product imagery. */
.application-detail-page--city-infrastructure-timing .application-story-domain-visual {
    overflow: hidden;
    border-radius: clamp(.7rem, 1vw, 1rem);
    background: #0a0f14;
    box-shadow: 0 2.8rem 7rem rgba(10, 18, 26, .18);
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__scene {
    background: #f4f6f7;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption {
    padding: 1.2rem clamp(1.2rem, 2.6vw, 2.8rem) 1.05rem;
    border-bottom: 1px solid #dfe4e7;
    background: #f4f6f7;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption span {
    color: #4b7591;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption strong {
    color: #11161a;
}

.application-story-domain-visual__diagram--finance-infrastructure {
    overflow: hidden;
    background: #0a0f14;
}

.finance-panorama {
    position: relative;
    isolation: isolate;
    width: 100%;
    aspect-ratio: 1915 / 821;
    min-height: 38rem;
    overflow: hidden;
    background: #0a0f14;
    color: #f8fafb;
}

.finance-panorama::before,
.finance-panorama::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
}

.finance-panorama::before {
    background:
        linear-gradient(90deg, rgba(5, 10, 14, .48) 0%, rgba(5, 10, 14, .06) 32%, rgba(5, 10, 14, .02) 60%, rgba(5, 10, 14, .3) 100%),
        linear-gradient(180deg, rgba(4, 9, 13, .68) 0%, rgba(4, 9, 13, .02) 34%, rgba(4, 9, 13, .04) 66%, rgba(4, 9, 13, .72) 100%);
}

.finance-panorama::after {
    z-index: 2;
    background: linear-gradient(90deg, transparent 49.92%, rgba(255, 255, 255, .22) 50%, transparent 50.08%);
    opacity: .36;
}

.finance-panorama__scene {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finance-panorama__masthead {
    position: absolute;
    top: 5.7%;
    left: 3.2%;
    z-index: 7;
    display: grid;
    width: 35%;
    gap: .35rem;
    text-shadow: 0 .15rem .9rem rgba(0, 0, 0, .48);
}

.finance-panorama__masthead span {
    color: #89d2f6;
    font-size: clamp(.58rem, .68vw, .78rem);
    font-weight: 700;
    letter-spacing: .2em;
}

.finance-panorama__masthead strong {
    max-width: 34rem;
    font-family: var(--site-heading-font);
    font-size: clamp(1.35rem, 2.05vw, 2.45rem);
    font-weight: 560;
    line-height: 1.08;
    letter-spacing: -.025em;
}

.finance-panorama__masthead p {
    max-width: 31rem;
    margin: .15rem 0 0;
    color: rgba(237, 244, 248, .76);
    font-size: clamp(.66rem, .78vw, .88rem);
    line-height: 1.55;
}

.finance-panorama__sources {
    position: absolute;
    top: 6.4%;
    left: 43.5%;
    z-index: 7;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1.6rem minmax(0, 1fr);
    width: 29%;
    gap: .65rem;
    align-items: end;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(16, 24, 31, .34);
    color: #10171c;
}

.finance-panorama__sources > span {
    position: absolute;
    bottom: calc(100% + .45rem);
    left: 0;
    color: #34556b;
    font-size: clamp(.52rem, .6vw, .68rem);
    font-weight: 700;
    letter-spacing: .12em;
}

.finance-panorama__sources > div {
    display: grid;
    gap: .12rem;
}

.finance-panorama__sources strong {
    font-size: clamp(.7rem, .86vw, .98rem);
    font-weight: 650;
    line-height: 1.2;
}

.finance-panorama__sources small {
    color: rgba(16, 23, 28, .62);
    font-size: clamp(.52rem, .58vw, .66rem);
}

.finance-panorama__sources i {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: .65rem;
    background: rgba(18, 37, 50, .48);
}

.finance-panorama__sources i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: .32rem;
    aspect-ratio: 1;
    content: "";
    border-radius: 50%;
    background: #2e769f;
    box-shadow: 0 0 0 .22rem rgba(46, 118, 159, .12);
    transform: translate(-50%, -50%);
}

.finance-panorama__mode {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.finance-panorama__mode > header {
    position: absolute;
    z-index: 4;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .8rem;
    align-items: start;
}

.finance-panorama__mode > header > span {
    padding-top: .2rem;
    color: #6ec6f0;
    font-size: clamp(.66rem, .8vw, .92rem);
    font-weight: 700;
    letter-spacing: .12em;
}

.finance-panorama__mode > header > div {
    display: grid;
    gap: .25rem;
}

.finance-panorama__mode h3,
.finance-panorama__mode p {
    margin: 0;
}

.finance-panorama__mode h3 {
    font-family: var(--site-heading-font);
    font-size: clamp(1.45rem, 2.35vw, 2.85rem);
    font-weight: 560;
    line-height: 1;
    letter-spacing: -.04em;
}

.finance-panorama__mode p {
    font-size: clamp(.6rem, .72vw, .82rem);
    line-height: 1.45;
}

.finance-panorama__mode--external > header {
    top: 25%;
    left: 3.2%;
    width: 30%;
    color: #f7fafb;
    text-shadow: 0 .15rem .8rem rgba(0, 0, 0, .65);
}

.finance-panorama__mode--external > header p {
    color: rgba(238, 245, 249, .72);
}

.finance-panorama__mode--embedded > header {
    top: 24.5%;
    left: 65.6%;
    width: 31%;
    color: #11181d;
}

.finance-panorama__mode--embedded > header > span {
    color: #2d7298;
}

.finance-panorama__mode--embedded > header p {
    color: rgba(17, 24, 29, .68);
}

.finance-panorama__external-bay {
    position: absolute;
    top: 42.2%;
    left: 5.2%;
    width: 22.4%;
    height: 15.3%;
    overflow: hidden;
    clip-path: polygon(1% 8%, 99% 1%, 99% 89%, 1% 98%);
    background: rgba(3, 7, 10, .78);
    box-shadow: inset 0 0 1.4rem rgba(0, 0, 0, .72), 0 .5rem 1.5rem rgba(0, 0, 0, .32);
}

.finance-panorama__external-bay img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 151%;
    max-width: none;
    height: auto;
    filter: brightness(.78) contrast(1.08) drop-shadow(0 .4rem .6rem rgba(0, 0, 0, .52));
    transform: translate(-50%, -50%);
}

.finance-panorama__embedded-bay {
    position: absolute;
    top: 47.2%;
    left: 64.6%;
    width: 27.5%;
    height: 30.5%;
    overflow: hidden;
    clip-path: polygon(4% 6%, 98% 0, 96% 87%, 0 100%);
    background: linear-gradient(145deg, rgba(227, 232, 232, .92), rgba(151, 164, 169, .88));
    box-shadow: inset 0 0 1.7rem rgba(48, 61, 68, .34), 0 1.2rem 2.4rem rgba(0, 0, 0, .26);
    transform: perspective(58rem) rotateX(5deg) rotateZ(-.8deg);
    transform-origin: center bottom;
}

.finance-panorama__embedded-bay::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(165deg, rgba(255, 255, 255, .32), transparent 42%, rgba(31, 46, 54, .12));
    pointer-events: none;
}

.finance-panorama__embedded-bay img {
    position: absolute;
    top: 50%;
    left: 49%;
    display: block;
    width: 111%;
    max-width: none;
    height: 116%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.1) saturate(1.02) drop-shadow(0 .85rem .55rem rgba(37, 49, 54, .34));
    transform: translate(-50%, -50%) rotate(-2deg) scale(1.08);
}

.finance-panorama__product-name {
    position: absolute;
    z-index: 4;
    display: grid;
    gap: .18rem;
    padding-left: .85rem;
    border-left: 2px solid #69c8f4;
    text-shadow: 0 .12rem .7rem rgba(0, 0, 0, .72);
}

.finance-panorama__product-name > span {
    color: #7bd0f6;
    font-size: clamp(.52rem, .6vw, .68rem);
    font-weight: 700;
    letter-spacing: .1em;
}

.finance-panorama__product-name strong {
    color: #fff;
    font-size: clamp(.78rem, 1.12vw, 1.28rem);
    font-weight: 650;
    line-height: 1.2;
}

.finance-panorama__product-name small {
    color: rgba(230, 239, 244, .72);
    font-size: clamp(.54rem, .63vw, .72rem);
}

.finance-panorama__mode--external .finance-panorama__product-name {
    top: 61%;
    left: 5.2%;
    width: 28%;
}

.finance-panorama__mode--embedded .finance-panorama__product-name {
    top: 79.5%;
    left: 65.1%;
    width: 31%;
}

.finance-panorama__terminals {
    position: absolute;
    bottom: 4.7%;
    left: 35.2%;
    z-index: 8;
    display: flex;
    width: 29.6%;
    min-height: 3.4rem;
    gap: clamp(.38rem, .62vw, .72rem);
    align-items: center;
    justify-content: center;
    padding: .7rem 1rem;
    border-top: 1px solid rgba(135, 204, 238, .58);
    border-bottom: 1px solid rgba(135, 204, 238, .25);
    background: rgba(6, 13, 18, .78);
    color: #f3f7f9;
    backdrop-filter: blur(.25rem);
}

.finance-panorama__terminals > span {
    position: absolute;
    bottom: calc(100% + .35rem);
    left: 0;
    color: rgba(237, 244, 248, .72);
    font-size: clamp(.5rem, .58vw, .66rem);
    font-weight: 650;
    letter-spacing: .08em;
}

.finance-panorama__terminals strong {
    font-size: clamp(.62rem, .72vw, .82rem);
    font-weight: 560;
    white-space: nowrap;
}

.finance-panorama__terminals i {
    width: .2rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #67c9f3;
}

.finance-panorama__route-notes {
    position: absolute;
    top: 27.7%;
    left: 44.4%;
    z-index: 7;
    display: grid;
    gap: 33rem;
    color: #274c62;
    font-size: clamp(.52rem, .62vw, .7rem);
    font-weight: 650;
    pointer-events: none;
}

.finance-panorama__route-notes span {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    white-space: nowrap;
}

.finance-panorama__route-notes span::before {
    width: 1.8rem;
    height: 1px;
    content: "";
    background: #3c91bb;
}

.finance-panorama__route-notes span:last-child {
    color: rgba(235, 244, 249, .72);
}

.finance-panorama__route-notes span:last-child::before {
    border-top: 1px dashed rgba(235, 244, 249, .58);
    background: transparent;
}

.finance-panorama__routes {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.finance-panorama__route {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.finance-panorama__route--timing {
    stroke: rgba(92, 187, 234, .86);
    stroke-width: 1.6;
    marker-end: url(#finance-arrow);
    filter: drop-shadow(0 0 .18rem rgba(83, 190, 242, .45));
}

.finance-panorama__routes marker path {
    fill: #65c5f0;
}

.finance-panorama__route--monitoring {
    stroke: rgba(225, 236, 242, .58);
    stroke-width: 1.2;
    stroke-dasharray: 7 7;
}

@media (max-width: 1050px) {
    .finance-panorama {
        min-height: 35rem;
    }

    .finance-panorama__route-notes {
        gap: 26rem;
    }
}

@media (max-width: 760px) {
    .application-detail-page--city-infrastructure-timing .application-story-solution-overview {
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .application-detail-page--city-infrastructure-timing .application-story-domain-visual {
        border-radius: .7rem;
    }

    .finance-panorama {
        display: grid;
        aspect-ratio: auto;
        min-height: 0;
        gap: 1.75rem;
        padding: 1.35rem 1rem 1.5rem;
        background: #0a1117;
    }

    .finance-panorama::before {
        z-index: 1;
        background: linear-gradient(180deg, rgba(5, 10, 14, .52), rgba(5, 10, 14, .94) 28%, #0a1117 100%);
    }

    .finance-panorama::after {
        display: none;
    }

    .finance-panorama__scene {
        height: 23rem;
        object-position: center top;
        opacity: .72;
    }

    .finance-panorama__masthead,
    .finance-panorama__sources,
    .finance-panorama__mode,
    .finance-panorama__terminals,
    .finance-panorama__route-notes {
        position: relative;
        inset: auto;
        z-index: 5;
        width: 100%;
    }

    .finance-panorama__masthead {
        gap: .4rem;
        min-height: 17rem;
    }

    .finance-panorama__masthead strong {
        max-width: 18rem;
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .finance-panorama__masthead p {
        max-width: 20rem;
    }

    .finance-panorama__sources {
        grid-template-columns: minmax(0, 1fr) 1rem minmax(0, 1fr);
        padding: .85rem 0;
        border-top: 1px solid rgba(115, 183, 218, .28);
        border-bottom-color: rgba(115, 183, 218, .28);
        color: #f4f8fa;
    }

    .finance-panorama__sources > span {
        position: relative;
        bottom: auto;
        grid-column: 1 / -1;
        margin-bottom: .35rem;
        color: #7fc9ee;
    }

    .finance-panorama__sources small {
        color: rgba(233, 242, 247, .62);
    }

    .finance-panorama__sources i {
        background: rgba(117, 196, 235, .42);
    }

    .finance-panorama__mode {
        display: grid;
        gap: 1rem;
        pointer-events: auto;
    }

    .finance-panorama__mode > header,
    .finance-panorama__product-name,
    .finance-panorama__external-bay,
    .finance-panorama__embedded-bay {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .finance-panorama__mode > header,
    .finance-panorama__mode--embedded > header {
        color: #fff;
        text-shadow: none;
    }

    .finance-panorama__mode--external > header p,
    .finance-panorama__mode--embedded > header p {
        color: rgba(233, 242, 247, .68);
    }

    .finance-panorama__mode h3 {
        font-size: 2rem;
    }

    .finance-panorama__external-bay {
        height: 10rem;
        clip-path: none;
        border: 1px solid rgba(113, 190, 228, .22);
        background: linear-gradient(180deg, #111a21, #05090c);
    }

    .finance-panorama__external-bay img {
        width: 155%;
    }

    .finance-panorama__embedded-bay {
        height: 18rem;
        clip-path: polygon(2% 4%, 98% 0, 96% 92%, 0 100%);
    }

    .finance-panorama__product-name {
        padding: .2rem 0 .2rem .8rem;
    }

    .finance-panorama__terminals {
        flex-wrap: wrap;
        justify-content: flex-start;
        padding: 1.15rem 0 .85rem;
        border-color: rgba(115, 183, 218, .34);
        background: transparent;
        backdrop-filter: none;
    }

    .finance-panorama__terminals > span {
        position: relative;
        bottom: auto;
        flex-basis: 100%;
        margin-bottom: .2rem;
    }

    .finance-panorama__route-notes {
        display: flex;
        gap: 1.2rem;
        flex-wrap: wrap;
        color: #7fc9ee;
    }

    .finance-panorama__routes {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-detail-page--energy .scene-reveal {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

.energy-story-screen {
    position: relative;
    display: grid;
    min-height: max(46rem, 100svh);
    align-items: center;
    overflow: hidden;
    padding: clamp(5rem, 7vw, 7.5rem) clamp(1.5rem, 5vw, 5rem);
    background: #fff;
    scroll-margin-top: var(--application-nav);
}

.energy-story-screen + .energy-story-screen {
    border-top: 0;
}

.energy-story-shell {
    position: relative;
    z-index: 2;
    width: min(1320px, 100%);
    margin: 0 auto;
}

.energy-product-role,
.energy-story-kicker,
.energy-problem-card__label {
    margin: 0;
    color: var(--energy-muted);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.4;
}

.energy-story-title {
    margin: 0;
    color: var(--energy-ink);
    font-family: var(--site-heading-font);
    font-size: var(--energy-section-title-size);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
    line-height: 1.08;
    text-wrap: balance;
}

.energy-story-subtitle {
    max-width: 44rem;
    margin: 0;
    color: var(--energy-muted);
    font-size: clamp(.78rem, .82vw, .88rem);
    line-height: 1.55;
}

.energy-story-heading {
    display: grid;
    max-width: 38rem;
    gap: 1rem;
}

.energy-story-heading--center {
    justify-items: center;
    max-width: 58rem;
    margin-inline: auto;
    text-align: center;
}

.energy-story-heading > p:not(.energy-story-subtitle),
.energy-isolation-copy > p:not(.energy-story-subtitle):not(.energy-product-role),
.energy-wind-panel > p:not(.energy-story-subtitle):not(.energy-product-role) {
    margin: 0;
    color: var(--energy-muted);
    font-size: var(--energy-body-size);
    line-height: 1.75;
}

.energy-story-hero {
    min-height: 100svh;
    align-items: center;
    padding-top: calc(var(--application-nav) + clamp(2rem, 5vw, 5rem));
    padding-bottom: clamp(3rem, 6vw, 6rem);
    isolation: isolate;
}

.energy-story-hero__media {
    position: absolute;
    inset: var(--application-nav) 0 0;
    z-index: 0;
    margin: 0;
    overflow: hidden;
    background: #eef0f1;
}

.energy-story-hero__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 82%, #fff 100%),
        linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, .98) 24%, rgba(255, 255, 255, .88) 38%, rgba(255, 255, 255, .3) 52%, rgba(255, 255, 255, 0) 64%);
    pointer-events: none;
}

.energy-story-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 50%;
    filter: saturate(.78) contrast(.98) brightness(1.05);
}

.energy-story-hero__shell {
    display: grid;
    grid-template-columns: minmax(0, 4.6fr) minmax(0, 7.4fr);
}

.energy-story-hero__content {
    display: grid;
    grid-column: 1;
    max-width: 38rem;
    gap: clamp(.78rem, 1.2vw, 1.2rem);
}

.energy-story-hero .energy-story-kicker {
    color: #000;
}

.energy-story-hero .energy-story-title {
    font-size: var(--energy-hero-title-size);
    line-height: 1.06;
    white-space: nowrap;
}

.application-story-summary {
    max-width: var(--application-story-copy-width, 34rem);
    margin: 0;
    color: var(--application-story-ink, #000);
    font-size: var(--application-story-body-size, 1rem);
    line-height: 1.8;
    text-align: justify;
    text-align-last: left;
    text-justify: inter-ideograph;
    word-break: normal;
    word-break: auto-phrase;
}

.application-story-nowrap {
    white-space: nowrap;
}

.energy-story-back {
    display: inline-flex;
    width: fit-content;
    min-height: 2.75rem;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #aeb1b5;
    border-radius: 0;
    color: #000;
    background: transparent;
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color .2s ease, color .2s ease;
}

.energy-story-back:hover {
    border-color: var(--energy-ink);
    color: var(--energy-ink);
}

.energy-story-back:focus-visible,
.energy-product-stage__link:focus-visible,
.application-detail-page--energy .application-product-card:focus-visible {
    outline: 2px solid #4d5156;
    outline-offset: 4px;
}

.energy-story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 0;
    margin: .35rem 0 0;
    padding: 0;
    list-style: none;
}

.energy-story-tags li {
    display: inline-flex;
    min-height: 0;
    align-items: center;
    padding: 0 1rem;
    border: 0;
    border-left: 1px solid #d5d6d7;
    border-radius: 0;
    color: var(--energy-muted);
    background: transparent;
    font-size: .78rem;
    line-height: 1.3;
}

.energy-story-tags li:first-child {
    padding-left: 0;
    border-left: 0;
}

.energy-problem-screen {
    background: var(--energy-screen-soft);
}

.energy-problem-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(3.5rem, 6vw, 6rem);
    align-items: start;
}

.energy-problem-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.5rem, 3vw, 3rem);
}

.energy-problem-card {
    display: grid;
    min-height: 0;
    align-content: start;
    gap: .65rem;
    padding: 0;
    border: 0;
    background: transparent;
}

.energy-problem-card__visual {
    display: grid;
    width: clamp(4rem, 4.8vw, 4.75rem);
    aspect-ratio: 1;
    place-items: center;
    margin-bottom: clamp(.85rem, 1.4vw, 1.25rem);
    color: var(--energy-ink);
}

.energy-problem-card__visual svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.energy-problem-card h3 {
    margin: 0;
    color: var(--energy-ink);
    font-family: var(--site-heading-font);
    font-size: var(--energy-card-title-size);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
    line-height: 1.28;
}

.energy-products-overview {
    background: #fff;
}

.energy-products-overview .energy-story-heading {
    gap: .65rem;
}

.energy-product-index {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(2.25rem, 4vw, 4.5rem);
    margin-top: clamp(2.75rem, 4.5vw, 4.25rem);
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.application-detail-page--energy .application-product-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.25rem;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: var(--energy-ink);
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    transform: none;
}

.application-detail-page--energy .application-product-card:hover {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.energy-product-index__stage {
    display: grid;
    height: clamp(14rem, 18vw, 18rem);
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: opacity .22s ease;
}

.application-detail-page--energy .application-product-card:hover .energy-product-index__stage {
    border-color: transparent;
    box-shadow: none;
    opacity: .84;
    transform: none;
}

.energy-product-index__stage img {
    display: block;
    width: 86%;
    height: 82%;
    object-fit: contain;
}

.application-detail-page--energy .application-product-card:last-child .energy-product-index__stage img {
    width: 92%;
    height: 88%;
    object-fit: contain;
    object-position: center;
}

.energy-product-index__body {
    display: grid;
    align-content: start;
    gap: .7rem;
    padding-inline: .25rem;
}

.energy-product-model {
    color: var(--energy-muted);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 0;
}

.energy-product-index__body h3 {
    margin: 0;
    color: var(--energy-ink);
    font-family: var(--site-heading-font);
    font-size: var(--energy-card-title-size);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
    line-height: 1.35;
}

.application-detail-page--energy .application-product-card__fit {
    display: block;
    margin: 0;
    overflow: visible;
    color: var(--energy-muted);
    font-size: .9rem;
    max-width: 18rem;
    line-height: 1.65;
    -webkit-line-clamp: unset;
}

.energy-product-index__action,
.energy-product-stage__link {
    display: inline-flex;
    width: fit-content;
    min-height: 2.75rem;
    align-items: center;
    gap: .42rem;
    margin-top: .25rem;
    color: var(--energy-muted);
    font-size: .78rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, opacity .2s ease;
}

.energy-product-index__action::after,
.energy-product-stage__link::after {
    content: "›";
    color: var(--energy-muted);
    font-size: 1.05rem;
    line-height: 1;
    transition: transform .2s ease;
}

.application-product-card:hover .energy-product-index__action,
.energy-product-stage__link:hover {
    color: #000;
}

.application-product-card:hover .energy-product-index__action::after,
.energy-product-stage__link:hover::after {
    transform: translateX(2px);
}

.energy-time-screen {
    background: var(--energy-screen-soft);
}

.energy-time-screen .energy-story-heading {
    gap: .65rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.energy-time-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(4rem, 8vw, 9rem);
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.energy-product-stage {
    display: grid;
    grid-template-rows: clamp(17rem, 24vw, 23rem) auto;
    min-width: 0;
    gap: 1.75rem;
    padding: 0;
}

.energy-product-stage + .energy-product-stage {
    border-left: 0;
}

.energy-product-stage__media {
    display: grid;
    height: 100%;
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.energy-product-stage__media img {
    display: block;
    width: 82%;
    height: 72%;
    object-fit: contain;
}

.energy-product-stage__media--compact img {
    width: 56%;
    height: 78%;
}

.energy-product-stage__copy {
    display: grid;
    grid-template-rows: minmax(2.1rem, auto) minmax(2.75rem, auto) auto auto;
    align-content: start;
    gap: .8rem;
}

.energy-product-stage__copy h3 {
    margin: 0;
    color: var(--energy-ink);
    font-family: var(--site-heading-font);
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
    line-height: 1.25;
}

.energy-product-stage__copy > p:not(.energy-product-role) {
    margin: 0;
    color: var(--energy-muted);
    font-size: .96rem;
    line-height: 1.78;
}

.energy-product-summary strong {
    font-weight: 500;
}

.energy-metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: .8rem 0 0;
    gap: clamp(.8rem, 1.6vw, 1.5rem);
    padding: .9rem 0 0;
    border-top: 0;
}

.energy-metric-row > div {
    min-width: 0;
    padding: 0;
    border-left: 0;
}

.energy-metric-row > div:first-child {
    padding-left: 0;
    border-left: 0;
}

.energy-metric-row dt {
    color: var(--energy-muted);
    font-size: .7rem;
    line-height: 1.4;
}

.energy-metric-row dd {
    margin: .38rem 0 0;
    color: var(--energy-ink);
    font-family: var(--site-heading-font);
    font-size: clamp(1.05rem, 1.45vw, 1.45rem);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
    line-height: 1.2;
    word-break: break-word;
}

.energy-metric-row dd small {
    display: block;
    margin-top: .2rem;
    color: var(--energy-muted);
    font-size: .72rem;
    font-weight: 500;
    letter-spacing: 0;
}

.energy-isolation-screen {
    background: #fff;
}

.energy-isolation-layout {
    display: grid;
    grid-template-columns: minmax(20rem, 5.3fr) minmax(0, 6.7fr);
    gap: clamp(3rem, 5vw, 5rem);
    align-items: center;
}

.energy-isolation-copy {
    display: grid;
    max-width: 35rem;
    gap: 0;
}

.energy-isolation-copy > p {
    max-width: 32rem;
}

.energy-wind-panel .energy-product-role {
    margin-bottom: .8rem;
}

.energy-isolation-copy .energy-story-subtitle,
.energy-wind-panel .energy-story-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.65;
}

.energy-isolation-copy .energy-metric-row--isolation {
    margin-top: clamp(2rem, 3vw, 2.75rem);
    padding-top: 0;
}

.energy-metric-row--isolation dd {
    font-size: clamp(1.2rem, 1.65vw, 1.65rem);
    white-space: nowrap;
}

.energy-wind-panel .energy-metric-row {
    margin-top: clamp(1.65rem, 2.6vw, 2.25rem);
    padding-top: 0;
}

.energy-isolation-copy .energy-product-stage__link,
.energy-wind-panel .energy-product-stage__link {
    margin-top: .9rem;
}

.energy-metric-row--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.energy-metric-row--large dd {
    font-size: clamp(1.22rem, 1.55vw, 1.75rem);
    white-space: nowrap;
}

.energy-isolation-stage {
    display: grid;
    min-height: clamp(28rem, 45vw, 40rem);
    place-items: center;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.energy-isolation-stage img {
    display: block;
    width: min(78%, 42rem);
    max-height: 68%;
    object-fit: contain;
}

.energy-wind-screen {
    min-height: max(48rem, 100svh);
    padding: clamp(4.25rem, 6.2vw, 6rem) clamp(1.5rem, 5vw, 5rem);
    background: var(--energy-screen-soft);
    isolation: isolate;
}

.energy-wind-screen__media {
    position: relative;
    inset: auto;
    justify-self: end;
    width: min(100%, 42rem);
    aspect-ratio: 16 / 9;
    height: auto;
    margin: 0;
    overflow: hidden;
    border-radius: clamp(1.5rem, 2.5vw, 2rem);
    background: transparent;
}

.energy-wind-screen__media::after {
    display: none;
}

.energy-wind-screen__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 66% 50%;
}

.energy-wind-screen__shell {
    display: grid;
    grid-template-columns: minmax(20rem, 5fr) minmax(0, 7fr);
    gap: clamp(3rem, 6vw, 6.5rem);
    align-items: center;
}

.energy-wind-panel {
    display: grid;
    grid-column: auto;
    gap: 0;
    max-width: 35rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.energy-wind-panel > p {
    max-width: 35rem;
}

.energy-wind-panel .energy-metric-row--large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

@media (max-width: 1180px) {
    .energy-story-screen {
        padding-block: clamp(4.25rem, 7vw, 5.5rem);
    }

    .energy-story-hero {
        min-height: max(52rem, 100svh);
    }

    .energy-problem-grid,
    .energy-product-index {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .energy-product-index__stage {
        height: clamp(17rem, 38vw, 23rem);
    }

    .energy-isolation-layout {
        gap: 3.5rem;
    }
}

@media (max-width: 900px) {
    .application-detail-page--energy {
        --application-nav: 66px;
    }

    .energy-story-screen {
        min-height: auto;
    }

    .energy-story-hero .energy-story-title {
        white-space: normal;
    }

    .energy-isolation-layout {
        grid-template-columns: 1fr;
    }

    .energy-isolation-layout {
        gap: 3rem;
    }

    .energy-time-products {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .energy-product-stage {
        grid-template-rows: auto;
        padding-inline: 0;
    }

    .energy-product-stage__copy {
        grid-template-rows: auto;
    }

    .energy-product-stage + .energy-product-stage {
        padding-top: 3.5rem;
        border-top: 1px solid var(--energy-line);
        border-left: 0;
    }

    .energy-isolation-stage {
        min-height: clamp(22rem, 68vw, 35rem);
    }

    .energy-isolation-stage img {
        max-height: 74%;
    }

    .energy-wind-screen {
        padding-inline: clamp(1.5rem, 5vw, 5rem);
    }

    .energy-wind-screen__media {
        width: min(100%, 42rem);
        height: auto;
        justify-self: center;
        border-radius: 2rem;
    }

    .energy-wind-screen__shell {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-inline: 0;
    }

    .energy-wind-panel {
        max-width: none;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }
}

@media (max-width: 700px) {
    .energy-story-screen {
        padding: 3.75rem 1rem;
    }

    .energy-story-title {
        font-size: 2.15rem;
    }

    .energy-story-hero {
        display: flex;
        min-height: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--application-nav) 0 0;
    }

    .energy-story-hero__media {
        position: relative;
        inset: auto;
        height: 46svh;
        min-height: 22rem;
    }

    .energy-story-hero__media::after {
        display: none;
    }

    .energy-story-hero__media img {
        object-position: 66% 50%;
    }

    .energy-story-hero__shell {
        display: block;
        padding: 2.75rem 1rem 4rem;
    }

    .energy-story-hero .energy-story-title {
        font-size: clamp(2.25rem, 9.5vw, 2.5rem);
        line-height: 1.08;
        white-space: normal;
    }

    .energy-story-back {
        min-height: 2.75rem;
    }

    .energy-story-tags {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem 0;
    }

    .energy-story-tags li {
        padding-inline: .85rem 0;
    }

    .energy-story-tags li:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .energy-problem-grid,
    .energy-product-index {
        grid-template-columns: 1fr;
    }

    .energy-problem-card {
        min-height: 0;
        padding: 0;
    }

    .energy-problem-card__visual {
        width: 4rem;
    }

    .energy-metric-row--isolation {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .65rem;
    }

    .energy-metric-row--isolation dd {
        font-size: clamp(.98rem, 4.6vw, 1.15rem);
    }

    .energy-product-index__stage {
        height: min(82vw, 23rem);
    }

    .energy-product-stage__media {
        height: min(76vw, 22rem);
        border-radius: 0;
    }

    .energy-product-stage__media--compact img {
        width: 64%;
    }

    .energy-metric-row,
    .energy-metric-row--large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .energy-metric-row > div:nth-child(odd) {
        padding-left: 0;
        border-left: 0;
    }

    .energy-isolation-stage {
        min-height: min(82vw, 26rem);
        border-radius: 2rem;
    }

    .energy-isolation-stage img {
        width: 86%;
    }

    .energy-wind-screen {
        padding-inline: 1rem;
    }

    .energy-wind-screen__shell {
        padding-inline: 0;
    }

    .energy-wind-screen__media {
        width: 100%;
        aspect-ratio: 16 / 10;
        height: auto;
        min-height: 0;
        border-radius: 1.25rem;
    }

}

@media (prefers-reduced-motion: reduce) {
    .application-detail-page--energy .application-product-card:hover .energy-product-index__stage {
        transform: none;
        transition: none;
    }
}

/* Config-driven application stories share the approved energy-page language without changing it. */
.application-detail-page--configured-story {
    --energy-ink: var(--application-story-ink);
    --energy-muted: var(--application-story-ink);
    --energy-line: #dde0e3;
    --energy-screen-soft: #fff;
    --energy-radius: 36px;
    --energy-hero-title-size: clamp(2.55rem, 3.7vw, 4rem);
    --energy-section-title-size: clamp(2.8rem, 3.5vw, 4rem);
    --energy-card-title-size: clamp(1.25rem, 1.46vw, 1.6rem);
    --energy-body-size: var(--application-story-body-size);
    --story-card-border: #e2e4e3;
    --story-card-surface: linear-gradient(180deg, #fff 0%, #f8f8f7 100%);
    --story-card-shadow: 0 .45rem 1.25rem rgba(34, 42, 46, .05);
    --story-card-radius: 1rem;
    overflow-x: clip;
    color: #000;
    background: #fff;
    font-family: var(--rounded-brand-font);
}

.application-detail-page--configured-story .energy-story-screen:not(.energy-story-hero) {
    min-height: auto;
    padding-block: clamp(3rem, 3.6vw, 4rem);
}

@media (min-width: 901px) {
    .application-detail-page--configured-story .energy-product-index {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .application-detail-page--configured-story .energy-problem-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
    }
}

.application-detail-page--configured-story .energy-story-screen + .energy-story-screen::before {
    position: absolute;
    top: 0;
    right: clamp(1.5rem, 5vw, 5rem);
    left: clamp(1.5rem, 5vw, 5rem);
    z-index: 3;
    height: 1px;
    content: "";
    background: #d9dde1;
    pointer-events: none;
}

.application-detail-page--configured-story .energy-story-shell {
    width: min(1680px, 100%);
}

.application-detail-page--configured-story .energy-problem-layout {
    gap: clamp(2rem, 2.8vw, 3rem);
}

.application-detail-page--configured-story .energy-story-heading {
    max-width: 48rem;
    gap: 1.15rem;
}

.application-detail-page--configured-story .energy-story-subtitle {
    max-width: 48rem;
    font-size: clamp(.95rem, .9vw, 1.05rem);
    line-height: 1.7;
}

.application-detail-page--configured-story.application-detail-page--ocean-underwater-port {
    --application-story-hero-position: 58% 50%;
    --application-story-hero-mobile-position: 58% 50%;
}

.application-detail-page--configured-story.application-detail-page--smart-transport-autonomous {
    --application-story-hero-position: 58% 50%;
    --application-story-hero-mobile-position: 56% 50%;
}

.application-detail-page--configured-story.application-detail-page--city-infrastructure-timing {
    --application-story-hero-position: 60% 50%;
    --application-story-hero-mobile-position: 58% 50%;
}

@media (min-width: 901px) {
    .application-detail-page--configured-story.application-detail-page--smart-transport-autonomous .energy-problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .application-detail-page--configured-story.application-detail-page--city-infrastructure-timing .energy-problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.application-detail-page--configured-story.application-detail-page--prospecting-defense {
    --application-story-hero-position: 56% 50%;
    --application-story-hero-mobile-position: 58% 48%;
}

.application-detail-page--configured-story.application-detail-page--research-industry {
    --application-story-hero-position: 58% 50%;
    --application-story-hero-mobile-position: 55% 50%;
}

.application-detail-page--configured-story,
.application-detail-page--configured-story * {
    box-sizing: border-box;
}

.application-detail-page--configured-story .scene-reveal {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition:
        opacity .68s cubic-bezier(.2, .8, .2, 1),
        transform .68s cubic-bezier(.2, .8, .2, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

html.has-gsap-motion .application-detail-page--configured-story .scene-reveal {
    transition: none !important;
}

.application-detail-page--configured-story .energy-story-screen.is-visible .scene-reveal,
.application-detail-page--configured-story .scene-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.application-detail-page--configured-story .energy-story-hero .energy-story-title {
    max-width: 10em;
    white-space: normal;
}

.application-detail-page--configured-story .energy-story-hero__media img {
    object-position: var(--application-story-hero-position, 56% 50%);
    filter: saturate(.92) contrast(.98) brightness(1.04);
}

.application-detail-page--configured-story .energy-problem-screen,
.application-detail-page--configured-story .energy-time-screen {
    background: #fff;
}

.application-detail-page--configured-story .energy-story-subtitle,
.application-detail-page--configured-story .energy-product-model,
.application-detail-page--configured-story .application-product-card__fit,
.application-detail-page--configured-story .application-story-problem-description,
.application-detail-page--configured-story .energy-metric-row dt,
.application-detail-page--configured-story .energy-metric-row dd,
.application-detail-page--configured-story .energy-metric-row dd small,
.application-detail-page--configured-story .energy-product-index__action,
.application-detail-page--configured-story .energy-product-stage__link {
    color: #000;
}

.application-detail-page--configured-story .application-story-problem-description {
    max-width: 21rem;
    margin: 0;
    font-size: clamp(.95rem, .9vw, 1.02rem);
    line-height: 1.72;
}

.application-detail-page--configured-story .application-story-problem-description span {
    display: block;
    margin-bottom: .42rem;
    color: #676c72;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.application-detail-page--configured-story .application-story-expanded-reference-copy {
    display: grid;
    max-width: none;
    gap: .72rem;
}

.application-detail-page--configured-story .application-story-expanded-reference-copy > strong {
    display: block;
    color: #111820;
    font-family: var(--site-heading-font);
    font-size: clamp(1.02rem, 1.05vw, 1.2rem);
    font-weight: var(--site-title-weight);
    line-height: 1.5;
}

.application-detail-page--configured-story .application-story-expanded-reference-copy > span {
    display: block;
    margin: 0;
    color: #343b43;
    font-size: clamp(.92rem, .86vw, 1rem);
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.75;
}

.application-detail-page--configured-story .energy-problem-grid {
    gap: clamp(1.25rem, 2vw, 2rem);
}

.application-detail-page--configured-story .energy-problem-card {
    position: relative;
    min-height: clamp(11.5rem, 12vw, 13rem);
    gap: .8rem;
    padding: clamp(1.45rem, 1.75vw, 1.9rem);
    border: 1px solid var(--story-card-border);
    border-radius: var(--story-card-radius);
    background: var(--story-card-surface);
    box-shadow: var(--story-card-shadow);
}

.application-detail-page--configured-story .energy-problem-card__index {
    position: absolute;
    top: 1.4rem;
    right: 1.5rem;
    color: #8a9097;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.application-detail-page--configured-story .energy-problem-card__visual {
    width: clamp(3.8rem, 4vw, 4.5rem);
    margin-bottom: clamp(.65rem, 1vw, 1rem);
}

.application-story-path {
    display: grid;
    grid-template-columns: minmax(15rem, .72fr) minmax(0, 1.7fr);
    gap: clamp(2.25rem, 4vw, 5rem);
    align-items: start;
    padding-top: 0;
    border-top: 0;
}

.application-story-solution-overview {
    background: #fff;
}

.application-story-solution-overview .energy-story-shell {
    display: block;
}

.application-story-solution-overview__heading {
    grid-column: 1 / -1;
    max-width: 48rem;
    opacity: 1;
    visibility: visible;
    transform: none;
}

.application-story-domain-visual {
    grid-column: 1 / -1;
    display: grid;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--story-card-border);
    border-radius: var(--story-card-radius);
    background: var(--story-card-surface);
    box-shadow: var(--story-card-shadow);
}

.application-story-domain-visual__scene {
    display: grid;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    background: #fff;
}

.application-story-domain-visual__caption {
    display: grid;
    gap: .3rem;
    justify-items: start;
    padding: 1.1rem clamp(1.1rem, 2vw, 1.35rem) .95rem;
    border-bottom: 1px solid #eceeed;
}

.application-story-domain-visual__caption span {
    color: #5f646a;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.application-story-domain-visual__caption strong {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    font-weight: var(--site-title-weight);
    line-height: 1.3;
}

.application-story-domain-visual__diagram {
    position: relative;
    min-width: 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #fff;
}

.application-story-domain-visual__diagram--renewable {
    aspect-ratio: 16 / 9;
}

.application-story-domain-visual__base {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.application-story-domain-visual__product-overlays {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.application-story-domain-visual__product-overlay {
    position: absolute;
    display: block;
}

.application-story-domain-visual__product-overlay img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.application-story-domain-visual__labels {
    position: absolute;
    inset: 0;
    z-index: 6;
    pointer-events: none;
}

.application-story-domain-visual__label {
    position: absolute;
    padding: .3rem .58rem;
    border: 1px solid rgba(121, 132, 140, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 .18rem .55rem rgba(19, 30, 38, .08);
    color: #26333c;
    font-size: clamp(.62rem, .82vw, .82rem);
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.application-story-domain-visual__product-overlay--grid-timing-server {
    top: 47.4%;
    left: 22.35%;
    width: 5.55%;
    height: 1.85%;
    overflow: hidden;
    border-radius: 2px;
    background: #20262a;
    box-shadow: inset 0 0 0 1px rgba(188, 197, 202, .38), 0 .08rem .12rem rgba(17, 24, 29, .24);
}

.application-story-domain-visual__product-overlay--grid-security-isolation {
    top: 50.25%;
    left: 21.9%;
    width: 4.6%;
    height: 1.35%;
    overflow: hidden;
    border-radius: 2px;
    background: #151a1d;
    box-shadow: inset 0 0 0 1px rgba(188, 197, 202, .28), 0 .08rem .12rem rgba(17, 24, 29, .24);
}

.application-story-domain-visual__product-overlay--grid-timing-server img,
.application-story-domain-visual__product-overlay--grid-security-isolation img {
    position: absolute;
    right: 0;
    bottom: .18rem;
    left: 0;
    width: 100%;
    max-width: none;
}

.application-story-domain-visual__product-overlay--grid-security-isolation img {
    bottom: 0;
    transform: scaleY(1.45);
    transform-origin: center bottom;
}

.application-story-domain-visual__diagram--finance {
    background: #f6f5f2;
}

.application-detail-page--city-infrastructure-timing .application-story-solution-overview {
    padding-right: clamp(1rem, 2.6vw, 3rem);
    padding-left: clamp(1rem, 2.6vw, 3rem);
    background: #f4f6f8;
}

.application-detail-page--city-infrastructure-timing .application-story-solution-overview .energy-story-shell {
    width: min(1820px, 100%);
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual {
    border: 0;
    border-radius: clamp(1.25rem, 2vw, 2rem);
    background: #06101b;
    box-shadow: 0 2.2rem 6rem rgba(8, 20, 34, .18);
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__scene {
    background: #06101b;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption {
    padding: clamp(1.2rem, 2vw, 1.8rem) clamp(1.25rem, 2.6vw, 2.6rem) 1.15rem;
    border-bottom-color: rgba(176, 203, 222, .14);
    background: #06101b;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption span {
    color: #6f99b8;
    letter-spacing: .14em;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption strong {
    color: #f5f9fc;
    font-size: clamp(1.3rem, 1.65vw, 1.8rem);
}

.application-story-domain-visual__diagram--finance-infrastructure {
    aspect-ratio: auto;
    overflow: visible;
    background: #06101b;
}

.finance-infrastructure {
    position: relative;
    isolation: isolate;
    min-height: 48rem;
    overflow: hidden;
    padding: clamp(1.35rem, 2.6vw, 2.7rem);
    background:
        radial-gradient(circle at 50% -20%, rgba(34, 135, 203, .22), transparent 38%),
        linear-gradient(145deg, #07131f 0%, #091827 48%, #07121d 100%);
    color: #eff7fc;
}

.finance-infrastructure::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    background-image:
        linear-gradient(rgba(108, 164, 199, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 164, 199, .04) 1px, transparent 1px);
    background-size: 3rem 3rem;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    pointer-events: none;
}

.finance-infrastructure__masthead {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, .8fr);
    gap: clamp(1.5rem, 3vw, 4rem);
    align-items: end;
    margin-bottom: clamp(1.5rem, 2.4vw, 2.5rem);
}

.finance-infrastructure__masthead > div {
    display: grid;
    gap: .5rem;
}

.finance-infrastructure__masthead span {
    color: #55b7f0;
    font-size: clamp(.68rem, .72vw, .82rem);
    font-weight: 700;
    letter-spacing: .18em;
}

.finance-infrastructure__masthead strong {
    color: #fff;
    font-family: var(--site-heading-font);
    font-size: clamp(1.5rem, 2.25vw, 2.65rem);
    font-weight: var(--site-title-weight);
    line-height: 1.08;
}

.finance-infrastructure__masthead p {
    max-width: 34rem;
    margin: 0;
    color: #9bb0bf;
    font-size: clamp(.8rem, .9vw, 1rem);
    line-height: 1.65;
}

.finance-infrastructure__deployments {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 1.5vw, 1.5rem);
}

.finance-deployment {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(137, 183, 212, .2);
    border-radius: clamp(1rem, 1.4vw, 1.35rem);
    background: rgba(10, 25, 39, .8);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
}

.finance-deployment::before {
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    content: "";
    background: linear-gradient(90deg, #168ed0, #59c7ff 60%, transparent);
}

.finance-deployment--embedded::before {
    background: linear-gradient(90deg, #5a8dff, #82c5ff 60%, transparent);
}

.finance-deployment__heading {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: clamp(.8rem, 1.5vw, 1.4rem);
    align-items: center;
    min-height: 6.6rem;
    padding: clamp(1.2rem, 1.8vw, 1.7rem);
    border-bottom: 1px solid rgba(137, 183, 212, .16);
    background: linear-gradient(100deg, rgba(24, 81, 116, .18), transparent 58%);
}

.finance-deployment__heading > span {
    display: grid;
    width: clamp(3.5rem, 4vw, 4.4rem);
    aspect-ratio: 1;
    place-items: center;
    border: 1px solid rgba(83, 190, 250, .42);
    border-radius: 50%;
    color: #67c8ff;
    font-size: clamp(.48rem, .55vw, .62rem);
    font-weight: 700;
    letter-spacing: .08em;
    text-align: center;
}

.finance-deployment__heading > div {
    display: grid;
    gap: .3rem;
}

.finance-deployment__heading h3,
.finance-deployment__heading p {
    margin: 0;
}

.finance-deployment__heading h3 {
    color: #fff;
    font-family: var(--site-heading-font);
    font-size: clamp(1.35rem, 1.7vw, 1.9rem);
    font-weight: 600;
    line-height: 1.1;
}

.finance-deployment__heading p {
    color: #8fa8b9;
    font-size: clamp(.68rem, .72vw, .82rem);
}

.finance-deployment__architecture {
    position: relative;
    display: grid;
    grid-template-rows: auto 2.6rem minmax(18rem, auto) 2.6rem auto;
    min-height: 43rem;
    padding: clamp(1rem, 1.5vw, 1.5rem) clamp(1.45rem, 2vw, 2.2rem) 1.35rem;
}

.finance-architecture-layer {
    position: relative;
    min-width: 0;
}

.finance-architecture-layer__name {
    display: block;
    margin-bottom: .75rem;
    color: #6d8494;
    font-size: clamp(.58rem, .62vw, .7rem);
    font-weight: 700;
    letter-spacing: .1em;
}

.finance-source-pair,
.finance-rack-pair,
.finance-server-tray-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(.7rem, 1vw, 1rem);
}

.finance-existing-source {
    position: relative;
    display: grid;
    grid-template-columns: 2.65rem minmax(0, 1fr);
    gap: .65rem;
    align-items: center;
    min-width: 0;
    min-height: 4.2rem;
    padding: .65rem .8rem;
    border: 1px solid rgba(137, 183, 212, .18);
    border-radius: .55rem;
    background: linear-gradient(160deg, rgba(35, 53, 67, .92), rgba(15, 28, 40, .96));
    box-shadow: 0 .65rem 1.8rem rgba(0, 0, 0, .16);
}

.finance-existing-source > i {
    position: relative;
    display: block;
    height: 1.55rem;
    border: 1px solid #5d6c77;
    border-radius: .18rem;
    background:
        radial-gradient(circle at 83% 50%, #6ee1ff 0 .11rem, transparent .13rem),
        repeating-linear-gradient(90deg, #172532 0 .18rem, #263746 .2rem .34rem);
    box-shadow: inset 0 0 0 2px #0a1118;
}

.finance-existing-source > i::before,
.finance-existing-source > i::after {
    position: absolute;
    top: 50%;
    width: .16rem;
    height: .55rem;
    content: "";
    border-radius: .1rem;
    background: #667783;
    transform: translateY(-50%);
}

.finance-existing-source > i::before {
    left: -.25rem;
}

.finance-existing-source > i::after {
    right: -.25rem;
}

.finance-existing-source > div {
    display: grid;
    min-width: 0;
    gap: .2rem;
}

.finance-existing-source strong {
    overflow: hidden;
    color: #e9f2f8;
    font-size: clamp(.62rem, .7vw, .78rem);
    font-weight: 600;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.finance-existing-source small {
    color: #708b9e;
    font-size: clamp(.5rem, .55vw, .62rem);
}

.finance-time-route {
    position: relative;
    display: grid;
    place-items: center;
}

.finance-time-route::before {
    width: 1px;
    height: 100%;
    content: "";
    background: linear-gradient(to bottom, rgba(69, 181, 244, .24), #48baff);
}

.finance-time-route::after {
    position: absolute;
    bottom: .08rem;
    width: 0;
    height: 0;
    content: "";
    border-top: .35rem solid #48baff;
    border-right: .28rem solid transparent;
    border-left: .28rem solid transparent;
}

.finance-time-route > span {
    position: absolute;
    right: calc(50% + .6rem);
    padding: .12rem .35rem;
    border-radius: 999px;
    background: #0b1b29;
    color: #54b9ef;
    font-size: clamp(.48rem, .54vw, .6rem);
    line-height: 1.2;
    white-space: nowrap;
}

.finance-architecture-layer--upgrade {
    display: grid;
    align-content: start;
    min-height: 18rem;
    padding: clamp(.9rem, 1.2vw, 1.15rem);
    border: 1px solid rgba(80, 180, 237, .26);
    border-radius: .85rem;
    background:
        radial-gradient(circle at 50% 42%, rgba(32, 138, 198, .12), transparent 46%),
        rgba(8, 19, 30, .74);
    box-shadow: inset 0 0 2.5rem rgba(44, 142, 200, .04);
}

.finance-server-rack {
    position: relative;
    display: grid;
    grid-template-rows: .72fr 1.15fr .72fr;
    gap: .24rem;
    min-height: 10.2rem;
    padding: .72rem .62rem;
    border: 1px solid #495866;
    border-radius: .45rem;
    background: linear-gradient(90deg, #17232d, #0c151d 10%, #15222c 90%, #0b131a);
    box-shadow: 0 1.1rem 2.1rem rgba(0, 0, 0, .26), inset 0 0 0 2px #070c11;
}

.finance-server-rack::before,
.finance-server-rack::after {
    position: absolute;
    top: .55rem;
    bottom: .55rem;
    width: .22rem;
    content: "";
    border-radius: .12rem;
    background: repeating-linear-gradient(to bottom, #5c6e7c 0 .18rem, #26333d .2rem .4rem);
}

.finance-server-rack::before {
    left: .24rem;
}

.finance-server-rack::after {
    right: .24rem;
}

.finance-server-rack__slot {
    margin: 0 .2rem;
    border: 1px solid #34434f;
    border-radius: .2rem;
    background:
        radial-gradient(circle at 92% 50%, #7fa13d 0 .08rem, transparent .11rem),
        repeating-linear-gradient(90deg, #0b1117 0 .2rem, #1f2d37 .22rem .34rem);
    box-shadow: inset 0 0 .45rem rgba(0, 0, 0, .62);
}

.finance-server-rack__product-bay {
    position: relative;
    display: grid;
    min-height: 3.35rem;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(111, 190, 232, .5);
    border-radius: .24rem;
    background: radial-gradient(ellipse at center, rgba(70, 181, 238, .18), #05090d 74%);
    box-shadow: 0 0 1.2rem rgba(48, 176, 240, .16), inset 0 0 0 1px rgba(255, 255, 255, .03);
}

.finance-server-rack__product-bay::after {
    position: absolute;
    right: .35rem;
    bottom: .26rem;
    width: .22rem;
    aspect-ratio: 1;
    content: "";
    border-radius: 50%;
    background: #6de5ff;
    box-shadow: 0 0 .45rem #3fc3ff;
}

.finance-server-rack__product-bay img {
    display: block;
    width: 96%;
    max-height: 3.1rem;
    object-fit: contain;
    filter: drop-shadow(0 .35rem .3rem rgba(0, 0, 0, .38));
}

.finance-server-tray {
    position: relative;
    min-height: 10.2rem;
    padding: .72rem;
    border: 1px solid #53626f;
    border-radius: .5rem .5rem .8rem .8rem;
    background: linear-gradient(155deg, #40515f, #17232d 45%, #0a1117);
    box-shadow: 0 1.1rem 2.1rem rgba(0, 0, 0, .28), inset 0 0 0 2px #071018;
    perspective: 38rem;
}

.finance-server-tray::before {
    position: absolute;
    top: .3rem;
    right: 1rem;
    left: 1rem;
    height: .34rem;
    content: "";
    border-radius: .15rem;
    background: repeating-linear-gradient(90deg, #0b151d 0 .2rem, #415464 .22rem .36rem);
}

.finance-server-tray__interior {
    position: relative;
    height: 100%;
    min-height: 8.6rem;
    overflow: hidden;
    border: 1px solid rgba(175, 194, 205, .48);
    border-radius: .32rem;
    background:
        linear-gradient(90deg, transparent 0 68%, rgba(24, 48, 64, .24) 68% 70%, transparent 70%),
        linear-gradient(145deg, #d6d9d7, #eef0eb 52%, #aeb6b8);
    box-shadow: inset 0 0 1.1rem rgba(33, 49, 57, .25);
    transform: rotateX(5deg);
    transform-origin: bottom;
}

.finance-server-tray__memory {
    position: absolute;
    top: .8rem;
    right: .75rem;
    width: 25%;
    height: 26%;
    border-radius: .16rem;
    background: repeating-linear-gradient(90deg, #183c50 0 .18rem, #6aa1b5 .2rem .26rem);
    box-shadow: 0 .3rem .55rem rgba(20, 36, 45, .25);
}

.finance-server-tray__interior img {
    position: absolute;
    right: 4%;
    bottom: 6%;
    left: 3%;
    display: block;
    width: 88%;
    height: 74%;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.07) saturate(.96) drop-shadow(0 .45rem .35rem rgba(24, 36, 43, .28));
    transform: scale(1.55) rotate(-2deg);
    transform-origin: center;
}

.finance-product-signature {
    display: grid;
    gap: .18rem;
    justify-items: center;
    margin-top: .75rem;
    text-align: center;
}

.finance-product-signature > span {
    display: inline-flex;
    min-height: 1.25rem;
    align-items: center;
    padding: 0 .48rem;
    border: 1px solid rgba(73, 184, 241, .32);
    border-radius: 999px;
    background: rgba(37, 133, 187, .12);
    color: #62c9ff;
    font-size: clamp(.5rem, .55vw, .62rem);
    font-weight: 700;
    letter-spacing: .08em;
}

.finance-product-signature strong {
    color: #f6fbff;
    font-size: clamp(.8rem, .9vw, 1.02rem);
    font-weight: 650;
    line-height: 1.25;
}

.finance-product-signature small {
    color: #8298a8;
    font-size: clamp(.55rem, .62vw, .7rem);
    line-height: 1.35;
}

.finance-architecture-layer--terminal {
    padding-top: .1rem;
}

.finance-terminal-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .45rem;
}

.finance-terminal-row > span {
    display: grid;
    gap: .35rem;
    justify-items: center;
    min-width: 0;
    padding: .58rem .2rem .48rem;
    border: 1px solid rgba(137, 183, 212, .16);
    border-radius: .42rem;
    background: rgba(18, 34, 47, .74);
    color: #aebfca;
    font-size: clamp(.52rem, .58vw, .66rem);
}

.finance-terminal-row i {
    position: relative;
    display: block;
    width: clamp(1.8rem, 2.1vw, 2.35rem);
    height: 1.15rem;
    border: 1px solid #4d6475;
    border-radius: .18rem;
    background:
        radial-gradient(circle at 86% 50%, #8bdc5f 0 .08rem, transparent .1rem),
        repeating-linear-gradient(90deg, #0a1117 0 .16rem, #253846 .18rem .3rem);
    box-shadow: inset 0 0 0 2px #09121a;
}

.finance-terminal-row i::before,
.finance-terminal-row i::after {
    position: absolute;
    top: 50%;
    width: .14rem;
    height: .42rem;
    content: "";
    border-radius: .1rem;
    background: #536a7a;
    transform: translateY(-50%);
}

.finance-terminal-row i::before {
    left: -.2rem;
}

.finance-terminal-row i::after {
    right: -.2rem;
}

.finance-monitoring-route {
    position: absolute;
    top: 8.8rem;
    right: .65rem;
    bottom: 7rem;
    width: 1px;
    border-right: 1px dashed rgba(132, 156, 172, .5);
}

.finance-monitoring-route::before {
    position: absolute;
    top: -.2rem;
    right: -.28rem;
    width: 0;
    height: 0;
    content: "";
    border-right: .28rem solid transparent;
    border-bottom: .36rem solid #8095a3;
    border-left: .28rem solid transparent;
}

.finance-monitoring-route > b {
    position: absolute;
    top: 50%;
    right: .55rem;
    padding: .35rem .24rem;
    border-radius: .28rem;
    background: #0c1a26;
    color: #718b9c;
    font-size: clamp(.48rem, .52vw, .58rem);
    font-weight: 600;
    line-height: 1.35;
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: translateY(-50%);
}

.finance-infrastructure__legend {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem 1.35rem;
    align-items: center;
    min-height: 3.7rem;
    margin-top: 1rem;
    padding: .9rem 1.1rem;
    border: 1px solid rgba(137, 183, 212, .13);
    border-radius: .75rem;
    background: rgba(5, 14, 23, .66);
    color: #859ba9;
    font-size: clamp(.58rem, .66vw, .74rem);
}

.finance-infrastructure__legend > span {
    display: inline-flex;
    gap: .5rem;
    align-items: center;
}

.finance-infrastructure__legend > strong {
    margin-left: auto;
    color: #d4e4ee;
    font-size: clamp(.62rem, .72vw, .82rem);
    font-weight: 600;
}

.finance-legend-line {
    display: block;
    width: 2.2rem;
    height: 1px;
}

.finance-legend-line--timing {
    background: #48baff;
    box-shadow: 0 0 .4rem rgba(72, 186, 255, .55);
}

.finance-legend-line--monitoring {
    border-top: 1px dashed #7c919f;
}

.application-story-domain-visual__product-overlay--finance-top-external-main,
.application-story-domain-visual__product-overlay--finance-top-external-standby,
.application-story-domain-visual__product-overlay--finance-top-embedded-main,
.application-story-domain-visual__product-overlay--finance-top-embedded-standby {
    top: 18.8%;
    width: 15.25%;
    height: 4.75%;
    overflow: hidden;
    border-radius: 2px;
    filter: drop-shadow(0 .08rem .12rem rgba(17, 24, 29, .16));
}

.application-story-domain-visual__product-overlay--finance-top-external-main {
    left: 7.25%;
}

.application-story-domain-visual__product-overlay--finance-top-external-standby {
    left: 27.35%;
}

.application-story-domain-visual__product-overlay--finance-top-embedded-main {
    left: 57.75%;
}

.application-story-domain-visual__product-overlay--finance-top-embedded-standby {
    left: 77.6%;
}

.application-story-domain-visual__product-overlay--finance-top-external-main img,
.application-story-domain-visual__product-overlay--finance-top-external-standby img,
.application-story-domain-visual__product-overlay--finance-top-embedded-main img,
.application-story-domain-visual__product-overlay--finance-top-embedded-standby img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-width: none;
    transform: translateY(-50%) scale(1.04);
}

.application-story-domain-visual__product-overlay--finance-external-node-left,
.application-story-domain-visual__product-overlay--finance-external-node-right {
    top: 54.55%;
    width: 19.15%;
    filter: drop-shadow(0 .1rem .16rem rgba(17, 24, 29, .2));
}

.application-story-domain-visual__product-overlay--finance-external-node-left {
    left: 4.55%;
}

.application-story-domain-visual__product-overlay--finance-external-node-right {
    left: 26.55%;
}

.application-story-domain-visual__product-overlay--finance-embedded-card-left,
.application-story-domain-visual__product-overlay--finance-embedded-card-right {
    top: 47.7%;
    z-index: 5;
    width: 11.25%;
    overflow: hidden;
    mix-blend-mode: multiply;
    transform: perspective(34rem) rotateX(54deg) rotateZ(-1deg);
    transform-origin: center;
}

.application-story-domain-visual__product-overlay--finance-embedded-card-left {
    left: 55.8%;
}

.application-story-domain-visual__product-overlay--finance-embedded-card-right {
    left: 77.55%;
}

.application-story-domain-visual__product-overlay--finance-embedded-card-left img,
.application-story-domain-visual__product-overlay--finance-embedded-card-right img {
    filter: contrast(1.04) saturate(.94) drop-shadow(0 .12rem .18rem rgba(17, 24, 29, .24));
}

.application-story-domain-visual__label--finance-mode-external,
.application-story-domain-visual__label--finance-mode-embedded {
    top: 1.35%;
    border-color: rgba(24, 54, 72, .16);
    background: rgba(28, 57, 74, .94);
    box-shadow: 0 .2rem .65rem rgba(16, 33, 43, .14);
    color: #fff;
    font-size: clamp(.74rem, 1vw, 1rem);
    letter-spacing: .02em;
    transform: translateX(-50%);
}

.application-story-domain-visual__label--finance-mode-external {
    left: 25%;
}

.application-story-domain-visual__label--finance-mode-embedded {
    left: 75%;
}

.application-story-domain-visual__label--finance-layer-top-left,
.application-story-domain-visual__label--finance-layer-middle-left,
.application-story-domain-visual__label--finance-layer-bottom-left,
.application-story-domain-visual__label--finance-layer-top-right,
.application-story-domain-visual__label--finance-layer-middle-right,
.application-story-domain-visual__label--finance-layer-bottom-right {
    left: 1.25%;
    border-color: rgba(94, 108, 117, .2);
    background: rgba(248, 248, 246, .92);
    color: #4c5a63;
    font-size: clamp(.56rem, .72vw, .72rem);
}

.application-story-domain-visual__label--finance-layer-top-right,
.application-story-domain-visual__label--finance-layer-middle-right,
.application-story-domain-visual__label--finance-layer-bottom-right {
    left: 51.25%;
}

.application-story-domain-visual__label--finance-layer-top-left,
.application-story-domain-visual__label--finance-layer-top-right {
    top: 29.3%;
}

.application-story-domain-visual__label--finance-layer-middle-left,
.application-story-domain-visual__label--finance-layer-middle-right {
    top: 42.7%;
}

.application-story-domain-visual__label--finance-layer-bottom-left,
.application-story-domain-visual__label--finance-layer-bottom-right {
    top: 67.2%;
}

.application-story-domain-visual__label--finance-source-main-left,
.application-story-domain-visual__label--finance-source-standby-left,
.application-story-domain-visual__label--finance-source-main-right,
.application-story-domain-visual__label--finance-source-standby-right {
    top: 14.2%;
    padding: .22rem .46rem;
    font-size: clamp(.52rem, .66vw, .68rem);
    transform: translateX(-50%);
}

.application-story-domain-visual__label--finance-source-main-left {
    left: 14.8%;
}

.application-story-domain-visual__label--finance-source-standby-left {
    left: 35.1%;
}

.application-story-domain-visual__label--finance-source-main-right {
    left: 65.2%;
}

.application-story-domain-visual__label--finance-source-standby-right {
    left: 85.3%;
}

.application-story-domain-visual__label--finance-product-external,
.application-story-domain-visual__label--finance-product-embedded {
    top: 62.6%;
    border-color: rgba(24, 91, 132, .18);
    background: rgba(246, 250, 252, .93);
    color: #1f5e83;
    transform: translateX(-50%);
}

.application-story-domain-visual__label--finance-product-external {
    left: 25%;
}

.application-story-domain-visual__label--finance-product-embedded {
    left: 75%;
}

.application-story-domain-visual__label--finance-flow-delivery,
.application-story-domain-visual__label--finance-flow-monitoring {
    left: 50%;
    padding: .2rem .42rem;
    font-size: clamp(.5rem, .62vw, .64rem);
    transform: translateX(-50%);
}

.application-story-domain-visual__label--finance-flow-delivery {
    top: 39.2%;
    border-color: rgba(29, 92, 135, .2);
    color: #1f5e83;
}

.application-story-domain-visual__label--finance-flow-monitoring {
    top: 23.9%;
    color: #69777f;
}

.application-story-domain-visual__product-overlay--equipment-drone-probe {
    top: 22%;
    left: 64.5%;
    z-index: 1;
    width: 7%;
    aspect-ratio: 1480 / 596;
    background: url("application_solutions/official/mini-cesium-magnetometer-official.png") center / contain no-repeat;
    filter: drop-shadow(0 .12rem .16rem rgba(17, 24, 29, .36));
    transform: scaleX(-1) rotate(-1deg);
    transform-origin: center;
}

.application-story-domain-visual__product-overlay--equipment-drone-probe img {
    opacity: 0;
}

.application-story-domain-visual__product-overlay--equipment-rover-probe {
    top: 79%;
    left: 70.5%;
    z-index: 1;
    width: 2.7%;
    aspect-ratio: 448 / 1040;
    background: url("application_solutions/official/cesium-lamp-magnetometer-official.png") center / contain no-repeat;
    filter: drop-shadow(0 .14rem .2rem rgba(17, 24, 29, .4));
    transform: rotate(-60deg);
    transform-origin: center;
}

.application-story-domain-visual__product-overlay--equipment-rover-probe img {
    opacity: 0;
}

.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-network,
.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-positioning,
.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-decision {
    border-color: rgba(0, 0, 0, .15);
    border-radius: .42rem;
    background: rgba(255, 255, 255, .94);
    box-shadow: none;
    color: #000;
    transform: translate(-50%, -50%);
}

.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-network {
    top: 25%;
    left: 38%;
}

.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-positioning {
    top: 52%;
    left: 43.5%;
}

.application-detail-page--prospecting-defense .application-story-domain-visual__label--equipment-decision {
    top: 55%;
    left: 81%;
}

.application-detail-page--research-industry .application-story-domain-visual__product-overlay {
    overflow: hidden;
    box-sizing: border-box;
}

.application-detail-page--research-industry .application-story-domain-visual__product-overlay img {
    position: relative;
    z-index: 1;
}

.application-story-domain-visual__product-overlay--metrology-frequency-standard,
.application-story-domain-visual__product-overlay--metrology-phase-meter {
    left: 3.8%;
    width: 13.8%;
    height: 4.4%;
    border: 1px solid rgba(26, 31, 35, .78);
    border-radius: .08rem;
    background: #20272c;
    box-shadow:
        inset 0 0 0 .08rem rgba(255, 255, 255, .18),
        0 .08rem .1rem rgba(17, 24, 29, .2);
    transform: perspective(24rem) rotateY(-1.5deg);
    transform-origin: left center;
}

.application-story-domain-visual__product-overlay--metrology-frequency-standard::before,
.application-story-domain-visual__product-overlay--metrology-phase-meter::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-right: .18rem solid rgba(23, 28, 32, .8);
    border-left: .18rem solid rgba(23, 28, 32, .8);
    box-shadow: inset 0 .08rem rgba(255, 255, 255, .2), inset 0 -.08rem rgba(0, 0, 0, .35);
    content: "";
}

.application-story-domain-visual__product-overlay--metrology-frequency-standard {
    top: 40.2%;
}

.application-story-domain-visual__product-overlay--metrology-frequency-standard img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.application-story-domain-visual__product-overlay--metrology-phase-meter {
    top: 45%;
}

.application-story-domain-visual__product-overlay--metrology-phase-meter img {
    width: 100%;
    height: 165%;
    object-fit: cover;
    object-position: center bottom;
    transform: translateY(-39%);
}

.application-story-domain-visual__product-overlay--metrology-noise-analyzer {
    top: 28.2%;
    left: 57.4%;
    z-index: 1;
    width: 8.2%;
    aspect-ratio: 1600 / 1200;
    border: .12rem solid rgba(70, 77, 80, .56);
    border-radius: .16rem .16rem .05rem .05rem;
    background: url("/media/homepage/products/catalog-display/phase-noise-analyzer.webp") center / contain no-repeat;
    box-shadow: inset 0 0 .18rem rgba(255, 255, 255, .3);
    transform: perspective(20rem) rotateY(-2deg);
    transform-origin: bottom center;
}

.application-story-domain-visual__product-overlay--metrology-noise-analyzer::after {
    position: absolute;
    right: -4%;
    bottom: -1%;
    left: -4%;
    z-index: 2;
    height: 15%;
    border-top: 1px solid rgba(255, 255, 255, .45);
    background: linear-gradient(180deg, #aeb4b7, #777f84);
    box-shadow: 0 -.08rem .14rem rgba(16, 22, 26, .22);
    content: "";
}

.application-story-domain-visual__product-overlay--metrology-noise-analyzer img {
    opacity: 0;
}

.application-story-domain-visual__product-overlay--metrology-stabilized-laser {
    top: 52.4%;
    left: 72.8%;
    z-index: 1;
    width: 8.6%;
    aspect-ratio: 895 / 390;
    border: .11rem solid rgba(43, 49, 54, .56);
    border-radius: .18rem;
    background: url("/media/homepage/products/catalog-display/stabilized-semiconductor-laser.webp") center / contain no-repeat;
    box-shadow: inset 0 0 .15rem rgba(255, 255, 255, .42);
    transform: perspective(22rem) rotateX(2deg) rotateY(-4deg);
    transform-origin: bottom center;
}

.application-story-domain-visual__product-overlay--metrology-stabilized-laser::after {
    position: absolute;
    right: -3%;
    bottom: -1%;
    left: -3%;
    z-index: 2;
    height: 18%;
    border-top: 1px solid rgba(255, 255, 255, .16);
    background: linear-gradient(180deg, #2a2f33, #15191c);
    box-shadow: 0 -.08rem .16rem rgba(12, 17, 20, .26);
    content: "";
}

.application-story-domain-visual__product-overlay--metrology-stabilized-laser img {
    opacity: 0;
}

.application-story-renewable-map {
    position: absolute;
    inset: 0;
    z-index: 3;
    color: #1a2834;
    pointer-events: none;
}

.application-story-renewable-map__scene-labels {
    margin: 0;
    padding: 0;
    list-style: none;
}

.application-story-renewable-map__scene-label {
    position: absolute;
    display: inline-flex;
    gap: .42rem;
    align-items: center;
    padding: .42rem .68rem;
    border: 1px solid rgba(211, 220, 228, .9);
    border-radius: 999px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 .35rem 1rem rgba(42, 67, 91, .07);
    color: #35424d;
    font-size: clamp(.62rem, .72vw, .78rem);
    font-weight: 600;
    letter-spacing: .02em;
    line-height: 1;
    white-space: nowrap;
}

.application-story-renewable-map__scene-label::before {
    width: .38rem;
    height: .38rem;
    border-radius: 999px;
    background: #4b84bd;
    content: "";
}

.application-story-renewable-map__scene-label--wind {
    top: 47%;
    left: 2.8%;
}

.application-story-renewable-map__scene-label--solar {
    top: 42%;
    left: 45%;
}

.application-story-renewable-map__scene-label--grid {
    top: 19%;
    left: 66%;
}

.application-story-renewable-map__scene-label--storage {
    top: 52%;
    left: 79%;
}

.application-story-renewable-map__beam {
    position: absolute;
    z-index: 2;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(20, 155, 181, .82), rgba(20, 155, 181, .2));
    box-shadow: 0 0 .35rem rgba(20, 155, 181, .22);
    opacity: .88;
    transform-origin: left center;
}

.application-story-renewable-map__beam::after {
    position: absolute;
    top: 50%;
    right: -.18rem;
    width: .42rem;
    height: .42rem;
    border: 1px solid rgba(255, 255, 255, .95);
    border-radius: 999px;
    background: #149bb5;
    box-shadow: 0 0 0 .16rem rgba(20, 155, 181, .12);
    content: "";
    transform: translateY(-50%);
}

.application-story-renewable-map__beam--blade-a {
    top: 60.5%;
    left: 14.5%;
    width: 19%;
    transform: rotate(-68deg);
}

.application-story-renewable-map__beam--blade-b {
    top: 60.5%;
    left: 14.5%;
    width: 22%;
    transform: rotate(-33deg);
}

.application-story-renewable-map__beam--tower {
    top: 61%;
    left: 14.5%;
    width: 9%;
    transform: rotate(-29deg);
}

.application-story-renewable-map__product-node {
    position: absolute;
    top: 56.5%;
    left: 7%;
    z-index: 4;
    width: 14.5%;
}

.application-story-renewable-map__product-media {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 2 / 3;
}

.application-story-renewable-map__product-media > img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 215%;
    max-width: none;
    height: auto;
    filter: drop-shadow(0 .45rem .65rem rgba(25, 39, 54, .2));
    transform: translate(-50%, -50%);
}

.application-story-renewable-map__product-copy,
.application-story-renewable-map__decision-node {
    position: absolute;
    display: grid;
    gap: .26rem;
    padding: clamp(.5rem, .65vw, .72rem) clamp(.58rem, .8vw, .86rem);
    border: 1px solid rgba(201, 214, 225, .94);
    border-radius: .65rem;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 .5rem 1.2rem rgba(38, 61, 82, .09);
}

.application-story-renewable-map__product-copy {
    top: 57%;
    left: 108%;
    width: 148%;
    border-left: 3px solid #149bb5;
}

.application-story-renewable-map__product-copy strong,
.application-story-renewable-map__decision-node strong {
    color: #1d2a35;
    font-size: clamp(.6rem, .72vw, .8rem);
    font-weight: 650;
    line-height: 1.35;
}

.application-story-renewable-map__product-copy small,
.application-story-renewable-map__decision-node span {
    color: #5a6874;
    font-size: clamp(.52rem, .6vw, .68rem);
    line-height: 1.4;
}

.application-story-renewable-map__data-route {
    position: absolute;
    top: 82.5%;
    left: 42.2%;
    z-index: 3;
    width: 3.7%;
    border-top: 2px dashed rgba(21, 153, 102, .82);
}

.application-story-renewable-map__data-route::after {
    position: absolute;
    top: -.28rem;
    right: -.12rem;
    border-top: .24rem solid transparent;
    border-bottom: .24rem solid transparent;
    border-left: .38rem solid #159966;
    content: "";
}

.application-story-renewable-map__decision-node {
    top: 75.5%;
    left: 46%;
    z-index: 4;
    width: 18.5%;
    border-top: 2px solid #159966;
}

.application-story-renewable-map__decision-node span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.application-story-renewable-map__decision-node strong {
    color: #1d6148;
}

.application-story-renewable-map__product-copy,
.application-story-renewable-map__decision-node {
    overflow: hidden;
}

.application-story-path__heading {
    align-content: start;
    display: grid;
    gap: .7rem;
}

.application-story-path__heading > p {
    margin: 0;
    color: #676c72;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.application-story-path__heading h3 {
    margin: 0;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.7rem, 2vw, 2.25rem);
    font-weight: var(--site-title-weight);
    line-height: 1.08;
    text-wrap: balance;
}

.application-story-path__heading > span {
    max-width: 25rem;
    color: #4f555c;
    font-size: clamp(.9rem, .86vw, 1rem);
    line-height: 1.7;
}

.application-story-path__solution-group {
    display: grid;
    min-width: 0;
    gap: 1rem;
}

.application-story-path__solution-label {
    margin: 0;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.08rem, 1.15vw, 1.3rem);
    font-weight: var(--site-title-weight);
    line-height: 1.35;
}

.application-story-path__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 2vw, 2rem);
    margin: 0;
    padding: 0;
    list-style: none;
}

.application-story-path__list > li {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .85rem;
    align-content: start;
    min-height: 0;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.application-story-path__index {
    color: #8a9097;
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .08em;
    line-height: 1.9;
}

.application-story-path__content {
    display: grid;
    gap: .55rem;
    min-width: 0;
}

.application-story-path__content h4,
.application-story-path__content p {
    margin: 0;
}

.application-story-path__content h4 {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.08rem, 1.15vw, 1.3rem);
    font-weight: var(--site-title-weight);
    line-height: 1.35;
}

.application-story-path__content p {
    color: #34393f;
    font-size: clamp(.84rem, .78vw, .94rem);
    line-height: 1.62;
}

.application-story-path__content ul {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin: .15rem 0 0;
    padding: 0;
    list-style: none;
}

.application-story-path__content li {
    padding: .42rem .68rem;
    border: 1px solid #d8dce0;
    border-radius: 999px;
    color: #30353a;
    background: #f7f8f9;
    font-size: .76rem;
    line-height: 1.35;
}

.application-detail-page--configured-story .application-story-path {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.5rem, 2.4vw, 2.5rem);
}

.application-detail-page--configured-story .application-story-path__heading {
    display: none;
}

.application-detail-page--configured-story .application-story-path__solution-group {
    grid-column: 1 / -1;
    gap: .8rem;
}

.application-detail-page--configured-story .application-story-path__list {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: clamp(.8rem, 1.25vw, 1.15rem);
}

.application-detail-page--configured-story .application-story-path__list > li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: .9rem;
    min-width: 0;
    padding: clamp(1.15rem, 1.45vw, 1.5rem);
    border: 1px solid var(--story-card-border);
    border-radius: var(--story-card-radius);
    background: var(--story-card-surface);
    box-shadow: var(--story-card-shadow);
}

.application-detail-page--configured-story .application-story-path__index {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 999px;
    color: #557079;
    background: #eef2f1;
    font-size: .72rem;
    line-height: 1;
}

.application-detail-page--configured-story .application-story-path__content {
    align-content: start;
    min-width: 0;
    padding-top: .16rem;
}

.application-detail-page--configured-story .application-story-path__content p {
    color: #202b34;
    font-size: clamp(.95rem, .92vw, 1.04rem);
    font-weight: 500;
    line-height: 1.65;
}

.application-detail-page--configured-story .application-story-path__content > ul {
    display: none;
}

.application-detail-page--renewable-energy .energy-problem-card {
    min-height: clamp(11.5rem, 12vw, 13rem);
    border-color: #e2e4e3;
    background: linear-gradient(180deg, #fff 0%, #f8f8f7 100%);
}

.application-detail-page--renewable-energy .energy-problem-card__visual {
    width: clamp(3.35rem, 3.7vw, 4rem);
    margin-bottom: .45rem;
    color: #496871;
}

.application-detail-page--renewable-energy .application-story-problem-description {
    max-width: none;
    color: #202b34;
    font-size: clamp(.95rem, .92vw, 1.04rem);
    font-weight: 500;
    line-height: 1.65;
}

@media (min-width: 901px) {
    .application-detail-page--renewable-energy .energy-problem-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .application-detail-page--configured-story .application-story-path__list > li {
        min-height: 9.5rem;
    }
}

@media (min-width: 701px) and (max-width: 900px) {
    .application-detail-page--configured-story .application-story-path__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .application-detail-page--configured-story .application-story-path {
        gap: 1.35rem;
    }

    .application-detail-page--configured-story .application-story-path__list {
        grid-template-columns: minmax(0, 1fr);
        gap: .75rem;
    }

    .application-detail-page--configured-story .application-story-path__list > li {
        min-height: 0;
        gap: .75rem;
        padding: .95rem 1rem;
    }

    .application-detail-page--renewable-energy .energy-problem-card {
        min-height: 0;
    }
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(1.25rem, 2.2vw, 2.25rem);
    align-items: start;
    min-width: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure {
    display: grid;
    align-content: start;
    width: 100%;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid var(--story-card-border);
    border-radius: var(--story-card-radius);
    background: var(--story-card-surface);
    box-shadow: var(--story-card-shadow);
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure figcaption {
    display: grid;
    gap: .3rem;
    justify-items: start;
    padding: 1.1rem clamp(1.1rem, 2vw, 1.35rem) .95rem;
    border-bottom: 1px solid #eceeed;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure figcaption span,
.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure > p {
    color: #5f646a;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure figcaption strong {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.05rem, 1.25vw, 1.35rem);
    font-weight: var(--site-title-weight);
    line-height: 1.3;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__diagram {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #fff;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__base {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #fff;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__cluster-labels {
    position: absolute;
    top: 4.2%;
    right: 5.7%;
    left: 5.7%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    pointer-events: none;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__cluster-labels span {
    color: #30343a;
    font-size: clamp(.58rem, .62vw, .75rem);
    font-weight: 650;
    line-height: 1;
    text-align: center;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__clocks {
    position: absolute;
    right: 11%;
    bottom: 1.5%;
    left: 11%;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: end;
    pointer-events: none;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__clocks img {
    display: block;
    width: 52%;
    height: auto;
    justify-self: center;
    object-fit: contain;
    filter: drop-shadow(0 .45rem .55rem rgba(25, 39, 54, .16));
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlays {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay {
    position: absolute;
    display: block;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay--timing-rack {
    top: 37.7%;
    left: 14.2%;
    width: 11.5%;
    height: 2.4%;
    overflow: hidden;
    border-radius: 2px;
    background: #1d2225;
    box-shadow: inset 0 0 0 1px rgba(178, 189, 195, .34), 0 .08rem .12rem rgba(18, 27, 34, .24);
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay--timing-rack img {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay--server-node {
    top: 44.5%;
    left: 16.6%;
    z-index: 1;
    width: 5.8%;
    aspect-ratio: 1800 / 1463;
    background: url("/media/homepage/products/catalog-display/t55-mini-chip-atomic-clock-20260717.webp") center / contain no-repeat;
    filter: drop-shadow(0 .16rem .18rem rgba(18, 27, 34, .28));
    transform: perspective(18rem) rotateX(3deg) rotateY(-5deg);
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay--server-node img {
    opacity: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__product-overlay--server-node::after {
    position: absolute;
    right: -10%;
    bottom: -4%;
    left: -10%;
    z-index: -1;
    height: 10%;
    border-radius: 50%;
    background: rgba(17, 24, 29, .32);
    filter: blur(2px);
    content: "";
}

.application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure > p {
    margin: 0;
    padding: .7rem clamp(1.1rem, 2vw, 1.55rem) 1.15rem;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
    gap: clamp(.85rem, 1.2vw, 1.25rem);
    align-items: stretch;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: ai-capability;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities > li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .9rem;
    align-content: start;
    height: 100%;
    min-width: 0;
    padding: clamp(1.15rem, 1.45vw, 1.45rem);
    border: 1px solid var(--story-card-border);
    border-radius: var(--story-card-radius);
    background: var(--story-card-surface);
    box-shadow: var(--story-card-shadow);
    counter-increment: ai-capability;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities > li::before {
    display: grid;
    width: 2rem;
    height: 2rem;
    place-items: center;
    border-radius: 999px;
    color: #557079;
    background: #eef2f1;
    content: "0" counter(ai-capability);
    font-size: .72rem;
    font-weight: 600;
    line-height: 1;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities h3,
.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
    margin: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities h3 {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1rem, 1vw, 1.16rem);
    font-weight: var(--site-title-weight);
    line-height: 1.45;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
    margin-top: .45rem;
    color: #34393f;
    font-size: clamp(.9rem, .82vw, .98rem);
    line-height: 1.72;
}

.application-detail-page--configured-story .application-product-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1.25rem;
    overflow: visible;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: #000;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    transform: none;
    cursor: pointer;
}

.application-detail-page--configured-story .application-product-card:hover {
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
}

.application-detail-page--configured-story .application-product-card:hover .energy-product-index__stage {
    border-color: transparent;
    box-shadow: none;
    opacity: .84;
    transform: none;
}

.application-detail-page--configured-story .energy-product-index__stage img {
    width: 86%;
    height: 82%;
    object-fit: contain;
}

.application-detail-page--configured-story .application-product-card__fit {
    display: block;
    max-width: 18rem;
    margin: 0;
    overflow: visible;
    font-size: .9rem;
    line-height: 1.65;
    -webkit-line-clamp: unset;
}

.application-detail-page--configured-story .energy-story-back:focus-visible,
.application-detail-page--configured-story .energy-product-stage__link:focus-visible,
.application-detail-page--configured-story .application-product-card:focus-visible {
    outline: 2px solid #4d5156;
    outline-offset: 4px;
}

.application-detail-page--configured-story .application-story-solution-screen .energy-story-heading {
    gap: .65rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.application-detail-page--configured-story .application-story-solution-products {
    align-items: stretch;
}

.application-detail-page--smart-transport-autonomous .application-story-solution-products--single {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
}

.application-detail-page--configured-story .application-story-product {
    grid-template-rows: clamp(17rem, 24vw, 23rem) auto;
}

.application-detail-page--configured-story .application-story-product__media img {
    width: 74%;
    height: 72%;
    object-fit: contain;
}

.application-detail-page--configured-story .application-story-product__copy {
    grid-template-rows: minmax(4.2rem, auto) minmax(6.25rem, auto) auto auto;
}

.application-detail-page--renewable-energy .application-story-solution-products > .application-story-product:only-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 48rem;
    justify-self: center;
}

.application-detail-page--renewable-energy .application-story-solution-products > .application-story-product:only-child .application-story-product__copy {
    grid-template-rows: auto auto;
}

@media (max-width: 1100px) {
    .application-detail-page--smart-transport-autonomous .application-story-ai-capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .application-detail-page--configured-story {
        --application-nav: 66px;
    }

    .application-detail-page--configured-story .application-story-product {
        grid-template-rows: auto;
    }

    .application-detail-page--configured-story .application-story-product__copy {
        grid-template-rows: auto;
    }

    .application-detail-page--configured-story .energy-product-stage + .energy-product-stage {
        border-top: 0;
    }

    .application-detail-page--configured-story .energy-story-screen:not(.energy-story-hero) {
        padding-block: clamp(3rem, 8vw, 4rem);
    }

    .application-story-path {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }

}

@media (max-width: 700px) {
    .application-detail-page--configured-story .energy-story-screen + .energy-story-screen::before {
        right: 1rem;
        left: 1rem;
    }

    .application-detail-page--configured-story .energy-story-hero__media img {
        object-position: var(--application-story-hero-mobile-position, 58% 50%);
    }

    .application-detail-page--configured-story .energy-story-hero__shell {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .application-detail-page--configured-story .energy-story-hero__content {
        grid-column: 1;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .application-detail-page--configured-story .application-story-summary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .application-detail-page--configured-story .application-story-product__media img {
        width: 82%;
    }

    .application-detail-page--configured-story .energy-metric-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: .55rem;
    }

    .application-detail-page--configured-story .energy-metric-row dd {
        font-size: clamp(.88rem, 4vw, 1.05rem);
    }

    .application-detail-page--configured-story .energy-problem-card {
        min-height: 0;
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .application-detail-page--configured-story .energy-problem-card__index {
        top: 1.25rem;
        right: 1.25rem;
    }

    .application-story-path {
        align-items: start;
    }

    .application-story-path__list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .application-story-path__list > li {
        min-height: 0;
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .application-story-domain-visual {
        border-radius: 1rem;
    }

    .application-story-domain-visual__caption {
        display: grid;
        gap: .35rem;
        padding: .9rem 1rem .65rem;
    }

    .application-story-domain-visual__caption strong {
        font-size: .95rem;
    }

    .application-story-domain-visual__label {
        padding: .16rem .3rem;
        box-shadow: none;
        font-size: .42rem;
    }

    .application-story-domain-visual__label--finance-mode-external,
    .application-story-domain-visual__label--finance-mode-embedded {
        padding: .2rem .38rem;
        font-size: .52rem;
    }

    .application-story-domain-visual__label--finance-layer-top-left,
    .application-story-domain-visual__label--finance-layer-middle-left,
    .application-story-domain-visual__label--finance-layer-bottom-left,
    .application-story-domain-visual__label--finance-layer-top-right,
    .application-story-domain-visual__label--finance-layer-middle-right,
    .application-story-domain-visual__label--finance-layer-bottom-right,
    .application-story-domain-visual__label--finance-product-external,
    .application-story-domain-visual__label--finance-product-embedded {
        font-size: .4rem;
    }

    .application-story-domain-visual__label--finance-source-main-left,
    .application-story-domain-visual__label--finance-source-standby-left,
    .application-story-domain-visual__label--finance-source-main-right,
    .application-story-domain-visual__label--finance-source-standby-right,
    .application-story-domain-visual__label--finance-flow-delivery,
    .application-story-domain-visual__label--finance-flow-monitoring {
        display: none;
    }

    .application-story-renewable-map__scene-label {
        display: none;
    }

    .application-story-renewable-map__beam {
        height: 1px;
    }

    .application-story-renewable-map__beam::after {
        right: -.1rem;
        width: .22rem;
        height: .22rem;
        box-shadow: none;
    }

    .application-story-renewable-map__product-node {
        top: 55.5%;
        left: 5.5%;
        width: 15.5%;
    }

    .application-story-renewable-map__product-media > img {
        filter: drop-shadow(0 .18rem .25rem rgba(25, 39, 54, .16));
    }

    .application-story-renewable-map__product-copy,
    .application-story-renewable-map__decision-node {
        gap: .08rem;
        padding: .22rem .28rem;
        border-radius: .3rem;
        box-shadow: 0 .15rem .35rem rgba(38, 61, 82, .08);
    }

    .application-story-renewable-map__product-copy {
        top: 58%;
        left: 106%;
        width: 160%;
        border-left-width: 2px;
    }

    .application-story-renewable-map__product-copy strong,
    .application-story-renewable-map__decision-node strong {
        font-size: clamp(.38rem, 1.65vw, .52rem);
        line-height: 1.18;
    }

    .application-story-renewable-map__product-copy small,
    .application-story-renewable-map__decision-node span {
        display: none;
    }

    .application-story-renewable-map__data-route {
        top: 82%;
        left: 44%;
        width: 3.5%;
        border-top-width: 1px;
    }

    .application-story-renewable-map__data-route::after {
        top: -.14rem;
        right: -.08rem;
        border-top-width: .12rem;
        border-bottom-width: .12rem;
        border-left-width: .2rem;
    }

    .application-story-renewable-map__decision-node {
        top: 74.5%;
        left: 47.5%;
        width: 23%;
        border-top-width: 1px;
    }

    .application-detail-page--smart-transport-autonomous .application-story-ai-architecture__figure figcaption {
        display: grid;
        gap: .35rem;
    }

    .application-detail-page--smart-transport-autonomous .application-story-ai-capabilities > li {
        padding: 1.15rem;
    }

    .application-detail-page--smart-transport-autonomous .application-story-ai-capabilities {
        grid-template-columns: minmax(0, 1fr);
    }

    .application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 1050px) {
    .finance-infrastructure__masthead {
        grid-template-columns: minmax(0, 1fr);
        gap: .8rem;
    }

    .finance-infrastructure__deployments {
        grid-template-columns: minmax(0, 1fr);
    }

    .finance-deployment__architecture {
        min-height: 41rem;
    }

    .finance-server-rack__product-bay img {
        width: min(96%, 18rem);
    }

    .finance-server-tray__interior img {
        right: 8%;
        left: 8%;
        width: 78%;
    }
}

@media (max-width: 700px) {
    .application-detail-page--city-infrastructure-timing .application-story-solution-overview {
        padding-right: .75rem;
        padding-left: .75rem;
    }

    .application-detail-page--city-infrastructure-timing .application-story-domain-visual {
        border-radius: 1rem;
    }

    .application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption {
        padding: 1rem;
    }

    .finance-infrastructure {
        min-height: 0;
        padding: 1rem;
    }

    .finance-infrastructure::before {
        background-size: 2rem 2rem;
    }

    .finance-infrastructure__masthead {
        margin-bottom: 1.2rem;
    }

    .finance-infrastructure__masthead strong {
        font-size: 1.4rem;
    }

    .finance-deployment__heading {
        min-height: 5.7rem;
        padding: 1rem;
    }

    .finance-deployment__architecture {
        grid-template-rows: auto 2.25rem minmax(16rem, auto) 2.25rem auto;
        min-height: 38rem;
        padding: .9rem 1.35rem 1rem .9rem;
    }

    .finance-existing-source {
        grid-template-columns: 2rem minmax(0, 1fr);
        gap: .45rem;
        min-height: 3.55rem;
        padding: .5rem;
    }

    .finance-existing-source strong {
        font-size: .58rem;
    }

    .finance-existing-source small {
        font-size: .48rem;
    }

    .finance-architecture-layer--upgrade {
        min-height: 16rem;
        padding: .75rem;
    }

    .finance-server-rack,
    .finance-server-tray {
        min-height: 8.9rem;
    }

    .finance-server-tray__interior {
        min-height: 7.4rem;
    }

    .finance-product-signature strong {
        font-size: .78rem;
    }

    .finance-product-signature small {
        font-size: .54rem;
    }

    .finance-time-route > span {
        right: calc(50% + .4rem);
    }

    .finance-monitoring-route {
        right: .45rem;
    }

    .finance-monitoring-route > b {
        right: .35rem;
        font-size: .46rem;
    }

    .finance-infrastructure__legend {
        gap: .65rem 1rem;
        align-items: flex-start;
    }

    .finance-infrastructure__legend > strong {
        flex-basis: 100%;
        margin-left: 0;
    }
}

@media (max-width: 430px) {
    .finance-source-pair,
    .finance-rack-pair,
    .finance-server-tray-pair {
        gap: .45rem;
    }

    .finance-server-rack {
        padding: .6rem .46rem;
    }

    .finance-server-rack__product-bay {
        min-height: 2.85rem;
    }

    .finance-server-rack__product-bay img {
        width: 100%;
    }

    .finance-server-tray {
        padding: .55rem;
    }

    .finance-terminal-row {
        gap: .28rem;
    }

    .finance-terminal-row > span {
        font-size: .48rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .application-detail-page--configured-story .scene-reveal,
    .application-detail-page--configured-story .application-product-card:hover .energy-product-index__stage {
        opacity: 1;
        transform: none;
        transition: none;
        will-change: auto;
    }
}

/* Finance architecture: approved integrated image with concise, code-native labels. */
.application-detail-page--city-infrastructure-timing .application-story-domain-visual,
.application-detail-page--city-infrastructure-timing .application-story-domain-visual__scene {
    background: #fff;
}

.application-story-domain-visual__diagram--finance-infrastructure {
    overflow: hidden;
    aspect-ratio: auto;
    background: #fff;
}

.finance-annotated {
    position: relative;
    isolation: isolate;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1662 / 946;
    background: #fff;
    color: #fff;
}

.finance-annotated::after {
    position: absolute;
    inset: 0;
    z-index: 4;
    content: "";
    border: 1px solid rgba(12, 74, 118, .1);
    box-shadow: inset 0 0 2rem rgba(12, 74, 118, .025);
    pointer-events: none;
}

.finance-annotated__image {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finance-annotated__modes,
.finance-annotated__layers {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.finance-annotated__mode {
    position: absolute;
    top: 2.35%;
    display: inline-flex;
    min-height: clamp(1.65rem, 2.35vw, 2.85rem);
    align-items: center;
    padding: 0 clamp(.65rem, 1vw, 1.05rem);
    border-left: clamp(.16rem, .2vw, .24rem) solid #4d9bd1;
    background: #0b4f7f;
    box-shadow: 0 .45rem 1.1rem rgba(11, 79, 127, .15);
    font-family: var(--site-heading-font);
    font-size: clamp(.72rem, 1.08vw, 1.2rem);
    font-weight: 560;
    line-height: 1;
    letter-spacing: .04em;
    white-space: nowrap;
}

.finance-annotated__mode--external {
    left: 2.2%;
}

.finance-annotated__mode--embedded {
    left: 51.7%;
}

.finance-annotated__layer {
    position: absolute;
    left: 50%;
    display: inline-flex;
    min-height: clamp(1.35rem, 1.85vw, 2.15rem);
    align-items: center;
    justify-content: center;
    padding: 0 clamp(.48rem, .72vw, .72rem);
    border: 0;
    border-radius: .18rem;
    background: #0b4f7f;
    box-shadow: 0 .35rem .9rem rgba(11, 79, 127, .14);
    color: #fff;
    font-size: clamp(.58rem, .78vw, .86rem);
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
}

.finance-annotated__layer--source {
    top: 10.4%;
}

.finance-annotated__layer--network {
    top: 32.4%;
}

.finance-annotated__layer--edge {
    top: 50.5%;
}

.finance-annotated__layer--business {
    top: 74.7%;
}

.finance-annotated__legend {
    position: absolute;
    bottom: 1.25%;
    left: 50%;
    z-index: 3;
    display: inline-flex;
    gap: clamp(.7rem, 1.25vw, 1.35rem);
    align-items: center;
    padding: clamp(.35rem, .55vw, .55rem) clamp(.55rem, .85vw, .9rem);
    border: 1px solid rgba(11, 79, 127, .14);
    border-radius: .22rem;
    background: #fff;
    box-shadow: 0 .45rem 1.15rem rgba(11, 79, 127, .11);
    color: #0b4f7f;
    font-size: clamp(.52rem, .68vw, .76rem);
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transform: translateX(-50%);
}

.finance-annotated__legend > span {
    display: inline-flex;
    gap: .42rem;
    align-items: center;
}

.finance-annotated__legend-line {
    display: block;
    width: clamp(1.25rem, 1.8vw, 2rem);
    height: 2px;
    border-radius: 999px;
}

.finance-annotated__legend-line--down {
    background: #0d5798;
}

.finance-annotated__legend-line--return {
    background: #858b8f;
}

@media (max-width: 700px) {
    .finance-annotated__mode {
        top: 1.7%;
        min-height: 1.2rem;
        padding: 0 .42rem;
        border-left-width: .12rem;
        font-size: .52rem;
        letter-spacing: 0;
    }

    .finance-annotated__mode--external {
        left: 1.5%;
    }

    .finance-annotated__mode--embedded {
        left: 51.2%;
    }

    .finance-annotated__layer {
        min-height: 1rem;
        padding: 0 .3rem;
        border-radius: .12rem;
        font-size: .46rem;
    }

    .finance-annotated__legend {
        bottom: .7%;
        gap: .55rem;
        padding: .26rem .38rem;
        font-size: .43rem;
    }

    .finance-annotated__legend > span {
        gap: .25rem;
    }

    .finance-annotated__legend-line {
        width: .9rem;
        height: 1px;
    }
}

/* Finance visual color lock: white surfaces and black typography only. */
.application-detail-page--city-infrastructure-timing .application-story-solution-overview,
.application-detail-page--city-infrastructure-timing .application-story-domain-visual,
.application-detail-page--city-infrastructure-timing .application-story-domain-visual__scene,
.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption,
.application-story-domain-visual__diagram--finance-infrastructure,
.finance-annotated {
    background: #fff;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual {
    box-shadow: none;
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption span,
.application-detail-page--city-infrastructure-timing .application-story-domain-visual__caption strong,
.finance-annotated,
.finance-annotated__mode,
.finance-annotated__layer,
.finance-annotated__legend {
    color: #000;
}

.finance-annotated__mode,
.finance-annotated__layer,
.finance-annotated__legend {
    border: 0;
    background: #fff;
    box-shadow: 0 .2rem .75rem rgba(0, 0, 0, .08);
}

.finance-annotated__mode {
    border-left: 0;
}

.finance-annotated::after {
    border-color: rgba(0, 0, 0, .08);
    box-shadow: none;
}

.application-detail-page--city-infrastructure-timing .application-story-solution-products {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
}

.application-detail-page--configured-story .application-story-path__list > li {
    grid-template-columns: minmax(0, 1fr);
    gap: .55rem;
    align-content: center;
    justify-items: stretch;
}

.application-detail-page--configured-story .application-story-path__index {
    justify-self: center;
}

.application-detail-page--configured-story .application-story-path__content {
    align-content: center;
    justify-items: stretch;
    padding-top: 0;
}

.application-detail-page--configured-story .application-story-path__content h4,
.application-detail-page--configured-story .application-story-path__content p {
    width: 100%;
    text-align: justify;
    text-justify: inter-character;
}

/* Keep solution-card typography and title rhythm identical across every domain. */
.application-detail-page--configured-story .application-story-path__content h4,
.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities h3 {
    min-height: 2.8em;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.08rem, 1.15vw, 1.3rem);
    font-weight: var(--site-title-weight);
    line-height: 1.4;
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-path__content p,
.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
    color: #202b34;
    font-family: var(--rounded-brand-font);
    font-size: clamp(.95rem, .92vw, 1.04rem);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities > li > div {
    display: grid;
    gap: .55rem;
    align-content: start;
    min-width: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
    margin-top: 0;
}

.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities h3,
.application-detail-page--smart-transport-autonomous .application-story-ai-capabilities p {
    width: 100%;
    text-align: justify;
    text-justify: inter-character;
}

/* Unified information hierarchy for every application-domain page. */
.application-detail-page,
.application-detail-page--configured-story {
    color: #000;
    font-family: var(--site-heading-font);
}

.application-detail-page--configured-story {
    --energy-ink: #000;
    --energy-muted: #000;
    --application-story-ink: #000;
    --energy-hero-title-size: clamp(3rem, 4.25vw, 4.75rem);
    --energy-section-title-size: clamp(2.15rem, 3vw, 3.25rem);
    --energy-card-title-size: clamp(1.25rem, 1.55vw, 1.6rem);
    --energy-body-size: clamp(.95rem, 1vw, 1.05rem);
}

.application-detail-page--configured-story :where(
    h1,
    h2,
    h3,
    h4,
    p,
    li,
    a,
    span,
    dt,
    dd,
    strong,
    small
) {
    font-family: var(--site-heading-font);
}

.application-detail-page--configured-story :where(
    .application-story-summary,
    .energy-story-subtitle,
    .application-story-reference-copy,
    .application-story-problem-description,
    .application-story-path__content p,
    .application-story-ai-capabilities p,
    .application-story-product__summary,
    .energy-metric-row dt,
    .energy-metric-row dd,
    .energy-metric-row dd small,
    .energy-product-stage__link
) {
    color: #000;
    font-family: var(--site-heading-font);
}

.application-detail-page--configured-story .energy-story-hero__content {
    gap: clamp(1rem, 1.35vw, 1.35rem);
}

.application-detail-page--configured-story .energy-story-tags[hidden] {
    display: none !important;
}

.application-detail-page--configured-story .energy-story-hero .energy-story-title,
.application-detail-page--configured-story .energy-story-heading .energy-story-title {
    color: #000;
    font-family: var(--site-heading-font);
    font-weight: var(--site-title-weight);
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-summary,
.application-detail-page--configured-story .energy-story-subtitle,
.application-detail-page--configured-story .application-story-reference-copy {
    margin: 0;
    font-size: clamp(.98rem, 1vw, 1.08rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-expanded-reference-copy > strong,
.application-detail-page--configured-story .application-story-expanded-reference-copy > span,
.application-detail-page--configured-story .application-story-domain-visual__caption span,
.application-detail-page--configured-story .application-story-domain-visual__caption strong,
.application-detail-page--configured-story .application-story-ai-architecture__figure figcaption span,
.application-detail-page--configured-story .application-story-ai-architecture__figure figcaption strong,
.application-detail-page--configured-story .application-story-ai-architecture__figure > p,
.application-detail-page--configured-story .application-story-path__heading > p,
.application-detail-page--configured-story .application-story-path__heading > span,
.application-detail-page--configured-story .application-story-path__index,
.application-detail-page--configured-story .energy-problem-card__index {
    color: #000;
    font-family: var(--site-heading-font);
}

.application-detail-page--configured-story .application-story-solution-screen .application-story-reference-copy {
    width: 100%;
    max-width: 58rem;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(.98rem, 1vw, 1.08rem);
    font-weight: 400;
    line-height: 1.75;
    letter-spacing: 0;
    text-align: center;
}

.application-detail-page--configured-story .energy-problem-card h3,
.application-detail-page--configured-story .application-story-path__content h4,
.application-detail-page--configured-story .application-story-ai-capabilities h3 {
    min-height: 0;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: var(--energy-card-title-size);
    font-weight: var(--site-title-weight);
    line-height: 1.35;
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-path__content p,
.application-detail-page--configured-story .application-story-ai-capabilities p,
.application-detail-page--configured-story .application-story-problem-description {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(.95rem, .94vw, 1.04rem);
    font-weight: 400;
    line-height: 1.72;
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-product__copy h3 {
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(1.3rem, 1.55vw, 1.65rem);
    font-weight: var(--site-title-weight);
    line-height: 1.35;
    letter-spacing: 0;
}

.application-detail-page--configured-story .application-story-product__summary {
    width: 100%;
    max-width: none;
    color: #000;
    font-family: var(--site-heading-font);
    font-size: clamp(.94rem, .92vw, 1.02rem);
    font-weight: 400;
    line-height: 1.72;
}

.application-detail-page--configured-story .application-story-product .energy-metric-row {
    align-self: end;
}

.application-detail-page--configured-story .energy-product-stage__link {
    align-self: end;
    color: #000;
    font-size: .86rem;
    font-weight: 500;
}

.application-detail-page--configured-story .application-story-solution-products--single {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 48rem;
    margin-inline: auto;
}

.application-detail-page--configured-story .application-story-solution-products--single .application-story-product__copy {
    grid-template-rows: auto auto;
}

@media (max-width: 900px) {
    .application-detail-page--configured-story .application-story-solution-products--single {
        max-width: 100%;
    }
}
