/* ── Public landing page ── */

.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
}

@media (min-width: 900px) {
  .landing-page {
    flex-direction: row;
    align-items: stretch;
  }
}

.landing-hero {
  flex: 1 1 60%;
  display: flex;
  align-items: center;
  padding: 48px 24px;
  background: var(--brand-soft);
}

.landing-hero-inner {
  max-width: 560px;
  margin: 0 auto;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.landing-brand .brand-icon {
  width: 32px;
  height: 32px;
  color: var(--brand);
}

.landing-brand .brand-name {
  font-family: var(--font-brand);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.landing-headline {
  font-family: var(--font-brand);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 14px;
  line-height: 1.15;
}

.landing-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0 0 36px;
  line-height: 1.5;
}

.landing-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 20px;
}

@media (min-width: 560px) {
  .landing-features {
    grid-template-columns: 1fr 1fr;
  }
}

.landing-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-feature-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.98rem;
}

.landing-feature-body {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.landing-beta-note {
  font-size: 0.85rem;
  color: var(--text-subtle);
  margin: 0;
}

.landing-auth {
  flex: 1 1 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The embedded login card no longer needs to own the full-page frame or
   center itself vertically — the landing layout above does that. */
.landing-auth .auth-page {
  min-height: 0;
  padding: 24px;
}
