/* CSS Reset - Modern Normalize Alternative */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%; /* 10px */
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Remove default margins */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
figure, hr {
  margin: 0;
  padding: 0;
}

/* Reset lists */
ol, ul {
  list-style: none;
}

/* Reset links */
a {
  text-decoration: none;
  color: inherit;
}

/* Reset buttons */
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* Reset form elements */
input, textarea, select {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Reset images */
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Reset tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Hidden attribute */
[hidden] {
  display: none !important;
}

/* Focus styles */
:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Print styles */
@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
}