/* SSV Landing — Figma Flow 5 (Exclude1.svg → Exclude6.svg) */

#ssv-s1.ssv-section--landing {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #f4f3ef;
  z-index: 5;
}

.ssv-flow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  cursor: pointer;
}

.ssv-flow__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  background: #000;
}

.ssv-flow__mask {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
  user-select: none;
  /* Cross-fade between Exclude SVG keyframes */
  transition: opacity 350ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Step 6 — final state: mask fades out completely revealing only cover */
.ssv-flow[data-step="6"] .ssv-flow__mask { opacity: 0; }

/* Section fade-out + unmount when animation finishes */
.ssv-section--landing.is-finished {
  opacity: 0;
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .ssv-flow__mask { transition: none; }
}
