
:root {
    --dq3-bg: #07090c;
    --dq3-bg-soft: #0d1117;
    --dq3-card: rgba(255,255,255,.055);
    --dq3-line: rgba(255,255,255,.12);
    --dq3-text: #f6f7f8;
    --dq3-muted: rgba(246,247,248,.62);
    --dq3-accent: #74a7ff;
    --dq3-accent-soft: rgba(116,167,255,.18);
    --dq3-progress: 0;
}

html {
    scroll-behavior: smooth;
}

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

.dq3-experience,
.dq3-experience * {
    box-sizing: border-box;
}

.dq3-experience {
    overflow: clip;
    color: var(--dq3-text);
    background:
        radial-gradient(
            circle at 50% 10%,
            rgba(80,125,210,.10),
            transparent 32rem
        ),
        var(--dq3-bg);
}

.dq3-wrap {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}

.dq3-cinematic {
    position: relative;
    height: 520vh;
    background:
        linear-gradient(
            180deg,
            #050608 0%,
            #0b0e13 65%,
            #07090c 100%
        );
}

.dq3-cinematic__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
}

.dq3-cinematic__ambient {
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
}

.dq3-cinematic__ambient::before {
    content: "";
    position: absolute;
    width: 64vw;
    aspect-ratio: 1;
    left: 46%;
    top: 50%;
    transform:
        translate(-50%, -50%)
        scale(calc(.8 + var(--dq3-progress) * .35));
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(83,131,218,.15),
            rgba(83,131,218,.05) 34%,
            transparent 67%
        );
    filter: blur(12px);
}

.dq3-cinematic__ambient span {
    position: absolute;
    display: block;
    width: 50vw;
    aspect-ratio: 1;
    left: 52%;
    top: 50%;
    border: 1px solid rgba(255,255,255,.045);
    border-radius: 50%;
    transform:
        translate(-50%, -50%)
        rotate(calc(var(--dq3-progress) * 80deg));
}

.dq3-cinematic__ambient span:nth-child(2) {
    width: 38vw;
    transform:
        translate(-50%, -50%)
        rotate(calc(var(--dq3-progress) * -110deg));
}

.dq3-cinematic__ambient span:nth-child(3) {
    width: 26vw;
}

.dq3-cinematic__brand {
    position: absolute;
    top: 38px;
    left: 48px;
    z-index: 10;
}

.dq3-eyebrow,
.dq3-kicker,
.dq3-section-label {
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: .19em;
    font-weight: 700;
    color: rgba(255,255,255,.56);
}

.dq3-cinematic__copy {
    position: absolute;
    inset: 0 auto 0 7vw;
    width: min(570px, 43vw);
    z-index: 5;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.dq3-story {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(38px);
    transition:
        opacity .65s cubic-bezier(.2,.7,.2,1),
        transform .65s cubic-bezier(.2,.7,.2,1);
}

.dq3-story.is-active {
    opacity: 1;
    transform: translateY(0);
}

.dq3-story h1,
.dq3-story h2 {
    margin: 14px 0 20px;
    max-width: 650px;
    font-size: clamp(48px, 5.4vw, 92px);
    line-height: .96;
    letter-spacing: -.06em;
    font-weight: 520;
}

.dq3-story h2 {
    font-size: clamp(44px, 4.8vw, 78px);
}

.dq3-story h1 em,
.dq3-story h2 span,
.dq3-proof h2 span,
.dq3-showroom h2 span,
.dq3-final-cta h2 span {
    display: block;
    font-style: normal;
    color: var(--dq3-accent);
}

.dq3-story > p:last-child {
    width: min(470px, 100%);
    margin: 0;
    color: var(--dq3-muted);
    font-size: clamp(15px, 1.2vw, 19px);
    line-height: 1.65;
}

.dq3-cinematic__viewer-shell {
    position: absolute;
    width: min(48vw, 760px);
    aspect-ratio: 1;
    right: 4vw;
    top: 50%;
    transform:
        translateY(-50%)
        scale(calc(.84 + var(--dq3-progress) * .17));
    z-index: 3;
    transition: filter .3s ease;
}

.dq3-viewer-glow {
    position: absolute;
    inset: 12%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(108,157,245,.24),
            rgba(32,45,65,.12) 47%,
            transparent 72%
        );
    filter: blur(30px);
    opacity: calc(.45 + var(--dq3-progress) * .45);
}

.dq3-live-viewer {
    position: absolute !important;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 32px;
    overflow: hidden;
    pointer-events: none;
    transition:
        box-shadow .5s ease,
        border-color .5s ease,
        background .5s ease;
}

.dq3-experience.is-interactive .dq3-live-viewer {
    pointer-events: auto;
    background: rgba(255,255,255,.025) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.08),
        0 38px 100px rgba(0,0,0,.5);
}

