:root{
  --bg:#10161d;
  --card:#151e27;
  --muted:#9fb0c2;
  --text:#eaf2fb;
  --stroke:rgba(255,255,255,.10);
  --accent:#5cc8ff;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --radius: 18px;
  --max: 1040px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(92,200,255,.10), transparent),
              radial-gradient(900px 500px at 90% 10%, rgba(80,255,200,.06), transparent),
              var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
.container{ max-width:var(--max); margin:0 auto; padding:18px; }

.topbar{
  display:flex; align-items:center; justify-content:space-between;
  gap:14px; padding-top:22px;
}

.brand{ display:flex; gap:12px; align-items:center; }
.avatar{
  width:46px; height:46px; border-radius:14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  font-weight:700;
}
.name{ font-weight:800; letter-spacing:.2px; }
.role{ color:var(--muted); font-size:14px; margin-top:2px; }

.actions{ display:flex; gap:10px; align-items:center; }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero{ display:grid; grid-template-columns: 1.25fr .75fr; gap:16px; padding:22px; }
.hero h1{ margin:0 0 10px 0; font-size:34px; line-height:1.1; }
.muted{ color:var(--muted); }
.quick{ display:flex; flex-wrap:wrap; gap:10px; margin:14px 0 8px; }
.tag{
  display:inline-flex; gap:8px; align-items:center;
  padding:8px 10px;
  border:1px solid var(--stroke);
  border-radius:999px;
  background: rgba(0,0,0,.12);
  font-size:13px;
}

.links{ display:flex; gap:12px; flex-wrap:wrap; margin-top:10px; }
.link{
  border:none;
  background:transparent;
  color:var(--accent);
  padding:0;
  font-weight:650;
  cursor:pointer;
}
.link:hover{ text-decoration:underline; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--stroke);
  background: rgba(0,0,0,.18);
  font-weight:700;
}
.btn:hover{ background: rgba(0,0,0,.28); }

.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.05);
  color:var(--text);
  font-weight:650;
  cursor:pointer;
  font-size:13px;
}
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }

.hero-right{
  display:flex; flex-direction:column; gap:12px;
}
.kpi{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  background: rgba(0,0,0,.12);
}
.kpi-num{ font-weight:900; letter-spacing:.2px; }
.kpi-label{ color:var(--muted); margin-top:6px; font-size:13px; }

.grid{
  margin-top:16px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:16px;
}

section.card{ margin-top:16px; padding:22px; }

.list{ margin:12px 0 0 18px; padding:0; }
.list li{ margin:8px 0; }

.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; }
.projects{ display:grid; grid-template-columns: 1fr 1fr 1fr; gap:14px; margin-top:14px; }
.project{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:14px;
  background: rgba(0,0,0,.12);
}
.project h3{ margin:0 0 8px 0; }
.meta{ display:flex; gap:8px; flex-wrap:wrap; margin:12px 0; }
.pill{
  font-size:12px;
  border:1px solid var(--stroke);
  padding:6px 8px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
.proj-links{ display:flex; gap:12px; flex-wrap:wrap; }

.timeline{ display:flex; flex-direction:column; gap:12px; margin-top:12px; }
.titem{
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:12px;
  background: rgba(0,0,0,.12);
}
.twhen{ font-size:12px; color:var(--muted); margin-bottom:6px; }

.note{ margin-top:12px; }

.footer{
  display:flex; gap:10px; align-items:center; justify-content:center;
  padding:26px 0 10px;
}
.dot{ opacity:.7; }

.toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(0,0,0,.55);
  color: var(--text);
  opacity: 0;
  pointer-events:none;
  transition: opacity .2s ease;
}

@media (max-width: 980px){
  .hero{ grid-template-columns: 1fr; }
  .projects{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .hero h1{ font-size:30px; }
}
