:root {
  color-scheme: light;
  --text: #171717;
  --muted: #31272b;
  --soft: rgba(255, 255, 255, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.56), transparent 34rem),
    radial-gradient(circle at 78% 78%, rgba(255, 226, 234, 0.5), transparent 28rem),
    linear-gradient(135deg, #f7aaa9 0%, #f8bbb8 48%, #f3a4aa 100%);
  overflow: hidden;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  place-content: center;
  padding: 2rem;
  text-align: center;
}

.logo-lockup {
  display: grid;
  justify-items: center;
  animation: loadIn 1.4s ease-out both, breathe 5s ease-in-out 1.4s infinite;
}

p {
  margin: 0;
}

.chia-logo {
  display: block;
  width: min(82vw, 64rem);
  height: auto;
}

.subtitle {
  margin-top: clamp(0.7rem, 1.6vw, 1.35rem);
  color: var(--muted);
  font-size: clamp(1.35rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.48em;
  text-indent: 0.48em;
}

.status {
  position: relative;
  margin-top: clamp(2.6rem, 7vw, 5.5rem);
  color: rgba(49, 39, 43, 0.78);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
}

.status::after {
  position: absolute;
  left: 50%;
  bottom: -1.2rem;
  width: 6.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--soft), transparent);
  content: "";
  transform: translateX(-50%);
  animation: shimmer 2.4s ease-in-out infinite;
}

@keyframes loadIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.25;
    transform: translateX(-50%) scaleX(0.45);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-lockup,
  .status::after {
    animation: none;
  }
}
