/* Public landing page — distinct from the utilitarian admin console pages: a single hero
   section rather than a data-dense table/form layout, since this is the first thing a visitor
   sees before ever reaching /admin. */

body.landing-page {
  background: radial-gradient(circle at 20% -10%, #2a2f6b 0%, #14162b 45%, #0b0c17 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #f2f2f6;
}

.landing-hero {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
  text-align: center;
}

.landing-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b9bdf0;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 1.5rem;
}

.landing-hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #b9bdf0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.landing-tagline {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #c7c9de;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.landing-hero .btn-lg {
  height: auto;
  font-size: 1rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(90, 100, 220, 0.35);
}

.landing-hero .btn-primary {
  background: #6366f1;
  border-color: #6366f1;
}

.landing-hero .btn-primary:hover {
  background: #7678f5;
  border-color: #7678f5;
}

.landing-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 3.5rem;
  text-align: left;
}

.landing-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
}

.landing-feature h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  color: #fff;
}

.landing-feature p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #b3b6cc;
}

.landing-footer {
  margin-top: auto;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: #7d80a0;
}
