:root {
  --bg: #0c1015;
  --surface: rgba(17, 24, 32, 0.82);
  --surface-strong: #111820;
  --border: rgba(28, 42, 58, 0.92);
  --text: #d4e4ee;
  --text-dim: #6f8799;
  --cyan: #00cfdb;
  --navy: #0a2750;
  --mono: "IBM Plex Mono", ui-monospace, monospace;
  --sans: "Space Grotesk", system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% -12%, rgba(0, 207, 219, 0.08) 0%, transparent 60%),
    radial-gradient(640px 360px at 8% -8%, rgba(10, 39, 80, 0.4) 0%, transparent 62%),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    radial-gradient(circle, rgba(0, 207, 219, 0.12) 1px, transparent 1px);
  background-size: auto, 22px 22px;
  opacity: 0.22;
}

.coming-shell {
  width: 100%;
  padding: 32px;
  display: flex;
  justify-content: center;
}

.coming-card {
  position: relative;
  width: min(720px, 100%);
  padding: 40px 36px 34px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 34%),
    var(--surface);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(0, 207, 219, 0.05),
    0 0 48px rgba(0, 207, 219, 0.05),
    0 32px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(0, 207, 219, 0.12));
}

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
}

h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

.copy {
  width: min(540px, 100%);
  margin: 18px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
}

.status-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(28, 42, 58, 0.92);
  border-radius: 999px;
  background: rgba(10, 17, 25, 0.9);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}

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

  .coming-card {
    padding: 30px 22px 24px;
    border-radius: 16px;
  }

  .logo {
    width: 72px;
    height: 72px;
  }

  .copy {
    font-size: 15px;
    line-height: 1.65;
  }
}
