/* Document shell + box model */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  scrollbar-width: none;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

/* Lenis integration for smooth inertia scrolling. */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}
