* {
    box-sizing: border-box;
}

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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background:
        radial-gradient(circle at 50% 20%, #263140 0%, #131820 35%, #0b0d10 75%);
    color: #fff;
}

.container {
    width: 100%;
    max-width: 720px;
    text-align: center;
}

.logo {
    width: 74px;
    height: 74px;
    margin: 0 auto 28px;
    border-radius: 24px;
    background: linear-gradient(
        145deg,
        rgba(255,255,255,.20),
        rgba(255,255,255,.04)
    );
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 18px 60px rgba(0,0,0,.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -2px;
}

h1 {
    margin: 0;
    font-size: clamp(42px, 8vw, 72px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 700;
}

.tagline {
    margin-top: 22px;
    font-size: clamp(19px, 3vw, 25px);
    color: rgba(255,255,255,.75);
}

.description {
    margin: 16px auto 0;
    max-width: 520px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,.52);
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 40px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.10);
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #63e68b;
    box-shadow: 0 0 12px rgba(99,230,139,.65);
}

footer {
    margin-top: 70px;
    color: rgba(255,255,255,.30);
    font-size: 13px;
}
