:root {
    color-scheme: dark;

    --background: #090b09;
    --surface: rgba(20, 25, 20, 0.94);
    --surface-border: rgba(202, 170, 84, 0.28);
    --gold: #caaa54;
    --gold-light: #ead38a;
    --green: #173d2b;
    --green-light: #79b495;
    --text: #f2efe6;
    --text-muted: #a9aea8;
    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);

    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--background);
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(23, 61, 43, 0.7),
            transparent 42%
        ),
        linear-gradient(
            150deg,
            #070907 0%,
            #0d120e 55%,
            #080908 100%
        );
}

button,
input,
select,
textarea {
    font: inherit;
}

.page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px 18px;
}

.status-card {
    width: min(100%, 680px);
    padding: clamp(28px, 6vw, 54px);
    text-align: center;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            transparent
        ),
        var(--surface);
    border: 1px solid var(--surface-border);
    border-radius: 28px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.status-card__mark {
    display: grid;
    width: 76px;
    height: 76px;
    margin: 0 auto 26px;
    place-items: center;
    color: #11130f;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );
    border-radius: 50%;
    box-shadow:
        0 14px 40px rgba(202, 170, 84, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.55);
}

.status-card__eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 9vw, 72px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.045em;
}

.status-card__intro {
    max-width: 500px;
    margin: 22px auto 26px;
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.7;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 10px 16px;
    color: #cce8d8;
    font-size: 14px;
    font-weight: 650;
    background: rgba(23, 61, 43, 0.56);
    border: 1px solid rgba(121, 180, 149, 0.22);
    border-radius: 999px;
}

.status__indicator {
    width: 9px;
    height: 9px;
    background: var(--green-light);
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(121, 180, 149, 0.72);
}

.details {
    overflow: hidden;
    margin: 0;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
}

.details__row {
    display: grid;
    grid-template-columns: minmax(110px, 0.65fr) minmax(0, 1.35fr);
    gap: 20px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, 0.018);
}

.details__row + .details__row {
    border-top: 1px solid rgba(255, 255, 255, 0.065);
}

.details dt {
    color: var(--text-muted);
}

.details dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--text);
    font-weight: 600;
    text-align: right;
}

.status-card__footer {
    margin: 28px 0 0;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 520px) {
    .status-card {
        border-radius: 20px;
    }

    .details__row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .details dd {
        text-align: left;
    }
}
