
:root{
  --bg:#0b1220;
  --card:#0f1a2e;
  --text:#e9eefc;
  --muted:#b9c3dd;
  --line:rgba(255,255,255,.12);
  --accent:#7aa2ff;
  --accent2:#9ff0ff;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:radial-gradient(1200px 800px at 20% 0%, #132748 0%, var(--bg) 55%) fixed;
  color:var(--text);
}
.wrap{max-width:1040px;margin:0 auto;padding:22px}
.header{display:flex;gap:18px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.name{font-size:36px;font-weight:800;letter-spacing:-.02em}
.tag{color:var(--muted);margin-top:4px}
.cta{display:flex;gap:10px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 12px;border:1px solid var(--line);
  border-radius:12px;color:var(--text);text-decoration:none;
  background:rgba(255,255,255,.03)
}
.btn:hover{border-color:rgba(255,255,255,.22)}
.btn-primary{background:linear-gradient(135deg, rgba(122,162,255,.22), rgba(159,240,255,.14)); border-color:rgba(122,162,255,.5)}
.card{
  background:rgba(15,26,46,.88);
  border:1px solid var(--line);
  border-radius:18px;
  padding:18px;
  box-shadow:0 14px 40px rgba(0,0,0,.25);
}
.card h2{margin:0 0 10px;font-size:18px}
.hero{display:grid;grid-template-columns:1.35fr .75fr;gap:18px}
.hero h1{margin:0 0 8px;font-size:28px}
.hero p{margin:0 0 14px;color:var(--muted);line-height:1.55}
.chips{display:flex;gap:8px;flex-wrap:wrap;margin:0 0 14px}
.chip{font-size:12px;color:var(--muted);border:1px solid var(--line);padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.03)}
.what ul{margin:10px 0 0;padding-left:18px;color:var(--text)}
.what li{margin:8px 0;color:var(--text);line-height:1.45}
.hero-right{display:flex;flex-direction:column;gap:12px}
.photo{
  border-radius:16px;border:1px solid var(--line);
  overflow:hidden; background:rgba(255,255,255,.03);
  min-height:220px; display:flex; align-items:center; justify-content:center;
}
.photo img{width:100%;height:100%;object-fit:cover;display:block}
.photo-fallback{color:var(--muted);font-size:13px;padding:18px}
.card-mini{
  background:rgba(15,26,46,.88);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}
.qr-top{display:flex;align-items:center;justify-content:space-between;gap:10px}
.qr-title{font-weight:700}
.qr-url{font-size:12px;color:var(--muted);margin-top:4px;word-break:break-all}
.qr-img{width:92px;height:92px;border-radius:10px;background:#fff;padding:6px}
.qr-note{margin-top:10px;color:var(--muted);font-size:12px;line-height:1.4}
.contact-title{font-weight:700;margin-bottom:8px}
.contact-line{color:var(--muted);font-size:13px;margin:6px 0}
.timeline{display:flex;flex-direction:column;gap:14px}
.item .role{font-weight:700}
.item .meta{color:var(--muted);font-size:13px;margin:3px 0 8px}
.item ul{margin:0;padding-left:18px}
.item li{margin:6px 0;line-height:1.45;color:var(--text)}
.grid{display:grid;grid-template-columns:1fr 1fr;gap:18px;margin-top:18px}
.two-col{columns:2;column-gap:22px;margin:0;padding-left:18px}
.two-col li{break-inside:avoid;margin:6px 0;color:var(--text)}
.quote{margin:10px 0;padding:10px 12px;border-left:3px solid rgba(122,162,255,.6);background:rgba(255,255,255,.03);border-radius:12px;color:var(--text)}
.small{color:var(--muted);font-size:12px;margin-top:10px;line-height:1.4}
.footer{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:var(--muted);margin-top:18px;padding-bottom:40px}
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .two-col{columns:1}
}