.dq3-live-viewer canvas {
    width: 100% !important;
    height: 100% !important;
}

.dq3-live-viewer .dq-vision-actions,
.dq3-live-viewer .viewer-ar {
    opacity: 0;
    transform: translateY(10px);
    transition: .4s ease;
}

.dq3-experience.is-interactive
.dq3-live-viewer .dq-vision-actions,
.dq3-experience.is-interactive
.dq3-live-viewer .viewer-ar {
    opacity: 1;
    transform: translateY(0);
}

.dq3-viewer-fallback {
    position: absolute;
    inset: 10%;
    display: grid;
    place-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid var(--dq3-line);
    border-radius: 32px;
    background: rgba(255,255,255,.025);
}

.dq3-viewer-fallback span {
    font-size: 72px;
    letter-spacing: -.08em;
}

.dq3-viewer-fallback small {
    color: var(--dq3-muted);
}

.dq3-scroll-meter {
    position: absolute;
    left: 48px;
    bottom: 34px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    letter-spacing: .17em;
    font-weight: 700;
}

.dq3-scroll-meter i {
    display: block;
    width: 92px;
    height: 1px;
    background: rgba(255,255,255,.13);
    overflow: hidden;
}

.dq3-scroll-meter b {
    display: block;
    width: calc(var(--dq3-progress) * 100%);
    height: 100%;
    background: var(--dq3-accent);
}

.dq3-proof,
.dq3-showroom,
.dq3-process,
.dq3-final-cta {
    position: relative;
    padding: 150px 0;
}

.dq3-proof {
    border-top: 1px solid var(--dq3-line);
}

.dq3-proof h2,
.dq3-showroom h2,
.dq3-final-cta h2 {
    margin: 18px 0 70px;
    font-size: clamp(46px, 6vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
    font-weight: 520;
}

.dq3-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.dq3-proof-grid article {
    min-height: 285px;
    padding: 30px;
    border: 1px solid var(--dq3-line);
    border-radius: 24px;
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(255,255,255,.018)
        );
}

.dq3-proof-grid article > span {
    color: var(--dq3-accent);
    font-size: 11px;
    letter-spacing: .15em;
}

.dq3-proof-grid h3 {
    margin: 78px 0 14px;
    font-size: 28px;
    letter-spacing: -.035em;
}

.dq3-proof-grid p {
    margin: 0;
    color: var(--dq3-muted);
    line-height: 1.65;
}

.dq3-showroom {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(116,167,255,.11),
            transparent 28rem
        ),
        var(--dq3-bg-soft);
}

.dq3-showroom__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 80px;
    align-items: end;
}

.dq3-showroom h2 {
    margin-bottom: 0;
}

.dq3-showroom__categories {
    display: grid;
    gap: 0;
}

.dq3-showroom__categories span {
    padding: 17px 0;
    border-bottom: 1px solid var(--dq3-line);
    color: rgba(255,255,255,.76);
    font-size: 18px;
}

.dq3-process-line {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 30px;
    border: 1px solid var(--dq3-line);
    border-radius: 22px;
    background: var(--dq3-card);
    color: rgba(255,255,255,.76);
}

.dq3-process-line i {
    color: rgba(255,255,255,.24);
    font-style: normal;
}

.dq3-process-line strong {
    color: var(--dq3-accent);
}

.dq3-final-cta {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(94,145,235,.16),
            transparent 33rem
        );
}

.dq3-final-cta h2 {
    max-width: 1050px;
    margin-inline: auto;
    margin-bottom: 26px;
}

.dq3-final-cta__text {
    margin: 0 0 38px;
    color: var(--dq3-muted);
    font-size: 18px;
}

.dq3-final-cta__actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dq3-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .12em;
    font-weight: 700;
    transition:
        transform .25s ease,
        background .25s ease,
        border-color .25s ease;
}

.dq3-button:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,.36);
}

.dq3-button--primary {
    background: var(--dq3-text);
    color: #080a0d;
    border-color: var(--dq3-text);
}

@media (max-width: 980px) {
    .dq3-cinematic {
        height: 470vh;
    }

    .dq3-cinematic__sticky {
        min-height: 620px;
    }

    .dq3-cinematic__brand {
        top: 28px;
        left: 24px;
    }

    .dq3-cinematic__copy {
        inset: 70px 24px auto;
        width: calc(100% - 48px);
        height: 42%;
        align-items: center;
    }

    .dq3-story h1,
    .dq3-story h2 {
        font-size: clamp(40px, 10vw, 70px);
        max-width: 720px;
    }

    .dq3-story > p:last-child {
        max-width: 600px;
    }

    .dq3-cinematic__viewer-shell {
        width: min(88vw, 620px);
        right: 50%;
        top: auto;
        bottom: 3vh;
        transform:
            translateX(50%)
            scale(calc(.84 + var(--dq3-progress) * .16));
    }

    .dq3-scroll-meter {
        left: 24px;
        bottom: 22px;
    }

    .dq3-proof-grid {
        grid-template-columns: 1fr;
    }

    .dq3-proof-grid article {
        min-height: 210px;
    }

    .dq3-proof-grid h3 {
        margin-top: 42px;
    }

    .dq3-showroom__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .dq3-process-line {
        align-items: stretch;
        flex-direction: column;
    }

    .dq3-process-line i {
        transform: rotate(90deg);
        transform-origin: left center;
        width: max-content;
    }
}

