/* ===== Secao Equipe - Iteracao 3 | Ultra-Premium ===== */

/* ===== BASE & BACKGROUND ===== */

.team-contributors {
  position: relative;
  overflow: hidden;
  padding: 140px 0 40px;
  background: #000000;
}

/* Noise texture overlay */
.team-contributors::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

/* ===== ANIMATED BACKGROUND ORBS ===== */

.team-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
  will-change: transform, opacity;
}

.team-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.12), transparent 70%);
  top: -10%;
  left: -5%;
  animation: orbFloat1 18s ease-in-out infinite;
}

.team-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.08), transparent 70%);
  bottom: 5%;
  right: -8%;
  animation: orbFloat2 22s ease-in-out infinite;
}

.team-orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(58, 168, 118, 0.06), transparent 70%);
  top: 45%;
  left: 40%;
  animation: orbFloat3 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
  33% { transform: translate(60px, 40px) scale(1.1); opacity: 1; }
  66% { transform: translate(-30px, 70px) scale(0.95); opacity: 0.8; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
  33% { transform: translate(-50px, -30px) scale(1.05); opacity: 0.9; }
  66% { transform: translate(40px, -60px) scale(0.9); opacity: 0.7; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(30px, -40px) scale(1.15); opacity: 0.8; }
}

/* ===== GRID PATTERN OVERLAY ===== */

.team-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(66, 185, 131, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(66, 185, 131, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 80%);
}

/* ===== SECTION LABEL ===== */

.team-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(66, 185, 131, 0.06);
  border: 1px solid rgba(66, 185, 131, 0.12);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.label-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  animation: dotPulse 2.5s ease-in-out infinite;
}

.label-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(66, 185, 131, 0.4);
  animation: dotRing 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

@keyframes dotRing {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.6); opacity: 0; }
}

/* ===== TITLE ===== */

.contributors-title {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 18px;
  color: #ffffff;
  display: block;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
  line-height: 1.15;
  -webkit-text-fill-color: unset;
}

.title-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 40%, var(--primary-color) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShimmer 6s linear infinite;
  position: relative;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  border-radius: 2px;
  opacity: 0.5;
}

