/* =============================================================
   base.css — Reset & Global Typography
   Global element resets and the document/body defaults.
   ============================================================= */

/* Box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Smooth anchor scrolling for in-page navigation */
html {
  scroll-behavior: smooth;
}

/* Base typography and page background */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--surface);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
