:root{
  --bg:#070b17;
  --panel:rgba(12,18,38,.72);
  --panel2:rgba(10,16,34,.72);
  --line:rgba(255,255,255,.10);
  --text:#e5e7eb;
  --muted:#a3a3a3;
  --accent:#5b8cff;
  --good:#22c55e;
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, Segoe UI, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(91,140,255,.28), transparent 55%),
    radial-gradient(900px 520px at 80% 30%, rgba(34,197,94,.16), transparent 55%),
    radial-gradient(700px 520px at 50% 90%, rgba(14,165,233,.12), transparent 55%),
    var(--bg);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1100px;margin:0 auto;padding:22px}

/* Gate */
.gate{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:22px;
}
.gateBox{
  width:min(980px, 100%);
  border:1px solid var(--line);
  border-radius:22px;
  background: var(--panel);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.gateTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  border-bottom:1px solid var(--line);
  background:rgba(10,16,34,.35);
}
.brand{
  display:flex;align-items:center;gap:12px;
  font-weight:900;letter-spacing:.6px;
}
.logo{
  width:44px;height:44px;border-radius:14px;
  border:1px solid var(--line);
  display:grid;place-items:center;
  background: linear-gradient(135deg, rgba(91,140,255,.60), rgba(14,165,233,.25));
  box-shadow: 0 14px 40px rgba(91,140,255,.16);
}
.tag{
  font-size:13px;color:var(--muted);
  border:1px solid var(--line);
  padding:8px 12px;border-radius:999px;
  background: rgba(10,16,34,.55);
}

.gateMain{
  padding:26px 22px 22px;
}
.title{
  margin:0 0 8px;
  font-size:40px;
  letter-spacing:-.5px;
}
.sub{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
  max-width: 70ch;
}
.grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .title{font-size:34px}
}

.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel2);
  padding:18px;
  box-shadow: 0 16px 50px rgba(0,0,0,.30);
  transition: transform .10s ease, border-color .15s ease;
}
.card:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.18)}
.cardHead{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:12px;
}
.cardHead b{font-size:16px}
.badge{
  font-size:12px;color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;border-radius:999px;
  background: rgba(10,16,34,.6);
}
.card p{margin:0;color:var(--muted);line-height:1.6}

.btnRow{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:12px 14px;border-radius:14px;
  border:1px solid var(--line);
  background: rgba(10,16,34,.65);
  cursor:pointer;
  user-select:none;
}
.btn:hover{border-color: rgba(255,255,255,.18)}
.btn.primary{
  background: linear-gradient(135deg, rgba(91,140,255,.70), rgba(14,165,233,.32));
  border-color: rgba(91,140,255,.38);
}
.small{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;margin-top:14px;
}
@media (max-width: 860px){ .small{grid-template-columns:1fr} }
.mini{
  border:1px solid var(--line);
  border-radius:14px;
  padding:12px;
  background: rgba(10,16,34,.55);
}
.mini h4{margin:0 0 6px;font-size:12px;color:var(--muted);font-weight:800}
.mini div{font-size:14px;font-weight:800}
.dot{width:10px;height:10px;border-radius:50%}
.good{color:var(--good)}
.footer{
  padding:14px 20px;
  border-top:1px solid var(--line);
  background:rgba(10,16,34,.30);
  color:var(--muted);
  font-size:13px;
  display:flex;justify-content:space-between;gap:10px;flex-wrap:wrap;
}
