/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.container--narrow {
  max-width: var(--max-width-narrow);
}

/* Sections */
.section {
  padding-block: clamp(var(--space-16), 8vw, var(--space-32));
}

.section--light {
  background-color: var(--color-bg);
}

.section--alt {
  background-color: var(--color-bg-alt);
}

.section--dark {
  background-color: var(--color-bg-dark);
}

.section--dark .section__label {
  color: var(--color-primary);
}

.section--dark .section__title {
  color: var(--color-text-on-dark);
}

.section--dark p {
  color: var(--color-text-on-dark-muted);
}

.section--centered {
  text-align: center;
}

/* Section header elements */
.section__label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

.section__title {
  color: var(--color-text);
  margin-bottom: var(--space-8);
  max-width: 720px;
}

.section--centered .section__title {
  margin-inline: auto;
}

.section__title--large {
  font-size: clamp(1.75rem, 3.5vw + 0.5rem, var(--font-size-4xl));
  line-height: 1.1;
}

.section__body {
  max-width: 640px;
}

.section--centered .section__body {
  margin-inline: auto;
}

.section__body p + p {
  margin-top: var(--space-6);
}

.section__body p {
  font-size: var(--font-size-md);
}

.section__emphasis {
  font-size: var(--font-size-lg) !important;
  color: var(--color-text) !important;
  font-weight: 500;
  margin-top: var(--space-10) !important;
  line-height: 1.5;
}

/* Hero */
.section--hero {
  background: var(--gradient-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--space-32) + 80px);
  padding-bottom: var(--space-32);
  position: relative;
  overflow: hidden;
}

.section--hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 127, 227, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  text-align: center;
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.hero__title {
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-6);
}

.hero__subtitle {
  font-size: clamp(var(--font-size-md), 2vw, var(--font-size-lg));
  color: var(--color-text-on-dark-muted);
  margin-bottom: var(--space-10);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.7;
}

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

/* Featured product */
.product-featured {
  max-width: 480px;
  margin-inline: auto;
  margin-top: var(--space-4);
}

/* Coming soon */
.coming-soon {
  margin-top: var(--space-8);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Future section */
.future__text {
  font-size: var(--font-size-lg) !important;
  color: var(--color-text-on-dark-muted) !important;
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-8);
  }
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--space-12);
  }
}
