:root{
  --bg:#0b0f1a;
  --panel:#10172a;
  --panel2:#0f1626;
  --text:#e7ecff;
  --muted:#aeb7d9;
  --line:rgba(231,236,255,.10);
  --accent:#7c5cff;
  --accent2:#4fe3c1;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --radius2:28px;
  --max:1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(124,92,255,.18), transparent 60%),
              radial-gradient(900px 600px at 90% 30%, rgba(79,227,193,.10), transparent 55%),
              var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.site{
  display:grid;
  grid-template-columns: 320px 1fr;
  min-height:100vh;
}

.sidebar{
  position:sticky;
  top:0;
  height:100vh;
  padding:28px 22px;
  border-right:1px solid var(--line);
  background: linear-gradient(180deg, rgba(16,23,42,.85), rgba(16,23,42,.65));
  backdrop-filter: blur(10px);
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 10px;
  border-radius:14px;
}
.brand:hover{ background:rgba(231,236,255,.04); }

.brandMark{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:14px;
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(79,227,193,.75));
  color:#0b0f1a;
  font-weight:900;
  letter-spacing:.5px;
}
.brandText{
  font-weight:800;
  letter-spacing:.2px;
}

.nav{
  margin-top:18px;
  display:flex;
  flex-direction:column;
  gap:6px;
  padding:10px 6px;
}

.navLink{
  padding:10px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:600;
}
.navLink:hover{ background:rgba(231,236,255,.04); color:var(--text); }
.navLink.isActive{
  background:rgba(124,92,255,.12);
  color:var(--text);
  border:1px solid rgba(124,92,255,.25);
}

.sidebarCta{
  margin-top:18px;
  display:grid;
  gap:10px;
  padding:10px 6px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid transparent;
  font-weight:800;
  letter-spacing:.2px;
  cursor:pointer;
  user-select:none;
}

.btnPrimary{
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(124,92,255,.55));
  color:#0b0f1a;
  box-shadow: 0 14px 30px rgba(124,92,255,.20);
}
.btnPrimary:hover{ filter:brightness(1.05); }

.btnGhost{
  background:rgba(231,236,255,.03);
  border:1px solid rgba(231,236,255,.12);
  color:var(--text);
}
.btnGhost:hover{ background:rgba(231,236,255,.05); }

.btnFull{ width:100%; }

.sidebarMeta{
  margin-top:18px;
  padding:14px 12px;
  border-radius:var(--radius);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.55);
}

.metaRow{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid rgba(231,236,255,.08);
}
.metaRow:last-child{ border-bottom:none; }

.metaLabel{ color:var(--muted); font-weight:700; }
.metaValue{ font-weight:700; }

.content{
  padding:40px 26px 80px;
}

.section{
  width:min(var(--max), 100%);
  margin:0 auto;
  padding:34px 0;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
}

.sectionTitle{
  margin:0;
  font-size:28px;
  letter-spacing:.2px;
}
.sectionKicker{
  margin:0;
  color:var(--muted);
  font-weight:600;
  max-width:560px;
  text-align:right;
}

.hero{
  padding-top:10px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap:18px;
  align-items:start;
}

.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  margin:0 0 12px 0;
  color:var(--muted);
  font-weight:800;
  letter-spacing:.25px;
  text-transform:uppercase;
  font-size:12px;
}
.eyebrow::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--accent2);
  box-shadow: 0 0 0 6px rgba(79,227,193,.12);
}

.heroTitle{
  margin:0 0 14px 0;
  font-size:46px;
  line-height:1.08;
  letter-spacing:-.6px;
}
.heroSub{
  margin:0 0 18px 0;
  color:var(--muted);
  font-weight:600;
  font-size:16px;
  line-height:1.7;
}

.heroBadges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 16px 0;
}

.badge{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(231,236,255,.10);
  background:rgba(16,23,42,.55);
  color:var(--text);
  font-weight:700;
  font-size:13px;
}

.heroActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0 0 18px 0;
}

.signal{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
.signalItem{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.50);
}
.signalValue{
  font-weight:900;
  letter-spacing:.2px;
  margin-bottom:6px;
}
.signalLabel{
  color:var(--muted);
  font-weight:600;
  font-size:13px;
  line-height:1.5;
}

.heroCard{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(231,236,255,.12);
  background: linear-gradient(180deg, rgba(16,23,42,.70), rgba(15,22,38,.75));
  box-shadow: var(--shadow);
}

.portraitWrap{
  aspect-ratio: 4 / 3;
  overflow:hidden;
  background: rgba(231,236,255,.06);
}
.portrait{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
}

.heroCardBody{ padding:18px 18px 20px; }
.name{ font-weight:900; font-size:20px; margin:2px 0 6px; }
.role{ color:var(--muted); font-weight:700; margin:0 0 14px; }

.quickList{ display:grid; gap:10px; margin:0 0 16px; }
.quickItem{ display:flex; gap:10px; align-items:flex-start; color:var(--text); font-weight:700; }
.dot{
  width:10px; height:10px; border-radius:999px;
  background:rgba(124,92,255,.95);
  margin-top:6px;
  box-shadow: 0 0 0 6px rgba(124,92,255,.10);
}

.heroCardActions{ display:grid; gap:10px; }

