@keyframes pageRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.wrap > * { opacity: 0; }
.wrap.play > * { animation: pageRise 0.7s cubic-bezier(.16, 1, .3, 1) both; }
.wrap.play > *:nth-child(1)  { animation-delay: .05s; }
.wrap.play > *:nth-child(2)  { animation-delay: .12s; }
.wrap.play > *:nth-child(3)  { animation-delay: .19s; }
.wrap.play > *:nth-child(4)  { animation-delay: .26s; }
.wrap.play > *:nth-child(5)  { animation-delay: .33s; }
.wrap.play > *:nth-child(6)  { animation-delay: .40s; }
.wrap.play > *:nth-child(7)  { animation-delay: .47s; }
.wrap.play > *:nth-child(8)  { animation-delay: .54s; }
.wrap.play > *:nth-child(9)  { animation-delay: .61s; }
.wrap.play > *:nth-child(10) { animation-delay: .68s; }
.wrap.play > *:nth-child(n+11) { animation-delay: .75s; }

.page-cover {
  position: fixed; inset: 0; background: #050506; opacity: 0;
  pointer-events: none; transition: opacity .55s ease; z-index: 60;
}
.page-cover.show { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .wrap > * { opacity: 1 !important; }
  .wrap.play > * { animation: none; }
}
