:root{
  --bg:#050814;
  --card: rgba(255,255,255,.075);
  --card2: rgba(255,255,255,.035);
  --line: rgba(255,255,255,.12);
  --text:#fff;
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);
  --accent:#0a4bff;
  --ok:#39ffb6;
  --warn:#ffd56a;
  --danger:#ff6b6b;
  --shadow: 0 20px 70px rgba(0,0,0,.55);
  --r:20px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono","Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

.bg{
  position:fixed; inset:-40vh -20vw;
  background:
    radial-gradient(900px 600px at 25% 20%, rgba(10,75,255,.26), transparent 60%),
    radial-gradient(700px 500px at 80% 25%, rgba(57,255,182,.14), transparent 60%),
    radial-gradient(900px 800px at 55% 80%, rgba(255,213,106,.08), transparent 60%);
  pointer-events:none;
  filter: saturate(1.08);
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 18px 44px;
}

.top{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 18px;
  flex-wrap:wrap;
}

.brand{ display:flex; gap:12px; align-items:center; }
.logo{
  width:46px; height:46px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.name{ font-weight: 900; letter-spacing:.2px; }
.tag{ color: var(--muted); font-size: 13px; margin-top:2px; }

.actions{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }

.grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 14px;
}
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero{
  grid-column: 1 / -1;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(10,75,255,.35);
  background: rgba(10,75,255,.14);
  color: rgba(255,255,255,.92);
  font-weight: 900;
  font-size: 12px;
  width: fit-content;
  margin-bottom: 10px;
}

h1{ margin:0 0 10px; font-size: 38px; letter-spacing: .2px; }
h2{ margin:0; font-size: 18px; }
.accent{ color: var(--accent); }
.muted{ color: var(--muted); }
.mono{ font-family: var(--mono); }

.pills{ display:flex; gap:10px; flex-wrap:wrap; margin: 14px 0 10px; }
.pill{
  display:flex; align-items:center; gap:8px;
  padding: 9px 11px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  font-size: 13px;
  backdrop-filter: blur(6px);
}
.dot{
  width: 8px; height: 8px; border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 0 6px rgba(57,255,182,.10);
}

.safety{
  margin-top: 12px;
  border: 1px solid rgba(255,213,106,.26);
  background: rgba(255,213,106,.06);
  border-radius: 16px;
  padding: 12px;
}
.safetyTitle{ font-weight: 900; margin-bottom: 6px; }
.safetyText{ color: var(--muted); font-size: 13px; line-height: 1.35; }

.stat{
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.14);
  border-radius: 18px;
  padding: 14px;
}
.stat .label{ color: var(--muted2); font-size: 12px; }
.stat .value{ font-size: 22px; font-weight: 950; margin-top: 6px; }
.stat .sub{ margin-top: 6px; font-size: 13px; }

.ctaRow{
  display:flex;
  gap:10px;
  margin-top: 12px;
  flex-wrap:wrap;
}

.hint{ margin-top: 8px; font-size: 13px; }

.mini{
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px;
}
.miniTitle{ font-weight: 900; margin-bottom: 6px; }
.miniText{ color: var(--muted); font-size: 13px; line-height: 1.35; }
.miniLink a{ color: rgba(255,255,255,.92); text-decoration:none; font-weight:900; }
.miniLink a:hover{ text-decoration: underline; }

.btn{
  border:1px solid rgba(255,255,255,.16);
  background: rgba(0,0,0,.18);
  color: var(--text);
  padding: 10px 12px;
  border-radius: 14px;
  cursor:pointer;
  font-weight: 900;
  transition: transform .12s ease, background .12s ease, opacity .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.btn:active{ transform: translateY(0px); }
.btn[disabled]{ opacity:.45; cursor:not-allowed; transform:none; }

.btn.primary{
  border-color: rgba(10,75,255,.45);
  background: rgba(10,75,255,.18);
}
.btn.primary:hover{ border-color: rgba(10,75,255,.7); }

.cardHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.progress{
  display:flex;
  align-items:center;
  gap:10px;
}
.bar{
  width: 160px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  overflow:hidden;
}
.fill{
  height:100%;
  width:0%;
  background: rgba(10,75,255,.72);
  transition: width .2s ease;
}

.taskList{ display:flex; flex-direction:column; gap:10px; }
.task{
  display:flex; align-items:center; justify-content:space-between;
  gap: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 12px;
}
.taskLeft{ display:flex; align-items:center; gap:10px; min-width: 0; }
.badge{
  width: 30px; height: 30px;
  display:grid; place-items:center;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  font-weight: 950;
}
.taskTitle{ font-weight: 950; }
.taskDesc{ color: var(--muted); font-size: 13px; margin-top: 2px; }
.taskText{ min-width:0; }
.taskBtn{ white-space:nowrap; }

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

.links{ display:flex; gap:10px; flex-wrap:wrap; }
.link{
  color: rgba(255,255,255,.92);
  text-decoration:none;
  padding: 9px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  font-weight: 900;
  font-size: 13px;
}
.link:hover{ background: rgba(255,255,255,.06); }

details{
  border:1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0,0,0,.10);
  margin-bottom: 10px;
}
summary{ cursor:pointer; font-weight: 950; }
details > div{ margin-top: 8px; font-size: 13px; line-height: 1.45; }

.foot{
  margin-top: 14px;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  font-size: 13px;
}
.dotSep{ opacity:.6; }
