:root {
    --navy: #12263f;
    --blue: #2563eb;
    --light-blue: #eff6ff;
    --green: #15803d;
    --amber: #b45309;
    --border: #dbe3ec;
    --text: #243447;
    --muted: #64748b;
    --background: #f4f7fb;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

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

body {
    background:
        radial-gradient(circle at top left, #e9f2ff 0, transparent 32rem),
        var(--background);
    color: var(--text);
    font-family:
        Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
        "Segoe UI", sans-serif;
}

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

.setup-card {
    width: min(100%, 680px);
    padding: 46px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 24px 70px rgba(15, 35, 60, 0.12);
}

.brand-mark {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 18px;
    background: linear-gradient(145deg, var(--navy), var(--blue));
    color: var(--white);
    font-size: 32px;
    font-weight: 800;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(38px, 8vw, 58px);
    line-height: 1;
}

.intro {
    max-width: 560px;
    margin: 20px 0 30px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.status-list {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--border);
    border-radius: 14px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
}

.status-row:last-child {
    border-bottom: 0;
}

.status-row span {
    color: var(--muted);
}

.status-row strong {
    color: var(--navy);
    text-align: right;
}

.status-good {
    color: var(--green) !important;
}

.status-pending {
    color: var(--amber) !important;
}

.notice {
    margin: 26px 0 0;
    padding: 16px 18px;
    background: var(--light-blue);
    border-radius: 12px;
    color: var(--navy);
    line-height: 1.55;
}

@media (max-width: 600px) {
    .setup-card {
        padding: 30px 22px;
        border-radius: 18px;
    }

    .intro {
        font-size: 16px;
    }

    .status-row {
        padding: 14px;
    }
}
