:root { --bg:#f6f7f9; --card:#fff; --text:#1f2328; --muted:#6b7280; --line:#e5e7eb; --accent:#2563eb; --danger:#b91c1c; --ok:#15803d; --warn:#b45309; }
* { box-sizing:border-box; }
body { margin:0; font:15px/1.5 system-ui,-apple-system,"Segoe UI",Roboto,sans-serif; color:var(--text); background:var(--bg); }
a { color:var(--accent); }
.top { display:flex; justify-content:space-between; align-items:center; padding:12px 20px; background:var(--card); border-bottom:1px solid var(--line); }
.brand { display:flex; align-items:center; gap:10px; } .brand .muted { font-size:13px; }
.logo { width:22px; height:22px; border-radius:6px; background:linear-gradient(135deg,#2563eb,#60a5fa); display:inline-block; }
.top-right { display:flex; gap:14px; align-items:center; font-size:14px; }
.muted { color:var(--muted); }
main { max-width:820px; margin:0 auto; padding:20px; } main.wide { max-width:1300px; }
.card { background:var(--card); border:1px solid var(--line); border-radius:12px; padding:22px; margin-bottom:16px; }
h1 { font-size:20px; margin:0 0 10px; }
.hint { color:var(--muted); } .fine { color:var(--muted); font-size:13px; } .center { text-align:center; }
.error { color:var(--danger); } .warn { color:var(--warn); }
label { display:block; margin:12px 0; font-size:14px; }
input[type=email], input[type=text] { display:block; width:100%; margin-top:6px; padding:10px 12px; font:inherit; font-size:16px; border:1px solid var(--line); border-radius:8px; }
button, .button { font:inherit; font-size:15px; padding:9px 16px; border-radius:8px; border:1px solid var(--line); background:#fff; color:var(--text); cursor:pointer; text-decoration:none; display:inline-block; }
button:hover, .button:hover { background:#f3f4f6; } button:disabled { opacity:.5; cursor:default; }
.primary { background:var(--accent); border-color:var(--accent); color:#fff !important; } .primary:hover { background:#1d4ed8; }
.link { border:0; background:none; color:var(--accent); padding:9px 6px; }
.row { display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin:12px 0; }
.status { padding:10px 14px; border-radius:8px; margin:12px 0; }
.status.gray { background:#eef0f3; } .status.ok { background:#dcfce7; color:var(--ok); } .status.bad { background:#fee2e2; color:var(--danger); } .status.warn { background:#fef3c7; color:var(--warn); }
.steps ol { display:flex; gap:6px; list-style:none; padding:0; margin:0 0 16px; flex-wrap:wrap; }
.steps li { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--muted); padding:6px 10px; border-radius:999px; background:#eef0f3; }
.steps li span { width:20px; height:20px; border-radius:50%; background:#d1d5db; color:#fff; display:inline-flex; align-items:center; justify-content:center; font-size:12px; }
.steps li.active { background:#dbeafe; color:#1e40af; } .steps li.active span { background:var(--accent); }
.steps li.done { color:var(--ok); } .steps li.done span { background:var(--ok); }
.step { display:none; } .step.active { display:block; }
.table { width:100%; border-collapse:collapse; font-size:14px; } .table th, .table td { text-align:left; padding:8px; border-top:1px solid var(--line); vertical-align:top; } .table th { color:var(--muted); font-weight:500; border-top:0; }
.acc { display:flex; align-items:center; gap:12px; padding:10px; border:1px solid var(--line); border-radius:8px; margin:8px 0; }
.acc .email { flex:1; font-weight:600; } .acc .tag { font-size:12px; color:var(--muted); }
.badge { font-size:12px; padding:2px 8px; border-radius:999px; background:#eef0f3; } .badge.ok { background:#dcfce7; color:var(--ok); } .badge.bad { background:#fee2e2; color:var(--danger); }
footer { padding:20px; }
[hidden] { display:none !important; }

.acc.scan { display:block; }
.acc-head { display:flex; align-items:center; gap:10px; margin-bottom:6px; }
.progress { position:relative; height:24px; background:#e5e7eb; border-radius:6px; overflow:hidden; }
.progress .bar { height:100%; width:0; background:linear-gradient(90deg,#2563eb,#60a5fa); transition:width .3s; }
.progress .label { position:absolute; inset:0; display:flex; align-items:center; padding:0 10px; font-size:12px; color:#111; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.progress.total { margin-top:12px; height:28px; } .progress.total .label { font-weight:600; justify-content:center; }
