:root {
  color-scheme: dark;
  background: #050505;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  position: relative;
  min-height: 100dvh;
  background: #050505;
  isolation: isolate;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: -12%;
  background: url("/landing-assets/123.png") center / cover no-repeat;
  content: "";
  filter: blur(64px) saturate(1.35) brightness(0.52);
  transform: scale(1.12);
}

body::after {
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at center, rgb(0 0 0 / 4%) 0 35%, rgb(0 0 0 / 52%) 100%),
    linear-gradient(rgb(0 0 0 / 14%), rgb(0 0 0 / 28%));
  content: "";
}

main {
  display: grid;
  min-height: 100dvh;
  place-items: center;
  padding: clamp(16px, 3vw, 40px);
}

img {
  display: block;
  width: auto;
  max-width: min(88vw, 672px);
  height: auto;
  max-height: calc(100dvh - clamp(32px, 6vw, 80px));
  border-radius: clamp(14px, 2vw, 26px);
  box-shadow: 0 24px 90px rgb(0 0 0 / 62%);
  object-fit: contain;
  user-select: none;
}

@media (max-width: 520px) {
  main {
    padding: 12px;
  }

  img {
    max-width: 94vw;
    max-height: calc(100dvh - 24px);
    border-radius: 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  img {
    animation: reveal 500ms cubic-bezier(.22, 1, .36, 1) both;
  }
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: scale(.985);
  }

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