/* ================================================================
   HERO — shared across all pages
   ================================================================ */

/* Full-screen homepage hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #011550 0%, #0d2060 55%, #1b2c65 100%);
}
.hero__bg-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}
.hero__panel {
  position: absolute;
  inset-inline-start: 0;
  inset-block: 0;
  width: 60%;
  background: rgba(1,21,80,0.88);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}
@media (max-width: 768px) { .hero__panel { width: 100%; clip-path: none; opacity: 0.85; } }

.hero__content {
  position: relative;
  z-index: 10;
  padding-block: var(--sp-16);
  max-width: 640px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: 0.375rem 1rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.hero__eyebrow svg { flex-shrink: 0; }
.hero__h1 {
  font-family: var(--f-display);
  font-size: var(--fs-4xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: var(--ls-tight);
  color: #fff;
  margin-bottom: var(--sp-4);
}
.hero__h1 .accent { color: var(--c-coral); }
.hero__body {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
  line-height: var(--lh-loose);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.hero__scroll {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255,255,255,0.4);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  animation: hero-bounce 2s ease-in-out infinite;
}
@keyframes hero-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@media (max-width: 768px) {
  .hero__h1 { font-size: var(--fs-2xl); }
  .hero__content { padding-block: var(--sp-10); }
}

/* Page hero (inner pages — compact) */
.page-hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  padding-block: var(--sp-12) var(--sp-10);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset-inline-end: 0;
  inset-block: 0;
  width: 40%;
  background: radial-gradient(ellipse at 80% 50%, rgba(158,27,50,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero__eyebrow { color: var(--c-coral); margin-bottom: var(--sp-2); }
.page-hero__h1 {
  font-family: var(--f-display);
  font-size: var(--fs-3xl);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: var(--ls-tight);
  color: #fff;
  max-width: 22ch;
  margin-bottom: var(--sp-3);
}
.page-hero__body {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.72);
  line-height: var(--lh-loose);
  max-width: 54ch;
  margin-bottom: var(--sp-5);
}
@media (max-width: 768px) {
  .page-hero__h1 { font-size: var(--fs-xl); }
  .page-hero { padding-block: var(--sp-8); }
}

/* Stats strip (inside hero bottom) */
.hero-stats {
  background: rgba(255,255,255,0.05);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--sp-6);
}
.hero-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
@media (max-width: 640px) {
  .hero-stats__grid { grid-template-columns: 1fr; gap: var(--sp-4); }
}
.hero-stats__item { position: relative; }
.hero-stats__item + .hero-stats__item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 640px) {
  .hero-stats__item + .hero-stats__item::before { display: none; }
}
