/* Typography scale — Sora headings, Inter body */
body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.6;
    color: var(--color-text-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-black);
    line-height: 1.15;
    text-wrap: balance;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-h1); font-weight: 700; line-height: 1.08; }
h2 { font-size: var(--fs-h2); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: var(--fs-h3); font-weight: 600; line-height: 1.25; letter-spacing: 0; }
h4 { font-size: var(--fs-h4); font-weight: 600; line-height: 1.35; letter-spacing: 0; }
h5 { font-size: var(--fs-h5); font-weight: 600; line-height: 1.4; letter-spacing: 0; }

p { text-wrap: pretty; }

.lead { font-size: var(--fs-body-lg); line-height: 1.6; color: var(--color-text-body); }
.text-sm { font-size: var(--fs-body-sm); }
.text-mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* Eyebrow / section kicker */
.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--fs-body-sm);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-charcoal);
}
.eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    margin-right: 10px;
    vertical-align: middle;
    background: var(--color-primary);
}

/* Constrain body line length for readability */
.prose p, .section__lead { max-width: 68ch; }
