/* Global styles - uses theme variables */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: var(--font-size-base);
}

body {
  font-family: var(--font-family);
  color: var(--color-neutral-800);
  line-height: var(--line-height);
  min-height: 100vh;
  background: var(--brand-gradient, white);
}

a {
  color: var(--color-primary-600);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary-700);
}

/* Utility: Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Utility: Print only - hidden on screen */
.print-only {
  display: none !important;
}
