:root {
  --ink: #0f172a;
  --navy: #1a365d;
  --navy-light: #2c5282;
  --slate: #475569;
  --muted: #64748b;
  --paper: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --accent: #2b6cb0;
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

nav {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
}

.btn-primary:hover {
  background: #edf2f7;
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  padding: 12px 20px;
}

.hero {
  padding: 72px 24px 56px;
  text-align: left;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 16px;
  max-width: 18ch;
}

.lead {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 42rem;
  margin: 0 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions .btn-primary {
  background: var(--navy);
  color: var(--white);
}

.hero-actions .btn-primary:hover {
  background: var(--navy-light);
}

.hero-actions .btn-ghost {
  color: var(--navy);
  border-color: var(--border);
}

.hero-actions .btn-ghost:hover {
  background: var(--white);
}

section h2 {
  color: var(--navy);
  font-size: 1.35rem;
  margin: 0 0 20px;
}

.signals {
  padding: 24px 24px 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--navy);
}

.card .muted {
  color: var(--muted);
  font-weight: 500;
}

.card .count {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 12px;
}

.card p:last-child {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.trust {
  padding: 48px 24px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--slate);
  display: grid;
  gap: 10px;
  max-width: 40rem;
}

.numbers {
  padding: 48px 24px 64px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-date {
  font-size: 1rem;
  line-height: 1.4;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.provenance {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--muted);
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 24px 0;
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 640px) {
  .site-header .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    width: 100%;
    justify-content: flex-start;
  }
}
