:root {
  --bg1: #0e1025;
  --bg2: #111a36;
  --card: #0b1024;
  --muted: #a9b1d6;
  --text: #eef1ff;
  --accent: #8aa3ff;
  --accent2: #b289ff;
  --ok: #2ecc71;
  --warn: #ffbe55;
  --bad: #ff6b6b;
  --glass: rgba(255, 255, 255, 0.06);
  --glass2: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(
      1200px circle at 20% -10%,
      #22317a55,
      transparent 60%
    ),
    radial-gradient(1200px circle at 80% 110%, #7b3cf055, transparent 60%),
    linear-gradient(160deg, var(--bg1), var(--bg2));
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI,
    Roboto, "Helvetica Neue", Arial;
  color: var(--text);
}
.wrapper {
  text-align: center;
}
h1 {
  font-size: clamp(28px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--accent);
}
p {
  font-size: clamp(16px, 3vw, 20px);
  opacity: 0.8;
}
