/* ═══════════════════════════════════════════════════════════════
   RENZO WELCOME — Premium Google/Claude style with orb + shadows
   ═══════════════════════════════════════════════════════════════ */

.welcome {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 82vh !important;
  padding: 0 24px !important;
}

.rz-w {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  width: 100%;
}

/* ── Orb (Google AI style — 3D with rings) ── */
.rz-w-orb-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 4px;
}
.rz-w-orb-inner {
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a78bfa, #6366f1 50%, #4338ca);
  box-shadow: 0 0 30px rgba(99,102,241,0.35), 0 0 60px rgba(99,102,241,0.1), inset 0 -6px 12px rgba(0,0,0,0.25);
  animation: orbPulse 3s ease-in-out infinite;
}
.rz-w-orb-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(99,102,241,0.12);
  animation: orbGlow 3s ease-out infinite;
}
.rz-w-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.15);
  animation: orbSpin 10s linear infinite;
}
.rz-w-ring-1 { inset: 2px; border-color: rgba(139,92,246,0.2); }
.rz-w-ring-2 { inset: 0; border-color: rgba(99,102,241,0.08); animation-duration: 15s; animation-direction: reverse; border-style: dashed; }

@keyframes orbPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }
@keyframes orbGlow { 0%{transform:scale(1);opacity:0.4} 100%{transform:scale(2.2);opacity:0} }
@keyframes orbSpin { to{transform:rotate(360deg)} }

/* ── Greeting ── */
.rz-w-greeting {
  font-size: 1.65em;
  font-weight: 600;
  color: var(--text, #e2e8f0);
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #e2e8f0, #a5b4fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rz-w-sub {
  font-size: 0.95em;
  color: var(--text-muted, #64748b);
  margin: -4px 0 8px;
}

/* ── Chips (pill-shaped with shadow on hover) ── */
.rz-w-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}
.rz-w-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid var(--border, rgba(148,163,184,0.15));
  background: var(--bg-card, rgba(30,35,50,0.4));
  color: var(--text, #e2e8f0);
  font-size: 0.85em;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.rz-w-chip:hover {
  border-color: rgba(99,102,241,0.4);
  background: rgba(99,102,241,0.08);
  box-shadow: 0 8px 24px rgba(99,102,241,0.15), 0 2px 8px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.rz-w-chip:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.rz-w-chip .lucide {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ── Light theme ── */
[data-theme="light"] .rz-w-greeting {
  background: linear-gradient(135deg, #1e293b, #4338ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
[data-theme="light"] .rz-w-sub { color: #64748b; }
[data-theme="light"] .rz-w-chip {
  background: rgba(255,255,255,0.9);
  border-color: rgba(0,0,0,0.06);
  color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
[data-theme="light"] .rz-w-chip:hover {
  background: #fff;
  border-color: rgba(99,102,241,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 0 0 1px rgba(99,102,241,0.1);
}
[data-theme="light"] .rz-w-orb-inner {
  box-shadow: 0 0 20px rgba(99,102,241,0.25), 0 0 50px rgba(99,102,241,0.08), inset 0 -6px 12px rgba(0,0,0,0.15);
}
