/* ── Reset & Base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #06101c;
  --bg2:       #0a1828;
  --bg3:       #0e1f33;
  --navy:      #0E3F66;
  --bord:      rgba(14,63,102,0.4);
  --bord2:     rgba(255,255,255,0.07);
  --orange:    #FF8939;
  --orange2:   #e67020;
  --red:       #e84040;
  --t1:        #f0f2f5;
  --t2:        #8fa8c0;
  --t3:        #4a6880;
  --font:      'Inter', system-ui, sans-serif;
  --font2:     'Space Grotesk', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--bord);
  backdrop-filter: blur(16px);
  background: rgba(11,12,14,0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 18px;
  width: auto;
  display: block;
}
.logo-img--footer {
  height: 16px;
  opacity: 0.8;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--t2);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--t1); }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 24px 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,63,102,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,63,102,0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-grid::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 40%, rgba(14,63,102,0.08) 0%, var(--bg) 75%);
}
.hero-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,137,57,0.12);
  border: 1px solid rgba(255,137,57,0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font2);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.accent { color: var(--orange); }
.hero-sub {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn-primary {
  background: var(--orange);
  color: #000;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--bord);
  color: var(--t2);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 32px;
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--t3); color: var(--t1); }

.hero-stat-row {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--bord);
  padding: 28px 0 40px;
}
.hero-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}
.hero-stat:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font2);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-stat-div {
  width: 1px;
  height: 48px;
  background: var(--bord);
  flex-shrink: 0;
}

/* ── Sections ─────────────────────────────────────────────────── */
.section {
  padding: 96px 24px;
}
.section--dark {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  border-bottom: 1px solid var(--bord);
}
.section--statement {
  background: rgba(240,178,50,0.03);
  border-top: 1px solid rgba(255,137,57,0.12);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.container--narrow {
  max-width: 800px;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font2);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-sub {
  font-family: var(--font2);
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.section-intro {
  font-size: 17px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 56px;
}

/* ── Timeline ─────────────────────────────────────────────────── */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 72px;
}
.tl-item {
  display: flex;
  gap: 32px;
}
.tl-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 20px;
}
.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--t3);
  border: 2px solid var(--bg);
  flex-shrink: 0;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}
.tl-dot--red  { background: var(--red); }
.tl-dot--gold { background: var(--orange); }
.tl-line {
  flex: 1;
  width: 1px;
  background: var(--bord);
  margin: 6px 0;
  min-height: 40px;
}
.tl-body {
  padding-bottom: 48px;
  flex: 1;
}
.tl-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.tl-title {
  font-family: var(--font2);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.tl-text {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 10px;
  max-width: 640px;
}
.tl-accent {
  color: var(--orange);
  font-style: italic;
}

/* ── Quote ────────────────────────────────────────────────────── */
.quote-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 40px 40px 48px;
  background: var(--bg2);
  border: 1px solid var(--bord);
  border-radius: 8px;
  position: relative;
}
.quote-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--orange);
  border-radius: 8px 0 0 8px;
}
.quote-text {
  font-family: var(--font2);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--t1);
  font-style: normal;
}
.quote-author {
  font-size: 13px;
  color: var(--t3);
  letter-spacing: 0.05em;
}

/* ── Ethics Grid ──────────────────────────────────────────────── */
.ethics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.ethics-card {
  background: var(--bg3);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.2s;
}
.ethics-card:hover { border-color: var(--t3); }
.ethics-icon {
  font-size: 24px;
  margin-bottom: 16px;
}
.ethics-title {
  font-family: var(--font2);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ethics-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
}

