:root{
  --bg:#050a14;
  --panel:#0b1220;
  --text:#e5e7eb;
  --muted:#a5b4fc;
  --muted2:#9ca3af;
  --line:rgba(255,255,255,.10);
  --accent:#38bdf8;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius:18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: radial-gradient(1000px 600px at 20% 0%, rgba(56,189,248,.12), transparent 55%),
              radial-gradient(900px 550px at 80% 10%, rgba(167,139,250,.10), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(5,10,20,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:16px;
}
.brand{display:flex; gap:12px; align-items:center; text-decoration:none}
.logo{
  width:40px; height:40px; border-radius:14px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.07);
  border:1px solid var(--line);
  font-weight:700;
}
.brand small{display:block; color:var(--muted2); font-size:12px; margin-top:2px}
.links{display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end}
.links a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  color:rgba(229,231,235,.9);
}
.links a:hover{background:rgba(255,255,255,.06)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px; text-decoration:none;
  padding:11px 14px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.06);
}
.btn:hover{background:rgba(255,255,255,.10)}
.btn.primary{
  background:#fff; color:#0b1220;
  border-color: rgba(255,255,255,.85);
}
.btn.primary:hover{filter:brightness(.95)}
.hero{
  padding:54px 0 30px;
  border-bottom:1px solid var(--line);
}
.heroGrid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
@media (max-width: 900px){
  .heroGrid{grid-template-columns:1fr}
}
.kicker{
  display:inline-flex; align-items:center; gap:10px;
  font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:rgba(229,231,235,.9);
  padding:7px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--accent); box-shadow: 0 0 0 6px rgba(56,189,248,.12)}
h1{margin:16px 0 0; font-size:44px; line-height:1.1}
@media (max-width: 520px){ h1{font-size:34px} }
.lead{margin:14px 0 0; color:rgba(229,231,235,.88); font-size:18px; max-width:60ch}
.actions{margin-top:18px; display:flex; gap:12px; flex-wrap:wrap}
.panel{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.profile{
  padding:18px;
  display:grid; gap:14px;
}
.profileTop{display:flex; gap:14px; align-items:center}
.avatar{
  width:74px; height:74px; border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  overflow:hidden;
}
.avatar img{width:100%; height:100%; object-fit:cover}
.profile h2{margin:0; font-size:18px}
.profile p{margin:4px 0 0; color:rgba(229,231,235,.80); font-size:13px}
.meta{display:grid; gap:10px; margin-top:8px}
.metaRow{
  display:flex; justify-content:space-between; gap:10px;
  font-size:13px; color:rgba(229,231,235,.86);
  border-top:1px dashed rgba(255,255,255,.10);
  padding-top:10px;
}
.metaRow span{color:var(--muted2)}
.section{padding:46px 0}
.section h3{margin:0; font-size:26px}
.section p.note{color:rgba(229,231,235,.78); margin:10px 0 0; max-width:75ch}
.grid{
  margin-top:18px;
  display:grid; gap:14px;
  grid-template-columns: repeat(12, 1fr);
}
.card{
  grid-column: span 6;
  padding:18px;
}
@media (max-width: 900px){ .card{grid-column: span 12;} }
.card h4{margin:0; font-size:16px}
.card p{margin:8px 0 0; color:rgba(229,231,235,.80); font-size:14px}
.badges{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.badge{
  padding:10px 12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.badge small{display:block; color:var(--muted2); font-size:12px}
.badge strong{display:block; margin-top:4px; font-size:13px}

.list{
  margin-top:16px;
  display:grid; gap:10px;
}
.item{
  padding:14px 16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  border-radius:16px;
}
.itemTop{display:flex; gap:10px; justify-content:space-between; align-items:baseline; flex-wrap:wrap}
.itemTop strong{font-size:14px}
.itemTop em{font-style:normal; color:var(--muted2); font-size:13px}
.item a{color:var(--accent); text-decoration:none}
.item a:hover{text-decoration:underline}
.split{
  display:grid; gap:14px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px){ .split{grid-template-columns:1fr} }

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:rgba(229,231,235,.70);
  font-size:12px;
}
