:root {
  color: #909090;
  background: #ededed;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
}

.clock {
  position: absolute;
  top: 32px;
  left: 50%;
  display: flex;
  gap: 4px;
  margin: 0;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.hero {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  transform: translateY(-2px);
}

.wordmark {
  width: min(46vw, 884px);
  height: min(6vw, 116px);
  margin: 0;
  display: grid;
  place-items: center;
}

.ransom-line {
  --line-height: clamp(30px, 4.48vw, 86px);
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: calc(var(--line-height) * 0.012);
  line-height: 0;
  white-space: nowrap;
}

.ransom-letter {
  display: inline-flex;
  height: calc(var(--line-height) * var(--scale));
  flex: none;
  align-items: center;
  justify-content: center;
  margin-right: calc(var(--line-height) * var(--mx));
  transform: translateY(calc(var(--line-height) * var(--dy))) rotate(var(--rot));
  transform-origin: center;
}

.ransom-letter img {
  display: block;
  width: auto;
  height: 100%;
  user-select: none;
}

.ransom-space {
  width: calc(var(--line-height) * 0.38);
  flex: none;
}

.coming-soon {
  margin: 27px 0 0;
  color: #909090;
  font-family: "Times New Roman", Times, serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.contact {
  position: absolute;
  bottom: 40px;
  left: 50%;
  color: #909090;
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  text-decoration: none;
  transform: translateX(-50%);
  transition: color 160ms ease;
}

.contact:hover,
.contact:focus-visible {
  color: #909090;
}

.contact:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 8px;
}

.sr-only {
  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: 800px) {
  .clock {
    top: 20px;
  }

  .wordmark {
    width: min(88vw, 620px);
    height: min(14vw, 82px);
  }

  .coming-soon {
    margin-top: 22px;
  }

  .contact {
    bottom: 24px;
    font-size: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact {
    transition: none;
  }
}
