/* Base Styles and Typography */
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  padding-top: 64px; /* Account for fixed header height */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  transition: opacity 0.2s ease;
}

a {
  color: var(--blue);
  text-decoration: none;
}

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

h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 8px;
}

.container {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0 20px;
}

.lead {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5;
}

.muted {
  color: var(--muted);
}