/* Emusys — minimal base styles applied when the system stylesheet is linked. */

* { box-sizing: border-box; }

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

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

h1, h2, h3 {
  font-family: var(--font-heading);
}

h1, h2 {
  font-weight: var(--weight-extrabold);
  letter-spacing: var(--tracking-display);
  line-height: var(--leading-tight);
}

p { margin: 0; }

a {
  color: var(--text-link);
  text-decoration: none;
}
a:hover,
a:focus-visible,
button:hover,
button:focus-visible {
  text-decoration: none !important;
}
