:root{
  --dz-bg:#0b1020;
  --dz-muted:#6c757d;
  --dz-soft:rgba(13,110,253,.08);
}

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Arial;
  color:#111;
  background:#fff;
}

/* Topbar */
.topbar{background:var(--dz-bg);color:rgba(255,255,255,.85)}
.topbar-link{color:rgba(255,255,255,.85);text-decoration:none}
.topbar-link:hover{color:#fff;text-decoration:underline}

.icon-btn{
  color:rgba(255,255,255,.85);
  width:34px;height:34px;
  border-radius:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:rgba(255,255,255,.08);
}
.icon-btn:hover{color:#fff;background:rgba(255,255,255,.14)}

/* Brand */
.brand-badge{
  width:34px;height:34px;
  border-radius:12px;
  background:linear-gradient(135deg,#0d6efd,#198754);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:800;
  font-size:14px;
}

/* Hero */
.hero{
  position:relative;
  background:radial-gradient(1100px 600px at 10% 0%, rgba(13,110,253,.22), transparent 60%),
             radial-gradient(900px 500px at 100% 10%, rgba(25,135,84,.18), transparent 55%),
             #fff;
}
.hero-wave{
  height:26px;
  background:linear-gradient(90deg, rgba(13,110,253,.10), rgba(25,135,84,.10));
}
.badge-pill{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  background:var(--dz-soft);
  padding:.4rem .75rem;
  border-radius:999px;
  color:#0d6efd;
  font-weight:600;
}

.hero-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:1.25rem;
  box-shadow:0 8px 26px rgba(0,0,0,.06);
}
.status-dot{
  width:12px;height:12px;border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.15);
}
.kpi{
  display:flex;gap:.75rem;
  padding:.85rem;
  border-radius:14px;
  background:#f8f9fa;
  border:1px solid rgba(0,0,0,.06);
}
.kpi-icon{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:var(--dz-soft);
  color:#0d6efd;
}
.kpi-title{font-size:.85rem;color:var(--dz-muted)}
.kpi-value{font-weight:700}

.mini-chart{
  border-radius:14px;
  border:1px solid rgba(0,0,0,.06);
  padding:1rem;
  background:#fff;
}
.mini-chart-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:.75rem}
.bars{display:flex;gap:.4rem;align-items:flex-end;height:72px}
.bars span{
  width:100%;
  background:linear-gradient(180deg, rgba(13,110,253,.55), rgba(25,135,84,.55));
  border-radius:10px;
}

/* Sections */
.section{padding:4rem 0}
.section-alt{background:#f8fafc}
.section-head{margin-bottom:1.5rem}

.feature-card, .tech-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.feature-icon{
  width:46px;height:46px;border-radius:16px;
  display:flex;align-items:center;justify-content:center;
  background:var(--dz-soft);
  color:#0d6efd;
  margin-bottom:1rem;
  font-size:1.25rem;
}
.chip{
  display:inline-flex;
  align-items:center;
  padding:.35rem .6rem;
  border-radius:999px;
  background:#eef2ff;
  border:1px solid rgba(13,110,253,.15);
  font-size:.85rem;
}

.step-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:1.25rem;
  background:#fff;
}
.step-num{
  width:38px;height:38px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:var(--dz-soft);
  color:#0d6efd;
  font-weight:800;
}

/* Projects */
.project-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}
.project-thumb{
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
  background:#0b1020;
}
.project-badge{
  font-size:.75rem;
  padding:.25rem .5rem;
  border-radius:999px;
  background:rgba(13,110,253,.12);
  color:#0d6efd;
  border:1px solid rgba(13,110,253,.18);
}

/* Contact */
.contact-card{
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:1.5rem;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

/* Honeypot anti-bot */
.dz-hp{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
  opacity:0!important;
}

.footer{background:#fff}
