:root { color-scheme: dark; }

*, *::before, *::after { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
    display: grid;
    min-height: 100dvh;
    margin: 0;
    overflow: hidden;
    background: #080a0d;
}

body::before {
    position: fixed;
    z-index: -1;
    inset: 0;
    background: center / cover no-repeat url("/assets/brand/material-facets.webp");
    content: "";
    opacity: .12;
    pointer-events: none;
}

.launch-stage {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 100dvh;
    padding: clamp(1.5rem, 5vw, 5rem);
}

.launch-title {
    width: min(82vw, 61rem);
    margin: 0;
    line-height: 0;
}

.launch-wordmark {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 47.999rem) {
    .launch-title { width: min(88vw, 34rem); }
    body::before { opacity: .08; }
}

@media (prefers-reduced-data: reduce) {
    body::before { background-image: none; }
}
