:root {
  --bg: #0b1020;
  --card: #121a30;
  --text: #e8ecf8;
  --muted: #9aa6c5;
  --brand: #6ea8fe;
  --brand-2: #8b7bff;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, #22315c 0%, transparent 50%),
    radial-gradient(900px 500px at 90% 0%, #2b2268 0%, transparent 45%),
    var(--bg);
}
.container { width: min(1120px, 92%); margin: 0 auto; }
.row { display: flex; }
.between { justify-content: space-between; }
.center { align-items: center; }
.topbar {
  position: sticky; top: 0; z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(11,16,32,.75);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.logo { color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .5px; }
.logo span { color: var(--brand); }
.nav a { color: var(--muted); text-decoration: none; margin-left: 1rem; font-weight: 600; }
.nav a:hover { color: #fff; }
.hero { padding: 5.5rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 2rem; }
.pill {
  display: inline-block; margin: 0 0 .75rem;
  background: rgba(110,168,254,.15); color: #cce0ff;
  border: 1px solid rgba(110,168,254,.4);
  border-radius: 999px; padding: .35rem .7rem; font-size: .85rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.08; margin: 0 0 .9rem; }
h1 span { color: var(--brand); }
.lead { color: var(--muted); max-width: 60ch; }
.actions { margin-top: 1.3rem; display: flex; gap: .8rem; }
.btn {
  text-decoration: none; display: inline-block; padding: .8rem 1.1rem;
  border-radius: 12px; font-weight: 700; border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(90deg,var(--brand),var(--brand-2)); color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; }
.stats { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; }
.stats div { background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: .7rem; }
.stats strong { display: block; font-size: 1.2rem; }
.stats span { color: var(--muted); font-size: .85rem; }
.section { padding: 3.2rem 0; }
.section h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0 0 1rem; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.card {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 1rem;
}
.profile img { width: 100%; border-radius: 12px; height: 230px; object-fit: cover; }
.card p { color: var(--muted); }
.card small { color: #c7d0ea; }
.alt { background: rgba(255,255,255,.03); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); }
.chips { display: flex; flex-wrap: wrap; gap: .6rem; }
.chips span { padding: .5rem .75rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #d8e0f9; }
.contact { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.footer { padding: 1rem 0 1.6rem; color: var(--muted); }
@media (max-width: 900px){
  .hero-grid, .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .contact { flex-direction: column; align-items: flex-start; }
}
