:root {
  --navy: #06111d;
  --navy-2: #091827;
  --ink: #101820;
  --muted: #5f6b76;
  --line: #e7edf2;
  --blue: #008fe3;
  --blue-2: #22a8ff;
  --white: #fff;
  --soft: #f6f8fb;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.blue {
  color: var(--blue);
}
.topbar {
  height: 60px;
  background: #000001;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.navwrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.nav {
  display: flex;
  gap: 34px;
  align-items: center;
  color: #d9e4ee;
  font-size: 13px;
  font-weight: 700;
}
.nav a {
  opacity: 0.9;
}
.nav a:hover {
  color: var(--blue);
}
.nav .active {
  color: var(--blue);
}
.top-cta {
  background: linear-gradient(135deg, var(--blue), #38b8ff);
  color: #fff;
  padding: 12px 22px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 143, 227, 0.25);
}
.hero {
  min-height: 630px;
  position: relative;
  background: #07111b;
  overflow: hidden;
  padding-top: 60px;
  color: #fff;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 60px 0 0;
  background: linear-gradient(
      90deg,
      rgba(3, 9, 14, 0.95) 0%,
      rgba(4, 10, 16, 0.8) 32%,
      rgba(4, 10, 16, 0.22) 62%,
      rgba(4, 10, 16, 0.1) 100%
    ),
    url("../../assets/img/hero-background.png") center/cover no-repeat;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding: 84px 0 45px;
}
.eyebrow {
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  color: var(--blue);
  margin: 0 0 20px;
}
.hero h1 {
  font-size: 68px;
  line-height: 0.99;
  letter-spacing: -0.06em;
  margin: 0 0 24px;
  max-width: 650px;
}
.hero p {
  font-size: 18px;
  line-height: 1.55;
  color: #e3edf7;
  margin: 0;
  max-width: 560px;
}
.btns {
  display: flex;
  gap: 18px;
  margin-top: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 26px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), #35b7ff);
  color: #fff;
}
.btn-outline {
  border: 1px solid var(--blue);
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}
.stats {
  display: flex;
  gap: 0;
  margin-top: 54px;
}
.stat {
  min-width: 180px;
  padding: 0 36px 0 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.stat:first-child {
  padding-left: 0;
}
.stat svg {
  width: 32px;
  height: 32px;
  stroke: var(--blue);
}
.stat small {
  display: block;
  color: #c9d7e6;
  font-size: 12px;
  margin-bottom: 4px;
}
.stat strong {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}
section {
  position: relative;
}
.section {
  padding: 70px 0;
}
.light {
  background: #fff;
}
.soft {
  background: #f7f8fa;
}
.dark {
  background: linear-gradient(135deg, #06111d, #0a1a29);
  color: #fff;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 74px;
  align-items: center;
}
.section h2 {
  font-size: 42px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
  max-width: 560px;
}
.section p {
  line-height: 1.62;
  color: #536270;
  font-size: 15px;
}
.dark p {
  color: #c9d7e6;
}
.problem .issue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.issue {
  height: 146px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 14px 30px rgba(22, 40, 60, 0.06);
  font-size: 13px;
  font-weight: 900;
}
.issue svg {
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  stroke: #1c252e;
}
.problem-note {
  font-weight: 800;
  color: var(--blue) !important;
}
.solutions {
  padding: 58px 0 62px;
}
.solutions h2 {
  max-width: 590px;
}
.solutions h2 span,
.section h2 span {
  color: var(--blue);
}
.solution-row {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}
.solution {
  min-height: 105px;
  padding: 12px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  color: #eff7ff;
}
.solution svg {
  width: 30px;
  height: 30px;
  margin: 0 auto 14px;
  stroke: var(--blue);
}
.defense {
  background: #fff;
  overflow: hidden;
  padding: 0;
}
.defense:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: url("../../assets/img/regulatory-defense-bg.png") center/cover no-repeat;
  filter: grayscale(0.1);
}
.defense:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  background: linear-gradient(
    90deg,
    #fff 0%,
    rgba(255, 255, 255, 0.7) 22%,
    rgba(255, 255, 255, 0) 50%
  );
  z-index: 1;
}
.defense .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.14fr;
  gap: 70px;
  align-items: center;
  min-height: 410px;
  padding: 20px;
}
.defense-panel {
  background: linear-gradient(
    145deg,
    rgba(6, 17, 29, 0.97),
    rgba(7, 28, 45, 0.95)
  );
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 42px 50px;
  box-shadow: var(--shadow);
  max-width: 520px;
}
.shield {
  width: 54px;
  height: 54px;
  stroke: var(--blue);
  margin-bottom: 18px;
}
.defense-panel h3 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}
.defense-panel p {
  color: #cbd9e6;
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 12px;
}
.defense-panel b {
  color: var(--blue);
}
.industries {
  padding: 64px 0;
}
.industries .cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  padding: 28px 18px;
  min-height: 190px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(20, 30, 40, 0.04);
}
.card svg {
  width: 38px;
  height: 38px;
  stroke: #0f1720;
  margin-bottom: 15px;
}
.card h3 {
  font-size: 16px;
  margin: 0 0 12px;
  line-height: 1.15;
}
.card p {
  font-size: 12px;
  line-height: 1.45;
  margin: 0 0 18px;
}
.learn {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--blue);
}
.mission {
  background: #06111d;
  color: #fff;
  padding: 0;
}
.mission-bg {
  background: linear-gradient(
      90deg,
      rgba(6, 17, 29, 0.3),
      rgba(6, 17, 29, 0.92) 49%,
      rgba(6, 17, 29, 0.98)
    ),
    url("../../assets/img/africa-network-bg.png") left center/52% auto no-repeat;
  min-height: 230px;
  display: flex;
  align-items: center;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.mission-spacer {
  min-height: 1px;
}
.mission-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 35px;
}
.mission-item svg {
  width: 48px;
  height: 48px;
  stroke: var(--blue);
}
.mission-item h3 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 12px;
}
.mission-item p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}
.cta-strip {
  position: relative;
  color: #fff;
  background: #07111d;
  overflow: hidden;
  padding: 60px;
}
.cta-strip:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(6, 17, 29, 0.95),
      rgba(6, 17, 29, 0.72),
      rgba(6, 17, 29, 0.4)
    ),
    url("../../assets/img/hero-background.png") center bottom/cover no-repeat;
  filter: saturate(0.85);
}
.cta-inner {
  position: relative;
  z-index: 1;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.cta-inner h2 {
  font-size: 40px;
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 650px;
  margin: 0;
}
.cta-inner h2 span {
  color: var(--blue);
}
footer {
  background: #000001;
  color: #d6e2ed;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 42px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 42px;
}
.footer-brand img {
  height: 30px;
  margin-bottom: 22px;
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.55;
  color: #aebccb;
  max-width: 280px;
}
.foot h4 {
  color: var(--blue);
  font-size: 12px;
  margin: 0 0 14px;
}
.foot a {
  display: block;
  font-size: 12px;
  margin: 8px 0;
  color: #b9c7d4;
}
.bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #8696a6;
}
@media (max-width: 1000px) {
  .nav {
    display: none;
  }
  .hero h1 {
    font-size: 48px;
  }
  .split,
  .defense .container,
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .solution-row,
  .industries .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .defense:after {
    opacity: 0.25;
    width: 100%;
  }
  .defense:before {
    width: 100%;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.88));
  }
  .stats {
    flex-wrap: wrap;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    display: block;
    padding: 40px 0;
  }
  .problem .issue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  .hero h1 {
    font-size: 39px;
  }
  .section h2,
  .cta-inner h2 {
    font-size: 32px;
  }
  .btns {
    flex-direction: column;
  }
  .problem .issue-grid,
  .solution-row,
  .industries .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats {
    display: block;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 16px 0;
  }
  .hero-inner {
    padding-top: 62px;
  }
  .mission-bg {
    background-size: cover;
  }
}
