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

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--purple), var(--blue));
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(233, 144, 78, 0.05) 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-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-hero__label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}

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