/* ═══════════════════════════════════════════
   POKIT — splash.css
   Splash · Auth · License · Onboarding Tour
   ═══════════════════════════════════════════ */

/* ── Splash Screen ── */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: linear-gradient(135deg, #FFF5F7, #FFF0E6, #F5E6F0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
}
.splash-logo { margin-bottom: 8px; display: flex; justify-content: center; }
.splash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.splash-tagline {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.splash-by { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }
.splash-version { font-size: 11px; color: var(--text-muted); margin-top: 20px; }
.splash-card {
  background: white;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: left;
  margin-bottom: 20px;
}
.splash-card h3 { font-size: 15px; color: var(--primary); margin-bottom: 12px; text-align: center; }
.splash-card p { font-size: 13px; color: var(--text); line-height: 1.7; margin-bottom: 8px; }
.splash-footer { font-size: 11px; color: var(--text-muted); line-height: 1.6; }

/* ── Onboarding Tour ── */
.tour-screen {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: linear-gradient(135deg, #FFF5F7, #FFF0E6);
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.tour-slide {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tour-slide h2 { font-size: 22px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.tour-slide p { font-size: 14px; color: var(--text); line-height: 1.7; max-width: 340px; }
.tour-icon { font-size: 56px; margin-bottom: 16px; }
.tour-dots { display: flex; gap: 8px; justify-content: center; margin: 20px 0; }
.tour-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--card-border); }
.tour-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }
.tour-nav { display: flex; gap: 12px; justify-content: center; }
.tour-feature { text-align: left; margin: 6px 0; font-size: 13px; line-height: 1.6; }

/* ── Auth Screen ── */
.auth-screen {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.auth-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 380px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

/* ── License Screen ── */
.license-screen {
  position: fixed;
  inset: 0;
  z-index: 340;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
