* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: #f4f4f5;
    background: #090a0f;
}

body {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px;

    background:
        radial-gradient(
            circle at 20% 20%,
            rgba(120, 120, 255, 0.14),
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(255, 255, 255, 0.07),
            transparent 35%
        ),
        #090a0f;
}

.container {
    width: min(900px, 100%);
}

.card {
    padding: 64px;

    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.035);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 28px;
    padding: 8px 13px;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;

    background: rgba(255, 255, 255, 0.045);

    color: #a1a1aa;

    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #7dd3a8;

    box-shadow:
        0 0 12px rgba(125, 211, 168, 0.7);
}

h1 {
    margin-bottom: 18px;

    font-size: clamp(48px, 8vw, 86px);
    line-height: 0.95;

    letter-spacing: -0.055em;
    font-weight: 700;
}

.subtitle {
    max-width: 650px;

    margin-bottom: 32px;

    color: #a1a1aa;

    font-size: clamp(17px, 2vw, 20px);
    line-height: 1.7;
}

.divider {
    height: 1px;

    margin: 34px 0;

    background: rgba(255, 255, 255, 0.08);
}

.description {
    max-width: 680px;

    color: #71717a;

    font-size: 15px;
    line-height: 1.8;
}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-top: 42px;

    color: #52525b;

    font-size: 13px;
}

.footer span:first-child {
    letter-spacing: 0.08em;
}

@media (max-width: 600px) {

    body {
        padding: 20px;
    }

    .card {
        padding: 38px 28px;
        border-radius: 20px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}