:root {
  --bg: #0b0b0f;
  --panel: #111118;
  --border: rgba(255,255,255,0.08);
  --text: #f5f5f7;
  --muted: #a1a1aa;
  --pink: #ff4d8d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, sans-serif;
  background: radial-gradient(800px 400px at 50% -10%, rgba(255,77,141,.25), transparent 60%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
}

nav {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(11,11,15,.7);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-brand {
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.hero {
  padding: 120px 0 80px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.hero p {
  margin-top: 18px;
  max-width: 640px;
  font-size: 1.1rem;
  color: var(--muted);
}

section {
  padding: 90px 0;
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(2, 1fr);
}

.grid.three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 0.95rem;
}

.card ul {
  margin-left: 18px;
  margin-top: 10px;
}

.people {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.person {
  display: flex;
  gap: 18px;
  align-items: center;
}

.person img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  color: var(--muted);
  font-size: 0.85rem;
}
