/* base.css - Essential Resets & Defaults */

/* 1. Box Sizing & Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* 2. Foundation */
html,
body {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* 3. List Reset */
ul, ol {
    list-style: none;
}

/* 4. Link Reset */
a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* 5. Layout Primitive */
.flow-root {
    display: flow-root;
}
