/* ── Stats & Features extra spacing ────────────── */
.stats-section,
#features {
  padding-top: clamp(2rem, 4vw, 4rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.stats-section .section-heading,
#features .section-heading {
  margin-bottom: 2.5rem;
}

/* ── Stats Section ─────────────────────────────── */

.stats-row {
  display: flex;
  justify-content: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.stat-big {
  text-align: center;
}

.stat-big strong {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--text);
  letter-spacing: -1px;
}

.stat-big p {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Creators Section ─────────────────────────── */
.creators-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0;
}

.creators-track::-webkit-scrollbar {
  display: none;
}

.creator-card {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: start;
  text-align: center;
  transition: transform 0.3s ease;
}

.creator-card:hover {
  transform: translateY(-4px);
}

.creator-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.85rem;
  border: 3px solid var(--bg-strong);
}

.creator-name {
  margin: 0;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.creator-location {
  margin: 0.15rem 0 0;
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.creator-bio {
  margin: 0.5rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ── Features Section ─────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-strong);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.feature-index {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.feature-card h4 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ── Dark mode overrides for new sections ─────── */
[data-theme="dark"] .creator-avatar {
  border-color: var(--bg-strong);
}

[data-theme="dark"] .feature-card {
  background: var(--bg-strong);
}

[data-theme="dark"] .feature-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ── Responsive ───────────────────────────────── */
@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-row {
    gap: clamp(1.5rem, 4vw, 3rem);
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .creator-card {
    width: 160px;
  }
  .creator-avatar {
    width: 100px;
    height: 100px;
  }
  .stats-row {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
