:root{
  --bg: #0b0f17;
  --card:#0f1624;
  --text:#e8eefc;
  --muted:#a9b3c7;
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --ring: rgba(110,231,255,.25);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, #182138 0%, transparent 60%),
    radial-gradient(900px 500px at 110% 10%, #1a1333 0%, transparent 60%),
    linear-gradient(180deg, #0a0d14 0%, #0b0f17 100%);
  background-color:var(--bg);
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:48px 16px;
}

.card{
  width:min(720px, 92vw);
  padding:40px 28px;
  background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border:1px solid rgba(255,255,255,0.06);
  border-radius:24px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.45),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}
.logo{
  width:36px;height:36px;fill:url(#g);
  filter: drop-shadow(0 6px 16px rgba(110,231,255,.35));
}
.logo defs{display:none}
.brand h1{
  margin:0;
  font-size:clamp(28px, 4vw, 44px);
  font-weight:800;
  letter-spacing: .4px;
}
.brand h1 span{
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.subtitle{
  margin:10px 0 16px;
  color:var(--muted);
  font-size:clamp(16px, 2.4vw, 18px);
}

.pill{
  display:inline-block;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 0 0 6px var(--ring);
  margin:12px 0 22px;
  color:#cfe5ff;
  font-weight:600;
}

.cta-row{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:6px 0 20px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:12px;
  text-decoration:none;
  color:#0b1220;
  background:linear-gradient(90deg, var(--accent), var(--accent2));
  font-weight:700;
  border:1px solid rgba(255,255,255,0.18);
  transition: transform .12s ease;
}
.btn:hover{ transform: translateY(-1px) }

.btn.outline{
  background:transparent;
  color:var(--text);
  border:1px solid rgba(255,255,255,0.22);
}

footer{
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
  border-top:1px dashed rgba(255,255,255,0.1);
  padding-top:14px;
}
