* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-blue: #31a7e4;
  --brand-deep: #185c80;
  --brand-dark: #02080d;
  --brand-soft: #dff5ff;
  --white: #ffffff;
  --muted: rgba(223, 245, 255, 0.76);
  --glass: rgba(255, 255, 255, 0.055);
  --border: rgba(49, 167, 228, 0.24);
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 10%, rgba(49, 167, 228, 0.22), transparent 34%),
    radial-gradient(circle at 12% 22%, rgba(49, 167, 228, 0.14), transparent 26%),
    linear-gradient(145deg, #000000 0%, #03111a 45%, #000000 100%);
  overflow-x: hidden;
}

.coming-soon {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px 28px;
  isolation: isolate;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(49, 167, 228, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 167, 228, 0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
}

.bg-shape {
  position: absolute;
  z-index: -2;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.6;
  animation: float 8s ease-in-out infinite;
}

.shape-one {
  width: 250px;
  height: 250px;
  top: 9%;
  left: 8%;
  background: rgba(49, 167, 228, 0.15);
}

.shape-two {
  width: 320px;
  height: 320px;
  right: -80px;
  top: 24%;
  background: rgba(24, 92, 128, 0.22);
  animation-delay: -2s;
}

.shape-three {
  width: 180px;
  height: 180px;
  left: 18%;
  bottom: 10%;
  background: rgba(49, 167, 228, 0.12);
  animation-delay: -4s;
}

.hero-card {
  width: min(100%, 860px);
  text-align: center;
  padding: 54px 52px 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
  border: 1px solid var(--border);
  border-radius: 34px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.logo-wrap {
  width: min(100%, 560px);
  margin: 0 auto 20px;
  padding: 0 12px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(49, 167, 228, 0.16));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(49, 167, 228, 0.36);
  border-radius: 999px;
  color: var(--brand-soft);
  background: rgba(49, 167, 228, 0.08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 18px var(--brand-blue);
}

h1 {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: clamp(38px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: -0.07em;
  color: var(--white);
}

.intro {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.75;
}

.notify-form {
  width: min(100%, 560px);
  margin: 34px auto 0;
  display: flex;
  gap: 12px;
  padding: 8px;
  border: 1px solid rgba(49, 167, 228, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.notify-form input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  padding: 0 18px;
  color: var(--white);
  background: transparent;
  font: inherit;
}

.notify-form input::placeholder {
  color: rgba(223, 245, 255, 0.55);
}

.notify-form button {
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  padding: 15px 24px;
  border-radius: 999px;
  color: #00131d;
  background: linear-gradient(135deg, #66c9ff, var(--brand-blue));
  font: inherit;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(49, 167, 228, 0.24);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.notify-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(49, 167, 228, 0.34);
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.status-grid div {
  padding: 18px 16px;
  border: 1px solid rgba(49, 167, 228, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.status-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-soft);
  font-size: 16px;
}

.status-grid span {
  display: block;
  color: rgba(223, 245, 255, 0.6);
  font-size: 14px;
}

.page-footer {
  width: 100%;
  margin-top: 30px;
  text-align: center;
  color: rgba(223, 245, 255, 0.48);
  font-size: 14px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -22px, 0);
  }
}

@media (max-width: 700px) {
  .coming-soon {
    padding: 28px 14px 22px;
  }

  .hero-card {
    padding: 34px 20px 30px;
    border-radius: 26px;
  }

  .logo-wrap {
    width: min(100%, 420px);
    margin-bottom: 16px;
  }

  h1 {
    letter-spacing: -0.05em;
  }

  .notify-form {
    flex-direction: column;
    border-radius: 24px;
    padding: 10px;
  }

  .notify-form input {
    min-height: 48px;
    text-align: center;
  }

  .notify-form button {
    width: 100%;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }
}
