:root {
    --bg-primary: #050816;
    --bg-secondary: #111827;
    --text: #ffffff;
    --text-muted: #a8b3cf;
    --accent: #3b82f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;

    background:
        radial-gradient(
            circle at top,
            rgba(59,130,246,.15) 0%,
            transparent 40%
        ),
        linear-gradient(
            135deg,
            var(--bg-primary),
            var(--bg-secondary)
        );

    color: var(--text);

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    text-align: center;
    padding: 2rem;
}

.container {
    width: 100%;
    max-width: 900px;
}

.logo {
    display: block;
    margin: 0 auto 2rem auto;

    width: 50%;
    max-width: 420px;
    height: auto;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: .03em;
}

.description {
    max-width: 650px;
    margin: 0 auto 2rem auto;

    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.8;
}

.status {
    display: inline-block;

    padding: .85rem 1.6rem;
    border-radius: 9999px;

    background: rgba(59,130,246,.15);
    border: 1px solid rgba(59,130,246,.35);

    color: #93c5fd;
    font-weight: 600;
}

.website {
    margin-top: 2rem;
}

.website a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.website a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {

    .logo {
        width: 75%;
    }

    .description {
        font-size: 1rem;
    }

    h1 {
        font-size: 2.4rem;
    }
}