/* https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight */

/* orbitron */

@font-face {
    font-family: orbitron;
    font-weight: 400;
    font-style: normal;
    src: url('./Orbitron-Regular-LYgsHXim.ttf') format('truetype');
}

@font-face {
    font-family: orbitron;
    font-weight: 600;
    font-style: normal;
    src: url('./Orbitron-SemiBold--HHdHPjH.ttf') format('truetype');
}

@font-face {
    font-family: orbitron;
    font-weight: 700;
    font-style: normal;
    src: url('./Orbitron-Bold-xdObfDrp.ttf') format('truetype');
}

/* fraktion mono */

@font-face {
    font-family: fraktion;
    font-weight: 300;
    font-style: normal;
    src: url('./PPFraktionMono-Light-ugwni9Kb.otf') format('opentype');
}

@font-face {
    font-family: fraktion;
    font-weight: 300;
    font-style: italic;
    src: url('./PPFraktionMono-LightItalic-KRF39s4b.otf') format('opentype');
}

@font-face {
    font-family: fraktion;
    font-weight: 400;
    font-style: normal;
    src: url('./PPFraktionMono-Regular-htur_zvg.otf') format('opentype');
}

@font-face {
    font-family: fraktion;
    font-weight: 400;
    font-style: italic;
    src: url('./PPFraktionMono-RegularItalic-RIV-bXrE.otf') format('opentype');
}

@font-face {
    font-family: fraktion;
    font-weight: 700;
    font-style: normal;
    src: url('./PPFraktionMono-Bold-4QVw_K3n.otf') format('opentype');
}

@font-face {
    font-family: fraktion;
    font-weight: 700;
    font-style: italic;
    src: url('./PPFraktionMono-BoldItalic-2yiJ_ArF.otf') format('opentype');
}

:root {
    font-family: system-ui, sans-serif;
    font-weight: 400;

    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    --item-box-size: 200px;
}

html, body {
    margin: 0;
    background: black;
}

#app {
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    top: 0; left: 0;
}

#app.splash {
        pointer-events: none;
    }

#app.planet {
        position: absolute;
        width: 100%; height: 100%;
        overflow: hidden;
    }

canvas.gl {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    touch-action: none;
}

.loading-page {
    display: grid;
    place-items: center;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
}

.loading-page button {
        background: transparent;
        border: 1px solid white;
        font: 700 1rem orbitron;
        color: white;
        padding: .5rem;
        height: 3rem;
        text-transform: uppercase;
        width: 80%;
    }

.loading-progress {
    width: 80%;
    height: 3rem;
    position: relative;
    border: 1px solid white;
}

.loading-progress .bar {
        position: absolute;
        width: 100%;
        height: 100%;
        background: grey;
        transition: width ease-out 100ms;
    }

.loading-progress label {
        position: absolute;
        width: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        color: white;
        font: 700 1rem orbitron;
        text-transform: uppercase;
    }

