.container {
  min-height: calc(100vh - 75px);
  padding: 4rem 2rem;
  background: var(--background);
  color: var(--text-main);
  max-width: 1200px;
  margin: 0 auto;
}

.heroSection {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeIn 0.8s ease-out;
}

.title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
}

.highlight {
  color: var(--accent-color);
  background: linear-gradient(135deg, var(--accent-color) 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme='crywolf'] .highlight {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2ecc71 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.statsSection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
  animation: slideUp 0.8s ease-out 0.2s both;
}

.statCard {
  background: color-mix(in srgb, var(--secondary-bg) 50%, transparent);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.statCard:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.statCard:active {
  transform: translateY(-2px) scale(0.97);
}

.statValue {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin: 0 0 0.5rem 0;
}

.statLabel {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.featuresSection {
  animation: slideUp 0.8s ease-out 0.4s both;
}

.sectionTitle {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

.featuresGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.featureCard {
  background: color-mix(in srgb, var(--secondary-bg) 30%, transparent);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.featureCard:hover {
  background: color-mix(in srgb, var(--secondary-bg) 60%, transparent);
  border-color: color-mix(in srgb, var(--accent-color) 50%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.featureCard:active {
  transform: translateY(-2px) scale(0.97);
}

.iconWrapper {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color) 15%, transparent);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.featureCard h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.featureCard p {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .container {
    padding: 2rem 1rem;
  }
  
  .title {
    font-size: 2.5rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .statsSection {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .sectionTitle {
    font-size: 2rem;
  }
}
