/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .55s ease both; }
.reveal-1 { animation-delay: .08s; }
.reveal-2 { animation-delay: .18s; }
.reveal-3 { animation-delay: .28s; }
.reveal-4 { animation-delay: .38s; }

/* ── Hero Header (Shared Breadcrumb) ── */
.page-header {
  background: linear-gradient(135deg, #0d1220 0%, #1a1a2e 55%, #1e1030 100%);
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
  border: none;
  text-align: left;
  z-index: 1;
}

.page-header::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(200,16,46,.13), transparent 70%);
  pointer-events: none;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.header-inner {
  position: relative;
  z-index: 1;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  margin-bottom: 14px;
}
.breadcrumb-custom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.breadcrumb-custom a:hover { color: #fff; }
.breadcrumb-custom svg { opacity: 0.4; }

.page-header .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #C8102E;
  margin-bottom: 14px;
}

.page-header h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.page-header p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,.45);
  line-height: 1.68;
  font-weight: 300;
  max-width: 460px;
  margin: 0;
}



@media (max-width: 991px) {
    .page-header { padding: 80px 0 30px; }
    .page-header h1 { font-size: 1.8rem; }
}
