:root{
  --bg:#0f1724;
  --card:#0b1220;
  --muted:#9aa4b2;
  --accent:#ffd166;
  --glass: rgba(255,255,255,0.06);
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0; font-family:Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; background:linear-gradient(180deg,#071022 0%,#0b1220 100%); color:#e6eef8; display:flex; align-items:center; justify-content:center; padding:32px;
}
.container{width:100%;max-width:980px;background:linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); border-radius:16px;padding:28px;box-shadow:0 8px 30px rgba(2,6,23,0.6);border:1px solid rgba(255,255,255,0.03)}
.header{display:flex;align-items:center;gap:18px}
.logo{width:74px;height:74px;border-radius:12px;background:linear-gradient(135deg,var(--accent),#ff8c66);display:flex;align-items:center;justify-content:center;font-weight:700;color:#091126}
.title{font-size:20px;font-weight:700}
.lead{color:var(--muted);margin-top:6px}
.grid{display:grid;grid-template-columns:1fr 320px;gap:22px;margin-top:24px}
.card{background:var(--card);border-radius:12px;padding:18px;border:1px solid rgba(255,255,255,0.02)}
.bio h2{margin:0 0 8px 0}
.bio p{color:var(--muted);line-height:1.5}
.contact{display:flex;flex-direction:column;gap:8px}
.contact a{color:var(--accent);text-decoration:none;font-weight:600}
.links{display:flex;flex-direction:column;gap:8px;margin-top:12px}
.footer{margin-top:18px;color:var(--muted);font-size:13px;text-align:center}
@media(max-width:820px){.grid{grid-template-columns:1fr;}.header{flex-direction:row}.logo{width:60px;height:60px}}
