/* ============================================================
   CYBERNETIX · BASE / RESET
   Minimal element defaults wired to the token system.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg-page);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: var(--fw-medium);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); letter-spacing: var(--ls-display); line-height: var(--lh-tight); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }
p  { margin: 0 0 1em; text-wrap: pretty; }
a  { color: var(--signal); text-decoration: none; }
a:hover { color: var(--signal-hover); }
strong { color: var(--text-primary); font-weight: var(--fw-bold); }
small { font-size: var(--fs-sm); }
code, pre { font-family: var(--font-mono); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--cx-coral-500); color: var(--cx-navy-900); }

/* Eyebrow / kicker utility */
.cx-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--signal);
}
