:root{
  --bg: #0b1020;
  --card: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --accent: rgba(120,170,255,0.95);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 600px at 20% 0%, rgba(120,170,255,0.18), transparent 55%),
              radial-gradient(900px 500px at 80% 10%, rgba(150,120,255,0.14), transparent 60%),
              var(--bg);
  color: var(--text);
}

.container{
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.header{
  position: sticky;
  top: 0;
  backdrop-filter: blur(10px);
  background: rgba(11,16,32,0.55);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.top{
  display:flex;
  gap:16px;
  align-items:center;
  justify-content:space-between;
  padding: 18px 0;
}

h1{
  margin:0;
  font-size: 28px;
  letter-spacing: 0.2px;
}
.subtitle{
  margin:6px 0 0 0;
  color: var(--muted);
  font-size: 14px;
}
.meta{
  margin:8px 0 0 0;
  color: var(--muted);
  font-size: 13px;
}
a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 13px;
  text-decoration:none;
}
.btn:hover{
  border-color: rgba(120,170,255,0.45);
  box-shadow: var(--shadow);
  text-decoration:none;
}
.btn-ghost{
  background: transparent;
}

main{ padding: 22px 0 42px; }

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
  box-shadow: var(--shadow);
}

h2{
  margin: 0 0 10px 0;
  font-size: 18px;
}
p{ margin: 0; line-height: 1.6; color: rgba(255,255,255,0.86); }

.grid{
  margin-top: 14px;
  display:grid;
  gap:14px;
  grid-template-columns: 1fr;
}

@media (min-width: 860px){
  .grid{ grid-template-columns: 1fr 1fr; }
}

.skill{
  display:flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.skill:first-of-type{ border-top: none; padding-top: 0; }
.label{ min-width: 140px; color: var(--muted); font-size: 13px; }
.value{ color: rgba(255,255,255,0.88); font-size: 13px; line-height: 1.5; }

.proj{
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.proj:first-of-type{ border-top:none; padding-top:0; }
.proj-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
}
h3{
  margin:0;
  font-size: 15px;
}
.muted{ color: var(--muted); }
.link{
  font-size: 13px;
  white-space: nowrap;
}

ul{
  margin: 8px 0 0 18px;
  padding:0;
  color: rgba(255,255,255,0.84);
  line-height: 1.55;
  font-size: 13px;
}
.edu-title{ font-weight: 650; margin-bottom: 6px; }
.pill-row{
  margin-top: 10px;
  display:flex;
  flex-wrap: wrap;
  gap:8px;
}
.pill{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.84);
}

.footer{
  margin-top: 16px;
  text-align:center;
  font-size: 12px;
  color: var(--muted);
}
