: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 {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  color: var(--green);
}

.brand-logo {
  display: block;
  width: 200px;
  height: auto;
  max-width: 50vw;
  object-fit: contain;
}

.navbar-nav {
  gap: 0.7rem;
}

.nav-link {
  padding: 0.4rem 0.8rem !important;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(233, 241, 236, 0.76);
  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.8rem;
  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.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-lead {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1rem;
  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.9rem;
  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.86rem;
  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;
}

.visual-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.visual-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.18;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  filter: grayscale(1) saturate(0.25) brightness(0.52);
}

.visual-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(53, 242, 134, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(5, 8, 5, 0.48), rgba(5, 8, 5, 0.9));
}

.visual-section > .content-shell {
  position: relative;
  z-index: 1;
}

.visual-boardroom-a::before {
  background-image: url("visual-boardroom-1.jpg");
}

.visual-boardroom-b::before {
  background-image: url("visual-boardroom-2.jpg");
}

.visual-boardroom-c::before {
  background-image: url("visual-boardroom-3.jpg");
}

.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;
}

.form-status {
  display: none;
  margin-bottom: 1.2rem;
}

.form-status-success,
.form-status-error {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.6rem 1.55rem;
  border-radius: 16px;
  line-height: 1.55;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28);
}

.form-status-success {
  border: 1px solid rgba(53, 242, 134, 0.38);
  background:
    radial-gradient(circle at 10% 15%, rgba(53, 242, 134, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(53, 242, 134, 0.13), rgba(9, 27, 17, 0.9));
  color: #dfffee;
}

.form-status-error {
  border: 1px solid rgba(255, 80, 80, 0.26);
  background: rgba(255, 80, 80, 0.07);
  color: #ffb0b0;
}

.form-status-icon {
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #06100b;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  box-shadow: 0 0 24px rgba(53, 242, 134, 0.28);
}

.form-status-icon i {
  font-size: 1.25rem;
}

.form-status strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
  color: #ffffff;
}

.form-status span,
.form-status small {
  display: block;
  color: #ccebdc;
  font-size: 0.86rem;
}

.form-status small {
  margin-top: 0.45rem;
  color: #9fc8b2;
}

.form-status small a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status-action {
  margin-top: 1rem;
  border: 1px solid rgba(137, 255, 186, 0.3);
  border-radius: 999px;
  padding: 0.7rem 1rem;
  color: #06100b;
  background: linear-gradient(135deg, var(--green), var(--green-bright));
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.service-card-mark {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 2.6rem;
  height: 2.6rem;
  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: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

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

.service-card li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e8efe9;
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.85);
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.4rem;
  height: 0.4rem;
  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.92rem;
  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: 1rem;
}

.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.86rem;
  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.78rem;
  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.94rem;
}

.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;
  }
}

.proof-section {
  padding: 5rem 0;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2rem;
  align-items: center;
}

.proof-copy {
  padding: 2rem;
  border: 1px solid rgba(137, 255, 186, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.proof-copy h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.proof-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.proof-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(53, 242, 134, 0.18);
  border-radius: 999px;
  color: var(--green-bright);
  background: rgba(53, 242, 134, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
}

.proof-image-wrap {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(137, 255, 186, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

@media (max-width: 991.98px) {
  .proof-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .proof-section {
    padding: 3.2rem 0;
  }

  .proof-copy {
    padding: 1.35rem;
  }

  .proof-image-wrap,
  .proof-image {
    min-height: 260px;
  }
}


/* Audience Entry Points */
.section-audience {
  padding: 80px 0 70px;
  position: relative;
}

.section-audience .section-kicker {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--neon, #35f286);
  border: 1px solid rgba(53, 242, 134, 0.28);
  background: rgba(53, 242, 134, 0.06);
}

.audience-card {
  height: 100%;
  padding: 26px 26px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 242, 134, 0.25);
  background: rgba(255, 255, 255, 0.045);
}

.audience-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--neon, #35f286);
  background: rgba(5, 8, 5, 0.55);
  border: 1px solid rgba(53, 242, 134, 0.16);
  margin-bottom: 14px;
}

.audience-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 10px;
}

.audience-title {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 12px;
}

.audience-copy {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 14px;
}

.audience-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  text-decoration: none;
  color: var(--neon, #35f286);
}

.audience-link:hover {
  text-decoration: underline;
}


/* Audience Entry Points Layout Fix */
.section-audience .audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 992px) {
  .section-audience .audience-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.section-audience .audience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
}

