/* VSL ABOUT CINEMATIC V3
   Canonical About-section stylesheet.
   Scoped to .vsl-about-cinematic; it does not control the hero or header.
*/

.vsl-about-cinematic {
--vsl-about-blue: #31459a;
    --vsl-about-blue-deep: #18286f;
    --vsl-about-teal: #4ab2ba;
    --vsl-about-bright: #1db9c2;
    --vsl-about-aqua: #d9eef0;
    --vsl-about-ink: #071426;
    --vsl-about-muted: #617089;
    --vsl-about-white: #ffffff;
    --about-progress: 0;
    --about-pointer-x: 0px;
    --about-pointer-y: 0px;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    margin-top: -1px;
    overflow: hidden;
    overflow: clip;
    color: var(--vsl-about-ink);
    background:
        radial-gradient(circle at 82% 18%, rgba(29,185,194,.14), transparent 27%),
        radial-gradient(circle at 11% 52%, rgba(49,69,154,.10), transparent 32%),
        linear-gradient(180deg, #edf9fc 0%, #f8fbff 18%, #ffffff 52%, #f4fbfc 100%);
}

.vsl-about-transition {
    position: absolute;
    inset: 0 0 auto;
    z-index: 1;
    height: clamp(80px, 11vw, 160px);
    overflow: hidden;
    pointer-events: none;
}

.vsl-about-transition__beam {
    position: absolute;
    inset: -70% -8% 0;
    border-radius: 0 0 50% 50%;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(49,69,154,.24), transparent 55%),
        linear-gradient(120deg, rgba(49,69,154,.10), rgba(29,185,194,.11), transparent 68%);
    filter: blur(1px);
}

.vsl-about-transition__line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 20%;
    height: 1px;
    overflow: hidden;
    background: rgba(49,69,154,.12);
}

.vsl-about-transition__line::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        var(--vsl-about-blue),
        var(--vsl-about-bright),
        transparent
    );
    transform: translateX(-100%);
    animation: vslAboutSignalSweep 6s ease-in-out infinite;
}

.vsl-about-atmosphere {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.vsl-about-atmosphere__grid {
    position: absolute;
    inset: 0;
    opacity: .36;
    background:
        linear-gradient(rgba(49,69,154,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(49,69,154,.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 88%, transparent);
}

.vsl-about-atmosphere__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
}

.vsl-about-atmosphere__orb--blue {
    width: min(52vw, 760px);
    aspect-ratio: 1;
    left: -23%;
    top: 18%;
    background: radial-gradient(circle, rgba(49,69,154,.16), transparent 70%);
    animation: vslAboutOrbDrift 16s ease-in-out infinite alternate;
}

.vsl-about-atmosphere__orb--teal {
    width: min(50vw, 720px);
    aspect-ratio: 1;
    right: -19%;
    top: 31%;
    background: radial-gradient(circle, rgba(29,185,194,.17), transparent 69%);
    animation: vslAboutOrbDrift 19s ease-in-out infinite alternate-reverse;
}

.vsl-about-atmosphere__mark {
    position: absolute;
    top: 9%;
    right: -4%;
    color: rgba(49,69,154,.035);
    font-size: clamp(320px, 45vw, 720px);
    font-weight: 900;
    line-height: .8;
    transform: rotate(-8deg);
    user-select: none;
}

.vsl-about-shell {
    position: relative;
    z-index: 2;
    width: min(1340px, 92%);
    margin-inline: auto;
    padding: clamp(100px, 12vw, 170px) 0 clamp(90px, 10vw, 150px);
}

.vsl-about-intro {
    position: relative;
    z-index: 5;
    max-width: 950px;
    margin-bottom: clamp(62px, 8vw, 110px);
}

.vsl-about-intro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 23px;
    color: var(--vsl-about-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.vsl-about-intro__eyebrow span {
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vsl-about-blue), var(--vsl-about-bright));
}

.vsl-about-title {
    max-width: 1000px;
    margin: 0;
    color: var(--vsl-about-blue-deep);
    font-size: clamp(54px, 7.25vw, 112px);
    font-weight: 850;
    letter-spacing: -.066em;
    line-height: .91;
}

.vsl-about-title__line {
    display: block;
    overflow: hidden;
}

.vsl-about-title__line > span {
    display: block;
    transform: translateY(112%);
    transition: transform 1.05s cubic-bezier(.22,1,.36,1);
}

.vsl-about-title__line:nth-child(2) > span {
    transition-delay: .09s;
}

.vsl-about-title__line:nth-child(3) > span {
    transition-delay: .18s;
}

.vsl-about-cinematic.is-visible .vsl-about-title__line > span {
    transform: translateY(0);
}

.vsl-about-title em {
    color: transparent;
    font-style: normal;
    background: linear-gradient(
        110deg,
        var(--vsl-about-blue),
        var(--vsl-about-teal),
        var(--vsl-about-bright)
    );
    background-size: 180% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: vslAboutTextFlow 7s ease-in-out infinite;
}

.vsl-about-intro__copy {
    max-width: 66ch;
    margin: 31px 0 0;
    color: var(--vsl-about-muted);
    font-size: clamp(17px, 1.42vw, 21px);
    line-height: 1.75;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .85s .36s ease,
        transform .85s .36s cubic-bezier(.22,1,.36,1);
}

.vsl-about-cinematic.is-visible .vsl-about-intro__copy {
    opacity: 1;
    transform: translateY(0);
}

.vsl-about-story {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, .36fr) minmax(0, 1fr);
    gap: clamp(30px, 5vw, 80px);
    min-height: 155vh;
}

