/* ==========================================================================
   Hero, signature: global node network (echoes logo's dotted globe + swoosh)
   ========================================================================== */

.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 var(--space-2xl);
  background: var(--grad-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(124,58,237,0.35) 0%, transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(6,182,212,0.2) 0%, transparent 40%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BFD4FF;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}
.hero-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brn-accent);
  box-shadow: 0 0 0 0 rgba(6,182,212,0.6);
  animation: dotpulse 2s infinite;
}
@keyframes dotpulse {
  0% { box-shadow: 0 0 0 0 rgba(6,182,212,0.55); }
  70% { box-shadow: 0 0 0 8px rgba(6,182,212,0); }
  100% { box-shadow: 0 0 0 0 rgba(6,182,212,0); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}
.hero h1 span { color: #93C5FD; }

.hero p.lead {
  font-size: 1.12rem;
  color: var(--text-on-dark);
  max-width: 560px;
  margin-bottom: var(--space-lg);
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: var(--space-xl); }

.hero-trustline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}
.hero-trustline .avatars { display: flex; }
.hero-trustline .avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--brn-navy);
  margin-left: -10px;
  background: var(--grad-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-data); font-size: 0.7rem; font-weight: 700; color: #fff;
}
.hero-trustline .avatars span:first-child { margin-left: 0; }

/* --- Network visual (signature element) --- */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 540px;
  margin: 0 auto;
}
.hero-visual svg { width: 100%; height: 100%; }

.node-dot {
  fill: var(--brn-accent);
  filter: drop-shadow(0 0 6px rgba(6,182,212,0.7));
}
.node-pulse {
  fill: none;
  stroke: var(--brn-accent);
  stroke-width: 1.5;
  opacity: 0;
  transform-origin: center;
  animation: nodepulse 3s ease-out infinite;
}
.node-pulse.d2 { animation-delay: 0.7s; }
.node-pulse.d3 { animation-delay: 1.4s; }
.node-pulse.d4 { animation-delay: 2.1s; }
@keyframes nodepulse {
  0% { opacity: 0.7; transform: scale(0.3); }
  100% { opacity: 0; transform: scale(2.6); }
}

.link-line {
  fill: none;
  stroke: url(#linkGrad);
  stroke-width: 1.2;
  stroke-dasharray: 4 4;
  opacity: 0.55;
  animation: dashflow 18s linear infinite;
}
@keyframes dashflow { to { stroke-dashoffset: -200; } }

.hero-visual .globe-dots circle { fill: rgba(255,255,255,0.22); }

.hero-stat-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.hero-stat-card strong {
  display: block;
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.hero-stat-card span { font-size: 0.74rem; color: var(--text-on-dark-muted); }
.hero-stat-card.c1 { top: 6%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.hero-stat-card.c2 { bottom: 10%; right: -6%; animation: floaty 5.5s ease-in-out infinite 0.4s; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 980px) {
  .hero-visual { max-width: 380px; margin-top: var(--space-lg); }
  .hero-stat-card { padding: 10px 14px; }
}
@media (max-width: 560px) {
  .hero-stat-card.c1, .hero-stat-card.c2 { position: static; margin-bottom: 10px; display: inline-block; }
}

/* --- Trusted-by strip --- */
.trustedby {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: var(--space-md) 0;
  background: var(--bg-soft);
}
.trustedby-inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}
.trustedby-label {
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-marquee {
  flex: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-track span {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-muted);
  opacity: 0.7;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (max-width: 768px) {
  .trustedby-inner { flex-direction: column; gap: 12px; align-items: flex-start; }
}
