.hero {
  padding-block: clamp(3.5rem, 9vh, 7rem) 0;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink-2);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.hero__eyebrow b {
  color: var(--olivine);
  font-weight: 500;
}

.hero__sep {
  width: 3px;
  height: 3px;
  background: var(--hatch);
  border-radius: 50%;
  flex: none;
}

.hero__title {
  font-size: var(--fs-display);
  margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
  max-width: 15ch;
}

.hero__line {
  display: block;
  overflow: hidden;
}

.hero__line > span {
  display: block;
  transform: translateY(105%);
}

html.is-ready .hero__line > span {
  animation: rise 1.05s var(--ease-out) forwards;
}

.hero__line:nth-child(1) > span {
  animation-delay: 0.34s;
}
.hero__line:nth-child(2) > span {
  animation-delay: 0.44s;
}
.hero__line:nth-child(3) > span {
  animation-delay: 0.54s;
}

.hero__title em {
  font-style: normal;
  color: var(--olivine);
}

@keyframes rise {
  to {
    transform: none;
  }
}

.hero__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 20rem);
  gap: clamp(1.75rem, 5vw, 4rem);
  align-items: start;
}

.hero__lede {
  max-width: 38ch;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.hero__eyebrow,
.hero__body {
  opacity: 0;
  transform: translateY(10px);
}

html.is-ready .hero__eyebrow {
  animation: fade-up 0.8s 0.2s var(--ease-out) forwards;
}

html.is-ready .hero__body {
  animation: fade-up 0.8s 0.78s var(--ease-out) forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__surface {
  margin-top: clamp(3.5rem, 9vw, 6rem);
  opacity: 0;
}

html.is-ready .hero__surface {
  animation: fade-up 0.8s 1s var(--ease-out) forwards;
}

.hero__surface-log {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 0.7rem;
  color: var(--ink-2);
  border-bottom: 1px solid var(--basalt);
}

.hero__surface-log b {
  color: var(--basalt);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.hero__surface-log .hero__sep {
  margin-inline: -0.25rem;
}

.hero__surface-stats {
  margin-left: auto;
  display: flex;
  gap: 1.5rem;
}

.hero__surface-stats span {
  font-variant-numeric: tabular-nums;
}

.hero__fall {
  height: clamp(3rem, 7vw, 5rem);
  background-image: var(--lith-tuff);
  -webkit-mask-image: linear-gradient(var(--basalt), transparent);
  mask-image: linear-gradient(var(--basalt), transparent);
}

@media (max-width: 820px) {
  .hero__body {
    grid-template-columns: 1fr;
  }

  .hero__surface-stats {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line > span,
  .hero__eyebrow,
  .hero__body,
  .hero__surface {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
