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

:root {
  --bg: #08080b;
  --text: #f7f7f8;
  --muted: #9a9aa3;
  --accent: #8b2be2;
  --accent-light: #b66cff;
  --border: rgba(255, 255, 255, 0.09);
}

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

body {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 43, 226, 0.13), transparent 34%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

.background-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .18;
  pointer-events: none;
}

.glow-one {
  top: -180px;
  right: -100px;
  background: var(--accent);
}

.glow-two {
  bottom: -220px;
  left: -130px;
  background: #4b18a0;
}

.coming-soon {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: min(1120px, 100%);
  margin: auto;
  padding: 42px 32px 28px;
  display: flex;
  flex-direction: column;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), #5e19a3);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 10px 35px rgba(139, 43, 226, .28);
}

.brand-name {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.5px;
}

.brand-name span {
  color: var(--accent-light);
}

.hero {
  width: min(760px, 100%);
  margin: auto 0;
  padding: 90px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: -4px;
  font-weight: 800;
  margin-bottom: 28px;
}

h1 span {
  background: linear-gradient(100deg, #fff 10%, var(--accent-light) 85%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 11px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #c8c8ce;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a85cff;
  box-shadow: 0 0 0 5px rgba(168, 92, 255, .1), 0 0 18px rgba(168, 92, 255, .7);
}

footer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6e6e77;
  font-size: 12px;
  padding-top: 20px;
}

.dot {
  color: var(--accent);
}

@media (max-width: 600px) {
  .coming-soon {
    padding: 26px 22px 24px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand-name {
    font-size: 17px;
  }

  .hero {
    padding: 70px 0;
  }

  h1 {
    font-size: clamp(43px, 14vw, 64px);
    letter-spacing: -2.8px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
  }

  footer {
    font-size: 11px;
  }
}
