:root{
  --bg:#0b1220;
  --panel:#0f1a2f;
  --text:#e9eefc;
  --muted:#b6c2e2;
  --brand:#6ea8ff;
  --line:rgba(255,255,255,.12);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1100px;
  --pad: 22px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% 10%, rgba(110,168,255,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 20%, rgba(155,110,255,.12), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{max-width:var(--max);margin:0 auto;padding: 0 18px}

.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.75);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand{
  display:flex; gap:10px; align-items:center;
  font-weight:800; letter-spacing:.2px;
}
.badge{
  font-size:12px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--muted);
}
.logo{
  width:34px;height:34px;border-radius:12px;
  background: linear-gradient(135deg, rgba(110,168,255,1), rgba(155,110,255,1));
  box-shadow: var(--shadow);
}
.links{display:flex; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.links a{
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
.links a.active, .links a:hover{
  background: rgba(255,255,255,.06);
  color:var(--text);
}

.hero{
  padding: 54px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.h1{
  font-size: 44px;
  line-height:1.1;
  margin: 0 0 12px;
}
@media (max-width: 520px){
  .h1{font-size: 36px}
}
.lead{
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 62ch;
}
.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(--line);
  font-weight: 650;
  font-size: 14px;
  background: rgba(255,255,255,.04);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(110,168,255,.95), rgba(155,110,255,.9));
  border: none;
  color: #071022;
}
.btn:hover{transform: translateY(-1px)}
.small{
  font-size:12px;
  color: var(--muted);
  margin-top: 10px;
}

.card{
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--pad);
}

.kpis{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.kpi h3{margin:0;font-size:14px;color:var(--muted);font-weight:650}
.kpi p{margin:6px 0 0;font-size:15px}

.section{
  padding: 16px 0 44px;
}
.section h2{
  margin: 0 0 12px;
  font-size: 22px;
}
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px){
  .grid3{grid-template-columns:1fr}
}

.list{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li{margin: 8px 0}

.hr{
  border:0;
  border-top:1px solid var(--line);
  margin: 18px 0;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0 26px;
  color: var(--muted);
  font-size: 13px;
}
.footer-row{
  display:flex; justify-content:space-between; gap: 12px; flex-wrap:wrap;
}
.note{
  color: var(--muted);
  font-size: 14px;
}

.table{
  width:100%;
  border-collapse: collapse;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid var(--line);
}
.table th, .table td{
  padding: 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.table th{font-size:13px;color:var(--muted);text-align:left;background: rgba(255,255,255,.03)}
.table tr:last-child td{border-bottom:none}

.tag-row{display:flex; gap:10px; flex-wrap:wrap; margin-top: 10px}
.tag{
  font-size:12px;
  padding: 6px 10px;
  border-radius:999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--muted);
}