:root {
  --bg: #050805;
  --panel: #222624;
  --text: #f5f8f5;
  --muted: #90a19a;
  --green: #35f286;
  --green-bright: #89ffba;
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 5%, rgba(53, 242, 134, 0.16), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(53, 242, 134, 0.12), transparent 18%),
    radial-gradient(circle at 8% 92%, rgba(53, 242, 134, 0.14), transparent 16%),
    linear-gradient(180deg, #06100b 0%, var(--bg) 22%, #040605 100%);
  font-family: "Manrope", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

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

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0%, rgba(80, 255, 148, 0.02) 50%, transparent 100%),
    linear-gradient(180deg, transparent 0%, rgba(80, 255, 148, 0.02) 50%, transparent 100%);
  opacity: 0.8;
  z-index: -1;
}

.site-wide {
  width: 100%;
  padding-inline: clamp(20px, 3.5vw, 54px);
}

.content-shell {
  width: 80%;
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(4, 10, 6, 0.82);
  border-bottom: 1px solid rgba(110, 255, 177, 0.08);
}

.navbar {
  padding: 1.1rem 0;
}

.navbar > .site-wide {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.navbar-brand,
.footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--green);
}

.navbar-nav {
  gap: 0.7rem;
}

.nav-link {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(233, 241, 236, 0.68);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #fff;
}

.btn {
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.9rem 1.45rem;
  text-transform: uppercase;
}

.btn-neon {
  color: #021109;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-bright) 100%);
  border: 1px solid rgba(149, 255, 198, 0.7);
  box-shadow: 0 0 0 1px rgba(46, 255, 134, 0.16), 0 0 18px rgba(53, 242, 134, 0.25);
}

.btn-neon:hover,
.btn-neon:focus {
  color: #021109;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(46, 255, 134, 0.22), 0 0 26px rgba(53, 242, 134, 0.34);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid rgba(141, 255, 188, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover,
.btn-ghost:focus {
  color: var(--green-bright);
  border-color: rgba(141, 255, 188, 0.4);
}

.hero-section {
  padding: 5.5rem 0 2.4rem;
  position: relative;
}

.hero-slider {
  position: relative;
}

.hero-slide-card {
  position: relative;
  min-height: 540px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(129, 255, 184, 0.08);
  background: #07100a;
  box-shadow: var(--shadow);
}

.hero-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 7, 4, 0.96) 0%, rgba(2, 7, 4, 0.84) 38%, rgba(2, 7, 4, 0.4) 70%, rgba(2, 7, 4, 0.72) 100%),
    radial-gradient(circle at 18% 24%, rgba(53, 242, 134, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem);
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-slider .carousel-indicators {
  left: clamp(1.5rem, 4vw, 4rem);
  right: auto;
  bottom: 1.4rem;
  margin: 0;
  gap: 0.55rem;
  justify-content: flex-start;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 2.4rem;
  height: 0.24rem;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(173, 255, 214, 0.34);
  opacity: 1;
}

.hero-slider .carousel-indicators .active {
  background-color: var(--green);
  box-shadow: 0 0 14px rgba(53, 242, 134, 0.45);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: auto;
  top: auto;
  bottom: 1.1rem;
  opacity: 1;
}

.hero-slider .carousel-control-prev {
  right: 5.6rem;
  left: auto;
}

.hero-slider .carousel-control-next {
  right: 1.7rem;
}

.hero-control-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d6e9de;
  border: 1px solid rgba(137, 255, 186, 0.18);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.hero-control-icon i {
  font-size: 1rem;
}

.page-hero {
  padding: 5rem 0 1.5rem;
}

.page-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.page-hero-card,
.page-panel,
.info-card,
.story-card,
.region-card,
.contact-card,
.contact-form {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(129, 255, 184, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #242827 0%, #1e2321 100%);
  box-shadow: var(--shadow);
}

.page-hero-card,
.page-panel,
.contact-card,
.contact-form {
  padding: 1.5rem;
}

.page-hero-card h3,
.page-panel h3,
.info-card h3,
.story-card h3,
.region-card h3,
.contact-card h3,
.contact-form h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
}

.page-hero-card p,
.page-panel p,
.info-card p,
.story-card p,
.region-card p,
.contact-card p,
.contact-form p {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
}

.page-list,
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-list li,
.contact-list li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.page-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(53, 242, 134, 0.35);
}

