@layer base {
  .hero {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    padding: var(--spacing-16) 0;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
      hsla(174, 86%, 44%, 0.9), 
      hsla(180, 86%, 50%, 0.8)
    );
    z-index: 1;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    position: relative;
    z-index: 2;
  }

  .content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .badges {
    display: flex;
    gap: var(--spacing-3);
    justify-content: center;
    margin-bottom: var(--spacing-6);
    flex-wrap: wrap;
  }

  .title {
    font-family: var(--font-family-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-8);
    opacity: 0.95;
  }

  .stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: var(--backdrop-blur);
  }

  .stat {
    text-align: center;
  }

  .statValue {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-1);
  }

  .statLabel {
    font-size: 0.875rem;
    opacity: 0.9;
  }

  .actions {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Responsive design */
  @media (max-width: 768px) {
    .hero {
      padding: var(--spacing-12) 0;
    }

    .title {
      font-size: 2.5rem;
    }

    .subtitle {
      font-size: 1.125rem;
    }

    .stats {
      grid-template-columns: repeat(2, 1fr);
      gap: var(--spacing-4);
      padding: var(--spacing-4);
    }

    .statValue {
      font-size: 1.5rem;
    }

    .actions {
      flex-direction: column;
      align-items: center;
    }

    .actions .button {
      width: 100%;
      max-width: 300px;
    }
  }

  @media (max-width: 480px) {
    .badges {
      flex-direction: column;
      align-items: center;
    }

    .stats {
      grid-template-columns: 1fr;
    }
  }
}