/* L&S WMS — Base element defaults built on tokens. */
:root {
  color-scheme: light;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
* { box-sizing: border-box; }
h1, h2, h3, h4 { color: var(--text-strong); font-weight: var(--fw-semibold); margin: 0; line-height: var(--lh-tight); }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }
/* Tabular numerals wherever numbers matter */
.tnum, .mono { font-variant-numeric: tabular-nums; }
.mono { font-family: var(--font-mono); }
