:root{
  --bg:#081120;
  --bg2:#0f172a;
  --panel:#111c34;
  --panel2:#16233f;
  --text:#e5eefc;
  --muted:#94a3b8;
  --line:rgba(255,255,255,.08);
  --brand:#60a5fa;
  --brand2:#22c55e;
  --warn:#f59e0b;
  --danger:#ef4444;
  --ok:#19c37d;
  --okbg:rgba(25,195,125,.14);
  --bad:#ff6b6b;
  --badbg:rgba(255,107,107,.12);
  --shadow:0 12px 35px rgba(0,0,0,.28);
  --radius:18px;
  --radius2:22px;
  --max:1180px;
  --focus:0 0 0 4px rgba(96,165,250,.16);
  --border:rgba(255,255,255,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(96,165,250,.16), transparent 30%),
    radial-gradient(circle at top right, rgba(34,197,94,.12), transparent 28%),
    linear-gradient(180deg, #07101d 0%, #0b1324 55%, #081120 100%);
  min-height:100vh;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
:focus-visible{outline:none;box-shadow:var(--focus);border-radius:12px}
img{max-width:100%}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:#0b172d;
  color:#fff;
  border:1px solid var(--line);
  z-index:999;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:0 16px 24px;
}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter:blur(14px);
  background:rgba(8,17,32,.78);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  font-weight:800;
  letter-spacing:.2px;
}
.brand-logo{
  width:38px;
  height:38px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(96,165,250,.18), rgba(34,197,94,.18));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow);
  overflow:hidden;
  flex:0 0 auto;
}
.brand-logo img{
  width:24px;
  height:24px;
  display:block;
}

.top-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.top-links a{
  color:var(--text);
  font-size:.95rem;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.top-links a:hover{
  text-decoration:none;
  background:rgba(255,255,255,.04);
  border-color:var(--line);
}

.breadcrumb{
  margin:18px 0 10px;
  font-size:12px;
  color:rgba(233,238,252,.72);
}
.breadcrumb ol{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:8px;
  align-items:center;
  flex-wrap:wrap;
}
.breadcrumb li+li:before{
  content:"/";
  margin-right:8px;
  color:rgba(233,238,252,.45);
}
.breadcrumb a{color:var(--muted)}
.breadcrumb a:hover{
  color:var(--text);
  text-decoration:none;
}

.hero{
  margin-top:18px;
  background:linear-gradient(180deg, rgba(17,28,52,.92), rgba(12,21,38,.96));
  border:1px solid var(--line);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:24px;
  position:relative;
  overflow:hidden;
}
.hero:before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 280px at 20% 20%, rgba(96,165,250,.20), transparent 60%),
    radial-gradient(520px 240px at 80% 40%, rgba(34,197,94,.14), transparent 55%);
  pointer-events:none;
}
.hero > *{position:relative}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(96,165,250,.10);
  border:1px solid rgba(96,165,250,.22);
  color:#bfdbfe;
  font-size:13px;
  font-weight:700;
}

h1{
  margin:14px 0 10px;
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.05;
  letter-spacing:-.7px;
}
.sub{
  margin:0;
  color:#cbd5e1;
  line-height:1.6;
  max-width:70ch;
  font-size:16px;
}

.controls{
  margin-top:18px;
  display:grid;
  grid-template-columns:minmax(240px,1.3fr) 160px 160px auto;
  gap:10px;
  align-items:end;
}
.controls.cols-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}
.controls.cols-3{
  grid-template-columns:repeat(3, minmax(0,1fr));
}

.control label{
  display:block;
  margin:0 0 6px;
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}

.input,.select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:#0a1427;
  color:var(--text);
  outline:none;
  font-size:14px;
}
.input:focus,.select:focus{
  border-color:rgba(96,165,250,.5);
  box-shadow:0 0 0 4px rgba(96,165,250,.14);
  background:#0b172d;
}
.input::placeholder{color:rgba(233,238,252,.55)}

