/* ================================================================
   TAP TAP TEC — About Page Styles (about.css)
   ================================================================ */

.about-hero {
  padding: 140px 6% 80px;
  border-bottom: 1px solid var(--purple-border);
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.about-hero-logo img {
  width: 200px;
  filter: drop-shadow(0 0 40px rgba(232,25,122,0.25));
}

/* Mission */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 0;
}
.mission-card {
  background: var(--purple-deep);
  border: 1px solid var(--purple-border);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s, transform 0.2s;
}
.mission-card:hover { border-color: rgba(232,25,122,0.4); transform: translateY(-4px); }
.mission-icon { font-size: 28px; margin-bottom: 16px; }
.mission-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.mission-card p { color: var(--muted); font-size: 15px; line-height: 1.75; font-weight: 300; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
  gap: 24px;
  margin-top: 56px;
}
.team-card {
  background: var(--purple-mid);
  border: 1px solid var(--purple-border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.team-card:hover { border-color: rgba(232,25,122,0.4); transform: translateY(-4px); }
.team-photo-wrap {
  height: 200px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-light));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}
.team-photo-placeholder {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder span {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800; color: #fff;
}
.team-info { padding: 24px; }
.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.team-role {
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
}
.team-bio { color: var(--muted); font-size: 14px; line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.team-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--purple-deep);
  border: 1px solid var(--purple-border);
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.team-social-link:hover { border-color: #0A66C2; color: #5BA3D4; }

/* Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.pillar {
  padding: 32px;
  background: var(--purple-deep);
  border: 1px solid var(--purple-border);
  border-radius: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.pillar:hover { border-color: rgba(232,25,122,0.4); transform: translateY(-4px); }
.pillar-num {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 2px; color: var(--pink-light); margin-bottom: 16px;
}
.pillar h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px; font-weight: 700;
  margin-bottom: 12px; color: var(--text);
}
.pillar p { color: var(--muted); font-size: 14px; line-height: 1.75; font-weight: 300; }

@media (max-width: 760px) {
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-logo  { display: none; }
  .about-hero { padding: 120px 4% 60px; }
}
