/* PAGE HEADER */
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(255, 255, 255, .04) 79px, rgba(255, 255, 255, .04) 80px), repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255, 255, 255, .04) 79px, rgba(255, 255, 255, .04) 80px);
  pointer-events: none;
  z-index: 0;
}

.page-header-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.page-header-eyebrow {
  font-family: var(--type-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 24px;
}

.page-header-h1 {
  font-family: var(--type-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 400;
  color: #FDFCFA;
  line-height: 1.1;
}

.page-header-h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-header-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.85;
  margin-top: 28px;
  max-width: 580px;
}

.page-nav {
  display: flex;
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 32px;
}

.page-nav-item {
  font-family: var(--type-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  text-decoration: none;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: color .2s;
}

.page-nav-item:last-child {
  border-right: none;
}

.page-nav-item:hover {
  color: rgba(255, 255, 255, .7);
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   IMAGE ENHANCEMENTS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Hero Split */
.page-header {
  background: var(--ink);
  padding: 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.page-header-content {
  padding: 160px 80px 100px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-header-image {
  position: relative;
  overflow: hidden;
  background: #0a1628;
}

.page-header-highlight {
  display: inline-block;
  background: rgba(201, 168, 99, 0.12);
  /* subtle gold tint matching the chart line */
  border-left: 3px solid #C9A863;
  /* gold accent border */
  color: #C9A863;
  padding: 10px 16px;
  margin-top: 10px;
  margin-bottom: 25px;
  font-style: italic;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  border-radius: 0 4px 4px 0;
}

.page-header-image svg {
  width: 100%;
  height: 100%;
  display: block;
}

.page-header-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}
