:root{
  --bg:#050512;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.08);
  --stroke:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.9);
  --muted:rgba(255,255,255,.65);

  /* Neon palette: green / blue / purple */
  --g:#25ff9a;
  --b:#4fd6ff;
  --p:#a36bff;

  --shadow: 0 20px 80px rgba(0,0,0,.55);
  --radius: 22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1200px 700px at 70% 10%, rgba(163,107,255,.18), transparent 60%),
              radial-gradient(900px 600px at 20% 30%, rgba(79,214,255,.16), transparent 55%),
              radial-gradient(1000px 700px at 40% 90%, rgba(37,255,154,.10), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
  cursor:none; /* custom cursor */
}

a{color:inherit;text-decoration:none}
.container{width:min(1120px, 92%); margin:0 auto;}
.section{padding:90px 0}
.section-head{margin-bottom:26px}
.section-title{font-size:34px; margin:0 0 6px}
.section-sub{margin:0; color:var(--muted); line-height:1.6}

/* Ambient Orbs */
.bg-orbs{position:fixed; inset:0; pointer-events:none; z-index:-1; filter: blur(30px);}
.orb{position:absolute; width:380px; height:380px; border-radius:50%;}
.orb1{left:-80px; top:80px; background:rgba(79,214,255,.16); animation: float1 12s ease-in-out infinite;}
.orb2{right:-120px; top:140px; background:rgba(163,107,255,.18); animation: float2 14s ease-in-out infinite;}
.orb3{left:20%; bottom:-160px; background:rgba(37,255,154,.10); animation: float3 16s ease-in-out infinite;}
@keyframes float1{50%{transform:translate(50px,-30px) scale(1.04)}}
@keyframes float2{50%{transform:translate(-40px,20px) scale(1.06)}}
@keyframes float3{50%{transform:translate(30px,-20px) scale(1.03)}}

/* Custom Cursor */
.cursor-dot, .cursor-ring{
  position:fixed; left:0; top:0; transform:translate(-50%,-50%);
  pointer-events:none; z-index:9999;
}
.cursor-dot{
  width:8px; height:8px; border-radius:50%;
  background: linear-gradient(90deg, var(--g), var(--b), var(--p));
  box-shadow: 0 0 18px rgba(79,214,255,.35);
}
.cursor-ring{
  width:34px; height:34px; border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(6px);
  box-shadow: 0 0 30px rgba(163,107,255,.20);
  transition: width .15s ease, height .15s ease, border-color .15s ease;
}

/* Topbar / Glass Nav */
.topbar{position:fixed; top:14px; left:0; right:0; z-index:50;}
.glass-nav{
  width:min(1120px, 92%);
  margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 14px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.06));
  border:1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.brand{display:flex; gap:10px; align-items:center;}
.logo{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 0 22px rgba(79,214,255,.16);
}
.brand-name{font-weight:700; letter-spacing:.2px}
.brand-role{font-size:12px; color:var(--muted)}
.nav-links{list-style:none; display:flex; gap:18px; margin:0; padding:0;}
.nav-links a{color:rgba(255,255,255,.78); font-size:14px}
.nav-links a:hover{color:white}
.nav-actions{display:flex; gap:10px; align-items:center;}
.hamburger{
  width:44px; height:40px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  display:none; cursor:none;
}
.hamburger span{display:block; height:2px; margin:7px 10px; background:rgba(255,255,255,.7); border-radius:2px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:white;
  font-weight:600;
  cursor:none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18)}
.btn.wide{width:100%}
.btn-primary{
  border:1px solid rgba(79,214,255,.35);
  background: linear-gradient(90deg, rgba(37,255,154,.18), rgba(79,214,255,.18), rgba(163,107,255,.16));
  box-shadow: 0 0 26px rgba(79,214,255,.16);
}
.btn-ghost{}

