:root{
  --bg:#0b1220;
  --surface:#0f1a2e;
  --card:#111f36;
  --text:#f2f6ff;
  --muted:#b7c4dd;
  --brand:#22c55e;
  --brand2:#16a34a;
  --accent:#60a5fa;
  --border:rgba(242,246,255,.12);
  --shadow:0 14px 40px 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, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background:
    radial-gradient(900px 560px at 10% 10%, rgba(34,197,94,.18), transparent 60%),
    radial-gradient(980px 620px at 90% 20%, rgba(96,165,250,.16), transparent 60%),
    radial-gradient(980px 620px at 70% 100%, rgba(34,197,94,.08), transparent 60%),
    linear-gradient(180deg, #070b14, var(--bg));
  line-height:1.55;
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto;}
.section{padding:28px 0 46px 0}
.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.pad{padding:18px}
.muted{color:var(--muted)}
.small{font-size:13px}
h1,h2,h3{letter-spacing:-.6px}
h1{font-size:clamp(28px, 3.2vw, 44px); line-height:1.05; margin:14px 0 10px 0}
h2{font-size:clamp(20px, 2.2vw, 30px); margin:0 0 10px 0}
h3{font-size:16px; margin:0 0 8px 0}

header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background:rgba(7,11,20,.6);
  border-bottom:1px solid rgba(242,246,255,.08);
}
.topbar{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px; flex-wrap:wrap}
.brand{display:flex; align-items:center; gap:14px; text-decoration:none}
.brand img{width:92px;height:92px; object-fit:contain; filter:drop-shadow(0 10px 20px rgba(0,0,0,.35))}
.brand .txt{display:flex; flex-direction:column; line-height:1.15}
.brand strong{font-size:30px; font-weight:1000}
.brand span{font-size:13px; font-weight:750; color:var(--muted)}

.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.28);
  background:rgba(34,197,94,.12);
  font-weight:900;
  font-size:14px;
}

.hero{padding:34px 0 10px 0}
.stack{display:grid; gap:14px}
.search-card{padding:22px}
.search-title p{margin:6px 0 0 0}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:11px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  text-decoration:none;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{transform: translateY(-1px); background:rgba(255,255,255,.05); border-color:rgba(242,246,255,.20)}
.btn:active{transform:none}
.btn.primary{
  background:linear-gradient(180deg, rgba(34,197,94,.95), rgba(22,163,74,.95));
  border-color:rgba(34,197,94,.42);
}
.btn.primary:hover{border-color:rgba(34,197,94,.6)}

.searchbox{
  display:flex; gap:10px; flex-wrap:wrap;
  margin-top:14px;
}
.input{
  flex:1 1 360px;
  display:flex; align-items:center;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(242,246,255,.14);
  background:rgba(255,255,255,.02);
}
.input input{
  width:100%;
  border:0;
  outline:none;
  background:transparent;
  color:var(--text);
  font-size:15px;
}
.input input::placeholder{color:rgba(183,196,221,.8)}

.results{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.result{
  padding:14px;
  border-radius:16px;
  border:1px solid rgba(242,246,255,.10);
  background:rgba(255,255,255,.02);
}
.result .name{font-weight:1000}
.meta{display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; color:var(--muted); font-size:13px; font-weight:700}
.meta a{color:var(--text); text-decoration:underline; text-decoration-color:rgba(242,246,255,.25)}
.meta a:hover{text-decoration-color:rgba(34,197,94,.6)}

.info-side ul{margin:10px 0 0 0; padding-left:18px; color:var(--muted)}
.info-side li{margin:6px 0}

.team-grid{display:grid; grid-template-columns: repeat(4, 1fr); gap:12px; margin-top:14px}
.person{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(242,246,255,.10);
  background:rgba(255,255,255,.02);
}
.avatar{
  width:100%;
  aspect-ratio:4/3;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(242,246,255,.10);
  background:rgba(255,255,255,.03);
}
.avatar img{width:100%; height:100%; object-fit:cover}
.person .name{font-weight:1000; margin-top:10px}
.person .role{color:var(--muted); font-weight:800; font-size:13px; margin-top:2px}

footer{
  padding:26px 0 40px 0;
  border-top:1px solid rgba(242,246,255,.08);
  background:rgba(7,11,20,.6);
}
.foot{display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap}
.foot .left{display:flex; align-items:center; gap:10px}
.foot img{width:48px;height:48px; object-fit:contain}
.copy{color:rgba(183,196,221,.85); font-weight:800; font-size:12px}

@media (max-width:640px){
  .brand img{width:78px;height:78px}
  .brand strong{font-size:18px}
  .badge{font-size:13px}
  .team-grid{grid-template-columns:1fr}
}
@media (min-width:641px) and (max-width:980px){
  .team-grid{grid-template-columns: repeat(2, 1fr);}
}
