/* =========================================================
   02 — BASE (Reset + Typography)
========================================================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* helpers */
.muted{ color:var(--muted); margin:0; }
.no-scroll{ overflow:hidden; }