-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpractice.html
More file actions
659 lines (625 loc) · 24.4 KB
/
practice.html
File metadata and controls
659 lines (625 loc) · 24.4 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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice Service Line | Crema Positioning Hub</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
--black: #000000;
--white: #FFFFFF;
--gray-50: #FAFAFA;
--gray-100: #F5F5F5;
--gray-200: #E5E5E5;
--gray-300: #D4D4D4;
--gray-400: #A3A3A3;
--gray-500: #737373;
--gray-600: #525252;
--gray-700: #404040;
--gray-800: #262626;
--gray-900: #171717;
--teal: #065E5D;
--teal-light: #0A7A79;
--rust: #A74914;
--rust-light: #C85A1C;
--gold: #B9841C;
--gold-light: #D49A24;
--shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
--shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
--shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
background: var(--white);
color: var(--gray-900);
line-height: 1.6;
}
.header {
background: var(--white);
border-bottom: 1px solid var(--gray-200);
padding: 1rem 2rem;
position: sticky;
top: 0;
z-index: 100;
}
.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo img {
height: 28px;
width: auto;
}
.nav {
display: flex;
gap: 0.5rem;
align-items: center;
}
.nav > a {
text-decoration: none;
color: var(--gray-600);
font-weight: 500;
font-size: 0.875rem;
padding: 0.5rem 0.875rem;
border-radius: 6px;
transition: all 0.2s;
}
.nav > a:hover {
color: var(--black);
background: var(--gray-100);
}
.nav > a.active {
color: var(--black);
background: var(--gray-100);
}
.nav-dropdown {
position: relative;
}
.nav-dropdown-trigger {
display: flex;
align-items: center;
gap: 0.35rem;
text-decoration: none;
color: var(--gray-600);
font-weight: 500;
font-size: 0.875rem;
padding: 0.5rem 0.875rem;
border-radius: 6px;
transition: all 0.2s;
cursor: pointer;
background: none;
border: none;
font-family: inherit;
}
.nav-dropdown-trigger:hover {
color: var(--black);
background: var(--gray-100);
}
.nav-dropdown-trigger svg {
transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg {
transform: rotate(180deg);
}
.nav-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background: var(--white);
border: 1px solid var(--gray-200);
border-radius: 8px;
box-shadow: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
min-width: 220px;
padding: 0.5rem;
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: all 0.2s;
z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(4px);
}
.nav-dropdown-menu a {
display: block;
padding: 0.625rem 0.875rem;
text-decoration: none;
color: var(--gray-600);
font-size: 0.875rem;
border-radius: 6px;
transition: all 0.15s;
}
.nav-dropdown-menu a:hover {
background: var(--gray-100);
color: var(--black);
}
.nav-dropdown-menu hr {
border: none;
border-top: 1px solid var(--gray-200);
margin: 0.5rem 0;
}
.page-header {
background: var(--gold);
color: var(--white);
padding: 3.5rem 2rem;
}
.page-header-content {
max-width: 900px;
margin: 0 auto;
}
.breadcrumb {
font-size: 0.8rem;
opacity: 0.8;
margin-bottom: 1rem;
}
.breadcrumb a { color: white; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
font-size: 2.75rem;
font-weight: 700;
margin-bottom: 0.25rem;
letter-spacing: -0.02em;
}
.page-header .subtitle {
font-size: 1.25rem;
opacity: 0.9;
margin-bottom: 1rem;
}
.page-header p {
font-size: 1.1rem;
opacity: 0.95;
}
.main {
max-width: 900px;
margin: 0 auto;
padding: 3rem 2rem;
}
.service-nav {
display: flex;
gap: 0.75rem;
margin-bottom: 2rem;
}
.service-nav a {
padding: 0.6rem 1.25rem;
background: var(--white);
border-radius: 8px;
text-decoration: none;
color: var(--gray-500);
font-weight: 500;
font-size: 0.9rem;
border: 1px solid var(--gray-200);
transition: all 0.2s;
}
.service-nav a:hover {
color: var(--black);
border-color: var(--gray-300);
}
.service-nav a.active {
background: var(--gold);
color: white;
border-color: var(--gold);
}
.quick-box {
background: var(--gray-50);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
border: 1px solid var(--gray-200);
border-left: 4px solid var(--gold);
}
.quick-box h2 {
color: var(--gray-500);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 1.25rem;
font-weight: 600;
}
.quick-grid {
display: grid;
grid-template-columns: auto 1fr;
gap: 0.6rem 2rem;
}
.quick-grid dt {
font-weight: 600;
color: var(--black);
font-size: 0.9rem;
}
.quick-grid dd {
color: var(--gray-600);
font-size: 0.9rem;
}
.content-section {
background: var(--white);
border-radius: 12px;
padding: 2rem;
margin-bottom: 2rem;
border: 1px solid var(--gray-200);
}
.content-section h2 {
color: var(--black);
font-size: 1.5rem;
margin-bottom: 1rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid var(--gray-200);
font-weight: 600;
}
.content-section h3 {
color: var(--gold);
font-size: 1.1rem;
margin: 1.75rem 0 0.75rem;
font-weight: 600;
}
.content-section p {
margin-bottom: 1rem;
color: var(--gray-600);
}
.content-section ul {
margin: 1rem 0 1rem 1.5rem;
color: var(--gray-600);
}
.content-section li {
margin-bottom: 0.5rem;
}
.highlight-box {
background: var(--gray-900);
color: white;
padding: 1.75rem 2rem;
border-radius: 8px;
margin: 1.5rem 0;
text-align: center;
}
.highlight-box p {
font-size: 1.2rem;
font-style: italic;
margin: 0;
color: white;
}
.framework-visual {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1rem;
margin: 1.5rem 0;
}
@media (max-width: 700px) {
.framework-visual { grid-template-columns: 1fr; }
}
.framework-pillar {
padding: 1.5rem;
border-radius: 8px;
text-align: center;
background: var(--gray-50);
border: 1px solid var(--gray-200);
}
.framework-pillar.postures {
border-top: 3px solid var(--gold);
}
.framework-pillar.disciplines {
border-top: 3px solid var(--rust);
}
.framework-pillar.structures {
border-top: 3px solid var(--teal);
}
.framework-pillar h4 {
color: var(--black);
margin-bottom: 0.25rem;
font-size: 1.1rem;
font-weight: 600;
}
.framework-pillar .label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 0.75rem;
font-weight: 600;
}
.framework-pillar.postures .label { color: var(--gold); }
.framework-pillar.disciplines .label { color: var(--rust); }
.framework-pillar.structures .label { color: var(--teal); }
.framework-pillar .items {
font-size: 0.85rem;
color: var(--gray-600);
}
.engagement-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1rem;
margin: 1.5rem 0;
}
.engagement-card {
background: var(--gray-50);
padding: 1.25rem;
border-radius: 8px;
border: 1px solid var(--gray-200);
}
.engagement-card h4 {
color: var(--black);
margin-bottom: 0.25rem;
font-weight: 600;
}
.engagement-card .meta {
color: var(--gold);
font-size: 0.75rem;
font-weight: 600;
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.03em;
}
.engagement-card p {
font-size: 0.85rem;
margin: 0;
color: var(--gray-600);
}
.challenge-grid {
display: grid;
gap: 1rem;
margin: 1.5rem 0;
}
.challenge-item {
background: var(--gray-50);
border-radius: 8px;
overflow: hidden;
border: 1px solid var(--gray-200);
}
.challenge-item .problem {
background: var(--gray-100);
padding: 1rem 1.25rem;
border-left: 3px solid var(--gray-400);
}
.challenge-item .problem h4 {
color: var(--gray-700);
font-size: 0.9rem;
margin: 0;
font-weight: 600;
font-style: italic;
}
.challenge-item .solution {
padding: 1rem 1.25rem;
}
.challenge-item .solution p {
margin: 0;
font-size: 0.9rem;
color: var(--gray-600);
}
.nav-footer {
display: flex;
justify-content: space-between;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid var(--gray-200);
}
.nav-footer a {
color: var(--black);
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: color 0.2s;
}
.nav-footer a:hover {
color: var(--gold);
}
.footer {
background: var(--gray-900);
color: var(--gray-400);
padding: 2.5rem 2rem;
text-align: center;
}
.footer p {
font-size: 0.85rem;
}
@media (max-width: 768px) {
.header-content { flex-direction: column; gap: 1rem; }
.nav { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.page-header h1 { font-size: 2rem; }
.service-nav { flex-wrap: wrap; }
}
</style>
</head>
<body>
<header class="header">
<div class="header-content">
<a href="index.html" class="logo">
<img src="assets/logo-black.png" alt="Crema">
</a>
<nav class="nav">
<a href="index.html">Home</a>
<div class="nav-dropdown">
<button class="nav-dropdown-trigger">
Positioning
<svg width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 4.5L6 7.5L9 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</button>
<div class="nav-dropdown-menu">
<a href="who-is-crema.html">Who is Crema</a>
<a href="icp.html">Ideal Customer Profile</a>
<a href="pov.html">Point of View</a>
<a href="uvp.html">Unique Value Proposition</a>
</div>
</div>
<div class="nav-dropdown">
<button class="nav-dropdown-trigger">
Services
<svg width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 4.5L6 7.5L9 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</button>
<div class="nav-dropdown-menu">
<a href="services.html">Service Lines Overview</a>
<hr>
<a href="strategy.html">Strategy</a>
<a href="experience.html">Experience</a>
<a href="practice.html">Practice</a>
</div>
</div>
<div class="nav-dropdown">
<button class="nav-dropdown-trigger">
Playbooks
<svg width="12" height="12" viewBox="0 0 12 12" fill="none"><path d="M3 4.5L6 7.5L9 4.5" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>
</button>
<div class="nav-dropdown-menu">
<a href="sop.html">Sales SOPs</a>
<a href="gtm-roadmap.html">2026 GTM Roadmap</a>
</div>
</div>
</nav>
</div>
</header>
<div class="page-header">
<div class="page-header-content">
<div class="breadcrumb"><a href="index.html">Home</a> / <a href="services.html">Services</a> / Practice</div>
<h1>Practice</h1>
<div class="subtitle">Product Culture & Capability Building</div>
<p>We help organizations build the internal culture, practices, and structures needed to sustain product thinking long-term.</p>
</div>
</div>
<main class="main">
<div class="service-nav">
<a href="strategy.html">Strategy</a>
<a href="experience.html">Experience</a>
<a href="practice.html" class="active">Practice</a>
</div>
<div class="quick-box">
<h2>Quick Reference</h2>
<dl class="quick-grid">
<dt>Service Line</dt>
<dd>Practice</dd>
<dt>Positioning</dt>
<dd>Product Culture & Capability Building</dd>
<dt>Framework</dt>
<dd>People of Product</dd>
<dt>Typical Duration</dt>
<dd>Ongoing / Embedded</dd>
</dl>
</div>
<section class="content-section">
<h2>Overview</h2>
<p>Practice is the service line that addresses the human side of technology change. It recognizes a fundamental truth:</p>
<div class="highlight-box">
<p>Technology alone doesn't transform organizations—people do.</p>
</div>
<p>Service organizations that invest in digital products often struggle with adoption, sustainability, and evolution. They build great software that nobody uses, or that works for a while before reverting to old ways of working. Practice exists to solve this problem—building the internal culture and capability that enables product thinking to take root and thrive.</p>
<h3>Trigger Moments</h3>
<ul>
<li>"We built it but nobody uses it"</li>
<li>"We want to build product capability internally, not just outsource forever"</li>
<li>"Our teams don't know how to work on product development"</li>
<li>"We keep falling back into old ways of working"</li>
<li>"We're hiring product people but they're not succeeding"</li>
</ul>
</section>
<section class="content-section">
<h2>The People of Product Framework</h2>
<p>Practice work is grounded in the People of Product framework—three interconnected dimensions that enable sustainable product culture:</p>
<div class="framework-visual">
<div class="framework-pillar postures">
<h4>Postures</h4>
<div class="label">Mindset</div>
<div class="items">Curiosity, Humility, Confidence, Resilience</div>
</div>
<div class="framework-pillar disciplines">
<h4>Disciplines</h4>
<div class="label">Routines</div>
<div class="items">Explore, Feedback, Contribute, Rest</div>
</div>
<div class="framework-pillar structures">
<h4>Structures</h4>
<div class="label">Flexibility</div>
<div class="items">Purpose, Resources, People, Commitment</div>
</div>
</div>
<h3>Postures (Mindset)</h3>
<p>The mental models and attitudes that enable product thinking. Without <strong>curiosity</strong>, teams don't ask the right questions. Without <strong>humility</strong>, they don't listen to users. Without <strong>confidence</strong>, they can't make decisions. Without <strong>resilience</strong>, they give up when things don't work immediately.</p>
<h3>Disciplines (Routines)</h3>
<p>The recurring practices that reinforce product thinking. <strong>Explore</strong> means regularly engaging with users and new ideas. <strong>Feedback</strong> means creating and using feedback loops. <strong>Contribute</strong> means sharing knowledge and building collective capability. <strong>Rest</strong> means sustainable pace—recovery is essential to performance.</p>
<h3>Structures (Flexibility)</h3>
<p>The organizational elements that enable or constrain product work. Teams need clear <strong>purpose</strong>, adequate <strong>resources</strong>, the right <strong>people</strong>, and sustained organizational <strong>commitment</strong>. Even teams with the right mindset and habits will fail without structural support.</p>
</section>
<section class="content-section">
<h2>Engagement Models</h2>
<div class="engagement-grid">
<div class="engagement-card">
<h4>Embedded Practice Lead</h4>
<div class="meta">$15K-$25K/month • 6-12 months</div>
<p>Crema practice lead works alongside internal teams providing coaching, facilitation, and guidance.</p>
</div>
<div class="engagement-card">
<h4>Practice Workshops</h4>
<div class="meta">$5K-$15K each • Half-day to 2 days</div>
<p>Focused sessions on specific topics—team health, feedback loops, product leadership.</p>
</div>
<div class="engagement-card">
<h4>Culture Assessment</h4>
<div class="meta">$30K-$60K • 3-6 weeks</div>
<p>Comprehensive evaluation of current product culture with prioritized recommendations.</p>
</div>
<div class="engagement-card">
<h4>Executive Advisory</h4>
<div class="meta">$5K-$10K/month • Ongoing</div>
<p>Advisory relationship with product and executive leadership navigating transformation.</p>
</div>
</div>
</section>
<section class="content-section">
<h2>Common Challenges We Address</h2>
<div class="challenge-grid">
<div class="challenge-item">
<div class="problem">
<h4>"We hired a product manager but they're failing"</h4>
</div>
<div class="solution">
<p>Often a structural issue—the PM doesn't have authority, resources, or organizational support to succeed. We work with leadership to clarify role, authority, and support systems while coaching the PM on navigating organizational dynamics.</p>
</div>
</div>
<div class="challenge-item">
<div class="problem">
<h4>"Our teams keep reverting to old ways of working"</h4>
</div>
<div class="solution">
<p>Disciplines and structures aren't reinforcing new behaviors. Change was event-based, not embedded. We establish routines that reinforce product behaviors, address structural barriers, and build peer accountability.</p>
</div>
</div>
<div class="challenge-item">
<div class="problem">
<h4>"We built it but nobody uses it"</h4>
</div>
<div class="solution">
<p>Adoption was an afterthought. Users weren't involved. Change wasn't managed. We do retroactive adoption work—understand barriers, rebuild trust, create pathways to use. For future products: embed Practice from the start.</p>
</div>
</div>
<div class="challenge-item">
<div class="problem">
<h4>"Leadership says they want innovation but punishes risk"</h4>
</div>
<div class="solution">
<p>Misalignment between stated values and actual behavior. We work with leadership on walking the talk, create safe spaces for experimentation, and celebrate learning from failure.</p>
</div>
</div>
</div>
</section>
<section class="content-section">
<h2>Conversation Starters</h2>
<p>Use these to identify Practice opportunities:</p>
<ul>
<li>"When you launch this product, how confident are you that people will actually use it?"</li>
<li>"What happens to technology initiatives here after they launch? Do they stick?"</li>
<li>"Tell me about your internal product capability—do you have people who think this way?"</li>
<li>"How do your teams handle uncertainty and ambiguity?"</li>
<li>"What happens when something doesn't work on the first try?"</li>
</ul>
</section>
<div class="nav-footer">
<a href="experience.html">← Experience</a>
<a href="services.html">Back to Services Overview →</a>
</div>
</main>
<footer class="footer">
<p>Crema Positioning Hub • Internal Team Resource • Updated January 2026</p>
</footer>
</body>
</html>