.console {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0 0 0 / .5);
    color: #0f0;
    font: 400 10px fraktion;
    white-space: pre;
    line-height: 1.0;
    pointer-events: none;
    text-wrap: wrap;
    word-break: break-all;
}
.splash-background {
    position: absolute;
    width: 100%;
    height: 350vh;
    background:
        bottom/contain no-repeat url("../images/splash-planet.webp"),
        linear-gradient(black 30%, #00396A 40%, #0067B2 50%, #008BB9 55%, #00B3BA 65%);
    overflow: hidden;
}

.square {
    --size: 10vw;
    position: fixed;
    top: 1em;
    left: 1em;
    width: var(--size);
    height: var(--size);
    background: white;
    box-shadow: 0 2px 4px rgba(0 0 0 / .5);
    animation: rrr linear;
    animation-timeline: scroll(root block);
}

@keyframes rrr {
    from {
        rotate: 0deg;
        opacity: 1;
    }
    to {
        rotate: 360deg;
        opacity: 0;
    }
}

.gauge-wrapper {
    position: fixed;
    top: 0;
    left: 2vw;
    height: 100lvh;
    display: grid;
    place-items: center;
    mix-blend-mode: screen;
}

.gauge {
    position: relative;
    /* width: 35px; height: 426px; */
    width: 24px; height: 284px;
    /* background: red; */
    background: center/contain no-repeat url("../images/splash-gauge.png");
}

.gauge-mark {
    position: absolute;
    /* width: 35px; */
    width: 24px;
    height: 2px;
    background: white;
    /* animation: gauge-mark linear; */
    /* animation-timeline: scroll(root block); */
}

@keyframes gauge-mark {
    from {
        top: 0%;
    }
    to {
        top: 100%;
    }
}

.splash-logo {
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 60vw;
    /* animation: splash-logo linear; */
    /* animation-timeline: scroll(root block); */
}

.splash-driver-select {
    position: fixed;
    right: 2vw;
    top: 4vh;
    height: 12vh;
    mix-blend-mode: screen;
}

@keyframes splash-logo {
    0% {
        top: 50%;
        left: 50%;
        width: 60vw;
    }
    20% {
        top: 5%;
        left: 50%;
        width: 40vw;
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.progress-indicator {
    position: fixed;
    top: 0;
    right: 0;
    font: 400 12px monospace;
    background: black;
    padding: 2px;
    color: #0ff;
}

.splash-copy-wrapper {
    position: fixed;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
}

.splash-copy {
    position: fixed;
    top: 0;
    color: white;
    /* visibility: hidden; */
    font: 700 1.5rem fraktion;
    text-transform: uppercase;
    line-height: 1.0625;
    letter-spacing: .09rem;
    /* background: blue; */
    bottom: 0;
    transform: translateY(100vh);
    width: 70%;
}

.splash-copy-small {
    font: 300 .875rem fraktion;
    line-height: normal;
    letter-spacing: -.005rem;
    text-transform: none;
    padding-top: 1.5rem;
}

.splash-copy-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    /* background: linear-gradient(black, transparent); */
}

#splash-copy-2 {
    text-align: right;
}

#splash-copy-4 {
    text-align: right;
}

.gl {
    position: fixed;
    top: 0;
    left: 0;
}

.splash-links {
    font: 500 10px fraktion;
    transform: rotate(-90deg);
    transform-origin: top right;
    right: 25px;
    bottom: 27vh;
    position: fixed;
}

.splash-links a {
        color: #fff;
        text-decoration: none;
        pointer-events: auto;
    }

.splash-arrow-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1rem;
    pointer-events: none;
}

.splash-arrow-canvas {
    width: 8vw;
    height: 20vw;
}

.splash-arrow-cta {
    color: white;
    font: 400 1rem orbitron;
    text-transform: uppercase;
}

.splash-button-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-flow: row;
    justify-content: center;
}

.splash-button-ready {
    position: fixed;
    bottom: 0;
    width: 80%;
    margin-bottom: 2rem;
    background: rgba(0 0 0 / .5);
    border: 1px solid white;
    font: 700 1rem orbitron;
    color: white;
    text-transform: uppercase;
    padding: .5rem;
    pointer-events: auto;
}

.splash-button-ready:active {
    background: white;
    color: black;
}

.splash-cookie-box {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    background: black;
    box-sizing: border-box;
    color: white;

    transition: transform 200ms ease-in;
}

.splash-cookie-box .content {
        padding: 0 2rem;
        display: flex;
        flex-flow: column;
    }

.splash-cookie-box .gradient {
        height: 3px;
        width: 200%;
        background: linear-gradient(
           to right,
           #00447b,
           #00bfbb,
           #00447b
           );
        animation: gradient 3s infinite alternate ease-in-out;
    }

.splash-cookie-box p {
        font: 400 .75rem fraktion;
    }

.splash-cookie-box p em {
            all: unset;
            font-weight: 700;
        }

.splash-cookie-box .buttons {
        display: flex;
        flex-flow: row;
        width: 100%;
        gap: 2ch;
        margin-top: .5rem;
        margin-bottom: 2rem;
    }

.splash-cookie-box .buttons button {
            flex: 1;
            background: transparent;
            border: 1px solid white;
            font: 700 .9rem fraktion;
            color: white;
            padding: .5rem;
            text-transform: uppercase;
            pointer-events: auto;
        }

.splash-cookie-box.hidden {
        pointer-events: none;
        transform: translateY(100%);
    }

.splash-cookie-fade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0 0 0 / .5);
    pointer-events: auto;

    transition: opacity 200ms linear;
}

