:root{
  --bg:#0b0e14;
  --card:rgba(255,255,255,0.06);
  --text:rgba(255,255,255,0.92);
  --muted:rgba(255,255,255,0.65);
  --border:rgba(255,255,255,0.12);
  --shadow:0 10px 30px rgba(0,0,0,0.35);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(99,102,241,.18), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(16,185,129,.14), transparent 55%),
    var(--bg);
}

a{color:inherit}
.container{
  width:min(1040px,calc(100% - 40px));
  margin:auto;
}

.hero{border-bottom:1px solid var(--border)}
.nav{
  display:flex;
  justify-content:space-between;
  padding:24px 0;
}
.links a{margin-left:16px;color:var(--muted);text-decoration:none}

.heroGrid{
  display:grid;
  grid-template-columns:1.3fr .9fr;
  gap:24px;
}

h1{
  font-size:clamp(34px,3vw,52px);
  margin:0 0 12px;
}
.subtitle{color:var(--muted);font-size:18px}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.08);
  margin-right:8px;
  text-decoration:none;
}
.btnGhost{background:none}

.meta{color:var(--muted)}

.heroCard{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
}
.avatar{
  display:block;
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:50%;
  margin:40px auto 24px;
  border:1px solid var(--border);
}

.section{padding:36px 0;border-bottom:1px solid var(--border)}
.twoCol{display:grid;grid-template-columns:1fr 1fr;gap:16px}

.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.gallery img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:14px;
  border:1px solid var(--border);
}

.footer{
  padding:24px 0;
  text-align:center;
  color:var(--muted);
}

@media(max-width:800px){
  .heroGrid,.twoCol{grid-template-columns:1fr}
  .gallery{grid-template-columns:repeat(2,1fr)}
}
