:root {
  --bg: #0b0f15;
  --surface: #101621;
  --muted: #a9b1c3;
  --text: #e8eefc;
  --accent: #5cc1ff;
  --accent-2: #a78bfa;
  --card: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(92,193,255,.12), transparent),
    radial-gradient(1000px 500px at 110% 10%, rgba(167,139,250,.10), transparent),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.wrap { max-width: 980px; margin: 0 auto; padding: 24px; }

.nav {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(16,22,33,.65); backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.06); padding: 12px 0;
  position: sticky; top:0; z-index: 10;
}
.brand { font-weight: 800; }

.pill {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.06); padding: 6px 12px;
  border-radius: 999px; font-size: 13px;
}
.pill .dot {
  width:8px; height:8px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7efcff, #0af);
  box-shadow: 0 0 12px rgba(92,193,255,.8);
}

.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 24px; align-items: center; padding: 42px 0; }
.title { font-size: clamp(28px,4vw,44px); margin: 0 0 12px; }
.subtitle { color: var(--muted); margin: 0 0 18px; }

.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge { font-size: 12px; padding: 6px 10px; border-radius: 999px; background: rgba(92,193,255,.14); border:1px solid rgba(92,193,255,.35); }

.cta-row { display:flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.btn {
  display:inline-flex; align-items:center; gap:8px; padding: 12px 16px;
  border-radius: 12px; border:1px solid rgba(255,255,255,.12);
  background: var(--card); font-weight:600; color: var(--text); text-decoration: none;
}
.btn.primary { background: linear-gradient(180deg, rgba(92,193,255,.22), rgba(92,193,255,.12)); border-color: rgba(92,193,255,.45); }

.card { background: #0f1420; border-radius: 16px; padding: 18px; margin-top: 14px; border:1px solid rgba(255,255,255,.08); }
.card a { color: var(--accent); text-decoration: none; font-weight: 500; }
.card a:hover { text-decoration: underline; color: #8ad4ff; }

section { margin: 28px 0 0; }
h2 { font-size: 18px; text-transform: uppercase; letter-spacing: .12em; color: #c9d6ff; margin: 0 0 12px; }

.grid { display:grid; gap:14px; }
.grid.skills { grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); }
.skill { background: rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.08); padding: 14px; border-radius: 14px; }
.skill b { display:block; margin-bottom: 6px; }

.xp { display:grid; gap: 12px; }
.xp .role { display:flex; justify-content: space-between; }
.xp .date { color: var(--muted); font-size: 14px; }

footer { margin: 40px 0 60px; display:flex; justify-content: space-between; font-size:14px; color: var(--muted); }

@media(max-width:880px){
  .hero{ grid-template-columns:1fr;}
  footer{ flex-direction: column; align-items:flex-start; }
}

.notes-link a {
  color: #9aa4b2;          /* muted gray-blue */
  text-decoration: none;
  font-size: 0.9rem;
}

.notes-link a:hover {
  color: #cfd6e4;
  text-decoration: underline;
}
