/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 78svh;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-950);
}
.hero-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(8% 0.004 260 / 0.35) 0%, oklch(8% 0.004 260 / 0.15) 30%, oklch(8% 0.004 260 / 0.55) 78%, oklch(8% 0.004 260 / 0.92) 100%),
    linear-gradient(90deg, oklch(8% 0.004 260 / 0.86) 0%, oklch(8% 0.004 260 / 0.5) 42%, oklch(8% 0.004 260 / 0.02) 62%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: var(--sp-16);
  padding-top: calc(var(--header-h) + var(--sp-10));
}
.hero-eyebrow { margin-bottom: var(--sp-4); }
.hero-title {
  max-width: 15ch;
  font-size: var(--fs-h1);
  color: oklch(100% 0 0);
  text-shadow: 0 2px 24px oklch(0% 0 0 / 0.35);
}
.hero-title em {
  font-style: normal;
  color: var(--red-400);
}
.hero-sub {
  margin-top: var(--sp-5);
  max-width: 46ch;
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.2rem);
  color: oklch(92% 0.004 260 / 0.88);
}
.hero-ctas {
  margin-top: var(--sp-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}
.hero-stats {
  margin-top: var(--sp-10);
  display: flex;
  gap: var(--sp-8);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: oklch(100% 0 0);
}
.hero-stat-label {
  font-size: var(--fs-xs);
  color: oklch(85% 0.004 260 / 0.7);
}

.hero-scroll-cue {
  position: absolute;
  right: var(--sp-6);
  bottom: var(--sp-6);
  z-index: 1;
  display: none;
  align-items: center;
  gap: var(--sp-2);
  color: oklch(100% 0 0 / 0.75);
  font-size: var(--fs-2xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  animation: float-y 2.4s ease-in-out infinite;
}
@keyframes float-y { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (min-width: 640px) {
  .hero { min-height: 88svh; }
}
@media (min-width: 1024px) {
  .hero-scroll-cue { display: flex; }
  .hero-content { padding-bottom: var(--sp-24); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; }
}