@keyframes titleShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.contributors-subtitle {
  font-size: 18px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

/* ===== FOUNDER HIGHLIGHT ===== */

.founder-highlight {
  position: relative;
  z-index: 1;
  margin-bottom: 64px;
  border-radius: 28px;
  padding: 2px;
}

/* Animated gradient border */
.founder-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    rgba(66, 185, 131, 0.5) 10%,
    transparent 20%,
    transparent 50%,
    rgba(66, 185, 131, 0.3) 60%,
    transparent 70%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 8s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.founder-highlight:hover .founder-border-glow {
  opacity: 1;
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes borderRotate {
  to { --glow-angle: 360deg; }
}

/* Fallback for browsers that don't support @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .founder-border-glow {
    background: linear-gradient(135deg, rgba(66, 185, 131, 0.3), transparent 50%, rgba(66, 185, 131, 0.2));
  }
}

/* Inner container */
.founder-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(155deg, #080808 0%, #0d0d0d 50%, #0a0a0a 100%);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-highlight:hover .founder-inner {
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 100px rgba(66, 185, 131, 0.06);
}

/* ===== FOUNDER PHOTO ===== */

.founder-photo-wrap {
  flex: 0 0 360px;
  width: 360px;
  position: relative;
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.08) saturate(0.8) brightness(0.93);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-highlight:hover .founder-photo img {
  transform: scale(1.05);
  filter: contrast(1.08) saturate(1) brightness(1);
}

/* Gradient overlay on photo */
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, transparent 50%, #0d0d0d),
    linear-gradient(to top, rgba(0,0,0,0.4), transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* Decorative ring inside photo area */
.founder-photo-ring {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(66, 185, 131, 0.15);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.founder-highlight:hover .founder-photo-ring {
  opacity: 1;
  transform: scale(1.1);
}

/* Founder badge corner */
.founder-badge-corner {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: rgba(66, 185, 131, 0.9);
  backdrop-filter: blur(12px);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 8px;
  z-index: 3;
  box-shadow:
    0 4px 20px rgba(66, 185, 131, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.founder-badge-corner i {
  font-size: 10px;
}

/* Decorative accent line */
.founder-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), rgba(66, 185, 131, 0.3), transparent);
  z-index: 3;
}

/* ===== FOUNDER INFO ===== */

.founder-info {
  flex: 1;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.founder-info-top {
  margin-bottom: 4px;
}

/* ===== SHARED ELEMENTS ===== */

/* Role badge */
.team-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(66, 185, 131, 0.08);
  border: 1px solid rgba(66, 185, 131, 0.12);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}

.team-role-badge i {
  font-size: 12px;
  opacity: 0.8;
}

/* Member name */
.team-member-name {
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.founder-name {
  font-size: 40px;
  background: linear-gradient(135deg, #ffffff 30%, #c0c0c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-card .team-member-name {
  font-size: 20px;
}

/* Tags */
.team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 600;
  border-radius: 5px;
  letter-spacing: 0.3px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
}

.team-tag i {
  font-size: 10px;
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.founder-highlight:hover .team-tag,
.team-card:hover .team-tag {
  border-color: rgba(66, 185, 131, 0.15);
  color: rgba(255, 255, 255, 0.6);
  background: rgba(66, 185, 131, 0.05);
}

.founder-highlight:hover .team-tag i,
.team-card:hover .team-tag i {
  opacity: 1;
  color: var(--primary-color);
}

/* Bio */
.team-member-bio {
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin: 0;
}

.founder-info .team-member-bio {
  font-size: 15px;
  max-width: 560px;
}

.team-card .team-member-bio {
  font-size: 13.5px;
  line-height: 1.7;
}

/* ===== FOUNDER STATS BAR ===== */

.founder-stats-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.founder-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.founder-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.founder-stat-number {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.founder-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* ===== TEAM DIVIDER ===== */

.team-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 185, 131, 0.2), transparent);
}

.divider-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  background: rgba(66, 185, 131, 0.06);
  border: 1px solid rgba(66, 185, 131, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

.divider-badge i {
  font-size: 12px;
  color: var(--primary-color);
  opacity: 0.7;
}

/* ===== TEAM GRID ===== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

/* ===== TEAM CARD ===== */

.team-card {
  position: relative;
  border-radius: 20px;
  padding: 2px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover {
  transform: translateY(-10px);
}

/* Animated glow border on cards */
.card-glow-border {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(
    from var(--glow-angle, 0deg),
    transparent 0%,
    rgba(66, 185, 131, 0.4) 8%,
    transparent 16%,
    transparent 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 8s linear infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-card:hover .card-glow-border {
  opacity: 1;
}

/* Card inner styling (applied directly to photo/info since there's no inner wrapper) */
.team-card-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
  background: #080808;
  border-radius: 18px 18px 0 0;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.8) brightness(0.9);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.team-card:hover .team-card-photo img {
  transform: scale(1.08);
  filter: contrast(1.05) saturate(1) brightness(1);
}

/* Gradient on card photo */
.team-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(8, 8, 8, 0.8));
  pointer-events: none;
  z-index: 1;
}

/* Social links overlay on photo (appears on hover) */
.photo-social-links {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  display: flex;
  gap: 10px;
  z-index: 2;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-card:hover .photo-social-links,
.founder-photo:hover .photo-social-links {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.social-link-btn {
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link-btn i {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link-btn:hover {
  background: rgba(66, 185, 131, 0.85);
  border-color: rgba(66, 185, 131, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(66, 185, 131, 0.3);
}

.social-link-btn:hover i {
  color: #ffffff;
}

/* Card info area */
.team-card-info {
  padding: 28px;
  position: relative;
  z-index: 1;
  background: linear-gradient(175deg, #0a0a0a, #0d0d0d);
  border-radius: 0 0 18px 18px;
}

/* Subtle top line on card info */
.team-card-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(66, 185, 131, 0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-card-info::before {
  opacity: 1;
}

/* Card hover states */
.team-card:hover .team-role-badge {
  background: rgba(66, 185, 131, 0.12);
  border-color: rgba(66, 185, 131, 0.2);
}

/* ===== TEAM CTA ===== */

.team-cta {
  background: linear-gradient(155deg, #080808, #0d0d0d);
  border-radius: 28px;
  padding: 60px 48px;
  border: 1px solid rgba(66, 185, 131, 0.1);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.team-cta:hover {
  border-color: rgba(66, 185, 131, 0.2);
}

.team-cta-glow {
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(66, 185, 131, 0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.5s ease;
}

.team-cta:hover .team-cta-glow {
  opacity: 1.5;
}

.team-cta-content {
  position: relative;
  z-index: 1;
}

.team-cta-icon {
  width: 60px;
  height: 60px;
  background: rgba(66, 185, 131, 0.08);
  border: 1px solid rgba(66, 185, 131, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s ease;
}

.team-cta:hover .team-cta-icon {
  background: rgba(66, 185, 131, 0.12);
  border-color: rgba(66, 185, 131, 0.25);
  transform: scale(1.05);
}

.team-cta-icon i {
  font-size: 26px;
  color: var(--primary-color);
}

.team-cta h4 {
  color: #ffffff;
  font-weight: 800;
  font-size: 26px;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.team-cta p {
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
  font-size: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-team-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow:
    0 4px 20px rgba(66, 185, 131, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-team-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-team-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 40px rgba(66, 185, 131, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  color: white;
}

.btn-team-cta:hover::before {
  opacity: 1;
}

.btn-team-cta i {
  transition: transform 0.3s ease;
}

.btn-team-cta:hover i {
  transform: translateX(4px);
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .founder-photo-wrap {
    flex: 0 0 320px;
    width: 320px;
  }

  .founder-name {
    font-size: 34px;
  }

  .founder-info {
    padding: 44px;
  }
}

@media (max-width: 992px) {
  .team-contributors {
    padding: 100px 0 30px;
  }

  .founder-inner {
    flex-direction: column;
  }

  .founder-photo-wrap {
    flex: none;
    width: 100%;
    height: 340px;
  }

  .founder-photo::after {
    background:
      linear-gradient(to bottom, transparent 40%, #0d0d0d),
      linear-gradient(to top, rgba(0,0,0,0.3), transparent 40%);
  }

  .founder-accent-line {
    display: none;
  }

  .founder-info {
    padding: 40px;
    text-align: center;
    align-items: center;
  }

  .founder-info .team-member-bio {
    max-width: 100%;
  }

  .founder-name {
    font-size: 30px;
  }

  .team-tags {
    justify-content: center;
  }

  .founder-stats-bar {
    justify-content: center;
  }

  .founder-stat-number {
    font-size: 22px;
  }

  .team-orb-1 { width: 400px; height: 400px; }
  .team-orb-2 { width: 300px; height: 300px; }
  .team-orb-3 { width: 250px; height: 250px; }
}

@media (max-width: 767px) {
  .team-contributors {
    padding: 80px 0 20px;
  }

  .contributors-title {
    font-size: 36px;
  }

  .contributors-subtitle {
    font-size: 15px;
  }

  .founder-photo-wrap {
    height: 280px;
  }

  .founder-info {
    padding: 28px;
  }

  .founder-name {
    font-size: 26px;
  }

  .founder-info .team-member-bio {
    font-size: 14px;
  }

  .founder-stat-number {
    font-size: 20px;
  }

  .founder-stat-label {
    font-size: 10px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .team-card-info {
    padding: 20px;
  }

  .team-card .team-member-name {
    font-size: 17px;
  }

  .team-card .team-member-bio {
    font-size: 12.5px;
  }

  .team-role-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .team-tag {
    font-size: 10px;
    padding: 3px 10px;
  }

  .team-cta {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .team-cta h4 {
    font-size: 20px;
  }

  .team-divider {
    margin-bottom: 36px;
  }

  .photo-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    bottom: 12px;
    right: 12px;
  }

  .photo-icon-badge i {
    font-size: 14px;
  }

  .team-orb-1 { width: 300px; height: 300px; }
  .team-orb-2 { width: 200px; height: 200px; }
  .team-orb-3 { display: none; }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contributors-title {
    font-size: 30px;
  }

  .founder-photo-wrap {
    height: 240px;
  }

  .founder-name {
    font-size: 24px;
  }

  .team-card {
    border-radius: 16px;
  }

  .card-glow-border {
    border-radius: 16px;
  }

  .team-card-photo {
    border-radius: 14px 14px 0 0;
  }

  .team-card-info {
    border-radius: 0 0 14px 14px;
  }

  .founder-highlight {
    border-radius: 20px;
  }

  .founder-border-glow {
    border-radius: 20px;
  }

  .founder-inner {
    border-radius: 18px;
  }

  .team-orb-1 { width: 250px; height: 250px; filter: blur(80px); }
  .team-orb-2 { display: none; }
}
