.st-cinematic-wrapper {
        height: 250vh;
        position: relative;
        background: #000;
        z-index: 10;
        --dynamic-st-r: 124;
        --dynamic-st-g: 133;
        --dynamic-st-b: 255;
    }
    .st-cinematic-sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: radial-gradient(circle at center, rgba(30,35,60,0.4) 0%, #000000 70%);
    }
    .st-cinematic-content {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .st-phase {
        position: absolute;
        width: 100%;
        padding: 0 40px;
        text-align: center;
        opacity: 0;
        filter: blur(30px);
        transform: translateY(60px) scale(0.9);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        will-change: transform, opacity, filter;
    }
    .st-phase.active {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0) scale(1);
    }
    .st-phase.exit {
        opacity: 0;
        filter: blur(30px);
        transform: translateY(-60px) scale(1.1);
    }
    .st-phase h2 {
        font-size: clamp(3rem, 8vw, 6rem);
        font-weight: 100;
        letter-spacing: -0.04em;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #ffffff;
    }
    .st-phase p {
        font-size: clamp(1.2rem, 3vw, 2rem);
        color: var(--text-muted);
        max-width: 800px;
        margin: 0 auto;
    }
        .st-highlight {
            background: #7c85ff;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            font-weight: 700;
            transition: background 0.1s ease;
        }
    .st-glow-orb {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 60vw;
        height: 60vw;
        max-width: 800px;
        max-height: 800px;
        background: radial-gradient(circle, rgba(var(--dynamic-st-r), var(--dynamic-st-g), var(--dynamic-st-b), 0.15) 0%, transparent 60%);
        transform: translate(-50%, -50%);
        border-radius: 50%;
        filter: blur(60px);
        z-index: 0;
        pointer-events: none;
        transition: background 0.1s ease;
    }

    .st-stripes-container {
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        align-items: flex-end; 
        gap: 12px;
        z-index: 20;
    }
    .st-stripe {
        width: 12px;
        height: 2px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.2);
        will-change: width, height, background-color, box-shadow;
    }

    @media (max-width: 768px) {
        .st-stripes-container { right: 20px; }
    }

        .cmp-table {
            border: 1px solid var(--border-color);
            border-radius: 0;
            background: var(--surface-color);
            overflow: hidden;
        }
        .cmp-row {
            display: grid;
            grid-template-columns: 1fr 220px 220px;
            align-items: stretch;
        }
        .cmp-row + .cmp-row { border-top: 1px solid var(--border-color); }
        .cmp-row-head { background: rgba(255, 255, 255, 0.02); }
        .cmp-feature {
            padding: 24px 28px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
        }
        .cmp-feature b { font-size: 1.05rem; font-weight: 100; letter-spacing: -0.01em; }
        .cmp-feature small { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }
        .cmp-cell {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 20px 14px;
            border-left: 1px solid var(--border-color);
        }
        .cmp-cell small { font-size: 0.75rem; color: var(--text-muted); text-align: center; line-height: 1.4; }
        .cmp-cell-st { background: rgba(124, 133, 255, 0.06); }
        .cmp-cell-st small { color: #aab2ff; }
        .cmp-col-head {
            font-size: 0.92rem;
            font-weight: 100;
            padding: 18px 14px;
            text-align: center;
        }
        .cmp-col-head-other { color: var(--text-muted); }
        .cmp-head-tag {
            font-size: 0.65rem;
            font-weight: 100;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: #7c85ff;
        }
        .cmp-box {
            width: 36px;
            height: 36px;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            flex-shrink: 0;
        }
        .cmp-box-yes {
            background: rgba(124, 133, 255, 0.14);
            border: 1px solid rgba(124, 133, 255, 0.45);
            color: #aab2ff;
            
        }
        .cmp-box-no {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.35);
        }
        @media (max-width: 768px) {
            .cmp-row { grid-template-columns: 1fr 92px 92px; }
            .cmp-feature { padding: 16px; }
            .cmp-feature b { font-size: 0.92rem; }
            .cmp-feature small { font-size: 0.76rem; }
            .cmp-cell { padding: 14px 6px; gap: 6px; }
            .cmp-cell small { font-size: 0.66rem; }
            .cmp-col-head { font-size: 0.78rem; padding: 14px 6px; }
            .cmp-box { width: 30px; height: 30px; font-size: 1.15rem; }
        }

        /* ===== Page loader: brand mark while the 3D hero warms up. When there
           is no 3D to load (mobile, or a desktop without hardware
           acceleration) the inline head script in index.html adds
           html.no-3d-hero and the loader never paints at all. ===== */
        .pageloader {
            position: fixed;
            inset: 0;
            z-index: 4000;
            display: grid;
            place-items: center;
            background: radial-gradient(900px 540px at 50% 42%, rgba(120, 133, 255, 0.09), #000000 62%);
            transition: opacity 600ms ease;
        }
        .pageloader.is-done {
            opacity: 0;
            pointer-events: none;
        }
        /* No loading needed on this device: the loader has no appearance */
        html.no-3d-hero .pageloader { display: none; }
        .pageloader-inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 24px;
        }
        .pageloader-logo {
            width: clamp(150px, 20vw, 210px);
            height: auto;
            opacity: 0.95;
            filter: drop-shadow(0 12px 38px rgba(124, 133, 255, 0.30));
            animation: pageloaderPulse 1.9s ease-in-out infinite;
        }
        @keyframes pageloaderPulse {
            0%, 100% { opacity: 0.5; transform: scale(0.985); }
            50%      { opacity: 1;   transform: scale(1.015); }
        }
        .pageloader-text {
            font-size: 12px;
            font-weight: 500;
            letter-spacing: 0.44em;
            text-indent: 0.44em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.7);
            background: linear-gradient(100deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.28) 38%, #ffffff 50%, rgba(255, 255, 255, 0.28) 62%, rgba(255, 255, 255, 0.28) 100%);
            background-size: 220% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: pageloaderShimmer 1.7s linear infinite;
        }
        @keyframes pageloaderShimmer {
            0%   { background-position: 120% 0; }
            100% { background-position: -120% 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .pageloader-logo { animation: none; opacity: 0.95; }
            .pageloader-text {
                animation: none;
                background: none;
                -webkit-text-fill-color: rgba(255, 255, 255, 0.72);
            }
        }

        /* ===== Checkout payments (real brand assets) + insurance strip ===== */
        .payx-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
            margin-bottom: 32px;
        }
        .payx-head h2 { margin-bottom: 8px; }

        .payx-panel {
            border: 1px solid var(--border-color);
            background: var(--surface-color);
            padding: 28px;
        }
        .payx-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 12px;
        }
        .payx-chip {
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid var(--border-color);
            transition: transform 0.3s var(--smooth-easing), border-color 0.3s ease, background 0.3s ease;
        }
        .payx-chip img,
        .payx-chip svg {
            height: 24px;
            width: auto;
            max-width: 72%;
            opacity: 0.85;
            transition: opacity 0.3s ease;
        }
        .payx-chip:hover {
            transform: translateY(-4px);
            border-color: rgba(124, 133, 255, 0.45);
            background: rgba(124, 133, 255, 0.05);
        }
        .payx-chip:hover img,
        .payx-chip:hover svg { opacity: 1; }
        .payx-chip-more span {
            font-size: 0.85rem;
            font-weight: 100;
            letter-spacing: 0.08em;
            color: var(--text-muted);
        }
        .payx-panel .pay-foot { margin-top: 24px; }

        .payx-ins {
            margin-top: 14px;
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 18px 24px;
            border: 1px solid var(--border-color);
            background: var(--surface-color);
            text-decoration: none;
            color: var(--text-main);
            transition: border-color 0.3s ease, background 0.3s ease;
            background: linear-gradient(#a283ff21 0%, rgb(177 142 255 / 0%) 50%, #000000 70%) !important;
        }
        .payx-ins:hover {
            border-color: rgba(124, 133, 255, 0.45);
            background: rgba(124, 133, 255, 0.04);
        }
        .payx-ins-icon {
            font-size: 26px;
            color: #7c85ff;
            flex-shrink: 0;
        }
        .payx-ins-copy {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 3px;
            min-width: 0;
        }
        .payx-ins-copy b {
            font-weight: 100;
            font-size: 1.15rem;
        }
        .payx-ins-copy > span {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.5;
        }
        .payx-ins-cta {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 100;
            font-size: 1rem;
            color: #aab2ff;
            white-space: nowrap;
        }
        .payx-ins:hover .payx-ins-cta { color: #ffffff; }

        @media (max-width: 900px) {
            .payx-grid { grid-template-columns: repeat(3, 1fr); }
            .payx-panel { padding: 20px; }
        }
        @media (max-width: 700px) {
            /* Icon + title on the first row, description full width under
               them, CTA on its own line: no squeezed text column */
            .payx-ins {
                display: grid;
                grid-template-columns: 26px 1fr;
                gap: 6px 14px;
                align-items: start;
                padding: 18px;
            }
            .payx-ins-icon { font-size: 22px; margin-top: 2px; }
            .payx-ins-copy { grid-column: 2; }
            .payx-ins-cta { grid-column: 2; margin-top: 4px; }
        }
        @media (max-width: 560px) {
            .payx-grid { grid-template-columns: repeat(2, 1fr); }
            .payx-chip { height: 62px; }
        }

        /* ===== 3D Hero + Category Journey (pinned scrollytelling) ===== */
        /* Default (no JS / WebGL / CDN): a static one-viewport hero with the
           copy visible and everything 3D hidden. vial-journey.js arms the
           full experience once the module graph has actually loaded. */
        .vjny-wrapper {
            position: relative;
            height: 100vh;
            height: 100svh;
            padding: 0;
            background: #000000;
        }
        .vjny-wrapper.is-armed {
            height: 640vh;
        }
        .vjny-wrapper:not(.is-armed) .vjny-canvas,
        .vjny-wrapper:not(.is-armed) .vjny-beat:not(.vjny-hero),
        .vjny-wrapper:not(.is-armed) .vjny-progress {
            display: none;
        }
        .vjny-wrapper:not(.is-armed) .vjny-hero,
        .vjny-wrapper:not(.is-armed) .vjny-hero .vjny-hero-copy {
            opacity: 1;
        }
        .vjny-sticky {
            position: sticky;
            top: 0;
            height: 100vh;
            height: 100svh;
            overflow: hidden;
        }
        .vjny-canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            display: block;
            pointer-events: none;
            opacity: 0;
            transition: opacity 900ms ease;
        }
        .vjny-sticky.is-live .vjny-canvas { opacity: 1; }
        .vjny-vignette {
            position: absolute;
            inset: 0;
            pointer-events: none;
            /* background: radial-gradient(900px 560px at 14% 10%, rgba(124, 133, 255, 0.08), transparent 62%), radial-gradient(1000px 660px at 86% 90%, rgba(124, 133, 255, 0.06), transparent 62%); */
        }
        .vjny-beat {
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            padding: 0 clamp(24px, 7vw, 120px);
            opacity: 0;
            pointer-events: none;
        }
        .vjny-beat[data-side="left"] { place-items: center start; }
        .vjny-beat[data-side="right"] { place-items: center end; }
        .vjny-beat[data-side="right"] .vjny-copy { text-align: right; }
        .vjny-beat[data-side="center"] .vjny-copy { text-align: center; }
        .vjny-copy {
            max-width: 560px;
            text-shadow: 0 2px 26px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.55);
        }

        /* Hero beat: left copy, vial framed on the right by the camera */
        .vjny-hero { place-items: center start; }
        .vjny-hero-copy {
            max-width: 640px;
            opacity: 0;
            pointer-events: auto;
        }
        .vjny-title {
            font-size: clamp(3.2rem, 6.5vw, 5.2rem);
            font-weight: 100;
            letter-spacing: -0.04em;
            line-height: 1.04;
            margin: 0 0 16px;
            color: var(--text-main);
        }
        .vjny-hero-sub {
            font-size: 1.3rem;
            font-weight: 400;
            color: var(--text-muted);
            margin: 0 0 36px;
            max-width: 520px;
        }
        .vjny-hero-actions {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn.vjny-btn-outline {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.25);
            color: var(--text-main);
            padding: 12px 24px;
        }
        .btn.vjny-btn-outline:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(124, 133, 255, 0.6);
        }

        /* The classic hero photo: shown on every static (un-armed) hero,
           i.e. mobile, no hardware acceleration, or any 3D failure */
        .vjny-hero-img { display: none; }
        .vjny-wrapper:not(.is-armed) .vjny-hero-img {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        .vjny-hero-img img {
            width: 100%;
            max-width: 440px;
            max-height: 38vh;
            object-fit: contain;
            -webkit-mask-image: linear-gradient(#000000 72%, transparent 100%);
            mask-image: linear-gradient(#000000 72%, transparent 100%);
        }
        .vjny-wrapper:not(.is-armed) .vjny-hero { place-items: center center; }
        .vjny-wrapper:not(.is-armed) .vjny-hero .vjny-hero-copy {
            padding-top: 0;
            text-align: center;
            /* No column cap: the title/description span as wide as they need,
               bounded only by the beat's side padding */
            max-width: none;
        }
        .vjny-wrapper:not(.is-armed) .vjny-hero-sub {
            max-width: none;
            margin-left: auto;
            margin-right: auto;
        }
        .vjny-wrapper:not(.is-armed) .vjny-hero-actions { justify-content: center; }
        @media (min-width: 901px) {
            .vjny-wrapper:not(.is-armed) .vjny-title {
                font-size: clamp(4.5rem, 9.5vw, 9rem);
            }
            .vjny-wrapper:not(.is-armed) .vjny-hero-sub {
                font-size: clamp(1.35rem, 1.9vw, 1.7rem);
                max-width: none;
            }
            .vjny-wrapper:not(.is-armed) .vjny-hero-img img {
                max-width: 750px;
                max-height: 80vh;
            }
            /* Static hero: normal-flow, growable block so the larger photo can
               push the section taller on short laptop viewports instead of
               clipping the title. (The armed 3D hero keeps its pinned sticky.) */
            .vjny-wrapper:not(.is-armed),
            .vjny-wrapper:not(.is-armed) .vjny-sticky {
                height: auto;
                min-height: 100vh;
                min-height: 100svh;
            }
            .vjny-wrapper:not(.is-armed) .vjny-sticky {
                position: relative;
                display: block;
                overflow: visible;
            }
            .vjny-wrapper:not(.is-armed) .vjny-hero {
                position: relative;
                inset: auto;
                width: 100%;
                min-height: 100vh;
                min-height: 100svh;
                /* Top offset clears the fixed island nav; content stays
                   centered on tall screens and simply scrolls on short ones */
                padding-top: max(9vh, 80px);
                padding-bottom: 0;
            }
        }

        .vjny-kicker {
            font-size: 0.85rem;
            font-weight: 100;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: #7c85ff;
            margin: 0 0 16px;
        }
        .vjny-cat {
            font-size: clamp(2.6rem, 5.4vw, 4.6rem);
            font-weight: 100;
            letter-spacing: -0.03em;
            line-height: 1.02;
            margin: 0 0 14px;
            color: var(--text-main);
        }
        .vjny-products {
            font-size: 1.05rem;
            font-weight: 400;
            color: var(--text-muted);
            margin: 0;
            letter-spacing: 0.02em;
        }
        .vjny-sub {
            font-size: 1.15rem;
            font-weight: 400;
            color: var(--text-muted);
            margin: 18px 0 0;
        }

        /* Split beat: copy wraps around the centered vial (desktop) */
        .vjny-beat.vjny-split {
            grid-template-columns: 1fr minmax(28vw, 32vw) 1fr;
            align-items: center;
        }
        .vjny-split-left {
            grid-column: 1;
            justify-self: end;
            text-align: right;
        }
        .vjny-split-right {
            grid-column: 3;
            justify-self: start;
            text-align: left;
            margin-top: 36px;
        }
        .vjny-split-right .vjny-cat { margin-bottom: 14px; }
        .vjny-visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0 0 0 0);
            white-space: nowrap;
        }

        .vjny-progress {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: rgba(255, 255, 255, 0.07);
        }
        .vjny-progress span {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0%;
            background: linear-gradient(180deg, #ffffff, #7c85ff);
        }

        @media (max-width: 900px) {
            .vjny-wrapper.is-armed { height: 580vh; }
            .vjny-beat,
            .vjny-beat[data-side="left"],
            .vjny-beat[data-side="right"] { place-items: end center; padding: 0 22px; }
            .vjny-beat .vjny-copy,
            .vjny-beat[data-side="right"] .vjny-copy { text-align: center; padding-bottom: 10vh; }
            .vjny-cat { font-size: clamp(2.2rem, 9vw, 3.2rem); }
            .vjny-sub, .vjny-products { font-size: 0.98rem; }
            .vjny-beat.vjny-split {
                grid-template-columns: 1fr;
                align-content: end;
                padding-bottom: 10vh;
            }
            .vjny-beat.vjny-split .vjny-copy {
                grid-column: auto;
                justify-self: center;
                text-align: center;
                padding-bottom: 0;
                margin-top: 0;
            }
            .vjny-split-right .vjny-cat { margin-top: -8px; }
            .vjny-beat.vjny-hero { place-items: start center; }
            .vjny-hero .vjny-hero-copy {
                text-align: center;
                padding: 14vh 0 0;
            }
            .vjny-hero-actions { justify-content: center; }
            .vjny-title { font-size: clamp(2.6rem, 10vw, 3.6rem); }
            .vjny-hero-sub { font-size: 1.05rem; margin-left: auto; margin-right: auto; }
        }
