* {
  box-sizing: border-box;
}

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

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(228, 204, 255, 0.9), transparent 30%),
    radial-gradient(circle at bottom right, rgba(205, 226, 255, 0.8), transparent 28%),
    linear-gradient(180deg, #fcf9ff 0%, #f2ebff 100%);
}

.wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  width: 100%;
}

.pill {
  display: inline-block;
  padding: 20px 34px;
  border: 3px solid #7f63dc;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #241b43;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
  box-shadow: 0 20px 60px rgba(110, 91, 184, 0.18);
}

.soon {
  color: #6c6193;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .pill {
    padding: 16px 24px;
  }

  .soon {
    letter-spacing: 0.16em;
  }
}
