/* ============================================
   PHASE 2 PATCH — append to css/phase2.css
   Org welcome panel + polish
   ============================================ */

/* ==========================================
   ORG WELCOME PANEL
   ========================================== */

.org-welcome-panel {
  align-items: center;
  justify-content: center;
}

.org-welcome-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 380px;
  padding: 40px 24px;
  gap: 12px;
}

.org-welcome-icon {
  font-size: 52px;
  margin-bottom: 4px;
  filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.2));
}

.org-welcome-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.org-welcome-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

.org-welcome-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}

.org-welcome-cta {
  padding: 11px 24px;
  background: linear-gradient(135deg, #4F46E5, #7C3AED);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
  letter-spacing: 0.01em;
}

.org-welcome-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(79, 70, 229, 0.45);
}

.org-welcome-cta:active {
  transform: translateY(0);
}

.org-welcome-shortcuts {
  display: flex;
  align-items: center;
  gap: 6px;
}

.owc-shortcut {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 7px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  color: var(--color-text-tertiary);
  font-family: 'Menlo', 'Monaco', 'Courier New', monospace;
  letter-spacing: 0.03em;
}

.owc-label {
  font-size: 11px;
  color: var(--color-text-tertiary);
}

/* ==========================================
   ORG STATS ROW
   ========================================== */

.org-welcome-stats {
  display: flex;
  gap: 24px;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  width: 100%;
  justify-content: center;
}

.ow-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ow-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.ow-stat-label {
  font-size: 11px;
  color: var(--color-text-tertiary);
  font-weight: 500;
  letter-spacing: 0.03em;
}
