:root{
  --bg:#0b1020;
  --card:#121a33;
  --muted:#9fb0d0;
  --text:#e9efff;
  --accent:#6ee7ff;
  --accent2:#a78bfa;
  --border:rgba(255,255,255,.10);
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:16px;
  --max: 1040px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:radial-gradient(1200px 800px at 15% 10%, rgba(110,231,255,.16), transparent 55%),
radial-gradient(900px 650px at 85% 25%, rgba(167,139,250,.14), transparent 60%),
var(--bg); color:var(--text); font-family:var(--sans);}
a{color:var(--accent); text-decoration:none}
a:hover{text-decoration:underline}
header{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(11,16,32,.85), rgba(11,16,32,.55));
  border-bottom:1px solid var(--border);
}
.nav{
  max-width:var(--max); margin:0 auto; padding:14px 18px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:700; letter-spacing:.2px}
.brand svg{width:32px;height:32px; flex:none}
.brand img{width:32px;height:32px; flex:none; border-radius:8px}
.brand span{display:flex;flex-direction:column; line-height:1.05}
.brand small{color:var(--muted); font-weight:600}
nav a{margin-left:14px; color:var(--text); opacity:.92}
nav a.active{color:var(--accent)}
main{max-width:var(--max); margin:0 auto; padding:26px 18px 56px}
.hero{
  margin-top:14px;
}
@media (max-width: 860px){
  nav{display:none}
}
.card{
  background: linear-gradient(180deg, rgba(18,26,51,.92), rgba(18,26,51,.68));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow: var(--shadow);
}
.hero .left{padding:22px 22px 18px}
.hero h1{margin:0 0 8px; font-size:34px; letter-spacing:.2px}
.hero p{margin:0 0 14px; color:var(--muted); font-size:16px; line-height:1.5}
.badges{display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 0}
.badge{
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  font-size:13px;
  color:var(--text);
}
.cta{display:flex; flex-wrap:wrap; gap:10px; margin-top:16px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:650;
}
.btn.primary{
  background: linear-gradient(90deg, rgba(110,231,255,.20), rgba(167,139,250,.20));
  border-color: rgba(110,231,255,.35);
}
.btn:hover{transform: translateY(-1px); text-decoration:none}
.grid{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:16px; margin-top:18px;
}
@media (max-width: 860px){ .grid{grid-template-columns:1fr} }
.panel{padding:18px}
.panel h3{margin:0 0 8px}
.panel p{margin:0; color:var(--muted); line-height:1.5}
.kpi{
  font-family:var(--mono);
  font-size:13px;
  color:rgba(233,239,255,.92);
  background: rgba(0,0,0,.25);
  border:1px dashed rgba(255,255,255,.18);
  padding:10px 12px;
  border-radius:12px;
  margin-top:12px;
}
h2{margin:26px 0 12px; font-size:22px}
table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(18,26,51,.55);
}
th,td{padding:10px 12px; text-align:left; border-bottom:1px solid rgba(255,255,255,.08)}
th{color:rgba(233,239,255,.92); font-size:13px; letter-spacing:.3px; text-transform:uppercase}
td{color:var(--muted)}
tr:last-child td{border-bottom:none}
code, pre{font-family:var(--mono)}
pre{
  padding:14px 14px; background: rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  overflow:auto;
}
footer{
  max-width:var(--max);
  margin:0 auto;
  padding:18px 18px 34px;
  color: rgba(233,239,255,.75);
}
footer .fine{color:var(--muted); font-size:13px}
.form{
  padding:18px;
}
input,select,textarea{
  width:100%;
  background: rgba(0,0,0,.25);
  border:1px solid rgba(255,255,255,.14);
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  outline:none;
}
label{display:block; margin:12px 0 6px; color:rgba(233,239,255,.9); font-size:14px}
textarea{min-height:140px}


.tzmap{width:100%; height:auto; border-radius:14px; border:1px solid var(--border); margin:12px 0 14px; display:block}
