:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --muted:#a9b4c7;
  --text:#e9eef7;
  --line:rgba(255,255,255,.08);
  --brand:#4f8cff;
  --brand2:#38d3ff;
  --ok:#1dd1a1;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(79,140,255,.18), transparent 60%),
    radial-gradient(900px 500px at 80% 10%, rgba(56,211,255,.14), transparent 60%),
    var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{
  width:min(1200px, calc(100% - 40px));
  margin:0 auto;
}

.nav{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.6);
  border-bottom:1px solid var(--line);
}
.navInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-weight:800; letter-spacing:.3px;
}
.badge{
  font-size:12px; padding:4px 10px; border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
}
.menu{
  display:flex; align-items:center; gap:14px;
  color:var(--muted);
  font-weight:600;
}
.menu a{padding:8px 10px; border-radius:10px}
.menu a:hover{background:rgba(255,255,255,.05); color:var(--text)}
.cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:800;
  cursor:pointer;
}
.btn:hover{background:rgba(255,255,255,.06)}
.btnPrimary{
  border:none;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color:#071020;
  box-shadow: 0 16px 40px rgba(79,140,255,.22);
}
.btnPrimary:hover{filter:brightness(1.03)}
.hero{
  padding:56px 0 26px;
}
.heroGrid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
.h1{
  font-size:46px;
  line-height:1.05;
  margin:0 0 12px;
}
.sub{
  font-size:18px;
  line-height:1.45;
  color:var(--muted);
  margin:0 0 18px;
  max-width: 62ch;
}
.kpis{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:16px 0 0;
}
.kpi{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:999px;
  padding:8px 12px;
  color:var(--muted);
  font-weight:700;
  font-size:13px;
}
.card{
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cardPad{padding:18px}
.cardTitle{font-weight:900; margin:0 0 8px}
.cardText{color:var(--muted); margin:0 0 12px; line-height:1.4}
.list{
  display:grid;
  gap:10px;
  margin-top:10px;
}
.li{
  display:flex; gap:10px;
  align-items:flex-start;
  color:var(--muted);
  border-top:1px solid var(--line);
  padding-top:10px;
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  margin-top:4px;
  background: var(--ok);
  flex:0 0 auto;
}
.section{padding:30px 0}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.pTitle{font-weight:900; margin:0 0 6px}
.pText{margin:0; color:var(--muted); line-height:1.4}
.footer{
  border-top:1px solid var(--line);
  margin-top:30px;
  padding:18px 0;
  color:var(--muted);
}
.footerInner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  font-weight:600;
}
.small{font-size:13px; color:var(--muted)}
hr.sep{border:none; border-top:1px solid var(--line); margin:0}

@media (max-width: 920px){
  .heroGrid{grid-template-columns:1fr}
  .h1{font-size:36px}
  .grid3{grid-template-columns:1fr}
  .menu{display:none}
}