@media (max-width: 640px) {
    .dq3-wrap {
        width: min(100% - 32px, 1240px);
    }

    .dq3-cinematic__sticky {
        min-height: 580px;
    }

    .dq3-cinematic__copy {
        inset-inline: 16px;
        width: calc(100% - 32px);
    }

    .dq3-story h1,
    .dq3-story h2 {
        font-size: clamp(38px, 12.5vw, 58px);
    }

    .dq3-story > p:last-child {
        font-size: 14px;
        line-height: 1.55;
    }

    .dq3-cinematic__viewer-shell {
        width: 96vw;
        bottom: 1vh;
    }

    .dq3-scroll-meter {
        display: none;
    }

    .dq3-proof,
    .dq3-showroom,
    .dq3-process,
    .dq3-final-cta {
        padding: 92px 0;
    }

    .dq3-proof h2,
    .dq3-showroom h2,
    .dq3-final-cta h2 {
        font-size: 48px;
        margin-bottom: 42px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .dq3-story,
    .dq3-button,
    .dq3-live-viewer .dq-vision-actions,
    .dq3-live-viewer .viewer-ar {
        transition: none !important;
    }
}


/*
 * ==========================================================
 * 3DQ LANDING HARD PIN V1
 * ==========================================================
 */

.dq3-cinematic__sticky {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.dq3-cinematic.is-dq3-pinned
.dq3-cinematic__sticky {
    position: fixed;
    top: var(--dq3-pin-top, 0px);
    left: 0;
    right: 0;
    width: 100%;
    height:
        calc(
            100svh
            -
            var(--dq3-pin-top, 0px)
        );
}

.dq3-cinematic.is-dq3-after-pin
.dq3-cinematic__sticky {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
}


/*
 * ==========================================================
 * 3DQ LANDING VISUAL POLISH V1
 * ==========================================================
 */

.dq3-cinematic {
    background:
        radial-gradient(
            ellipse at 72% 46%,
            rgba(91,137,225,.13),
            transparent 34%
        ),
        radial-gradient(
            ellipse at 50% 100%,
            rgba(39,57,86,.11),
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #030405 0%,
            #070a0e 54%,
            #040609 100%
        );
}

.dq3-cinematic__sticky::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(
            ellipse at center,
            transparent 30%,
            rgba(0,0,0,.18) 72%,
            rgba(0,0,0,.52) 100%
        );
}

.dq3-story {
    filter: blur(14px);
    transform:
        translateY(24px)
        scale(.985);
    transition:
        opacity .72s cubic-bezier(.22,.8,.2,1),
        transform .72s cubic-bezier(.22,.8,.2,1),
        filter .72s cubic-bezier(.22,.8,.2,1);
}

.dq3-story.is-active {
    opacity: 1;
    filter: blur(0);
    transform:
        translateY(0)
        scale(1);
}

.dq3-kicker {
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(182,205,245,.72);
}

.dq3-kicker::before {
    content: "";
    width: 22px;
    height: 1px;
    flex: 0 0 auto;
    background: rgba(155,190,250,.68);
}

.dq3-story h1,
.dq3-story h2 {
    line-height: .93;
    letter-spacing: -.064em;
    font-weight: 500;
    text-wrap: balance;
}

.dq3-story h1 em,
.dq3-story h2 span {
    color: transparent;
    background:
        linear-gradient(
            110deg,
            #ffffff 0%,
            #bad5ff 47%,
            #78a7f5 100%
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dq3-story > p:last-child {
    color: rgba(226,232,242,.61);
    letter-spacing: -.012em;
}


.dq3-viewer-glow {
    inset: 6%;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(132,174,249,.29),
            rgba(70,109,177,.12) 40%,
            rgba(18,28,44,.05) 61%,
            transparent 73%
        );
    filter: blur(42px);
    opacity:
        calc(.52 + var(--dq3-progress) * .34);
}

.dq3-cinematic__viewer-shell::before {
    content: "";
    position: absolute;
    inset: 7%;
    z-index: -1;
    border: 1px solid rgba(172,201,249,.075);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 90px rgba(83,128,209,.07);
}

.dq3-experience.is-interactive
.dq3-live-viewer {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.035),
            rgba(255,255,255,.012)
        ) !important;
    box-shadow:
        0 0 0 1px rgba(255,255,255,.09),
        0 45px 130px rgba(0,0,0,.58);
}

