/* ============================================================
   TYPOGRAPHY — Original scale, bigger and friendlier
   ============================================================ */

body {
    font-family: 'Outfit', system-ui, -apple-system, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Display — hero name */
.display {
    font-size: clamp(2.8rem, 6vw, 4.2rem);
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Section title */
.h2 {
    font-size: clamp(2rem, 3.8vw, 2.8rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.015em;
}

/* Card / feature title */
.h3 {
    font-size: 1.32rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Eyebrow — plain small-caps, no pill */
.eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Lead paragraph under section titles */
.lede {
    font-size: 1.12rem;
    line-height: 1.7;
    color: var(--ink-soft);
    max-width: var(--measure);
}

.body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--ink-soft);
}

.body-sm {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--ink-soft);
}

.meta {
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 550;
    letter-spacing: 0.01em;
    color: var(--ink-faint);
}

.mono {
    font-family: ui-monospace, 'Cascadia Code', 'SF Mono', Consolas, monospace;
    font-size: 0.86em;
    letter-spacing: 0;
}

strong { font-weight: 640; color: var(--ink); }
