:root {
  --navy: #05070b;
  --blue: #101725;
  --ink: #111827;
  --muted: #5a6675;
  --line: rgba(17, 24, 39, 0.12);
  --gold: #d8aa36;
  --gold-2: #f4d676;
  --steel: #e8edf3;
  --white: #ffffff;
  --green: #0f7a57;
  --shadow: 0 24px 70px rgba(7, 17, 31, 0.18);
  --premium-shadow: 0 34px 100px rgba(5, 7, 11, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 0%, rgba(216, 170, 54, 0.12), transparent 26%),
    linear-gradient(180deg, #f7f8fa, #eef2f6 46%, #f7f8fa);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 24, 39, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, black 14%, black 86%, transparent);
}

::selection {
  color: #05070b;
  background: var(--gold-2);
}

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

img {
  display: block;
  max-width: 100%;
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(244, 214, 118, 0.72);
}

.market-strip {
  display: none;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  color: white;
  background: #05070b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.market-inner {
  width: min(1180px, calc(100% - 24px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.market-prices,
.market-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.market-prices span,
.market-links a {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.market-prices strong {
  color: white;
}

.market-prices span:not(:first-child) {
  color: rgba(255, 255, 255, 0.72);
}

.market-prices .up {
  color: #8ff0b3;
}

.market-prices .down {
  color: #ffaaa6;
}

.market-links {
  color: rgba(255, 255, 255, 0.88);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  background: rgba(255, 255, 255, 0.96);
  border: 0;
  border-left: 0;
  border-right: 0;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(16px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
}

.site-header::before {
  content: "";
  width: min(1180px, calc(100% - 24px));
  position: absolute;
  inset: 0 auto;
  pointer-events: none;
}

.brand {
  position: absolute;
  left: max(12px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.brand img {
  width: 122px;
  height: auto;
}

.site-header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #111827;
  font-size: 11px;
  font-weight: 900;
}

.site-header nav a {
  padding: 13px 8px;
  border-radius: 6px;
}

.site-header nav a:hover {
  background: rgba(17, 24, 39, 0.06);
}

.site-header nav a:hover,
footer a:hover {
  color: var(--gold-2);
}

.header-cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  position: absolute;
  right: max(12px, calc((100vw - 1180px) / 2));
}

.header-cta,
.primary-btn {
  color: #10151f;
  background: linear-gradient(135deg, #f8df84, var(--gold-2) 48%, #c99c28);
  box-shadow: 0 16px 42px rgba(216, 170, 54, 0.28);
}

.header-cta,
.primary-btn,
.secondary-btn {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.header-cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.primary-btn:hover,
.header-cta:hover {
  box-shadow: 0 24px 58px rgba(216, 170, 54, 0.38);
}

.secondary-btn {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 132px max(24px, calc((100vw - 1180px) / 2)) 32px;
  color: white;
  background: #111111;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 32%, rgba(244, 214, 118, 0.2), transparent 20%),
    linear-gradient(90deg, rgba(244, 214, 118, 0.08), transparent 30% 76%, rgba(113, 232, 255, 0.08));
  mix-blend-mode: screen;
  animation: neonPulse 7s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 0 58%, rgba(5, 7, 11, 0.46) 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 5px);
  opacity: 0.36;
  mix-blend-mode: soft-light;
}

.hero-loop,
.hero-loop-frame {
  position: absolute;
  inset: 0;
}

.hero-loop {
  overflow: hidden;
  height: auto;
}

.hero-loop-frame {
  opacity: 0;
  background-size: cover;
  background-position: center 48%;
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.03);
  animation: cinematicHeroLoop 24s infinite;
}

.frame-one {
  background-image: url("assets/local/hero-powering-africa.jpg");
}

.frame-two {
  background-image: url("assets/pdf-extracted/pdf-p15-07-1280x960.jpg");
  animation-delay: 6s;
}

.frame-three {
  background-image: url("assets/local/hero-production-drilling.jpg");
  animation-delay: 12s;
}

.frame-four {
  background-image: url("assets/ai-hero-mining.png");
  animation-delay: 18s;
}

.hero-motion-layer {
  position: absolute;
  inset: 0;
  opacity: 0.56;
  background:
    linear-gradient(115deg, transparent 0 30%, rgba(244, 214, 118, 0.2) 35%, rgba(113, 232, 255, 0.14) 38%, transparent 46%),
    linear-gradient(78deg, transparent 0 58%, rgba(52, 211, 153, 0.14) 62%, transparent 69%),
    repeating-linear-gradient(90deg, rgba(244, 214, 118, 0) 0 72px, rgba(244, 214, 118, 0.1) 73px 74px);
  mix-blend-mode: screen;
  transform: translateX(-10%);
  animation: dataSweep 11s linear infinite;
}

@keyframes cinematicHeroLoop {
  0% {
    opacity: 0;
    transform: scale(1.03) translate3d(-1.1%, -0.8%, 0);
  }
  7% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 0;
    transform: scale(1.1) translate3d(1.2%, 0.9%, 0);
  }
  100% {
    opacity: 0;
    transform: scale(1.03) translate3d(-1.1%, -0.8%, 0);
  }
}

@keyframes dataSweep {
  from {
    transform: translateX(-12%);
  }
  to {
    transform: translateX(12%);
  }
}

@keyframes neonPulse {
  from {
    opacity: 0.72;
  }
  to {
    opacity: 1;
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 5, 9, 0.78) 0%, rgba(3, 5, 9, 0.42) 38%, rgba(3, 5, 9, 0.08) 74%),
    linear-gradient(0deg, rgba(3, 9, 18, 0.48) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 7, 11, 0.34) 0%, transparent 32%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(560px, 50vw);
  min-height: 0;
  margin: 0;
  padding: clamp(24px, 5vh, 56px) 0 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero h1,
.section h2,
.contact-band h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 560px;
  text-shadow:
    0 4px 24px rgba(0, 0, 0, 0.34),
    0 0 20px rgba(244, 214, 118, 0.12);
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 450;
  line-height: 1.08;
}

.hero-copy {
  max-width: 500px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-status {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-status span {
  padding: 9px 12px;
  border: 1px solid rgba(244, 214, 118, 0.42);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(5, 7, 11, 0.36);
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(244, 214, 118, 0.12);
}

.operations-snapshot-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: #05070b;
  border-top: 1px solid rgba(244, 214, 118, 0.2);
  border-bottom: 1px solid rgba(244, 214, 118, 0.14);
}

.operations-snapshot-band div {
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.operations-snapshot-band div::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(244, 214, 118, 0.08), transparent);
  transform: translateX(-100%);
  animation: premiumSweep 6s ease-in-out infinite;
}

.operations-snapshot-band span {
  color: var(--gold-2);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.operations-snapshot-band strong {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(14px, 1.4vw, 18px);
  line-height: 1.35;
}

.executive-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px max(24px, calc((100vw - 1180px) / 2));
  background: linear-gradient(90deg, rgba(216, 170, 54, 0.2), rgba(255, 255, 255, 0.14), rgba(216, 170, 54, 0.16));
}

.executive-proof-strip div {
  min-height: 176px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.94)),
    white;
}

.executive-proof-strip span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.executive-proof-strip strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.04;
}

.executive-proof-strip small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

@keyframes premiumSweep {
  0%, 42% {
    transform: translateX(-100%);
  }
  62%, 100% {
    transform: translateX(100%);
  }
}

.field-gallery {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 34px max(24px, calc((100vw - 1180px) / 2));
  background: #ffffff;
}

.field-gallery h2 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.field-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.field-strip article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background-image: linear-gradient(0deg, rgba(5, 7, 11, 0.78), rgba(5, 7, 11, 0.05)), var(--image);
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
  transition: transform 260ms ease, box-shadow 260ms ease, filter 260ms ease;
}