@media (min-width: 981px) {
    .dq3-cinematic__copy {
        inset: 0 auto 0 6.2vw;
        width: min(610px, 42vw);
    }

    .dq3-story h1 {
        font-size:
            clamp(54px, 5.65vw, 98px);
    }

    .dq3-story h2 {
        font-size:
            clamp(50px, 5.15vw, 86px);
    }

    .dq3-cinematic__viewer-shell {
        width: min(54vw, 900px);
        right: -1vw;
        filter:
            drop-shadow(
                0 36px 70px
                rgba(0,0,0,.22)
            );
    }
}

.dq3-proof-grid article {
    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.061),
            rgba(255,255,255,.014)
        );
    box-shadow:
        inset 0 1px 0
        rgba(255,255,255,.025);
    transition:
        transform .35s cubic-bezier(.2,.7,.2,1),
        border-color .35s ease,
        background .35s ease;
}

@media (hover: hover) {
    .dq3-proof-grid article:hover {
        transform: translateY(-5px);
        border-color:
            rgba(164,194,245,.20);
        background:
            linear-gradient(
                145deg,
                rgba(255,255,255,.078),
                rgba(255,255,255,.018)
            );
    }
}

.dq3-showroom__categories span {
    transition:
        padding-left .28s ease,
        color .28s ease,
        border-color .28s ease;
}

@media (hover: hover) {
    .dq3-showroom__categories span:hover {
        padding-left: 12px;
        color: #fff;
        border-color:
            rgba(155,190,248,.22);
    }
}


.dq3-final-cta {
    min-height: 90vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(104,151,235,.19),
            rgba(44,68,106,.07) 30%,
            transparent 58%
        ),
        linear-gradient(
            180deg,
            rgba(5,7,10,1),
            rgba(3,4,6,1)
        );
}

.dq3-final-cta::before {
    content: "";
    position: absolute;
    width: min(72vw, 950px);
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
    box-shadow:
        0 0 140px rgba(91,138,224,.08);
}

.dq3-final-cta .dq3-wrap {
    position: relative;
    z-index: 1;
}

.dq3-final-cta h2 {
    max-width: 1120px;
    letter-spacing: -.065em;
    text-wrap: balance;
}

.dq3-final-cta h2 span {
    color: transparent;
    background:
        linear-gradient(
            110deg,
            #fff,
            #b8d4ff 52%,
            #7aa8f4
        );
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dq3-final-cta__text {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(226,232,242,.62);
    line-height: 1.65;
}

.dq3-button {
    min-height: 58px;
    padding: 0 31px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.dq3-button--primary {
    box-shadow:
        0 10px 34px
        rgba(255,255,255,.10);
}

@media (max-width: 980px) {
    .dq3-story h1,
    .dq3-story h2 {
        font-size:
            clamp(40px, 9.8vw, 68px);
        line-height: .94;
    }

    .dq3-cinematic__viewer-shell {
        width: min(91vw, 650px);
    }
}

@media (max-width: 640px) {
    .dq3-story h1,
    .dq3-story h2 {
        font-size:
            clamp(37px, 11.8vw, 56px);
    }

    .dq3-story {
        transform:
            translateY(18px)
            scale(.99);
    }

    .dq3-story.is-active {
        transform:
            translateY(0)
            scale(1);
    }

    .dq3-final-cta {
        min-height: 78vh;
    }
}


/*
 * ==========================================================
 * 3DQ CINEMATIC MODEL FX V1
 * ==========================================================
 */

.dq3-cinematic__viewer-shell {
    isolation: isolate;
}

.dq3-viewer-glow {
    inset: -8%;
    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(145,185,255,.52) 0%,
            rgba(82,132,222,.26) 28%,
            rgba(36,60,101,.10) 48%,
            transparent 70%
        );
    filter: blur(66px);
    opacity:
        calc(.76 + var(--dq3-progress) * .18);
    transform:
        scale(
            calc(.96 + var(--dq3-progress) * .10)
        );
}

.dq3-cinematic__viewer-shell::before {
    inset: 4%;
    border:
        1px solid rgba(164,199,255,.18);
    box-shadow:
        0 0 72px rgba(91,147,240,.18),
        inset 0 0 68px rgba(91,147,240,.07);
    opacity:
        calc(.50 + var(--dq3-progress) * .35);
}

.dq3-cinematic__viewer-shell::after {
    content: "";
    position: absolute;
    inset: 1%;
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;

    background:
        conic-gradient(
            from 20deg,
            transparent 0 12%,
            rgba(168,202,255,.60) 17%,
            transparent 23% 55%,
            rgba(104,158,247,.42) 61%,
            transparent 68% 100%
        );

    -webkit-mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 3px),
            #000 0
        );

    mask:
        radial-gradient(
            farthest-side,
            transparent calc(100% - 3px),
            #000 0
        );

    opacity:
        calc(.40 + var(--dq3-progress) * .45);

    transform:
        rotate(
            calc(var(--dq3-progress) * 300deg)
        )
        scale(
            calc(.96 + var(--dq3-progress) * .05)
        );
}


