:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#121f38;
  --text:#e7eefc;
  --muted:#b8c6e6;
  --brand:#7aa7ff;
  --accent:#9ef0d3;
  --line:rgba(231,238,252,.12);
  --shadow:0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 10% 10%, rgba(122,167,255,.18), transparent 55%),
              radial-gradient(900px 500px at 80% 20%, rgba(158,240,211,.14), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{color:var(--brand)}
small{color:var(--muted)}
p{color:var(--text); opacity:.95}
h1,h2,h3{line-height:1.2;margin:0 0 10px}
h1{font-size:40px; letter-spacing:-0.02em}
h2{font-size:26px;margin-top:26px}
h3{font-size:18px}
ul{margin:8px 0 0 18px;color:var(--text);opacity:.95}

.container{max-width:var(--max); margin:0 auto; padding:0 18px}
.hr{border-top:1px solid var(--line); margin:18px 0}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{width:90px;height:90px}
.brand strong{font-weight:700}
.navlinks{
  display:flex; flex-wrap:wrap; gap:10px;
}
.navlinks a{
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
  border:1px solid transparent;
}
.navlinks a.active, .navlinks a:hover{
  color:var(--text);
  border-color:var(--line);
  background: rgba(255,255,255,.04);
}

.hero{
  padding:44px 0 18px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap:18px;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  h1{font-size:34px}
}
.panel{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.kicker{
  display:inline-flex; gap:10px; align-items:center;
  font-size:13px; color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px; border-radius:999px;
  background: rgba(255,255,255,.03);
}
.kicker span.dot{
  width:8px;height:8px;border-radius:99px;background:var(--accent);
}
.cta-row{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  color:var(--text);
}
.btn.primary{
  border-color: rgba(122,167,255,.35);
  background: rgba(122,167,255,.14);
}
.btn:hover{transform: translateY(-1px)}
.badges{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.badge{
  font-size:12px;color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;border-radius:999px;
  background: rgba(255,255,255,.03);
}

.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
  margin:18px 0 6px;
}
@media (max-width: 1100px){ .cards{grid-template-columns: repeat(2, 1fr)} }
@media (max-width: 560px){ .cards{grid-template-columns: 1fr} }
.card{
  background: rgba(18,31,56,.85);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:14px;
  box-shadow: var(--shadow);
}
.card p{color:var(--muted); margin:6px 0 0}
.card .meta{margin-top:10px; font-size:12px; color:var(--muted)}

.section{padding:12px 0 28px}
.grid-2{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
@media (max-width: 900px){ .grid-2{grid-template-columns:1fr} }

.table{
  width:100%;
  border-collapse:collapse;
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}
.table th,.table td{
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  text-align:left;
  vertical-align:top;
}
.table th{color:var(--muted); font-weight:600}
.table tr:last-child td{border-bottom:none}

.footer{
  padding:18px 0 34px;
  border-top:1px solid var(--line);
  color:var(--muted);
}
.footer .row{
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:space-between; align-items:center;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}
.note{
  font-size:13px;color:var(--muted);
  border-left:3px solid rgba(122,167,255,.55);
  padding:10px 12px;
  background: rgba(122,167,255,.08);
  border-radius:12px;
}

code{
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 8px;
}