.section-audience .audience-copy {
  flex: 1 1 auto;
}

.section-audience .audience-link {
  margin-top: 12px;
}


/* Anchor targets (offset for sticky header) */
.anchor-target {
  display: block;
  position: relative;
  top: -90px;
  height: 1px;
  width: 1px;
  visibility: hidden;
}


/* Audience Entry Points Layout Fix (Bootstrap) */
.section-audience .row {
  align-items: stretch;
}

.section-audience .col {
  display: flex;
}

.section-audience .audience-card {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.section-audience .audience-copy {
  flex: 1 1 auto;
}

.section-audience .audience-link {
  margin-top: 12px;
}

/* YOMYG photo placement - 2026-05-28 */
.hero-slide-card {
  position: relative;
  overflow: hidden;
}

.hero-slide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.2) brightness(0.6);
  transform: scale(1.01);
}

.hero-slide-card .hero-slide-image {
  opacity: 0;
}

#heroSlider .carousel-item:nth-child(1) .hero-slide-card::before {
  background-image: url("TheBoard.webp");
}

#heroSlider .carousel-item:nth-child(2) .hero-slide-card::before {
  background-image: url("Waitingforclients.webp");
}

#heroSlider .carousel-item:nth-child(3) .hero-slide-card::before {
  background-image: url("securitynight.webp");
}

.hero-slide-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.96) 0%, rgba(5, 8, 5, 0.86) 36%, rgba(5, 8, 5, 0.42) 72%, rgba(5, 8, 5, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 8, 5, 0.22), rgba(5, 8, 5, 0.74));
}

.hero-slide-content {
  position: relative;
  z-index: 2;
}

.visual-section::before {
  filter: grayscale(0.85) contrast(1.2) brightness(0.6);
}

body.page-template-page-about .visual-boardroom-a::before {
  background-image: url("yomyg-about-header-boardroom.webp");
}

body.page-template-page-solutions .visual-boardroom-a::before {
  background-image: url("yomyg-services-documents-signature.webp");
}

body.page-template-page-about .visual-boardroom-b::before {
  background-image: url("yomyg-audience-investors-office.webp");
}

.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("yomyg-final-cta-office-night.webp");
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.2) brightness(0.6);
  transform: scale(1.01);
}

.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.92), rgba(5, 8, 5, 0.72)),
    radial-gradient(circle at 50% 30%, rgba(53, 242, 134, 0.08), transparent 58%);
}

.cta-section > .content-shell,
.cta-section > .container {
  position: relative;
  z-index: 1;
}

.visual-handshake-deal::before {
  background-image: url("yomyg-approved-handshake-deal.webp");
}
/* End YOMYG photo placement - 2026-05-28 */
/* YOMYG Global Reach visual depth - 2026-05-31 */
body.page-template-page-global-reach .map-card-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(137, 255, 186, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 18, 12, 0.92), rgba(5, 8, 5, 0.98));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

body.page-template-page-global-reach .map-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 5, 0.92), rgba(5, 8, 5, 0.44) 48%, rgba(5, 8, 5, 0.78)),
    linear-gradient(180deg, rgba(5, 8, 5, 0.12), rgba(5, 8, 5, 0.7));
}

body.page-template-page-global-reach .map-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 24%, rgba(53, 242, 134, 0.12), transparent 30%),
    radial-gradient(circle at 74% 30%, rgba(137, 255, 186, 0.08), transparent 26%);
  opacity: 0.82;
}