.field-strip article:hover {
  transform: translateY(-5px);
  filter: saturate(1.08) contrast(1.04);
  box-shadow: var(--premium-shadow);
}

.field-strip span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: white;
  font-weight: 900;
}

.ticker {
  display: flex;
  gap: 18px;
  overflow: hidden;
  padding: 13px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.ticker span {
  min-width: max-content;
}

.section {
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 360px;
  gap: 38px;
  align-items: start;
  background: white;
}

.section-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section h2 {
  max-width: 880px;
  font-size: clamp(34px, 4vw, 58px);
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.insight-card,
.inventory-grid article,
.service-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  box-shadow: var(--shadow);
}

.insight-card {
  padding: 28px;
}

.insight-card h3,
.service-grid h3,
.inventory-grid h3,
.featured-video h3 {
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.chips span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #263241;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 17, 31, 0.06);
}

.map-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 48, 135, 0.9), rgba(7, 17, 31, 0.94)),
    radial-gradient(circle at 30% 38%, rgba(244, 214, 118, 0.38), transparent 28%);
  box-shadow: var(--shadow);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(244, 214, 118, 0.12) 44%, transparent 54%),
    radial-gradient(circle at 68% 24%, rgba(255, 255, 255, 0.12), transparent 18%);
  mix-blend-mode: screen;
  animation: dataSweep 12s linear infinite;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.map-line {
  position: absolute;
  left: 23%;
  top: 40%;
  width: 58%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  transform: rotate(-18deg);
}

.pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-2);
  box-shadow: 0 0 0 12px rgba(244, 214, 118, 0.14);
  z-index: 2;
}

.pin span {
  position: absolute;
  top: 24px;
  left: -28px;
  width: 120px;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.ghana {
  left: 53%;
  top: 57%;
}

.burkina {
  left: 47%;
  top: 39%;
}

.ivory {
  left: 36%;
  top: 61%;
}

.map-stat {
  position: absolute;
  right: 28px;
  top: 28px;
  width: min(330px, calc(100% - 56px));
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  z-index: 2;
}

.map-stat strong,
.map-stat span {
  display: block;
}

.map-stat span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.5;
}

.map-legend {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 2;
}

.map-legend span {
  padding: 10px 12px;
  border: 1px solid rgba(244, 214, 118, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(5, 7, 11, 0.3);
  font-size: 12px;
  font-weight: 900;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 36px;
}

.service-grid,
.inventory-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article {
  padding: 26px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-grid article:hover,
.impact-grid article:hover,
.news-grid a:hover,
.video-card:hover,
.inventory-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 170, 54, 0.38);
  box-shadow: 0 24px 60px rgba(7, 17, 31, 0.14);
}

.service-grid article span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.service-grid h3 {
  margin-top: 28px;
  font-size: 22px;
}

.leadership-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(245, 246, 248, 0.98)),
    radial-gradient(circle at 12% 16%, rgba(216, 170, 54, 0.22), transparent 30%);
}

.leadership-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 20px;
  align-items: start;
}

.leader-feature,
.leader-list article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--premium-shadow);
}

.leader-feature {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  min-height: 420px;
}

.leader-feature img,
.leader-list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-feature img {
  max-height: 520px;
  object-position: center top;
}

.leader-list img {
  object-position: center top;
}

.leader-feature > div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(28px, 3.5vw, 44px);
  background:
    linear-gradient(160deg, #07111f 0%, #10151f 62%, #1b232f 100%);
}

.leader-feature span,
.leader-list span,
.track-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.leader-feature h3 {
  max-width: 520px;
  margin: 18px 0 12px;
  color: white;
  font-size: clamp(36px, 3.6vw, 52px);
  line-height: 1.02;
}

.leader-feature p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.leader-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, auto));
  gap: 18px;
}

