/* base.css – resets + base typography */

*{box-sizing:border-box}


body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.55;
}

.muted{ color: var(--muted); }

