:root{
  --bg0:#070a07;
  --bg1:#0b0f0c;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.10);
  --stroke:rgba(255,255,255,.12);
  --text:#e9efe9;
  --muted:rgba(233,239,233,.72);
  --accent:#7dbf8a;      /* muted green */
  --accent2:#cfe9d4;     /* soft */
  --shadow:0 18px 60px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:16px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 10% 0%, rgba(125,191,138,.12), transparent 55%),
    radial-gradient(800px 520px at 90% 10%, rgba(207,233,212,.10), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

a{color:inherit;text-decoration:none}
code,pre{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace}

.boot{
  min-height:100vh;
  display:grid;
  place-items:center;
  gap:12px;
  opacity:.9;
}
.boot__logo{
  width:72px;height:72px;border-radius:18px;
  display:grid;place-items:center;
  border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  letter-spacing:.5px;
  font-weight:800;
}
.boot__text{color:var(--muted)}

.topbar{
  position:sticky; top:0; z-index:30;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(7,10,7,.92), rgba(7,10,7,.70));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  max-width:var(--max);
  margin:0 auto;
  padding:14px 16px;
  display:flex;
  align-items:center;
  gap:14px;
}
.brand{
  display:flex;align-items:center;gap:10px;
  min-width:180px;
}
.brand__logo{
  width:38px;height:38px;border-radius:12px;
  display:grid;place-items:center;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  font-weight:800;
}
.brand__name{font-weight:800;letter-spacing:.2px}
.pills{display:flex;gap:8px;flex-wrap:wrap}
.pill{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  transition:.18s ease;
  font-size:14px;
}
.pill:hover{transform:translateY(-1px);background:rgba(255,255,255,.06)}
.pill--active{border-color:rgba(125,191,138,.45);background:rgba(125,191,138,.12)}
.right{
  margin-left:auto;
  display:flex;align-items:center;gap:10px;
}
.langbtn{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.22);
  color:var(--text);
  cursor:pointer;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:22px 16px 46px;
}
.h1{
  font-size: clamp(30px, 5vw, 56px);
  line-height:1.06;
  margin:10px 0 10px;
  letter-spacing:-.6px;
}
.sub{
  max-width:900px;
  color:var(--muted);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height:1.6;
  margin:0 0 18px;
}
.grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  margin-top:16px;
}
@media (max-width: 980px){
  .grid{grid-template-columns:1fr}
  .brand{min-width:auto}
}

.card{
  background:var(--card);
  border:1px solid rgba(255,255,255,.10);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: 0 10px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}
.card:hover{border-color:rgba(255,255,255,.14)}
.card h2{
  margin:0 0 8px;
  font-size:22px;
}
.muted{color:var(--muted)}

.row{display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.btn{
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  cursor:pointer;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.09)}
.btn--accent{
  border-color:rgba(125,191,138,.55);
  background:rgba(125,191,138,.16);
}
.field{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.22);
  color:var(--text);
  outline:none;
}
.field:focus{border-color:rgba(125,191,138,.55)}
.kv{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:10px;
  align-items:center;
}
@media (max-width:600px){.kv{grid-template-columns:1fr}}
.pre{
  margin-top:10px;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.28);
  overflow:auto;
  max-height:320px;
  white-space:pre;
}
.footer{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 16px 26px;
  color:rgba(233,239,233,.55);
  font-size:13px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  font-size:12px;
  color:rgba(233,239,233,.78);
}
.dot{
  width:8px;height:8px;border-radius:99px;background:rgba(125,191,138,.8);
}