body.page-template-page-global-reach .world-map-image {
  filter: grayscale(0.85) contrast(1.2) brightness(0.6);
  opacity: 0.9;
  transform: scale(1.01);
}

body.page-template-page-global-reach .map-dot,
body.page-template-page-global-reach .map-meta {
  z-index: 3;
}
/* End YOMYG Global Reach visual depth - 2026-05-31 */

/* YOMYG card backgrounds + visual depth — 2026-05-31 */
.section-audience .audience-card {
  position: relative;
  overflow: hidden;
}

.section-audience .audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(0.85) contrast(1.2) brightness(0.5);
  transform: scale(1.02);
}

.section-audience .audience-card > * {
  position: relative;
  z-index: 1;
}

.section-audience .row .col:nth-child(1) .audience-card::before {
  background-image: url('TheBoard.webp');
}

.section-audience .row .col:nth-child(2) .audience-card::before {
  background-image: url('Waitingforclients.webp');
}

.section-audience .row .col:nth-child(3) .audience-card::before {
  background-image: url('securitynight.webp');
}

body.page-template-page-solutions .visual-boardroom-b::before {
  background-image: url('Latenightworkerdesk.webp');
  filter: grayscale(0.85) contrast(1.2) brightness(0.5);
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.globe-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.globe-image-wrap .globe-image {
  filter: grayscale(0.75) contrast(1.2) brightness(0.6);
  transform: scale(1.02);
  width: 100%;
  height: auto;
}

body.home .globe-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,8,5,0.4), rgba(5,8,5,0.15) 40%, rgba(5,8,5,0.4)),
    radial-gradient(circle at 30% 40%, rgba(53,242,134,0.06), transparent 50%);
}

/* Dark overlay over audience cards for text readability */
.section-audience .audience-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(5,8,5,0.65) 0%, rgba(5,8,5,0.45) 50%, rgba(5,8,5,0.75) 100%);
  pointer-events: none;
}

.section-audience .audience-card .audience-icon,
.section-audience .audience-card .audience-meta,
.section-audience .audience-card .audience-title,
.section-audience .audience-card .audience-copy,
.section-audience .audience-card .audience-link {
  position: relative;
  z-index: 2;
}

/* Ensure audience card text has dark enough background behind it */
.section-audience .audience-card {
  background: rgba(5,8,5,0.3);
  border: 1px solid rgba(137,255,186,0.08);
}

/* Home page Intelligence card background */
body.home .service-grid .col-lg-6:first-child .service-card {
  background:
    linear-gradient(180deg, rgba(5,8,5,0.88), rgba(5,8,5,0.55) 50%, rgba(5,8,5,0.93)),
    url('Latenightworkerdesk.webp') center/cover no-repeat;
}

/* Home page Risk & Exposure Support card background */
body.home .service-grid .col-lg-6:nth-child(2) .service-card {
  background:
    linear-gradient(180deg, rgba(5,8,5,0.88), rgba(5,8,5,0.55) 50%, rgba(5,8,5,0.93)),
    url("securitynight.webp") center/cover no-repeat;
}

/* Home page Asset Location & Recovery card background */
body.home .service-grid .col-lg-6:nth-child(3) .service-card {
  background:
    linear-gradient(180deg, rgba(5,8,5,0.88), rgba(5,8,5,0.55) 50%, rgba(5,8,5,0.93)),
    url("MapCity.webp") center/cover no-repeat;
}

/* Home page Strategic Advisory Support card background */
body.home .service-grid .col-lg-6:nth-child(4) .service-card {
  background:
    linear-gradient(180deg, rgba(5,8,5,0.88), rgba(5,8,5,0.55) 50%, rgba(5,8,5,0.93)),
    url("citygridoverhead.webp") center/cover no-repeat;
}


@media (max-width: 768px) {
  .brand-tagline {
    display: none;
  }
}
