:root{
  --bg:#0b1220;
  --panel:rgba(255,255,255,.06);
  --panel2:rgba(255,255,255,.035);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.68);
  --line:rgba(255,255,255,.12);
  --accent:rgba(147,197,253,.95);
  --shadow:0 20px 70px rgba(0,0,0,.38);
  --radius:18px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1100px 700px at 15% 0%, rgba(96,165,250,.18), transparent 60%),
    radial-gradient(900px 650px at 90% 8%, rgba(34,197,94,.12), transparent 55%),
    linear-gradient(180deg, #0b1220, #0a0f1a);
  color:var(--text);
  line-height:1.55;
}

a{ color:inherit; text-decoration:none; }
a.link{ color:var(--accent); font-weight:650; }
a.link:hover{ text-decoration:underline; }

.container{ max-width:var(--max); margin:0 auto; padding:20px 18px; }

.skip{
  position:absolute; left:-999px; top:10px;
  background:rgba(255,255,255,.12);
  border:1px solid var(--line);
  padding:10px 12px; border-radius:12px;
}
.skip:focus{ left:12px; z-index:100; }

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{ display:flex; justify-content:space-between; align-items:center; gap:14px; }
.brand{ display:flex; align-items:center; gap:12px; }
.mark{
  width:36px; height:36px; border-radius:12px;
  display:grid; place-items:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  font-weight:800; letter-spacing:.03em;
}
.name{ font-weight:700; color:rgba(255,255,255,.84); }

.links{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.links a{
  color:var(--muted);
  padding:8px 10px;
  border-radius:999px;
}
.links a:hover{ color:var(--text); background:rgba(255,255,255,.05); }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:0 10px 30px rgba(0,0,0,.22);
}
.btn:hover{ background:rgba(255,255,255,.16); }
.btn.ghost{ background:transparent; border:1px solid rgba(255,255,255,.18); }

.hero{ padding:28px 0 12px; border-bottom:1px solid var(--line); }
.heroGrid{ display:grid; grid-template-columns:1.35fr .85fr; gap:16px; }

.kicker{
  margin:0 0 12px;
  color:var(--muted);
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
h1{ margin:0 0 12px; font-size:clamp(30px,4vw,48px); line-height:1.08; }
.lead{ margin:0 0 18px; color:var(--muted); max-width:70ch; }

.cta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:14px; }
.chips{ display:flex; gap:10px; flex-wrap:wrap; }
.chip{
  padding:7px 10px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  font-size:13px;
}

.panel{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  padding:16px;
}
.panelTitle{ margin:0 0 10px; font-weight:750; color:rgba(255,255,255,.86); }

.quote{
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.10);
  border-radius:14px;
  padding:12px;
  margin-bottom:10px;
}
.quote p{ margin:0; }
.byline{ margin-top:8px; color:rgba(255,255,255,.58); font-size:13px; }

.section{ padding:26px 0; }
.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap:18px;
  margin-bottom:12px;
}
h2{ margin:0; font-size:22px; }
h3{ margin:0; font-size:16px; }
.muted{ color:var(--muted); }

.grid{ display:grid; gap:14px; }
.grid.cards{ grid-template-columns:repeat(2, 1fr); }
.grid.two{ grid-template-columns:1fr 1fr; }

.card{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
  padding:16px;
}
.card.subtle{ background:var(--panel2); box-shadow:none; }

.cardTop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:8px;
}

.pill{
  font-size:12px;
  color:rgba(255,255,255,.62);
  border:1px solid var(--line);
  border-radius:999px;
  padding:6px 10px;
  background:rgba(255,255,255,.03);
  white-space:nowrap;
}

.timeline{ display:grid; gap:14px; }
.role{ display:grid; grid-template-columns:18px 1fr; gap:12px; }
.rail{ position:relative; }
.dot{
  width:10px; height:10px; border-radius:50%;
  background:rgba(147,197,253,.9);
  margin-top:10px;
}
.line{
  position:absolute; left:4px; top:26px; bottom:-14px;
  width:2px; background:rgba(255,255,255,.10);
}

.roleCard{
  border-radius:var(--radius);
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  padding:16px;
}
.roleTop{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:baseline;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.when{
  color:rgba(255,255,255,.72);
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
}

.bullets{ margin:10px 0 0; padding-left:18px; color:var(--muted); }

.tagRow{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.tag{
  font-size:12px;
  color:var(--muted);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
}

.contact{ display:flex; flex-direction:column; gap:10px; margin-top:10px; }
.label{ display:inline-block; width:74px; color:rgba(255,255,255,.55); }

.small{ font-size:13px; }
.footer{ margin-top:18px; padding-top:16px; border-top:1px solid var(--line); }

@media (max-width: 980px){
  .heroGrid{ grid-template-columns:1fr; }
}
@media (max-width: 860px){
  .grid.cards{ grid-template-columns:1fr; }
  .grid.two{ grid-template-columns:1fr; }
}
