:root{
  --bg1:#070b18;
  --bg2:#081629;
  --card:rgba(255,255,255,.06);
  --stroke:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.62);
  --muted2:rgba(255,255,255,.44);
  --accent:#2de4c6;
  --danger:#ff5b6e;
  --shadow: 0 16px 60px rgba(0,0,0,.45);
  --r: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;
  color:var(--text);
  background:
    radial-gradient(900px 500px at 18% 8%, rgba(45,228,198,.14), transparent 60%),
    radial-gradient(800px 500px at 78% 20%, rgba(78,124,255,.12), transparent 60%),
    radial-gradient(1000px 700px at 70% 80%, rgba(45,228,198,.08), transparent 60%),
    linear-gradient(180deg, var(--bg2), var(--bg1));
}

.topbar{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  padding:36px 42px 18px;
  gap:18px;
}

.brand__title{
  font-size:42px;
  line-height:1;
  font-weight:780;
  letter-spacing:.2px;
}
.brand__sub{
  margin-top:8px;
  color:var(--muted);
  font-size:15px;
}
.brand__meta{
  margin-top:10px;
  color:var(--muted2);
  font-size:12px;
}

.topbar__right{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.wrap{padding: 0 42px 44px;}

.grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}

@media (max-width: 980px){
  .topbar,.wrap{padding-left:18px; padding-right:18px;}
  .grid{grid-template-columns: 1fr;}
  .brand__title{font-size:34px}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  border: 1px solid var(--stroke);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding:18px 18px 16px;
  backdrop-filter: blur(10px);
}

.card__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
h2{
  margin:0;
  font-size:18px;
  font-weight:720;
  letter-spacing:.2px;
}
.sub{
  margin-top:6px;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.pill--muted{ color: var(--muted2); }

.badge{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  color:var(--muted);
  background: rgba(255,255,255,.04);
  white-space:nowrap;
}
.badge--ok{
  color: rgba(45,228,198,.95);
  border-color: rgba(45,228,198,.35);
  background: rgba(45,228,198,.10);
}

.rows{display:flex; flex-direction:column; gap:12px; margin-top:10px;}
.row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:12px 12px;
  border:1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.16);
  border-radius:14px;
}
.row__left{min-width: 55%;}
.row__label{font-weight:650; font-size:13px;}
.row__hint{margin-top:5px; color:var(--muted2); font-size:12px; line-height:1.35;}
.row__right{display:flex; align-items:center; gap:10px; justify-content:flex-end; min-width: 40%;}

.chip{
  display:inline-flex;
  gap:6px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  color: var(--muted);
  font-size:12px;
}

.actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  flex-wrap:wrap;
}
.btn{
  background: rgba(255,255,255,.10);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  padding:10px 12px;
  cursor:pointer;
  font-weight:650;
  font-size:13px;
}
.btn:hover{background: rgba(255,255,255,.14);}
.btn--ghost{background: transparent;}
.btn--ghost:hover{background: rgba(255,255,255,.08);}
.btn--danger{border-color: rgba(255,91,110,.35); color: rgba(255,91,110,.95);}
.btn--danger:hover{background: rgba(255,91,110,.10);}
.btn:disabled{opacity:.45; cursor:not-allowed;}

.divider{
  height:1px;
  background: rgba(255,255,255,.10);
  margin:16px 0;
}

.small__title{font-size:13px; font-weight:720; color: var(--text); margin-bottom:10px;}
.small__list{margin:0; padding-left:18px; color: var(--muted); font-size:12px; line-height:1.5;}

.note{
  margin-top:14px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(45,228,198,.20);
  background: rgba(45,228,198,.08);
  color: rgba(255,255,255,.78);
  font-size:12px;
}

.kv{
  display:grid;
  grid-template-columns: 130px 1fr;
  gap:10px 10px;
  font-size:12px;
  margin-top:12px;
}
.kv__k{color: var(--muted2);}
.kv__v{color: var(--muted); word-break: break-word;}
.mono{font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;}

.timeline{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:10px;
}
.timeline__item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:10px 10px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.07);
  background: rgba(0,0,0,.16);
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background: rgba(255,255,255,.20);
  margin-top:4px;
  border:1px solid rgba(255,255,255,.18);
}
.dot--ok{
  background: rgba(45,228,198,.95);
  border-color: rgba(45,228,198,.35);
}
.timeline__title{font-size:13px; font-weight:700;}
.timeline__sub{margin-top:4px; font-size:12px; color: var(--muted2); line-height:1.35;}

.footerMini{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.mini{color:var(--muted2); font-size:12px;}

.toast{
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0,0,0,.70);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.85);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: .18s;
  font-size: 13px;
}
.toast--show{opacity: 1;}
