/* 2026-06-23 18:35: starter styles for the staging scaffold. Minimal, clean baseline. */

:root {
    --ink: #1a2332;
    --muted: #5b6675;
    --brand: #0b3d6b;
    --bg: #f7f9fc;
    --card: #ffffff;
    --line: #e2e8f0;
    --ok: #1b7f4b;
    --warn: #b26a00;
    --err: #b3261e;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: var(--brand);
    padding: 18px 0;
}

.site-header .brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    letter-spacing: 0.2px;
}

main.container { padding-top: 32px; padding-bottom: 48px; }

h1 { font-size: 2rem; margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 1.1rem; margin-top: 0; }

.healthcheck {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 20px 24px;
    margin-top: 24px;
}

.healthcheck h2 { margin-top: 0; font-size: 1.1rem; }
.healthcheck ul { list-style: none; padding: 0; margin: 0; }
.healthcheck li { padding: 6px 0; border-bottom: 1px solid var(--line); }
.healthcheck li:last-child { border-bottom: 0; }

.status {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}
.status--connected { background: #e6f4ec; color: var(--ok); }
.status--not-configured { background: #fdf2e0; color: var(--warn); }
.status--error { background: #fbeae9; color: var(--err); }
.status--unknown { background: #eef1f5; color: var(--muted); }

.site-footer {
    border-top: 1px solid var(--line);
    padding: 24px 0;
    color: var(--muted);
    font-size: 0.9rem;
}
