/* Sensometriks — light base resets & helpers.
   Kept minimal: sets page defaults and a couple of utility primitives that the
   specimen cards and kits rely on. Component styling lives inline in the JSX. */

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

body {
  margin: 0;
  font: var(--text-body-r);
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-display);
  letter-spacing: var(--tracking-snug);
}

a { color: var(--accent); text-decoration: none; }

code, kbd, samp { font-family: var(--font-mono); }

::selection { background: var(--indigo-100); color: var(--ink-900); }

/* Uppercase eyebrow / label helper used across specimens */
.sm-eyebrow {
  font: var(--fw-semibold) var(--text-xs)/1 var(--font-sans);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--text-muted);
}
