:root{
  --bg:#f2f3f5;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --border:#e5e7eb;
  --shadow:0 12px 30px rgba(0,0,0,.12);
  --radius:18px;
}

html{ -webkit-text-size-adjust:100%; }
*{ box-sizing:border-box }

body{
  margin:0;
  min-height:100svh;
  display:grid;
  place-items:center;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#f8f9fb,#f2f3f5);
}

.pageCta{
  position:fixed;
  inset:0;
  background:transparent;
  border:0;
  cursor:pointer;
  z-index:10;
}

.wrap{
  width:min(520px,94vw);
  padding:18px;
  position:relative;
  z-index:20;
  pointer-events:none;
}

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  padding:24px;
  text-align:center;
}

.pill{
  display:inline-block;
  padding:6px 10px;
  font-size:12px;
  border-radius:999px;
  background:#f3f4f6;
  border:1px solid var(--border);
  margin-bottom:10px;
}

h1{
  font-size:28px;
  margin:6px 0 8px;
}

.sub{
  color:#6b7280;
  margin-bottom:16px;
}

.continueColor{
  background:linear-gradient(180deg,#3b82f6,#2563eb);
  color:#fff;
  box-shadow:0 10px 25px rgba(37,99,235,.35);
}

.continuePulse{
  display:inline-block;
  padding:16px 28px;
  border-radius:16px;
  font-weight:900;
  letter-spacing:1px;
  animation:pulse 1.4s infinite;
  text-transform:uppercase;
}

@keyframes pulse{
  0%{ transform:scale(1); }
  70%{ transform:scale(1.06); }
  100%{ transform:scale(1); }
}

.fineprint{
  font-size:12px;
  color:#9ca3af;
  margin-top:16px;
}
