:root{
  --bg:#0b1020;
  --card:rgba(255,255,255,.06);
  --card2:rgba(255,255,255,.09);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.65);
  --line:rgba(255,255,255,.12);
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 22px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}

.bg{
  position:fixed; inset:-40vh -20vw;
  background:
    radial-gradient(60vw 60vw at 10% 10%, rgba(124,58,237,.35), transparent 55%),
    radial-gradient(50vw 50vw at 85% 35%, rgba(59,130,246,.35), transparent 55%),
    radial-gradient(45vw 45vw at 40% 85%, rgba(16,185,129,.25), transparent 60%);
  filter: blur(20px);
  opacity:.9;
  z-index:-1;
}

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

.topbar{
  position:fixed; top:0; left:0; right:0;
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 18px;
  background: rgba(10,14,28,.55);
  border-bottom:1px solid var(--line);
  backdrop-filter: blur(14px);
  z-index:50;
}

.brand{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,58,237,.35), rgba(59,130,246,.25));
  border:1px solid var(--line);
  color:var(--text);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.4px;
}

.nav{display:flex; gap:14px; align-items:center; flex-wrap:wrap; justify-content:center;}
.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{color:var(--text); background:rgba(255,255,255,.06);}

.actions{display:flex; gap:10px; align-items:center;}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:14px;
  text-decoration:none;
  color:var(--text);
  background: rgba(255,255,255,.10);
  border:1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.13);}
.btn.ghost{background:transparent}
.btn.ghost:hover{background:rgba(255,255,255,.07)}

.hero{
  display:grid;
  grid-template-columns: 1.4fr .8fr;
  gap:16px;
  align-items:stretch;
}

.hero-card, .card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.04));
  box-shadow: var(--shadow);
}

.hero-card{padding:28px}
.kicker{color:var(--muted); font-weight:600; letter-spacing:.2px; font-size:.92rem}
h1{margin:10px 0 8px; font-size: clamp(2.1rem, 4vw, 3.2rem); line-height:1.05}
.grad{
  background: linear-gradient(90deg, rgba(124,58,237,1), rgba(59,130,246,1), rgba(16,185,129,1));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.subtitle{margin:0 0 14px; color:var(--muted); font-size:1.03rem; line-height:1.5}

.chips{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 18px}
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  font-size:.92rem;
}

.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:12px}

.hero-side{display:flex}
.profile{
  width:100%;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  box-shadow: var(--shadow);
}

.avatar{
  width:78px; height:78px;
  border-radius:22px;
  border:1px solid var(--line);
  overflow:hidden;
  background: rgba(255,255,255,.06);
  display:grid; place-items:center;
}
.avatar img{width:100%; height:100%; object-fit:cover}
.avatar-fallback{font-weight:900; font-size:1.2rem; color:rgba(255,255,255,.85)}

.profile-meta{margin:14px 0}
.meta-row{display:flex; justify-content:space-between; padding:10px 0; border-bottom:1px dashed rgba(255,255,255,.10)}
.label{color:var(--muted); font-weight:600}
.value a{color:var(--text); text-decoration:none}
.value a:hover{text-decoration:underline}

.card{padding:18px}
.card.mini{margin-top:14px; background: rgba(255,255,255,.04)}
.mini-title{font-weight:800; margin-bottom:8px}
.mini-list{margin:0; padding-left:18px; color:var(--muted)}
.mini-list li{margin:6px 0}

.section{margin-top:18px}
.section-head{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:14px; flex-wrap:wrap;
  margin:18px 2px 10px;
}
.section-head h2{margin:0; font-size:1.35rem}
.section-head p{margin:0; color:var(--muted)}

.grid{display:grid; gap:14px}
.grid.two{grid-template-columns:1fr 1fr}
.grid.three{grid-template-columns:1fr 1fr 1fr}

.timeline{display:grid; gap:14px}
.t-top{display:flex; justify-content:space-between; align-items:flex-start; gap:12px}
.pill{
  padding:7px 10px; border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid var(--line);
  font-weight:700; color:rgba(255,255,255,.86);
  white-space:nowrap;
}
.pill.ghost{background:transparent; color:var(--muted)}
.muted{color:var(--muted)}

ul{color:var(--muted)}
ul li{margin:8px 0}

.tags{display:flex; gap:10px; flex-wrap:wrap}
.tag{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--muted);
  font-weight:650;
  font-size:.92rem;
}

.bars{display:grid; gap:12px; margin-top:10px}
.bar{display:grid; gap:6px}
.bar span{color:var(--muted); font-weight:650}
.bar i{
  display:block; height:10px; border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  overflow:hidden;
  position:relative;
}
.bar i::after{
  content:"";
  position:absolute; left:0; top:0; bottom:0;
  width:var(--v);
  border-radius:999px;
  background: linear-gradient(90deg, rgba(124,58,237,.95), rgba(59,130,246,.9), rgba(16,185,129,.85));
}

.check{list-style:none; padding-left:0; margin:0}
.check li{
  padding-left:26px;
  position:relative;
  margin:10px 0;
  color:var(--muted);
}
.check li:before{
  content:"✓";
  position:absolute; left:0; top:0;
  color: rgba(16,185,129,.95);
  font-weight:900;
}

.contact{display:grid; gap:10px; margin-top:10px}
.contact-row{
  display:flex; justify-content:space-between; align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  text-decoration:none;
  color:var(--text);
}
.c-label{color:var(--muted); font-weight:700}
.c-value{font-weight:700}
.contact-row:hover{background: rgba(255,255,255,.08)}

.footer{
  margin-top:22px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  padding:16px 4px;
  color:var(--muted);
}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.on{
  opacity:1;
  transform:none;
}

@media (max-width: 980px){
  .hero{grid-template-columns:1fr; }
  .actions{display:none}
  .grid.three{grid-template-columns:1fr}
  .grid.two{grid-template-columns:1fr}
  .container{padding-top:92px}
}
