/* ==========================================================================
   iDARIS — Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--c-black);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.08);
  animation: hero-zoom 12s var(--ease-out) forwards;
}

@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(10, 10, 11, 0.97) 0%, rgba(10, 10, 11, 0.55) 42%, rgba(10, 10, 11, 0.25) 68%, rgba(10, 10, 11, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: var(--sp-8) var(--sp-6);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-steel);
  margin-bottom: var(--sp-3);
}

.hero__eyebrow em {
  font-style: normal;
  color: var(--c-red-bright);
}

.hero h1 {
  font-size: var(--fs-hero);
  max-width: 15ch;
  margin-bottom: var(--sp-4);
}

.hero h1 em {
  font-style: normal;
  color: var(--c-red-bright);
}

.hero__lead {
  max-width: 46ch;
  font-size: var(--fs-lead);
  color: var(--c-white-dim);
  margin-bottom: var(--sp-5);
}

.hero__actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--container-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  z-index: 1;
}

.hero__scroll-cue::after {
  content: "";
  width: 1px;
  height: 46px;
  background: linear-gradient(var(--c-red-bright), transparent);
  animation: scroll-cue 2.2s var(--ease-out) infinite;
}

@keyframes scroll-cue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 640px) {
  .hero {
    align-items: flex-end;
    min-height: 92svh;
  }
  .hero__media img {
    object-position: 65% center;
  }
  .hero__content {
    padding-block: var(--sp-5) var(--sp-6);
  }
  .hero__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    margin-bottom: var(--sp-2);
  }
  .hero h1 {
    font-size: clamp(2.15rem, 9vw, 2.75rem);
    max-width: 13ch;
    margin-bottom: var(--sp-3);
  }
  .hero__lead {
    font-size: 1rem;
    margin-bottom: var(--sp-4);
  }
  .hero__scroll-cue {
    display: none;
  }
  .hero__actions {
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .badge-row {
    margin-top: var(--sp-4);
    gap: var(--sp-2) var(--sp-3);
  }
}
