:root {
  --page-bg: #ffffff;
  --ink: #0a1226;
  --cyan: #0e8fa0;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #E5FFFF 0%, #FFF 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.5), transparent 36rem),
    linear-gradient(90deg, rgba(255,255,255,0.42), transparent 28%, rgba(255,255,255,0.34));
  mix-blend-mode: soft-light;
}

.wave-field {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.82;
}

.coming-soon {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100svh;
  place-items: center;
  align-content: center;
  gap: clamp(0.7rem, 1.8vw, 1.1rem);
  padding: clamp(1.5rem, 4vw, 4rem);
  text-align: center;
}

.brand-logo {
  width: min(70vw, 420px);
  height: auto;
  filter: drop-shadow(0 24px 50px rgba(10, 18, 38, 0.08));
}

.coming-soon-note {
  margin: 0;
  color: rgba(10, 18, 38, 0.54);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.76rem, 1.4vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.coming-soon-note a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 18, 38, 0.18);
  transition: color 180ms ease, border-color 180ms ease;
}

.coming-soon-note a:hover,
.coming-soon-note a:focus-visible {
  color: var(--cyan);
  border-color: rgba(14, 143, 160, 0.42);
}

@media (max-width: 640px) {
  body {
    background:
      radial-gradient(circle at 70% 12%, rgba(110, 243, 255, 0.26), transparent 14rem),
      radial-gradient(circle at 14% 78%, rgba(37, 165, 224, 0.12), transparent 12rem),
      linear-gradient(180deg, #eefcfd 0%, #ffffff 58%, #f7fbff 100%);
  }

  .brand-logo {
    width: min(84vw, 380px);
  }
}

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