.leader-list article {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  min-height: 210px;
  align-items: center;
  padding: 0;
}

.leader-list article > strong,
.leader-list article > span {
  margin-left: 24px;
  margin-right: 24px;
}

.leader-list article > strong {
  margin-bottom: 8px;
}

.leader-list strong {
  display: block;
  align-self: end;
  margin-top: 0;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.12;
}

.leader-list span {
  display: block;
  align-self: start;
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

.founder-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: 28px;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.74)),
    url("assets/local/ceo-quote-section.jpg") center / cover;
}

.founder-video-copy p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.founder-video-copy .primary-btn {
  margin-top: 18px;
}

.founder-video-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #05070b;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.36);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.founder-video-card img,
.founder-video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-video-card iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
}

.founder-video-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 214, 118, 0.42);
  box-shadow: 0 34px 82px rgba(0, 0, 0, 0.42);
}

.founder-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 18%, rgba(5, 7, 11, 0.82) 100%),
    linear-gradient(90deg, rgba(5, 7, 11, 0.62), transparent 52%);
  pointer-events: none;
}

.founder-video-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: center;
  color: white;
}

.founder-video-overlay span {
  grid-row: span 2;
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #10151f;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.34);
}

.founder-video-overlay strong {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.04;
}

.founder-video-overlay small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.4;
}

.dark-section {
  color: white;
  background: var(--navy);
}

.dark-section .section-heading p,
.dark-section p {
  color: rgba(255, 255, 255, 0.7);
}

.fleet-section {
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.78)),
    url("assets/local/hero-production-drilling.jpg") center / cover;
}

.fleet-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.fleet-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.fleet-dashboard article {
  min-height: 270px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.fleet-dashboard span {
  display: block;
  color: var(--gold-2);
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.fleet-dashboard h3 {
  margin: 22px 0 10px;
  font-size: 23px;
}

.fleet-dashboard p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.fleet-readiness {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.fleet-readiness strong {
  display: block;
  color: var(--gold-2);
  font-size: 13px;
  text-transform: uppercase;
}

.fleet-readiness p {
  margin: 8px 0 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-readiness a {
  flex-shrink: 0;
  padding: 13px 16px;
  border-radius: 6px;
  color: #10151f;
  background: var(--gold-2);
  font-weight: 900;
}

.impact-section {
  background: #f5f6f8;
}

.impact-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.impact-grid article,
.news-grid a,
.career-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

.impact-grid article {
  padding: 26px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.impact-grid span,
.career-panel span,
.news-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.impact-grid h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.sourcing-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1.22fr);
  gap: 36px;
  align-items: start;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.78)),
    url("assets/local/hero-powering-africa.jpg") center / cover;
}

.sourcing-intro {
  position: sticky;
  top: 134px;
}

.sourcing-intro p {
  color: rgba(255, 255, 255, 0.74);
}

.sourcing-intro .primary-btn {
  margin-top: 18px;
}

.sourcing-panel {
  display: grid;
  gap: 16px;
}

.sourcing-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.sourcing-flow span,
.consumables-grid article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.sourcing-flow span {
  min-height: 118px;
  padding: 16px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.consumables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.consumables-grid article {
  padding: 22px;
}

.consumables-grid strong {
  display: block;
  color: var(--gold-2);
  font-size: 19px;
}

.consumables-grid p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.careers-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 36px;
  align-items: center;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.96), rgba(5, 7, 11, 0.78)),
    url("assets/local/ceo-quote-section.jpg") center / cover;
}

.careers-section p {
  color: rgba(255, 255, 255, 0.72);
}

.career-panel {
  display: grid;
  gap: 16px;
  padding: 28px;
  color: var(--ink);
  box-shadow: var(--premium-shadow);
}

.career-panel strong {
  font-size: 24px;
  line-height: 1.25;
}

.career-panel a,
.news-grid a {
  color: var(--blue);
  font-weight: 900;
}

