* {
    box-sizing: border-box;
}

html {
    background: #090d12;
    color: #d9dee5;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 20% 20%, #18202b 0, transparent 35%),
        radial-gradient(circle at 80% 70%, #111820 0, transparent 30%),
        #090d12;
}

.container {
    width: min(760px, calc(100% - 40px));
    padding: 48px;
    border: 1px solid #29313b;
    background: #0e1319;
    box-shadow: 0 20px 80px rgba(0, 0, 0, .45);
}

.brand {
    letter-spacing: .28em;
    font-size: 12px;
    color: #8994a2;
    margin-bottom: 28px;
}

h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 7vw, 66px);
    font-weight: 600;
    letter-spacing: -.04em;
}

.lead {
    max-width: 580px;
    color: #9ca7b3;
    font-size: 18px;
    line-height: 1.65;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 14px;
    border: 1px solid #29313b;
    font-size: 14px;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #96b59b;
}

nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid #202832;
}

a {
    color: #c8d0da;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