/*
 * 3DQ CINEMATIC SCENE LIGHTING V1
 */

.dq3-viewer-glow {
    opacity:
        var(--dq3-scene-glow, .78);
}

.dq3-cinematic__viewer-shell::before,
.dq3-cinematic__viewer-shell::after {
    opacity:
        var(--dq3-scene-ring, .55);
}


/*
 * ==========================================================
 * 3DQ MOBILE TABLET POLISH V1
 * ==========================================================
 */

@media (min-width: 641px) and (max-width: 980px) {

    .dq3-cinematic {
        height: 480vh;
    }

    .dq3-cinematic__copy {
        inset: 82px 5vw auto;
        width: 90vw;
        height: 38%;
    }

    .dq3-story h1,
    .dq3-story h2 {
        max-width: 680px;
        font-size: clamp(42px, 7.6vw, 68px);
        line-height: .94;
    }

    .dq3-story > p:last-child {
        max-width: 520px;
        font-size: 16px;
    }

    .dq3-cinematic__viewer-shell {
        width: min(76vw, 610px);
        bottom: 2vh;
    }

    .dq3-viewer-glow {
        inset: -3%;
        filter: blur(54px);
    }
}


@media (max-width: 640px) {

    .dq3-cinematic {
        height: 500vh;
    }

    .dq3-cinematic__brand {
        top: 20px;
        left: 18px;
    }

    .dq3-cinematic__copy {
        inset: 58px 18px auto;
        width: calc(100% - 36px);
        height: 40%;
        align-items: flex-start;
        padding-top: 5vh;
    }

    .dq3-story h1,
    .dq3-story h2 {
        max-width: 94vw;
        margin: 10px 0 14px;
        font-size: clamp(34px, 10.6vw, 50px);
        line-height: .95;
        letter-spacing: -.055em;
    }

    .dq3-story > p:last-child {
        width: min(88vw, 430px);
        font-size: 13.5px;
        line-height: 1.5;
    }

    .dq3-kicker {
        font-size: 9px;
        letter-spacing: .16em;
    }

    .dq3-cinematic__viewer-shell {
        width: min(90vw, 470px);
        bottom: 3vh;
    }

    .dq3-viewer-glow {
        inset: 1%;
        filter: blur(42px);
    }

    .dq3-cinematic__viewer-shell::before,
    .dq3-cinematic__viewer-shell::after {
        transform-origin: center;
    }
}


@media (max-width: 640px) {

    .dq3-final-cta {
        min-height: auto;
        padding: 105px 0;
    }

    .dq3-final-cta h2 {
        font-size: clamp(40px, 12vw, 54px);
        margin-bottom: 22px;
    }

    .dq3-final-cta__text {
        max-width: 88vw;
        margin-bottom: 30px;
        font-size: 15px;
    }

    .dq3-final-cta__actions {
        width: 100%;
        gap: 10px;
    }

    .dq3-button {
        width: min(100%, 330px);
        min-height: 56px;
    }

    .dq3-experience.is-interactive
    .dq3-live-viewer {
        touch-action: none;
    }
}


/*
 * ==========================================================
 * 3DQ MOBILE MATERIAL BOTTOM SHEET V1
 * ==========================================================
 */