/* ── Accountability ───────────────────────────────────────────── */
.accountability-block {
  background: var(--bg3);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 36px;
}
.acc-title {
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}
.acc-text {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 700px;
}
.acc-text strong { color: var(--t1); }
.acc-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.acc-label {
  font-size: 12px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.acc-email {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.2s;
}
.acc-email:hover { opacity: 0.75; }
.acc-badge {
  font-size: 11px;
  background: rgba(255,137,57,0.12);
  border: 1px solid rgba(255,137,57,0.25);
  color: var(--orange);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ── Statement ────────────────────────────────────────────────── */
.statement-block {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
}
.statement-icon { font-size: 32px; flex-shrink: 0; margin-top: 4px; }
.statement-text {
  font-size: 15px;
  color: var(--t2);
  line-height: 1.8;
}
.statement-text strong { color: var(--t1); }

/* ── Contact ──────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--bg2);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 24px;
}
.contact-label {
  font-size: 11px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.contact-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--t1);
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--orange); }

.links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.ext-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--t2);
  border: 1px solid var(--bord);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color 0.2s, border-color 0.2s;
}
.ext-link:hover { color: var(--t1); border-color: var(--t3); }
.clearance-badge {
  font-size: 10px;
  background: rgba(232,64,64,0.12);
  border: 1px solid rgba(232,64,64,0.2);
  color: var(--red);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--bord);
  padding: 56px 24px 32px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  height: fit-content;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-row {
  display: flex;
  gap: 16px;
  font-size: 13px;
}
.fi-label {
  color: var(--t3);
  min-width: 100px;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.fi-val { color: var(--t2); }
.fi-link { color: var(--orange); transition: opacity 0.2s; }
.fi-link:hover { opacity: 0.75; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--bord);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  border-top: 1px solid var(--bord);
}
.footer-copy { font-size: 12px; color: var(--t3); }
.footer-un   { font-size: 11px; color: var(--t3); }

/* ── Burger ───────────────────────────────────────────────────── */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--t1);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, width 0.25s;
  transform-origin: center;
}
.burger span:nth-child(3) { width: 60%; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu overlay ──────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  background: rgba(6,16,28,0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
}
.mobile-link {
  font-family: var(--font2);
  font-size: 22px;
  font-weight: 600;
  color: var(--t2);
  padding: 16px 0;
  border-bottom: 1px solid var(--bord);
  transition: color 0.2s;
  letter-spacing: -0.01em;
}
.mobile-link:hover { color: var(--t1); }
.mobile-cta {
  display: inline-block;
  margin-top: 28px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,137,57,0.35);
  padding: 12px 24px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.2s;
}
.mobile-cta:hover { background: rgba(255,137,57,0.1); }

/* ── Nav CTA ──────────────────────────────────────────────────── */
.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  border: 1px solid rgba(255,137,57,0.35);
  padding: 7px 18px;
  border-radius: 5px;
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: rgba(255,137,57,0.1); }

/* ── Hero mission statement ───────────────────────────────────── */
.mission-statement {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  padding: 24px 28px;
  background: rgba(14,63,102,0.2);
  border-left: 3px solid var(--navy);
  border-radius: 0 6px 6px 0;
}
.mission-statement p { font-size: 15px; color: var(--t2); line-height: 1.75; }
.mission-statement strong { color: var(--t1); }

/* ── Pillars (mission bottom row) ────────────────────────────── */
.pillars-row {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid var(--bord);
  padding: 36px 0 48px;
}
.pillar {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 32px;
}
.pillar:first-child { padding-left: 0; }
.pillar-icon { font-size: 22px; }
.pillar-title {
  font-family: var(--font2);
  font-size: 15px;
  font-weight: 600;
  color: var(--t1);
}
.pillar-text { font-size: 13px; color: var(--t3); line-height: 1.6; }
.pillar-div {
  width: 1px;
  height: 80px;
  background: var(--bord);
  flex-shrink: 0;
  margin-top: 4px;
}

/* ── Field Engagement ─────────────────────────────────────────── */
.how-works-title {
  font-family: var(--font2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 20px;
}
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.eng-card {
  background: var(--bg3);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 36px;
  position: relative;
}
.eng-num {
  font-family: var(--font2);
  font-size: 48px;
  font-weight: 700;
  color: rgba(255,137,57,0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.eng-title {
  font-family: var(--font2);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--t1);
}
.eng-text { font-size: 15px; color: var(--t2); line-height: 1.75; }

/* ── Capabilities ─────────────────────────────────────────────── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.cap-card {
  background: var(--bg2);
  border: 1px solid var(--bord);
  border-radius: 8px;
  padding: 28px;
  transition: border-color 0.2s;
}
.cap-card:hover { border-color: var(--navy); }
.cap-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.cap-icon {
  font-size: 20px;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
}
.cap-title {
  font-family: var(--font2);
  font-size: 16px;
  font-weight: 600;
  color: var(--t1);
}
.cap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
.cap-list li {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.65;
  padding-left: 16px;
  position: relative;
}
.cap-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 11px;
}
.opsec-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(14,63,102,0.15);
  border: 1px solid rgba(14,63,102,0.4);
  border-radius: 8px;
  padding: 24px 28px;
}
.opsec-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.opsec-text { font-size: 13px; color: var(--t3); line-height: 1.7; }
.opsec-text strong { color: var(--t2); }

/* ── Timeline dot orange ──────────────────────────────────────── */
.tl-dot--orange { background: var(--orange); }

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: block; }

  .hero { padding: 100px 20px 0; }
  .hero-title { font-size: clamp(36px, 10vw, 60px); }
  .hero-sub { font-size: 14px; }

  .pillars-row { flex-direction: column; gap: 24px; padding: 28px 0 36px; }
  .pillar-div { display: none; }
  .pillar { padding: 0; }

  .mission-statement { padding: 18px 20px; }

  .engagement-grid { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .ethics-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .quote-block { padding: 28px 24px 28px 32px; }
  .section { padding: 64px 20px; }

  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  .links-row { flex-direction: column; }
}