.splash-cookie-fade.hidden {
        pointer-events: none;
        opacity: 0;
    }

@keyframes gradient {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0%);
    }
}
canvas.intro {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    touch-action: none;
    pointer-events: none;
}

.intro-text {
    touch-action: none;
    pointer-events: none;
    position: fixed;
    background: rgba(255 255 255 / .1);
    background: rgba(0 0 0 / .2);
    box-shadow: 0 0 30px rgba(0 0 0 / .3);
    border: 1px solid #0088ff22 ;

    color: white;
    text-transform: uppercase;

    box-sizing: border-box;
    padding-left: 1rem;

    display: flex;
    flex-flow: column;
    justify-content: center;

    opacity: 0;
    overflow: hidden;
}

.intro-text-small {
    font: 400 .9rem orbitron;
    text-shadow: 0 2px 3px rgba(0 0 0 / .75);
}

.intro-text-main {
    margin-top: 1rem;
    font: 700 2rem orbitron;
    text-shadow: 0 2px 8px rgba(0 0 0 / .9);
    white-space: pre;
}

.intro-video {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.intro-canvas {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    touch-action: none;
    pointer-events: none;
}

@media (max-width: 380px) and (orientation: portrait) {
    .intro-text-small {
        font-size: .8rem;
    }
    .intro-text-main {
        font-size: 1.7rem;
    }
}
.cross-box {
    position: absolute;
    inset: 0;
    /* height: 100%; */
    box-sizing: border-box;
    color: white;
    /* top: 0; left: 0; right: 0; bottom: 0; */
    /* width: 100%; */

    /* .box-cross::before { content: '✛'; } */
}

.cross-box .box-cross {
        position: absolute;
        width: 12px;
        height: 12px;
    }

.cross-box .box-cross-tl {
        top: -7px;
        left: -5px;
    }

.cross-box .box-cross-tr {
        top: -7px;
        right: -5px;
    }

.cross-box .box-cross-bl {
        bottom: -5px;
        left: -5px;
    }

.cross-box .box-cross-br {
        bottom: -5px;
        right: -6px;
    }

.item {
    --sz: 1vw;

    font: 400 20px orbitron;
    text-transform: uppercase;
    /* text-shadow: 0 2px 2px black; */
    color: white;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;

    width: var(--sz);
    height: var(--sz);
    display: grid;
    place-items: center;
    border: 2px solid white;
    background: rgba(0 128 255 / .25);
}

.item.active {
        color: yellow;
        font-weight: 700;
    }

.status {
    position: absolute;
    top: 0;
    right: 0;
    font: bold system-ui;
    color: cyan;
    background: black;
}

.compass {
    position: absolute;
    left: 0;
    bottom: 15px;
    width: 100%;
    height: 50px;
    pointer-events: none;
    /* background-color: red; */
}

.reticle {
    --size: 30vmin;
    position: absolute;
    top: 0;
    left: 0;
    width: var(--size);
    height: var(--size);
    /* background: purple; */
    transform:
        translate(50vw, 50dvh)
        translate(-50%, -50%)
        ;
    mix-blend-mode: screen;
    /* filter: blur(3px); */
    pointer-events: none;
}

.css3d {
    position: absolute;
    top: 0; left: 0;
    overflow: hidden;
    pointer-events: none;
}

.cssItem {
    pointer-events: none;
}

.item-box {
    position: absolute;
    box-sizing: border-box;
    --sz: 200px;
    width: var(--sz);
    height: var(--sz);
    transform: translate(-50%, -50%);
    background: rgba(0 60 128 / .5);
    background: rgba(0 130 255 / .5);
    border: 1px solid rgba(255 255 255 / .25);

    /* display: grid; */
    /* place-items: center; */
}

.item-box.item-box-video {
        border: none;
        width: auto;
        aspect-ratio: 1/1;
        transition: 200ms aspect-ratio 250ms ease-out;
        pointer-events: none;
    }

.item-box.item-box-video.hover {
            aspect-ratio: 16/9;
            pointer-events: auto;
        }

.item-box.item-box-video video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
               object-fit: cover;
        }