.vsl-about-narrative {
    position: sticky;
    top: 118px;
    align-self: start;
    min-height: 520px;
    padding-top: 22px;
}

.vsl-about-state-copy {
    position: absolute;
    inset: 22px 0 auto;
    max-width: 380px;
    opacity: 0;
    transform: translateY(25px);
    pointer-events: none;
    transition:
        opacity .52s ease,
        transform .68s cubic-bezier(.22,1,.36,1);
}

.vsl-about-state-copy.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.vsl-about-state-copy__number {
    display: block;
    margin-bottom: 12px;
    color: rgba(49,69,154,.34);
    font-size: 58px;
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .85;
}

.vsl-about-state-copy__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--vsl-about-teal);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vsl-about-state-copy__label::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.vsl-about-state-copy h3 {
    margin: 0;
    color: var(--vsl-about-blue-deep);
    font-size: clamp(30px, 3vw, 48px);
    font-weight: 830;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.vsl-about-state-copy p {
    margin: 20px 0 0;
    color: var(--vsl-about-muted);
    font-size: 16px;
    line-height: 1.7;
}

.vsl-about-state-nav {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    display: grid;
    gap: 3px;
}

.vsl-about-state-nav button {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 0;
    border: 0;
    color: rgba(24,40,111,.48);
    text-align: left;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    transition: color .3s ease;
}

.vsl-about-state-nav button::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: rgba(49,69,154,.12);
}

.vsl-about-state-nav button::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--vsl-about-blue), var(--vsl-about-bright));
    transition: width .48s cubic-bezier(.22,1,.36,1);
}

.vsl-about-state-nav button.is-active {
    color: var(--vsl-about-blue-deep);
}

.vsl-about-state-nav button.is-active::before {
    width: 100%;
}

.vsl-about-state-nav button span {
    color: var(--vsl-about-teal);
}

.vsl-about-stage {
    position: sticky;
    top: 92px;
    align-self: start;
    height: min(77vh, 790px);
    min-height: 610px;
    perspective: 1200px;
}

.vsl-about-stage__halo {
    position: absolute;
    inset: -10%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 60% 45%, rgba(29,185,194,.22), transparent 41%),
        radial-gradient(circle at 35% 55%, rgba(49,69,154,.17), transparent 43%);
    filter: blur(26px);
    opacity: .7;
    pointer-events: none;
}

.vsl-about-scene {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: clamp(34px, 4vw, 62px);
    background:
        linear-gradient(145deg, rgba(255,255,255,.83), rgba(221,242,245,.74));
    box-shadow:
        0 50px 120px rgba(18,45,91,.19),
        0 16px 45px rgba(29,185,194,.10),
        inset 0 1px 0 rgba(255,255,255,.9);
    transform:
        rotateX(calc(var(--about-pointer-y) * -.08))
        rotateY(calc(var(--about-pointer-x) * .08));
    transform-style: preserve-3d;
    transition: transform .18s linear;
}

.vsl-about-scene::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
    background:
        linear-gradient(120deg, rgba(255,255,255,.34), transparent 29%),
        linear-gradient(to top, rgba(5,23,52,.29), transparent 45%);
}

.vsl-about-scene::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 21;
    pointer-events: none;
    box-shadow: inset 0 0 90px rgba(19,52,103,.11);
}

.vsl-about-plane {
    position: absolute;
    margin: 0;
    overflow: hidden;
    transform-style: preserve-3d;
    transition:
        opacity .8s ease,
        transform 1s cubic-bezier(.22,1,.36,1),
        filter .8s ease;
}

