/* ================================================================
   CSS RESET + FONT NORMALIZATION

   Structural reset: zeros out margins, paddings, borders.
   Font normalization: establishes rem-based typography baseline.
   Root: 100% = 16px browser default. Body: 0.875rem = 14px.

   Rem reference:
   0.5rem = 8px  | 0.5625rem = 9px  | 0.625rem = 10px
   0.6875rem = 11px | 0.75rem = 12px | 0.875rem = 14px
   1rem = 16px | 1.25rem = 20px | 1.5rem = 24px
   ================================================================ */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

html {
    font-size: 100%; /* 16px browser default — all rem values derive from this */
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    border: 0;
}

body,
div,
td,
input,
select,
textarea {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem; /* 14px */
}

form {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
}

a {
    cursor: pointer;
}

b,
strong {
    font-weight: bolder;
}

ul {
    list-style: none;
}

ol {
    padding-left: 1.875rem; /* 30px */
}

ol li {
    margin: 0.3125rem 0; /* 5px 0 */
}

p {
    margin-bottom: 0.625rem; /* 10px */
}

code {
    font-family: monospace;
    font-size: 0.75rem; /* 12px — was 9pt */
    white-space: pre;
}
