/* Homepage opening v20260905: keep Latin descenders clear during the reveal. */
.home-brand-intro__line {
  /* The manifesto line is a reveal mask, not a crop for the finished copy. */
  overflow: visible;
  padding-bottom: 0.12em;
}

.home-brand-intro__line > span {
  will-change: transform, opacity;
}

@keyframes home-brand-intro-copy-in-clear {
  from {
    opacity: 0;
    transform: translateY(36%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html.is-brand-intro-playing .home-brand-intro__line--primary > span,
html.is-brand-intro-playing .home-brand-intro__line--accent > span {
  animation-name: home-brand-intro-copy-in-clear;
}

.home-brand-intro__baseline {
  position: relative;
  z-index: 1;
}
