/* ============================================================
   The Trouble Markers — Base layer
   Light element defaults so specimen cards & kits inherit the
   brand voice without extra setup. Tokens come from the other
   files imported ahead of this one.
   ============================================================ */

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  color: var(--text-strong);
  line-height: var(--leading-snug);
  margin: 0 0 var(--space-3);
}

h1 { font-size: var(--text-title); line-height: var(--leading-tight); }
h2 { font-size: var(--text-heading); }
h3 { font-size: var(--text-subhead); }

p { margin: 0 0 var(--space-4); }

a { color: var(--bloo-deep); text-underline-offset: 2px; }

strong { font-weight: var(--weight-bold); color: var(--text-strong); }

/* Eyebrow / kicker label used across the brand */
.tm-kicker {
  font-family: var(--font-body);
  font-weight: var(--weight-black);
  font-size: var(--text-tiny);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--frusty-deep);
}

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