/* ============================================
   Page Hero (inner pages)
   ============================================ */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    color-mix(in srgb, var(--accent) 5%, transparent) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
}

.hero-fx-wrap {
  position: relative;
  overflow: hidden;
}
.hero-fx-wrap > .page-hero,
.hero-fx-wrap > .section {
  position: relative;
  z-index: 1;
  background: transparent;
}
.hero-fx-wrap > .page-hero {
  overflow: visible;
}

.hero-network,
.hero-grid,
.hero-circuit {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-network {
  opacity: 0.85;
}
.hero-grid {
  opacity: 0.73;
}
.hero-circuit {
  opacity: 0.6;
}

@media (prefers-reduced-motion: reduce) {
  .hero-network,
  .hero-grid,
  .hero-circuit {
    display: none;
  }
}

.page-hero__label {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transform: rotate(-2deg);
}

.page-hero__title {
  font-size: clamp(1.9rem, 5vw, 3.25rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.page-hero__body {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 54ch;
  line-height: 1.8;
}
