:root {
  --bg: #0b0b0b;
  --panel: #0f0f0f;
  --muted: #9b9b9b;
  --accent: #26D07A; /* green */
  --white: #fff;
  --glass: rgba(255,255,255,0.04);
  --transition: 400ms cubic-bezier(.2,.9,.2,1);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* About-specific styles */
.section {
  padding: 80px 6vw;
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.about-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.headline {
  font-size: 44px;
  margin: 0 0 12px;
  line-height: 1.02;
  color: var(--white);
  font-weight: 800;
}

.lead {
  color: var(--muted);
  margin: 16px 0 22px;
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

.story-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-title {
  font-size: 24px;
  color: var(--white);
  margin: 40px 0 20px;
  font-weight: 700;
  text-align: center;
}

.team-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

.team-single-member {
  max-width: 800px;
  margin: 0 auto;
}

.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
  transition: transform 200ms ease;
  transform-style: preserve-3d;
  cursor: grab;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 24px;
}

.team-card:active {
  cursor: grabbing;
}

.member-image-wrap {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent);
  box-shadow: 0 0 15px var(--accent);
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}

.team-card:hover img {
  transform: scale(1.06);
}

.member-content {
  text-align: left;
}

.team-card h3 {
  font-size: 24px;
  margin: 0 0 4px;
  color: var(--white);
}

.team-card .role {
  color: var(--accent);
  font-size: 16px;
  margin-bottom: 8px;
}

.team-card .bio {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 16px;
}

.social-links {
  margin-top: 12px;
}

.social-links a {
  color: var(--white);
  text-decoration: none;
  margin-right: 12px;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  transition: background-color 0.3s, transform 0.3s;
  display: inline-block;
}

.social-links a:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  padding: 40px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.03);
  color: var(--muted);
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 850px) {
  .team-card {
    flex-direction: column;
    text-align: center;
  }

  .member-content {
    text-align: center;
  }

  .social-links {
    margin-top: 20px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 40px 4vw;
  }
}