.vsl-about-plane img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.vsl-about-plane--hospital {
    inset: 0;
    z-index: 1;
    opacity: .55;
    filter: saturate(.76) contrast(1.04);
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.45),
            calc(var(--about-pointer-y) * -.35),
            -25px
        )
        scale(1.09);
}

.vsl-about-plane--hospital img {
    object-position: 54% center;
}

.vsl-about-plane--supply {
    left: 5%;
    bottom: 8%;
    z-index: 4;
    width: 44%;
    height: 50%;
    border-radius: 38px 38px 18px 38px;
    opacity: 1;
    clip-path: polygon(0 7%, 92% 0, 100% 88%, 11% 100%);
    box-shadow: 0 30px 65px rgba(9,33,76,.27);
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .52),
            calc(var(--about-pointer-y) * .38),
            55px
        )
        rotate(-3deg)
        scale(1);
}

.vsl-about-plane--documentation {
    top: 8%;
    right: 5%;
    z-index: 5;
    width: 38%;
    height: 36%;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 22px 42px 32px 22px;
    opacity: .38;
    box-shadow: 0 25px 58px rgba(9,33,76,.23);
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.62),
            calc(var(--about-pointer-y) * -.48),
            75px
        )
        rotate(3deg)
        scale(.92);
}

.vsl-about-product-orbit {
    position: absolute;
    left: 48%;
    top: 36%;
    z-index: 7;
    width: 250px;
    aspect-ratio: 1;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .75),
            calc(var(--about-pointer-y) * .6),
            90px
        );
    transition:
        opacity .7s ease,
        transform .85s cubic-bezier(.22,1,.36,1);
}

.vsl-about-product-orbit__ring {
    position: absolute;
    inset: 6%;
    border: 1px solid rgba(29,185,194,.34);
    border-radius: 50%;
    box-shadow:
        0 0 40px rgba(29,185,194,.17),
        inset 0 0 32px rgba(29,185,194,.09);
}

.vsl-about-product-orbit__ring::before,
.vsl-about-product-orbit__ring::after {
    content: "";
    position: absolute;
    inset: 20%;
    border: 1px dashed rgba(49,69,154,.24);
    border-radius: 50%;
}

.vsl-about-product-orbit__ring::after {
    inset: 40%;
    border-style: solid;
    border-color: rgba(29,185,194,.42);
}

.vsl-about-product-orbit__item {
    position: absolute;
    width: 112px;
    height: 112px;
    padding: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,.76);
    box-shadow:
        0 18px 44px rgba(17,47,90,.18),
        inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    object-fit: contain;
    animation: vslAboutProductFloat 7s ease-in-out infinite;
}

.vsl-about-product-orbit__item--one {
    left: -4%;
    top: 3%;
}

.vsl-about-product-orbit__item--two {
    right: -4%;
    top: 22%;
    animation-delay: -2.1s;
}

.vsl-about-product-orbit__item--three {
    left: 28%;
    bottom: -8%;
    animation-delay: -4s;
}

