*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0b0f1a;
  --card: rgba(18, 24, 40, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --text: #e8ecf4;
  --muted: #8b95a8;
  --accent: #6c8cff;
  --accent-soft: #9b6cff;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: auto;
}

.page {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 2rem;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow--one {
  width: 420px;
  height: 420px;
  top: -120px;
  left: -80px;
  background: rgba(108, 140, 255, 0.22);
}

.glow--two {
  width: 360px;
  height: 360px;
  right: -100px;
  bottom: -100px;
  background: rgba(155, 108, 255, 0.18);
}

.card {
  position: relative;
  width: min(100%, 520px);
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(16px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.title {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #b8c7ff 55%, #c9b0ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.subtitle {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  color: var(--muted);
}

.status {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
  color: #c7d2fe;
  border: 1px solid rgba(108, 140, 255, 0.25);
  border-radius: 999px;
  background: rgba(108, 140, 255, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}
