* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(55, 120, 255, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 140, 45, 0.18), transparent 35%),
        #080b12;
    color: #ffffff;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.hero {
    width: 100%;
    max-width: 760px;
    padding: 56px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: rgba(12, 17, 28, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #9fbaff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

h1 {
    font-size: clamp(48px, 9vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    margin-bottom: 22px;
}

.subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #d8dfef;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.45;
}

.status-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 13px 18px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    color: #f2f5ff;
    font-size: 15px;
    font-weight: 600;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffb347;
    box-shadow: 0 0 18px rgba(255, 179, 71, 0.95);
}

.description {
    max-width: 560px;
    margin: 28px auto 0;
    color: #9ca9c2;
    font-size: 16px;
    line-height: 1.7;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 22px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.primary {
    background: #ffffff;
    color: #080b12;
}

.secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
}

@media (max-width: 640px) {
    .page {
        padding: 18px;
    }

    .hero {
        padding: 38px 24px;
        border-radius: 22px;
    }

    .buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}