/* ============ ABOUT PAGE ============ */

.nav-link-active {
  color: #000;
}
.nav-link-active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
}

/* ---------- HERO ---------- */
.about-hero-heading {
  font-family: 'Switzer', ui-sans-serif, system-ui, sans-serif;
}
.about-hero-line {
  padding-bottom: 0.05em;
}
.about-hero-word {
  will-change: transform;
}
.about-hero-sub,
.about-hero-copy,
.about-trophy-wrap {
  opacity: 0;
}
.about-trophy {
  will-change: transform, opacity;
}

/* ---------- MOMENTUM / WINS STACK ---------- */
.momentum-heading {
  font-family: 'Switzer', ui-sans-serif, system-ui, sans-serif;
}
.wins-word {
  font-family: 'Switzer', ui-sans-serif, system-ui, sans-serif;
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}
#momentum-outro {
  opacity: 0;
  transform: translateY(14px);
  will-change: transform, opacity;
}

/* ---------- CATEGORY LEADERS (dark) ---------- */
#leaders {
  font-family: 'Switzer', ui-sans-serif, system-ui, sans-serif;
}
.leaders-reveal {
  opacity: 0;
  transform: translateY(24px);
}
.logo-mark--dark {
  color: #fff;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.logo-mark--dark:hover {
  opacity: 1;
}
#leaders-list-a a,
#leaders-list-b a {
  color: inherit;
}

/* ---------- FOUNDER-LED STUDIO (orange section) ---------- */
#studio {
  background-color: #ec6a2d; /* base orange, matches the reference section */
}
.team-bg {
  background-color: #ec6a2d;
  transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  pointer-events: none;
}
.team-reveal {
  opacity: 0;
  transform: translateY(24px);
}

/* founder cards */
.founder-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founder-card-photo {
  aspect-ratio: 3 / 4;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.1);
}
.founder-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.15);
}
.founder-card-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.founder-card-role {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.55);
}

/* team name list */
.team-name-link {
  position: relative;
  width: fit-content;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.85);
  cursor: pointer;
  transition: color 0.35s ease, opacity 0.35s ease;
}
.team-roster .team-name-link {
  opacity: 0.55;
}
.team-roster .team-name-link:hover {
  opacity: 0.85;
}
.team-name-link.is-active {
  opacity: 1 !important;
  color: #000;
  font-weight: 600;
}

/* illustration + role/name click-reveal stage */
.team-stage {
  height: 300px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .team-stage { height: 360px; }
}
.team-stage-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.team-stage-hint.is-hidden {
  opacity: 0;
}
.team-stage-portrait {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-70px);
  will-change: transform, opacity;
}
.team-stage-portrait.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.team-stage-portrait svg {
  width: 70%;
  height: 70%;
}
@media (min-width: 768px) {
  .team-stage-portrait svg { width: 78%; height: 78%; }
}
.team-stage-photo {
  width: 70%;
  height: 90%;
  max-width: 260px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}
@media (min-width: 768px) {
  .team-stage-photo { width: 62%; max-width: 300px; }
}
.team-stage-role {
  position: absolute;
  right: 0;
  top: 16px;
  max-width: 240px;
  text-align: right;
}
.team-stage-role .role-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}
.team-stage-role .role-name {
  display: block;
  margin-top: 2px;
  font-family: 'Fraunces', ui-serif, Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #0b0b0b;
}
