:root{
  --bg:#0b0c10;
  --panel:#12141a;
  --panel2:#0f1117;
  --text:#eaeef5;
  --muted:#9aa3b2;
  --line:rgba(255,255,255,.08);
  --btn:#2a64ff;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:1200px; margin:0 auto; padding:0 16px}

.siteHeader{
  position:sticky; top:0; z-index:50;
  background:rgba(10,11,14,.82);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.siteHeader__inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.brand img{
  height: 42px;          /* perfect balance with nav pills */
  width: auto;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.35));
  transition: transform .15s ease;
}

.brand:hover img{
  transform: scale(1.04);
}
.nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.nav__link{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--text);
  opacity:.92;
}
.nav__link:hover{border-color:rgba(255,255,255,.18)}
.nav__link--active{border-color:rgba(42,100,255,.6); box-shadow:0 0 0 3px rgba(42,100,255,.12) inset}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:var(--btn);
  border:0;
  color:white;
  font-weight:750;
  cursor:pointer;
}
.btn:hover{filter:brightness(1.06)}
.btn--ghost{
  background:transparent;
  border:1px solid var(--line);
  color:var(--text);
}

.hero{
  padding:28px 0 20px;
  display:grid;
  grid-template-columns: 1.4fr .6fr;
  gap:16px;
  align-items:start;
}
.hero__title{font-size:38px; line-height:1.05; margin:0 0 10px}
.hero__sub{color:var(--muted); margin:0 0 16px; font-size:16px; max-width:60ch}

.hero__cta{display:flex; gap:10px; flex-wrap:wrap}
.hero__meta{margin-top:14px; display:flex; gap:8px; flex-wrap:wrap}
.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.02);
}

.hero__card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
}
.hero__cardInner{padding:14px}
.muted{color:var(--muted)}
.kpi{margin-top:10px}
.kpi__label{color:var(--muted); font-size:12px}
.kpi__value{font-size:20px; font-weight:800; margin-top:2px}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
  padding:10px 0 30px;
}
.tile{
  background:var(--panel2);
  border:1px solid var(--line);
  border-radius:18px;
  padding:16px;
  transition: transform .12s ease, border-color .12s ease;
}
.tile:hover{transform: translateY(-2px); border-color:rgba(255,255,255,.16)}
.tile__title{font-weight:800; font-size:16px}
.tile__sub{color:var(--muted); margin-top:6px; font-size:13px}

.footer{
  border-top:1px solid var(--line);
  background:rgba(10,11,14,.6);
}
.footer__inner{
  padding:18px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.footer__links{display:flex; gap:8px; flex-wrap:wrap}

@media (max-width: 900px){
  .hero{grid-template-columns:1fr}
  .hero__title{font-size:32px}
  .grid3{grid-template-columns:1fr}
}
