/* ===========================================================================
   DKSlab — base resets & primitive helpers
   =========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-snug);
  margin: 0;
  letter-spacing: var(--ls-tight);
}

p { margin: 0; }

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

/* Brand utility: the wide-tracked uppercase technical lockup */
.dks-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-2xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-widest);
  color: var(--text-muted);
}

::selection {
  background: color-mix(in srgb, var(--acc-glp) 22%, transparent);
  color: var(--text-strong);
}
