/* Macro tracker — light base reset (overrides base server's base.css). */
@import 'variables.css';

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: var(--font-primary);
  color: var(--ink);
}

body {
  min-height: 100vh;
  margin: 0;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-base);
  text-align: left;
  color: var(--ink);
  background: var(--paper);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.01em; }
a { color: var(--color-primary); }
button { font-family: inherit; }