.news-section {
  background: #ffffff;
}

.news-grid a {
  display: grid;
  gap: 18px;
  min-height: 180px;
  padding: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.news-grid strong {
  font-size: 22px;
  line-height: 1.25;
}

.case-study-showcase {
  display: grid;
  gap: 18px;
}

.case-feature {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--premium-shadow);
}

.case-image {
  min-height: 420px;
  background-image: linear-gradient(90deg, rgba(5, 7, 11, 0.16), rgba(5, 7, 11, 0.72)), var(--image);
  background-size: cover;
  background-position: center;
}

.case-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 48px);
}

.case-location,
.case-grid span {
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-content h3 {
  margin: 14px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
}

.case-content p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.case-meta span,
.project-metrics span {
  display: block;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.07);
  line-height: 1.45;
}

.case-meta strong,
.project-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: white;
  font-size: 12px;
  text-transform: uppercase;
}

.case-content a {
  align-self: flex-start;
  margin-top: 28px;
  padding: 13px 16px;
  border-radius: 6px;
  color: #10151f;
  background: var(--gold-2);
  font-size: 14px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.case-content a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(216, 170, 54, 0.3);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.case-grid h3 {
  margin: 18px 0 10px;
  font-size: 26px;
}

.case-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.case-grid ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.case-grid li {
  padding: 8px 10px;
  border: 1px solid rgba(244, 214, 118, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.track-record-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%);
}

.track-media-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 12px;
  margin-bottom: 16px;
}

.track-media-strip img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.1);
}

.track-media-strip img:first-child {
  height: 380px;
}

.track-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.track-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.08);
}

.track-grid h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.16;
}

.track-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.media-section {
  background: white;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f4f6f8;
}

.video-feature-card,
.video-thumb {
  position: relative;
  overflow: hidden;
  display: block;
  border-radius: 6px;
  background: #0b1220;
}

.video-feature-card img,
.video-thumb img,
.video-feature-card iframe,
.video-thumb iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.video-feature-card iframe,
.video-thumb iframe {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
}

.video-feature-card {
  aspect-ratio: 16 / 9;
}

.video-thumb {
  aspect-ratio: 16 / 10;
}

.video-feature-card:hover img,
.video-thumb:hover img {
  transform: scale(1.05);
}

.autoplay-video[data-loaded="true"] img,
.autoplay-video[data-loaded="true"] span {
  opacity: 0;
  pointer-events: none;
}

.video-feature-card span,
.video-thumb span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  width: 68px;
  height: 68px;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  color: #10151f;
  background: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.featured-video > div {
  padding: 20px;
}

.featured-video h3 {
  font-size: 34px;
}

.featured-video a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
}

.video-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.video-card h3 {
  min-height: 46px;
  margin: 12px 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.embed-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.social-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background: #05070b;
}

.social-section h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.social-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 214, 118, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #05070b;
  background: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
}

.social-card strong {
  font-size: 18px;
}

.social-card small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.45;
}

.extract-section {
  background: white;
}

.inventory-grid article {
  padding: 24px;
  box-shadow: none;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

details {
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fa;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--blue);
  font-weight: 900;
}

.link-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 20px 20px;
}

.link-cloud a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: #263241;
  font-size: 12px;
  font-weight: 800;
}

.recommendations {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
}

.recommendations ol {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.recommendations li {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: #263241;
  font-weight: 700;
  line-height: 1.55;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 24px;
  align-items: center;
  padding: 64px max(24px, calc((100vw - 1180px) / 2));
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 7, 11, 0.94), rgba(7, 17, 31, 0.88)),
    url("assets/local/hero-production-drilling.jpg") center / cover;
}

.contact-band h2 {
  max-width: 860px;
  font-size: clamp(30px, 4vw, 54px);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.74);
  backdrop-filter: blur(14px);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 0 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: rgba(244, 214, 118, 0.72);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(244, 214, 118, 0.12);
}

