:root{
  --bg:#0b0f17;
  --panel:#0f1724;
  --panel2:#0c1320;
  --text:#e7eefc;
  --muted:#a9b7d0;
  --line:rgba(255,255,255,.08);
  --accent:#7aa2ff;
  --accent2:#9bffc9;
  --shadow:0 14px 40px rgba(0,0,0,.35);
  --radius:16px;
  --max:1100px;
}

/* Reset-ish */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 700px at 20% 0%, rgba(122,162,255,.18), transparent),
    radial-gradient(900px 700px at 90% 20%, rgba(155,255,201,.10), transparent),
    var(--bg);
}
a{color:var(--text);text-decoration:none}
a:hover{color:var(--accent)}
.container{max-width:var(--max);margin:0 auto;padding:0 22px}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:20;
  background:rgba(11,15,23,.75);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}
.topbar__inner{display:flex;align-items:center;gap:14px;padding:14px 0}
.brand{font-weight:700;letter-spacing:.2px;white-space:nowrap}
.nav{
  display:flex;
  gap:14px;
  flex:1;
  justify-content:center;
  flex-wrap:nowrap;
  overflow-x:auto;
  white-space:nowrap;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.nav::-webkit-scrollbar{display:none}
.nav a{color:var(--muted);font-weight:500}
.nav a:hover{color:var(--text)}
.actions{display:flex;gap:10px;flex-wrap:nowrap;justify-content:flex-end;white-space:nowrap}

/* Buttons */
.btn{
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  padding:10px 12px;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.btn--primary{
  background:linear-gradient(135deg, rgba(122,162,255,.18), rgba(155,255,201,.12));
  border-color:rgba(122,162,255,.35);
}
.btn--ghost:hover{border-color:rgba(255,255,255,.18)}

/* Hero */
.hero{padding:54px 0 18px}
.hero__grid{display:grid;grid-template-columns:1.5fr .9fr;gap:22px;align-items:start}
.kicker{color:var(--accent);font-weight:700;letter-spacing:.25px;margin-bottom:8px}
h1{font-size:44px;line-height:1.1;margin:0 0 10px}
.lead{color:var(--muted);font-size:16px;line-height:1.6;margin:0 0 18px}

.badges{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0 18px}
.badge{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:12px;
}

.hero__cta{display:flex;gap:10px;margin:10px 0 18px;flex-wrap:wrap}

.meta{display:grid;gap:8px;color:var(--muted);font-size:13px}
.meta__label{color:var(--text);font-weight:700;margin-right:8px}

/* Sections */
.section{padding:34px 0}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.02), transparent)}
.section__head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
  flex-wrap:wrap;
}
.section__head h2{margin:0;font-size:22px}
.section__head p{margin:0;color:var(--muted);max-width:640px;line-height:1.6}

/* Cards */
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
}
.card__title{font-weight:700;margin-bottom:10px}

.list{margin:0;padding-left:18px;color:var(--muted);line-height:1.6}
.divider{height:1px;background:var(--line);margin:14px 0}

.links{display:flex;gap:12px;flex-wrap:wrap}
.links a{color:var(--muted);font-weight:600}
.links a:hover{color:var(--text)}

.muted{color:var(--muted);line-height:1.6;margin:0}

/* Timeline / roles */
.timeline{display:grid;gap:14px}
.role{
  background:rgba(255,255,255,.02);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:16px;
}
.role__top{
  display:flex;
  justify-content:space-between;
  gap:14px;
  align-items:flex-start;
  flex-wrap:wrap;
}
.role__meta{color:var(--muted);font-size:13px;margin-top:2px}
.role__stack{
  color:var(--muted);
  font-size:12px;
  border:1px solid var(--line);
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.02);
  white-space:nowrap;
}
.bullets{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.6}
.bullets strong{color:var(--text)}

/* Grids */
.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

/* Pills */
.pillset{display:flex;flex-wrap:wrap;gap:10px;margin-top:8px}
.pill{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  padding:7px 10px;
  border-radius:999px;
}

/* Contact */
.contact{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.contact__label{color:var(--muted);font-size:12px}
.contact__value{font-weight:700}

/* Footer */
.footer{
  display:flex;
  gap:10px;
  justify-content:center;
  color:var(--muted);
  font-size:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.footer__sep{opacity:.7}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  h1{font-size:36px}
  .nav{display:none}
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .role__stack{white-space:normal}
}
