/* ══════════════════════════════════════
   Landing / Pre-auth Onboarding Screens
   Transparent to show stars/milky way
   ══════════════════════════════════════ */

#screen-landing {
  position: relative;
  min-height: 100%;
  background: transparent;
}

.landing-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px 24px;
  text-align: center;
  box-sizing: border-box;
  background: transparent;
}

.landing-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 360px;
}

.landing-icon {
  font-size: 56px;
  margin-bottom: var(--space-lg);
}

.landing-title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: var(--space-md);
  letter-spacing: -0.01em;
}

.landing-subtitle {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-md);
}

.landing-badge {
  display: inline-block;
  padding: 10px 20px;
  background: var(--tile-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--success);
  font-size: var(--fs-base);
  font-weight: 600;
  margin-top: var(--space-sm);
}

.landing-btn {
  width: 100%;
  max-width: 320px;
  padding: 14px 24px;
  background: var(--button-bg);
  color: var(--text-primary);
  border: 1px solid var(--button-border);
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  margin-bottom: var(--space-lg);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.landing-btn:active {
  transform: scale(0.98);
  color: var(--button-text-pressed);
}

.landing-dots {
  display: flex;
  gap: 8px;
  padding-bottom: env(safe-area-inset-bottom, 16px);
}
.landing-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: background var(--duration) var(--ease);
}
.landing-dot.active {
  background: var(--text-primary);
}
