/* ==========================================================================
   Home -- Fixed single-screen splash
   The home page is a full-viewport landing card: hero fills the screen,
   nothing scrolls.
   ========================================================================== */

html, body {
  overflow: hidden;
  height: 100vh;
}


/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__content {
  max-width: 900px;
  padding: 100px var(--container-pad) 0;
}

.hero h1 {
  font-size: var(--text-6xl);
  font-weight: var(--weight-bold);
  line-height: 1.15;
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-6);
}

.hero h1 .gradient-text {
  display: block;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-muted);
  margin-bottom: var(--space-10);
}

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


/* ==========================================================================
   Responsive -- Mobile (768px)
   ========================================================================== */

@media (max-width: 768px) {
  .hero h1 {
    font-size: var(--text-5xl);
  }

  .hero__content {
    padding-top: 80px;
  }
}
