/* About Page Styles */
.about-page {
  padding: 8rem 1.5rem 4rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Hero */
.about-hero {
  margin-bottom: 3rem;
  text-align: center;
}

.about-hero-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.about-hero-header h1 svg {
  color: var(--orchid);
}

.about-tagline {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Marquee override for icon-only items */
.about-marquee {
  margin-top: 2rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.about-marquee .marquee-track {
  animation-duration: 40s;
}

.marquee-item-icon {
  padding: 0.5rem 0.75rem;
  gap: 0;
}

/* Mobile static platform icons */
.about-platforms-mobile {
  display: none;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
}

/* Sections */
.about-section {
  margin-bottom: 2.5rem;
}

.about-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.about-section h2 svg {
  color: var(--orchid);
}

/* Cards */
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
}

.about-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: team-counter;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  counter-increment: team-counter;
  overflow: hidden;
}

.team-card::before {
  content: counter(team-counter);
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-primary);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--orchid);
  box-shadow: 0 12px 32px rgba(217, 70, 239, 0.1);
}

.team-card:hover::before {
  opacity: 0.12;
}

.team-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  border-color: var(--orchid);
  box-shadow: 0 0 0 4px rgba(217, 70, 239, 0.15);
}

.team-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-button);
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
}

.team-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.125rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--orchid);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.team-bio {
  flex: 1;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.about-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all 0.2s;
}

.about-social-link:hover {
  border-color: var(--orchid);
  color: var(--orchid);
  transform: translateY(-2px);
}

/* Skills / Built With */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}

.skill-tag {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 639px) {
  .about-page {
    padding: 6rem 1rem 3rem;
  }

  .about-marquee-desktop {
    display: none;
  }

  .about-platforms-mobile {
    display: flex;
  }

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