{{-- Denison Culture Model Quadrant Visualization --}} @php $denisonCategories = ['denison-mission', 'denison-adaptability', 'denison-involvement', 'denison-consistency']; $scores = $analytics->category_scores ?? []; $benchmarks = $benchmarkComparison ?? []; $mission = $scores['denison-mission'] ?? 0; $adaptability = $scores['denison-adaptability'] ?? 0; $involvement = $scores['denison-involvement'] ?? 0; $consistency = $scores['denison-consistency'] ?? 0; $overallCulture = round(($mission + $adaptability + $involvement + $consistency) / 4, 1); // Denison axis groupings $externalFocus = round(($mission + $adaptability) / 2, 1); $internalFocus = round(($involvement + $consistency) / 2, 1); $flexible = round(($adaptability + $involvement) / 2, 1); $stable = round(($mission + $consistency) / 2, 1); function denisonColor($score) { if ($score >= 80) return '#16a34a'; if ($score >= 70) return '#65a30d'; if ($score >= 60) return '#ca8a04'; if ($score >= 50) return '#ea580c'; return '#dc2626'; } @endphp
Organizational culture assessment across four critical traits
@if($mission > 70 && $adaptability < 55) The organization has a strong sense of direction and clear strategic goals, but struggles to translate that clarity into agile responses to change. Employees understand the vision but may feel constrained in how they can adapt and innovate. @elseif($consistency > 65 && $involvement < 55) Systems and processes are well-established, but employee empowerment and team engagement need attention. The culture may be experienced as top-down, with limited opportunity for staff to contribute to decision-making. @elseif($externalFocus > $internalFocus + 10) The organization is more externally-oriented than internally-focused. While strategy and market awareness are strong, internal alignment and employee engagement require investment. @elseif($stable > $flexible + 10) The culture favors stability and direction over flexibility and empowerment. This provides consistency but may limit the organization's ability to adapt quickly and empower innovation. @else The culture profile shows a balanced but moderate pattern. There is opportunity to strengthen all four traits, with particular focus on the lowest-scoring areas to drive meaningful improvement. @endif
The Denison Model is one of the most widely researched and validated culture assessment tools globally, with a benchmark database of over 8,000 organizations. It measures four critical cultural traits:
Does the organization have a clear sense of purpose and long-term direction? Covers strategic direction, goals and objectives, and vision.
Can the organization respond to external changes effectively? Covers creating change, stakeholder focus, and organizational learning.
Are people aligned, engaged, and capable? Covers empowerment, team orientation, and capability development.
Are systems and processes aligned to create internal stability? Covers core values, agreement, and coordination & integration.
Scores represent favorability percentage (% of responses rating 4 or 5 on a 5-point Likert scale). Higher scores indicate stronger cultural traits.