/* Minimal single-page CV (Option C style) */
:root{
  --bg:#fbfbfc; --card:#ffffff; --text:#111827; --muted:#6b7280;
  --line:#e5e7eb; --accent:#2563eb; --shadow: 0 10px 30px rgba(0,0,0,.06);
  --radius:16px;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 50% 0%, rgba(37,99,235,.10), transparent 60%), var(--bg);
}
a{color:inherit; text-decoration:none}
a:hover{color:var(--accent)}
.container{max-width:1100px; margin:0 auto; padding:28px 18px 60px}
.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter:saturate(180%) blur(14px);
  background: rgba(251,251,252,.75);
  border-bottom:1px solid rgba(229,231,235,.75);
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
}
.brand{font-weight:600; letter-spacing:-.02em}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px; border-radius:999px;
  border:1px solid rgba(37,99,235,.25);
  background: rgba(37,99,235,.10); color: var(--accent); font-weight:600;
}
.btn:hover{background: rgba(37,99,235,.16)}
.btn.ghost{background:transparent; border-color:var(--line); color:var(--text)}
.btn.ghost:hover{background:rgba(17,24,39,.04)}
.hero{padding:44px 18px 26px}
.hero-left{display:flex; gap:18px; align-items:center}
.avatar{
  width:64px; height:64px; border-radius:999px; overflow:hidden;
  border:1px solid rgba(229,231,235,.9);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.avatar img{width:100%; height:100%; object-fit:cover}
h1{margin:0; font-size:42px; line-height:1.05; letter-spacing:-.03em}
.subtitle{margin:8px 0 10px; color:var(--muted); font-weight:500}
.links{display:flex; flex-wrap:wrap; gap:10px; color:var(--muted); font-size:14px}
.dot{opacity:.6}
.grid{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.card{
  background:var(--card); border:1px solid rgba(229,231,235,.9);
  border-radius:var(--radius); padding:18px;
  box-shadow: var(--shadow);
}
.card h2{margin:0 0 12px; font-size:16px; letter-spacing:-.01em}
.pills{display:flex; flex-wrap:wrap; gap:10px}
.pill{padding:8px 10px; border-radius:999px; border:1px solid var(--line); background: rgba(17,24,39,.02); font-size:13px}
.span-2{grid-column: 1 / -1}
.company{padding:12px 0; border-top:1px solid var(--line)}
.company:first-of-type{border-top:0; padding-top:0}
.company h3{margin:0 0 6px; font-size:15px}
.role{padding:10px 0}
.role-head{display:flex; gap:12px; align-items:baseline; justify-content:space-between}
.role h4{margin:0; font-size:14px}
.dates{color:var(--muted); font-size:13px; white-space:nowrap}
ul{margin:8px 0 0 18px; color:var(--muted); line-height:1.6}
li{margin:4px 0}
.edu{display:flex; flex-direction:column; gap:10px}
.edu-item{display:flex; justify-content:space-between; gap:14px; padding:12px 0; border-top:1px solid var(--line)}
.edu-item:first-child{border-top:0; padding-top:0}
.edu-org{font-weight:600}
.edu-program{color:var(--muted); margin-top:4px}
.footer{display:flex; justify-content:space-between; align-items:center; gap:12px}
.footer-title{font-weight:600; margin-bottom:6px}
@media (max-width: 860px){
  h1{font-size:34px}
  .grid{grid-template-columns: 1fr}
  .span-2{grid-column:auto}
  .role-head{flex-direction:column; align-items:flex-start}
  .dates{white-space:normal}
}
