:root {
  color-scheme: dark;
  --midnight: #0b1023;
  --soft-white: #f4f7ff;
  --quiet-white: rgba(255, 255, 255, 0.55);
  --open-blue: #2667fe;
  --open-violet: #b896fc;
  --open-amber: #f8ad37;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
  color: var(--soft-white);
  background:
    radial-gradient(circle at 50% 39%, rgba(95, 122, 192, 0.16), transparent 19rem),
    var(--midnight);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

.home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 52px 32px 64px;
}

.launch {
  width: min(100%, 560px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-3.5vh);
  text-align: center;
}

.open-frame {
  width: clamp(150px, 12vw, 175px);
  height: auto;
  display: block;
  margin-bottom: 24px;
  animation: icon-breathe 4.8s ease-in-out infinite;
}

.wordmark {
  width: min(100%, 470px);
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.tagline {
  width: 100%;
  margin: 0 0 58px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 560;
  letter-spacing: 0.18em;
  line-height: 1.45;
  text-align: center;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.tagline-one {
  color: var(--open-blue);
}

.tagline-frame {
  color: rgba(255, 255, 255, 0.82);
}

.tagline-infinite {
  color: var(--open-violet);
}

.tagline-stories {
  color: var(--open-amber);
}

h1 {
  margin: 0 0 31px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1;
}

.store-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  user-select: none;
}

.store-badge img {
  display: block;
  width: auto;
  pointer-events: none;
}

.app-store img {
  height: 52px;
}

.google-play img {
  height: 78px;
}

footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: var(--quiet-white);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

@keyframes icon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-4px) scale(1.008);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 600px) {
  body {
    overflow: auto;
  }

  .home {
    min-height: 100vh;
    min-height: 100svh;
    padding: 72px 24px 34px;
  }

  .launch {
    width: 100%;
    transform: none;
  }

  .open-frame {
    width: clamp(112px, 34vw, 132px);
    margin-bottom: 24px;
  }

  .wordmark {
    width: min(100%, 350px);
  }

  .tagline {
    max-width: 20rem;
    margin-bottom: 54px;
    font-size: 13px;
    letter-spacing: 0.115em;
  }

  h1 {
    margin-bottom: 30px;
    font-size: 18px;
    letter-spacing: 0.17em;
  }

  .store-badges {
    flex-direction: column;
    gap: 14px;
  }

  .app-store img {
    height: 50px;
  }

  .google-play img {
    height: 75px;
  }

  footer {
    position: static;
    margin-top: 62px;
  }
}
