/*
  Global reset + full-height flow rules.
  Brandbook Section 5.1: no boxed/bordered outer app wrapper anywhere in the
  product. The page shell always flows edge-to-edge to the viewport.
*/
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: var(--type-body);
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: var(--font-mono);
}

a {
  color: inherit;
}

button {
  font-family: inherit;
}
