/* CSS Reset — minimal, modern */
*, *::before, *::after { box-sizing: border-box; }

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: var(--app-leading-normal, 1.5);
  font-family: var(--app-font-sans);
  color: hsl(var(--app-foreground));
  background: hsl(var(--app-background));
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

a { color: inherit; text-decoration: none; }

button { cursor: pointer; }

:focus-visible {
  outline: 2px solid hsl(var(--app-primary));
  outline-offset: 2px;
}
