/* 
   SECTION -1: FUNDAMENTAL RESET 
   The bedrock of the Expressive System.
*/

*, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, li {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* Critical Interactive Reset */
button, a {
    border: none;
    outline: none;
    background-color: transparent;
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    font-size: 100%;
    padding: 0;
    cursor: pointer;
    text-align: inherit;
    -webkit-tap-highlight-color: transparent;
}

input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--surface-variant);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--outline);
}