:root {
  --blue-deep: #0A2E4F;
  --blue-medium: #0D3A63;
  --blue-light: #4A90E2;
  --blue-lighter: #6BA3E8;
  --white: #FFFFFF;
  --gray-soft: #F2F4F6;
  --gray-border: #E8EAED;
  --gray-medium: #D1D5DB;
  --text-dark: #1F2A33;
  --text-gray: #5F6C76;
  --text-light: #7A8796;
  
  /* Spacing scale */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 60px;
  --space-2xl: 80px;
  --space-3xl: 120px;
  
  /* Typography scale */
  --text-xs: 0.8rem;
  --text-sm: 0.9rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.25rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-gray);
  background-color: var(--white);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--text-5xl);
  font-weight: 700;
}

h2 {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-md);
}

h3 {
  font-size: var(--text-xl);
}

h4 {
  font-size: var(--text-lg);
}

p {
  font-size: var(--text-base);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.lead {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--text-gray);
}

a {
  text-decoration: none;
  color: var(--blue-light);
  transition: color 0.2s ease;
}

a:hover {
  color: var(--blue-deep);
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Selection color */
::selection {
  background-color: var(--blue-light);
  color: var(--white);
}

/* Focus states for accessibility */
:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 2px;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-blue { color: var(--blue-light); }
.text-dark { color: var(--text-dark); }
.text-muted { color: var(--text-light); }

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
