/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    opacity: 0.65;
}

/* ===== TYPE HELPERS ===== */
.text-balance {
    text-wrap: balance;
}

.accented {
    color: var(--accent);
}

.kicker {
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
}

.section-heading {
    font-size: clamp(28px, 2.8vw, 40px);
    line-height: 1.15;
    font-weight: 600;
    letter-spacing: -0.02em;
    max-width: 720px;
    margin: 0 0 16px;
}

.section-sub {
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
    max-width: 600px;
    color: var(--ink-60);
    margin: 0 0 72px;
}
