/* The BIO Mentor — shared styles */
body {
  background-color: #FAFAF8;
  color: #111820;
  font-family: 'Outfit', sans-serif;
}
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.icon-fill {
  font-variation-settings: 'FILL' 1;
}
.hairline-grid {
  display: grid;
  gap: 3px;
  background-color: #E5E5E0;
}
.hairline-grid > * {
  background-color: #F4F4F0;
}
.logo-text {
  background: linear-gradient(to bottom, #0DB763, #0A9451);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
nav a.active {
  color: #0DB763 !important;
  font-weight: 700;
}
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.glow-phrase {
  transition: color 0.6s ease, text-shadow 0.6s ease;
}
.glow-phrase.lit {
  color: #0A9451;
  text-shadow: 0 0 10px rgba(13, 183, 99, 0.45);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .glow-phrase.lit {
    transition: none !important;
  }
}
.testimonial-columns-mask {
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}
.testimonial-col-track {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 22rem;
  animation-name: testimonial-scroll;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes testimonial-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-col-track {
    animation: none;
  }
  .testimonial-col-track [aria-hidden="true"] {
    display: none;
  }
}
.logo-carousel-mask {
  -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.logo-carousel-track {
  width: max-content;
  animation: logo-carousel 26s linear infinite;
}
@keyframes logo-carousel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-carousel-track {
    animation: none;
  }
  .logo-carousel-track [aria-hidden="true"] {
    display: none;
  }
}