@media (max-width: 768px) {

    .dq3-experience
    .dq-material-controller:not(.dq3-material-sheet) {
        visibility: hidden;
    }

    .dq3-experience
    .dq-material-controller.dq3-material-sheet {
        position: absolute !important;
        left: 12px !important;
        right: 12px !important;
        bottom:
            calc(
                12px +
                env(safe-area-inset-bottom)
            ) !important;

        z-index: 80;

        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;

        margin: 0 !important;
        padding: 0 14px !important;

        max-height: 58px;
        overflow: hidden;

        box-sizing: border-box;

        background:
            rgba(12,14,18,.94);

        border:
            1px solid
            rgba(255,255,255,.13);

        border-radius: 18px;

        backdrop-filter:
            blur(24px)
            saturate(130%);

        -webkit-backdrop-filter:
            blur(24px)
            saturate(130%);

        box-shadow:
            0 22px 60px
            rgba(0,0,0,.48);

        transition:
            max-height .42s
                cubic-bezier(.2,.8,.2,1),
            opacity .3s ease,
            transform .3s ease;
    }


    .dq3-experience
    .dq3-material-sheet.is-open {
        max-height:
            min(42svh, 420px);

        overflow-x: hidden;
        overflow-y: auto;

        padding-bottom:
            14px !important;
    }

    .dq3-material-sheet
    > .dq-material-title {
        display: none;
    }

    .dq3-material-sheet__toggle {
        position: sticky;
        top: 0;
        z-index: 4;

        width:
            calc(100% + 28px);
        height: 58px;

        margin: 0 -14px;
        padding: 0 15px;

        display: flex;
        align-items: center;

        gap: 10px;

        border: 0;
        border-bottom:
            1px solid
            rgba(255,255,255,.07);

        background:
            rgba(12,14,18,.96);

        color: #fff;

        font: inherit;
        cursor: pointer;

        touch-action: manipulation;
    }

    .dq3-material-sheet__toggle
    > span:first-child {
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .22em;
    }

    .dq3-material-sheet__action {
        margin-left: auto;

        color:
            rgba(190,211,249,.72);

        font-size: 11px;
    }

    .dq3-material-sheet__arrow {
        color:
            rgba(255,255,255,.58);

        transition:
            transform .3s ease;
    }

    .dq3-material-sheet.is-open
    .dq3-material-sheet__arrow {
        transform: rotate(180deg);
    }


    .dq3-material-sheet
    .dq-material-group {
        margin-top: 13px;
    }

    .dq3-material-sheet
    .dq-material-group:first-of-type {
        margin-top: 14px;
    }

    .dq3-experience:not(.is-interactive)
    .dq3-material-sheet {
        opacity: 0;
        pointer-events: none;
        transform: translateY(18px);
    }

    .dq3-experience.is-interactive
    .dq3-material-sheet {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}


/*
 * 3DQ MOBILE HERO SPACING V1
 */

@media (max-width: 640px) {

    .dq3-cinematic__viewer-shell {
        bottom: 12vh;
        width: min(88vw, 460px);
    }
}

@media (max-width: 640px) and (max-height: 700px) {

    .dq3-cinematic__viewer-shell {
        bottom: 9vh;
        width: min(84vw, 430px);
    }
}


/*
 * ==========================================================
 * 3DQ MOBILE CINEMATIC HEADER V1
 * ==========================================================
 */

@media (max-width: 768px) {

    body.dq3-cinematic-header-hidden
    .site-header {
        opacity: 0;
        transform: translateY(-110%);
        pointer-events: none;
    }

    body:not(.dq3-cinematic-header-hidden)
    .site-header {
        transform: translateY(0);
    }
}


/*
 * 3DQ CINEMATIC LOADING V1
 */

.dq3-experience
.dq3-live-viewer
.viewer-loading {
    flex-direction: column;
    gap: 14px;

    color: rgba(211,226,250,.72);

    background:
        radial-gradient(
            circle at 50% 48%,
            rgba(91,142,232,.15),
            transparent 40%
        ),
        rgba(4,6,9,.96);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    font-size: 11px;
    font-weight: 600;
    letter-spacing: .20em;
}


.dq3-experience
.dq3-live-viewer
.viewer-loading::before {
    content: "";
    width: 34px;
    height: 34px;

    border-radius: 50%;

    border:
        1px solid
        rgba(160,196,255,.14);

    border-top-color:
        rgba(175,207,255,.88);

    box-shadow:
        0 0 28px
        rgba(91,147,240,.16);

    animation:
        dq3-loading-spin
        1s linear infinite;
}

@keyframes dq3-loading-spin {
    to {
        transform: rotate(360deg);
    }
}


/*
 * 3DQ CINEMATIC PARTICLES V1
 */

.dq3-cinematic-particles {
    position: absolute;
    inset: -7%;
    z-index: 0;
    pointer-events: none;
    overflow: visible;
}

.dq3-cinematic-particles span {
    position: absolute;

    left: var(--x);
    top: var(--y);

    width: var(--size);
    height: var(--size);

    border-radius: 50%;

    background:
        rgba(190,215,255,var(--alpha));

    box-shadow:
        0 0 8px
        rgba(120,170,255,.68),
        0 0 20px
        rgba(80,135,235,.32);

    opacity: .40;

    animation:
        dq3-particle-float
        var(--duration)
        ease-in-out
        var(--delay)
        infinite alternate;
}

.dq3-cinematic-particles span:nth-child(3n) {
    filter: blur(.35px);
}

.dq3-cinematic-particles span:nth-child(4n) {
    box-shadow:
        0 0 12px rgba(205,225,255,.82),
        0 0 30px rgba(92,150,245,.34);
}

@keyframes dq3-particle-float {
    0% {
        transform:
            translate3d(-2px,8px,0)
            scale(.75);
        opacity: .25;
    }

    50% {
        opacity: .88;
    }

    100% {
        transform:
            translate3d(8px,-15px,0)
            scale(1.18);
        opacity: .43;
    }
}

@media (max-width: 768px) {
    .dq3-cinematic-particles {
        inset: 0;
    }

    .dq3-cinematic-particles span:nth-child(n+11) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dq3-cinematic-particles span {
        animation: none;
        opacity: .28;
    }
}



/*
 * 3DQ CINEMATIC FX V2
 * Premium atmospheric enhancement.
 */

.dq3-cinematic-particles {
    inset: -12%;
    opacity: .94;
    filter:
        saturate(1.18)
        brightness(1.08);
}

.dq3-cinematic-particles::before {
    content: "";
    position: absolute;

    left: 3%;
    right: 3%;
    top: 48%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(95,145,235,.08) 25%,
            rgba(210,228,255,.56) 50%,
            rgba(214,172,75,.20) 61%,
            transparent 100%
        );

    filter:
        blur(.4px)
        drop-shadow(
            0 0 22px
            rgba(110,165,255,.34)
        );

    opacity: .46;

    transform:
        rotate(-11deg)
        scaleX(.82);

    animation:
        dq3-cinematic-light-streak
        6.5s ease-in-out infinite;
}

