/* ═══════════════════════════════════════════════════════════
   CODEVANTUM — GSAP BLOCK PAGE TRANSITION
   ═══════════════════════════════════════════════════════════ */
.transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 999999;
  pointer-events: none;
}

.transition.is-animating {
  pointer-events: all;
}

.transition-row {
  flex: 1;
  display: flex;
  width: 100%;
}

.transition-row.row-1 .block {
  transform-origin: top;
}

.transition-row.row-2 .block {
  transform-origin: bottom;
}

.block {
  flex: 1;
  background-color: #c4b5fd;
  transform: scaleY(1);
  will-change: transform;
  visibility: visible;
}