.quote-form textarea {
  min-height: 104px;
  padding-top: 12px;
  resize: vertical;
}

.quote-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 4px;
}

.quote-intents button {
  min-height: 38px;
  border: 1px solid rgba(244, 214, 118, 0.26);
  border-radius: 999px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.quote-intents button:hover,
.quote-intents button.is-active {
  border-color: rgba(244, 214, 118, 0.82);
  color: #10151f;
  background: var(--gold-2);
}

.quote-wide,
.quote-form > button {
  grid-column: 1 / -1;
}

.quote-form option {
  color: #111827;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px max(24px, calc((100vw - 1180px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #040a14;
  font-size: 14px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.music-button {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 214, 118, 0.7);
  border-radius: 8px;
  padding: 10px 18px 10px 10px;
  color: white;
  background: rgba(5, 7, 11, 0.96);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.45), 0 0 0 4px rgba(244, 214, 118, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

.music-button span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  color: #10151f;
  background: var(--gold-2);
  font-size: 16px;
  font-weight: 900;
}

.music-button[aria-pressed="true"] {
  border-color: rgba(244, 214, 118, 0.76);
  background: rgba(20, 17, 10, 0.96);
  box-shadow: 0 20px 54px rgba(216, 170, 54, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.project-hero {
  min-height: 76svh;
  display: flex;
  align-items: end;
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 70px;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.95), rgba(5, 7, 11, 0.42)),
    url("assets/pdf-extracted/pdf-p15-11-1280x661.jpg") center / cover;
}

.project-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
}

.project-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 20px;
  line-height: 1.6;
}

.project-proof-grid,
.project-proof-band {
  padding: 82px max(24px, calc((100vw - 1180px) / 2));
}

.proof-feature {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.proof-feature img,
.proof-card-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-feature > div {
  padding: clamp(28px, 4vw, 54px);
}

.proof-feature span,
.proof-card-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-feature h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}

.proof-feature p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.proof-feature dl {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
}

.proof-feature dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fa;
}

.proof-feature dt {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-feature dd {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.proof-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.proof-card-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: 190px auto auto auto;
  gap: 12px;
  padding-bottom: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 44px rgba(7, 17, 31, 0.08);
}

.proof-card-grid span,
.proof-card-grid h3,
.proof-card-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.proof-card-grid h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.16;
}

.proof-card-grid p {
  margin-top: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.project-proof-band {
  color: white;
  background:
    linear-gradient(135deg, rgba(5, 7, 11, 0.98), rgba(7, 17, 31, 0.9)),
    url("assets/local/hero-production-drilling.jpg") center / cover;
}

.project-proof-band h2 {
  max-width: 800px;
  margin: 0 0 28px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.proof-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-stat-grid span {
  display: block;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  line-height: 1.6;
}

.proof-stat-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-2);
  font-size: 18px;
}

.project-assurance-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px;
  padding: 76px max(24px, calc((100vw - 1180px) / 2));
  background: white;
}

.project-assurance-section h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.assurance-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f8fa;
  box-shadow: 0 18px 48px rgba(7, 17, 31, 0.08);
}

.assurance-grid span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.assurance-grid h3 {
  margin-top: 42px;
  font-size: 24px;
}

