/* =========================
   Team Showcase — Aligned to Portfolio System
   ========================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0f1216;
  --surface: #151a20;
  --surface2: #1b222b;
  --text: #f3f5f7;
  --muted: rgba(243, 245, 247, 0.72);
  --border: rgba(255, 255, 255, 0.12);

  --radius: 16px;
  --radiusLg: 22px;
  --shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
}
/* Shared back navigation button (matches Pricing & Contact) */
.btnNav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f3f5f7;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
}

.btnNav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
/* Page */
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(
      900px 520px at 18% 18%,
      rgba(110, 206, 209, 0.16),
      transparent 60%
    ),
    radial-gradient(
      900px 520px at 85% 22%,
      rgba(63, 166, 163, 0.12),
      transparent 62%
    ),
    linear-gradient(180deg, var(--bg), #0b0d10);
  color: var(--text);
  line-height: 1.6;
}

/* Header */
.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.projectHeader {
  padding: 56px 0 32px;
}

.display {
  font-family: Fraunces, serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 0 0 10px;
}

.lead {
  max-width: 70ch;
  color: var(--muted);
  margin: 0;
}

/* Layout */
.demo {
  padding: 32px 20px 80px;
}

/* Team grid */
.team-grid {
  max-width: 1120px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.team-card {
  background: linear-gradient(
    180deg,
    rgba(21, 26, 32, 0.96),
    rgba(27, 34, 43, 0.94)
  );
  border-radius: var(--radiusLg);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  text-align: center;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, 0.08);
}

.team-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.team-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Supporting note */
.component-note {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 600px) {
  .team-card {
    padding: 20px;
  }
}
