@charset "utf-8";
/* CSS Document */

:root{
  --bg0:#07090f;
  --bg1:#0b1020;
  --card:rgba(16,22,43,.92);
  --card2:rgba(10,14,26,.92);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 55px rgba(0,0,0,.55);
  --accent:#ff2e2e;
  --accent2:#ff6a6a;
  --radius:22px;
  --radius2:16px;
  --max:980px;
}

*{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";
  color:var(--text);
  background:
    radial-gradient(900px 480px at 15% 5%, rgba(255,46,46,.13), transparent 60%),
    radial-gradient(900px 480px at 85% 15%, rgba(255,106,106,.10), transparent 60%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
}

.topbar{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,9,15,.82), rgba(7,9,15,.55));
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text)}
.brand img{width:34px; height:34px; border-radius:10px; box-shadow:0 10px 22px rgba(0,0,0,.35)}
.brand .title strong{display:block; font-size:14px; letter-spacing:.2px}
.brand .title span{display:block; font-size:12px; color:var(--muted)}

.mode-switch{display:flex; gap:8px; align-items:center}

.wrap{max-width:var(--max); margin:0 auto; padding:18px 14px 26px}
.card{
  border:1px solid var(--border);
  background: linear-gradient(180deg, var(--card), var(--card2));
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.hero{padding:18px}
h1{margin:6px 0 8px; font-size:22px; line-height:1.2}
.sub{margin:0 0 14px; color:var(--muted); line-height:1.5}
.note{margin:14px 0 0; color:rgba(233,238,252,.62); font-size:13px}

.progress{
  width:100%;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}
.progress .bar{
  height:100%;
  width:0%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius:999px;
  transition: width .35s ease;
}

.grid2{display:grid; grid-template-columns:1fr 1fr; gap:12px; margin:14px 0}
.mini{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:var(--radius2);
  padding:12px;
}
.mini h3{margin:0 0 8px; font-size:14px}
.mini ul{margin:0; padding-left:18px; color:rgba(233,238,252,.78); font-size:13px; line-height:1.55}

.form{margin-top:10px}
.label{display:block; margin:12px 0 6px; font-size:13px; color:rgba(233,238,252,.86)}
.input,.select,.textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  color:var(--text);
  border-radius:14px;
  padding:11px 12px;
  outline:none;
}
.textarea{min-height:92px; resize:vertical}
.input:focus,.select:focus,.textarea:focus{border-color:rgba(255,106,106,.45); box-shadow:0 0 0 4px rgba(255,46,46,.12)}

.chips{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:var(--text);
  padding:9px 12px;
  border-radius:999px;
  cursor:pointer;
  font-weight:700;
  font-size:13px;
}
.chip.active{
  border-color:rgba(255,46,46,.5);
  box-shadow:0 0 0 4px rgba(255,46,46,.12);
  background:rgba(255,46,46,.10);
}

.actions{display:flex; gap:10px; align-items:center; justify-content:space-between; margin-top:14px; flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  border:1px solid transparent;
  cursor:pointer;
  font-size:14px;
}
.btn.primary{
  background:linear-gradient(180deg, var(--accent), #ff1f1f);
  color:#fff;
  box-shadow:0 10px 22px rgba(255,46,46,.22);
}
.btn.ghost{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.12);
  color:var(--text);
}

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  font-size:12.5px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
.pill.active{
  border-color:rgba(255,46,46,.55);
  background:rgba(255,46,46,.12);
}
.pill.ghost{background:rgba(255,255,255,.05)}

.alert{
  display:flex;
  gap:10px;
  align-items:flex-start;
  border-radius:16px;
  padding:12px;
  margin:12px 0 0;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.alert.bad{
  border-color:rgba(255,46,46,.35);
  background:rgba(255,46,46,.10);
}
.alert strong{display:block; font-size:13px}
.alert span{display:block; font-size:12.5px; color:rgba(233,238,252,.82)}

.fine{margin:12px 0 0; color:rgba(233,238,252,.60); font-size:12px}
.recap{margin-top:12px}

/* Honeypot */
.hp{
  position:absolute !important;
  left:-9999px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
}

@media (max-width:720px){
  .grid2{grid-template-columns:1fr}
  .actions .btn{width:100%}
}
