:root {
    --bg: #f4f7fb;
    --text: #1a2b3c;
    --muted: #5c6d7e;
    --accent: #00995d;
    --card: #fff;
    --border: #e2e8f0;
}

* { box-sizing: border-box; }

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

.shell {
    max-width: 42rem;
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

h1 { font-size: 1.5rem; margin-top: 0; }

.lead { color: var(--muted); }

.badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mono { font-family: ui-monospace, monospace; font-size: 0.9em; }

.links { padding-left: 1.25rem; }
.links li { margin: 0.5rem 0; }

a { color: var(--accent); }

.muted {
    color: var(--muted);
    font-size: 0.9rem;
}