.vsl-about-network {
    position: absolute;
    inset: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vsl-about-network__ghost,
.vsl-about-network__active {
    fill: none;
    vector-effect: non-scaling-stroke;
}

.vsl-about-network__ghost {
    stroke: rgba(255,255,255,.27);
    stroke-width: 2;
}

.vsl-about-network__active {
    stroke: url(#vslAboutPathGradient);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 1500;
    stroke-dashoffset: calc(1500 - (1500 * var(--about-progress)));
    filter: url(#vslAboutGlow);
    transition: stroke-dashoffset .55s cubic-bezier(.22,1,.36,1);
}

.vsl-about-network__pulse {
    fill: #ffffff;
    stroke: var(--vsl-about-bright);
    stroke-width: 3;
    filter: url(#vslAboutGlow);
}

.vsl-about-annotation {
    position: absolute;
    z-index: 14;
    display: grid;
    gap: 2px;
    padding: 0;
    color: #ffffff;
    opacity: .25;
    transform: translateY(8px);
    transition:
        opacity .55s ease,
        transform .65s cubic-bezier(.22,1,.36,1);
}

.vsl-about-annotation.is-active {
    opacity: 1;
    transform: translateY(0);
}

.vsl-about-annotation strong {
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -.01em;
    text-shadow: 0 2px 13px rgba(0,21,58,.46);
}

.vsl-about-annotation small {
    color: rgba(255,255,255,.76);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    text-shadow: 0 2px 10px rgba(0,21,58,.45);
}

.vsl-about-annotation__node {
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid rgba(255,255,255,.92);
    border-radius: 50%;
    background: var(--vsl-about-bright);
    box-shadow:
        0 0 0 7px rgba(29,185,194,.15),
        0 0 20px rgba(29,185,194,.65);
}

.vsl-about-annotation__line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.85), transparent);
}

.vsl-about-annotation--products {
    left: 8%;
    bottom: 28%;
}

.vsl-about-annotation--products .vsl-about-annotation__node {
    left: 12px;
    top: -27px;
}

.vsl-about-annotation--products .vsl-about-annotation__line {
    left: 16px;
    bottom: calc(100% + 15px);
    width: 74px;
    transform: rotate(-27deg);
    transform-origin: left;
}

.vsl-about-annotation--documentation {
    top: 12%;
    right: 9%;
    text-align: right;
}

.vsl-about-annotation--documentation .vsl-about-annotation__node {
    right: 15px;
    bottom: -28px;
}

.vsl-about-annotation--documentation .vsl-about-annotation__line {
    right: 18px;
    top: calc(100% + 15px);
    width: 68px;
    transform: rotate(30deg);
    transform-origin: right;
}

.vsl-about-annotation--coordination {
    left: 49%;
    top: 28%;
}

.vsl-about-annotation--coordination .vsl-about-annotation__node {
    left: -24px;
    top: 8px;
}

.vsl-about-annotation--coordination .vsl-about-annotation__line {
    right: calc(100% + 10px);
    top: 12px;
    width: 54px;
}

.vsl-about-annotation--delivery {
    right: 8%;
    bottom: 22%;
    text-align: right;
}

.vsl-about-annotation--delivery .vsl-about-annotation__node {
    right: 15px;
    top: -26px;
}

.vsl-about-annotation--delivery .vsl-about-annotation__line {
    right: 18px;
    bottom: calc(100% + 14px);
    width: 76px;
    transform: rotate(-28deg);
    transform-origin: right;
}

.vsl-about-pathway {
    position: absolute;
    left: 7%;
    right: 7%;
    bottom: 6%;
    z-index: 18;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
}

.vsl-about-pathway__line {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 11px;
    height: 1px;
    background: rgba(255,255,255,.28);
}

.vsl-about-pathway__line::after {
    content: "";
    display: block;
    width: calc(var(--about-progress) * 100%);
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--vsl-about-blue),
        var(--vsl-about-teal),
        var(--vsl-about-bright)
    );
    box-shadow: 0 0 18px rgba(29,185,194,.65);
    transition: width .6s cubic-bezier(.22,1,.36,1);
}

.vsl-about-pathway__pulse {
    position: absolute;
    left: calc(8% + (var(--about-progress) * 84%));
    top: 5px;
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255,255,255,.88);
    border-radius: 50%;
    background: var(--vsl-about-bright);
    box-shadow:
        0 0 0 8px rgba(29,185,194,.15),
        0 0 25px rgba(29,185,194,.8);
    transform: translateX(-50%);
    transition: left .65s cubic-bezier(.22,1,.36,1);
}

.vsl-about-pathway__stage {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 10px;
    color: rgba(255,255,255,.52);
    transition: color .35s ease;
}

.vsl-about-pathway__stage span {
    position: relative;
    z-index: 1;
    width: 21px;
    height: 21px;
    border: 2px solid rgba(255,255,255,.56);
    border-radius: 50%;
    background: rgba(10,36,76,.48);
    transition:
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.vsl-about-pathway__stage small {
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0,23,58,.55);
}

.vsl-about-pathway__stage.is-active {
    color: #ffffff;
}

.vsl-about-pathway__stage.is-active span {
    border-color: #ffffff;
    background: var(--vsl-about-bright);
    box-shadow: 0 0 18px rgba(29,185,194,.8);
}

.vsl-about-cinematic[data-about-state="0"] {
    --about-progress: .12;
}

.vsl-about-cinematic[data-about-state="1"] {
    --about-progress: .62;
}

.vsl-about-cinematic[data-about-state="2"] {
    --about-progress: 1;
}

.vsl-about-cinematic[data-about-state="0"] .vsl-about-plane--hospital {
    opacity: .38;
    filter: saturate(.54) contrast(1.03);
}

.vsl-about-cinematic[data-about-state="0"] .vsl-about-plane--supply {
    opacity: 1;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .52),
            calc(var(--about-pointer-y) * .38),
            55px
        )
        rotate(-3deg)
        scale(1.04);
}

.vsl-about-cinematic[data-about-state="0"] .vsl-about-plane--documentation {
    opacity: .22;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.62),
            calc(var(--about-pointer-y) * -.48),
            75px
        )
        rotate(3deg)
        scale(.86);
}

.vsl-about-cinematic[data-about-state="1"] .vsl-about-plane--hospital {
    opacity: .54;
}