.item-box-content {
    box-sizing: border-box;
    height: 100%;
    padding: 1rem;

    font: 700 1rem fraktion;
    color: white;
    text-transform: uppercase;
    /* justify-content: flex-start; */

    font: 700 1rem orbitron;
    text-transform: uppercase;

    /* display: flex; */
    /* flex-flow: column; */

    /* text-shadow: 0 0 8px rgba(255 255 255 / .5); */
}

.item-box-content h4 {
        all: unset;
        display: block;
        font: 700 1rem fraktion;
        text-shadow: 0 0 8px rgba(255 255 255 / .5);
        color: white;
    }

.item-box-content.item-quiz {
        background: 
            bottom/70% url("../images/quiz-drivers.webp") no-repeat,
            linear-gradient(
                rgba(70 144 242 / .60),
                rgba(70 144 242 / .10));
    }

.item-box-content.item-video {
        position: absolute;
        width: 100%;
        height: 100%;
        /* background: center/cover url( "/videos/darkspeed-30.webp" ); */
    }

.item-box-content.item-video .item-video-cta {
            transition: opacity 300ms linear;
        }

.item-box-content.item-video .item-video-cta.hidden {
                opacity: 0;
            }

/* background: center/cover url( "/images/darkspeed-video-bg.webp" ); */

.item-box-content.item-video .video-play-icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            transform: scale(.5);
            filter: drop-shadow(0 4px 8px black);
            transition:
                500ms opacity 300ms linear,
                500ms scale 200ms ease;
        }

.item-box-content.item-video .video-play-icon.hidden {
                opacity: 0;
                scale: 0;
            }

.item-box-content.item-hybrid {
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        background: 
            100% 0/55% url("../images/hybrid-hero-2x.png") no-repeat,
            linear-gradient(
                rgba(70 144 242 / .60),
                rgba(70 144 242 / .10));
            ;
    }

.item-box-trio {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-flow: column;
    color: white;
    pointer-events: none;
}

.item-box-trio .upper, .item-box-trio .center, .item-box-trio .lower {
        /* position: relative; */
        box-sizing: border-box;
        width: var(--item-box-size);
        height: var(--item-box-size);
        transition: height 500ms ease;
        overflow: hidden;
    }

.item-box-trio .upper {
        font: 400 .750rem fraktion;
        line-height: 1.25;
        background: linear-gradient(
                    rgba(70 144 242 / .20),
                    rgba(70 144 242 / .30));
    }

.item-box-trio.hidden .upper, .item-box-trio.hidden .lower {
            height: 0;
        }

.item-box-trio .content {
        padding: 1rem;
    }

.item-box-trio .center {
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        background: rgba(0 130 255 / .5);
        font: 700 1rem orbitron;
        text-transform: uppercase;
        text-shadow: 0 0 8px rgba(255 255 255 / .5);
    }

.item-box-trio .center h4 {
            all: unset;
            display: block;
            font: 700 1rem fraktion;
            color: white;
        }

.item-box-trio .lower {
        background: rgba(0 130 255 / .9);
    }

.item-box-trio.item-hybrid .center {
            background: 
                90% bottom/50% url("../images/hybrid-hero-2x.png") no-repeat,
                linear-gradient(
                    rgba(70 144 242 / .80),
                    rgba(70 144 242 / .10));
        }

.item-box-trio.item-hybrid .lower {
            background: 
                10% 0%/50% url("../images/hybrid-toe-2x.png") no-repeat,
                95% 100%/35% url("../images/hybrid-address-2x.png") no-repeat,
                rgba(70 144 242 / .25);
        }

.item-box-trio.item-iron .center {
            background: 
                100% bottom/95% url("../images/iron-hero.webp") no-repeat,
                linear-gradient(
                    rgba(70 144 242 / .80),
                    rgba(70 144 242 / .10));
        }

.item-box-trio.item-iron .lower {
            background: 
                75% top/27% url("../images/iron-toe.webp") no-repeat,
                30% bottom/25% url("../images/iron-address.webp") no-repeat,
                rgba(70 144 242 / .25);
        }

.item-box-trio.item-fairway .center {
            background: 
                90% bottom/55% url("../images/fairway-hero.webp") no-repeat,
                linear-gradient(
                    rgba(70 144 242 / .80),
                    rgba(70 144 242 / .10));
        }