/* Hero */
.hero{padding-top:120px}
.hero-grid{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:stretch}
.chip{
  display:inline-flex; padding:7px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.hero-title{font-size:46px; line-height:1.05; margin:14px 0 10px}
.grad{
  background: linear-gradient(90deg, var(--g), var(--b), var(--p));
  -webkit-background-clip:text; background-clip:text;
  color:transparent;
  text-shadow: 0 0 22px rgba(79,214,255,.12);
}
.hero-sub{color:var(--muted); line-height:1.7; margin:0 0 16px}
.hero-cta{display:flex; gap:10px; flex-wrap:wrap}

.social-row{display:flex; gap:10px; margin-top:18px; flex-wrap:wrap}
.social-pill{
  padding:9px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.social-pill:hover{color:white; border-color:rgba(255,255,255,.20)}

.stats{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.stat{
  flex:1; min-width:140px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding:14px;
}
.stat-num{font-size:22px; font-weight:800}
.stat-txt{font-size:12px; color:var(--muted); margin-top:6px}

/* Cover Card */
.cover-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
  overflow:hidden;
  display:flex; flex-direction:column;
  min-height:420px;
}
.cover-top{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 14px 10px;
}
.cover-badge{
  font-size:12px; color:rgba(255,255,255,.82);
  padding:7px 10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
}
.mini-link{color:rgba(255,255,255,.75); font-size:13px}
.mini-link:hover{color:white}
.cover-media{
  height:280px;
  border-top:1px solid rgba(255,255,255,.10);
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  display:grid; place-items:center;
}
.cover-media iframe, .cover-media img{
  width:100%; height:100%; border:0; object-fit:cover;
}
.cover-bottom{padding:14px}
.cover-title{font-weight:800}
.cover-desc{color:var(--muted); font-size:13px; margin-top:6px}

/* Filter Row */
.filter-row{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px}
.filter{
  padding:10px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.78);
  cursor:none;
}
.filter.active{
  border-color: rgba(79,214,255,.35);
  box-shadow: 0 0 18px rgba(79,214,255,.14);
  color:white;
}

/* Grid Cards */
.grid{display:grid; grid-template-columns: repeat(3, 1fr); gap:14px}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
  transform: translateY(0);
  transition: transform .18s ease, border-color .18s ease;
}
.card:hover{transform: translateY(-4px); border-color: rgba(255,255,255,.18)}
.thumb{
  height:180px;
  background: rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.thumb img{width:100%; height:100%; object-fit:cover; display:block}
.card-body{padding:14px}
.card-title{font-weight:800; margin:0}
.card-sub{margin:8px 0 0; color:var(--muted); font-size:13px; line-height:1.5}
.tag{
  display:inline-flex; margin-top:10px;
  font-size:12px; color:rgba(255,255,255,.78);
  padding:6px 9px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}

/* Services */
.services .card-body{min-height:130px}

/* About */
.about-grid{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px}
.about-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding:18px;
}
.about-text{color:var(--muted); line-height:1.8}
.skills{display:flex; gap:10px; flex-wrap:wrap; margin:14px 0 6px}
.skill{
  padding:9px 12px; border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.78);
  font-size:13px;
}
.about-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.about-highlight{
  display:flex; gap:12px; align-items:center;
  padding:14px; border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
}
.pulse{
  width:12px; height:12px; border-radius:50%;
  background: var(--g);
  box-shadow: 0 0 18px rgba(37,255,154,.35);
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse{50%{transform:scale(1.3); opacity:.7}}
.about-highlight-title{font-weight:800}
.about-highlight-sub{color:var(--muted); font-size:13px; margin-top:4px}
.quote{
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.04));
  color:rgba(255,255,255,.82);
  line-height:1.7;
}

/* Contact */
.contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.contact-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding:18px;
}
label{display:block; font-size:13px; color:rgba(255,255,255,.78); margin:12px 0}
input, textarea{
  width:100%;
  margin-top:8px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color:white;
  outline:none;
}
input:focus, textarea:focus{border-color: rgba(79,214,255,.35); box-shadow: 0 0 18px rgba(79,214,255,.14)}
.hint{color:var(--muted); font-size:12px; line-height:1.6; margin-top:10px}

.hire-box{margin-top:10px}
.hire-line{display:flex; gap:10px; align-items:flex-start; padding:12px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); margin-bottom:10px;
}
.dot{width:10px; height:10px; border-radius:50%; background: var(--b); margin-top:5px; box-shadow:0 0 16px rgba(79,214,255,.25)}
.hire-title{font-weight:800}
.hire-sub{color:var(--muted); font-size:13px; margin-top:4px}
.mini-social{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}
.footer{
  margin-top:30px;
  padding:16px 2px 0;
  display:flex; justify-content:space-between; align-items:center;
  color:rgba(255,255,255,.65);
  border-top:1px solid rgba(255,255,255,.10);
}

/* Mobile Dock */
.mobile-dock{
  display:none;
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
  width:min(520px, 92%);
  padding:10px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  z-index:60;
  gap:8px;
}
.dock-item{
  flex:1;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px;
  padding:10px 8px;
  border-radius:18px;
  border:1px solid transparent;
  color:rgba(255,255,255,.75);
  cursor:none;
}
.dock-item.active{
  border-color: rgba(79,214,255,.35);
  color:white;
  box-shadow: 0 0 18px rgba(79,214,255,.12);
}
.dock-ico{font-size:18px}
.dock-txt{font-size:11px}

/* Mobile Sheet */
.overlay{
  position:fixed; inset:0; background: rgba(0,0,0,.55);
  opacity:0; pointer-events:none; transition: opacity .2s ease;
  z-index:70;
}
.mobile-sheet{
  position:fixed; right:14px; top:70px;
  width:min(380px, 92%);
  border-radius: 22px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transform: translateY(-10px) scale(.98);
  opacity:0; pointer-events:none;
  transition: opacity .2s ease, transform .2s ease;
  z-index:80;
}
.mobile-sheet.open{opacity:1; pointer-events:auto; transform: translateY(0) scale(1)}
.overlay.open{opacity:1; pointer-events:auto}
.sheet-head{display:flex; align-items:center; justify-content:space-between; padding:14px 14px 10px}
.sheet-title{font-weight:900}
.sheet-close{
  width:42px; height:38px; border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:white;
  cursor:none;
}
.sheet-body{padding:0 14px 14px; display:flex; flex-direction:column; gap:10px}
.sheet-link{
  padding:12px 12px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  color:rgba(255,255,255,.8);
}
.sheet-link:hover{color:white; border-color: rgba(255,255,255,.18)}
.sheet-admin{
  border-color: rgba(163,107,255,.28);
  box-shadow: 0 0 18px rgba(163,107,255,.12);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; }
  .grid{grid-template-columns: repeat(2, 1fr)}
  .about-grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  body{cursor:auto} /* phones */
  .cursor-dot,.cursor-ring{display:none}
  .nav-links{display:none}
  .hamburger{display:block}
  .mobile-dock{display:flex}
  .section{padding:80px 0}
  .hero-title{font-size:38px}
  .grid{grid-template-columns:1fr}
}