.vsl-about-cinematic[data-about-state="1"] .vsl-about-plane--supply {
    opacity: .72;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .52),
            calc(var(--about-pointer-y) * .38),
            48px
        )
        rotate(-2deg)
        scale(.94);
}

.vsl-about-cinematic[data-about-state="1"] .vsl-about-plane--documentation {
    opacity: .94;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.62),
            calc(var(--about-pointer-y) * -.48),
            90px
        )
        rotate(1deg)
        scale(1.05);
}

.vsl-about-cinematic[data-about-state="1"] .vsl-about-product-orbit {
    opacity: .72;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .75),
            calc(var(--about-pointer-y) * .6),
            70px
        )
        scale(.88);
}

.vsl-about-cinematic[data-about-state="2"] .vsl-about-plane--hospital {
    opacity: .94;
    filter: saturate(.9) contrast(1.04);
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.45),
            calc(var(--about-pointer-y) * -.35),
            -25px
        )
        scale(1.02);
}

.vsl-about-cinematic[data-about-state="2"] .vsl-about-plane--supply {
    opacity: .28;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .52),
            calc(var(--about-pointer-y) * .38),
            35px
        )
        rotate(-1deg)
        scale(.82);
}

.vsl-about-cinematic[data-about-state="2"] .vsl-about-plane--documentation {
    opacity: .36;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * -.62),
            calc(var(--about-pointer-y) * -.48),
            60px
        )
        rotate(1deg)
        scale(.86);
}

.vsl-about-cinematic[data-about-state="2"] .vsl-about-product-orbit {
    opacity: .34;
    transform:
        translate3d(
            calc(var(--about-pointer-x) * .75),
            calc(var(--about-pointer-y) * .6),
            55px
        )
        scale(.72);
}

.vsl-about-conclusion {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-top: clamp(75px, 10vw, 140px);
    padding-top: clamp(42px, 6vw, 74px);
    border-top: 1px solid rgba(49,69,154,.14);
}

.vsl-about-conclusion p {
    max-width: 850px;
    margin: 0;
    color: var(--vsl-about-blue-deep);
    font-size: clamp(31px, 4.2vw, 66px);
    font-weight: 820;
    letter-spacing: -.05em;
    line-height: 1.03;
}

.vsl-about-conclusion p span {
    display: block;
    color: var(--vsl-about-teal);
}

.vsl-about-conclusion__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.vsl-about-conclusion__actions .btn {
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding-inline: 24px;
    border-radius: 999px;
    transition:
        transform .25s ease,
        box-shadow .3s ease;
    will-change: transform;
}

.vsl-about-conclusion__actions .btn-primary {
    box-shadow: 0 18px 42px rgba(29,185,194,.25);
}

.vsl-about-conclusion__actions .btn-secondary {
    border-color: rgba(49,69,154,.18);
    background: rgba(255,255,255,.58);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.vsl-about-conclusion__actions .btn:focus-visible,
.vsl-about-state-nav button:focus-visible {
    outline: 3px solid var(--vsl-about-bright);
    outline-offset: 5px;
}

@keyframes vslAboutSignalSweep {
    0%, 18% {
        transform: translateX(-100%);
        opacity: 0;
    }

    35% {
        opacity: 1;
    }

    70%, 100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes vslAboutOrbDrift {
    from {
        transform: translate3d(-12px, -10px, 0) scale(.97);
    }

    to {
        transform: translate3d(18px, 16px, 0) scale(1.04);
    }
}

@keyframes vslAboutTextFlow {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes vslAboutProductFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-7px) rotate(2deg);
    }
}

