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

* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top right, rgba(231, 62, 28, 0.18), transparent 35%),
        radial-gradient(circle at bottom left, rgba(255, 166, 0, 0.08), transparent 30%),
        #080a0d;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 2rem;
    padding: 2rem;
}

.card {
    width: min(760px, 100%);
    padding: clamp(2rem, 6vw, 5rem);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 24px;
    background: rgba(18, 21, 27, 0.82);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(18px);
}

.logo-mark {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, #f04b24, #b8220f);
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.eyebrow {
    margin: 0 0 1rem;
    color: #f04b24;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

h1 {
    margin: 0;
    max-width: 620px;
    font-size: clamp(3rem, 9vw, 6rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
}

.intro {
    max-width: 590px;
    margin: 2rem 0 0;
    color: #b7bdc7;
    font-size: clamp(1.08rem, 2.4vw, 1.35rem);
    line-height: 1.65;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2rem;
    padding: 0.65rem 0.9rem;
    border: 1px solid rgba(85, 214, 126, 0.25);
    border-radius: 999px;
    background: rgba(85, 214, 126, 0.08);
    color: #b9f4ca;
    font-size: 0.9rem;
    font-weight: 650;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #55d67e;
    box-shadow: 0 0 18px rgba(85, 214, 126, 0.85);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 2.5rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 1.25rem;
    border: 1px solid #f04b24;
    border-radius: 10px;
    background: #f04b24;
    color: white;
    font-weight: 750;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease;
}

.button:hover {
    transform: translateY(-2px);
    background: #ff5a32;
}

.button-secondary {
    background: transparent;
    color: #f6f7f8;
    border-color: rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
}

footer {
    color: #777f8a;
    font-size: 0.86rem;
}

@media (max-width: 560px) {
    .site-shell {
        padding: 1rem;
    }

    .card {
        border-radius: 18px;
        padding: 2rem;
    }

    h1 {
        font-size: 3.4rem;
    }

    .button {
        width: 100%;
    }
}
