/* ---------------------------------------------------------
   Schuck Data — base styles
   Color palette: Deep Ink Blue (see docs/decisions.md)
   --------------------------------------------------------- */

:root {
    /* Light mode (default) */
    --bg: #ffffff;
    --text: #0a0a0a;
    --text-muted: #555555;
    --accent: #1e3a5f;
    --accent-contrast: #ffffff; /* text color on accent backgrounds */
    --border: #e5e5e5;
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg: #0a0a0a;
        --text: #e5e5e5;
        --text-muted: #a3a3a3;
        --accent: #93c5fd;
        --accent-contrast: #0a0a0a;
        --border: #262626;
    }
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 2rem;
}

main {
    max-width: 36rem;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.status {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

a:hover {
    text-decoration-thickness: 2px;
}
