.home-screen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow: hidden;
  isolation: isolate;
}

.home-screen__background {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.58) saturate(0.9);
  transform: scale(1.03);
  opacity: 0;
  animation: fade-in var(--motion-duration-slower) ease-out forwards;
  z-index: 0;
}


.home-screen::after {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 7, 36, 0.34) 0%, rgba(14, 8, 42, 0.52) 100%);
  z-index: 0;
  pointer-events: none;
}

 .home-screen__content {
  animation: pop-in var(--motion-duration-slow) var(--motion-ease-pop) both;

  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.home-screen__content--intro {
  cursor: pointer;
}

.home-screen__logo {
  width: clamp(12rem, 60vw, 15rem);
  height: auto;
}

.home-screen__prompt {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(0.82rem, 3.8vw, 1rem);
  font-style: italic;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .home-screen__background {
    content: url('../assets/BackgroundLandscape.svg');
  }

  .home-screen__content--intro {
    justify-content: center;
    padding-bottom: 1.5rem;
  }
}
