/* Modern CSS reset (minimal, opinionated) */
/* Box sizing */
*, *::before, *::after { box-sizing: border-box; }

/* Remove default margins */
* { margin: 0; padding: 0; }

/* Typographic tweaks */
html:focus-within { scroll-behavior: smooth; }
html, body { height: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

/* Media defaults */
img, picture, video, canvas, svg { display: block; max-width: 100%; }
img { height: auto; }

/* Form defaults */
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; }

/* Remove animations for reduced motion users */
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}




