:root {
    color-scheme: light;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #152b3c;
    background: #f3f7fa;
}
* { box-sizing: border-box; }
body {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    padding: 24px;
    display: grid;
    place-items: center;
    background: radial-gradient(ellipse at top, #e2eef2, transparent 65%);
}
.card {
    width: 100%;
    max-width: 560px;
    padding: clamp(32px, 7vw, 64px) clamp(20px, 5vw, 48px);
    text-align: center;
    background: #fff;
    border: 1px solid #dce6ed;
    border-radius: 24px;
    box-shadow: 0 16px 48px #1833450a;
}
.eyebrow {
    margin: 0 0 36px;
    color: #526676;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.status-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: #e7f5ee;
    color: #216d4c;
    font-size: 28px;
}
h1 {
    margin: 0;
    font-size: clamp(26px, 5vw, 38px);
    letter-spacing: -0.04em;
    line-height: 1.2;
}
.status { margin: 20px 0 0; color: #216d4c; font-weight: 600; }
.description { margin: 12px 0 0; color: #526676; font-size: 16px; line-height: 1.6; }
