:root{
  --bg:#0b0f17;
  --bg2:#0e1422;
  --stroke:rgba(255,255,255,.08);
  --text:#e8eefc;
  --muted:rgba(232,238,252,.72);
  --muted2:rgba(232,238,252,.55);
  --accent:#7c5cff;
  --accent2:#22d3ee;
  --shadow:0 18px 50px rgba(0,0,0,.45);
  --r:18px;
  --r2:26px;
}

*{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 700px at 20% -10%, rgba(124,92,255,.22), transparent 60%),
    radial-gradient(900px 600px at 80% 10%, rgba(34,211,238,.16), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.wrap{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:28px 18px;
}

.card{
  width:min(960px, 100%);
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.card::before{
  content:"";
  position:absolute;
  inset:-220px -220px auto -220px;
  height:520px;
  background:
    radial-gradient(closest-side at 35% 45%, rgba(124,92,255,.18), transparent 60%),
    radial-gradient(closest-side at 75% 35%, rgba(34,211,238,.12), transparent 58%);
  filter: blur(12px);
  opacity:.85;
  pointer-events:none;
}

.head{
  position:relative;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:18px 18px;
  border-bottom:1px solid var(--stroke);
  background: rgba(11,15,23,.35);
  backdrop-filter: blur(10px);
}

.brand{display:flex;align-items:center;gap:12px}
.brand__mark{
  width:46px;height:46px;border-radius:14px;
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(34,211,238,.75));
  font-weight:800;letter-spacing:.5px;
  box-shadow: 0 10px 30px rgba(124,92,255,.18);
}
.brand__text{display:flex;flex-direction:column;line-height:1.05}
.brand__name{font-weight:800;font-size:14px}
.brand__tag{font-size:12px;color:var(--muted2)}

.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-weight:700;font-size:13px;
  white-space:nowrap;
}
.dot{
  width:8px;height:8px;border-radius:999px;
  background: radial-gradient(circle at 30% 30%, var(--accent2), var(--accent));
  box-shadow: 0 0 0 4px rgba(34,211,238,.10);
}

.content{
  position:relative;
  padding:22px 18px 18px;
}

h1{
  margin:6px 0 10px;
  font-size:44px;
  letter-spacing:-1px;
  line-height:1.05;
}
.lead{
  margin:0;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
}

.grid{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 840px){
  h1{font-size:36px}
  .grid{grid-template-columns:1fr}
}

.panel{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.02);
  border-radius: var(--r);
  padding:14px 14px;
}
.k{
  color: var(--muted2);
  font-size:12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.v{
  margin-top:6px;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -.2px;
}
.muted{
  margin-top:6px;
  color: var(--muted2);
  font-size: 13px;
  line-height: 1.6;
}

.divider{height:1px;background:var(--stroke);margin:16px 0}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid rgba(124,92,255,.35);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.55));
  box-shadow: 0 14px 40px rgba(124,92,255,.18);
  font-weight:800;font-size:14px;
  color: var(--text);
  text-decoration:none;
}
.btn:hover{filter:brightness(1.05)}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border:1px solid var(--stroke);
  box-shadow:none;
}

.fine{
  margin:14px 0 0;
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.6;
}

.foot{
  position:relative;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  padding:14px 18px;
  border-top:1px solid var(--stroke);
  background: rgba(11,15,23,.35);
  backdrop-filter: blur(10px);
}
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  color: rgba(232,238,252,.85);
}