html[data-theme="dark"] .vsl-about-cinematic {
    --vsl-about-ink: #f4f8ff;
    --vsl-about-muted: #aebed2;
    background:
        radial-gradient(circle at 82% 18%, rgba(29,185,194,.15), transparent 29%),
        radial-gradient(circle at 11% 52%, rgba(49,69,154,.26), transparent 33%),
        linear-gradient(180deg, #071020 0%, #09162a 44%, #07111f 100%);
}

html[data-theme="dark"] .vsl-about-title,
html[data-theme="dark"] .vsl-about-state-copy h3,
html[data-theme="dark"] .vsl-about-conclusion p {
    color: #f4f8ff;
}

html[data-theme="dark"] .vsl-about-state-copy__number {
    color: rgba(217,238,240,.18);
}

html[data-theme="dark"] .vsl-about-intro__copy,
html[data-theme="dark"] .vsl-about-state-copy p {
    color: #aebed2;
}

html[data-theme="dark"] .vsl-about-scene {
    border-color: rgba(138,201,215,.15);
    background: linear-gradient(
        145deg,
        rgba(11,31,57,.91),
        rgba(7,22,43,.88)
    );
    box-shadow:
        0 52px 120px rgba(0,0,0,.43),
        inset 0 1px 0 rgba(255,255,255,.05);
}

html[data-theme="dark"] .vsl-about-product-orbit__item {
    background: rgba(12,34,62,.78);
}

html[data-theme="dark"] .vsl-about-conclusion {
    border-color: rgba(148,182,225,.14);
}

html[data-theme="dark"] .vsl-about-conclusion__actions .btn-secondary {
    border-color: rgba(148,182,225,.16);
    color: #f4f8ff;
    background: rgba(12,31,57,.66);
}

@media (max-width: 1180px) {
    .vsl-about-story {
        grid-template-columns: minmax(230px, .34fr) minmax(0, 1fr);
        gap: 34px;
    }

    .vsl-about-stage {
        min-height: 570px;
    }

    .vsl-about-product-orbit {
        left: 43%;
        transform: scale(.86);
    }

    .vsl-about-conclusion {
        align-items: start;
        flex-direction: column;
    }
}

@media (max-width: 900px) {
    .vsl-about-shell {
        width: min(92%, 760px);
    }

    .vsl-about-story {
        display: block;
        min-height: auto;
    }

    .vsl-about-narrative {
        position: relative;
        top: auto;
        min-height: 340px;
        margin-bottom: 34px;
    }

    .vsl-about-state-copy {
        max-width: 630px;
    }

    .vsl-about-state-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .vsl-about-state-nav button {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 13px 8px;
        text-align: center;
    }

    .vsl-about-stage {
        position: relative;
        top: auto;
        height: 690px;
        min-height: 0;
    }

    .vsl-about-plane--supply {
        width: 47%;
        height: 44%;
    }

    .vsl-about-plane--documentation {
        width: 42%;
    }

    .vsl-about-conclusion__actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 700px) {
    .vsl-about-shell {
        padding: 82px 0 85px;
    }

    .vsl-about-intro {
        margin-bottom: 58px;
    }

    .vsl-about-title {
        font-size: clamp(44px, 13vw, 65px);
        line-height: .96;
    }

    .vsl-about-intro__copy {
        margin-top: 24px;
        font-size: 16px;
    }

    .vsl-about-narrative {
        min-height: 390px;
    }

    .vsl-about-state-copy__number {
        font-size: 46px;
    }

    .vsl-about-state-copy h3 {
        font-size: 33px;
    }

    .vsl-about-stage {
        height: 590px;
    }

    .vsl-about-scene {
        border-radius: 32px;
        transform: none !important;
    }

    .vsl-about-plane--hospital {
        transform: scale(1.05) !important;
    }

    .vsl-about-plane--supply {
        left: 4%;
        bottom: 13%;
        width: 55%;
        height: 39%;
        border-radius: 25px;
        transform: rotate(-2deg) !important;
    }

    .vsl-about-plane--documentation {
        top: 7%;
        right: 4%;
        width: 49%;
        height: 31%;
        border-radius: 20px;
        transform: rotate(2deg) !important;
    }

    .vsl-about-product-orbit {
        left: 36%;
        top: 38%;
        width: 205px;
        transform: scale(.72) !important;
    }

    .vsl-about-annotation strong {
        font-size: 11px;
    }

    .vsl-about-annotation small {
        font-size: 9px;
    }

    .vsl-about-annotation--products {
        left: 6%;
        bottom: 30%;
    }

    .vsl-about-annotation--coordination {
        left: 42%;
        top: 36%;
    }

    .vsl-about-annotation--delivery {
        right: 5%;
        bottom: 20%;
    }

    .vsl-about-pathway {
        left: 6%;
        right: 6%;
        bottom: 4%;
    }

    .vsl-about-conclusion p {
        font-size: clamp(31px, 9vw, 45px);
    }

    .vsl-about-conclusion__actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .vsl-about-conclusion__actions .btn {
        width: 100%;
    }

    .vsl-about-atmosphere__mark {
        display: none;
    }
}

@media (max-width: 460px) {
    .vsl-about-title {
        font-size: clamp(40px, 12vw, 53px);
    }

    .vsl-about-state-nav button {
        font-size: 10px;
    }

    .vsl-about-stage {
        height: 535px;
    }

    .vsl-about-product-orbit {
        left: 30%;
        width: 180px;
    }

    .vsl-about-product-orbit__item {
        width: 88px;
        height: 88px;
    }

    .vsl-about-annotation--coordination {
        display: none;
    }

    .vsl-about-pathway__stage small {
        font-size: 7px;
    }
}

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

    .vsl-about-title__line > span,
    .vsl-about-intro__copy {
        opacity: 1 !important;
        transform: none !important;
    }

    .vsl-about-network__active {
        stroke-dashoffset: 0 !important;
    }

    .vsl-about-network__pulse,
    .vsl-about-pathway__pulse {
        display: none !important;
    }

    .vsl-about-scene,
    .vsl-about-plane,
    .vsl-about-product-orbit {
        transform: none !important;
    }
}

