/* Keep the transparent brand image off filtered compositing layers on iOS. */
.preload .intro-brand img{
  filter:none!important;
  -webkit-filter:none!important;
  background:transparent;
  animation:brand-mark-compatible 1.5s cubic-bezier(.16,1,.3,1) both;
}
@keyframes brand-mark-compatible{
  from{opacity:0;transform:translateY(18px) scale(.94)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
@media(prefers-reduced-motion:reduce){.preload .intro-brand img{animation:none!important}}