.metric-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.metric-chip {
  min-width: 9rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(137, 255, 186, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.metric-chip strong {
  display: block;
  color: var(--green);
  font-size: 1.3rem;
  line-height: 1;
}

.metric-chip span {
  color: #a4b2ab;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-glow {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.7;
  background: radial-gradient(circle, rgba(56, 240, 137, 0.3) 0%, rgba(56, 240, 137, 0.04) 52%, transparent 70%);
}

.hero-glow-left {
  top: -4rem;
  left: -5rem;
}

.hero-glow-right {
  top: 0;
  right: -4rem;
}

.hero-section h1,
.page-hero h1,
.copy-panel h2,
.section-heading h2,
.cta-box h2 {
  font-family: "Space Grotesk", sans-serif;
}

.hero-section h1 {
  margin: 2.5rem 0 1rem;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero-slide-content h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-section h1 span {
  color: var(--green);
  text-shadow: 0 0 12px rgba(53, 242, 134, 0.24);
}

.hero-copy {
  max-width: 38rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

.hero-slide-content .hero-copy {
  margin: 0;
  max-width: 36rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-slide-content .hero-actions {
  justify-content: flex-start;
}

.hero-pillars {
  margin-top: 2.2rem;
}

.pillar-item {
  height: 100%;
  text-align: center;
  padding: 0.75rem 0.35rem;
}

.pillar-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  color: var(--green);
  background: rgba(69, 255, 155, 0.08);
  border: 1px solid rgba(69, 255, 155, 0.12);
  box-shadow: inset 0 0 18px rgba(69, 255, 155, 0.04);
}

.pillar-text {
  display: block;
  color: #a4b2ab;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro,
.pipeline-section,
.verticals-section,
.reach-section,
.cta-section {
  padding: 1.4rem 0 0;
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}

.service-grid {
  margin-top: 1rem;
}

.service-card,
.mini-card,
.map-card,
.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(129, 255, 184, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, #242827 0%, #1e2321 100%);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 235px;
  padding: 1.55rem 1.4rem 1.3rem;
}

.service-card-icon {
  width: 1rem;
  height: 1rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--green);
  background: rgba(53, 242, 134, 0.08);
}

.service-card-mark {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(137, 255, 186, 0.55);
  border: 1px solid rgba(137, 255, 186, 0.14);
  background: rgba(137, 255, 186, 0.04);
}

.service-card h3,
.pipeline-step h3,
.mini-card h3,
.feature-row h3,
.site-footer h3 {
  margin: 1rem 0 0.85rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  position: relative;
  padding-left: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.46rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(53, 242, 134, 0.35);
}

.insight-section,
.network-section {
  padding: 2.8rem 0 0.4rem;
}

.copy-panel h2 {
  max-width: 24rem;
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.copy-panel p {
  margin: 0 0 0.8rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.75;
  max-width: 31rem;
}

.globe-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.globe-image-wrap::before {
  content: "";
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 242, 134, 0.12), transparent 60%);
  filter: blur(18px);
}

.globe-image {
  position: relative;
  z-index: 1;
  width: min(470px, 100%);
  height: auto;
  display: block;
  mix-blend-mode: screen;
}

.stat-strip {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.stat-item strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--green);
}

.stat-item span {
  color: #a0b0a9;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.radar-wrap {
  display: flex;
  justify-content: center;
}

.radar-grid {
  position: relative;
  width: min(355px, 82vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(53, 242, 134, 0.12) 0 13%, rgba(53, 242, 134, 0.05) 13% 32%, transparent 32% 100%),
    radial-gradient(circle at center, rgba(53, 242, 134, 0.06), transparent 64%);
  box-shadow: inset 0 0 36px rgba(53, 242, 134, 0.12), 0 0 40px rgba(21, 75, 42, 0.42);
}

.radar-ring,
.radar-line,
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.radar-ring {
  border: 1px solid rgba(98, 255, 168, 0.16);
}

.radar-ring-1 {
  inset: 12%;
}

.radar-ring-2 {
  inset: 24%;
}

.radar-ring-3 {
  inset: 36%;
}

.radar-ring-4 {
  inset: 48%;
}

.radar-line-h::before,
.radar-line-v::before {
  content: "";
  position: absolute;
  background: rgba(102, 255, 171, 0.12);
}

.radar-line-h::before {
  top: 50%;
  left: 8%;
  width: 84%;
  height: 1px;
}

.radar-line-v::before {
  left: 50%;
  top: 8%;
  width: 1px;
  height: 84%;
}

.radar-sweep {
  inset: 7%;
  background: conic-gradient(from 40deg, rgba(53, 242, 134, 0.42), rgba(53, 242, 134, 0.08) 22%, transparent 35%);
  filter: blur(1px);
  animation: spin 5.5s linear infinite;
}

.radar-dot {
  position: absolute;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 18px rgba(137, 255, 186, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

.radar-dot-1 {
  top: 21%;
  left: 52%;
}

.radar-dot-2 {
  top: 43%;
  left: 65%;
  animation-delay: 0.5s;
}

.radar-dot-3 {
  top: 57%;
  left: 30%;
  animation-delay: 1s;
}

.radar-dot-4 {
  top: 72%;
  left: 56%;
  animation-delay: 1.4s;
}

.pipeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.1rem;
}

.pipeline-track::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2.1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(110, 255, 180, 0.24), transparent);
}

.pipeline-step {
  position: relative;
  text-align: center;
  padding: 0 0.25rem;
}

.pipeline-icon {
  position: relative;
  z-index: 1;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 1.15rem;
  border: 1px solid rgba(108, 255, 176, 0.16);
  background: radial-gradient(circle at 50% 40%, rgba(53, 242, 134, 0.18), rgba(53, 242, 134, 0.05) 58%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: inset 0 0 24px rgba(53, 242, 134, 0.06), 0 8px 18px rgba(0, 0, 0, 0.32);
}

.pipeline-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.list-panel {
  padding-right: 0.8rem;
}

.feature-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(137, 255, 186, 0.08);
}

.feature-row:first-child {
  padding-top: 0;
}

.feature-row:last-child {
  border-bottom: 0;
}

.feature-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: rgba(53, 242, 134, 0.08);
  border: 1px solid rgba(53, 242, 134, 0.12);
}

