:root {
    color-scheme: dark;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0f1728;
    color: #f8fafc;
}

* { box-sizing: border-box; }

body {
    min-height: 100vh;
    margin: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 22%, rgb(0 94 184 / 22%), transparent 34rem),
        radial-gradient(circle at 18% 82%, rgb(247 148 45 / 13%), transparent 28rem),
        #0f1728;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .22;
    background-image:
        linear-gradient(rgb(255 255 255 / 4%) 1px, transparent 1px),
        linear-gradient(90deg, rgb(255 255 255 / 4%) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 75%);
}

main {
    position: relative;
    width: min(90vw, 42rem);
    padding: 3.5rem 2rem;
    text-align: center;
}

.logo {
    width: clamp(8rem, 24vw, 12rem);
    height: auto;
    margin-bottom: 1.75rem;
}

.eyebrow {
    margin: 0 0 .7rem;
    color: #82bdf1;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.7rem, 9vw, 5.7rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.message {
    margin: 1.4rem auto 2.5rem;
    color: #aebbd0;
    font-size: clamp(1rem, 2.5vw, 1.15rem);
}

.route {
    display: flex;
    align-items: center;
    gap: .8rem;
    width: min(100%, 23rem);
    margin: auto;
    color: #d9e4f4;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.route i {
    position: relative;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, #005eb8, #f7942d);
}

.route i::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: .45rem;
    height: .45rem;
    border-top: 1px solid #f7942d;
    border-right: 1px solid #f7942d;
    transform: translateY(-50%) rotate(45deg);
}
