:root{
  --bg:#0b1220;
  --panel:#0f1a30;
  --text:#e7eefc;
  --muted:#b7c3df;
  --brand:#5cc8ff;
  --brand2:#7cf2c3;
  --stroke:rgba(255,255,255,.12);
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial,sans-serif;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(92,200,255,.14), transparent 60%),
              radial-gradient(900px 600px at 90% 10%, rgba(124,242,195,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 18px}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(11,18,32,.65);
  border-bottom:1px solid var(--stroke);
}
.nav{display:flex; align-items:center; justify-content:space-between; gap:14px; min-height:68px;}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none; font-weight:800; letter-spacing:.2px;}
.logo img{
  width:38px;height:38px;
  border-radius:12px;
  box-shadow:0 10px 20px rgba(0,0,0,.35);
}

.logo .brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.logo .brand-name{
  color:var(--text);
}
.logo .brand-tag{
  font-size:12px;
  color:var(--muted);
  font-weight:600;
  margin-top:2px;
}

.navlinks{display:flex; gap:12px; align-items:center}
.navlinks a{ text-decoration:none; padding:9px 10px; border-radius:12px; color:var(--muted); }
.navlinks a:hover{color:var(--text); background:rgba(255,255,255,.06)}

.cta{
  text-decoration:none;
  padding:10px 12px;
  border-radius:12px;
  font-weight:650;
  border:1px solid rgba(92,200,255,.35);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.cta:hover{
  background:rgba(255,255,255,.07);
  border-color:rgba(92,200,255,.55);
}

.hamburger{
  display:none;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.mobile{display:none; padding:10px 0 16px;}
.mobile a{display:block; text-decoration:none; padding:12px 12px; border-radius:12px; color:var(--muted);}
.mobile a:hover{color:var(--text); background:rgba(255,255,255,.06)}
.mobile .cta{display:block; text-align:center; margin-top:8px}

section{padding:24px 0}
.hero{padding:52px 0 16px;}
.hero-grid{display:grid; grid-template-columns: 1.25fr .75fr; gap:18px; align-items:start;}
.h-card{
  background:linear-gradient(180deg, rgba(15,26,48,.72), rgba(15,26,48,.52));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:22px;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border:1px solid var(--stroke);
  border-radius:999px;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  font-size:14px;
}
.badge .dot{width:9px;height:9px;border-radius:99px;background:var(--brand)}
h1{margin:14px 0 10px; font-size: clamp(28px, 3.4vw, 44px); line-height:1.08}
.lead{margin:0; color:var(--muted); font-size: 16px; max-width:62ch;}

.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:12px 14px; border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.05);
  text-decoration:none; color:var(--text);
  font-weight:650;
}
.btn:hover{background:rgba(255,255,255,.08)}
.btn.primary{
  border:none;
  background:linear-gradient(135deg, rgba(92,200,255,.78), rgba(124,242,195,.78));
  color:#06101f;
}

.list{margin:0; padding-left:18px; color:var(--muted);}
.list li{margin:8px 0;}

.grid3{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px;}
.card{
  padding:18px;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
}
.card h3{margin:0 0 8px; font-size:18px}
.card p{margin:0; color:var(--muted)}

.callout{
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.03);
  padding:14px;
  color:var(--muted);
}

.tablewrap{overflow:auto; border-radius:16px; border:1px solid var(--stroke); background:rgba(255,255,255,.02);}
table{border-collapse:collapse; width:100%;}
td,th{border:1px solid rgba(255,255,255,.14); padding:10px; vertical-align:top;}
th{background:rgba(255,255,255,.06); text-align:left;}

footer{
  padding:26px 0 40px;
  border-top:1px solid var(--stroke);
  color:var(--muted);
}
.foot{display:flex; justify-content:space-between; align-items:flex-start; gap:16px; flex-wrap:wrap;}
.foot a{color:var(--muted); text-decoration:none}
.foot a:hover{color:var(--text)}

@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;}
  .grid3{grid-template-columns:1fr;}
  .navlinks{display:none;}
  .hamburger{display:inline-flex;}
  .mobile[aria-hidden="false"]{display:block;}
}
