/* ============================================================
   Konpo, Base / reset
   Minimal global defaults so specimens & kits inherit the brand.
   ============================================================ */

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--text-body);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-weight: var(--fw-medium);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
}

a { color: inherit; text-decoration: none; }

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

button { font-family: inherit; }

::selection { background: var(--iw-indigo-200); color: var(--iw-navy-900); }

/* Utility: a quiet dotted-grid texture for header / feature bands */
.iw-dotgrid {
  background-image: radial-gradient(var(--border-soft) 1px, transparent 1px);
  background-size: 22px 22px;
}
