/* ==============================================
   Fernacular Base Reset
   Auto-generated by Frostroad governance engine
   DO NOT EDIT — changes will be overwritten
   ============================================== */

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

html {
  font-family: var(--font-mono);
  font-size: 16px;
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg-base);
  color: var(--text-primary);
  min-height: 100vh;
}

a { color: var(--accent-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
code, pre, kbd { font-family: var(--font-mono); }
::selection { background: var(--accent-primary); color: var(--text-primary); }

input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
