/* Public splash layout — design-system variables only. */

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
}

.splash {
  width: 100%;
  max-width: 30rem;
}

.splash .card-body {
  text-align: center;
  padding: 2.5rem 2rem;
}

.splash h1 {
  margin: 0 0 0.5rem;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: hsl(var(--foreground-strong));
}

.splash .tagline {
  margin: 0;
  line-height: 1.6;
  color: hsl(var(--foreground-secondary));
}

.splash-contact {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
}

.splash-contact .label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: hsl(var(--foreground-secondary));
}

.splash-contact a {
  color: hsl(var(--accent));
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.splash-contact a:hover {
  color: hsl(var(--accent-hover));
  text-decoration: underline;
}

.splash-contact .sep {
  margin: 0 0.5rem;
  color: hsl(var(--foreground-secondary));
}
