-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
213 lines (192 loc) · 14.6 KB
/
styles.css
File metadata and controls
213 lines (192 loc) · 14.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
/* ======= RESET & BASE ======= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: #e2e8f0; background: #0a1628; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
/* ======= LAYOUT ======= */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-eyebrow { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: #3b82f6; margin-bottom: 16px; }
.section-title { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; }
.section-sub { font-size: 1.15rem; color: #94a3b8; max-width: 600px; margin: 0 auto 48px; }
.section-body { font-size: 1.15rem; color: #94a3b8; max-width: 700px; margin: 0 auto 48px; }
.accent { color: #3b82f6; }
/* ======= ANIMATIONS ======= */
.animate-in { animation: fadeUp 0.8s ease both; }
.animate-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
/* ======= BUTTONS ======= */
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 600; border-radius: 8px; transition: all 0.2s ease; cursor: pointer; border: none; font-family: inherit; }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary { background: #3b82f6; color: #fff; }
.btn-primary:hover { background: #2563eb; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(59,130,246,0.4); }
.btn-ghost { background: transparent; color: #cbd5e1; border: 1px solid #334155; }
.btn-ghost:hover { border-color: #3b82f6; color: #fff; }
.btn-outline { background: transparent; color: #3b82f6; border: 1px solid #3b82f6; padding: 8px 18px; font-size: 0.875rem; }
.btn-outline:hover { background: rgba(59,130,246,0.1); }
/* ======= NAV ======= */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; transition: all 0.3s ease; }
.nav.scrolled { background: rgba(10,22,40,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(59,130,246,0.1); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.25rem; font-weight: 700; color: #fff; }
.logo-dot { color: #3b82f6; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.9rem; color: #94a3b8; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.mobile-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }
/* ======= HERO ======= */
.hero { min-height: 100vh; display: flex; align-items: center; text-align: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(59,130,246,0.15) 0%, transparent 70%); }
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge { display: inline-block; padding: 6px 16px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 100px; font-size: 0.85rem; font-weight: 500; color: #3b82f6; margin-bottom: 24px; }
.hero-headline { font-size: clamp(2.5rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; color: #fff; }
.hero-sub { font-size: 1.25rem; color: #94a3b8; max-width: 600px; margin: 0 auto 36px; line-height: 1.6; }
.hero-actions { display: flex; gap: 16px; justify-content: center; margin-bottom: 48px; }
.hero-proof { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; font-size: 0.875rem; color: #64748b; }
.hero-proof .divider { color: #334155; }
/* ======= PROBLEM ======= */
.problem { text-align: center; background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%); }
.stats-row { display: flex; justify-content: center; gap: 64px; margin-top: 48px; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 3rem; font-weight: 800; color: #3b82f6; }
.stat-label { font-size: 0.9rem; color: #64748b; }
/* ======= SOLUTION ======= */
.solution { text-align: center; }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 16px; }
.step { flex: 1; max-width: 320px; padding: 32px 24px; }
.step-number { font-size: 0.8rem; font-weight: 700; color: #3b82f6; letter-spacing: 1px; margin-bottom: 12px; }
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-title { font-size: 1.35rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step-body { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; }
.step-connector { width: 60px; height: 2px; background: linear-gradient(90deg, #3b82f6, #1e40af); margin-top: 80px; flex-shrink: 0; }
/* ======= CAPABILITIES ======= */
.capabilities { text-align: center; background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%); }
.capabilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 16px; }
.capability { background: #111d33; border: 1px solid #1e293b; border-radius: 12px; padding: 32px 24px; text-align: left; transition: all 0.2s ease; }
.capability:hover { border-color: #3b82f6; transform: translateY(-4px); }
.capability-icon { font-size: 2rem; margin-bottom: 16px; }
.capability h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.capability p { font-size: 0.9rem; color: #94a3b8; line-height: 1.6; }
/* ======= EXAMPLES ======= */
.examples { text-align: center; }
.examples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 16px; text-align: left; }
.example-card { background: #111d33; border: 1px solid #1e293b; border-radius: 16px; padding: 32px; }
.example-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid #1e293b; }
.example-avatar { font-size: 2.5rem; }
.example-name { font-size: 1.15rem; font-weight: 700; color: #fff; }
.example-company { font-size: 0.85rem; color: #64748b; margin-top: 2px; }
.example-timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid rgba(30,41,59,0.5); }
.timeline-item:last-child { border-bottom: none; }
.timeline-time { font-size: 0.8rem; font-weight: 600; color: #3b82f6; white-space: nowrap; min-width: 70px; padding-top: 2px; }
.timeline-event { font-size: 0.9rem; color: #cbd5e1; line-height: 1.5; }
.timeline-item--result { background: rgba(59,130,246,0.05); border-radius: 8px; padding: 12px 16px !important; margin-top: 4px; border-bottom: none !important; }
.timeline-item--result .timeline-event { color: #fff; }
/* Trigger */
.example-trigger { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.15); border-radius: 10px; padding: 16px 20px; margin-bottom: 24px; }
.trigger-label { font-size: 0.8rem; font-weight: 600; color: #64748b; margin-bottom: 6px; }
.trigger-message { font-size: 1.05rem; color: #fff; font-style: italic; font-weight: 500; }
/* Result bar */
.example-result { margin-top: 20px; padding: 16px 20px; background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(59,130,246,0.08)); border: 1px solid rgba(34,197,94,0.2); border-radius: 10px; font-size: 0.9rem; color: #cbd5e1; line-height: 1.5; }
.result-label { font-weight: 700; color: #22c55e; }
@media (max-width: 1024px) {
.capabilities-grid { grid-template-columns: repeat(2, 1fr); }
.examples-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
.capabilities-grid { grid-template-columns: 1fr; }
}
/* ======= DIFFERENTIATORS ======= */
.differentiators { background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%); }
.diff-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.diff-sub { font-size: 1.05rem; color: #94a3b8; margin: 16px 0 32px; }
.diff-list { display: flex; flex-direction: column; gap: 16px; }
.diff-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 1rem; }
.diff-check { color: #3b82f6; font-weight: 700; flex-shrink: 0; }
/* Employee Card */
.employee-card { background: #111d33; border: 1px solid #1e293b; border-radius: 16px; padding: 32px; text-align: center; }
.employee-avatar { position: relative; width: 80px; height: 80px; margin: 0 auto 20px; }
.avatar-inner { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #1e40af); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; color: #fff; }
.status-dot { position: absolute; bottom: 4px; right: 4px; width: 16px; height: 16px; background: #22c55e; border-radius: 50%; border: 3px solid #111d33; }
.employee-name { font-size: 1.2rem; font-weight: 700; color: #fff; }
.employee-role { font-size: 0.9rem; color: #3b82f6; margin-bottom: 4px; }
.employee-email { font-size: 0.85rem; color: #64748b; margin-bottom: 16px; }
.employee-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.tag { padding: 4px 12px; background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 100px; font-size: 0.8rem; color: #3b82f6; }
.employee-status { font-size: 0.85rem; color: #22c55e; display: flex; align-items: center; justify-content: center; gap: 8px; }
.pulse { width: 8px; height: 8px; background: #22c55e; border-radius: 50%; animation: pulse 2s ease infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
/* ======= USE CASES ======= */
.use-cases { text-align: center; }
.roles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 16px; }
.role-card { background: #111d33; border: 1px solid #1e293b; border-radius: 12px; padding: 28px 20px; text-align: center; transition: all 0.2s ease; }
.role-card:hover { border-color: #3b82f6; transform: translateY(-4px); }
.role-icon { font-size: 2rem; margin-bottom: 12px; }
.role-card h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 8px; }
.role-card p { font-size: 0.875rem; color: #94a3b8; line-height: 1.5; }
.role-card--cta { border-style: dashed; border-color: #334155; }
/* ======= PRICING ======= */
.pricing { text-align: center; background: linear-gradient(180deg, #0a1628 0%, #0f1d32 100%); }
.pricing-cards { display: flex; justify-content: center; gap: 32px; margin-top: 16px; }
.pricing-card { background: #111d33; border: 1px solid #1e293b; border-radius: 16px; padding: 40px 32px; width: 100%; max-width: 420px; text-align: left; position: relative; }
.pricing-card--featured { border-color: #3b82f6; box-shadow: 0 0 40px rgba(59,130,246,0.15); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: #3b82f6; color: #fff; padding: 4px 16px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.pricing-name { font-size: 1.1rem; font-weight: 600; color: #94a3b8; margin-bottom: 8px; }
.price-amount { font-size: 3rem; font-weight: 800; color: #fff; }
.price-period { font-size: 0.9rem; color: #64748b; margin-left: 4px; }
.pricing-desc { font-size: 0.9rem; color: #64748b; margin: 12px 0 24px; }
.pricing-features { margin-bottom: 32px; }
.pricing-features li { padding: 8px 0; font-size: 0.95rem; color: #cbd5e1; border-bottom: 1px solid #1e293b; }
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓ '; color: #3b82f6; font-weight: 700; }
/* Guarantee */
.pricing-guarantee { text-align: center; margin-top: 48px; padding: 32px; background: rgba(59,130,246,0.05); border: 1px solid rgba(59,130,246,0.15); border-radius: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.guarantee-badge { font-size: 2.5rem; margin-bottom: 12px; }
.pricing-guarantee h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.pricing-guarantee p { font-size: 0.95rem; color: #94a3b8; line-height: 1.6; }
/* ======= FAQ ======= */
.faq { text-align: center; }
.faq-list { max-width: 700px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid #1e293b; }
.faq-item summary { padding: 20px 0; font-size: 1.05rem; font-weight: 600; color: #fff; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: #3b82f6; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 0 20px; font-size: 0.95rem; color: #94a3b8; line-height: 1.6; }
/* ======= CTA ======= */
.cta { text-align: center; padding: 120px 0; background: linear-gradient(180deg, #0f1d32 0%, #0a1628 100%); }
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-sub { font-size: 1.1rem; color: #94a3b8; margin-bottom: 32px; }
/* ======= FOOTER ======= */
.footer { padding: 48px 0 24px; border-top: 1px solid #1e293b; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.footer-tagline { font-size: 0.85rem; color: #64748b; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.9rem; color: #64748b; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: #475569; }
/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
.diff-inner { grid-template-columns: 1fr; gap: 48px; }
.roles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
.section { padding: 64px 0; }
.nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,22,40,0.98); padding: 24px; gap: 16px; border-bottom: 1px solid #1e293b; }
.nav-links.open { display: flex; }
.mobile-toggle { display: block; }
.hero { min-height: auto; padding: 120px 0 80px; }
.hero-actions { flex-direction: column; align-items: center; }
.steps { flex-direction: column; align-items: center; }
.step-connector { width: 2px; height: 40px; margin: 0; }
.stats-row { flex-direction: column; gap: 32px; }
.pricing-cards { flex-direction: column; align-items: center; }
.roles-grid { grid-template-columns: 1fr; }
.footer-inner { flex-direction: column; gap: 24px; text-align: center; }
.footer-links { justify-content: center; }
}