snow-flow 4.2.0 → 4.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/README.md +186 -554
  2. package/cloudbuild-npm.yaml +132 -0
  3. package/cloudbuild-website.yaml +92 -0
  4. package/cloudbuild.yaml +141 -0
  5. package/dist/agent/interactive.d.ts +11 -0
  6. package/dist/agent/interactive.js +190 -0
  7. package/dist/agent/session.d.ts +12 -0
  8. package/dist/agent/session.js +106 -0
  9. package/dist/cli/auth.d.ts +3 -0
  10. package/dist/cli/auth.js +59 -0
  11. package/dist/cli/session.d.ts +3 -0
  12. package/dist/cli/session.js +46 -0
  13. package/dist/cli.js +81 -0
  14. package/dist/config/llm-config-loader.d.ts +45 -0
  15. package/dist/config/llm-config-loader.js +49 -0
  16. package/dist/index.js +1 -3
  17. package/dist/intelligence/performance-recommendations-engine.js +0 -1
  18. package/dist/llm/keys.d.ts +5 -0
  19. package/dist/llm/keys.js +29 -0
  20. package/dist/llm/providers.d.ts +11 -0
  21. package/dist/llm/providers.js +77 -0
  22. package/dist/mcp/advanced/servicenow-advanced-features-mcp.js +12 -12
  23. package/dist/mcp/bridge.d.ts +10 -0
  24. package/dist/mcp/bridge.js +31 -0
  25. package/dist/mcp/servicenow-development-assistant-mcp.js +1 -1
  26. package/dist/mcp/servicenow-machine-learning-mcp.js +2 -2
  27. package/dist/mcp/servicenow-reporting-analytics-mcp.js +1 -1
  28. package/dist/mcp/shared/mcp-types.d.ts +37 -0
  29. package/dist/mcp/shared/mcp-types.js +7 -0
  30. package/dist/mcp/shared/response-limiter.js +1 -1
  31. package/dist/memory/hierarchical-memory-system.d.ts +42 -0
  32. package/dist/memory/hierarchical-memory-system.js +60 -0
  33. package/dist/memory/memory-system.d.ts +34 -0
  34. package/dist/memory/memory-system.js +36 -0
  35. package/dist/memory/snow-flow-memory-patterns.d.ts +47 -28
  36. package/dist/memory/snow-flow-memory-patterns.js +46 -25
  37. package/dist/session/store.d.ts +47 -0
  38. package/dist/session/store.js +74 -0
  39. package/dist/snow-flow-system.js +0 -1
  40. package/dist/testing/integration-test-suite.js +0 -1
  41. package/dist/utils/artifact-local-sync.js +17 -0
  42. package/dist/utils/artifact-sync/artifact-registry.js +11 -11
  43. package/dist/utils/chunking-manager.d.ts +39 -0
  44. package/dist/utils/chunking-manager.js +143 -0
  45. package/dist/utils/smart-field-fetcher.js +11 -9
  46. package/package.json +3 -3
  47. package/website/Dockerfile +3 -2
  48. package/website/cloudbuild.yaml +4 -3
  49. package/website/complete-mcp-reference.html +1040 -0
  50. package/website/components/hero/Hero.html +9 -9
  51. package/website/components/hero/Hero.jsx +3 -3
  52. package/website/css/button-contrast-fixes.css +133 -0
  53. package/website/css/button-fixes.css +49 -0
  54. package/website/css/enterprise-section-update.css +38 -0
  55. package/website/css/font-standardization.css +54 -0
  56. package/website/css/footer-hero-styling.css +73 -0
  57. package/website/css/hero-compact-spacing.css +60 -0
  58. package/website/css/hero-contrast-fixes.css +195 -0
  59. package/website/css/hero-inspired-design.css +135 -0
  60. package/website/css/hero-size-optimization.css +146 -0
  61. package/website/css/hero-spacing-improvements.css +139 -0
  62. package/website/css/hero-stats-visibility.css +98 -0
  63. package/website/css/mobile-hero-fix.css +215 -0
  64. package/website/css/navbar-hero-styling.css +70 -0
  65. package/website/css/reference-text-contrast.css +101 -0
  66. package/website/css/scroll-overlap-nuclear-fix.css +127 -0
  67. package/website/css/section-layering-fix.css +85 -0
  68. package/website/css/style.css +37 -10
  69. package/website/css/title-layout-fix.css +58 -0
  70. package/website/css/ultimate-overlap-fix.css +101 -0
  71. package/website/css/website-hero-consistency.css +101 -0
  72. package/website/enterprise-features.html +147 -0
  73. package/website/index.html +268 -43
  74. package/website/js/animations.js +20 -23
  75. package/website/js/main.js +73 -7
  76. package/website/mcp-reference-link.html +16 -0
  77. package/website/mcp-servers.html +2 -2
  78. package/website/tools.js +125 -6
  79. package/website/what-is-snow-flow-section.html +142 -0
  80. package/assets/logo.txt +0 -8
  81. package/assets/snow-flow-logo.svg +0 -51
