:root{
  --bg:#0b1220;
  --surface:#0f1b33;
  --surface2:#0b1730;
  --text:#eaf0ff;
  --muted:#b7c6ff;
  --brand:#6d5efc;
  --brand2:#2ee7b6;
  --stroke:rgba(255,255,255,.12);
  --shadow: 0 18px 45px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 650px at 20% 0%, rgba(109,94,252,.35), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(46,231,182,.22), transparent 55%),
              linear-gradient(180deg, var(--bg), #070b14 80%);
  color:var(--text);
}
a{color:inherit; text-decoration:none}
.container{width:min(1100px, 92vw); margin:0 auto}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.55);
  border-bottom:1px solid var(--stroke);
}
.header-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; letter-spacing:.2px}
.logo{
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 10px 30px rgba(109,94,252,.35);
}
.nav{display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.nav a{
  padding:9px 12px;
  border:1px solid transparent;
  border-radius:12px;
  color:rgba(234,240,255,.9);
  font-weight:600;
  font-size:14px;
}
.nav a:hover{border-color:var(--stroke); background: rgba(255,255,255,.04)}

.mobile-toggle{display:none; padding:10px 12px; border-radius:12px; border:1px solid var(--stroke); background: rgba(255,255,255,.03); color:var(--text); font-weight:700}

.hero{padding:46px 0 18px}
.hero-card{
  border:1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:22px;
  box-shadow: var(--shadow);
  padding:28px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
}
.hero h1{margin:0 0 10px; font-size: clamp(28px, 4vw, 44px); line-height:1.05}
.hero p{margin:0 0 18px; color:rgba(183,198,255,.95); font-size:16px; line-height:1.5}

.cta-row{display:flex; gap:12px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color:var(--text);
  font-weight:800;
}
.btn.primary{border-color: transparent; background: linear-gradient(135deg, var(--brand), #8b7bff);}
.btn.primary:hover{filter:brightness(1.05)}
.btn:hover{background: rgba(255,255,255,.06)}

.hero-side{
  border-radius:18px;
  border:1px solid var(--stroke);
  background: radial-gradient(700px 250px at 30% 0%, rgba(46,231,182,.22), transparent 55%),
              linear-gradient(180deg, rgba(15,27,51,.9), rgba(11,23,48,.75));
  padding:18px;
}
.kpi{display:grid; grid-template-columns: 1fr 1fr; gap:10px}
.kpi .tile{border:1px solid var(--stroke); border-radius:16px; padding:12px; background: rgba(255,255,255,.03)}
.kpi .num{font-size:22px; font-weight:900}
.kpi .label{font-size:13px; color:rgba(183,198,255,.9); font-weight:700}

.section{padding:18px 0 46px}
.grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:14px}
.card{
  grid-column: span 6;
  border:1px solid var(--stroke);
  border-radius:18px;
  background: rgba(255,255,255,.03);
  padding:16px;
}
.card h3{margin:0 0 6px; font-size:18px}
.card p{margin:0 0 12px; color:rgba(183,198,255,.95); line-height:1.5}
.card .link{display:inline-flex; gap:8px; font-weight:800; color: rgba(234,240,255,.95)}

.page-title{padding:26px 0 8px}
.page-title h2{margin:0; font-size:28px}
.page-title p{margin:8px 0 0; color:rgba(183,198,255,.95)}

.list{display:grid; grid-template-columns: repeat(12,1fr); gap:14px; padding:14px 0 46px}
.item{grid-column: span 6; border:1px solid var(--stroke); border-radius:18px; padding:14px; background: rgba(255,255,255,.03)}
.item .tag{display:inline-flex; padding:6px 10px; border-radius:999px; border:1px solid var(--stroke); font-size:12px; font-weight:900; color: rgba(234,240,255,.9); background: rgba(255,255,255,.03)}
.item h3{margin:10px 0 6px; font-size:18px}
.item p{margin:0; color:rgba(183,198,255,.95); line-height:1.5}

.footer{border-top:1px solid var(--stroke); padding:24px 0 40px; color:rgba(183,198,255,.9)}
.footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap}
.small{font-size:13px}

@media (max-width: 880px){
  .hero-card{grid-template-columns:1fr;}
  .card{grid-column: span 12}
  .item{grid-column: span 12}
}

@media (max-width: 720px){
  .nav{display:none}
  .mobile-toggle{display:inline-flex}
  .nav.open{
    display:flex;
    position:absolute;
    left:0; right:0;
    top:64px;
    padding:12px;
    background: rgba(11,18,32,.9);
    border-bottom:1px solid var(--stroke);
  }
}
