.landing-character {
  animation: landing-character-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes landing-character-rise {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* The homepage brand entrance is intentionally always-on per product request. */
@media (prefers-reduced-motion: reduce) {
  .landing-character {
    animation: landing-character-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both !important;
  }
}
