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

/* 2. Nuclear Typography and Structural Reset */
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    font-size: 100%;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    text-decoration: none;
    list-style: none;
    vertical-align: baseline;
}

/* 3. Inherit Font Families to Kill Browser Defaults */
input, button, textarea, select {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

/* 4. Table Layout Flattening */
table {
    border-collapse: collapse;
    border-spacing: 0;
}