:root {
  --white: #ffffff;
  --ink: #1f2421;
  --gray: #3b3b3b;
  --warm-gray: #d9d5c9;
  --paper: #f5f2e7;
  --main: #005c43;
  --green-dark: #344b47;
  --green-light: #8cbf94;
  --earth: #d95f44;
  --yellow: #ffba5c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 186, 92, 0.42), transparent 26vw),
    radial-gradient(circle at 82% 22%, rgba(217, 95, 68, 0.22), transparent 24vw),
    radial-gradient(circle at 52% 88%, rgba(140, 191, 148, 0.34), transparent 30vw),
    linear-gradient(135deg, var(--paper) 0%, #ebe6d6 48%, var(--warm-gray) 100%);
}

img {
  display: block;
  max-width: 100%;
}

.coming-soon-shell {
  position: relative;
  isolation: isolate;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.coming-soon-shell::before,
.coming-soon-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: clamp(180px, 28vw, 360px);
  aspect-ratio: 1;
  border-radius: 42% 58% 61% 39% / 42% 38% 62% 58%;
  opacity: 0.9;
  animation: blob-drift 11s ease-in-out infinite alternate;
}

.coming-soon-shell::before {
  left: max(-80px, -8vw);
  bottom: max(-90px, -10vw);
  background: rgba(0, 92, 67, 0.14);
}

.coming-soon-shell::after {
  top: max(-80px, -9vw);
  right: max(-70px, -7vw);
  background: rgba(255, 186, 92, 0.32);
  animation-delay: -4s;
}

.coming-soon-stage {
  width: min(100%, 720px);
  display: grid;
  justify-items: center;
  gap: clamp(16px, 3vh, 28px);
}

.coming-soon-card {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: clamp(12px, 2.1vh, 20px);
  padding: clamp(24px, 4.6vw, 46px) clamp(24px, 5vw, 54px);
  border: 1px solid rgba(31, 36, 33, 0.12);
  border-radius: clamp(24px, 5vw, 42px);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 26px 70px rgba(31, 36, 33, 0.16);
  text-align: center;
  backdrop-filter: blur(18px);
}

.coming-soon-logo {
  width: clamp(112px, 16vw, 164px);
  filter: drop-shadow(0 12px 22px rgba(31, 36, 33, 0.12));
}

.fun-spinner {
  position: relative;
  width: clamp(124px, 23vmin, 192px);
  aspect-ratio: 1;
  margin: clamp(2px, 0.8vh, 6px) 0;
}

.spinner-ring,
.spinner-dot,
.spinner-core,
.spinner-core span {
  position: absolute;
  display: block;
  border-radius: 999px;
}

.spinner-ring {
  inset: 0;
  border: clamp(5px, 1.1vmin, 9px) solid transparent;
}

.spinner-ring-one {
  border-top-color: var(--main);
  border-right-color: var(--yellow);
  border-bottom-color: rgba(0, 92, 67, 0.22);
  animation: spin-happy 1.15s linear infinite;
}

.spinner-ring-two {
  inset: 14%;
  border-left-color: var(--earth);
  border-bottom-color: var(--green-light);
  border-top-color: rgba(52, 75, 71, 0.18);
  animation: spin-happy 1.7s linear infinite reverse;
}

.spinner-core {
  inset: 31%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.1), 0 16px 32px rgba(31, 36, 33, 0.2);
  animation: core-bounce 1.8s ease-in-out infinite;
}

.spinner-core span {
  width: 42%;
  aspect-ratio: 1;
  background: var(--yellow);
  transform-origin: 50% 120%;
  animation: sprout-wiggle 0.9s ease-in-out infinite alternate;
}

.spinner-dot {
  width: clamp(13px, 2.8vmin, 24px);
  aspect-ratio: 1;
  transform-origin: calc(clamp(64px, 12.5vmin, 105px)) calc(clamp(64px, 12.5vmin, 105px));
}

.dot-one {
  left: 50%;
  top: 0;
  background: var(--yellow);
  animation: orbit-one 2.2s linear infinite;
}

.dot-two {
  left: 8%;
  top: 54%;
  background: var(--earth);
  animation: orbit-two 2.55s linear infinite;
}

.dot-three {
  right: 4%;
  top: 62%;
  background: var(--green-light);
  animation: orbit-three 2.9s linear infinite;
}

.coming-soon-eyebrow {
  margin: 0;
  color: var(--main);
  font-size: clamp(12px, 2.1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.coming-soon-card h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 8vw, 76px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-wrap: balance;
  text-shadow: 0 10px 26px rgba(52, 75, 71, 0.14);
}

.coming-soon-copy {
  max-width: 390px;
  margin: 0;
  color: var(--gray);
  font-size: clamp(12px, 2.25vw, 16px);
  line-height: 1.42;
  text-wrap: balance;
}

@keyframes spin-happy {
  to {
    transform: rotate(360deg);
  }
}

@keyframes core-bounce {
  0%,
  100% {
    transform: scale(0.94);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes sprout-wiggle {
  from {
    border-radius: 70% 30% 64% 36% / 58% 36% 64% 42%;
    transform: rotate(-9deg);
  }

  to {
    border-radius: 35% 65% 39% 61% / 42% 60% 40% 58%;
    transform: rotate(9deg);
  }
}

@keyframes orbit-one {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-two {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes orbit-three {
  to {
    transform: rotate(360deg);
  }
}

@keyframes blob-drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(18px, -20px, 0) rotate(16deg);
  }
}

@media (max-width: 520px), (max-height: 650px) {
  .coming-soon-stage {
    gap: 14px;
  }

  .coming-soon-card {
    gap: 10px;
    padding: 20px;
  }

  .coming-soon-logo {
    width: clamp(92px, 28vw, 118px);
  }

  .fun-spinner {
    width: clamp(104px, 31vmin, 138px);
  }

  .coming-soon-card h1 {
    font-size: clamp(30px, 9.7vw, 46px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .coming-soon-shell::before,
  .coming-soon-shell::after,
  .spinner-ring-one,
  .spinner-ring-two,
  .spinner-core,
  .spinner-core span,
  .spinner-dot {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
