:root{
  --bg: #0b1020;
  --bg2:#0a0f1f;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text:#e9eefc;
  --muted: rgba(233,238,252,.72);
  --line: rgba(255,255,255,.12);
  --accent:#7c5cff;
  --accent2:#33b1ff;
  --shadow: 0 18px 60px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 20% 10%, rgba(124,92,255,.25), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(51,177,255,.18), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{width:min(1050px, 92vw); margin:0 auto}

.nav{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(10,14,30,.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand{
  width:38px; height:38px; display:grid; place-items:center;
  border-radius:12px;
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(51,177,255,.8));
  box-shadow: var(--shadow);
  font-weight:800;
}
.nav-links{display:flex; gap:18px; align-items:center}
.nav-links a{color:var(--muted)}
.nav-links a:hover{color:var(--text)}

.hero{padding:64px 0 22px}
.hero-grid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
}

.pill{
  display:inline-flex;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:.2px;
}

h1{
  margin:14px 0 10px;
  font-size: clamp(42px, 4.6vw, 64px);
  line-height: 1.05;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size: 18px;
  line-height:1.6;
  max-width: 56ch;
}

.cta{display:flex; gap:12px; margin-top:18px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, rgba(124,92,255,.9), rgba(51,177,255,.8));
  box-shadow: var(--shadow);
  font-weight:700;
}
.btn:hover{transform: translateY(-1px)}
.btn.ghost{
  background: rgba(255,255,255,.05);
  box-shadow:none;
}
.btn.small{padding:8px 10px; border-radius:12px; font-weight:700}

.quick{
  margin-top:18px;
  display:grid;
  gap:10px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 650px){
  .quick{grid-template-columns:1fr}
}
.quick-item{
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:16px;
}
.k{color:var(--muted); font-size:12px; text-transform:uppercase; letter-spacing:.12em}
.v{margin-top:4px; font-weight:650}

.section{padding:48px 0}
.section-head{display:flex; justify-content:space-between; gap:16px; align-items:baseline; flex-wrap:wrap}
h2{margin:0 0 14px; font-size:26px}
.muted{color:var(--muted)}

.card{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.035));
  border-radius:22px;
  padding:18px;
  box-shadow: 0 20px 70px rgba(0,0,0,.22);
}

.profile img{
  width:100%;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.14);
  display:block;
}
.profile-meta{margin-top:14px}
.profile-name{font-weight:800; font-size:18px}
.profile-title{color:var(--muted); margin-top:4px}
.profile-links{display:flex; flex-wrap:wrap; gap:8px; margin-top:14px}
.chip{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding:8px 10px;
  border-radius:999px;
  color:var(--muted);
  font-weight:600;
}
.chip:hover{color:var(--text)}

.grid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 820px){
  .grid{grid-template-columns:1fr}
}
.tile{transition: transform .12s ease, background .12s ease}
.tile:hover{transform: translateY(-2px); background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04))}
.tile-top{display:flex; justify-content:space-between; gap:10px; align-items:center}
.tile-title{font-weight:800}
.tag{
  font-size:12px;
  color: rgba(233,238,252,.85);
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(124,92,255,.18);
}

.contact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.biglink{font-size:18px; font-weight:800}
.biglink:hover{text-decoration: underline}
.contact-actions{display:flex; gap:10px; flex-wrap:wrap}

.footer{padding:26px 0 40px}
.footer-inner{display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap; border-top:1px solid var(--line); padding-top:18px}
