/* Typography and global text rules. */
:root {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}
html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  color: var(--text-primary);
  background: var(--background);
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
}
p {
  margin: 0;
  color: var(--text-secondary);
}
a {
  color: var(--link);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--link-hover);
}
button, input, textarea, select {
  font: inherit;
}
