:root {
  --page: #fdfdfc;
  --ink: #1a1919;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.coming-soon-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
  background: var(--page);
}

.brand-logo {
  position: absolute;
  top: 45%;
  left: 50%;
  display: block;
  width: clamp(160px, 14vw, 212px);
  height: auto;
  animation: logo-rise 520ms ease-in both;
  transform: translate(-50%, -50%);
}

.coming-soon-text {
  position: absolute;
  right: 0;
  bottom: clamp(36px, 6.1svh, 60px);
  left: 0;
  margin: 0;
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(14px, 1.19vw, 18px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 3px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@media (max-height: 520px) {
  .coming-soon-text {
    bottom: 24px;
  }
}
