/* ============================================================
   Altec Sistemas — Base element defaults
   Light, non-aggressive resets that wire tokens to elements.
   ============================================================ */
:root {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-strong);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p { margin: 0; text-wrap: pretty; }

a { color: var(--turquoise-action); text-decoration: none; }

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

::selection { background: color-mix(in oklab, var(--turquoise) 30%, transparent); }

/* Dark mode is defined in tokens/colors.css ([data-theme="dark"]). */
