:root {
  --brand: #08acd3;
  --brand-deep: #028bb0;
  --ink: #2f3237;
  --muted: #737a82;
  --line: rgba(24, 174, 210, 0.22);
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f7fbfc;
}

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(4, 159, 198, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 159, 198, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.45;
}

.glow-a {
  width: 560px;
  height: 560px;
  top: -260px;
  right: -140px;
  background: radial-gradient(circle, rgba(8, 172, 211, 0.25), rgba(8, 172, 211, 0));
}

.glow-b {
  width: 460px;
  height: 460px;
  left: -220px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(8, 172, 211, 0.15), rgba(8, 172, 211, 0));
}

.page-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 28px;
}

.coming-soon-card {
  width: min(860px, 100%);
  text-align: center;
  padding: 68px 64px 58px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(6, 171, 211, 0.13);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(18, 75, 91, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.logo-wrap {
  width: min(520px, 88%);
  margin: 0 auto 32px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.accent-line {
  width: 96px;
  height: 2px;
  margin: 0 auto 28px;
  background: rgba(8, 172, 211, 0.14);
  overflow: hidden;
  border-radius: 999px;
}

.accent-line span {
  display: block;
  width: 42px;
  height: 100%;
  background: var(--brand);
  border-radius: inherit;
  animation: sweep 2.4s ease-in-out infinite;
}

.eyebrow {
  margin: 0 0 15px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--brand-deep);
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 700;
  color: #33373b;
}

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

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #5c666c;
  font-size: 13px;
  font-weight: 600;
  background: rgba(240, 252, 255, 0.8);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(8, 172, 211, 0.09);
  animation: pulse 1.8s ease-out infinite;
}

footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 12px;
  color: #929aa0;
}

.footer-separator {
  width: 3px;
  height: 3px;
  background: #b5bcc0;
  border-radius: 50%;
}

@keyframes sweep {
  0%, 100% { transform: translateX(-6px); }
  50% { transform: translateX(60px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(8, 172, 211, 0.28); }
  70% { box-shadow: 0 0 0 9px rgba(8, 172, 211, 0); }
  100% { box-shadow: 0 0 0 0 rgba(8, 172, 211, 0); }
}

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

  .coming-soon-card {
    padding: 44px 22px 40px;
    border-radius: 22px;
  }

  .logo-wrap {
    width: 92%;
    margin-bottom: 28px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.18em;
  }

  .description {
    line-height: 1.65;
  }

  footer {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

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