.feature-row h3 {
  margin: 0 0 0.3rem;
  font-size: 0.88rem;
}

.feature-row p,
.mini-card p,
.map-meta p,
.cta-box p,
.footer-copy,
.footer-list a,
.footer-contact li {
  margin: 0;
  color: var(--muted);
  font-size: 0.77rem;
  line-height: 1.7;
}

.network-panel {
  position: relative;
  min-height: 340px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(117, 255, 177, 0.08);
  background:
    radial-gradient(circle at 18% 15%, rgba(58, 255, 141, 0.18), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(58, 255, 141, 0.15), transparent 30%),
    linear-gradient(145deg, #07150d 0%, #041008 100%);
  box-shadow: var(--shadow);
}

.network-panel::before,
.network-panel::after {
  content: "";
  position: absolute;
  inset: 0;
}

.network-panel::before {
  background:
    linear-gradient(90deg, rgba(53, 242, 134, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(53, 242, 134, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
}

.network-panel::after {
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.25) 70%, rgba(0, 0, 0, 0.45) 100%);
}

.network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(53, 242, 134, 0.25));
}

.network-svg circle {
  animation: pulse 3.2s ease-in-out infinite;
}

.page-section {
  padding: 1.2rem 0 0;
}

.info-card,
.story-card,
.region-card {
  min-height: 100%;
  padding: 1.35rem 1.2rem;
}

.info-card .meta-label,
.story-card .meta-label,
.region-card .meta-label,
.contact-card .meta-label {
  margin-bottom: 0.8rem;
}

.story-card {
  border-left: 1px solid rgba(53, 242, 134, 0.26);
}

.quote-mark {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 0.9rem;
  color: var(--green);
  border: 1px solid rgba(137, 255, 186, 0.12);
  background: rgba(137, 255, 186, 0.04);
}