.marquee{
  margin-top:22px;
  padding:14px 0;
  border-top:1px solid rgba(231,236,255,.08);
  border-bottom:1px solid rgba(231,236,255,.08);
  overflow:hidden;
}
.marqueeTrack{
  display:flex;
  gap:34px;
  white-space:nowrap;
  animation: scroll 18s linear infinite;
  color:rgba(231,236,255,.75);
  font-weight:900;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:13px;
}
.marqueeTrack span{
  display:inline-flex;
  align-items:center;
  gap:34px;
}
.marqueeTrack span::after{
  content:"•";
  opacity:.65;
}

@keyframes scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.card{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.55);
}

.card h3{
  margin:0 0 10px 0;
  font-size:18px;
  letter-spacing:.2px;
}
.card p{
  margin:0 0 12px 0;
  color:var(--muted);
  font-weight:600;
  line-height:1.75;
}
.card p:last-child{ margin-bottom:0; }

.metrics{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:10px;
}
.metric{
  padding:14px;
  border-radius:var(--radius);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(16,23,42,.45);
}
.metricValue{ font-weight:900; margin-bottom:6px; }
.metricLabel{ color:var(--muted); font-weight:600; font-size:13px; line-height:1.5; }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.bullets{
  margin:12px 0 0 0;
  padding-left:18px;
  color:var(--muted);
  font-weight:650;
  line-height:1.7;
}
.bullets li{ margin:6px 0; }

.callout{
  margin-top:14px;
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(79,227,193,.22);
  background: radial-gradient(900px 200px at 20% 10%, rgba(79,227,193,.12), transparent 60%),
              rgba(15,22,38,.55);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.callout h3{ margin:0 0 8px 0; }
.callout p{ margin:0; color:var(--muted); font-weight:650; line-height:1.7; }

.timeline{
  display:grid;
  gap:12px;
}
.timelineItem{
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.55);
}
.timelineMeta{
  color:rgba(79,227,193,.95);
  font-weight:900;
  font-size:12px;
  letter-spacing:.25px;
  text-transform:uppercase;
  margin-bottom:8px;
}
.timelineItem h3{ margin:0 0 8px 0; }
.timelineItem p{ margin:0 0 10px 0; color:var(--muted); font-weight:650; line-height:1.75; }

.workGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.workCard{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.55);
  transition: transform .18s ease, border-color .18s ease;
}
.workCard:hover{
  transform: translateY(-4px);
  border-color: rgba(124,92,255,.28);
}
.workMedia{
  aspect-ratio: 16 / 10;
  background:rgba(231,236,255,.05);
}
.workMedia img{ width:100%; height:100%; object-fit:cover; }
.workBody{ padding:16px; }
.workBody h3{ margin:0 0 8px 0; }
.workBody p{ margin:0 0 10px 0; color:var(--muted); font-weight:650; line-height:1.7; }
.workLink{
  display:inline-flex;
  font-weight:900;
  color:rgba(124,92,255,.95);
}

.listCards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.listCard{
  padding:16px;
  border-radius:var(--radius2);
  border:1px solid rgba(231,236,255,.10);
  background:rgba(15,22,38,.55);
}
.listCard:hover{ border-color: rgba(79,227,193,.28); }
.listTitle{ font-weight:900; margin-bottom:6px; }
.listMeta{ color:var(--muted); font-weight:650; line-height:1.6; }

.contact .contactRow{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:12px;
  padding:10px 0;
  border-bottom:1px solid rgba(231,236,255,.08);
}
.contact .contactRow:last-of-type{ border-bottom:none; }
.contactLabel{ color:var(--muted); font-weight:800; }
.contactValue{ font-weight:900; }

.divider{
  height:1px;
  background:rgba(231,236,255,.10);
  margin:14px 0;
}

.form{
  display:grid;
  gap:12px;
}
label span{
  display:block;
  font-weight:800;
  margin-bottom:8px;
  color:var(--muted);
}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(231,236,255,.12);
  background:rgba(16,23,42,.55);
  color:var(--text);
  outline:none;
  font-weight:650;
}
input:focus, textarea:focus{
  border-color: rgba(124,92,255,.45);
  box-shadow: 0 0 0 6px rgba(124,92,255,.10);
}

.small{ font-size:13px; line-height:1.7; }
.muted{ color:var(--muted); }

.footer{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(231,236,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:rgba(231,236,255,.75);
  font-weight:650;
}

@media (max-width: 1100px){
  .site{ grid-template-columns: 300px 1fr; }
  .heroTitle{ font-size:40px; }
  .metrics{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px){
  .site{ grid-template-columns: 1fr; }
  .sidebar{
    position:relative;
    height:auto;
    border-right:none;
    border-bottom:1px solid var(--line);
  }
  .content{ padding:22px 18px 70px; }
  .heroGrid{ grid-template-columns: 1fr; }
  .sectionHead{ align-items:flex-start; }
  .sectionKicker{ text-align:left; }
  .grid3{ grid-template-columns: 1fr; }
  .twoCol{ grid-template-columns: 1fr; }
  .workGrid{ grid-template-columns: 1fr; }
  .listCards{ grid-template-columns: 1fr; }
  .signal{ grid-template-columns: 1fr; }
  .callout{ flex-direction:column; align-items:flex-start; }
}