/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    /* scroll-behavior handled by Lenis JS — do not set here */
}

body {
    background-color: var(--z-black);
    color: var(--z-white);
    font-family: 'Manrope', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    overflow-x: hidden;
}

img, 
video, 
svg, 
picture {
    max-width: 100%;
    display: block;
}

button {
    cursor: pointer;
    font: inherit;
    border: none;
    background: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, 
ol {
    list-style: none;
}

::selection {
    background-color: var(--z-primary);
    color: var(--z-black);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
