.page-hero {
  min-height: 570px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 82% 30%, rgba(15, 102, 221, 0.58), transparent 34%),
    linear-gradient(112deg, #020a1a 0%, #03132f 45%, #083b86 100%);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 32%;
  background: url("assets/world-network.svg") center / min(900px, 90vw) auto no-repeat;
  opacity: 0.78;
  pointer-events: none;
}

.page-hero::after {
  z-index: -2;
  opacity: 0.1;
  mask-image: linear-gradient(90deg, transparent 8%, #000 62%);
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
}

.page-hero h1 {
  max-width: 790px;
  font-size: clamp(2.9rem, 5.15vw, 5.2rem);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.page-hero p {
  max-width: 630px;
}

.global-badges {
  position: relative;
  justify-self: stretch;
  min-height: 310px;
}

.network-card {
  position: absolute;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(3, 19, 47, 0.64);
  border: 1px solid rgba(155, 235, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 18px 45px rgba(1, 10, 28, 0.23);
  backdrop-filter: blur(14px);
  animation: networkFloat 5s ease-in-out infinite;
}

.network-card::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #38d9ff;
  border: 3px solid rgba(56, 217, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(56, 217, 255, 0.85);
}

.network-card strong,
.network-card small {
  display: block;
}

.network-card strong {
  font-size: 0.69rem;
  font-weight: 600;
}

.network-card small {
  margin-top: 1px;
  color: #9fb8d7;
  font-size: 0.54rem;
}

.network-card--nl {
  top: 18px;
  right: 3%;
}

.network-card--br {
  top: 128px;
  left: 0;
  animation-delay: -1.6s;
}

.network-card--latam {
  right: 8%;
  bottom: 10px;
  animation-delay: -3.2s;
}

@keyframes networkFloat {
  50% { transform: translateY(-7px); }
}

@media (max-width: 920px) {
  .page-hero {
    min-height: 520px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-hero::before {
    left: 20%;
    opacity: 0.5;
  }

  .global-badges {
    display: none;
  }
}

@media (max-width: 520px) {
  .page-hero {
    min-height: 430px;
    padding: 70px 0;
  }

  .page-hero::before {
    inset: 0 0 0 -20%;
    background-size: 760px auto;
    opacity: 0.34;
  }

  .page-hero h1 {
    font-size: 2.6rem;
    font-weight: 550;
    letter-spacing: -0.04em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .network-card { animation: none; }
}