@@ -0,0 +1,135 @@
1
+ /* =========================================
2
+ HERO-INSPIRED DESIGN SYSTEM FOR ENTIRE WEBSITE
3
+ ========================================= */
4
+
5
+ /* Use hero's beautiful styling throughout the website */
6
+
7
+ /* HERO-INSPIRED BUTTONS - Beautiful like the hero background */
8
+ .btn-hero-primary {
9
+ background: linear-gradient(135deg,
10
+ rgba(102, 126, 234, 0.9) 0%,
11
+ rgba(118, 75, 162, 0.9) 50%,
12
+ rgba(240, 147, 251, 0.9) 100%) !important;
13
+ color: var(--white) !important;
14
+ border: 2px solid rgba(255, 255, 255, 0.3) !important;
15
+ backdrop-filter: blur(20px) !important;
16
+ -webkit-backdrop-filter: blur(20px) !important;
17
+ border-radius: var(--radius-2xl) !important;
18
+ padding: var(--space-4) var(--space-8) !important;
19
+ font-weight: 600 !important;
20
+ font-size: var(--font-lg) !important;
21
+ text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
22
+ box-shadow:
23
+ 0 8px 32px rgba(102, 126, 234, 0.3),
24
+ 0 0 40px rgba(118, 75, 162, 0.2),
25
+ inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
26
+ transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
27
+ position: relative !important;
28
+ overflow: hidden !important;
29
+ }
30
+
31
+ .btn-hero-primary:before {
32
+ content: '';
33
+ position: absolute;
34
+ top: -50%;
35
+ left: -50%;
36
+ width: 200%;
37
+ height: 200%;
38
+ background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
39
+ transform: rotate(45deg);
40
+ transition: all 0.6s ease;
41
+ opacity: 0;
42
+ }
43
+
44
+ .btn-hero-primary:hover:before {
45
+ animation: shine 0.6s ease-in-out;
46
+ }
47
+
48
+ .btn-hero-primary:hover {
49
+ transform: translateY(-4px) scale(1.02) !important;
50
+ box-shadow:
51
+ 0 12px 40px rgba(102, 126, 234, 0.4),
52
+ 0 0 60px rgba(118, 75, 162, 0.3) !important;
53
+ }
54
+
55
+ /* HERO-INSPIRED SECONDARY BUTTON */
56
+ .btn-hero-secondary {
57
+ background: rgba(255, 255, 255, 0.1) !important;
58
+ color: var(--white) !important;
59
+ border: 2px solid rgba(255, 255, 255, 0.3) !important;
60
+ backdrop-filter: blur(20px) !important;
61
+ -webkit-backdrop-filter: blur(20px) !important;
62
+ border-radius: var(--radius-2xl) !important;
63
+ padding: var(--space-4) var(--space-8) !important;
64
+ font-weight: 500 !important;
65
+ font-size: var(--font-lg) !important;
66
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
67
+ box-shadow:
68
+ 0 4px 16px rgba(0, 0, 0, 0.1),
69
+ inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
70
+ transition: all 0.3s ease !important;
71
+ position: relative !important;
72
+ }
73
+
74
+ .btn-hero-secondary:hover {
75
+ background: rgba(255, 255, 255, 0.2) !important;
76
+ border-color: rgba(255, 255, 255, 0.5) !important;
77
+ transform: translateY(-2px) !important;
78
+ box-shadow:
79
+ 0 8px 24px rgba(0, 0, 0, 0.15),
80
+ inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
81
+ }
82
+
83
+ /* SECTION BACKGROUNDS - HERO INSPIRED */
84
+ .hero-inspired-section {
85
+ background:
86
+ radial-gradient(at 20% 80%, hsla(240, 60%, 20%, 0.3) 0%, transparent 50%),
87
+ radial-gradient(at 80% 20%, hsla(260, 60%, 25%, 0.3) 0%, transparent 50%),
88
+ radial-gradient(at 40% 40%, hsla(280, 60%, 15%, 0.3) 0%, transparent 50%),
89
+ var(--black) !important;
90
+ }
91
+
92
+ /* CARDS WITH HERO GLASS EFFECT */
93
+ .hero-inspired-card {
94
+ background: rgba(255, 255, 255, 0.08) !important;
95
+ backdrop-filter: blur(20px) !important;
96
+ -webkit-backdrop-filter: blur(20px) !important;
97
+ border: 1px solid rgba(255, 255, 255, 0.15) !important;
98
+ border-radius: var(--radius-2xl) !important;
99
+ padding: var(--space-8) !important;
100
+ box-shadow:
101
+ 0 8px 32px rgba(0, 0, 0, 0.3),
102
+ inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
103
+ transition: all 0.3s ease !important;
104
+ }
105
+
106
+ .hero-inspired-card:hover {
107
+ background: rgba(255, 255, 255, 0.12) !important;
108
+ border-color: rgba(255, 255, 255, 0.25) !important;
109
+ transform: translateY(-4px) !important;
110
+ box-shadow:
111
+ 0 16px 48px rgba(0, 0, 0, 0.4),
112
+ inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
113
+ }
114
+
115
+ @keyframes shine {
116
+ 0% { opacity: 0; }
117
+ 50% { opacity: 1; }
118
+ 100% { opacity: 0; }
119
+ }
120
+
121
+ /* TEXT HIERARCHY - HERO INSPIRED */
122
+ .hero-inspired-title {
123
+ background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%) !important;
124
+ -webkit-background-clip: text !important;
125
+ -webkit-text-fill-color: transparent !important;
126
+ background-clip: text !important;
127
+ font-weight: 700 !important;
128
+ text-shadow: none !important;
129
+ filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5)) !important;
130
+ }
131
+
132
+ .hero-inspired-subtitle {
133
+ color: var(--gray-200) !important;
134
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6) !important;
135
+ }
@@ -0,0 +1,146 @@
1
+ /* =========================================
2
+ HERO SIZE OPTIMIZATION - Compact & Clean
3
+ ========================================= */
4
+
5
+ /* SNOW-FLOW title - even smaller for better proportion */
6
+ .hero-title {
7
+ font-size: clamp(var(--font-3xl), 5vw, var(--font-5xl)) !important; /* Further reduced for better balance */
8
+ margin-bottom: var(--space-4) !important; /* Reduced from space-6 */
9
+ letter-spacing: -0.03em !important; /* Tighter letter spacing */
10
+ }
11
+
12
+ /* Title letters - tighter spacing */
13
+ .title-letter {
14
+ margin-right: 0.05em !important; /* Even tighter spacing */
15
+ font-size: inherit !important;
16
+ }
17
+
18
+ /* Version badge - more proportional */
19
+ .version-badge {
20
+ font-size: var(--font-base) !important; /* Reduced from font-xl */
21
+ padding: var(--space-2) var(--space-4) !important; /* Reduced padding */
22
+ transform: rotate(-3deg) scale(1) !important; /* Reduced from scale(1.2) */
23
+ top: -15px !important; /* Adjusted position */
24
+ right: -20px !important;
25
+ }
26
+
27
+ /* Hero subtitle - more compact */
28
+ .hero-subtitle {
29
+ font-size: clamp(var(--font-base), 1.5vw, var(--font-xl)) !important; /* Reduced from 2vw/2xl */
30
+ margin-bottom: var(--space-6) !important; /* Reduced from space-10 */
31
+ line-height: var(--leading-snug) !important; /* Tighter line height */
32
+ }
33
+
34
+ /* Feature pills - smaller and more compact */
35
+ .feature-pills {
36
+ gap: var(--space-2) !important; /* Reduced gap */
37
+ margin: var(--space-4) 0 var(--space-6) !important; /* Reduced margins */
38
+ }
39
+
40
+ .pill {
41
+ font-size: var(--font-sm) !important; /* Reduced from font-base */
42
+ padding: var(--space-2) var(--space-4) !important; /* Reduced padding */
43
+ border-radius: var(--radius-full) !important;
44
+ }
45
+
46
+ .pill-icon {
47
+ font-size: var(--font-base) !important; /* Slightly smaller icons */
48
+ }
49
+
50
+ /* CTA buttons - more proportional */
51
+ .btn-hero-primary,
52
+ .btn-hero-secondary {
53
+ font-size: var(--font-base) !important; /* Reduced from font-lg */
54
+ padding: var(--space-3) var(--space-6) !important; /* Reduced padding */
55
+ border-radius: var(--radius-xl) !important; /* Slightly smaller radius */
56
+ }
57
+
58
+ .hero-actions {
59
+ gap: var(--space-3) !important; /* Reduced gap between buttons */
60
+ margin: var(--space-6) 0 var(--space-8) !important; /* Adjusted margins */
61
+ }
62
+
63
+ /* Hero stats - more compact with icon styling */
64
+ .hero-stats {
65
+ padding: var(--space-4) var(--space-6) !important; /* Reduced padding */
66
+ margin: var(--space-8) auto var(--space-6) !important; /* Reduced margins */
67
+ max-width: 650px !important; /* Even more compact */
68
+ }
69
+
70
+ .stat-icon {
71
+ font-size: var(--font-xl) !important; /* Nice sized icons */
72
+ margin-bottom: var(--space-1) !important;
73
+ display: block !important;
74
+ filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5)) !important;
75
+ }
76
+
77
+ .stat-number {
78
+ font-size: var(--font-3xl) !important; /* Reduced from font-4xl */
79
+ margin-bottom: var(--space-1) !important;
80
+ }
81
+
82
+ .stat-label {
83
+ font-size: var(--font-xs) !important; /* Smaller labels */
84
+ margin-top: var(--space-1) !important;
85
+ }
86
+
87
+ .stat-divider {
88
+ height: 45px !important; /* Shorter dividers */
89
+ }
90
+
91
+ .stat-item {
92
+ text-align: center !important;
93
+ padding: var(--space-2) !important; /* Reduced padding */
94
+ }
95
+
96
+ /* Hero content overall spacing */
97
+ .hero-content {
98
+ padding: var(--space-10) var(--space-4) var(--space-6) !important; /* More compact padding */
99
+ max-width: 90% !important; /* Slightly more contained */
100
+ }
101
+
102
+ /* Mountain logo - smaller */
103
+ .hero-logo-container {
104
+ margin-top: var(--space-2) !important; /* Reduced top margin */
105
+ margin-bottom: var(--space-3) !important; /* Reduced bottom margin */
106
+ }
107
+
108
+ .hero-mountain {
109
+ font-size: var(--font-5xl) !important; /* Reduced from larger size */
110
+ }
111
+
112
+ /* Responsive adjustments for compact design */
113
+ @media (max-width: 768px) {
114
+ .hero-title {
115
+ font-size: clamp(var(--font-2xl), 4vw, var(--font-4xl)) !important; /* Even smaller on mobile */
116
+ }
117
+
118
+ .hero-subtitle {
119
+ font-size: var(--font-base) !important;
120
+ margin-bottom: var(--space-4) !important;
121
+ }
122
+
123
+ .feature-pills {
124
+ gap: var(--space-1) !important;
125
+ }
126
+
127
+ .pill {
128
+ font-size: var(--font-xs) !important;
129
+ padding: var(--space-1) var(--space-3) !important;
130
+ }
131
+
132
+ .hero-actions {
133
+ flex-direction: column !important;
134
+ gap: var(--space-2) !important;
135
+ }
136
+
137
+ .btn-hero-primary,
138
+ .btn-hero-secondary {
139
+ width: 100% !important;
140
+ max-width: 280px !important;
141
+ }
142
+
143
+ .stat-number {
144
+ font-size: var(--font-2xl) !important;
145
+ }
146
+ }
@@ -0,0 +1,139 @@
1
+ /* =========================================
2
+ HERO SPACING IMPROVEMENTS - More Breathing Room
3
+ ========================================= */
4
+
5
+ /* Hero section - more spacious and better flow */
6
+ .hero {
7
+ min-height: 100vh !important;
8
+ padding: 0 0 var(--space-20) !important; /* More bottom padding to prevent overlap */
9
+ position: relative !important;
10
+ margin-bottom: var(--space-16) !important; /* Clear separation from next section */
11
+ }
12
+
13
+ /* Hero content - more generous spacing */
14
+ .hero-content {
15
+ padding: var(--space-16) var(--space-6) var(--space-12) !important; /* More generous padding */
16
+ max-width: 95% !important;
17
+ margin: 0 auto !important;
18
+ /* Better vertical centering with more space */
19
+ min-height: 90vh !important;
20
+ display: flex !important;
21
+ flex-direction: column !important;
22
+ justify-content: center !important;
23
+ align-items: center !important;
24
+ }
25
+
26
+ /* Mountain logo - more breathing room */
27
+ .hero-logo-container {
28
+ margin: var(--space-6) 0 var(--space-8) !important; /* More space around logo */
29
+ }
30
+
31
+ /* Title spacing improvements */
32
+ .hero-title {
33
+ margin: var(--space-6) auto var(--space-8) auto !important; /* More space around title */
34
+ }
35
+
36
+ /* Subtitle - better spacing */
37
+ .hero-subtitle {
38
+ margin-bottom: var(--space-8) !important; /* More space before pills */
39
+ max-width: 800px !important; /* Constrain width for better readability */
40
+ line-height: var(--leading-relaxed) !important; /* More line spacing */
41
+ }
42
+
43
+ /* Feature pills - more generous spacing */
44
+ .feature-pills {
45
+ margin: var(--space-8) 0 var(--space-10) !important; /* More generous margins */
46
+ gap: var(--space-3) !important; /* Better gap between pills */
47
+ max-width: 900px !important; /* Constrain width */
48
+ justify-content: center !important;
49
+ }
50
+
51
+ /* CTA buttons - better spacing */
52
+ .hero-actions {
53
+ margin: var(--space-10) 0 var(--space-12) !important; /* More space around buttons */
54
+ gap: var(--space-4) !important; /* Better gap between buttons */
55
+ }
56
+
57
+ /* Hero stats - more breathing room */
58
+ .hero-stats {
59
+ margin: var(--space-12) auto var(--space-16) !important; /* Much more space around stats */
60
+ padding: var(--space-6) var(--space-8) !important; /* More internal padding */
61
+ max-width: 750px !important; /* Slightly wider for better proportion */
62
+ }
63
+
64
+ /* Section separation - prevent overlap */
65
+ .section {
66
+ position: relative !important;
67
+ margin-top: var(--space-20) !important; /* Clear separation from hero */
68
+ padding-top: var(--space-16) !important; /* Extra top padding */
69
+ }
70
+
71
+ /* First section after hero - extra separation */
72
+ #servers {
73
+ margin-top: var(--space-24) !important; /* Even more separation */
74
+ padding-top: var(--space-20) !important;
75
+ }
76
+
77
+ /* Scroll indicator positioning */
78
+ .scroll-indicator {
79
+ position: absolute !important;
80
+ bottom: var(--space-8) !important; /* More space from edge */
81
+ left: 50% !important;
82
+ transform: translateX(-50%) !important;
83
+ }
84
+
85
+ /* Mobile spacing adjustments */
86
+ @media (max-width: 768px) {
87
+ .hero {
88
+ padding-bottom: var(--space-16) !important;
89
+ margin-bottom: var(--space-12) !important;
90
+ }
91
+
92
+ .hero-content {
93
+ padding: var(--space-12) var(--space-4) var(--space-8) !important;
94
+ min-height: 85vh !important;
95
+ }
96
+
97
+ .hero-title {
98
+ margin: var(--space-4) auto var(--space-6) auto !important;
99
+ }
100
+
101
+ .hero-subtitle {
102
+ margin-bottom: var(--space-6) !important;
103
+ }
104
+
105
+ .feature-pills {
106
+ margin: var(--space-6) 0 var(--space-8) !important;
107
+ gap: var(--space-2) !important;
108
+ }
109
+
110
+ .hero-actions {
111
+ margin: var(--space-8) 0 var(--space-10) !important;
112
+ gap: var(--space-3) !important;
113
+ }
114
+
115
+ .hero-stats {
116
+ margin: var(--space-10) auto var(--space-12) !important;
117
+ padding: var(--space-4) var(--space-6) !important;
118
+ }
119
+
120
+ .section {
121
+ margin-top: var(--space-16) !important;
122
+ padding-top: var(--space-12) !important;
123
+ }
124
+
125
+ #servers {
126
+ margin-top: var(--space-20) !important;
127
+ padding-top: var(--space-16) !important;
128
+ }
129
+ }
130
+
131
+ /* Smooth scroll behavior for better transitions */
132
+ html {
133
+ scroll-behavior: smooth !important;
134
+ }
135
+
136
+ /* Section transitions */
137
+ .section {
138
+ scroll-margin-top: 100px !important; /* Account for navbar when scrolling */
139
+ }
@@ -0,0 +1,98 @@
1
+ /* =========================================
2
+ HERO STATS VISIBILITY & LAYOUT FIXES
3
+ ========================================= */
4
+
5
+ /* HERO STATS - MUCH MORE VISIBLE */
6
+ .hero-stats {
7
+ background: rgba(0, 0, 0, 0.8) !important; /* Dark semi-transparent background */
8
+ border: 2px solid rgba(255, 255, 255, 0.2) !important;
9
+ border-radius: var(--radius-2xl) !important;
10
+ padding: var(--space-6) var(--space-8) !important;
11
+ margin: var(--space-12) auto !important; /* More space from other elements */
12
+ backdrop-filter: blur(15px) !important;
13
+ -webkit-backdrop-filter: blur(15px) !important;
14
+ box-shadow:
15
+ 0 8px 32px rgba(0, 0, 0, 0.5),
16
+ 0 0 40px rgba(255, 255, 255, 0.1) !important; /* Subtle glow */
17
+ max-width: 800px !important; /* Constrain width for better presentation */
18
+ display: flex !important;
19
+ justify-content: space-between !important;
20
+ align-items: center !important;
21
+ position: relative !important;
22
+ z-index: 15 !important;
23
+ }
24
+
25
+ /* Individual stat items */
26
+ .stat-item {
27
+ text-align: center !important;
28
+ flex: 1 !important;
29
+ padding: var(--space-3) !important;
30
+ color: white !important;
31
+ }
32
+
33
+ /* Stat numbers - HIGH CONTRAST */
34
+ .stat-number {
35
+ font-size: var(--font-4xl) !important; /* Larger for better visibility */
36
+ font-weight: 800 !important;
37
+ color: var(--white) !important;
38
+ text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
39
+ line-height: 1 !important;
40
+ margin-bottom: var(--space-1) !important;
41
+ background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%) !important;
42
+ -webkit-background-clip: text !important;
43
+ -webkit-text-fill-color: transparent !important;
44
+ background-clip: text !important;
45
+ filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.8)) !important;
46
+ }
47
+
48
+ /* Stat labels - READABLE */
49
+ .stat-label {
50
+ font-size: var(--font-sm) !important;
51
+ color: var(--gray-200) !important;
52
+ font-weight: 500 !important;
53
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8) !important;
54
+ text-transform: uppercase !important;
55
+ letter-spacing: var(--tracking-wider) !important;
56
+ }
57
+
58
+ /* Stat dividers */
59
+ .stat-divider {
60
+ width: 1px !important;
61
+ height: 60px !important;
62
+ background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent) !important;
63
+ margin: 0 var(--space-4) !important;
64
+ }
65
+
66
+ /* HERO SIZE ADJUSTMENT - Fixed height to prevent overlap */
67
+ .hero {
68
+ padding: var(--space-8) 0 var(--space-16) !important; /* Less padding to fit in viewport */
69
+ overflow: hidden !important; /* Contain content within bounds */
70
+ }
71
+
72
+ /* Hero content spacing adjustment */
73
+ .hero-content {
74
+ margin-bottom: var(--space-16) !important; /* More space for stats */
75
+ }
76
+
77
+ /* Responsive adjustments */
78
+ @media (max-width: 768px) {
79
+ .hero-stats {
80
+ flex-direction: column !important;
81
+ gap: var(--space-4) !important;
82
+ padding: var(--space-4) !important;
83
+ }
84
+
85
+ .stat-divider {
86
+ width: 60px !important;
87
+ height: 1px !important;
88
+ margin: var(--space-2) 0 !important;
89
+ }
90
+
91
+ .stat-number {
92
+ font-size: var(--font-3xl) !important;
93
+ }
94
+
95
+ .hero {
96
+ padding-bottom: var(--space-20) !important;
97
+ }
98
+ }