-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
690 lines (629 loc) · 31.5 KB
/
Copy pathdemo.html
File metadata and controls
690 lines (629 loc) · 31.5 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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Print Ready Checker — Demo & Progress Update</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--bg: #0F172A;
--surface: #1E293B;
--surface2: #263347;
--border: #334155;
--orange: #F97316;
--orange-dim: rgba(249,115,22,0.15);
--success: #22C55E;
--success-dim: rgba(34,197,94,0.12);
--warning: #EAB308;
--warning-dim: rgba(234,179,8,0.12);
--error: #EF4444;
--info: #3B82F6;
--text: #F1F5F9;
--text-muted: #94A3B8;
--text-dim: #64748B;
}
html, body {
height: 100%;
overflow: hidden;
font-family: 'Inter', sans-serif;
background: var(--bg);
color: var(--text);
}
/* ── LAYOUT ── */
.deck { width: 100vw; height: 100vh; position: relative; overflow: hidden; }
.slide {
position: absolute; inset: 0;
display: flex; flex-direction: column;
padding: 48px 64px;
opacity: 0; transform: translateX(60px);
transition: opacity 0.4s ease, transform 0.4s ease;
pointer-events: none; overflow-y: auto;
}
.slide.active {
opacity: 1; transform: translateX(0);
pointer-events: auto;
}
.slide.exit-left { opacity: 0; transform: translateX(-60px); }
.slide.exit-right { opacity: 0; transform: translateX(60px); }
.slide.from-left { transform: translateX(-60px); opacity: 0; transition: none !important; }
/* ── PROGRESS BAR ── */
.progress-bar {
position: fixed; bottom: 0; left: 0; right: 0;
height: 3px; background: var(--border); z-index: 100;
}
.progress-fill {
height: 100%; background: var(--orange);
transition: width 0.35s ease;
}
/* ── NAV ── */
.nav {
position: fixed; bottom: 16px; right: 24px;
display: flex; align-items: center; gap: 12px; z-index: 100;
}
.slide-counter {
font-size: 12px; color: var(--text-muted); font-weight: 500;
letter-spacing: 0.05em;
}
.nav-btn {
width: 36px; height: 36px;
border-radius: 50%;
border: 1px solid var(--border);
background: var(--surface);
color: var(--text);
cursor: pointer; font-size: 16px;
display: flex; align-items: center; justify-content: center;
transition: all 0.2s;
}
.nav-btn:hover { border-color: var(--orange); color: var(--orange); }
.nav-btn:disabled { opacity: 0.3; cursor: default; }
.slide-dots {
position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
display: flex; gap: 6px; z-index: 100;
}
.dot {
width: 6px; height: 6px; border-radius: 50%;
background: var(--border); cursor: pointer;
transition: all 0.2s;
}
.dot.active { background: var(--orange); width: 20px; border-radius: 3px; }
/* ── SHARED COMPONENTS ── */
.badge {
display: inline-block;
font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
padding: 4px 10px; border-radius: 20px;
}
.badge-orange { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--orange); }
.badge-success { background: var(--success-dim); color: var(--success); border: 1px solid var(--success); }
.badge-info { background: rgba(59,130,246,0.12); color: var(--info); border: 1px solid var(--info); }
.badge-warning { background: var(--warning-dim); color: var(--warning); border: 1px solid var(--warning); }
.badge-muted { background: rgba(148,163,184,0.1); color: var(--text-muted); border: 1px solid var(--text-dim); }
.card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 12px; padding: 20px 24px;
}
.tag-line {
font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
color: var(--orange); margin-bottom: 10px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; }
h3 { font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 700; }
.subhead { font-size: clamp(0.95rem, 1.8vw, 1.2rem); color: var(--text-muted); line-height: 1.6; }
.check { color: var(--success); }
.cross { color: var(--error); }
.warn { color: var(--warning); }
/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
/* ── SLIDE 1: COVER ── */
#s1 {
justify-content: center; align-items: center; text-align: center;
background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(249,115,22,0.08) 0%, transparent 70%),
var(--bg);
}
#s1 .logo-mark {
width: 72px; height: 72px; border-radius: 20px;
background: linear-gradient(135deg, #F97316, #EA580C);
display: flex; align-items: center; justify-content: center;
font-size: 36px; margin: 0 auto 28px; box-shadow: 0 0 40px rgba(249,115,22,0.4);
}
#s1 h1 { font-size: clamp(3rem, 7vw, 5.5rem); margin-bottom: 16px; }
#s1 .tagline {
font-size: clamp(1.1rem, 2.5vw, 1.6rem); color: var(--orange);
font-weight: 600; font-style: italic; margin-bottom: 24px;
}
#s1 .descriptor {
font-size: clamp(0.9rem, 1.8vw, 1.15rem); color: var(--text-muted);
max-width: 600px; margin: 0 auto; line-height: 1.7;
}
.pill-row {
display: flex; gap: 12px; justify-content: center; margin-top: 32px; flex-wrap: wrap;
}
.pill {
background: var(--surface); border: 1px solid var(--border);
border-radius: 999px; padding: 8px 20px;
font-size: 14px; font-weight: 600; color: var(--text-muted);
}
/* ── PILLAR CARDS ── */
.pillar {
background: var(--surface); border: 1px solid var(--border);
border-radius: 12px; padding: 24px;
border-top: 3px solid var(--orange);
}
.pillar-icon { font-size: 32px; margin-bottom: 12px; }
.pillar h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.pillar p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
/* ── STAT CARDS ── */
.stat-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 12px; padding: 20px 24px; text-align: center;
}
.stat-card .number {
font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 900; color: var(--orange);
line-height: 1;
}
.stat-card .label { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.stat-card.st-done .number { color: var(--success); }
.stat-card.st-progress .number { color: var(--warning); }
.stat-card.st-todo .number { color: var(--text-dim); }
/* ── SECTION LABEL ── */
.section-label {
display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
}
.section-label .line { flex: 1; height: 1px; background: var(--border); }
/* ── LEGEND ── */
.legend-row { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 22px; }
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); font-weight: 600; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.legend-dot.done { background: var(--success); }
.legend-dot.progress { background: var(--warning); }
.legend-dot.todo { background: var(--text-dim); }
/* ── ROADMAP STEP ── */
.roadmap-step {
background: var(--surface); border: 1px solid var(--border);
border-left: 4px solid var(--text-dim);
border-radius: 10px; padding: 13px 18px;
display: flex; align-items: center; gap: 14px;
}
.roadmap-step .step-num {
width: 28px; height: 28px; border-radius: 50%;
background: var(--surface2); color: var(--text-muted);
font-weight: 800; font-size: 13px;
display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.roadmap-step .step-body { flex: 1; font-size: 14px; }
.roadmap-step .step-status { font-size: 16px; flex-shrink: 0; }
.roadmap-step.rs-done { border-left-color: var(--success); }
.roadmap-step.rs-done .step-num { background: var(--success); color: #06280f; }
.roadmap-step.rs-progress { border-left-color: var(--warning); background: var(--warning-dim); }
.roadmap-step.rs-progress .step-num { background: var(--warning); color: #2b2200; }
.roadmap-step.rs-todo { border-left-color: var(--text-dim); opacity: 0.65; }
.roadmap-step.rs-todo .step-num { background: var(--surface2); color: var(--text-dim); }
.roadmap-arrow { text-align: center; font-size: 16px; color: var(--text-dim); padding: 1px 0; }
.roadmap-footnote {
margin-top: 14px; display: flex; align-items: center; gap: 10px;
font-size: 12px; color: var(--text-dim); border-top: 1px dashed var(--border); padding-top: 12px;
}
/* ── SCREENSHOT FRAME ── */
.screenshot-grid { display: grid; gap: 18px; }
.screenshot-frame {
background: #F8F9FB; border-radius: 12px; padding: 14px;
box-shadow: 0 8px 24px rgba(0,0,0,0.25);
display: flex; align-items: flex-start; justify-content: center;
cursor: pointer; transition: transform 0.2s;
}
.screenshot-frame:hover { transform: translateY(-3px); }
.screenshot-frame img { width: 100%; max-width: 220px; display: block; border-radius: 4px; }
.screenshot-caption { font-size: 12.5px; color: var(--text-muted); margin-top: 10px; text-align: center; line-height: 1.5; }
.screenshot-col { display: flex; flex-direction: column; align-items: center; }
/* ── SPRINT / TIMELINE ROW ── */
.sprint-row {
display: grid; grid-template-columns: 110px 80px 1fr 20px 150px;
padding: 14px 0; border-top: 1px solid var(--border);
align-items: center;
}
.sprint-row:first-child { border-top: none; }
.sprint-num { grid-column: 1; font-weight: 700; font-size: 13px; color: var(--orange); }
.sprint-name { grid-column: 3; font-size: 14px; }
.sprint-dur { grid-column: 5; font-size: 12px; color: var(--text-muted); text-align: left; }
.sprint-dur.done { color: var(--success); font-weight: 600; }
.sprint-row.past { opacity: 0.55; }
.sprint-row.current {
background: rgba(249,115,22,0.07);
margin: 0 -24px; padding-left: 24px; padding-right: 24px;
}
.now-tag {
font-size: 9px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
color: var(--orange); background: var(--orange-dim); border: 1px solid var(--orange);
border-radius: 20px; padding: 1px 6px; margin-left: 6px; vertical-align: middle;
}
/* ── CALLOUT ── */
.callout {
border-radius: 10px; padding: 14px 18px; font-size: 13px; line-height: 1.6;
background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.3); color: var(--text-muted);
}
.callout strong { color: var(--text); }
/* ── HIGHLIGHT BANNER ── */
.highlight-banner {
background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.04));
border: 1px solid rgba(249,115,22,0.3);
border-radius: 12px; padding: 26px 24px; text-align: center; margin-top: 24px;
}
.highlight-banner .big { font-size: clamp(1.8rem, 3.2vw, 2.6rem); font-weight: 900; color: var(--orange); }
.highlight-banner .label { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
/* ── SUMMARY ── */
#s7 {
justify-content: center; align-items: center; text-align: center;
background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(34,197,94,0.06) 0%, transparent 70%),
var(--bg);
}
.summary-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
max-width: 960px; margin: 32px auto;
}
.sum-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 12px; padding: 18px;
text-align: left;
}
.sum-card .label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 8px; }
.sum-card .value { font-size: 13px; line-height: 1.6; }
.sum-card .value li { list-style: none; padding: 2px 0; }
.sum-card.sc-done { border-top: 3px solid var(--success); }
.sum-card.sc-progress { border-top: 3px solid var(--warning); }
.sum-card.sc-todo { border-top: 3px solid var(--text-dim); }
.sum-card.sc-next { border-top: 3px solid var(--info); }
/* LIGHTBOX */
.lightbox {
position: fixed; inset: 0; background: rgba(0,0,0,0.9);
z-index: 1000; display: none; align-items: center; justify-content: center;
flex-direction: column; gap: 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; background: #F8F9FB; }
.lightbox-close {
position: absolute; top: 20px; right: 24px;
font-size: 28px; cursor: pointer; color: white; background: none; border: none;
}
.lightbox-caption { font-size: 13px; color: var(--text-muted); }
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
@media (max-width: 900px) {
.slide { padding: 32px 28px; }
.grid-2, .grid-3 { grid-template-columns: 1fr; }
.summary-grid { grid-template-columns: repeat(2, 1fr); }
.screenshot-grid { grid-template-columns: 1fr !important; }
.phase-track { flex-direction: column; }
.phase-connector { display: none; }
}
</style>
</head>
<body>
<div class="deck" id="deck">
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 1: COVER -->
<!-- ══════════════════════════════════════════ -->
<div class="slide active" id="s1">
<div class="logo-mark">🖨️</div>
<h1>Print Ready Checker</h1>
<p class="tagline">From pitch to product.</p>
<p class="descriptor">
A progress update and live walkthrough of what's built, what's in flight, and what's next —
mapped against the user journey we pitched.
</p>
<div class="pill-row">
<span class="pill">✅ Core scan flow live</span>
<span class="pill">🟡 AI fixes in progress</span>
<span class="pill">⚪ Bleed guide + credits next</span>
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 2: RECAP -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s2">
<div class="tag-line">Quick Recap</div>
<h2>Three checks. One goal:<br>print-ready before you order.</h2>
<p class="subhead" style="margin:12px 0 28px;">What we pitched — DPI, CMYK, and bleed, without ever leaving Canva.</p>
<div class="grid-3">
<div class="pillar">
<div class="pillar-icon">🔍</div>
<h3>DPI Checker & AI Upscaler</h3>
<p>Reads every image on canvas, grades effective DPI at print size, and one-click upscales anything too blurry to print.</p>
</div>
<div class="pillar">
<div class="pillar-icon">🎨</div>
<h3>CMYK Colour Previewer</h3>
<p>Flags colours that fall outside the CMYK gamut and previews how they'll actually look once printed.</p>
</div>
<div class="pillar">
<div class="pillar-icon">📐</div>
<h3>Bleed & Safe Zone Guides</h3>
<p>Product-specific bleed, trim, and safe zone specs — so nothing gets cut off or printed with a white edge.</p>
</div>
</div>
<div class="callout" style="margin-top:24px;">
<strong>This deck picks up from there:</strong> here's exactly what's shipped, what's mid-build, and what's still ahead — plus a live look at the app as it stands today.
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 3: ROADMAP -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s3">
<div class="tag-line">Product Roadmap</div>
<h2>Here's exactly where we are.</h2>
<p class="subhead" style="margin:10px 0 20px;">Mapped step-by-step against the user journey we pitched.</p>
<div class="grid-3" style="margin-bottom:20px;">
<div class="stat-card st-done"><div class="number">4</div><div class="label">Steps done</div></div>
<div class="stat-card st-progress"><div class="number">2</div><div class="label">In progress</div></div>
<div class="stat-card st-todo"><div class="number">2</div><div class="label">Yet to start</div></div>
</div>
<div class="legend-row">
<div class="legend-item"><span class="legend-dot done"></span> Done</div>
<div class="legend-item"><span class="legend-dot progress"></span> In Progress</div>
<div class="legend-item"><span class="legend-dot todo"></span> Yet to Start</div>
</div>
<div style="display:flex; flex-direction:column; gap:6px;">
<div class="roadmap-step rs-done"><div class="step-num">1</div><div class="step-body">App setup — configuration & onboarding flow, run locally <span style="color:var(--text-dim);">(not yet published to the Canva Marketplace)</span></div><div class="step-status">✅</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-done"><div class="step-num">2</div><div class="step-body">Select your print product — T-shirt, poster, business card, mug, sticker…</div><div class="step-status">✅</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-done"><div class="step-num">3</div><div class="step-body">Click "Scan Design" — takes ~3 seconds</div><div class="step-status">✅</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-done"><div class="step-num">4</div><div class="step-body">Three-pillar results panel: DPI · colour gamut · bleed & safe zone</div><div class="step-status">✅</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-progress"><div class="step-num">5</div><div class="step-body">Click "Fix" on a blurry image → AI upscales → before/after preview → Apply</div><div class="step-status">🟡</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-progress"><div class="step-num">6</div><div class="step-body">Toggle "Print Preview" → see simulated CMYK on canvas → toggle off</div><div class="step-status">🟡</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-todo"><div class="step-num">7</div><div class="step-body">Bleed & safe zone guide rendered on the main design screen</div><div class="step-status">⚪</div></div>
<div class="roadmap-arrow">↓</div>
<div class="roadmap-step rs-todo"><div class="step-num">8</div><div class="step-body">Credit system for AI fixes</div><div class="step-status">⚪</div></div>
</div>
<div class="roadmap-footnote">
<span>Then:</span> <span class="badge badge-muted">Error handling & UI improvements</span>
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 4: LIVE DEMO GALLERY -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s4">
<div class="tag-line">Live Demo</div>
<h2>See it in action.</h2>
<p class="subhead" style="margin:10px 0 20px;">A quick look at where the app stands today — click any screen to enlarge.</p>
<div class="screenshot-grid" style="grid-template-columns:repeat(3,1fr);">
<div class="screenshot-col">
<div class="screenshot-frame" onclick="openLightbox('./docs/demo images/image3.png','Custom width and height — Run Print Check unlocks')">
<img src="./docs/demo images/image3.png" alt="Custom width and height fields">
</div>
<div class="screenshot-caption">Custom size + Run Print Check</div>
</div>
<div class="screenshot-col">
<div class="screenshot-frame" onclick="openLightbox('./docs/demo images/image4.png','Export panel — file type, size, compression, page range')">
<img src="./docs/demo images/image4.png" alt="Export panel">
</div>
<div class="screenshot-caption">Export panel</div>
</div>
<div class="screenshot-col">
<div class="screenshot-frame" onclick="openLightbox('./docs/demo images/image5.png','Print Check Report — DPI Score, Colour Score, Bleed & Safe Zone')">
<img src="./docs/demo images/image5.png" alt="Print check report with DPI, colour and bleed scores">
</div>
<div class="screenshot-caption">Print Check Report — DPI · Colour · Bleed</div>
</div>
</div>
<div class="callout" style="margin-top:20px; text-align:center; font-size:14px;">
🎥 <strong>We'll now switch over for a full live walkthrough of the app.</strong>
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 5: THE ASK -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s5">
<div class="tag-line">The Ask</div>
<h2>One dedicated account,<br>for dev and production.</h2>
<p class="subhead" style="margin:10px 0 28px;">Picsart Upscale — verified as a legitimate, documented Enterprise API.</p>
<div class="grid-2" style="gap:20px; margin-bottom:20px;">
<div class="stat-card">
<div class="number">1</div>
<div class="label">Dedicated developer account — dev & production</div>
</div>
<div class="stat-card">
<div class="number">~500</div>
<div class="label">Credits requested (≈ 100 upscale calls)</div>
</div>
</div>
<div class="card" style="border-left:3px solid var(--orange); margin-bottom:20px;">
<h3 style="margin-bottom:8px;">What we need</h3>
<p style="font-size:14px; color:var(--text-muted); line-height:1.7;">
A single dedicated developer account for the <strong style="color:var(--text)">Picsart Upscale API</strong> — the third-party service behind our AI image-upscale fix — provisioned with <strong style="color:var(--orange)">~500 credits</strong>, usable across both <strong style="color:var(--text)">development and production</strong>.
</p>
</div>
<div class="grid-2" style="gap:20px;">
<div class="card">
<h3 style="font-size:14px; margin-bottom:10px;">Why now</h3>
<p style="font-size:13px; color:var(--text-muted); line-height:1.7;">
Today we're spread across several personal free-credit accounts — no continuity, no single owner, and free-tier limits will get hit fast once the Fix feature ships. One account gives us one place for usage, billing, and credit tracking.
</p>
</div>
<div class="card">
<h3 style="font-size:14px; margin-bottom:10px;">Verified: Picsart Upscale is real</h3>
<p style="font-size:13px; color:var(--text-muted); line-height:1.7;">
Documented Enterprise API at <span style="color:var(--text)">docs.picsart.io</span> — 5 credits per standard upscale call (12 for Ultra Upscale). 500 credits ≈ 100 upscale calls for ongoing dev/testing.
</p>
</div>
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 6: NEXT STEPS & TIMELINE -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s6">
<div class="tag-line">Next Steps</div>
<h2>From here to app review.</h2>
<p class="subhead" style="margin:10px 0 20px;">3 weeks shipped so far — here's what's done, and what's left before Canva review.</p>
<div class="card">
<div class="sprint-row past">
<div class="sprint-num">Week 1</div>
<div class="sprint-name">Infrastructure setup and app creation with onboarding, plus print product & size selection UI</div>
<div class="sprint-dur done">✅ Done</div>
</div>
<div class="sprint-row past">
<div class="sprint-num">Week 2</div>
<div class="sprint-name">Export flow with page selection, plus DPI score calculation</div>
<div class="sprint-dur done">✅ Done</div>
</div>
<div class="sprint-row past">
<div class="sprint-num">Week 3</div>
<div class="sprint-name">CMYK colour gamut detection, plus bleed & safe zone report</div>
<div class="sprint-dur done">✅ Done</div>
</div>
<div class="sprint-row current">
<div class="sprint-num">Week 4<span class="now-tag">Now</span></div>
<div class="sprint-name">Complete in-progress items — AI upscale Fix & Apply, CMYK Print Preview toggle <span style="color:var(--text-dim);">(pending dedicated developer account)</span></div>
<div class="sprint-dur">This week</div>
</div>
<div class="sprint-row">
<div class="sprint-num">Week 5</div>
<div class="sprint-name">Bleed & safe zone guide on canvas, credit system with Stripe integration</div>
<div class="sprint-dur">1 week</div>
</div>
<div class="sprint-row">
<div class="sprint-num">Week 6</div>
<div class="sprint-name">UI improvements and regression testing across the full user journey</div>
<div class="sprint-dur">1 week</div>
</div>
<div class="roadmap-footnote" style="margin-top:14px;">
<span>🚀 End of Week 6:</span> <span class="badge badge-orange">Submit to Canva Marketplace for review</span>
</div>
</div>
<div class="highlight-banner">
<div class="big">~2 weeks to submission</div>
<div class="label">Plus ~1–2 weeks for Canva's app review team to decide</div>
</div>
</div>
<!-- ══════════════════════════════════════════ -->
<!-- SLIDE 7: SUMMARY -->
<!-- ══════════════════════════════════════════ -->
<div class="slide" id="s7">
<div class="tag-line">Where We Stand</div>
<h2>Halfway through the core loop —<br>demo-ready today.</h2>
<div class="summary-grid">
<div class="sum-card sc-done">
<div class="label">✅ Shipped</div>
<div class="value">Product/size selection · Scan Design · Three-pillar report · Export panel</div>
</div>
<div class="sum-card sc-progress">
<div class="label">🟡 In Progress</div>
<div class="value">AI upscale Fix + Apply · CMYK Print Preview toggle</div>
</div>
<div class="sum-card sc-todo">
<div class="label">⚪ Next</div>
<div class="value">Bleed & safe zone guide on canvas · Credit system</div>
</div>
<div class="sum-card sc-next">
<div class="label">🔵 Then</div>
<div class="value">Error handling · UI improvements · Regression testing · App submission</div>
</div>
</div>
<p style="text-align:center; font-size:13px; color:var(--text-dim); margin-top:20px; font-style:italic;">
Print Ready Checker — built one pillar at a time, in the open.
</p>
</div>
</div><!-- /deck -->
<!-- ── PROGRESS BAR ── -->
<div class="progress-bar">
<div class="progress-fill" id="progressFill"></div>
</div>
<!-- ── DOTS ── -->
<div class="slide-dots" id="slideDots"></div>
<!-- ── NAV ── -->
<div class="nav">
<span class="slide-counter" id="slideCounter">1 / 7</span>
<button class="nav-btn" id="prevBtn" onclick="prevSlide()" title="Previous (←)">‹</button>
<button class="nav-btn" id="nextBtn" onclick="nextSlide()" title="Next (→)">›</button>
</div>
<!-- ── LIGHTBOX ── -->
<div class="lightbox" id="lightbox" onclick="closeLightbox()">
<button class="lightbox-close" onclick="closeLightbox()">✕</button>
<img id="lightboxImg" src="" alt="">
<div class="lightbox-caption" id="lightboxCaption"></div>
</div>
<script>
const slides = document.querySelectorAll('.slide');
const totalSlides = slides.length;
let current = 0;
const progressFill = document.getElementById('progressFill');
const slideCounter = document.getElementById('slideCounter');
const prevBtn = document.getElementById('prevBtn');
const nextBtn = document.getElementById('nextBtn');
const dotsContainer = document.getElementById('slideDots');
// Build dots
for (let i = 0; i < totalSlides; i++) {
const dot = document.createElement('div');
dot.className = 'dot' + (i === 0 ? ' active' : '');
dot.onclick = () => goTo(i);
dotsContainer.appendChild(dot);
}
function updateUI() {
const pct = ((current + 1) / totalSlides) * 100;
progressFill.style.width = pct + '%';
slideCounter.textContent = (current + 1) + ' / ' + totalSlides;
prevBtn.disabled = current === 0;
nextBtn.disabled = current === totalSlides - 1;
document.querySelectorAll('.dot').forEach((d, i) => {
d.classList.toggle('active', i === current);
});
}
function goTo(index) {
if (index === current || index < 0 || index >= totalSlides) return;
const direction = index > current ? 1 : -1;
const prevIndex = current;
current = index;
const outgoing = slides[prevIndex];
const incoming = slides[current];
outgoing.classList.remove('active');
outgoing.classList.add(direction > 0 ? 'exit-left' : 'exit-right');
setTimeout(() => outgoing.classList.remove('exit-left', 'exit-right'), 400);
if (direction < 0) {
incoming.classList.add('from-left');
void incoming.offsetWidth; // force reflow so browser registers start position
incoming.classList.remove('from-left');
}
incoming.classList.add('active');
updateUI();
}
function nextSlide() { goTo(current + 1); }
function prevSlide() { goTo(current - 1); }
document.addEventListener('keydown', e => {
if (e.target.tagName === 'INPUT') return;
if (e.key === 'ArrowRight' || e.key === 'ArrowDown' || e.key === ' ') { e.preventDefault(); nextSlide(); }
if (e.key === 'ArrowLeft' || e.key === 'ArrowUp') { e.preventDefault(); prevSlide(); }
if (e.key === 'Escape') closeLightbox();
if (e.key === 'Home') goTo(0);
if (e.key === 'End') goTo(totalSlides - 1);
// number keys 1-9
if (e.key >= '1' && e.key <= '9') goTo(parseInt(e.key) - 1);
});
// Touch/swipe
let touchStartX = 0;
document.addEventListener('touchstart', e => { touchStartX = e.changedTouches[0].screenX; });
document.addEventListener('touchend', e => {
const dx = touchStartX - e.changedTouches[0].screenX;
if (Math.abs(dx) > 50) dx > 0 ? nextSlide() : prevSlide();
});
// Lightbox
function openLightbox(src, caption) {
document.getElementById('lightboxImg').src = src;
document.getElementById('lightboxCaption').textContent = caption;
document.getElementById('lightbox').classList.add('open');
}
function closeLightbox() {
document.getElementById('lightbox').classList.remove('open');
}
updateUI();
</script>
</body>
</html>