/* ============================================
   HOMEPAGE — Section-specific styles
   ============================================ */

/* === HERO === */

.hero-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height-mobile) + var(--space-16)) 0 var(--space-16);
  text-align: center;
}

.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 700px;
}

.hero-content .headline {
  max-width: 600px;
}

.hero-content .body-text {
  text-align: center;
  max-width: 480px;
}

/* === PROBLEM === */

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

.problem-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.problem-section .body-text {
  max-width: 560px;
  text-align: center;
  margin-top: var(--space-6);
}

/* === STUDIO === */

.studio-section .split-layout__content .body-text {
  margin-top: var(--space-5);
}

/* === TRANSMUTATION === */

.transmutation-section .split-layout__content .headline {
  margin-top: var(--space-2);
}

.transmutation-section .split-layout__content .body-text {
  margin-top: var(--space-5);
}

/* === INTELLIGENCE === */

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

.intelligence-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intelligence-section .body-text {
  max-width: 560px;
  text-align: center;
  margin-top: var(--space-6);
}

/* === DISCOVERY === */

.discovery-section .split-layout__content .body-text {
  margin-top: var(--space-5);
}

/* === FINAL CTA === */

.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--canvas) 0%, var(--linen) 100%);
  padding: var(--space-24) 0;
}

.cta-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.cta-section .body-text {
  text-align: center;
}

.cta-built-by {
  margin-top: var(--space-10);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--fog);
}

.cta-built-by a {
  color: var(--sky-deep);
}

.cta-built-by a:hover {
  text-decoration: underline;
}

/* === RESPONSIVE === */

@media (min-width: 768px) {
  .hero-section {
    padding-top: calc(var(--nav-height) + var(--space-20));
  }

  .hero-section .container {
    gap: var(--space-16);
  }
}
