forked from stultus/scriptty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1736 lines (1638 loc) · 51 KB
/
Copy pathindex.html
File metadata and controls
1736 lines (1638 loc) · 51 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
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover" />
<meta name="theme-color" content="#f6f0e6" />
<meta name="color-scheme" content="light" />
<!-- ─── SEO META ─── -->
<title>
Scriptty — Free Offline Screenwriting App for Malayalam & English Writers · Hollywood +
Indian Format · Mac, Windows, Linux
</title>
<meta
name="description"
content="Scriptty is a free, open-source, offline screenwriting app for Malayalam and English writers. Hollywood single-column and Indian two-column screenplay formats, built-in Malayalam input (Mozhi · Inscript), production breakdown cards, daily shoot list PDF, web-series support. Mac, Windows, Linux. No cloud, no account."
/>
<meta
name="keywords"
content="screenwriting software, screenplay writing app, Malayalam screenwriting, Malayalam screenplay app, Indian screenplay format, Hollywood screenplay format, free screenwriting software, offline screenwriting, open source screenplay editor, screenplay PDF export, web series writing, shooting script app, Malayalam Mozhi typing, Inscript Malayalam, screenwriting Mac, screenwriting Windows, screenwriting Linux"
/>
<meta name="author" content="Hrishikesh Bhaskaran" />
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large" />
<link rel="canonical" href="https://stultus.in/scriptty/" />
<!-- ─── OPEN GRAPH ─── -->
<meta property="og:title" content="Scriptty — Write screenplays in the language you dream in" />
<meta
property="og:description"
content="Free, offline screenwriting for Malayalam and English. Hollywood and Indian two-column formats, built-in Malayalam input, production-breakdown cards, daily shoot list PDF. Mac, Windows, Linux."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://stultus.in/scriptty/" />
<meta property="og:site_name" content="Scriptty" />
<meta property="og:image" content="https://stultus.in/scriptty/app-icon.png" />
<meta
property="og:image:alt"
content="The Scriptty app icon — a stylized clapperboard mark on a cream paper field"
/>
<meta property="og:locale" content="en_IN" />
<meta property="og:locale:alternate" content="ml_IN" />
<!-- ─── TWITTER CARD ─── -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="Scriptty — Free offline screenwriting for Malayalam & English"
/>
<meta
name="twitter:description"
content="Hollywood and Indian screenplay formats. Built-in Malayalam input. Production breakdown cards. Daily shoot list PDF. Web series support. Free & open source."
/>
<meta name="twitter:image" content="https://stultus.in/scriptty/app-icon.png" />
<!-- ─── ICONS ─── -->
<link rel="icon" type="image/png" sizes="512x512" href="app-icon.png" />
<link rel="apple-touch-icon" href="app-icon.png" />
<!-- ─── FONTS ─── -->
<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=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Source+Serif+4:ital,opsz,wght@0,8..60,400..700;1,8..60,400..700&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Manjari:wght@400;700&display=swap"
rel="stylesheet"
/>
<!-- ─── JSON-LD STRUCTURED DATA ─── -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "SoftwareApplication",
"@id": "https://stultus.in/scriptty/#software",
"name": "Scriptty",
"alternateName": "Scriptty Screenwriting App",
"description": "Free, offline screenwriting app for Malayalam and English writers. Hollywood single-column and Indian two-column screenplay formats, built-in Malayalam input (Mozhi, Inscript), production breakdown cards, daily shoot list PDF, web-series support.",
"url": "https://stultus.in/scriptty/",
"applicationCategory": "WritingApplication",
"applicationSubCategory": "Screenwriting Software",
"operatingSystem": "macOS, Windows, Linux",
"downloadUrl": "https://github.com/stultus/scriptty/releases/latest",
"softwareVersion": "0.8.0",
"fileSize": "12MB",
"inLanguage": ["en", "ml"],
"license": "https://github.com/stultus/scriptty/blob/main/LICENSE",
"isAccessibleForFree": true,
"offers": { "@type": "Offer", "price": "0", "priceCurrency": "USD" },
"author": { "@id": "https://stultus.in/scriptty/#author" },
"featureList": [
"Hollywood single-column screenplay format",
"Indian two-column screenplay format export",
"Built-in Malayalam input (Mozhi phonetic, Inscript 1, Inscript 2)",
"Mixed Malayalam and English script on the same line",
"Production breakdown scene cards",
"Daily shoot list PDF with industry-standard page eighths",
"Web series support with multi-episode files",
"Editorial-grade PDF export",
"Autosave with crash recovery",
"Paste plain text and convert to screenplay",
"Fully offline, zero cloud dependency"
]
},
{
"@type": "Person",
"@id": "https://stultus.in/scriptty/#author",
"name": "Hrishikesh Bhaskaran",
"url": "https://github.com/stultus"
},
{
"@type": "WebSite",
"@id": "https://stultus.in/scriptty/#website",
"url": "https://stultus.in/scriptty/",
"name": "Scriptty",
"description": "Offline screenwriting for Malayalam and English writers",
"publisher": { "@id": "https://stultus.in/scriptty/#author" },
"inLanguage": "en"
},
{
"@type": "FAQPage",
"@id": "https://stultus.in/scriptty/#faq",
"mainEntity": [
{
"@type": "Question",
"name": "Is Scriptty free?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Scriptty is free and open source under the MIT license. There is no subscription, no account, and no cloud service to pay for."
}
},
{
"@type": "Question",
"name": "Does Scriptty support Malayalam typing?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. Scriptty has three built-in Malayalam input schemes — Mozhi (phonetic), Inscript 1, and Inscript 2 — and you can mix Malayalam and English freely on the same line. No operating-system keyboard setup is required."
}
},
{
"@type": "Question",
"name": "Can I export a screenplay in Indian two-column format?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes. The editor uses Hollywood single-column format for writing, and the Export modal lets you pick Hollywood or Indian two-column layout at PDF time."
}
},
{
"@type": "Question",
"name": "Does Scriptty work offline?",
"acceptedAnswer": {
"@type": "Answer",
"text": "Yes — completely. Scriptty makes zero network calls at runtime. Your scripts are saved locally as .screenplay files. There is no cloud sync and no telemetry."
}
},
{
"@type": "Question",
"name": "Which platforms does Scriptty run on?",
"acceptedAnswer": {
"@type": "Answer",
"text": "macOS (Apple Silicon and Intel), Windows, and Linux (.deb and AppImage)."
}
}
]
}
]
}
</script>
<!-- ─── GOOGLE ANALYTICS 4 ───
Per-platform download click tracking is wired up via the
gtag('event', 'download', ...) call inside the download-button
renderer at the bottom of this file. anonymize_ip masks IPs
before logging. The app itself stays uninstrumented — only this
marketing site reports anything, which honors the offline-first
promise users made decisions on. -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W743J3SS60"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-W743J3SS60', { anonymize_ip: true, send_page_view: true });
</script>
<style>
/* ─── Reset ─── */
*,
*::before,
*::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* ─── Tokens ───
Cream paper, deep ink. Type pairs Fraunces (variable, optical-
sized display) with Source Serif 4 (book-text body) and Courier
Prime (accents) — same Courier vocabulary the app uses on screen
and in printed PDFs, so the marketing site reads as a continuation
of the product. */
:root {
--paper: #f6f0e6;
--paper-warm: #efe7d6;
--ink: #1a1916;
--ink-soft: #2a2924;
--text: #1a1916;
--text-secondary: #4a4740;
--text-muted: #7a766c;
--text-quiet: #a39e92;
--teal: #1e8070;
--teal-deep: #16604f;
--terracotta: #b76d0f;
--rule: rgba(26, 25, 22, 0.12);
--rule-strong: rgba(26, 25, 22, 0.24);
--rule-faint: rgba(26, 25, 22, 0.05);
--display: 'Fraunces', 'Source Serif 4', Georgia, serif;
--body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
--mono: 'Courier Prime', ui-monospace, 'SFMono-Regular', monospace;
--ml: 'Manjari', 'Source Serif 4', serif;
--max: 960px; /* tighter measure than before — magazine-page width */
--gutter: 28px;
--rhythm: 1.6;
}
html {
scroll-behavior: smooth;
}
body {
background: var(--paper);
color: var(--text);
font-family: var(--body);
font-size: 17px;
line-height: var(--rhythm);
font-feature-settings: 'kern', 'liga', 'onum';
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
overflow-x: hidden;
overflow-wrap: break-word;
}
a {
color: var(--teal-deep);
text-decoration: underline;
text-decoration-thickness: 0.5px;
text-underline-offset: 3px;
transition: color 140ms ease;
}
a:hover {
color: var(--ink);
}
img {
max-width: 100%;
display: block;
}
.container {
max-width: var(--max);
margin: 0 auto;
padding: 0 var(--gutter);
}
/* Grid children allowed to shrink below intrinsic content width on
narrow viewports (default min-width: auto can introduce overflow). */
.grid > *,
.reference-cols > *,
.departments > * {
min-width: 0;
}
/* ─── Editorial primitives ─── */
.eyebrow {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(--text-muted);
font-weight: 700;
}
.eyebrow.with-rules {
display: inline-flex;
align-items: center;
gap: 0.7em;
}
.eyebrow.with-rules::before,
.eyebrow.with-rules::after {
content: '';
width: 22px;
height: 1px;
background: var(--rule-strong);
}
.h-display {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
letter-spacing: -0.005em;
color: var(--ink);
}
.h-display em {
font-style: italic;
color: var(--teal-deep);
font-weight: 500;
}
.deck {
font-family: var(--display);
font-weight: 400;
font-style: italic;
font-optical-sizing: auto;
color: var(--text-secondary);
line-height: 1.4;
}
/* ─── Top bar ─── */
.topbar {
position: sticky;
top: 0;
z-index: 50;
background: rgba(246, 240, 230, 0.92);
backdrop-filter: saturate(140%) blur(10px);
-webkit-backdrop-filter: saturate(140%) blur(10px);
border-bottom: 1px solid var(--rule);
}
.topbar .container {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding-top: 14px;
padding-bottom: 14px;
}
.brand {
display: inline-flex;
align-items: center;
gap: 10px;
text-decoration: none;
color: var(--ink);
}
.brand img {
width: 24px;
height: 24px;
border-radius: 4px;
}
.brand-name {
font-family: var(--mono);
font-weight: 700;
font-size: 12.5px;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.topnav {
display: flex;
align-items: center;
gap: 22px;
list-style: none;
}
.topnav a {
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.14em;
text-transform: uppercase;
font-weight: 700;
color: var(--text-secondary);
text-decoration: none;
}
.topnav a:hover {
color: var(--teal-deep);
}
.topnav .cta {
color: var(--paper);
background: var(--ink);
padding: 7px 13px;
border-radius: 2px;
}
.topnav .cta:hover {
background: var(--teal-deep);
color: var(--paper);
}
/* On tablet and below, drop the three middle nav items (Features,
Guide, What's new) — leaves Credits + the prominent Download CTA.
Credits stays visible on every viewport; the people who helped
this project get a permanent shoutout. */
@media (max-width: 700px) {
.topnav li:nth-child(-n + 3) {
display: none;
}
}
/* ─── COVER ─── */
.cover {
padding: 110px 0 80px;
max-width: 760px;
margin: 0 auto;
}
.cover .container {
padding: 0 var(--gutter);
}
.cover-head {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
/* The headline is the visual anchor of the whole site; clamp grows
to a magazine-cover scale on desktop without overflowing phones. */
font-size: clamp(64px, 12vw, 160px);
line-height: 0.92;
letter-spacing: -0.025em;
color: var(--ink);
margin-bottom: 24px;
}
.cover-head em {
font-style: italic;
font-weight: 500;
color: var(--terracotta);
}
.cover-deck {
font-family: var(--display);
font-style: italic;
font-weight: 400;
font-optical-sizing: auto;
font-size: clamp(20px, 2.4vw, 26px);
line-height: 1.4;
color: var(--text-secondary);
max-width: 32ch;
margin-bottom: 40px;
}
.cover-deck strong {
font-style: normal;
font-weight: 600;
color: var(--ink);
}
/* Download CTAs */
.downloads {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-bottom: 22px;
}
.btn {
display: inline-flex;
align-items: center;
gap: 10px;
padding: 14px 20px;
border: 1px solid var(--ink);
background: var(--ink);
color: var(--paper);
text-decoration: none;
font-family: var(--mono);
font-size: 12px;
letter-spacing: 0.1em;
font-weight: 700;
text-transform: uppercase;
transition:
background 140ms ease,
color 140ms ease,
border-color 140ms ease;
}
.btn:hover {
background: var(--teal-deep);
border-color: var(--teal-deep);
color: var(--paper);
}
.btn.secondary {
background: transparent;
color: var(--ink);
}
.btn.secondary:hover {
background: var(--ink);
color: var(--paper);
}
.btn .os-icon {
width: 14px;
height: 14px;
display: inline-flex;
}
.btn .os-icon svg {
fill: currentColor;
}
.other-platforms {
width: 100%;
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
}
.other-platforms summary {
list-style: none;
cursor: pointer;
color: var(--text-muted);
padding: 8px 0;
user-select: none;
}
.other-platforms summary::-webkit-details-marker {
display: none;
}
.other-platforms summary::before {
content: '+ ';
color: var(--terracotta);
}
.other-platforms[open] summary::before {
content: '− ';
}
.other-platforms .download-group {
display: flex;
flex-wrap: wrap;
gap: 10px;
padding-top: 6px;
}
.cover-meta {
margin-top: 12px;
font-family: var(--mono);
font-size: 11px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
display: flex;
gap: 18px;
flex-wrap: wrap;
}
.cover-meta a {
color: var(--text-muted);
text-decoration: none;
}
.cover-meta a:hover {
color: var(--teal-deep);
text-decoration: underline;
}
.cover-meta strong {
color: var(--ink);
font-weight: 700;
}
/* ─── SECTION primitives ─── */
.section {
padding: 80px 0;
border-top: 1px solid var(--rule);
}
.section.warm {
background: var(--paper-warm);
border-bottom: 1px solid var(--rule);
}
.section-head {
max-width: 760px;
margin: 0 auto 48px;
padding: 0 var(--gutter);
}
.section-head .eyebrow {
display: block;
margin-bottom: 16px;
}
.section-head h2 {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
font-size: clamp(34px, 4.4vw, 56px);
line-height: 1.04;
letter-spacing: -0.012em;
color: var(--ink);
max-width: 18ch;
}
.section-head h2 em {
font-style: italic;
color: var(--teal-deep);
font-weight: 500;
}
.section-head .lead {
font-family: var(--display);
font-style: italic;
font-weight: 400;
font-size: clamp(18px, 2vw, 22px);
line-height: 1.5;
color: var(--text-secondary);
max-width: 44ch;
margin-top: 20px;
}
/* ─── INTRO (editor's note, but discreet) ─── */
.intro {
padding: 80px 0 0;
}
.intro-body {
max-width: 600px;
margin: 0 auto;
padding: 0 var(--gutter);
font-family: var(--display);
font-weight: 400;
font-optical-sizing: auto;
font-size: clamp(20px, 2.2vw, 24px);
line-height: 1.5;
color: var(--ink);
}
.intro-body p + p {
margin-top: 18px;
}
/* ─── DEPARTMENTS / feature grid ─── */
.departments {
max-width: var(--max);
margin: 0 auto;
padding: 0 var(--gutter);
display: grid;
grid-template-columns: 1fr;
gap: 40px;
column-gap: 56px;
}
@media (min-width: 720px) {
.departments {
grid-template-columns: 1fr 1fr;
gap: 36px 56px;
}
}
@media (min-width: 1000px) {
.departments {
grid-template-columns: 1fr 1fr 1fr;
}
}
.dept {
padding-top: 6px;
border-top: 1px solid var(--ink);
}
.dept-num {
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.18em;
color: var(--terracotta);
font-weight: 700;
display: block;
margin-bottom: 14px;
}
.dept h3 {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
font-size: 22px;
line-height: 1.2;
letter-spacing: -0.005em;
color: var(--ink);
margin-bottom: 10px;
}
.dept h3 em {
font-style: italic;
color: var(--teal-deep);
}
.dept p {
font-size: 15.5px;
line-height: 1.55;
color: var(--text-secondary);
}
.dept p strong {
color: var(--ink);
font-weight: 600;
}
/* ─── REFERENCE / how-to ─── */
.reference-cols {
max-width: var(--max);
margin: 0 auto;
padding: 0 var(--gutter);
display: grid;
grid-template-columns: 1fr;
gap: 36px;
}
@media (min-width: 760px) {
.reference-cols {
grid-template-columns: 1fr 1fr;
column-gap: 56px;
}
}
@media (min-width: 1000px) {
.reference-cols {
grid-template-columns: 1fr 1fr 1fr;
}
}
.ref h3 {
font-family: var(--mono);
font-weight: 700;
font-size: 11px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--terracotta);
margin-bottom: 14px;
padding-bottom: 14px;
border-bottom: 1px solid var(--ink);
}
.ref h4 {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
font-size: 18px;
line-height: 1.2;
letter-spacing: -0.005em;
color: var(--ink);
margin: 20px 0 8px;
}
.ref h4:first-of-type {
margin-top: 0;
}
.ref p {
font-size: 15px;
line-height: 1.55;
color: var(--text-secondary);
margin-bottom: 10px;
}
.ref p strong {
color: var(--ink);
font-weight: 600;
}
.ref ul {
padding-left: 1.1em;
font-size: 15px;
line-height: 1.6;
color: var(--text-secondary);
margin-bottom: 10px;
}
.ref li {
margin-bottom: 5px;
}
.ref li strong {
color: var(--ink);
font-weight: 600;
}
.ref code {
font-family: var(--mono);
font-size: 13px;
background: var(--paper-warm);
padding: 1px 6px;
border-radius: 2px;
color: var(--ink);
}
kbd {
font-family: var(--mono);
font-size: 11px;
padding: 2px 6px;
background: var(--paper);
border: 1px solid var(--rule-strong);
border-bottom-width: 2px;
border-radius: 3px;
color: var(--ink);
font-weight: 600;
letter-spacing: 0.02em;
white-space: nowrap;
}
/* ─── WHATS NEW ─── */
.notes {
max-width: 760px;
margin: 0 auto;
padding: 0 var(--gutter);
}
.note {
display: grid;
grid-template-columns: 70px 1fr;
gap: 24px;
padding: 22px 0;
border-bottom: 1px solid var(--rule);
align-items: baseline;
}
.note:last-child {
border-bottom: none;
}
.note-num {
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.16em;
color: var(--terracotta);
font-weight: 700;
}
.note h3 {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
font-size: 19px;
line-height: 1.2;
color: var(--ink);
margin-bottom: 6px;
}
.note p {
font-size: 15px;
line-height: 1.55;
color: var(--text-secondary);
}
@media (max-width: 520px) {
.note {
grid-template-columns: 1fr;
gap: 4px;
}
}
/* ─── CREDITS ─── */
.credits-grid {
max-width: var(--max);
margin: 0 auto;
padding: 0 var(--gutter);
display: grid;
grid-template-columns: 1fr;
gap: 40px;
}
@media (min-width: 720px) {
.credits-grid {
grid-template-columns: 1fr 1fr 1fr;
gap: 36px 56px;
}
}
.credits-group h3 {
font-family: var(--mono);
font-weight: 700;
font-size: 11px;
letter-spacing: 0.16em;
text-transform: uppercase;
color: var(--terracotta);
margin-bottom: 16px;
padding-bottom: 14px;
border-bottom: 1px solid var(--ink);
}
.credits-group ul {
list-style: none;
}
.credits-group li {
padding: 10px 0;
border-bottom: 1px solid var(--rule-faint);
}
.credits-group li:last-child {
border-bottom: none;
}
.credits-group .name {
font-family: var(--display);
font-weight: 600;
font-optical-sizing: auto;
font-size: 18px;
line-height: 1.2;
color: var(--ink);
display: block;
}
.credits-group .role,
.credits-group .link {
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--text-muted);
display: block;
margin-top: 4px;
}
.credits-group .link a {
color: var(--text-muted);
text-decoration: none;
}
.credits-group .link a:hover {
color: var(--teal-deep);
}
.credits-group p {
font-size: 15px;
line-height: 1.55;
color: var(--text-secondary);
}
.credits-group p strong {
color: var(--ink);
font-weight: 600;
}
/* ─── FOOTER / colophon ─── */
footer {
padding: 60px 0 40px;
border-top: 1px solid var(--rule);
background: var(--paper);
}
.foot {
max-width: var(--max);
margin: 0 auto;
padding: 0 var(--gutter);
display: grid;
gap: 24px;
}
@media (min-width: 720px) {
.foot {
grid-template-columns: 1.6fr 1fr 1fr;
gap: 48px;
}
}
.foot-mark {
font-family: var(--display);
font-weight: 600;
font-size: 22px;
color: var(--ink);
}
.foot-deck {
font-family: var(--display);
font-style: italic;
font-size: 15px;
line-height: 1.45;
color: var(--text-secondary);
margin-top: 8px;
max-width: 38ch;
}
.foot h4 {
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.16em;
text-transform: uppercase;
font-weight: 700;
color: var(--text-muted);
margin-bottom: 12px;
}
.foot ul {
list-style: none;
}
.foot li {
margin-bottom: 7px;
font-size: 14px;
}
.foot a {
color: var(--ink);
text-decoration: none;
}
.foot a:hover {
color: var(--teal-deep);
text-decoration: underline;
}
.coda {
max-width: var(--max);
margin: 36px auto 0;
padding: 24px var(--gutter) 0;
border-top: 1px solid var(--rule);
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 14px;
font-family: var(--mono);
font-size: 10.5px;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--text-muted);
}
.coda .set-in {
letter-spacing: 0.06em;
text-transform: none;
font-family: var(--body);
font-size: 13px;
color: var(--text-muted);
max-width: 50ch;
}
.coda .set-in em {
font-style: italic;
color: var(--ink);
}
/* ─── Print ─── */
@media print {
.topbar,
.topnav,
.other-platforms,
.downloads {
display: none;
}
body {
background: white;
color: black;
}
.section.warm,
footer {
background: white;
}
}
/* ─── Reduced motion ─── */
@media (prefers-reduced-motion: reduce) {
html {
scroll-behavior: auto;
}
* {
animation-duration: 0.01ms !important;
transition-duration: 0.01ms !important;
}
}
/* ─── Mobile ───
Mobile readers are evaluating the app, not consulting it as a
reference. Trim the page aggressively: drop the Quick reference
and What's new sections entirely (they're long and reference-
grade), cap the Features list at the top 4 cards, and tighten
all the section paddings. The result is roughly half the scroll
length of the desktop page. */
@media (max-width: 520px) {
:root {
--gutter: 22px;
}
body {
font-size: 16px;
}