:root {
  --navy: #0b1f3a;
  --navy-deep: #071426;
  --red: #c8102e;
  --red-dark: #8f0b20;
  --gold: #e8b93f;
  --ink: #1c2430;
  --paper: #f7f5f0;
  --max: 860px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

h1, h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
}

/* ---------- Alert bar ---------- */
.alert-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 10px 16px;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 20px 56px;
}
.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.hero-portrait { flex: 0 0 auto; text-align: center; }
.hero-portrait img {
  width: 150px;
  height: auto;
  border-radius: 8px;
  border: 3px solid var(--gold);
  box-shadow: 0 14px 34px rgba(0,0,0,0.4);
  display: block;
  margin: 0 auto 10px;
}
.portrait-caption {
  display: block;
  font-size: 0.78rem;
  color: #b9c4d8;
  line-height: 1.4;
}

.hero-copy { flex: 1 1 auto; max-width: 680px; }

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 16px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  line-height: 1.05;
  margin: 0 0 22px;
}
.lede {
  max-width: 640px;
  margin: 0 auto 34px;
  font-size: 1.08rem;
  color: #dbe2f0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn {
  display: inline-block;
  padding: 16px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(200, 16, 46, 0.4);
}
.btn-secondary {
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px rgba(232, 185, 63, 0.35);
}

/* ---------- Stats ---------- */
.stats { background: #fff; padding: 42px 20px; border-bottom: 1px solid #e4e0d6; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: 1fr; } }
.stat-number {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 6vw, 2.6rem);
  color: var(--red);
}
.stat-label { font-size: 0.88rem; color: #55606f; margin-top: 6px; }

/* ---------- Explainer ---------- */
.explainer { padding: 60px 20px; text-align: center; }
.explainer .container { max-width: 720px; }
.explainer h2 { font-size: 1.4rem; margin: 0 0 14px; }
.explainer h2:not(:first-child) { margin-top: 38px; }
.explainer p { color: #333d4a; text-align: center; }
.explainer .emphasis {
  background: #fff2e0;
  border-left: 4px solid var(--gold);
  border-right: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

/* ---------- Signup form ---------- */
.signup {
  background: #fff;
  padding: 56px 20px;
  text-align: center;
  border-top: 1px solid #e4e0d6;
  border-bottom: 1px solid #e4e0d6;
}
.signup h2 { font-size: 1.4rem; margin: 0 0 14px; }
.signup-lede {
  max-width: 560px;
  margin: 0 auto 28px;
  color: #333d4a;
}
.signup-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.form-row { width: 100%; }
.signup-form input[type="text"],
.signup-form input[type="email"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d3cec2;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
}
.signup-form input:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.signup-form .btn { width: 100%; border: none; cursor: pointer; }
.hp-field { position: absolute; left: -9999px; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.form-status {
  min-height: 1.2em;
  font-size: 0.88rem;
  font-weight: 600;
}
.form-status.show.ok { color: #1e7d32; }
.form-status.show.err { color: var(--red); }

/* ---------- Action ---------- */
.action {
  background: var(--navy);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.action h2 { color: #fff; font-size: 1.4rem; margin: 0 0 24px; }
.action blockquote {
  max-width: 620px;
  margin: 0 auto 32px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.06);
  border-left: 4px solid var(--red);
  border-radius: 6px;
  font-style: italic;
  color: #dbe2f0;
  text-align: center;
}
.action .fine-print { margin-top: 24px; color: #9fb0c9; font-size: 0.85rem; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 26px 20px 40px;
  text-align: center;
  background: #fff;
  font-size: 0.82rem;
  color: #6a7280;
}
.site-footer a { color: var(--navy); }
.fine-print { font-size: 0.78rem; color: #8a93a3; }
.paid-for { font-size: 0.78rem; color: #8a93a3; margin-top: 6px; }
