/* Placeholder stylesheet for the skeleton page only. The real design system
   arrives with the site itself and will replace this file wholesale. */

:root {
    color-scheme: light dark;
    --ink: #101820;
    --paper: #f7f8fa;
    --muted: #6b7683;
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink: #e8ecf1;
        --paper: #0e1116;
        --muted: #8b95a3;
    }
}

body.skeleton {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--paper);
    color: var(--ink);
    font: 16px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}

.skeleton__panel {
    text-align: center;
    padding: 2rem;
}

.skeleton__panel h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.skeleton__meta {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: var(--muted);
}
