/* Team Page Styles */

.page-hero {
  padding-top: 120px;
  padding-bottom: 60px;
  background: var(--gradient-hero);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.page-hero .section-label {
  margin-bottom: 12px;
}

.page-hero-title {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
  font-family: "Outfit", sans-serif;
  line-height: 1.3;
}

.page-hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary, #b0b0b0);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.team-section {
  padding: 80px 0;
}

/* CEO Card - Centered Single Card */
.team-grid-ceo {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 400px;
  margin: 0 auto 80px;
}

/* Executive Team - 3 Cards Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 100px;
}

/* Specialists Grid - Centered Single Card */
.specialists-grid {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 400px;
  margin: 60px auto 0;
}

.team-card {
  background: linear-gradient(
    135deg,
    var(--surface-dark, #1a1a1a) 0%,
    var(--surface-darker, #0f0f0f) 100%
  );
  border: 1px solid var(--border-color, rgba(255, 255, 255, 0.1));
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  border-color: var(--accent-color, #00d4ff);
  box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
  transform: translateY(-8px);
}

.team-card-image-wrapper {
  width: 100%;
  height: 280px;
  background: linear-gradient(
    135deg,
    var(--accent-color, #00d4ff) 0%,
    var(--accent-purple, #9d4edd) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    transparent 0%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.team-card-image-placeholder {
  font-size: 80px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  z-index: 0;
}

.team-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  position: relative;
}

.team-card-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.team-card-name {
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.team-card-role {
  font-size: 14px;
  color: var(--accent-color, #00d4ff);
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.team-card-bio {
  font-size: 14px;
  color: var(--text-secondary, #b0b0b0);
  line-height: 1.6;
  flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-section {
    padding: 60px 0;
  }

  .team-grid-ceo {
    margin-bottom: 60px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 80px;
  }

  .specialists-grid {
    max-width: 100%;
    margin: 40px auto 0;
  }

  .team-card-image-wrapper {
    height: 240px;
  }

  .team-card-image-placeholder {
    font-size: 60px;
  }
}
