:root {
  color-scheme: light;
  --monkii-green: #0b4037;
  --monkii-gold: #daa520;
  --monkii-slate: #3c6478;
  --monkii-white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--monkii-white);
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  display: grid;
  place-items: center;
  overflow-x: hidden;
  background: var(--monkii-white);
  color: var(--monkii-green);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coming-soon {
  width: min(94vw, 720px);
  padding: clamp(28px, 6vh, 64px) 20px;
  text-align: center;
  animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-lockup {
  display: block;
  width: min(88vw, 620px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgb(11 64 55 / 8%));
}

.teaser {
  margin: clamp(4px, 1.5vh, 16px) 0 0;
  color: var(--monkii-slate);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: 1.5;
}

.teaser span {
  color: var(--monkii-gold);
  font-weight: 600;
}

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

::selection {
  background: rgb(218 165 32 / 25%);
  color: var(--monkii-green);
}

@keyframes arrive {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon {
    animation: none;
  }
}

@media (max-width: 520px) {
  .coming-soon {
    width: 100%;
    padding-inline: 12px;
  }

  .teaser {
    letter-spacing: 0.035em;
  }
}
