:root {
    --background-start: #07111f;
    --background-end: #0d2034;
    --surface: rgba(255, 255, 255, 0.07);
    --surface-border: rgba(255, 255, 255, 0.14);
    --text-primary: #f7fafc;
    --text-secondary: #bac8d8;
    --accent: #50c9b5;
    --accent-soft: rgba(80, 201, 181, 0.15);
    --shadow: rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text-primary);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(80, 201, 181, 0.13),
            transparent 34%
        ),
        radial-gradient(
            circle at 82% 78%,
            rgba(64, 128, 200, 0.13),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            var(--background-start),
            var(--background-end)
        );
}

body::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent
        );
}

.page-shell {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: min(1120px, calc(100% - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 72px 0 30px;
}

.hero {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}

.brand-line {
    width: 42px;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        var(--accent)
    );
}

.brand-line:last-child {
    background: linear-gradient(
        to left,
        transparent,
        var(--accent)
    );
}

.brand-icon {
    display: grid;
    width: 64px;
    height: 52px;
    padding-left: 0.12em;
    place-items: center;
    border: 1px solid rgba(80, 201, 181, 0.55);
    border-radius: 16px;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    background: var(--accent-soft);
    box-shadow:
        0 14px 40px rgba(80, 201, 181, 0.12);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(3.6rem, 10vw, 7.6rem);
    font-weight: 750;
    letter-spacing: -0.065em;
    line-height: 0.95;
}

.intro {
    max-width: 710px;
    margin: 32px auto 0;
    color: var(--text-secondary);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.75;
}

.status-card {
    display: flex;
    gap: 16px;
    width: min(100%, 650px);
    margin-top: 44px;
    padding: 22px 24px;
    border: 1px solid var(--surface-border);
    border-radius: 20px;
    text-align: left;
    background: var(--surface);
    box-shadow:
        0 24px 80px var(--shadow);
    backdrop-filter: blur(18px);
}

.status-indicator {
    flex: 0 0 auto;
    width: 11px;
    height: 11px;
    margin-top: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow:
        0 0 0 7px rgba(80, 201, 181, 0.12);
}

.status-label {
    margin: 0 0 7px;
    font-weight: 700;
}

.status-message {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.launch-message {
    margin: 30px 0 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 40px;
    color: rgba(247, 250, 252, 0.52);
    font-size: 0.82rem;
}

footer p {
    margin: 0;
}

.developer-name {
    color: rgba(247, 250, 252, 0.78);
    font-weight: 600;
}

@media (max-width: 640px) {
    .page-shell {
        width: min(100% - 30px, 1120px);
        padding-top: 44px;
    }

    h1 {
        font-size: clamp(3.2rem, 18vw, 5rem);
    }

    .intro {
        margin-top: 25px;
    }

    .status-card {
        margin-top: 34px;
        padding: 20px;
    }

    footer {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
}