:root {
  color-scheme: dark;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
  background: #000;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.coming-soon__art {
  position: absolute;
  z-index: -1;
  width: auto;
  height: 100vh;
  height: 100svh;
  object-fit: cover;
  opacity: 0.17;
  transform: translate(-1.04vw, 0.7%);
  pointer-events: none;
  user-select: none;
}

.coming-soon__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(305.92px, calc(100vw - 48px));
  transform: translateY(16px);
}

.wordmark {
  display: flex;
  align-items: flex-start;
  gap: 2.36px;
  width: 100%;
  height: auto;
}

.wordmark img {
  display: block;
  height: auto;
}

.wordmark img:first-child {
  width: 50.57%;
}

.wordmark img:last-child {
  width: 48.67%;
}

.coming-soon p {
  margin: 13.9px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
}

.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;
}

@media (max-width: 640px) {
  .coming-soon__art {
    width: auto;
    height: 100vh;
    height: 100svh;
    transform: translate(0, 0.7%);
  }

  .coming-soon__content {
    width: min(72vw, 305.92px);
  }

  .coming-soon p {
    margin-top: 12px;
    font-size: 11px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }
}
