
:root{
  --bg:#0b0f1a;
  --card:#12182a;
  --muted:#9aa3b2;
  --text:#e9eef7;
  --brand:#4aa3ff;
  --brand-2:#7df9c6;
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, sans-serif;
  line-height:1.6;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 80% -20%, rgba(125,249,198,0.08), transparent 60%),
    radial-gradient(1000px 500px at 10% -10%, rgba(74,163,255,0.10), transparent 60%),
    var(--bg);
}
.wrap{min-height:100%; display:flex; align-items:center; justify-content:center; padding:48px 16px;}
.card{
  width:min(1000px,100%);
  background: linear-gradient( to bottom right, rgba(18,24,42,0.9), rgba(18,24,42,0.75) );
  border:1px solid rgba(255,255,255,0.06);
  border-radius:16px;
  padding:28px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.02);
  backdrop-filter: blur(10px);
}
a{ color:#d7e9ff }
.badge{display:inline-flex; gap:8px; align-items:center; padding:6px 10px; border-radius:999px; background: rgba(74,163,255,0.12); border:1px solid rgba(74,163,255,0.25); color:#d7e9ff; font-size:12px; letter-spacing:.3px; text-transform:uppercase;}
h1{margin:12px 0 8px; font-size: clamp(28px, 4vw, 44px); line-height:1.1; letter-spacing:-0.02em;}
.sub{margin:0 0 22px; color:var(--muted); font-size: clamp(14px, 2vw, 18px);}
.grid{display:grid; gap:14px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin: 22px 0 24px;}
.pill{display:flex; gap:10px; align-items:center; background: linear-gradient( to bottom right, rgba(255,255,255,0.04), rgba(255,255,255,0.02) ); border:1px solid rgba(255,255,255,0.08); border-radius:12px; padding:12px 14px;}
.dot{ width:8px; height:8px; border-radius:50%; background: var(--brand-2); box-shadow:0 0 12px var(--brand-2); flex:0 0 auto;}
.btn{ display:inline-block; padding:12px 18px; border-radius:10px; border:1px solid rgba(255,255,255,0.12); background: linear-gradient( to bottom, rgba(74,163,255,0.2), rgba(74,163,255,0.1) ); color:white; text-decoration:none; font-weight:600; box-shadow: 0 8px 20px rgba(74,163,255,0.25); transition: transform .15s ease, box-shadow .15s ease; }
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(74,163,255,0.3); }
.muted{ color: var(--muted); font-size:14px }
.row{ display:flex; gap:12px; flex-wrap:wrap }
.spacer{ height:6px }
footer{ margin-top:22px; padding-top:16px; border-top:1px dashed rgba(255,255,255,0.12); display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; font-size:13px; color:var(--muted); }
.brand{ display:flex; align-items:center; gap:10px; font-weight:700; }
.logo{ width:28px; height:28px; border-radius:6px; background: linear-gradient(135deg, var(--brand), var(--brand-2)); box-shadow: 0 0 0 4px rgba(74,163,255,0.08), 0 8px 20px rgba(125,249,198,0.2); }
.nav{ display:flex; gap:14px; flex-wrap:wrap; font-size:14px; }
.main{ max-width:900px; }
h2{ margin-top: 8px }
.section{ margin: 8px 0 16px }
.small{ font-size: 13px; color: var(--muted) }
ul{margin: .2rem 0 .6rem 1.2rem}
li{margin:.2rem 0}
