/*
 * Landing-page styles for the logged-out multi-kitchen root
 * (rendered by landing/show.html.erb via LandingController).
 *
 * Adds section labels and spacing for the "Sign in" / "Join"
 * two-tier layout. Uses design tokens from base.css. Reuses the
 * uppercase label treatment from auth.css for visual consistency.
 *
 * Collaborators: LandingController, base.css (button + token system)
 */

.landing {
  text-align: center;
}

.landing header {
  margin-bottom: 2rem;
}

.landing-cta {
  margin: 1.25rem 0;
}

.landing-cta-tertiary {
  margin-top: 2.5rem;
}

.landing-cta-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}

.landing-empty-state {
  max-width: 36rem;
  margin: 4rem auto;
  padding: 2rem;
  text-align: center;
}

.landing-empty-state h1 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.landing-empty-state p {
  margin-bottom: 1rem;
  line-height: var(--leading-relaxed);
}
