
:root{
  --bg: #0b1220;
  --card: #0f172a;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #60a5fa;
  --accent-2: #34d399;
  --border: #1f2937;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,'Helvetica Neue',Arial,'Noto Sans',sans-serif;background:var(--bg);color:var(--text);}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.container{max-width:1100px;margin:0 auto;padding:24px}
.header{display:flex;flex-wrap:wrap;gap:24px;align-items:center;justify-content:space-between;margin-top:12px;margin-bottom:24px}
.brand{display:flex;align-items:center;gap:16px}
.brand img{width:88px;height:88px;border-radius:50%;border:1px solid var(--border);background:#111}
.brand .name{font-size:28px;font-weight:700}
.tag{font-size:15px;color:var(--muted)}
.hero{background:linear-gradient(135deg, rgba(96,165,250,0.12), rgba(52,211,153,0.1));border:1px solid var(--border);border-radius:16px;padding:24px;margin-bottom:28px}
.hero p{margin:0;font-size:18px;line-height:1.6;color:#e9eef6}
.grid{display:grid;grid-template-columns:repeat(12,1fr);gap:18px}
.card{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:20px}
.h{font-size:18px;font-weight:700;margin:0 0 10px 0;color:#e9eef6}
.p{color:#c7d2fe;line-height:1.7}
.list{margin:0;padding-left:18px;color:#dbeafe}
.list li{margin:6px 0}
.kv{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.kv span{border:1px solid var(--border);background:#0b1325;padding:6px 10px;border-radius:999px;font-size:13px;color:#cbd5e1}
.footer{margin:28px 0;color:var(--muted);font-size:14px;text-align:center}
.btn{display:inline-block;padding:10px 14px;border-radius:10px;border:1px solid var(--border);background:#0b1325;color:#e5e7eb}
.btn:hover{background:#0d1530}
small.muted{color:var(--muted)}
/* responsive */
@media (max-width: 860px){
  .grid{grid-template-columns:1fr}
  .brand{justify-content:flex-start}
}
