/* Base — Neo-Brutalist Monochromatic */

body {
    font-family: var(--font-family);
    font-size: var(--text-body);
    font-weight: var(--font-regular);
    line-height: var(--line-height-normal);
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-bold);
    line-height: var(--line-height-tight);
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.display {
    font-size: var(--text-display);
    font-weight: var(--font-bold);
    letter-spacing: -0.03em;
    line-height: 1.0;
}

h1, .h1 { font-size: var(--text-h1); }
h2, .h2 { font-size: var(--text-h2); }
h3, .h3 { font-size: var(--text-h3); }
h4, .h4 { font-size: var(--text-h4); }

p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: var(--line-height-relaxed);
}

p:last-child { margin-bottom: 0; }

.text-small   { font-size: var(--text-small); }
.text-caption {
    font-size: var(--text-caption);
    font-weight: var(--font-bold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    font-family: var(--font-family-mono);
}
.text-muted     { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-mono      { font-family: var(--font-family-mono); }

/* ── Links ── */
a {
    color: var(--color-text);
    transition: opacity var(--transition-fast);
    text-decoration: none;
}
a:hover { opacity: 0.7; }

/* ── Selection ── */
::selection {
    background-color: var(--black);
    color: var(--white);
}

/* ── Focus ── */
:focus-visible {
    outline: var(--border);
    outline-offset: 3px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--gray-05); }
::-webkit-scrollbar-thumb { background: var(--gray-20); }
::-webkit-scrollbar-thumb:hover { background: var(--gray-40); }