/* Typographic scale — values come from tokens only */
body {
    font-family: var(--font-family-base);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    color: var(--color-text);
    background-color: var(--color-bg);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-family-heading);
    font-weight: var(--fw-bold);
    line-height: var(--lh-tight);
    color: var(--color-text);
}

h1 {
    font-size: var(--fs-3xl);
    letter-spacing: -0.02em;
}

h2 {
    font-size: var(--fs-2xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--fs-lg);
}

p {
    color: var(--color-text-secondary);
}

.lead {
    font-size: var(--fs-md);
    color: var(--color-text-secondary);
    line-height: var(--lh-normal);
}

.eyebrow {
    display: inline-block;
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    letter-spacing: 0.04em;
    color: var(--color-primary);
}

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

@media (max-width: 768px) {
    h1 {
        font-size: var(--fs-2xl);
    }

    h2 {
        font-size: var(--fs-xl);
    }
}
