body {
  min-width: 320px;
  min-height: 100vh;
}

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) var(--page-gutter) 3rem;
  background:
    radial-gradient(circle at 50% 52%, rgba(20, 74, 61, 0.12), transparent 38%),
    #030504;
  isolation: isolate;
}

.coming-soon::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}

.coming-soon__glow {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(82vw, 1120px);
  aspect-ratio: 3 / 1;
  border-radius: 50%;
  background: rgba(57, 212, 173, 0.075);
  filter: blur(80px);
  transform: translate(-50%, -40%);
}

.coming-soon__content {
  width: min(84vw, 1120px);
  animation: life-science-reveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.coming-soon__logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.48));
}

.coming-soon__message {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: clamp(19px, 2.3vw, 34px) 0 0;
  color: #39d4ad;
  font-size: clamp(0.68rem, 1.35vw, 1.16rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(57, 212, 173, 0.22);
}

@keyframes life-science-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@media (max-width: 640px) {
  .coming-soon {
    padding: calc(var(--header-height) + 2rem) 1rem 2.5rem;
  }

  .coming-soon__content {
    width: min(92vw, 520px);
  }

  .coming-soon__message {
    margin-top: 17px;
    font-size: clamp(0.56rem, 2.35vw, 0.72rem);
    letter-spacing: 0.08em;
  }
}

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