:root{
  --bg0:#050b0a;
  --bg1:#07110f;
  --card: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.68);
  --emerald:#00e0a4;
  --shadow: 0 24px 70px rgba(0,0,0,.55);
  --radius: 22px;
}
*{box-sizing:border-box}
body.appBody{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background: radial-gradient(900px 500px at 12% 12%, rgba(0,224,164,.12), transparent 60%),
              radial-gradient(900px 500px at 88% 18%, rgba(62,255,208,.08), transparent 60%),
              linear-gradient(180deg, var(--bg0), var(--bg1));
  color: var(--text);
  min-height: 100vh;
}
.bgGlow{
  position: fixed; inset:0;
  pointer-events:none;
  background: radial-gradient(700px 420px at 50% 0%, rgba(0,224,164,.08), transparent 60%);
}
.glass{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.glassInner{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
}
.publicMain{max-width:1100px; margin:0 auto; padding:18px}
.publicHero{margin-top:18px}
.badgeSoft{
  display:inline-flex; gap:.45rem; align-items:center;
  padding:.35rem .6rem;
  background: rgba(0,224,164,.12);
  border:1px solid rgba(0,224,164,.22);
  border-radius: 999px;
  color: var(--text);
  font-size: .85rem;
}

.layout{display:flex; min-height:100vh}
.side{
  width: 268px;
  padding: 14px;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.15);
  backdrop-filter: blur(10px);
  display:flex;
  flex-direction:column;
}
.main{flex:1; padding: 0 8px 28px}
.brand{display:flex; gap:12px; align-items:center; padding:10px; margin-bottom:10px}
.brandMark{
  width:38px; height:38px; border-radius:14px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.35), transparent 55%),
              linear-gradient(135deg, rgba(0,224,164,.95), rgba(0,224,164,.18));
  box-shadow: 0 14px 35px rgba(0,224,164,.25);
}
.brandName{font-weight:800; letter-spacing:.3px}
.brandSub{font-size:.82rem; color:var(--muted)}
.navList{display:flex; flex-direction:column; gap:6px; padding: 6px}
.navItem{
  display:flex; gap:10px; align-items:center;
  padding: 10px 12px;
  border-radius: 14px;
  color: var(--text);
  text-decoration:none;
  border: 1px solid transparent;
}
.navItem:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(0,224,164,.18);
}
.navDivider{height:1px; background:rgba(255,255,255,.08); margin:10px 8px}

.form-dark{
  background: rgba(0,0,0,.20) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: var(--text) !important;
  border-radius: 14px !important;
}
.form-dark::placeholder{color: rgba(255,255,255,.45)}
.hrSoft{border-color: rgba(255,255,255,.10)}

.btn-emerald{
  background: linear-gradient(135deg, rgba(0,224,164,1), rgba(0,224,164,.55));
  border: 0;
  color:#02100c;
  border-radius: 16px;
  font-weight: 700;
}
.btn-emerald:hover{filter: brightness(1.03)}
.qrThumb{width:96px; height:96px; border-radius:18px; border:1px solid rgba(255,255,255,.10)}
.qrBig{width:100%; border-radius:22px; border:1px solid rgba(255,255,255,.10)}
.miniStat{display:flex; align-items:center; justify-content:space-between; padding:14px; border-radius:18px; border:1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.04)}
.miniTitle{color:var(--muted); font-size:.9rem}
.miniValue{font-weight:800}
.miniIcon{width:42px;height:42px;border-radius:16px;display:grid;place-items:center;background:rgba(0,224,164,.12);border:1px solid rgba(0,224,164,.18)}

.stepHead{display:flex;align-items:center;gap:10px}
.stepDot{
  width:34px;height:34px;border-radius:14px;display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color: var(--muted);
  font-weight:800;
}
.stepDot.active{
  background: rgba(0,224,164,.14);
  border-color: rgba(0,224,164,.28);
  color: var(--text);
}
.stepLine{flex:1;height:1px;background:rgba(255,255,255,.14)}

@media (max-width: 992px){
  .side{display:none}
  .main{padding:0}
}
