/* Simple CSS reset */
:root {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}

html {
    box-sizing: border-box;
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    line-height: 1.5;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    min-height: 100vh;
    background: #fff;
    color: #000;
    text-rendering: optimizeLegibility;
}

/* Media */
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Typography */
ol, ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Forms */
input, button, textarea, select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Accessibility focus */
:focus {
    outline: 2px solid Highlight;
    outline-offset: 2px;
}