:root {
  --bg: #05050a;
  --bg-elev: #0c0c14;
  --text: #f5f7fa;
  --muted: #9aa3b2;
  --cyan: #00d2ff;
  --purple: #9d50bb;
  --grad: linear-gradient(135deg, #00d2ff 0%, #5b7cfa 45%, #9d50bb 100%);
  --radius: 18px;
  --max: 960px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--text); }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(900px 500px at 15% -10%, rgba(0,210,255,0.12), transparent 60%),
    radial-gradient(700px 420px at 90% 0%, rgba(157,80,187,0.14), transparent 55%),
    var(--bg);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
header {
  padding: 1.25rem 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
header a { color: var(--muted); font-size: 0.95rem; }
header a:hover { color: var(--text); }
main { flex: 1; padding: 0.5rem 0 3rem; }
.hero { text-align: center; margin: 1.25rem 0 2.5rem; }
.hero-logo-link { display: inline-block; margin: 0 auto 1.5rem; }
.hero-logo {
  display: block;
  width: min(280px, 72vw);
  height: auto;
  margin-inline: auto;
}
.hero h1 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.hero p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.section-label {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 720px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.tile {
  background: var(--bg-elev);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.25rem 1rem 1rem;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.tile:hover { border-color: rgba(0,210,255,0.35); transform: translateY(-2px); }
.tile img {
  width: 64px; height: 64px; object-fit: contain; border-radius: 16px;
  display: block; margin: 0 auto 0.85rem;
  background: #000;
}
.tile .name { font-size: 0.95rem; font-weight: 500; }
.tile .badge {
  display: inline-block; margin-top: 0.45rem; font-size: 0.72rem;
  color: #cbb6ff; letter-spacing: 0.06em; text-transform: uppercase;
}
footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-row {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  align-items: center; justify-content: space-between;
}
.socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.socials a:hover { color: var(--text); }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
