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

  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
  }

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

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

  .title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 var(--spacing-6);
    line-height: 1.1;
  }

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

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

  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-1);
  }

  .statNumber {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
  }

  .statLabel {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

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

    .title {
      font-size: 2.5rem;
    }

    .description {
      font-size: 1.125rem;
    }

    .stats {
      gap: var(--spacing-6);
    }

    .statNumber {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 480px) {
    .title {
      font-size: 2rem;
    }

    .description {
      font-size: 1rem;
    }

    .stats {
      gap: var(--spacing-4);
    }

    .statNumber {
      font-size: 1.5rem;
    }
  }
}