/* boopcat — base / reset
 * Sets the calm cream canvas and Poppins default. Cards "pop" off this. */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-body-md);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* lowercase, tight, Poppins headings by default (brand rule) */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  letter-spacing: var(--tracking-tight);
  line-height: var(--lh-snug);
  margin: 0;
}

a { color: var(--text-link); text-decoration: none; }

::selection { background: var(--blue-200); color: var(--ink); }

.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }
