@charset "UTF-8";
:root {
  --ink:#0069bdf0;
  --navy:#08131c;
  --green:#00c75b;
  --green-light:#7FC79A;
  --green-deep:#0E4A33;
  --paper:#F3F0E4;
  --paper-dim:#EAE5D4;
  --line:#D9D2BC;
  --amber:#D98C3D;
  --rust:#C75B39;
  --wrap: min(85vw, 1500px);
  --fs-eyebrow: 14px;
  --fs-body: 1.12rem;
  --fs-lead: 1.32rem;
  --fs-h2: clamp(2.1rem, 3.2vw, 3.05rem);
  --fs-h1: clamp(2.7rem, 5vw, 4rem);
  --fs-h3: 1.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-size: var(--fs-body);
  line-height: 1.6;
}

h1, h2, h3, h4, .display-font {
  font-family: "Source Sans 3", sans-serif;
  letter-spacing: -0.012em;
  font-weight: 600;
}

a {
  text-decoration: none !important;
}

.mono {
  font-family: "Montserrat", sans-serif;
}

a {
  color: inherit;
}

a:hover {
  color: var(--green);
}

::-moz-selection {
  background: var(--green);
  color: #fff;
}

::selection {
  background: var(--green);
  color: #fff;
}

img {
  max-width: 100%;
}

/* ---------- Wrap (80% width, max 1500px) ---------- */
.wrap {
  width: 90%;
  max-width: 1700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 991px) {
  :root {
    --wrap: 92vw;
  }
}
/* ---------- Eyebrow ---------- */
.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-deep);
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  font-weight: 600;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--green);
  display: inline-block;
}

.on-dark .eyebrow {
  color: var(--green);
}

.on-dark .eyebrow::before {
  background: var(--green-light);
}

.section-pad {
  padding: 96px 0;
}

@media (max-width: 767px) {
  .section-pad {
    padding: 64px 0;
  }
}
.hairline {
  border-top: 1px solid var(--line);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 110ms);
}

/* ---------- Section break / journey markers ---------- */
.track-break {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 30px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);
}

.track-break.flip {
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

.track-break .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.track-break .seq {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a8e88;
}

.track-break .seq b {
  color: var(--green-light);
}

.track-break .seq .arrow {
  color: var(--green);
  font-size: 16px;
}

.track-break .seq .now {
  color: #fff;
  font-weight: 600;
}

.track-break .progress-dots {
  display: flex;
  gap: 8px;
}

.track-break .progress-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.track-break .progress-dots span.active {
  background: var(--green-light);
  box-shadow: 0 0 0 3px rgba(127, 199, 154, 0.18);
}

/* ---------- Navbar ---------- */
.navbar-ca {
  position: absolute;
  background: rgba(11, 26, 38, 0.94);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  top: 0;
  z-index: 1200;
  border-bottom: 1px solid rgba(127, 199, 154, 0.18);
  width: 100%;
}

.navbar-ca .navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}

.navbar-ca .brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.navbar-ca .brand-mark img {
  height: 35px;
}

.navbar-ca .brand-text {
  font-family: "Space Grotesk", sans-serif;
  color: #fff;
  font-size: 17px;
  line-height: 1.15;
  white-space: nowrap;
}

.navbar-ca .brand-text small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--green-light);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  font-size: 14.5px;
  color: #cdd6dc;
  margin: 0 13px;
  position: relative;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 1.5px;
  background: var(--green-light);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.btn-ca-outline {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 13.5px;
  padding: 9px 17px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-ca-outline:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  transform: translateY(-1px);
}

.btn-ca-solid {
  background: var(--green);
  color: #fff;
  font-size: 13.5px;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.btn-ca-solid:hover {
  background: var(--green-light);
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(47, 143, 91, 0.35);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

.mobile-nav-collapse {
  display: none;
}

@media (max-width: 1199px) {
  .nav-links {
    display: none;
  }
  .nav-ctas {
    display: none;
  }
  .navbar-toggler-btn {
    display: flex;
  }
  .mobile-nav-collapse.open {
    display: block;
  }
}
.navbar-toggler-btn {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  padding: 8px 11px;
  cursor: pointer;
}

.navbar-toggler-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  margin: 4px 0;
  transition: 0.2s;
}

.mobile-nav-collapse {
  padding-top: 18px;
}

.mobile-nav-collapse a {
  display: block;
  color: #cdd6dc;
  padding: 10px 0;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-collapse a:hover {
  color: #fff;
}

.mobile-ctas {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

/* ---------- Hero video background ---------- */
/* Hero: stack children vertically, push stats to the bottom */
.hero {
  position: relative;
  color: #fff;
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  min-height: calc(100vh - 0px);
  display: flex;
  flex-direction: column; /* was row via default — this was the bug */
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 160px 0 60px;
  flex: 1;
  display: flex;
  align-items: center; /* vertically center just the text content */
}

/* Stats: pinned to bottom, no longer competing with hero-inner for centering */
.hero-stats {
  position: relative;
  z-index: 6;
  margin-top: auto;
  background: rgba(6, 17, 26, 0.9215686275);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(0, 199, 91, 0.25);
}

.mobile-nav-collapse {
  display: none !important;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: rgba(6, 17, 26, 0.98);
  padding: 18px 0;
  z-index: 1199;
}

.mobile-nav-collapse.open {
  display: block !important;
}

/* Tidy the desktop row so it never wraps on normal desktop widths */
.navbar-ca .navrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.nav-links a {
  margin: 0 12px;
  white-space: nowrap;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  white-space: nowrap;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.hero .hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 38, 0.55) 0%, rgba(11, 26, 38, 0.72) 55%, rgba(11, 26, 38, 0.92) 100%), radial-gradient(ellipse at 72% 12%, rgba(0, 199, 91, 0.28) 0%, transparent 55%);
}

.hero .grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
  background-image: linear-gradient(rgba(0, 255, 115, 0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 199, 91, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 22%, black 72%, transparent);
          mask-image: linear-gradient(to bottom, transparent, black 22%, black 72%, transparent);
  animation: gridfloat 30s linear infinite;
}

@keyframes gridfloat {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 48px 96px;
  }
}
.hero-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 140px 0 0;
}

.hero-kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 11px;
}

.hero-kicker::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--green);
  display: inline-block;
}

.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.02;
  color: #fff;
  margin: 22px 0 24px;
  font-weight: 700;
}

.hero h1 .accent {
  color: var(--green);
  display: block;
}

.hero p.lead {
  font-size: var(--fs-lead);
  color: #ffffff;
  max-width: 600px;
  line-height: 1.65;
}

.hero-ctas {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary-ca {
  background: var(--green);
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15.5px;
  border-radius: 40px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary-ca:hover {
  background: #00e065;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 199, 91, 0.32);
}

.btn-secondary-ca {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
  padding: 15px 30px;
  font-weight: 600;
  font-size: 15.5px;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.25s;
}

.btn-secondary-ca:hover {
  background: #0058a0;
  transform: translateY(-2px);
}

/* video playback controls (decorative, matches reference) */
.hero-video-controls {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hero-video-controls button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: rgba(11, 26, 38, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px);
  transition: 0.2s;
}

.hero-video-controls button:hover {
  background: var(--green);
}

.hero-video-controls button svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.hero-video-controls .hvc-main {
  width: 56px;
  height: 56px;
}

/* ---------- Stats strip ---------- */
.hero-stats {
  position: relative;
  z-index: 6;
  background: rgba(6, 17, 26, 0.9215686275);
  backdrop-filter: blur(4px);
  border-top: 1px solid rgba(0, 199, 91, 0.25);
}

.hero-stats .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stats .hs-item {
  padding: 26px 24px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats .hs-item:first-child {
  border-left: none;
}

.hero-stats .hs-item b {
  font-family: "Source Sans 3", sans-serif;
  font-size: 3rem;
  color: #fff;
  display: block;
  line-height: 1;
}

.hero-stats .hs-item span {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9fb0ba;
  display: block;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .hero-stats .wrap {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stats .hs-item:nth-child(3) {
    border-left: none;
  }
}
/* ---------- Section 2: core shift ---------- */
.shift-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 36px 30px;
  height: 100%;
  position: relative;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 3px;
}

.shift-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(11, 26, 38, 0.1);
  border-color: var(--green);
}

.shift-card .num {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: var(--green);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.shift-card h3 {
  font-size: var(--fs-h3);
  margin: 12px 0 12px;
}

.shift-card p {
  font-size: 1.02rem;
  color: #3c4a52;
  margin-bottom: 0;
  line-height: 1.65;
}

.shift-card .glyph {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.shift-card:hover .glyph {
  background: var(--green);
  transform: rotate(8deg) scale(1.06);
}

.cadence-table {
  font-size: 0.95rem;
  width: 100%;
}

.cadence-table th {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7780;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.cadence-table td {
  padding: 11px 12px 11px 0;
  border-bottom: 1px dashed var(--line);
  vertical-align: top;
}

.cadence-table tr td:first-child {
  color: #94978a;
}

.cadence-table tr td:last-child {
  color: var(--green-deep);
  font-weight: 600;
}

/* ---------- Photo strip ---------- */
.photo-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  height: 260px;
}

.photo-strip .ph {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.photo-strip .ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 26, 38, 0.78) 100%);
}

.photo-strip .ph span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}

.photo-strip .ph {
  transition: 0.4s;
}

.photo-strip .ph:hover {
  transform: scale(1.015);
}

@media (max-width: 767px) {
  .photo-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }
  .photo-strip .ph {
    height: 160px;
  }
}
/* ---------- Section 3: missions ---------- */
.bg-dark-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-dark-section::before {
  content: "";
  position: absolute;
  left: -180px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 199, 154, 0.12), transparent 70%);
  pointer-events: none;
}

.mission-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  height: 100%;
  cursor: pointer;
  transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.mission-card .mc-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: scale(1.04);
}

.mission-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 26, 38, 0.25) 0%, rgba(11, 26, 38, 0.95) 80%);
}

.mission-card .mc-body {
  position: relative;
  z-index: 2;
  padding: 32px 28px 26px;
}

.mission-card:hover {
  border-color: var(--green-light);
  transform: translateY(-5px);
}

.mission-card:hover .mc-photo {
  opacity: 0.46;
  transform: scale(1.1);
}

.mission-card .tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: var(--green-light);
  letter-spacing: 0.1em;
  font-weight: 600;
}

.mission-card h3 {
  font-size: 1.42rem;
  margin: 14px 0 15px;
  color: #fff;
}

.mission-card p {
  font-size: 1rem;
  color: #cdd6dc;
  line-height: 1.65;
}

.mission-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.94rem;
  color: #dde6e2;
}

.mission-card.open .mission-more {
  max-height: 220px;
  margin-top: 12px;
}

.mission-card .outcome {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  color: #7FC79A;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.mission-card .chevron {
  position: absolute;
  top: 28px;
  right: 24px;
  font-size: 20px;
  color: #cdd6dc;
  transition: 0.3s;
  z-index: 3;
}

.mission-card.open .chevron {
  transform: rotate(45deg);
  color: var(--green-light);
}

/* ---------- Video section ---------- */
.video-section {
  background: var(--paper-dim);
  position: relative;
}

.video-frame-wrap {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(11, 26, 38, 0.22);
  border: 1px solid var(--line);
  background: #000;
}

.video-frame-wrap .video-ratio {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video-frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-cover {
  position: absolute;
  inset: 0;
  cursor: pointer;
  z-index: 5;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.video-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 38, 0.42);
  transition: 0.3s;
}

.video-cover:hover::before {
  background: rgba(11, 26, 38, 0.28);
}

.video-cover .play-btn {
  position: relative;
  z-index: 2;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(3px);
}

.video-cover:hover .play-btn {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.08);
}

.video-cover .play-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  margin-left: 3px;
}

.video-cover .play-btn::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  animation: ringpulse 2.4s ease-out infinite;
}

@keyframes ringpulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.video-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 24px 28px;
  background: linear-gradient(180deg, transparent, rgba(11, 26, 38, 0.85));
  color: #fff;
}

.video-caption .vc-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  font-weight: 600;
}

.video-caption h4 {
  color: #fff;
  font-size: 1.2rem;
  margin: 6px 0 0;
}

.video-meta-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.video-meta-row .vm {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  color: #6b7780;
  letter-spacing: 0.04em;
}

.video-meta-row .vm b {
  color: var(--green-deep);
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
}

/* ---------- Section 4: tracker ---------- */
.tracker-summary {
  background: #fff;
  border: 1px solid var(--line);
  padding: 30px 32px;
}

.bar-track {
  height: 12px;
  background: var(--paper-dim);
  border-radius: 6px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-deep), var(--green));
  border-radius: 6px;
  transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

.bar-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  width: 40%;
  animation: shimmer 2.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}
.tracker-stats {
  display: flex;
  gap: 34px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.tracker-stats div b {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  display: block;
  color: var(--ink);
}

.tracker-stats div span {
  font-size: 0.85rem;
  color: #7a8388;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tracker-table {
  width: 100%;
  font-size: 0.95rem;
}

.tracker-table th {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8388;
  text-align: left;
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
}

.tracker-table td {
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.tracker-table tr td:first-child {
  border-left: 3px solid transparent;
  transition: 0.2s;
}

.tracker-table tr:hover td {
  background: #fbf9f2;
}

.tracker-table tr:hover td:first-child {
  border-left-color: var(--green);
}

.tid {
  font-family: "Montserrat", sans-serif;
  color: var(--green-deep);
  font-weight: 600;
}

.status-pill {
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-implemented {
  background: rgba(47, 143, 91, 0.12);
  color: var(--green-deep);
}

.status-implemented::before {
  background: var(--green);
}

.status-active {
  background: rgba(217, 140, 61, 0.14);
  color: #8a5a1f;
}

.status-active::before {
  background: var(--amber);
  animation: blink 1.6s infinite;
}

@keyframes blink {
  50% {
    opacity: 0.3;
  }
}
.status-stalled {
  background: rgba(199, 91, 57, 0.12);
  color: #8a3a23;
}

.status-stalled::before {
  background: var(--rust);
}

/* ---------- Section 5: mission partnership ---------- */
.partner-belt {
  background: var(--green-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.partner-belt .pb-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.16;
}

.partner-belt::before {
  content: "";
  position: absolute;
  right: -130px;
  top: -130px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 199, 154, 0.2), transparent 70%);
  animation: drift 12s ease-in-out infinite alternate;
  z-index: 1;
}

@keyframes drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-22px, 22px);
  }
}
.partner-pool {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 24px;
  height: 100%;
  transition: 0.3s;
  background: rgba(14, 74, 51, 0.3);
}

.partner-pool:hover {
  border-color: var(--green-light);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.partner-pool .label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--green-light);
  text-transform: uppercase;
  font-weight: 600;
}

.partner-pool h4 {
  font-size: 1.15rem;
  margin: 10px 0 8px;
  color: #fff;
}

.partner-pool p {
  font-size: 0.92rem;
  color: #cfe3d6;
  margin-bottom: 0;
}

.who-chip {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.86rem;
  margin: 4px 4px 0 0;
  color: #e7efe9;
  transition: 0.2s;
}

.who-chip:hover {
  border-color: var(--green-light);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- Section 6: knowledge ---------- */
.brief-card {
  border: 1px solid var(--line);
  background: #fff;
  height: 100%;
  transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  overflow: hidden;
}

.brief-card:hover {
  box-shadow: 0 18px 34px rgba(11, 26, 38, 0.08);
  transform: translateY(-4px);
  border-color: var(--green);
}

.brief-card .bc-photo {
  height: 148px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.brief-card .bc-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 26, 38, 0.18), transparent 60%);
}

.brief-card .bc-body {
  padding: 24px;
}

.brief-card .kicker {
  font-family: "Montserrat", sans-serif;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  font-weight: 600;
}

.brief-card h4 {
  font-size: 1.14rem;
  margin: 12px 0 10px;
}

.brief-card p {
  font-size: 0.95rem;
  color: #566066;
  margin-bottom: 16px;
}

.brief-card .meta {
  font-size: 0.78rem;
  color: #9aa1a3;
  font-family: "Montserrat", sans-serif;
  display: flex;
  justify-content: space-between;
  border-top: 1px dashed var(--line);
  padding-top: 11px;
}

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #9fb0ba;
  padding: 60px 0 28px;
  font-size: 0.92rem;
}

footer h5 {
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  margin-bottom: 16px;
}

footer a {
  color: #9fb0ba;
  text-decoration: none;
}

footer a:hover {
  color: var(--green-light);
}

footer .legal-note {
  font-size: 0.84rem;
  color: #6c7a80;
  line-height: 1.65;
}

.foot-form input {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 11px 13px;
  font-size: 0.9rem;
  border-radius: 3px;
  width: 100%;
}

.foot-form input::-moz-placeholder {
  color: #6c7a80;
}

.foot-form input::placeholder {
  color: #6c7a80;
}

.foot-form button {
  background: var(--green);
  border: none;
  color: #fff;
  padding: 11px 17px;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 3px;
  margin-top: 9px;
  transition: 0.2s;
}

.foot-form button:hover {
  background: var(--green-light);
  color: var(--ink);
  transform: translateY(-1px);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding-top: 22px;
  font-size: 0.82rem;
  color: #6c7a80;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* general */
.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 16px;
}

.section-sub {
  color: #566066;
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.65;
}

.on-dark .section-sub {
  color: #aab7bd;
}

.btn-ghost-dark {
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: 0.25s;
}

.btn-ghost-dark:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.partner-belt .section-sub {
  color: #fff;
}

#africa-map {
  max-width: 800px;
}

/* ---------- Regional activation network / hub map ---------- */
.hubmap-wrap {
  position: relative;
}

.africa-map {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* Any country path becomes interactive once the JS tags it .hub-node */
.hub-node {
  cursor: pointer;
  transition: fill 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.35s;
}

.hub-node:hover {
  filter: brightness(1.15);
}

.hub-node.active {
  filter: drop-shadow(0 0 10px rgba(0, 105, 189, 0.5));
}

/* Tabs */
.hub-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hub-tab {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #cdd6dc;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hub-tab:hover {
  border-color: var(--green-light);
  color: #fff;
}

.hub-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 105, 189, 0.35);
}

/* Card */
.hub-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 34px 32px;
  border-radius: 4px;
  min-height: 280px;
  transition: opacity 0.25s ease;
}

.hub-card.fade {
  opacity: 0;
}

.hub-card-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 14px;
}

.hub-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.hub-card p {
  color: #cdd6dc;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.hub-card-ctas {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hub-link {
  font-family: "Montserrat", sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: #9fb0ba;
  border-bottom: 1px solid rgba(159, 176, 186, 0.4);
  padding-bottom: 2px;
  transition: 0.2s;
}

.hub-link:hover {
  color: var(--green-light);
  border-color: var(--green-light);
}

/* Progress + dots */
.hub-progress {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.hub-progress-track {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.hub-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--ink);
  border-radius: 2px;
}

.hub-progress-fill.animate {
  animation: hubProgress 6s linear;
}

@keyframes hubProgress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
.hub-dots {
  display: flex;
  gap: 8px;
}

.hub-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: 0.2s;
}

.hub-dots span.active {
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(0, 105, 189, 0.22);
}

.hub-auto-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #6c7a80;
  text-transform: uppercase;
}

.city-marker {
  pointer-events: none;
}

.city-dot {
  fill: #fff;
  stroke: rgba(0, 105, 189, 0.9411764706);
  stroke-width: 0.4;
}

.city-pulse {
  fill: rgba(0, 105, 189, 0.9411764706);
  opacity: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: cityPulse 2s ease-out infinite;
}

.city-label {
  font-family: "Montserrat", sans-serif;
  font-size: 3px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  fill: #fff;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

@keyframes cityPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(3.2);
    opacity: 0;
  }
  100% {
    transform: scale(3.2);
    opacity: 0;
  }
}/*# sourceMappingURL=styles.css.map */