/* CSS Reset - Modern, Minimal */

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  font-family: var(--font-sans);
  color: var(--color-gray-900);
  background-color: var(--color-white);
}

/* Remove default styling */
ul, ol {
  list-style: none;
}

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

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

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

button {
  cursor: pointer;
  background: none;
  border: none;
}

/* Remove tap highlight on mobile */
a, button {
  -webkit-tap-highlight-color: transparent;
}

/* Remove default focus outline - we'll add our own */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-blue-600);
  outline-offset: 2px;
}

/* Prevent font size adjustment on orientation change */
html {
  -webkit-text-size-adjust: 100%;
}
