:root {
  --bg: #07060c;
  --bg2: #120b1e;
  --card: rgba(255,255,255,0.06);
  --stroke: rgba(255,255,255,0.12);
  --text: #f6f3ff;
  --muted: #b9a8d6;
  --purple: #8b5cf6;
  --pink: #ec4899;
  --orange: #f97316;
  --gold: #f5c14a;
  --ok: #34d399;
  --warn: #fbbf24;
  --err: #fb7185;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { width: 100%; max-width: 100%; overflow-x: hidden; }
html { font-size: 17px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: "Noto Sans Devanagari", "Sora", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  background: radial-gradient(1200px 600px at 10% -10%, #3b0764 0%, transparent 50%),
              radial-gradient(900px 500px at 110% 10%, #9d174d 0%, transparent 40%),
              linear-gradient(180deg, var(--bg), var(--bg2));
  color: var(--text);
  min-height: 100vh;
}
img, video { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 16px; }
.wrap { width: 100%; max-width: 980px; margin: 0 auto; padding: 16px 16px 90px; }
.topbar {
  position: sticky; top: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 16px;
  background: rgba(7,6,12,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.brand { font-weight: 800; font-size: 22px; }
.brand span { color: var(--gold); }
.nav-toggle {
  background: var(--card); color: #fff; border: 1px solid var(--stroke);
  border-radius: 10px; padding: 8px 12px; font-size: 18px;
}
.sidenav {
  display: none; flex-direction: column; gap: 6px;
  padding: 12px 16px; background: rgba(18,11,30,0.95);
}
.sidenav.open { display: flex; }
.sidenav a { padding: 12px 14px; border-radius: 12px; background: var(--card); font-size: 16px; font-weight: 600; }
.card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 40px rgba(139,92,246,0.12);
  backdrop-filter: blur(16px);
}
.hero {
  padding: 28px 16px 12px;
}
.hero h1 { font-size: clamp(26px, 7vw, 48px); line-height: 1.25; margin-bottom: 10px; }
.hero p { color: var(--muted); font-size: 16px; margin-bottom: 18px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 14px 18px; border-radius: 14px; border: 0;
  font-weight: 800; font-size: 16px; cursor: pointer; width: 100%;
  background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
  color: #fff;
}
.btn.secondary { background: transparent; border: 1px solid var(--stroke); margin-top: 10px; }
.grid { display: grid; gap: 12px; }
.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.stat { padding: 14px; border-radius: 16px; background: rgba(255,255,255,0.05); border: 1px solid var(--stroke); }
.stat b { display: block; font-size: 22px; color: var(--gold); }
.muted { color: var(--muted); }
.input, select, textarea {
  width: 100%; min-height: 52px; border-radius: 12px; border: 1px solid var(--stroke);
  background: rgba(0,0,0,0.35); color: #fff; padding: 12px; margin: 8px 0 14px;
  font-size: 16px;
}
label { font-size: 15px; font-weight: 700; color: #ddd4f0; }
.flash { margin: 12px 16px; padding: 12px; border-radius: 12px; }
.flash-success { background: rgba(52,211,153,.15); }
.flash-error { background: rgba(251,113,133,.15); }
.progress { display: grid; gap: 8px; }
.step { padding: 12px; border-radius: 14px; background: rgba(255,255,255,0.04); border: 1px solid var(--stroke); }
.step.active { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; }
.flash { font-size: 15px; font-weight: 700; padding: 12px 16px; }
.pending { background: rgba(251,191,36,.2); color: var(--warn); }
.approved { background: rgba(52,211,153,.2); color: var(--ok); }
.rejected { background: rgba(251,113,133,.2); color: var(--err); }
.paid { background: rgba(139,92,246,.2); }
.list-card { margin-bottom: 10px; }
.landing-section { padding: 22px 0; }
.faq details { background: var(--card); border-radius: 14px; padding: 12px 14px; margin-bottom: 8px; border: 1px solid var(--stroke); }
footer.site { padding: 24px 16px; color: var(--muted); text-align: center; }
.cta-row { display: grid; gap: 10px; }
@media (min-width: 860px) {
  .sidenav { display: flex; position: fixed; left: 0; top: 56px; bottom: 0; width: 220px; }
  .wrap { margin-left: 220px; max-width: none; padding: 24px; }
  .btn { width: auto; min-width: 220px; }
  .cta-row { grid-template-columns: auto auto; justify-content: start; }
  .stats { grid-template-columns: repeat(4, 1fr); }
}