.item-box-trio.item-fairway .lower {
            background: 
                10% top/40% url("../images/fairway-toe.webp") no-repeat,
                90% bottom/40% url("../images/fairway-address.webp") no-repeat,
                rgba(70 144 242 / .25);
        }

.logo-header {
    position: absolute;
    width: 70%;
    left: 15%;
    top: 1rem;
    mix-blend-mode: screen;
}

.modal-ext {
    touch-action: none;
    pointer-events: none;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0 0 0 / .50),
        rgba(0 0 0 / .85));
    display: flex;
    flex-flow: column;
    color: white;
    padding: 2rem;
    box-sizing: border-box;

    font: .875rem fraktion;

    transition: opacity 1s linear;
}

.modal-ext .modal-copy {
        flex: 1;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

.modal-ext .big {
        font: 700 2rem fraktion;
        line-height: 1.1;
        text-transform: uppercase;
        margin-bottom: 1rem;
    }

.modal-ext .buttons {
        display: flex;
        flex-flow: column;
        gap: .5rem;
    }

.modal-ext button {
        background: transparent;
        border: 1px solid white;
        font: 400 1rem orbitron;
        color: white;
        padding: .5rem;
        text-transform: uppercase;
        pointer-events: auto;
    }

.modal-ext button.ext {
            font-weight: 700;
            background: rgba(255 255 255 / .5);
        }

.modal-ext.hidden {
        pointer-events: none;
        opacity: 0;
    }

.modal-ext.hidden button {
            /* need to be specific now, or we can trigger when hidden */
            pointer-events: none;
        }

.driver-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-flow: column;
    align-items: center;
    color: white;
    /* padding: 0 2rem; */
    margin-bottom: 80px;
    box-sizing: border-box;
    pointer-events: none;

    font: .875rem fraktion;
}

.driver-footer .buttons {
        display: flex;
        flex-flow: column;
        gap: .5rem;
        width: 80%;
    }

.driver-footer button {
        background: transparent;
        border: 1px solid white;
        font: 700 1rem orbitron;
        background: rgba(0 6 28 / .5);
        color: white;
        padding: .5rem;
        text-transform: uppercase;
        pointer-events: auto;

        transition: opacity 1000ms linear;
    }

.driver-footer button.ext {
            font-weight: 700;
            background: rgba(255 255 255 / .5);
        }

.driver-footer button.hidden {
            pointer-events: none;
            opacity: 0;
        }

.driver-footer .pinch-cta {
        margin-bottom: 1rem;
        font: 700 .7rem orbitron;
        text-transform: uppercase;
        text-align: center;
        height: 1rem;
        animation: pulse-cta 1s linear alternate infinite;
    }

.driver-footer .look-cta {
        font: 700 .7rem orbitron;
        text-transform: uppercase;
        text-align: center;

        transition: opacity 1000ms linear;
    }

.driver-footer .look-cta.hidden {
            pointer-events: none;
            opacity: 0;
        }

.driver-footer .pinch-circles {
        position:relative;
        width: 30vw;
        height: 30vw;
        margin-bottom: 20vh;
        transition: opacity 300ms linear;
    }

.driver-footer .pinch-circles.hidden {
            opacity: 0;
        }

.driver-footer .pinch-circle {
        --sz: 9vw;
        width: var(--sz);
        height: var(--sz);
        border: 2px solid cyan;
        border-radius: 50%;
        position: absolute;
    }

.driver-footer .pinch-circle:first-child {
        bottom: 0;
        left: 0;
        animation: pinch-circle-1 1000ms alternate infinite ease-in-out;
    }

.driver-footer .pinch-circle:last-child {
        top: 0;
        right: 0;
        animation: pinch-circle-2 1000ms alternate infinite ease-in-out;
    }

