/* ============================================================
   BASE — light reset + sensible document defaults so cards,
   components and kits render consistently. Body text = Text md,
   Gray 900 on white.
   ============================================================ */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--lh-text-md);
  color: var(--text-primary);
  background: var(--surface-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, p, figure { margin: 0; }

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

img, svg, video { display: block; max-width: 100%; }

button, input, select, textarea { font-family: inherit; font-size: 100%; }

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