.dq3-cinematic-particles::after {
    content: "";
    position: absolute;
    inset: 7%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 60% 46%,
            rgba(214,172,75,.13),
            transparent 17%
        ),
        radial-gradient(
            circle at 46% 52%,
            rgba(91,150,255,.18),
            transparent 43%
        );

    filter: blur(20px);
    mix-blend-mode: screen;
    opacity: .78;

    animation:
        dq3-cinematic-flare
        5.8s ease-in-out infinite alternate;
}

.dq3-cinematic-particles span {
    box-shadow:
        0 0 10px rgba(175,207,255,.78),
        0 0 28px rgba(82,145,255,.38);
}

.dq3-cinematic-particles span:nth-child(4n) {
    box-shadow:
        0 0 12px rgba(235,242,255,.95),
        0 0 34px rgba(107,164,255,.50),
        0 0 58px rgba(214,172,75,.15);
}

.dq3-cinematic__viewer-shell::before,
.dq3-cinematic__viewer-shell::after {
    filter:
        drop-shadow(
            0 0 20px
            rgba(106,160,255,.20)
        );
}

.dq3-live-viewer canvas {
    filter:
        contrast(1.05)
        saturate(1.07);
}

@keyframes dq3-cinematic-light-streak {
    0% {
        opacity: .18;
        transform:
            translateX(-8%)
            rotate(-11deg)
            scaleX(.72);
    }

    50% {
        opacity: .72;
    }

    100% {
        opacity: .20;
        transform:
            translateX(8%)
            rotate(-11deg)
            scaleX(.92);
    }
}

@keyframes dq3-cinematic-flare {
    from {
        opacity: .48;
        transform: scale(.94);
    }

    to {
        opacity: .88;
        transform: scale(1.08);
    }
}

