/* CYGMA base element styles — minimal resets so specimens and kits
   inherit the brand by default. */

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-variation-settings: var(--vox-body);
  font-weight: var(--weight-body);
  font-size: var(--text-body);
  line-height: var(--leading-body);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: none; /* opsz set explicitly via voices */
}

::selection { background: var(--cyan); color: var(--blue); }
