
:root {
  --purple: #7c5cff;
  --purple-2: #5a79ff;
  --muted: #a2a7b9;
  --card: #09090c;
  --card-2: #0d0d12;
  --page: #000000;
  --text: #f5f6fa;
  --border: rgba(255,255,255,.06);
  --pill: rgba(255,255,255,.06);
  --shadow: 0 18px 40px rgba(0,0,0,.36);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(700px 420px at 10% 0%, rgba(124,92,255,.14), transparent 52%),
    radial-gradient(680px 380px at 100% 10%, rgba(55,100,255,.10), transparent 46%),
    #000;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
.page-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: -2;
  background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 18px 18px; opacity: .10;
}
body::before, body::after {
  content: ""; position: fixed; border-radius: 50%; filter: blur(90px);
  pointer-events: none; z-index: -1; opacity: .14; animation: floatGlow 10s ease-in-out infinite alternate;
}
body::before { width: 280px; height: 280px; top: 8%; left: -100px; background: #5b43ff; }
body::after { width: 320px; height: 320px; right: -130px; bottom: 4%; background: #273b88; animation-delay: -4s; }
@keyframes floatGlow { from { transform: translate3d(0,0,0) scale(.92); } to { transform: translate3d(30px,36px,0) scale(1.1); } }

.nav {
  position: sticky; top: 0; z-index: 50; height: 62px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px; background: rgba(0,0,0,.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.brand { font-weight: 800; color: #a690ff; letter-spacing: -.01em; }
.nav-links { display: flex; gap: 18px; font-size: 14px; font-weight: 600; color: #d6d8e2; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: #fff; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.hamburger {
  width: 38px; height: 38px; border-radius: 999px; border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05); color: #fff; display: none; place-items: center; cursor: pointer;
}
.mobile-menu {
  display: none; position: absolute; left: 12px; right: 12px; top: 68px;
  background: rgba(7,7,10,.98); border-radius: 18px; padding: 10px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 14px; border-radius: 12px; }
.mobile-menu a:hover { background: rgba(255,255,255,.05); }

.hero { position: relative; padding: 26px 16px 14px; }
.hero::after {
  content:""; position:absolute; inset:-28% auto auto 50%; width: 420px; height: 420px; margin-left:-210px;
  background: conic-gradient(from 180deg, transparent, rgba(124,92,255,.08), transparent 25%);
  animation: heroSpin 18s linear infinite; pointer-events:none;
}
@keyframes heroSpin { to { transform: rotate(360deg); } }
.hero-shell {
  position: relative; z-index: 1; width: min(760px, calc(100% - 8px)); margin: 0 auto;
  padding: 28px 18px 24px; border: 1px solid var(--border); border-radius: 28px;
  background: linear-gradient(180deg, rgba(12,12,16,.95), rgba(5,5,8,.98));
  box-shadow: var(--shadow); text-align: center; overflow: hidden;
}
.hero-shell::before {
  content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.05) 32%, transparent 60%);
  transform: translateX(-100%); animation: sheen 7s linear infinite; pointer-events:none;
}
@keyframes sheen { to { transform: translateX(100%); } }
.hero-badge {
  display:inline-flex; align-items:center; justify-content:center; min-height:34px; padding: 8px 14px; border-radius:999px;
  background: rgba(124,92,255,.14); border:1px solid rgba(124,92,255,.24); color:#d8d0ff; font-size:12px; font-weight:700;
}
.avatar-scene { position:relative; width:176px; height:176px; margin: 20px auto 14px; display:grid; place-items:center; }
.orbit { position:absolute; border-radius:50%; border:1px solid rgba(255,255,255,.10); animation: orbitSpin 12s linear infinite; }
.orbit-a { width:176px; height:176px; }
.orbit-b { width:136px; height:136px; animation-direction: reverse; animation-duration: 9s; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.dot { position:absolute; width:10px; height:10px; border-radius:50%; background: linear-gradient(180deg,#fff,#8ea8ff); box-shadow:0 0 18px rgba(124,92,255,.35); }
.dot-a { top: 24px; right: 20px; animation: dotFloat 2.8s ease-in-out infinite; }
.dot-b { left: 18px; bottom: 28px; width:8px; height:8px; background: linear-gradient(180deg,#fff,#41c8ff); animation: dotFloat 3.2s ease-in-out infinite reverse; }
@keyframes dotFloat { 50% { transform: translateY(-7px) scale(1.12); } }
.avatar-wrap {
  width: 120px; height: 120px; border-radius: 50%; padding: 4px;
  background: linear-gradient(135deg, #f7de9d, #ff70c2 42%, #5b72ff 88%);
  box-shadow: 0 20px 36px rgba(79,86,255,.24); animation: avatarPulse 3.8s ease-in-out infinite;
}
.avatar-wrap img, .avatar-fallback { width:100%; height:100%; border-radius:50%; object-fit:cover; background:#030303; display:grid; place-items:center; color:#fff; font-size:34px; font-weight:800; }
@keyframes avatarPulse { 50% { transform: translateY(-5px) scale(1.015); box-shadow: 0 24px 40px rgba(79,86,255,.28); } }
.name { font-size: clamp(30px, 5vw, 42px); font-weight:800; display:inline-flex; align-items:center; gap:8px; letter-spacing:-.03em; }
.verified { width:22px; height:22px; border-radius:50%; background:#3b82f6; display:grid; place-items:center; }
.role { margin-top:10px; color:#b8aaff; font-weight:600; }
.pitch { margin:14px auto 0; max-width:420px; color:#b9bfd0; font-size:14px; line-height:1.72; }
.hero-actions { margin-top:18px; display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.hero-btn { display:inline-flex; align-items:center; justify-content:center; min-height:44px; padding:11px 18px; border-radius:14px; font-size:13px; font-weight:800; transition: transform .22s ease, box-shadow .22s ease; }
.hero-btn:hover { transform: translateY(-2px); }
.hero-btn-primary { background: linear-gradient(135deg, #7c5cff, #5a79ff); color:#fff; box-shadow:0 12px 24px rgba(92,99,255,.24); }
.hero-btn-soft { background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--text); }
.hero-highlights { margin-top: 16px; display:flex; justify-content:center; gap:8px; flex-wrap:wrap; }
.highlight-chip { padding: 7px 11px; border-radius:999px; background: var(--pill); border: 1px solid var(--border); color: var(--text); font-size: 11.5px; font-weight:700; }
.socials { margin-top: 18px; display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.social { width:44px; height:44px; border-radius:14px; display:grid; place-items:center; color:#fff; box-shadow: 0 10px 22px rgba(0,0,0,.2); transition: transform .22s ease; }
.social:hover { transform: translateY(-2px); }
.s-tg { background: linear-gradient(180deg, #28b4ef, #148fc9); }
.s-ad { background: linear-gradient(180deg, #8b6cff, #6646ff); font-size: 11px; font-weight:700; }

.wrap { width: min(760px, calc(100% - 24px)); margin: 0 auto; }
section { padding: 12px 0 8px; }
.section-panel {
  background: linear-gradient(180deg, rgba(10,10,14,.95), rgba(4,4,6,.98));
  border: 1px solid var(--border); border-radius: 26px; padding: 18px 16px; box-shadow: var(--shadow);
}
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:14px; margin-bottom:14px; }
.section-head h2 { font-size: clamp(20px, 3vw, 24px); letter-spacing:-.02em; }
.section-head p { max-width: 320px; color: var(--muted); font-size: 13px; line-height:1.6; text-align:right; }
.label { font-size:12px; letter-spacing:1.4px; font-weight:700; color:var(--muted); text-transform:uppercase; margin-bottom:8px; }
.card-stack { background: linear-gradient(180deg, rgba(8,8,11,.98), rgba(4,4,6,.98)); border-radius:18px; overflow:hidden; border:1px solid var(--border); }
.link-row, .install-card, .service-card, .admin-item { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease; }
.link-row {
  display:flex; align-items:center; gap:12px; padding:14px; border-bottom:1px solid rgba(255,255,255,.04); background: rgba(255,255,255,.01);
}
.link-row:last-child { border-bottom: 0; }
.link-row:hover { transform: translateY(-2px); background: rgba(255,255,255,.02); }
.ico { width:40px; height:40px; border-radius:13px; display:grid; place-items:center; flex:none; }
.link-copy { flex:1; min-width:0; }
.link-copy strong { display:block; font-size:14.5px; }
.link-copy span { display:block; font-size:12px; color:var(--muted); margin-top:2px; }
.go { width:34px; height:34px; border-radius:10px; background: rgba(124,92,255,.14); color: var(--purple); display:grid; place-items:center; flex:none; }
.tabs { display:flex; justify-content:center; gap:8px; margin-bottom:16px; flex-wrap:wrap; }
.tab { border:0; cursor:pointer; font:inherit; font-weight:800; padding:10px 22px; border-radius:999px; background: rgba(255,255,255,.04); color:var(--muted); }
.tab.active { background: linear-gradient(135deg, #7c5cff, #5a79ff); color:#fff; box-shadow:0 10px 22px rgba(124,92,255,.24); }
.install-list, .service-grid { display:grid; gap:10px; }
.install-card {
  display:flex; align-items:center; gap:12px; background: linear-gradient(180deg, rgba(8,8,11,.98), rgba(4,4,6,.98));
  border:1px solid var(--border); border-radius:18px; padding:12px;
}
.install-card:hover { transform: translateY(-2px); box-shadow:0 16px 30px rgba(0,0,0,.18); border-color: rgba(139,108,255,.24); }
.badge { width:46px; height:46px; border-radius:14px; flex:none; overflow:hidden; }
.badge img { width:46px; height:46px; display:block; border-radius:14px; object-fit:cover; }
.install-copy { flex:1; min-width:0; }
.install-copy strong { display:block; font-size:15px; }
.install-copy span { display:block; margin-top:3px; color:var(--muted); font-size:12px; }
.install-btn {
  flex:none; border:0; border-radius:999px; padding:9px 14px; background: linear-gradient(135deg, #372760, #4c33a0);
  color:#ddd2ff; font-weight:800; font-size:12px; cursor:pointer; font-family:inherit;
}
.install-btn:hover { transform: translateY(-1px); }
.empty { text-align:center; color: var(--muted); padding: 24px 12px; }
.service-card {
  width:100%; display:flex; align-items:center; gap:12px; text-align:left;
  background: linear-gradient(180deg, rgba(8,8,11,.98), rgba(4,4,6,.98)); color:var(--text);
  border:1px solid var(--border); border-radius:18px; padding:14px; cursor:pointer; font:inherit;
}
.service-card:hover { transform: translateY(-2px); box-shadow:0 16px 30px rgba(0,0,0,.18); }
.service-card.featured { background: linear-gradient(135deg, rgba(52,34,102,.92), rgba(9,9,12,.98)); }
.service-icon { width:46px; height:46px; border-radius:14px; display:grid; place-items:center; flex:none; font-size:12px; font-weight:800; color:#fff; background: linear-gradient(180deg,#4ea2ff,#2f6dff); }
.service-icon.cert { background: linear-gradient(180deg,#a889ff,#7051ff); font-size:20px; }
.service-copy { flex:1; min-width:0; }
.service-copy strong { display:block; font-size:14.5px; }
.service-copy span { display:block; color: var(--muted); font-size:12px; margin-top:3px; }
.empty.compact { padding:18px 12px; background: linear-gradient(180deg, rgba(8,8,11,.98), rgba(4,4,6,.98)); border:1px solid var(--border); border-radius:18px; }
.footer { text-align:center; color:var(--muted); padding: 34px 16px 46px; font-size:13px; line-height:1.7; }
.legal { display:flex; justify-content:center; gap:16px; margin:8px 0 18px; flex-wrap:wrap; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; border:0; border-radius:12px; padding:10px 14px; cursor:pointer; font-weight:600; font-size:14px; font-family:inherit; }
.btn-primary { background: var(--purple); color:#fff; }
.btn-ghost { background: rgba(124,92,255,.16); color:#cbb8ff; }
.btn-danger { background:#3a1d1d; color:#fca5a5; }
.field { display:flex; flex-direction:column; gap:6px; margin-bottom:12px; }
.field label { font-size:12px; color:var(--muted); font-weight:600; }
.field input, .field select, .field textarea { border:1px solid var(--border); background:#08080c; color:var(--text); border-radius:12px; padding:11px 12px; font:inherit; }
.field textarea { min-height:90px; resize:vertical; }
.notice { background: linear-gradient(180deg, rgba(8,8,11,.98), rgba(4,4,6,.98)); border:1px solid var(--border); border-radius:14px; padding:12px 14px; font-size:13px; color:var(--muted); margin-bottom:16px; }
.admin-toolbar { display:flex; gap:8px; flex-wrap:wrap; margin:12px 0 18px; }
.admin-item { padding:14px; border-bottom: 1px solid rgba(255,255,255,.04); }
.admin-item .row { display:flex; justify-content:space-between; gap:10px; align-items:center; }
.login-box { max-width:420px; margin:80px auto; }
.reveal { opacity:0; transform:translateY(16px); }
.reveal.in { opacity:1; transform:none; transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }

@media (max-width: 760px) {
  .nav-links { display:none; }
  .hamburger { display:grid; place-items:center; }
  .section-head { flex-direction:column; align-items:flex-start; }
  .section-head p { max-width:none; text-align:left; }
}
@media (max-width: 620px) {
  .hero { padding-top: 20px; }
  .hero-shell { border-radius: 24px; padding: 24px 14px 20px; }
  .avatar-scene { width:168px; height:168px; }
  .orbit-a { width:166px; height:166px; }
  .orbit-b { width:128px; height:128px; }
  .avatar-wrap { width:114px; height:114px; }
  .name { font-size: 28px; }
  .install-card, .service-card { align-items:flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation:none !important; transition:none !important; scroll-behavior:auto !important; }
  .reveal { opacity:1; transform:none; }
}

/* Uploaded ESign / KSign logos */
.badge img { width: 46px; height: 46px; object-fit: cover; border-radius: 14px; display: block; }
