:root{
  --bg:#0b0c10;
  --panel:#12141a;
  --panel2:#0f1116;
  --text:#e9ecf1;
  --muted:#a5adbb;
  --line:#1f2430;
  --accent:#ff2bd6;   /* neon */
  --accent2:#00e5ff;  /* cyan */
  --good:#22c55e;
  --bad:#ef4444;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 10%, rgba(255,43,214,.18), transparent 60%),
              radial-gradient(900px 600px at 80% 0%, rgba(0,229,255,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:var(--accent2); text-decoration:none}
a:hover{text-decoration:underline}

.wrap{max-width:980px; margin:0 auto; padding:26px 16px 40px}

.header{
  display:flex; flex-direction:column; align-items:center; gap:14px;
  padding:22px 18px;
  border:1px solid var(--line);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(18,20,26,.9), rgba(10,11,16,.9));
  box-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:256px; width:auto; filter: drop-shadow(0 12px 20px rgba(0,0,0,.4));}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:center;
}
.pill{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:600;
}
.pill:hover{border-color: rgba(0,229,255,.45); text-decoration:none}

.hero{
  text-align:center;
  margin:22px 0 12px;
  font-size:40px;
  line-height:1.05;
  letter-spacing:-.02em;
}
@media (max-width:520px){ .hero{font-size:30px} }

.card{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background: linear-gradient(180deg, rgba(18,20,26,.85), rgba(12,13,18,.85));
  padding:18px;
}

.row{display:flex; gap:12px; flex-wrap:wrap; align-items:center}
.grow{flex:1}

label.small{font-size:13px; color:var(--muted); display:block; margin-bottom:8px}

.filebox{
  display:flex; align-items:center; gap:10px; flex-wrap:wrap;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.filebox input[type=file]{max-width:100%}

.checkline{
  margin-top:12px;
  display:flex; gap:10px; align-items:flex-start;
  color:var(--muted);
}
.checkline input{margin-top:3px}

.meta{
  margin-top:12px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
@media (max-width:700px){ .meta{grid-template-columns:1fr} }

.input{
  width:100%;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
.input:focus{border-color: rgba(0,229,255,.6)}

.btn{
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,43,214,.18), rgba(0,229,255,.10));
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  font-weight:800;
  cursor:pointer;
}
.btn:hover{border-color: rgba(255,43,214,.55)}
.btn:disabled{opacity:.5; cursor:not-allowed}

.btn2{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color:var(--text);
  padding:12px 14px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
}
.btn2:hover{border-color: rgba(0,229,255,.55)}

.progress{
  margin-top:12px;
  height:10px;
  background: rgba(255,255,255,.06);
  border-radius:999px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.progress > div{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width .12s linear;
}

.status{
  margin-top:10px;
  font-weight:700;
}
.status.good{color:var(--good)}
.status.bad{color:var(--bad)}
.status.muted{color:var(--muted)}

.table{
  width:100%;
  border-collapse:collapse;
  margin-top:12px;
  overflow:hidden;
}
.table th,.table td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:14px;
}
.table th{color:var(--muted); text-align:left; font-weight:700}
.table tr:hover td{background: rgba(255,255,255,.02)}

.footer{
  margin-top:18px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
}
.footer .links{margin:8px 0}
.footer .links a{margin:0 8px}
