/* ==========================================================================
   CauseLogic — base element defaults (opt-in; tokens above are the contract)
   ========================================================================== */

:root {
  color-scheme: light;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background-color: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

code, kbd, samp, pre {
  font-family: var(--font-mono);
}

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

::selection {
  background: rgba(108, 184, 203, 0.35);
}
