/* Layout System */

/* Container */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--space-lg);
  padding-right: var(--space-lg);
}

/* Section Spacing */

.section {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  position: relative;
  background: #030812;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-bottom: var(--space-md);
}

.section__description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

/* Background Layer System
 * Layer 1: Background color (#030812) - applied to body and all sections
 * Layer 2: Pattern image - applied via ::before pseudo-element on sections
 * Layer 3: Blur image - applied via ::after pseudo-element on hero section
 */


