@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap");

:root {
    color-scheme: dark;
    --ink: #f7f9ff;
    --muted: #aeb9d3;
    --blue: #8299f4;
    --blue-bright: #9eb0ff;
    --line: rgba(142, 164, 255, .24);
    --navy: #0b1020;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-width: 320px;
    min-height: 100%;
    margin: 0;
}

body {
    overflow: hidden;
    background: var(--navy);
    color: var(--ink);
    font-family: "DM Sans", system-ui, sans-serif;
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -2;
    content: "";
    background:
        radial-gradient(circle at 50% 44%, rgba(48, 71, 168, .18), transparent 34%),
        radial-gradient(circle at 17% 15%, rgba(84, 112, 216, .09), transparent 25%),
        linear-gradient(145deg, #080c18 0%, #0b1122 45%, #0e1530 100%);
}

#particles {
    position: fixed;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    place-items: center;
    isolation: isolate;
    padding: 40px 24px;
}

.content {
    display: grid;
    justify-items: center;
    width: min(100%, 860px);
    text-align: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: clamp(34px, 6vh, 64px);
    font: 800 clamp(28px, 3.5vw, 40px)/1 "Manrope", sans-serif;
    letter-spacing: .19em;
}

.brand img {
    width: clamp(78px, 9vw, 104px);
    height: clamp(78px, 9vw, 104px);
    border-radius: 22%;
    box-shadow: 0 18px 50px rgba(48, 71, 168, .34);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--blue-bright);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.eyebrow span {
    display: block;
    width: 26px;
    height: 1px;
    background: currentColor;
}

h1 {
    max-width: 820px;
    margin: 0;
    font: 700 clamp(36px, 5.5vw, 68px)/1.04 "Manrope", sans-serif;
    letter-spacing: -.055em;
}

h1 em {
    color: var(--blue-bright);
    font-style: normal;
}

.message {
    margin: clamp(26px, 4vh, 42px) 0 0;
    color: var(--muted);
    font-size: clamp(15px, 2vw, 19px);
    line-height: 1.75;
}

.message strong {
    color: #d9e0ff;
    font-weight: 600;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(19, 28, 56, .62);
    color: #dfe5ff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .03em;
    backdrop-filter: blur(10px);
}

.status-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8299f4;
    box-shadow: 0 0 0 0 rgba(130, 153, 244, .65);
    animation: pulse 2s infinite;
}

.hint,
footer {
    position: absolute;
    bottom: 24px;
    margin: 0;
    color: rgba(174, 185, 211, .62);
    font-size: 11px;
    letter-spacing: .06em;
}

.hint {
    left: 28px;
}

.hint span {
    display: inline-block;
    margin-right: 7px;
    color: var(--blue-bright);
}

footer {
    right: 28px;
}

.ambient {
    position: absolute;
    z-index: -1;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(130, 153, 244, .1);
    border-radius: 50%;
    filter: blur(.2px);
}

.ambient-one {
    top: -170px;
    right: -80px;
}

.ambient-two {
    bottom: -210px;
    left: -100px;
    width: 370px;
    height: 370px;
}

@keyframes pulse {
    70% { box-shadow: 0 0 0 8px rgba(130, 153, 244, 0); }
    100% { box-shadow: 0 0 0 0 rgba(130, 153, 244, 0); }
}

@media (max-width: 640px) {
    .hero {
        padding: 30px 20px 72px;
    }

    .brand {
        margin-bottom: 42px;
    }

    h1 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .message br {
        display: none;
    }

    .hint {
        display: none;
    }

    footer {
        right: 0;
        bottom: 18px;
        left: 0;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .status-pulse {
        animation: none;
    }
}