.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  text-decoration:none;
  gap:8px;
  white-space:nowrap;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
  user-select:none;
  font:inherit;
}
.cta:hover{
  transform:translateY(-1px);
  text-decoration:none;
}
.cta.primary{
  border:0;
  background:linear-gradient(135deg, var(--brand), #3b82f6);
  box-shadow:0 10px 26px rgba(59,130,246,.28);
  color:#fff;
}
.cta.primary:hover{filter:brightness(1.06)}
.cta.ghost:hover{background:rgba(255,255,255,.10)}

.quick{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}
.quick button{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  border-radius:999px;
  padding:8px 10px;
  font-size:12px;
  cursor:pointer;
}
.quick button:hover{
  color:var(--text);
  background:rgba(255,255,255,.08);
}

.summary{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.summary.summary-3{
  grid-template-columns:repeat(3, 1fr);
}
.sumCard{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  padding:14px;
  min-height:96px;
}
.sumLabel{
  font-size:12px;
  color:var(--muted);
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.4px;
}
.sumValue{
  font-weight:900;
  font-size:24px;
  line-height:1.1;
}
.sumNote{
  margin-top:6px;
  color:var(--muted);
  font-size:12px;
  line-height:1.45;
}
.greenGlow{
  background:linear-gradient(180deg, rgba(25,195,125,.16), rgba(25,195,125,.08));
  border-color:rgba(25,195,125,.30);
  box-shadow:0 0 0 1px rgba(25,195,125,.05), 0 14px 26px rgba(25,195,125,.10);
}

.panel{
  margin-top:14px;
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.panelHead{
  padding:14px 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
.panelTitle{
  font-size:18px;
  font-weight:900;
  letter-spacing:-.2px;
}
.panelSub{
  font-size:13px;
  color:var(--muted);
}
.panelBody{padding:16px}

.statusLine{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.badge{
  font-size:12px;
  color:var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.10);
  padding:6px 10px;
  border-radius:999px;
  white-space:nowrap;
}
.badge.ok{
  color:#d7fff0;
  border-color:rgba(25,195,125,.35);
  background:var(--okbg);
  font-weight:800;
}
.badge.bad{
  color:#ffdede;
  border-color:rgba(255,107,107,.35);
  background:var(--badbg);
  font-weight:800;
}

.loader{
  display:none;
  margin-top:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.12);
  padding:14px;
  color:var(--muted);
  font-size:14px;
}
.loader.show{display:block}

.dots::after{
  content:"";
  display:inline-block;
  width:1em;
  text-align:left;
  animation:dots 1.1s steps(4,end) infinite;
}
@keyframes dots{
  0%{content:""}
  25%{content:"."}
  50%{content:".."}
  75%{content:"..."}
  100%{content:""}
}

.tableWrap{
  overflow:auto;
  border-radius:16px;
}
table{
  width:100%;
  border-collapse:collapse;
  min-width:860px;
}
th,td{
  padding:12px 12px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.08);
  vertical-align:top;
  font-size:13px;
}
th{
  position:sticky;
  top:0;
  background:rgba(7,11,20,.92);
  color:#eaf2ff;
  z-index:1;
  font-size:12px;
  letter-spacing:.3px;
  text-transform:uppercase;
}
tbody tr:hover{background:rgba(255,255,255,.03)}
.resolver{
  font-weight:800;
  color:var(--text);
  min-width:160px;
}
.resolver small{
  display:block;
  color:var(--muted);
  font-weight:500;
  margin-top:2px;
  font-size:11px;
}
.resultCell{max-width:420px}
.resultBox{
  border-radius:14px;
  padding:10px 12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.14);
}
.resultBox.ok{
  background:linear-gradient(180deg, rgba(25,195,125,.18), rgba(25,195,125,.10));
  border-color:rgba(25,195,125,.35);
  box-shadow:inset 0 0 0 1px rgba(25,195,125,.05), 0 10px 20px rgba(25,195,125,.08);
}
.resultBox.bad{
  background:linear-gradient(180deg, rgba(255,107,107,.14), rgba(255,107,107,.07));
  border-color:rgba(255,107,107,.30);
}
.resultBox.pending{
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.10);
}
.resultTop{
  display:flex;
  gap:8px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom:6px;
}
.resultStatus{
  font-weight:900;
  letter-spacing:.2px;
}
.resultStatus.ok{color:#c8ffe9}
.resultStatus.bad{color:#ffd3d3}
.resultStatus.pending{color:#bfdbfe}

.mono{
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;
  word-break:break-word;
  line-height:1.55;
  color:#f0f6ff;
}
.muted{color:var(--muted)}
.small{font-size:12px}
.ttl{
  font-weight:800;
  color:#dce9ff;
  white-space:nowrap;
}

.helpBox{
  margin-top:14px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.helpCard{
  border-radius:var(--radius);
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  padding:14px;
}
.helpCard h3{
  margin:0 0 6px;
  font-size:16px;
}
.helpCard p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.relatedTools{
  margin-top:14px;
  border-radius:var(--radius2);
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  padding:18px;
}
.relatedTools h2{
  margin:0 0 10px;
  font-size:22px;
  letter-spacing:-.25px;
}
.relatedLinks{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.relatedLinks a{
  display:inline-flex;
  align-items:center;
  gap:8px;