@media (max-width: 768px) {
    .dq3-cinematic-particles {
        inset: -4%;
    }

    .dq3-cinematic-particles::before {
        opacity: .34;
    }

    .dq3-cinematic-particles::after {
        opacity: .58;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dq3-cinematic-particles::before,
    .dq3-cinematic-particles::after {
        animation: none;
    }
}

/*
 * 3DQ DESKTOP MATERIAL DOCK V1
 * Landing-only compact material controller.
 */

@media (min-width: 769px) {

    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller {
        position: absolute !important;
        top: auto !important;
        left: auto !important;
        right: 16px !important;
        bottom: 18px !important;

        width: 184px !important;
        max-height: 46px;

        padding: 0 16px !important;
        margin: 0 !important;

        overflow: hidden;

        border: 1px solid rgba(255,255,255,.10);
        border-radius: 16px;

        background: rgba(8,10,14,.58);

        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);

        box-shadow:
            0 14px 45px rgba(0,0,0,.26),
            inset 0 1px 0 rgba(255,255,255,.06);

        z-index: 40;

        transition:
            width .34s ease,
            max-height .42s ease,
            padding .34s ease,
            background .34s ease,
            box-shadow .34s ease;
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:hover,
    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:focus-within {
        width: 300px !important;
        max-height: 390px;

        padding:
            0 18px
            18px !important;

        overflow-y: auto;

        background: rgba(7,9,13,.88);

        box-shadow:
            0 22px 70px rgba(0,0,0,.40),
            0 0 45px rgba(82,132,220,.10),
            inset 0 1px 0 rgba(255,255,255,.08);
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-title {
        position: sticky;
        top: 0;

        min-height: 46px;

        display: flex;
        align-items: center;

        margin: 0 !important;

        color: rgba(235,241,250,.78);

        font-size: 10px;
        font-weight: 650;
        letter-spacing: .20em;

        background: inherit;

        cursor: default;
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-title::after {
        content: "＋";

        margin-left: auto;

        font-size: 15px;
        font-weight: 300;
        letter-spacing: 0;

        color: rgba(177,205,250,.65);

        transition: transform .3s ease;
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:hover
    .dq-material-title::after,
    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:focus-within
    .dq-material-title::after {
        transform: rotate(45deg);
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller
    > *:not(.dq-material-title) {
        opacity: 0;
        transform: translateY(8px);
        pointer-events: none;

        transition:
            opacity .22s ease,
            transform .3s ease;
    }

    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:hover
    > *:not(.dq-material-title),
    .dq3-experience
    .dq3-live-viewer
    .dq-material-controller:focus-within
    > *:not(.dq-material-title) {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;

        transition-delay: .08s;
    }
}


/*
 * ==========================================================
 * 3DQ CINEMATIC FX V3
 * Layered particles / gold-blue flare / premium depth.
 * ==========================================================
 */

.dq3-cinematic-particles {
    z-index: 0;
    inset: -14%;
    opacity: 1;

    filter:
        saturate(1.28)
        brightness(1.12);
}

.dq3-viewer-glow {
    z-index: 1;

    background:
        radial-gradient(
            circle at 62% 42%,
            rgba(214,172,75,.24),
            transparent 20%
        ),
        radial-gradient(
            circle at 48% 50%,
            rgba(102,158,255,.48),
            rgba(48,82,145,.22) 36%,
            transparent 68%
        );

    filter:
        blur(56px)
        saturate(1.18);
}

.dq3-live-viewer {
    z-index: 2;
}

.dq3-live-viewer canvas {
    filter:
        contrast(1.08)
        saturate(1.09)
        brightness(1.025);
}

.dq3-cinematic-particles span {
    opacity: .64;

    mix-blend-mode: screen;

    box-shadow:
        0 0 10px rgba(220,234,255,.98),
        0 0 26px rgba(104,163,255,.68),
        0 0 48px rgba(73,126,230,.28);

    animation-name:
        dq3-particle-float-v3;

    animation-duration:
        var(--duration);

    animation-timing-function:
        ease-in-out;

    animation-delay:
        var(--delay);

    animation-iteration-count:
        infinite;

    animation-direction:
        alternate;
}

.dq3-cinematic-particles span:nth-child(3n) {
    transform: scale(1.35);
}

.dq3-cinematic-particles span:nth-child(4n) {
    background:
        rgba(235,242,255,.95);

    box-shadow:
        0 0 14px rgba(235,242,255,.95),
        0 0 34px rgba(108,166,255,.78),
        0 0 62px rgba(214,172,75,.32);
}

.dq3-cinematic-particles span:nth-child(4n)::after {
    content: "";

    position: absolute;
    left: 50%;
    top: 50%;

    width: 14px;
    height: 14px;

    transform:
        translate(-50%,-50%);

    background:
        linear-gradient(
            90deg,
            transparent 46%,
            rgba(235,244,255,.70) 50%,
            transparent 54%
        ),
        linear-gradient(
            0deg,
            transparent 46%,
            rgba(235,244,255,.62) 50%,
            transparent 54%
        );

    filter: blur(.15px);
}

.dq3-cinematic-particles::before {
    opacity: .82;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(90,145,245,.10) 22%,
            rgba(220,237,255,.88) 48%,
            rgba(226,187,92,.44) 58%,
            transparent 100%
        );

    filter:
        blur(.35px)
        drop-shadow(
            0 0 30px
            rgba(112,170,255,.64)
        );
}

.dq3-cinematic-particles::after {
    opacity: 1;

    background:
        radial-gradient(
            circle at 62% 44%,
            rgba(226,185,82,.27),
            transparent 16%
        ),
        radial-gradient(
            circle at 47% 52%,
            rgba(90,151,255,.34),
            transparent 42%
        );
}

.dq3-cinematic__viewer-shell {
    filter:
        drop-shadow(
            0 22px 44px
            rgba(0,0,0,.25)
        );
}

@keyframes dq3-particle-float-v3 {

    0% {
        transform:
            translate3d(-5px,10px,0)
            scale(.72);

        opacity: .18;
    }

    45% {
        opacity: .82;
    }

    100% {
        transform:
            translate3d(12px,-22px,0)
            scale(1.24);

        opacity: .38;
    }
}

@media (max-width: 768px) {

    .dq3-cinematic-particles {
        inset: -6%;
    }

    .dq3-cinematic-particles
    span:nth-child(n+9) {
        display: none;
    }

    .dq3-cinematic-particles::before {
        opacity: .38;
    }

    .dq3-cinematic-particles::after {
        opacity: .64;
    }
}

@media (prefers-reduced-motion: reduce) {

    .dq3-cinematic-particles span {
        animation: none;
    }
}


/*
 * 3DQ CINEMATIC INPUT LOCK V1
 */

.dq3-experience.is-dq3-controls-locked
.dq3-live-viewer canvas {
    touch-action: pan-y !important;
    overscroll-behavior: auto;
    cursor: default;
}

