:root {
    --fg: #1a1a1a;
    --bg: #ffffff;
    --accent: #0057b8;
    --muted: #666;
    --maxw: 48rem;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--fg);
    background: var(--bg);
}

.site-header,
.site-main,
.site-footer {
    max-width: var(--maxw);
    margin-inline: auto;
    padding: 1rem;
}

.site-header {
    border-bottom: 1px solid #eee;
}

.site-header nav a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.hero h1 {
    margin-top: 0;
}

.site-footer {
    border-top: 1px solid #eee;
    color: var(--muted);
    font-size: 0.875rem;
}