.contact-form .form-label {
  color: #dfe8e2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-control-custom,
.form-select-custom {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(137, 255, 186, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 0.95rem 1rem;
  font-size: 0.86rem;
}

.form-control-custom:focus,
.form-select-custom:focus {
  outline: 0;
  border-color: rgba(137, 255, 186, 0.32);
  box-shadow: 0 0 0 0.18rem rgba(53, 242, 134, 0.12);
}

.form-control-custom::placeholder {
  color: #80918a;
}

textarea.form-control-custom {
  min-height: 140px;
  resize: vertical;
}

.mini-card {
  min-height: 168px;
  padding: 1.15rem 1rem;
}

.mini-card-icon {
  width: 1rem;
  height: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  color: var(--green);
}

.mini-card h3 {
  font-size: 0.9rem;
}

.map-card {
  padding: 1.5rem 1.5rem 1rem;
}

.map-card-image {
  padding: 0;
  background: #121313;
}

.map-meta {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  max-width: 15rem;
  z-index: 2;
  padding: 1rem 1rem 0.9rem;
  border-radius: 14px;
  background: rgba(14, 20, 17, 0.88);
  border: 1px solid rgba(137, 255, 186, 0.1);
}

.meta-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.world-map {
  display: block;
  width: 100%;
  height: auto;
  min-height: 350px;
}

.world-map-image {
  display: block;
  width: 100%;
  height: auto;
}

.cta-box {
  padding: 3.2rem 1.5rem;
  background:
    radial-gradient(circle at 50% 10%, rgba(53, 242, 134, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(10, 30, 18, 0.86), rgba(8, 18, 12, 0.96));
}

.cta-box h2 {
  font-size: 1.55rem;
  margin: 0 0 0.8rem;
}

.cta-box p {
  margin-bottom: 1.4rem;
}

.site-footer {
  padding: 2.8rem 0 2.4rem;
  border-top: 1px solid rgba(104, 255, 171, 0.06);
}

.footer-copy {
  max-width: 14rem;
  margin-top: 0.8rem;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-links a {
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cfe2d8;
  border: 1px solid rgba(137, 255, 186, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.site-footer h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-list li {
  margin-bottom: 0.48rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.88);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@media (max-width: 991.98px) {
  .content-shell {
    width: min(90%, 1220px);
  }

  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem 0 0.25rem;
    border-top: 1px solid rgba(137, 255, 186, 0.08);
  }

  .nav-cta {
    margin-top: 0.75rem;
  }

  .copy-panel,
  .list-panel {
    padding-right: 0;
  }

  .hero-slide-card,
  .hero-slide-content {
    min-height: 500px;
  }

  .globe-image-wrap {
    min-height: 320px;
  }

  .pipeline-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .pipeline-track::before {
    display: none;
  }

  .map-meta {
    position: static;
    margin-bottom: 1rem;
    max-width: none;
  }
}

@media (max-width: 767.98px) {
  .site-wide {
    padding-inline: 18px;
  }

  .content-shell {
    width: calc(100% - 36px);
  }

  .site-header {
    position: static;
  }

  .hero-section {
    padding-top: 3.4rem;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-slide-card,
  .hero-slide-content {
    min-height: 470px;
  }

  .hero-slide-overlay {
    background:
      linear-gradient(180deg, rgba(2, 7, 4, 0.9) 0%, rgba(2, 7, 4, 0.78) 42%, rgba(2, 7, 4, 0.58) 100%),
      radial-gradient(circle at 50% 22%, rgba(53, 242, 134, 0.18), transparent 30%);
  }

  .hero-slide-content {
    align-items: center;
    text-align: center;
    padding: 2.3rem 1.3rem 4.2rem;
  }

  .hero-slide-content h1 {
    max-width: 100%;
  }

  .hero-slide-content .hero-copy {
    margin: 0 auto;
  }

  .hero-slide-content .hero-actions {
    justify-content: center;
  }

  .hero-slider .carousel-indicators {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    justify-content: center;
  }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    display: none;
  }

  .hero-pillars {
    margin-top: 2.8rem;
  }

  .service-card,
  .mini-card {
    min-height: auto;
  }

  .pipeline-track {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    gap: 1rem;
  }

  .world-map {
    min-height: 250px;
  }

  .map-card {
    padding: 1rem 1rem 0.8rem;
  }

  .map-card-image {
    padding: 0;
  }

  .cta-box {
    padding: 2.4rem 1.1rem;
  }

  .page-hero {
    padding-top: 3.4rem;
  }
}
