:root{
  --bg:#0b0b0c;
  --card:#111215;
  --text:#f2f4f8;
  --muted:#a8b0c0;
  --accent:#ff7a18;
  --border:rgba(255,255,255,0.10);
  --danger:#ff4d6d;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: #000;
  color:var(--text);
}
.topbar{
  border-bottom:1px solid var(--border);
  background: #000;
}
.brand{
  max-width:1100px;
  margin:0 auto;
  padding:14px 18px;
  display:flex;
  align-items:center;
  gap:12px;
}
.logo{
  width:48px;height:48px;border-radius:10px;
  border:1px solid var(--border);
  object-fit:cover;
}
.brandtext .name{font-weight:900; letter-spacing:0.2px}
.muted{color:var(--muted)}
.container{max-width:1100px;margin:0 auto;padding:18px}
.card{
  background: rgba(17,18,21,0.92);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  margin:16px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
h1,h2,h3{margin:0 0 10px}
.field span{display:block;margin-bottom:6px;font-weight:800}
.field input,.field textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color:var(--text);
  outline:none;
}
.field input:focus,.field textarea:focus{border-color: rgba(255,122,24,0.65)}
.grid{display:grid;gap:14px}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.actions{display:flex;align-items:center;gap:12px;margin-top:12px}
.btn{
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,122,24,0.75);
  background: linear-gradient(180deg, rgba(255,122,24,0.22), rgba(255,122,24,0.10));
  color:var(--text);
  font-weight:900;
  cursor:pointer;
}
.btn:disabled{opacity:0.6;cursor:not-allowed}
.notice{
  margin-top:14px;
  padding:12px;
  border-radius:12px;
  border:1px dashed rgba(255,122,24,0.70);
  background: rgba(255,122,24,0.06);
}
.hr{height:1px;background:var(--border);margin:16px 0}
.img{
  width:100%;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.35);
  aspect-ratio: 4 / 3;
  object-fit:contain;
}
.pre{
  white-space:pre-wrap;
  border-radius:12px;
  border:1px solid var(--border);
  background: rgba(0,0,0,0.35);
  padding:12px;
}
.footer{margin-top:18px;font-size:13px}
.small{font-size:13px}
.link{color:var(--accent);text-decoration:none}
.check{display:flex;gap:10px;align-items:flex-start;margin-top:12px}
#status, #leadStatus{min-height:18px}
.row2img{display:grid;grid-template-columns:1fr 1fr;gap:14px}
@media (max-width: 820px){
  .row2{grid-template-columns:1fr}
  .row2img{grid-template-columns:1fr}
}
