:root {
  color-scheme: light;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0b2e6d;
  background: #f8fbff;
  font-synthesis: none;
}

* { box-sizing: border-box; }

html, body {
  min-height: 100%;
  margin: 0;
}

body { overflow: hidden; }

.coming-soon {
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 40px 24px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.96) 0 18%, rgba(246,251,255,.8) 48%, transparent 72%),
    linear-gradient(145deg, #f7fbff 0%, #edf7ff 48%, #f9fcff 100%);
}

.coming-soon::before {
  position: absolute;
  z-index: -1;
  width: min(76vw, 840px);
  aspect-ratio: 1;
  border: 1px solid rgba(19,171,201,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(19,171,201,.025), 0 0 0 160px rgba(26,92,194,.02);
  content: "";
}

.message {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  text-align: center;
  animation: arrive .9s cubic-bezier(.22,1,.36,1) both;
}

.logo {
  display: block;
  width: clamp(230px, 28vw, 370px);
  height: auto;
  margin: 0 auto;
}

.line {
  width: 58px;
  height: 2px;
  margin: clamp(34px,6vh,58px) auto clamp(28px,5vh,46px);
  border-radius: 999px;
  background: linear-gradient(90deg, #15b5cf, #1b5fca);
}

h1 {
  margin: 0;
  color: #08295f;
  font-size: clamp(2rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.09;
  text-wrap: balance;
}

p {
  margin: clamp(22px,3.5vh,32px) 0 0;
  color: #52709a;
  font-size: clamp(1rem,1.6vw,1.25rem);
  font-weight: 500;
  letter-spacing: .015em;
}

.glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(12px);
  opacity: .45;
}

.glow-one {
  top: -18vw;
  right: -13vw;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(25,176,205,.18), transparent 67%);
}

.glow-two {
  bottom: -22vw;
  left: -17vw;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(24,86,191,.14), transparent 68%);
}

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

@media (max-width: 560px) {
  .coming-soon { padding-inline: 20px; }
  h1 br { display: none; }
}

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