/* About Section - Unified tracks + stats */

.about-section {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 3vw;
  position: relative;
  z-index: 10;
}

/* Cards Grid - Now inside about-section */
.about-section .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5vw;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 10;
  align-items: stretch;
}

/* Stats Section - Compact inline */
.about-stats {
  text-align: center;
  padding: 1.25rem 2rem;
  margin-top: 1rem;
  margin-bottom: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
}

.stats-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 20px var(--primary-glow);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  opacity: 0.75;
}

.stats-subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.8;
  margin-top: 0.75rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* Card styling in about section */
.about-section .card {
  overflow: visible;
}

.about-section .card-text {
  word-wrap: break-word;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .about-section {
    padding: 0 4vw;
  }

  .about-section .cards-grid {
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 0 16px;
    margin: 0.5rem auto;
  }

  .about-section .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-stats {
    padding: 1rem;
    margin-top: 1rem;
  }

  .stats-grid {
    gap: 1.25rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 0 12px;
  }

  .about-section .cards-grid {
    gap: 0.8rem;
  }

  .stats-grid {
    gap: 1rem 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.55rem;
  }
}

