:root {
  --bg1: #0b4dff;
  --bg2: #00c2ff;
  --bg3: #7c3aed;
  --card: #ffffff;
  --text: rgba(6, 10, 18, 0.92);
  --muted: rgba(6, 10, 18, 0.62);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.25);
  --radius: 18px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1000px 650px at 50% 45%, rgba(0, 194, 255, 0.55), transparent 60%),
    radial-gradient(900px 600px at 25% 30%, rgba(124, 58, 237, 0.55), transparent 65%),
    radial-gradient(900px 600px at 75% 30%, rgba(11, 77, 255, 0.60), transparent 65%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
  overflow-x: hidden;
}

.stage {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 18px;
  position: relative;
}

.rays {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rays::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: min(860px, 92vw);
  height: min(860px, 92vw);
  opacity: 0.20;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255,255,255,0.85) 0deg 1deg,
      rgba(255,255,255,0.0) 1deg 5deg
    );
  mask-image: radial-gradient(circle, rgba(0,0,0,0.95) 0 52%, transparent 67%);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,0.95) 0 52%, transparent 67%);
}

.center {
  position: relative;
  z-index: 2;
  width: min(560px, 92vw);
  display: grid;
  place-items: center;
}

.card {
  width: min(420px, 92vw);
  background: var(--card);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px 24px 22px;
  text-align: center;
}

.logo {
  width: 180px;
  height: 180px;
  margin: 6px auto 12px;
  display: block;
  object-fit: contain;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  filter: drop-shadow(0 18px 32px rgba(2, 10, 40, 0.25));
}

.title {
  font-weight: 900;
  font-size: 28px;
  color: var(--text);
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.handle {
  color: rgba(6, 10, 18, 0.55);
  font-weight: 700;
  margin-top: 6px;
}

.desc {
  color: rgba(6, 10, 18, 0.68);
  line-height: 1.55;
  margin: 14px 0 18px;
  font-size: 14px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(260px, 84%);
  height: 44px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, rgba(11, 77, 255, 0.92), rgb(1 156 255));
  box-shadow: 0 10px 22px rgba(2, 10, 40, 0.18);
  transition: transform 120ms ease, filter 120ms ease;
}
.cta:hover { transform: translateY(-1px); filter: brightness(1.02); }
.cta:active { transform: translateY(0px); }

.fineprint {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(6, 10, 18, 0.52);
}