.assurance-grid p {
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 1080px) {
  .market-prices span:nth-child(2),
  .market-prices span:nth-child(3) {
    display: none;
  }

  .site-header nav {
    display: none;
  }

  .intro-grid,
  .split,
  .field-gallery,
  .fleet-readiness,
  .leadership-grid,
  .leader-feature,
  .founder-video-section,
  .sourcing-section,
  .social-section,
  .case-feature,
  .careers-section,
  .recommendations,
  .proof-feature {
    grid-template-columns: 1fr;
  }

  .market-panel {
    grid-template-columns: 1fr;
  }

  .market-panel {
    max-width: 720px;
  }

  .service-grid,
  .fleet-dashboard,
  .sourcing-flow,
  .social-grid,
  .case-grid,
  .project-metrics,
  .track-grid,
  .track-media-strip,
  .impact-grid,
  .news-grid,
  .inventory-grid,
  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-card-grid,
  .proof-stat-grid,
  .assurance-grid,
  .executive-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-assurance-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .market-strip,
  .site-header {
    position: absolute;
  }

  .site-header {
    top: 0;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 102px;
  }

  .header-cta {
    padding: 0 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 100svh;
    padding: 102px 20px 24px;
  }

  .hero-content {
    width: min(100%, 340px);
    min-height: 0;
    padding: 24px 0 0;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 13px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 16px;
  }

  .hero-status {
    margin-top: 20px;
  }

  .operations-snapshot-band {
    padding: 0;
  }

  .operations-snapshot-band div {
    min-height: 92px;
    padding: 18px 20px;
  }

  .executive-proof-strip {
    padding-left: 0;
    padding-right: 0;
  }

  .executive-proof-strip div {
    min-height: 156px;
    padding: 20px;
  }

  .market-panel {
    padding: 14px;
  }

  .snapshot-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .snapshot-grid span {
    padding: 12px 10px;
    font-size: 12px;
  }

  .snapshot-grid strong {
    font-size: 24px;
  }

  .market-panel a {
    display: none;
  }

  .market-inner {
    width: calc(100% - 20px);
  }

  .market-links a:last-child {
    display: none;
  }

  .market-panel,
  .operations-snapshot-band,
  .executive-proof-strip,
  .service-grid,
  .fleet-dashboard,
  .quote-form,
  .sourcing-flow,
  .consumables-grid,
  .social-grid,
  .case-grid,
  .case-meta,
  .project-metrics,
  .leader-list article,
  .track-grid,
  .track-media-strip,
  .impact-grid,
  .news-grid,
  .field-strip,
  .inventory-grid,
  .video-grid,
  .featured-video,
  .founder-video-section,
  .proof-feature,
  .proof-card-grid,
  .proof-stat-grid,
  .assurance-grid,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 20px;
  }

  .map-card {
    min-height: 360px;
    margin-top: 12px;
  }

  .map-card::before {
    inset: 18px;
  }

  .map-line {
    left: 13%;
    top: 48%;
    width: 78%;
  }

  .map-stat {
    left: 18px;
    right: 18px;
    top: 18px;
    width: auto;
    padding: 16px;
  }

  .map-stat span {
    font-size: 14px;
  }

  .ghana {
    left: 56%;
    top: 63%;
  }

  .burkina {
    left: 48%;
    top: 51%;
  }

  .ivory {
    left: 34%;
    top: 66%;
  }

  .map-legend {
    left: 18px;
    right: 18px;
    bottom: 18px;
    gap: 6px;
  }

  .map-legend span {
    padding: 8px 10px;
    font-size: 11px;
  }

  .contact-band {
    padding: 48px 20px;
  }

  .project-hero,
  .project-proof-grid,
  .project-proof-band {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer {
    flex-direction: column;
    padding: 24px 20px;
  }

  .fleet-readiness {
    align-items: flex-start;
  }

  .leader-feature,
  .leader-list article {
    min-height: auto;
  }

  .leader-feature img,
  .track-media-strip img,
  .track-media-strip img:first-child {
    height: 260px;
  }

  .leader-list img {
    height: 230px;
  }

  .leader-list article > strong,
  .leader-list article > span {
    margin-left: 18px;
    margin-right: 18px;
  }

  .leader-list article > span {
    margin-bottom: 18px;
  }

  .founder-video-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .founder-video-overlay span {
    width: 54px;
    height: 54px;
    font-size: 10px;
  }

  .founder-video-overlay small {
    display: none;
  }

  .project-assurance-section {
    padding: 64px 20px;
  }

  .assurance-grid {
    grid-template-columns: 1fr;
  }
}
