:root {
  --primary: #003d9b;
  --secondary: #00687b;
  --accent: #e05c00;
  --success: #1a7f3c;
  --error: #ba1a1a;
  --background: #faf8ff;
  --surface: #ffffff;
  --surface-soft: #f1f5ff;
  --text: #1a1b21;
  --muted: #565b69;
  --outline: #747783;
  --outline-soft: #d8dbe7;
  --shadow: 0 18px 50px rgba(0, 61, 155, .12);
  --radius: 8px;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; max-width: 100%; overflow-x: hidden; font-family: var(--font-body); color: var(--text); background: var(--background); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.material-symbols-outlined { font-size: 24px; vertical-align: middle; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-align: center;
  cursor: pointer;
}
.button.primary { background: var(--primary); color: #fff; }
.button.secondary { border-color: var(--outline-soft); background: #fff; color: var(--primary); }
.eyebrow {
  margin: 0 0 10px;
  color: var(--secondary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.notice {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff6df;
  color: #654400;
  font-size: .88rem;
  line-height: 1.5;
}
