/* ── Design Tokens ──────────────────────────────────── */

:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --text: #1a2638;
  --muted: #64748b;
  --primary: #3f6fa5;
  --primary-dark: #2f5784;
  --line: #d6dee8;
  --radius: 16px;
  --shadow: 0 14px 38px rgba(20, 36, 61, 0.1);
}

/* ── Reset ──────────────────────────────────────────── */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  margin: 0 0 0.75rem;
  line-height: 1.15;
  font-family: "Outfit", sans-serif;
}

p {
  margin: 0 0 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── Layout ─────────────────────────────────────────── */

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  color: var(--muted);
  text-align: center;
}

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.64rem 0.95rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  color: #fff;
  background: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}

/* ── Typography helpers ─────────────────────────────── */

.eyebrow,
.section-eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.7rem;
}
