* {
    box-sizing: border-box;
}

:root {
    color-scheme: dark;
    --bg: #080a0f;
    --panel: #11151d;
    --border: #252c38;
    --text: #f3f5f8;
    --muted: #929cab;
    --subtle: #5f6978;
    --accent: #738cff;
    --green: #5dd58b;
}

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

body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont,
                 "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--text);

    background:
        radial-gradient(circle at 20% 5%,
        rgba(80,101,210,.18), transparent 32%),

        radial-gradient(circle at 90% 90%,
        rgba(54,74,160,.12), transparent 30%),

        var(--bg);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;

    background-image:
        linear-gradient(rgba(255,255,255,.018) 1px,
        transparent 1px),

        linear-gradient(90deg,
        rgba(255,255,255,.018) 1px,
        transparent 1px);

    background-size: 44px 44px;
}

.shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 36px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;

    font-size: 14px;
    font-weight: 600;
}

.logo {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 11px;
    color: #aebcff;

    background: rgba(115,140,255,.12);
    border: 1px solid rgba(115,140,255,.25);
}

.logo svg {
    width: 19px;
    height: 19px;
}

.status {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--muted);
    font-size: 12px;
}

.status-dot,
.footer-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 12px rgba(93,213,139,.4);
}

.main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 50px 24px;
}

.card {
    width: min(600px, 100%);
    padding: 46px;

    border-radius: 26px;

    background: rgba(17,21,29,.92);
    border: 1px solid var(--border);

    box-shadow: 0 35px 100px rgba(0,0,0,.45);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 26px;
    padding: 7px 11px;

    border-radius: 999px;

    color: #aab9ff;
    background: rgba(115,140,255,.10);
    border: 1px solid rgba(115,140,255,.22);

    font-size: 10px;
    font-weight: 650;
    letter-spacing: .08em;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

h1 {
    margin: 0;
    max-width: 500px;

    font-size: 44px;
    line-height: 1.08;

    font-weight: 650;
    letter-spacing: -.045em;
}

.lead {
    max-width: 500px;
    margin: 20px 0 0;

    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

.info {
    display: flex;
    gap: 16px;

    margin-top: 34px;
    padding: 20px;

    border-radius: 17px;

    background: rgba(255,255,255,.027);
    border: 1px solid rgba(255,255,255,.055);
}

.info-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: grid;
    place-items: center;

    border-radius: 11px;

    color: #aebcff;
    background: rgba(115,140,255,.10);

    font-family: Georgia, serif;
    font-weight: bold;
}

.info-title {
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 600;
}

.info-text {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.notice {
    margin: 25px 0 0;
    color: var(--subtle);
    font-size: 12px;
    line-height: 1.6;
}

.footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 36px 25px;

    color: var(--subtle);
    font-size: 11px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-dot {
    width: 5px;
    height: 5px;
}

@media (max-width: 600px) {

    .header {
        height: 68px;
        padding: 0 20px;
    }

    .status {
        display: none;
    }

    .main {
        padding: 30px 18px;
    }

    .card {
        padding: 31px 25px;
        border-radius: 21px;
    }

    h1 {
        font-size: 34px;
    }

    .footer {
        justify-content: center;
        padding: 0 20px 20px;
    }

    .footer > span:first-child {
        display: none;
    }
}
