:root {
  --red: #E30A17;
  --red-dark: #B90813;
  --navy: #101C30;
  --navy-soft: #1A2A45;
  --header-bg: #101C30;
  --ink: #1F2937;
  --ink-soft: #4B5563;
  --paper: #FFFFFF;
  --paper-alt: #F7F5F2;
  --line: #E5E1DB;
  --radius: 14px;
  --container: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-mark { width: 32px; height: 32px; }

.brand-text {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.brand-text strong { font-weight: 800; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 500;
}
.nav-links a:hover { color: #fff; text-decoration: none; }

.nav-cta {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}
.nav-cta:hover { border-color: #fff; }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(ellipse 90% 70% at 70% 10%, rgba(227, 10, 23, 0.22), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: #fff;
  padding: 110px 0 120px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 22px;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.13rem;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

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

.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { border-color: #fff; }

.btn-card {
  background: var(--navy);
  color: #fff;
  padding: 10px 20px;
  font-size: 0.88rem;
}
.btn-card:hover { background: var(--navy-soft); }

/* ---------- Stats ---------- */

.stats {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* ---------- Sections ---------- */

.section { padding: 90px 0; }

.section-alt { background: var(--paper-alt); }

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-sub {
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 44px;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 18px;
  align-items: start;
}

.about-text p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.03rem; }
.about-text a { font-weight: 600; }

.pillars { list-style: none; display: grid; gap: 20px; }

.pillars li {
  border-left: 3px solid var(--red);
  padding: 4px 0 4px 20px;
}

.pillars h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.pillars p { font-size: 0.94rem; color: var(--ink-soft); }

/* ---------- Council cards ---------- */

.council-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 720px) {
  .council-grid { grid-template-columns: 1fr; }
}

.council-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.council-card:hover {
  box-shadow: 0 12px 32px rgba(16, 28, 48, 0.10);
  transform: translateY(-3px);
}

.council-card h3 { font-size: 1.18rem; font-weight: 700; }

.council-card p { font-size: 0.94rem; color: var(--ink-soft); flex-grow: 1; }

.badge {
  align-self: flex-start;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(227, 10, 23, 0.08);
  border-radius: 999px;
  padding: 5px 12px;
}

.badge-soon {
  color: var(--ink-soft);
  background: rgba(31, 41, 55, 0.07);
}

.council-card-soon {
  border-style: dashed;
  background: transparent;
}

.card-links { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- CTA section ---------- */

.cta-section {
  background:
    radial-gradient(ellipse 80% 90% at 30% 100%, rgba(227, 10, 23, 0.20), transparent 60%),
    var(--navy);
  color: #fff;
  text-align: center;
}

.cta-inner { max-width: 660px; }

.cta-section p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #0B1424;
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 30px;
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-text { font-size: 1.15rem; }
.footer-brand p { margin-top: 12px; max-width: 380px; }
.footer-brand a { color: #fff; font-weight: 600; }

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links h4 {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.footer-links a { color: rgba(255, 255, 255, 0.75); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .nav-links { gap: 18px; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 80px 0 90px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .section { padding: 64px 0; }
}
