:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --panel2:#111f3b;
  --text:#eaf0ff;
  --muted:#a9b4d0;
  --brand:#5eead4;
  --brand2:#60a5fa;
  --accent:#f472b6;
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 40px rgba(0,0,0,.35);
  --radius:18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  background: radial-gradient(1200px 600px at 15% 10%, rgba(94,234,212,.18), transparent 55%),
              radial-gradient(900px 500px at 85% 15%, rgba(96,165,250,.18), transparent 50%),
              radial-gradient(800px 600px at 60% 90%, rgba(244,114,182,.14), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{color:inherit}

.page{
  max-width:1100px;
  margin:0 auto;
  padding:40px 18px 60px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:22px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
  border-radius:999px;
  box-shadow:0 10px 25px rgba(0,0,0,.18);
}

.badge .dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: 0 0 0 4px rgba(94,234,212,.15);
}

.badge strong{font-weight:800; letter-spacing:.2px;}
.badge span{color:var(--muted); font-weight:600;}

.navlinks{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}
.chip{
  text-decoration:none;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  transition:.2s ease;
}
.chip:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.22);
  background:rgba(255,255,255,.07);
}

.hero{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
  margin-bottom:22px;
}

@media (max-width: 860px){
  .hero{grid-template-columns:1fr}
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.heroMain{padding:26px 22px}

.h-title{
  font-size:44px;
  margin:0;
  line-height:1.1;
}

.h-title .grad{
  background: linear-gradient(135deg, var(--brand), var(--brand2), var(--accent));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.tagline{
  margin:10px 0 18px;
  color:var(--muted);
  font-size:17px;
  font-weight:650;
}

.hlRow{display:flex; gap:10px; flex-wrap:wrap; margin-bottom:18px;}
.pill{
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
.pill b{color:var(--text)}

.ctaRow{display:flex; gap:12px; flex-wrap:wrap;}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  text-decoration:none;
  font-weight:900;
  transition:.2s ease;
}
.btn:hover{transform: translateY(-2px); background:rgba(255,255,255,.09)}
.btnPrimary{
  background: linear-gradient(135deg, rgba(94,234,212,.25), rgba(96,165,250,.20));
  border-color: rgba(94,234,212,.35);
}

.btnIcon{
  width:28px;height:28px;border-radius:10px;
  display:inline-grid;place-items:center;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
}

.heroSide{padding:18px}

.avatarWrap{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:center;
}

.avatar{
  width:190px;height: 140px;border-radius:28px;
  border:1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 30% 25%, rgba(94,234,212,.35), transparent 48%),
    radial-gradient(circle at 70% 70%, rgba(96,165,250,.30), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:center;
}

.avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}


.avatarInitials{
  font-size:52px;
  font-weight:1000;
  letter-spacing:1px;
  color: rgba(255,255,255,.92);
}

.sideText{color:var(--muted); font-weight:650; text-align:center;}

.sectionGrid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
@media (max-width: 860px){ .sectionGrid{grid-template-columns:1fr} }

.section{padding:22px}
.section h2{
  margin:0 0 14px;
  font-size:20px;
  letter-spacing:.2px;
}

.section h2 span{
  color:var(--text);
  background: linear-gradient(135deg, rgba(94,234,212,.95), rgba(96,165,250,.95));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.section p{color:var(--muted); line-height:1.7; margin:0 0 12px; font-weight:600;}

.list{
  margin:0; padding-left:18px;
  color:var(--muted); font-weight:650; line-height:1.9;
}

.project{
  padding:16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  margin-bottom:12px;
}
.project h3{margin:0 0 6px; font-size:16px}
.project p{margin:0;}

.techGrid{display:flex; flex-wrap:wrap; gap:10px;}
.tech{
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:900;
  font-size:13px;
}

.wide{grid-column: 1 / -1;}

.footer{
  margin-top:22px;
  text-align:center;
  color:rgba(255,255,255,.65);
  font-weight:650;
}