/* ABOUT V3.1 TYPOGRAPHY AND CONCLUSION REFINEMENT */

.vsl-about-cinematic {
    --vsl-about-display: "Inter", "Segoe UI", Arial, sans-serif;
    --vsl-about-body: "Inter", "Segoe UI", Arial, sans-serif;
    --vsl-about-reading: 0.015em;
}

.vsl-about-title,
.vsl-about-state-copy h3,
.vsl-about-conclusion p {
    font-family: var(--vsl-about-display);
    font-feature-settings: "liga" 1, "calt" 1, "ss01" 1, "cv11" 1;
    text-rendering: geometricPrecision;
    text-wrap: balance;
}

.vsl-about-intro__copy,
.vsl-about-state-copy p,
.vsl-about-state-nav button,
.vsl-about-pathway__stage small,
.vsl-about-annotation strong,
.vsl-about-annotation small {
    font-family: var(--vsl-about-body);
    font-feature-settings: "liga" 1, "calt" 1, "ss01" 1;
}

.vsl-about-shell {
    width: min(1320px, 91%);
}

.vsl-about-intro {
    max-width: 980px;
    margin-bottom: clamp(56px, 7vw, 96px);
}

.vsl-about-intro__eyebrow {
    gap: 14px;
    margin-bottom: 26px;
    font-size: 11px;
    letter-spacing: .22em;
}

.vsl-about-intro__eyebrow span {
    width: 44px;
}

.vsl-about-title {
    max-width: 10.8ch;
    font-size: clamp(50px, 6.2vw, 98px);
    font-weight: 820;
    line-height: .92;
    letter-spacing: -.075em;
}

.vsl-about-title__line {
    margin-bottom: .03em;
}

.vsl-about-title__line:last-child {
    margin-bottom: 0;
}

.vsl-about-title__line > span {
    will-change: transform, opacity;
}

.vsl-about-title em {
    position: relative;
    background-size: 220% 100%;
    text-shadow: 0 10px 28px rgba(29,185,194,.08);
}

.vsl-about-title em::after {
    content: "";
    position: absolute;
    left: 1%;
    right: 2%;
    bottom: .06em;
    z-index: -1;
    height: .12em;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        rgba(49,69,154,.05),
        rgba(29,185,194,.20),
        rgba(29,185,194,.04)
    );
}

.vsl-about-intro__copy {
    max-width: 58ch;
    margin-top: 28px;
    color: #5f7088;
    font-size: clamp(18px, 1.28vw, 20px);
    line-height: 1.8;
    letter-spacing: var(--vsl-about-reading);
}

.vsl-about-story {
    min-height: 142vh;
    gap: clamp(28px, 4vw, 64px);
}

.vsl-about-narrative {
    min-height: 500px;
}

.vsl-about-state-copy {
    max-width: 390px;
}

.vsl-about-state-copy__number {
    margin-bottom: 10px;
    font-size: 50px;
    letter-spacing: -.07em;
}

.vsl-about-state-copy__label {
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: .18em;
}

.vsl-about-state-copy h3 {
    font-size: clamp(28px, 2.55vw, 42px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.042em;
}

.vsl-about-state-copy p {
    max-width: 33ch;
    margin-top: 16px;
    color: #667892;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .01em;
}

.vsl-about-state-nav {
    gap: 6px;
}

.vsl-about-state-nav button {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 12px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .01em;
    text-transform: none;
}

.vsl-about-state-nav button span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.vsl-about-stage {
    height: min(74vh, 760px);
}

.vsl-about-scene {
    border-radius: clamp(32px, 4vw, 54px);
}

.vsl-about-annotation strong {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .005em;
}

.vsl-about-annotation small {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .03em;
}

.vsl-about-pathway__stage small {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vsl-about-conclusion {
    position: relative;
    align-items: center;
    gap: 28px;
    margin-top: clamp(54px, 8vw, 92px);
    padding: clamp(30px, 4vw, 46px);
    border: 1px solid rgba(82,132,199,.16);
    border-radius: 34px;
    background:
        radial-gradient(circle at 16% 22%, rgba(29,185,194,.12), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(49,69,154,.22), transparent 34%),
        linear-gradient(135deg, #0f2d74 0%, #081b49 48%, #06163b 100%);
    box-shadow:
        0 28px 70px rgba(7,17,39,.20),
        inset 0 1px 0 rgba(255,255,255,.08);
    overflow: hidden;
}

.vsl-about-conclusion::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(110deg, rgba(255,255,255,.10), transparent 26%),
        linear-gradient(0deg, rgba(0,0,0,.12), transparent 52%);
}

.vsl-about-conclusion::after {
    content: "";
    position: absolute;
    left: 34px;
    right: 34px;
    top: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.22),
        rgba(29,185,194,.42),
        transparent
    );
}

