/* Minimal reset with modern defaults */
* {
    box-sizing: border-box;
}

html {
    font-family: var(--font-sans);
    line-height: 1.45;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd {
    margin: 0;
}

body {
    min-height: 100vh;
    background: var(--color-bg);
    color: var(--color-text);
    font-feature-settings: "cv02" 1, "cv03" 1;
}

img, picture, video {
    max-width: 100%;
    display: block;
}

button, input, optgroup, select, textarea {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button, a {
    cursor: pointer;
}

button:focus-visible, a:focus-visible, input:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

iframe {
    border: 0;
}
