
/* global.css */

/* --- 1. BRAND VARIABLES --- */
:root {
  --blue-900: #0b4678;
  --accent: #1075cd;
  --text: #1a1a1a;
  --muted-bg: #e7f1fb;
  --danger: #ff0000;
  --white: #ffffff;
  --container-max: 1280px;
}

/* --- 2. CORE RESET --- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

/* --- 3. REUSABLE UTILITIES --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Shared Section Header Style */
.section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.section-kicker {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
  display: block;
}