* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: var(--body);
    line-height: 1.65;
}

h1, h2, h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--h1); line-height: 1.1; }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }

p {
    color: var(--graphite-600);
    max-width: 680px;
}

a {
    color: inherit;
    text-decoration: none;
}