.vsl-about-conclusion p {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0;
    color: #eff6ff;
    font-size: clamp(28px, 3.7vw, 52px);
    font-weight: 810;
    line-height: 1.02;
    letter-spacing: -.052em;
}

.vsl-about-conclusion p span {
    display: block;
    margin-bottom: 14px;
    color: #8ce5ef;
    font-size: clamp(11px, .88vw, 13px);
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.vsl-about-conclusion__actions {
    position: relative;
    z-index: 1;
    align-self: flex-end;
    gap: 12px;
}

.vsl-about-conclusion__actions .btn {
    min-height: 52px;
    padding-inline: 22px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .005em;
    border-radius: 999px;
}

.vsl-about-conclusion__actions .btn-primary {
    box-shadow: 0 14px 34px rgba(29,185,194,.18);
}

.vsl-about-conclusion__actions .btn-secondary {
    border-color: rgba(255,255,255,.14);
    color: #eef6ff;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.vsl-about-conclusion__actions .btn:hover {
    transform: translateY(-2px);
}

html[data-theme="dark"] .vsl-about-title {
    color: #f4f8ff;
}

html[data-theme="dark"] .vsl-about-intro__copy,
html[data-theme="dark"] .vsl-about-state-copy p {
    color: #b1c0d1;
}

html[data-theme="dark"] .vsl-about-conclusion {
    border-color: rgba(123,173,236,.14);
    background:
        radial-gradient(circle at 16% 22%, rgba(29,185,194,.10), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(49,69,154,.18), transparent 34%),
        linear-gradient(135deg, #0b1f53 0%, #08183f 48%, #06132f 100%);
    box-shadow:
        0 30px 72px rgba(0,0,0,.36),
        inset 0 1px 0 rgba(255,255,255,.06);
}

html[data-theme="dark"] .vsl-about-conclusion p {
    color: #f6f9ff;
}

html[data-theme="dark"] .vsl-about-conclusion__actions .btn-secondary {
    border-color: rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
}

@media (max-width: 1180px) {
    .vsl-about-title {
        max-width: 11.4ch;
        font-size: clamp(48px, 6vw, 86px);
    }

    .vsl-about-story {
        min-height: 132vh;
    }

    .vsl-about-conclusion {
        align-items: start;
        gap: 24px;
    }

    .vsl-about-conclusion__actions {
        align-self: start;
    }
}

@media (max-width: 900px) {
    .vsl-about-intro {
        max-width: 760px;
    }

    .vsl-about-title {
        max-width: 11.6ch;
        font-size: clamp(44px, 8vw, 72px);
    }

    .vsl-about-intro__copy {
        max-width: 60ch;
        font-size: 17px;
    }

    .vsl-about-story {
        min-height: auto;
    }

    .vsl-about-state-nav button {
        padding: 12px 10px;
        font-size: 12px;
    }

    .vsl-about-conclusion p {
        max-width: none;
        font-size: clamp(27px, 5.4vw, 42px);
    }
}

@media (max-width: 700px) {
    .vsl-about-title {
        max-width: 8.8ch;
        font-size: clamp(40px, 12vw, 58px);
        line-height: .96;
    }

    .vsl-about-intro__copy {
        margin-top: 22px;
        font-size: 16px;
        line-height: 1.76;
    }

    .vsl-about-state-copy__number {
        font-size: 42px;
    }

    .vsl-about-state-copy h3 {
        font-size: 31px;
    }

    .vsl-about-conclusion {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .vsl-about-conclusion p {
        font-size: clamp(26px, 9vw, 37px);
        line-height: 1.04;
    }

    .vsl-about-conclusion p span {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: .18em;
    }

    .vsl-about-conclusion__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
    }

    .vsl-about-conclusion__actions .btn {
        width: 100%;
        min-height: 50px;
    }
}

@media (max-width: 460px) {
    .vsl-about-title {
        max-width: 8.4ch;
        font-size: clamp(37px, 11.8vw, 49px);
    }

    .vsl-about-state-nav button {
        font-size: 11px;
    }

    .vsl-about-conclusion p {
        font-size: clamp(24px, 9.2vw, 32px);
    }
}