@keyframes pulse-cta {
    0% { text-shadow: 0 0 9px #ffffffff; }
    100% { text-shadow: 0 0 9px #ffffff00; }
}

@keyframes pinch-circle-1 {
    100% { transform: translate(50%, -50%); }
    0% { transform: translate(0%, 0%); }
}

@keyframes pinch-circle-2 {
    0% { transform: translate(0%, 0%); }
    100% { transform: translate(-50%, 50%); }
}

@keyframes announce-pulse {
    0% {
        transform: scale(1.0);
        opacity: 0;
    }
    25% {
        transform: scale(1.075, 1.25);
        opacity: .4;
    }
    100% {
        transform: scale(1.3, 2.0);
        opacity: 0;
    }
}

.driver-announce {
    position: absolute;
    top: 20%;
    width: 100%;
    pointer-events: none;

    display: flex;
    flex-flow: row;
    justify-content: center;

    --border-gap: .4rem;

    transition:
        opacity 200ms linear,
        transform 200ms ease;
}

.driver-announce .wrap {
        position: relative;
        min-width: 45vw;
    }

.driver-announce .border {
        position: absolute;
        inset: 0;
        border: 2px solid #4690F2;

        animation: announce-pulse 1000ms infinite;
        animation-timing-function: cubic-bezier(.33,.19,.9,.79);
    }

.driver-announce .border:last-child {
            animation-delay: 500ms;
        }

.driver-announce .content {
        position: relative;
        box-shadow: 0 0 5px #4690F288;
        color: white;
        text-transform: uppercase;
        font: 400 0.6rem orbitron;
        padding: .8rem;
        background: linear-gradient(
            rgba(70 194 242 / .10),
            rgba(70 194 242 / .60));
        display: flex;
        flex-flow: column;
        gap: .3rem;
        text-shadow: 0 0 8px rgba(255 255 255 / .3);
    }

.driver-announce .content h4 {
            all: unset;
            display: block;
            font-weight: 700;
            font: 700 1.3rem orbitron;
            text-shadow: 0 0 8px rgba(255 255 255 / .7);
            color: white;
        }

.driver-announce.hidden {
        opacity: 0;
        transform: translateY(20%) scale(0.5);
    }

.driver-callout {
    width: 60vw;
    pointer-events: none;
    background: linear-gradient(
        rgba(70 194 242 / .20),
        rgba(70 194 242 / .10));
    color: white;
    padding: .8rem;
}

.driver-callout h4 {
        all: unset;
        display: block;
        font-weight: 700;
        font: 700 .900rem fraktion;
        text-transform: uppercase;
        margin-bottom: .25rem;
    }

.driver-callout p {
        all: unset;
        font: 400 .750rem fraktion;
    }

.launch-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}

.launch-wrapper button {
        width: 80%;
        height: 3rem;
        display: grid;
        place-items: center;
        background: transparent;
        border: 1px solid white;
        font: 700 1rem orbitron;
        background: rgba(0 6 28 / .5);
        color: white;
        text-transform: uppercase;
        pointer-events: auto;
    }

.callout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.debug {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    font: 10px monospace;
    background: rgba(0 0 0 / 50%);
    color: white;
    white-space: pre-wrap;
    word-break: break-all;
    margin: 0;
    opacity: 0;
    transition: opacity 500ms linear;
}

.debug.visible {
    opacity: 1;
}
.cross-box {
    position: absolute;
    inset: 0;
    /* height: 100%; */
    box-sizing: border-box;
    color: white;
    /* top: 0; left: 0; right: 0; bottom: 0; */
    /* width: 100%; */

    /* .box-cross::before { content: '✛'; } */
}

.cross-box .box-cross {
        position: absolute;
        width: 12px;
        height: 12px;
    }

.cross-box .box-cross-tl {
        top: -7px;
        left: -5px;
    }

.cross-box .box-cross-tr {
        top: -7px;
        right: -5px;
    }

.cross-box .box-cross-bl {
        bottom: -5px;
        left: -5px;
    }

.cross-box .box-cross-br {
        bottom: -5px;
        right: -6px;
    }

.desktop-page {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font: 400 1rem fraktion;
    letter-spacing: -1px;
    color: white;
}

.desktop-cta {
    position: relative;
    max-width: 400px;
    background: orange;
    display: flex;
    flex-flow: column;
    padding: 1rem 2rem;
    box-sizing: border-box;
    background: linear-gradient(black, #00396A, #0067B2, #008BB9, #00B3BA);
}

.desktop-qr {
    width: 100%;
    border: 1px solid rgba(0 0 0 / .25);
    max-width: 25vw;
    align-self: center;
}

.desktop-logo {
    position: absolute;
    top: 1rem;
    width: 10rem;
}

@media (orientation: portrait) {
    .desktop-cta {
        width: 80vw;
    }
    .desktop-qr {
        max-width: 40vw;
    }
}
