/**
 * landing.css — Hero section and landing-page-specific layout styles.
 * Centers the intro content vertically within the viewport below the header.
 */

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: calc(100vh - var(--header-height));
  padding: 2rem 1.25rem;
}

.hero__title {
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hero__title-accent {
  color: var(--accent-blue);
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__cta {
  margin-top: 0.5rem;
}
