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

html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    background: #000;
    color: #fff;
    overflow: hidden;
}

#starfield {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 0;
    background:
        radial-gradient(circle at center, rgba(18, 18, 18, 0.55) 0%, rgba(0, 0, 0, 0.92) 55%, #000 100%);
}

.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.content {
    width: 100%;
    max-width: 980px;
    text-align: center;
    padding: 24px;
}

.logo {
    width: min(78vw, 840px);
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 28px;
    filter:
        drop-shadow(0 0 18px rgba(255, 255, 255, 0.08)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.05));
}

.status {
    display: inline-block;
    font-size: clamp(1.1rem, 2.1vw, 1.5rem);
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0.85rem 1.3rem 0.85rem 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    box-shadow:
        0 0 24px rgba(255, 255, 255, 0.05),
        inset 0 0 24px rgba(255, 255, 255, 0.02);
}

.subtext {
    margin: 18px auto 0;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 700px) {
    .content {
        padding: 12px;
    }

    .logo {
        width: min(92vw, 680px);
        margin-bottom: 22px;
    }

    .status {
        letter-spacing: 0.22em;
        padding: 0.8rem 1.05rem 0.8rem 1.25rem;
    }

    .subtext {
        font-size: 0.82rem;
        letter-spacing: 0.06em;
    }
}