:root {
  --navy: #062c66;
  --navy-dark: #021b31;
  --blue: #0a66ff;
  --slate: #2d3748;
  --muted: #66758a;
  --white: #ffffff;
  --light: #f5f7fa;
  --line: rgba(6, 44, 102, 0.14);
  --shadow: 0 30px 90px rgba(2, 27, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--light);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--slate);
  background:
    radial-gradient(circle at 15% 10%, rgba(10, 102, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 90%, rgba(6, 44, 102, 0.11), transparent 30rem),
    linear-gradient(145deg, #fbfdff 0%, #f5f7fa 52%, #edf3ff 100%);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
  isolation: isolate;
  overflow: hidden;
}

.background-mark {
  position: absolute;
  z-index: -2;
  border: 1px solid rgba(10, 102, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.background-mark-left {
  top: -23rem;
  left: -18rem;
  width: 48rem;
  height: 48rem;
}

.background-mark-right {
  right: -23rem;
  bottom: -27rem;
  width: 56rem;
  height: 56rem;
}

.page-shell::before,
.page-shell::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  content: "";
  filter: blur(1px);
  pointer-events: none;
}

.page-shell::before {
  top: 10%;
  right: -7rem;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(145deg, rgba(10, 102, 255, 0.18), rgba(10, 102, 255, 0));
  animation: drift 9s ease-in-out infinite;
}

.page-shell::after {
  bottom: 6%;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  background: linear-gradient(145deg, rgba(6, 44, 102, 0.17), rgba(6, 44, 102, 0));
  animation: drift 11s ease-in-out infinite reverse;
}

.coming-soon {
  width: min(100%, 760px);
  padding: clamp(36px, 7vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transform: translateY(16px) scale(0.99);
}

body.is-ready .coming-soon {
  animation: enter 750ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.logo {
  display: block;
  width: clamp(150px, 27vw, 214px);
  height: auto;
  margin: 0 auto 34px;
}

.content {
  max-width: 620px;
  margin: 0 auto;
}

.tagline {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.72rem, 1.8vw, 0.84rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.6;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--navy-dark);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.7rem, 8vw, 5.25rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.intro {
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.7;
}

.launch-status {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 28px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(245, 247, 250, 0.82);
  font-size: 0.88rem;
  font-weight: 600;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(10, 102, 255, 0.11);
  animation: pulse 2.2s ease-in-out infinite;
}

footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 46px;
  color: #7b8798;
  font-size: 0.8rem;
}

footer a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

footer a:hover,
footer a:focus-visible {
  text-decoration: underline;
}

footer a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(10, 102, 255, 0.2);
  outline-offset: 4px;
}

.separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #9aa5b5;
}

@keyframes enter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 6px rgba(10, 102, 255, 0.11);
  }
  50% {
    box-shadow: 0 0 0 11px rgba(10, 102, 255, 0.02);
  }
}

@keyframes drift {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, 20px, 0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 14px;
  }

  .coming-soon {
    padding: 38px 22px 30px;
    border-radius: 24px;
  }

  .logo {
    width: clamp(142px, 48vw, 186px);
    margin-bottom: 28px;
  }

  .tagline {
    margin-bottom: 14px;
    letter-spacing: 0.12em;
  }

  h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .intro {
    margin-top: 20px;
    line-height: 1.6;
  }

  footer {
    margin-top: 38px;
  }
}

@media (max-width: 380px) {
  .coming-soon {
    padding-inline: 17px;
  }

  footer {
    flex-direction: column;
    gap: 7px;
  }

  .separator {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
