/**
 * Base Styles
 * Root variables, resets, and foundational styles
 */

:root {
  color-scheme: only light;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f5f7;
  color: #1d1d1f;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  background: linear-gradient(180deg, #fcfcfd 0%, #f0f2f7 100%);
}

a {
  text-decoration: none;
  color: #2d6df6;
}