/* ============================================================
   TDi · BASE / RESET — light element defaults using the tokens.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-md);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  font-weight: var(--fw-extra);
  line-height: var(--leading-tight);
  letter-spacing: var(--track-tight);
  margin: 0;
}

/* Utility: tracked-out instrument label (the tagline voice) */
.tdi-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--text-2xs);
  font-weight: var(--fw-medium);
  letter-spacing: var(--track-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

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

::selection { background: var(--cyan-200); color: var(--ink-900); }

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

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