/* ============================================================
   PAGE HERO
   ============================================================ */

.page-header {
  background: var(--navy);
  color: var(--white);
  padding: 72px 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212,168,67,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.3;
}

.page-header > * { position: relative; z-index: 1; }

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 820px;
}

.page-header h1 span {
  color: var(--gold);
}

.page-header .subtitle {
  font-size: 1.0625rem;
  color: var(--grey-400);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.65;
}

.hero-updated {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}
