.page-hero {
  background: var(--ink);
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 90% 40%, rgba(196,121,10,.08) 0%, transparent 65%);
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--amber-lt);
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.56);
  line-height: 1.8;
  max-width: 560px;
}