/* reset.css — modern minimal reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }

body {
  min-height: 100%;
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

ul, ol { list-style: none; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.02; }

:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }

::selection { background: var(--purple); color: var(--white); }

/* Hide native scrollbar visual but keep scrolling */
::-webkit-scrollbar { width: 0; height: 0; }
