:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #160f2b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  background: #160f2b;
}

body {
  position: relative;
  min-height: 100svh;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(12, 7, 27, 0.18), rgba(12, 7, 27, 0.3)),
    url("/assets/background.png") center / cover no-repeat;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at center, rgba(129, 33, 129, 0.12), rgba(9, 5, 21, 0.28) 78%);
}

.landing-page {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  padding: 3rem 1.5rem 5.5rem;
  place-items: center;
}

.studio-logo {
  display: block;
  width: min(78vw, 690px);
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(4, 2, 12, 0.46));
  animation: logo-enter 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 1rem 1.25rem max(1rem, env(safe-area-inset-bottom));
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(5, 2, 15, 0.7);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes logo-enter {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 600px) {
  .landing-page {
    padding-inline: 1rem;
  }

  .studio-logo {
    width: min(90vw, 553px);
  }

  .site-footer p {
    font-size: 0.68rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-logo {
    animation: none;
  }
}
