/* Modern CSS reset — minimal, opinionated */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg, video { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { line-height: 1.1; text-wrap: balance; }
p { text-wrap: pretty; }

/* Hide scrollbar (visual only) */
html { scrollbar-width: none; }
html::-webkit-scrollbar { width: 0; height: 0; }

/* A11y skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 8px;
  padding: 10px 16px;
  background: #fff;
  color: #0B0F1A;
  border-radius: 8px;
  z-index: 9999;
  font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 8px; }

/* Focus visible */
:focus-visible {
  outline: 2px solid #52ae32;
  outline-offset: 3px;
  border-radius: 4px;
}
