:root {
  --bg:#0b0f14;
  --panel:#0f1720;
  --muted:#9aa6b2;
  --accent:#ff4d6d;
  --accent-2:#7c5cff;
  --glass:rgba(255,255,255,0.03);
  --radius:14px;
  --max-width:1100px;
  --gap:20px;
  --section-pad:48px;
  color-scheme:dark;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:Inter,system-ui;
  background:linear-gradient(180deg,var(--bg),#071018 120%);
  color:#e6eef6;
  display:flex;
  justify-content:center;
  padding:40px 20px;
}

.wrap {
  width:100%;
  max-width:var(--max-width);
  background:linear-gradient(180deg,rgba(255,255,255,0.02),rgba(0,0,0,0.03));
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(2,6,23,0.6);
  border:1px solid rgba(255,255,255,0.03);
}

.banner {
  width:100%;
  height:200px;
  background:url('pics/banner.png') center/cover no-repeat;
}

header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px;
}

.btn{display:inline-flex;align-items:center;gap:10px;padding:12px 14px;border-radius:12px;text-decoration:none;font-weight:700}
.btn-primary{background:linear-gradient(90deg,var(--accent),var(--accent-2));color:white}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,0.04);color:var(--muted)}

.brand {
  display:flex;
  align-items:center;
  gap:14px;
}

.logo {
  width:56px;
  height:56px;
  border-radius:12px;
  overflow:hidden;
}
.logo img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:12px;
}

.brand h1 { font-size:18px; margin:0; }
.brand p { margin:0; font-size:12px; color:var(--muted); }

nav {
  display:flex;
  gap:12px;
  align-items:center;
}
.nav-link {
  color:var(--muted);
  text-decoration:none;
  padding:8px 12px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
}
.nav-link:hover {
  background:var(--glass);
  color:#fff;
}

.hero {
  display:grid;
  grid-template-columns:1fr 360px;
  gap:20px;
  align-items:start;
  margin:var(--section-pad);
}

.card {
  background:linear-gradient(180deg,rgba(255,255,255,0.015),rgba(0,0,0,0.03));
  padding:22px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.02);
}

.partners {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}
.partner a {
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.02);
  padding:10px 14px;
  border-radius:10px;
  font-weight:600;
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
  transition:0.2s;
}
.partner a:hover {
  background:rgba(255,255,255,0.06);
  color:#fff;
}
.partner img {
  height:32px;
  width:auto;
  filter:grayscale(100%) brightness(0.8);
  transition:filter 0.2s;
}
.partner a:hover img {
  filter:grayscale(0%) brightness(1);
}

.staff-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:12px;
}
.staff {
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar {
  width:56px;
  height:56px;
  border-radius:10px;
  overflow:hidden;
  background:linear-gradient(135deg,#15202b,#0b1220);
}
.avatar img {
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:10px;
}

footer {
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--muted);
  font-size:13px;
  padding:20px;
}

@media(max-width:900px) {
  .hero { grid-template-columns:1fr; }
}
@media(max-width:560px) {
  .staff-grid { grid-template-columns:1fr; }
}
