-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1071 lines (977 loc) · 32.8 KB
/
index.html
File metadata and controls
1071 lines (977 loc) · 32.8 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="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LEO — Agentic-first content factory para múltiples marcas</title>
<meta name="description" content="LEO es el primer generador de contenidos que combina agentic-first generation, proceso humano-céntrico y aislamiento multi-brand riguroso. Un producto 498A × ZOOPA.">
<meta property="og:title" content="LEO — Agentic-first content factory">
<meta property="og:description" content="Agentic-first. World Wide friendly. Un producto 498A × ZOOPA.">
<meta property="og:type" content="website">
<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=Bebas+Neue&family=Hepta+Slab:wght@400;500;700;800&family=Roboto:wght@300;400;500;700&family=Dela+Gothic+One&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<style>
:root {
--bg: #fafaf7;
--bg-soft: #f3f1ea;
--bg-card: #ffffff;
--ink: #1a1a1a;
--ink-muted: #5e5e5e;
--ink-faint: #9c9b94;
--lime: #5a9a14;
--lime-deep: #3d6b0e;
--lime-bg: #f0f7e1;
--green-deep: #1f3d28;
--gold: #b8951f;
--warm: #a86b2c;
--rule: #e2dfd5;
--rule-strong: #c8c4b5;
--danger: #c0392b;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
background: var(--bg);
color: var(--ink);
font-family: 'Hepta Slab', Georgia, serif;
line-height: 1.55;
font-weight: 400;
-webkit-font-smoothing: antialiased;
font-feature-settings: "kern" 1, "liga" 1;
}
body {
background:
radial-gradient(ellipse 1200px 600px at 50% -200px, rgba(90, 154, 20, 0.05), transparent 70%),
var(--bg);
min-height: 100vh;
padding: 48px 24px 80px;
}
.page {
max-width: 1180px;
margin: 0 auto;
}
/* === HEADER === */
.brand-mark {
font-family: 'Bebas Neue', sans-serif;
font-size: 14px;
letter-spacing: 0.18em;
color: var(--lime);
margin-bottom: 12px;
}
.brand-mark::before {
content: "▸ ";
color: var(--lime-deep);
}
h1.logo {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(96px, 14vw, 180px);
line-height: 0.85;
letter-spacing: -0.02em;
margin-bottom: 8px;
}
.logo .leo {
background: linear-gradient(180deg, var(--ink) 0%, var(--lime) 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
}
.tagline {
font-family: 'JetBrains Mono', monospace;
font-size: 14px;
letter-spacing: 0.04em;
color: var(--ink-muted);
margin-bottom: 32px;
}
.tagline em {
color: var(--lime);
font-style: normal;
}
.hero-card {
background: var(--bg-card);
border: 1px solid var(--rule);
border-left: 3px solid var(--lime);
padding: 28px 32px;
margin-bottom: 56px;
position: relative;
box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.hero-card::before {
content: "";
position: absolute;
top: -1px; right: -1px;
width: 16px; height: 16px;
border-top: 2px solid var(--lime);
border-right: 2px solid var(--lime);
}
.hero-card::after {
content: "";
position: absolute;
bottom: -1px; left: -1px;
width: 16px; height: 16px;
border-bottom: 2px solid var(--lime);
border-left: 2px solid var(--lime);
}
.hero-card .label {
font-family: 'Bebas Neue', sans-serif;
font-size: 11px;
letter-spacing: 0.2em;
color: var(--lime-deep);
margin-bottom: 14px;
}
.hero-card p {
font-size: clamp(18px, 1.5vw, 22px);
line-height: 1.5;
color: var(--ink);
}
.hero-card strong {
color: var(--lime-deep);
font-weight: 700;
}
/* === SECTION === */
.section {
margin-bottom: 56px;
}
.section-label {
font-family: 'Bebas Neue', sans-serif;
font-size: 13px;
letter-spacing: 0.22em;
color: var(--lime);
display: flex;
align-items: center;
gap: 14px;
margin-bottom: 24px;
}
.section-label::before {
content: "";
display: block;
width: 32px;
height: 1px;
background: var(--lime);
}
.section-label .num {
color: var(--ink-faint);
}
h2 {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(40px, 5vw, 64px);
line-height: 0.95;
letter-spacing: -0.01em;
margin-bottom: 32px;
color: var(--ink);
}
h2 .accent {
color: var(--lime);
}
/* === WORKFLOW === */
.workflow {
display: grid;
grid-template-columns: repeat(6, 1fr);
gap: 12px;
position: relative;
}
.act {
background: var(--bg-card);
border: 1px solid var(--rule);
padding: 20px 16px 18px;
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
transition: all 200ms ease;
box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.act:hover {
border-color: var(--lime);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(90, 154, 20, 0.1);
}
.act .roman {
font-family: 'Bebas Neue', sans-serif;
font-size: 14px;
letter-spacing: 0.15em;
color: var(--lime-deep);
}
.act .icon {
font-size: 32px;
margin: 12px 0;
}
.act .name {
font-family: 'Bebas Neue', sans-serif;
font-size: 19px;
letter-spacing: 0.04em;
color: var(--ink);
margin-bottom: 8px;
line-height: 1.05;
}
.act .desc {
font-family: 'Roboto', sans-serif;
font-size: 12px;
line-height: 1.45;
color: var(--ink-muted);
}
.act .arrow {
position: absolute;
right: -10px;
top: 50%;
transform: translateY(-50%);
color: var(--lime);
font-family: 'JetBrains Mono', monospace;
font-size: 16px;
z-index: 2;
background: var(--bg);
padding: 2px 4px;
}
.act:last-child .arrow { display: none; }
.workflow-note {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
color: var(--ink-faint);
margin-top: 16px;
text-align: center;
}
/* === USPS === */
.usp-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
}
.usp {
background: var(--bg-card);
border: 1px solid var(--rule);
padding: 22px 18px;
min-height: 200px;
position: relative;
box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.usp .num {
font-family: 'Dela Gothic One', sans-serif;
font-size: 36px;
color: var(--lime);
line-height: 1;
margin-bottom: 16px;
letter-spacing: -0.05em;
}
.usp .title {
font-family: 'Bebas Neue', sans-serif;
font-size: 17px;
letter-spacing: 0.04em;
color: var(--ink);
margin-bottom: 10px;
line-height: 1.1;
}
.usp .body {
font-family: 'Roboto', sans-serif;
font-size: 12.5px;
line-height: 1.5;
color: var(--ink-muted);
}
.usp .body em {
color: var(--lime-deep);
font-style: normal;
font-weight: 500;
}
/* === TRANSMEDIA SECTION === */
.transmedia-grid {
display: grid;
grid-template-columns: 1fr 1.15fr;
gap: 48px;
align-items: center;
margin-top: 8px;
}
.transmedia-viz {
background: var(--bg-card);
border: 1px solid var(--rule);
padding: 24px;
box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.transmedia-viz svg {
width: 100%;
height: auto;
display: block;
}
.transmedia-copy p {
margin-bottom: 16px;
font-family: 'Hepta Slab', Georgia, serif;
font-size: 17px;
line-height: 1.65;
color: var(--ink);
}
.transmedia-copy p:last-child { margin-bottom: 0; }
.transmedia-copy strong {
color: var(--lime-deep);
font-weight: 700;
}
.transmedia-copy em {
font-style: italic;
background: linear-gradient(180deg, transparent 62%, var(--lime-bg) 62%);
padding: 0 4px;
font-weight: 500;
color: var(--ink);
}
.transmedia-punch {
font-family: 'Bebas Neue', sans-serif;
font-size: 26px;
letter-spacing: 0.02em;
color: var(--ink);
border-top: 1px solid var(--rule);
padding-top: 18px;
margin-top: 24px;
line-height: 1.1;
}
.transmedia-punch strong {
color: var(--lime);
font-weight: 400;
}
/* === ITERATION BANNER (Acto VII conceptual) === */
.iteration-banner {
margin-top: 28px;
display: grid;
grid-template-columns: auto 1fr;
gap: 28px;
align-items: center;
padding: 22px 32px;
background: var(--lime-bg);
border: 1px solid var(--lime);
border-left: 4px solid var(--lime);
}
.iteration-icon {
font-family: 'Bebas Neue', sans-serif;
font-size: 60px;
color: var(--lime-deep);
line-height: 0.85;
letter-spacing: -0.05em;
}
.iteration-title {
font-family: 'Bebas Neue', sans-serif;
font-size: 15px;
letter-spacing: 0.18em;
color: var(--lime-deep);
margin-bottom: 8px;
}
.iteration-body {
font-family: 'Hepta Slab', Georgia, serif;
font-size: 15px;
line-height: 1.55;
color: var(--ink);
}
.iteration-body em {
color: var(--lime-deep);
font-style: italic;
font-weight: 600;
}
/* === KEY ELEMENTS === */
.elements-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 14px;
}
.element {
background: var(--bg-card);
border: 1px solid var(--rule);
border-left: 2px solid var(--lime-deep);
padding: 20px 22px;
box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.element .icon {
font-size: 24px;
margin-bottom: 12px;
}
.element .title {
font-family: 'Bebas Neue', sans-serif;
font-size: 18px;
letter-spacing: 0.03em;
margin-bottom: 8px;
color: var(--ink);
}
.element .body {
font-family: 'Roboto', sans-serif;
font-size: 12.5px;
line-height: 1.5;
color: var(--ink-muted);
}
.element .body code {
font-family: 'JetBrains Mono', monospace;
background: var(--lime-bg);
color: var(--lime-deep);
padding: 1px 5px;
border-radius: 2px;
font-size: 11px;
}
/* === BENEFITS === */
.benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
}
.benefit {
position: relative;
padding-top: 24px;
}
.benefit::before {
content: "";
display: block;
width: 48px;
height: 2px;
background: var(--lime);
margin-bottom: 18px;
}
.benefit .audience {
font-family: 'Bebas Neue', sans-serif;
font-size: 13px;
letter-spacing: 0.18em;
color: var(--lime);
margin-bottom: 10px;
}
.benefit .punch {
font-family: 'Bebas Neue', sans-serif;
font-size: 26px;
letter-spacing: 0.01em;
line-height: 1.05;
color: var(--ink);
margin-bottom: 14px;
}
.benefit .body {
font-family: 'Roboto', sans-serif;
font-size: 13px;
line-height: 1.55;
color: var(--ink-muted);
}
.benefit .body strong {
color: var(--warm);
font-weight: 500;
}
/* === COMPETITORS TABLE === */
.comp-table {
width: 100%;
border-collapse: separate;
border-spacing: 0;
background: var(--bg-card);
border: 1px solid var(--rule);
font-family: 'Roboto', sans-serif;
font-size: 13px;
box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.comp-table th {
background: var(--lime-bg);
color: var(--lime-deep);
font-family: 'Bebas Neue', sans-serif;
font-weight: 400;
font-size: 13px;
letter-spacing: 0.1em;
text-align: left;
padding: 14px 16px;
border-bottom: 1px solid var(--rule);
}
.comp-table th:first-child { width: 24%; }
.comp-table td {
padding: 14px 16px;
border-bottom: 1px solid var(--rule);
color: var(--ink);
vertical-align: middle;
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table tr.leo {
background: var(--lime-bg);
}
.comp-table tr.leo td:first-child {
font-family: 'Bebas Neue', sans-serif;
font-size: 18px;
letter-spacing: 0.05em;
color: var(--lime-deep);
}
.tick {
display: inline-block;
width: 20px;
height: 20px;
background: var(--lime);
color: var(--bg-card);
text-align: center;
line-height: 20px;
border-radius: 50%;
font-weight: 700;
font-size: 12px;
}
.cross {
display: inline-block;
width: 20px;
height: 20px;
background: var(--ink-faint);
color: var(--bg-card);
text-align: center;
line-height: 20px;
border-radius: 50%;
font-weight: 700;
font-size: 12px;
opacity: 0.6;
}
.partial {
display: inline-block;
width: 20px;
height: 20px;
background: var(--warm);
color: var(--bg-card);
text-align: center;
line-height: 20px;
border-radius: 50%;
font-weight: 700;
font-size: 11px;
}
.adv {
color: var(--ink-muted);
font-size: 12px;
font-style: italic;
}
/* === MANIFESTO BLOCK === */
.manifesto {
background: linear-gradient(135deg, var(--green-deep) 0%, #0d2218 100%);
padding: 56px 48px;
margin: 64px 0;
position: relative;
text-align: center;
border: 1px solid var(--green-deep);
}
.manifesto::before,
.manifesto::after {
content: "";
position: absolute;
width: 24px;
height: 24px;
}
.manifesto::before {
top: -1px; left: -1px;
border-top: 2px solid var(--lime);
border-left: 2px solid var(--lime);
}
.manifesto::after {
bottom: -1px; right: -1px;
border-bottom: 2px solid var(--lime);
border-right: 2px solid var(--lime);
}
.manifesto .quote {
font-family: 'Bebas Neue', sans-serif;
font-size: clamp(28px, 3.5vw, 44px);
line-height: 1.1;
letter-spacing: 0.02em;
color: #fafaf7;
margin-bottom: 14px;
max-width: 880px;
margin-left: auto;
margin-right: auto;
}
.manifesto .quote .hl {
color: #c8ff3d;
}
.manifesto .attribution {
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
letter-spacing: 0.15em;
color: rgba(250, 250, 247, 0.7);
}
/* === FOOTER === */
footer {
margin-top: 80px;
padding-top: 28px;
border-top: 1px solid var(--rule-strong);
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 24px;
font-family: 'JetBrains Mono', monospace;
font-size: 11px;
color: var(--ink-muted);
}
footer .col strong {
display: block;
color: var(--lime-deep);
margin-bottom: 6px;
font-weight: 500;
}
footer .col a {
color: var(--ink);
text-decoration: none;
border-bottom: 1px dotted var(--rule-strong);
}
footer .col a:hover {
color: var(--lime-deep);
border-bottom-color: var(--lime);
}
/* === RESPONSIVE === */
@media (max-width: 900px) {
.workflow { grid-template-columns: repeat(2, 1fr); }
.act .arrow { display: none; }
.usp-grid { grid-template-columns: repeat(2, 1fr); }
.transmedia-grid { grid-template-columns: 1fr; gap: 24px; }
.iteration-banner { grid-template-columns: 1fr; text-align: left; padding: 18px 22px; }
.iteration-icon { font-size: 44px; }
.elements-grid { grid-template-columns: 1fr; }
.benefits-grid { grid-template-columns: 1fr; }
footer { grid-template-columns: 1fr; }
}
@media (max-width: 540px) {
body { padding: 24px 16px 40px; }
.workflow { grid-template-columns: 1fr; }
.usp-grid { grid-template-columns: 1fr; }
}
@media print {
body { padding: 0; background: var(--bg) !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
.page { max-width: none; }
h2 { page-break-after: avoid; }
.section { page-break-inside: avoid; }
.act:hover { transform: none; }
}
</style>
</head>
<body>
<div class="page">
<!-- HEADER -->
<div class="brand-mark">498A · ZOOPA · INNOVATION LAB</div>
<h1 class="logo"><span class="leo">LEO</span></h1>
<div class="tagline">// <em>Agentic-first. World Wide friendly.</em></div>
<!-- HERO -->
<div class="hero-card">
<div class="label">// EL PRODUCTO</div>
<p>LEO es el primer generador de contenidos que combina <strong>agentic-first generation</strong>, <strong>proceso humano-céntrico</strong>, <strong>aislamiento multi-brand riguroso</strong> y construcción de <strong>identidad digital transmedia</strong>. Diseñamos cada pieza optimizada para la IA y SEO, pero siempre para que un lector humano pueda disfrutarla, y un editor pueda producirla en serie sin renunciar a la calidad y alcanzando la escala y la velocidad necesarias hoy.</p>
</div>
<!-- WORKFLOW -->
<div class="section">
<div class="section-label"><span class="num">01</span>El flujo en 6 actos</div>
<h2>De la <span class="accent">idea</span> a la <span class="accent">publicación</span>, acompañado.</h2>
<div class="workflow">
<div class="act">
<div class="roman">ACTO I</div>
<div class="icon">🦁</div>
<div class="name">Marca</div>
<div class="desc">Brand Sheet rica + Brand Health (Crías → León → Rey). GEOradar autoimport.</div>
<span class="arrow">→</span>
</div>
<div class="act">
<div class="roman">ACTO II</div>
<div class="icon">💡</div>
<div class="name">Idea</div>
<div class="desc">Inbox de temas + research automático (8 fuentes diarias). 3 ángulos sugeridos.</div>
<span class="arrow">→</span>
</div>
<div class="act">
<div class="roman">ACTO III</div>
<div class="icon">📐</div>
<div class="name">Plan</div>
<div class="desc">Medios + autores + calendar Gantt. El sistema propone, tú validas.</div>
<span class="arrow">→</span>
</div>
<div class="act">
<div class="roman">ACTO IV</div>
<div class="icon">✍️</div>
<div class="name">Canónico</div>
<div class="desc">Pieza pilar con validators inline + SAM opcional. Aprueba y captura voice.</div>
<span class="arrow">→</span>
</div>
<div class="act">
<div class="roman">ACTO V</div>
<div class="icon">📚</div>
<div class="name">Library</div>
<div class="desc">Batch generación + 4 vistas (temporal, deps, personas, insights).</div>
<span class="arrow">→</span>
</div>
<div class="act">
<div class="roman">ACTO VI</div>
<div class="icon">🚀</div>
<div class="name">Publicar</div>
<div class="desc">3 modos + Home Run. Placeholders resueltos en orden topológico.</div>
</div>
</div>
<div class="workflow-note">// Cada acto produce una micro-victoria visible. Cada cierre alimenta el siguiente proyecto vía VoiceExemplars.</div>
<div class="iteration-banner">
<div class="iteration-icon">↻</div>
<div class="iteration-content">
<div class="iteration-title">ACTO VII · APRENDE & REPITE</div>
<div class="iteration-body">El ciclo se cierra y vuelve a empezar, más fuerte. Cada proyecto deja <em>voice exemplars + library titles + persona coverage</em> que alimentan la siguiente iteración. La identidad transmedia se consolida pieza a pieza, proyecto a proyecto.</div>
</div>
</div>
</div>
<!-- USPS -->
<div class="section">
<div class="section-label"><span class="num">02</span>Lo que hace diferente</div>
<h2>Seis principios <span class="accent">constitutivos</span>.</h2>
<div class="usp-grid">
<div class="usp">
<div class="num">01</div>
<div class="title">Multi-brand foundational</div>
<div class="body">Aislamiento por marca <em>desde la base</em>: routing, API, ORM, Postgres RLS y storage. No es una feature — es la arquitectura.</div>
</div>
<div class="usp">
<div class="num">02</div>
<div class="title">Agentic-first generation</div>
<div class="body">JSON-LD, citable claims, entity index, glosario y FAQ <em>por defecto</em>. SEO sale como subproducto, no al revés.</div>
</div>
<div class="usp">
<div class="num">03</div>
<div class="title">Identidad digital transmedia</div>
<div class="body">Cada pieza tiene <em>valor individual</em> y construye <em>identidad colectiva</em>. El usuario encuentra tu marca en múltiples touchpoints — y cada uno suma autoridad y profundidad. Holístico por diseño.</div>
</div>
<div class="usp">
<div class="num">04</div>
<div class="title">Proceso, no formato</div>
<div class="body">La unidad organizativa es la <em>persona × funnel</em>, no el medio. El medio es derivada.</div>
</div>
<div class="usp">
<div class="num">05</div>
<div class="title">Assist-by-default</div>
<div class="body">La IA está activa en cada decisión. El opt-out es la excepción. Botón <em>Validar</em> en vez de configurar todo.</div>
</div>
<div class="usp">
<div class="num">06</div>
<div class="title">Aprendizaje per-brand</div>
<div class="body">Cada corrección del operador se guarda como VoiceExemplar y se inyecta en futuras generaciones de esa marca.</div>
</div>
</div>
</div>
<!-- TRANSMEDIA SECTION -->
<div class="section">
<div class="section-label">El continuum transmedia</div>
<h2>Una marca son sus <span class="accent">piezas</span> — y <span class="accent">cómo se hablan</span> entre ellas.</h2>
<div class="transmedia-grid">
<div class="transmedia-viz">
<svg viewBox="0 0 600 380" xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Red transmedia: marca al centro conectada con 6 touchpoints">
<g stroke="#c8c4b5" stroke-width="1.2" fill="none">
<line x1="300" y1="190" x2="300" y2="45" />
<line x1="300" y1="190" x2="426" y2="118" />
<line x1="300" y1="190" x2="426" y2="263" />
<line x1="300" y1="190" x2="300" y2="335" />
<line x1="300" y1="190" x2="174" y2="263" />
<line x1="300" y1="190" x2="174" y2="118" />
</g>
<g stroke="#5a9a14" stroke-width="1.5" stroke-dasharray="5,4" fill="none" opacity="0.7">
<path d="M 174 118 Q 240 70 300 45" />
<path d="M 300 45 Q 360 70 426 118" />
<path d="M 426 118 Q 470 190 426 263" />
<path d="M 426 263 Q 360 310 300 335" />
<path d="M 300 335 Q 240 310 174 263" />
<path d="M 174 263 Q 130 190 174 118" />
</g>
<g text-anchor="middle">
<circle cx="300" cy="45" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="300" y="51" font-family="'Bebas Neue', sans-serif" font-size="14" fill="#1a1a1a" letter-spacing="0.06em">BLOG</text>
<circle cx="426" cy="118" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="426" y="124" font-family="'Bebas Neue', sans-serif" font-size="12" fill="#1a1a1a" letter-spacing="0.06em">LINKEDIN</text>
<circle cx="426" cy="263" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="426" y="269" font-family="'Bebas Neue', sans-serif" font-size="12" fill="#1a1a1a" letter-spacing="0.06em">SUBSTACK</text>
<circle cx="300" cy="335" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="300" y="341" font-family="'Bebas Neue', sans-serif" font-size="14" fill="#1a1a1a" letter-spacing="0.06em">MEDIUM</text>
<circle cx="174" cy="263" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="174" y="269" font-family="'Bebas Neue', sans-serif" font-size="14" fill="#1a1a1a" letter-spacing="0.06em">REDDIT</text>
<circle cx="174" cy="118" r="32" fill="#ffffff" stroke="#5e5e5e" stroke-width="1.2"/>
<text x="174" y="124" font-family="'Bebas Neue', sans-serif" font-size="11" fill="#1a1a1a" letter-spacing="0.06em">X · THREADS</text>
</g>
<circle cx="300" cy="190" r="54" fill="#f0f7e1" stroke="#5a9a14" stroke-width="2.5"/>
<text x="300" y="186" font-family="'Bebas Neue', sans-serif" font-size="22" text-anchor="middle" fill="#3d6b0e" letter-spacing="0.04em">MARCA</text>
<text x="300" y="206" font-family="'JetBrains Mono', monospace" font-size="9" text-anchor="middle" fill="#3d6b0e" letter-spacing="0.18em">∞ TOUCHPOINTS</text>
</svg>
</div>
<div class="transmedia-copy">
<p>El usuario no consume tu marca en una sola pieza. Lee el <strong>blog</strong>, ve un <strong>thread</strong>, recibe la <strong>newsletter</strong>, encuentra un <strong>comentario en Reddit</strong>, descubre un <strong>artículo en Medium</strong>.</p>
<p>Cada pieza tiene <strong>valor individual</strong>. <em>Juntas componen profundidad y autoridad de marca.</em></p>
<p>LEO orquesta esa coherencia <strong>desde el plan</strong> — no como retoque final. La distribución de insights, los backlinks, la voz, las imágenes: todo está diseñado para que cualquier touchpoint confirme lo mismo.</p>
<div class="transmedia-punch">Esta marca <strong>sabe</strong> de lo que habla.</div>
</div>
</div>
</div>
<!-- MANIFESTO -->
<div class="manifesto">
<div class="quote">"Diseñamos cada pieza <span class="hl">optimizada para la IA y SEO</span>, pero siempre para que un lector humano pueda <span class="hl">disfrutarla</span>, y un editor pueda producirla en serie sin renunciar a la calidad y alcanzando la <span class="hl">escala y la velocidad necesarias hoy</span>."</div>
<div class="attribution">— LEO MANIFESTO · ZOOPA / 498A · 2026</div>
</div>
<!-- KEY ELEMENTS -->
<div class="section">
<div class="section-label"><span class="num">03</span>Elementos clave</div>
<h2>20 features. <span class="accent">Todas full en v2.</span></h2>
<div class="elements-grid">
<div class="element">
<div class="icon">🐱→👑</div>
<div class="title">Brand Health Ratio</div>
<div class="body">Indicador felino (<code>Crías → Gato → León → Rey</code>) basado en 10 checks. Nudgea, nunca bloquea.</div>
</div>
<div class="element">
<div class="icon">📥</div>
<div class="title">Topic Discovery proactiva</div>
<div class="body">8 fuentes diarias: News API, Google Trends, RSS, YouTube, X, Reddit, white papers (arXiv/Semantic Scholar), GEOradar gaps.</div>
</div>
<div class="element">
<div class="icon">🔥📅🌳</div>
<div class="title">Heat × Lifespan</div>
<div class="body">Cada tema clasificado por urgencia (<code>al rojo vivo</code> / <code>en tendencia</code> / <code>establecido</code> / <code>bajo el radar</code>) y vida útil (<code>fugaz</code> / <code>medio plazo</code> / <code>evergreen</code>).</div>
</div>
<div class="element">
<div class="icon">🔍</div>
<div class="title">Research automático</div>
<div class="body">WebSearch + dedup contra library propia + flags legal/PR contra archivos de regulación EU + autoregulación de marca.</div>
</div>
<div class="element">
<div class="icon">🎯</div>
<div class="title">Planning visual</div>
<div class="body">3 sub-vistas: cards de medios con persona dominante + reach + fit score; autores con load indicator; calendar Gantt drag-drop.</div>
</div>
<div class="element">
<div class="icon">✓</div>
<div class="title">Canónico con validators inline</div>
<div class="body">Tiptap editor + scores en tiempo real (Smart Brevity, Semantic Density, Naturalness) + 8 componentes HTML obligatorios.</div>
</div>
<div class="element">
<div class="icon">★</div>
<div class="title">SAM integrado funcional</div>
<div class="body">Match contra prompts target de auditoría GEOradar + sugerencias clickables que reescriben el bloque con Claude.</div>
</div>
<div class="element">
<div class="icon">📊</div>
<div class="title">Library Overview · 4 vistas</div>
<div class="body">Temporal · Dependencies graph · Personas swimlanes · Insights distribution matrix. Edición directa en cualquier vista.</div>
</div>
<div class="element">
<div class="icon">🚀</div>
<div class="title">Home Run mode</div>
<div class="body">3 modos de publicación (auto API / Playwright / manual asistido) + sequential approval o cadena automática tras la primera.</div>
</div>
<div class="element">
<div class="icon">🎨</div>
<div class="title">Imagen con brand style</div>
<div class="body">Nano Banana + brand reference images → auto style prompt persistente. Coherencia visual cross-piece, cross-language.</div>
</div>
<div class="element">
<div class="icon">⟳</div>
<div class="title">Now working on</div>
<div class="body">Widget global persistente en top bar. Siempre sabes qué está procesando el sistema, ETA, y si puedes cancelar.</div>
</div>
<div class="element">
<div class="icon">📚</div>
<div class="title">VoiceExemplars</div>
<div class="body">5 categorías (tone, structure, vocabulary, rhythm, anti-pattern). Capture per brand. Inyectadas como few-shot en futuras generaciones.</div>
</div>
</div>
</div>
<!-- BENEFITS -->
<div class="section">
<div class="section-label"><span class="num">04</span>Beneficios</div>
<h2>Tres beneficiarios, una <span class="accent">misma promesa</span>.</h2>
<div class="benefits-grid">
<div class="benefit">
<div class="audience">PARA EL OPERADOR EDITORIAL</div>
<div class="punch">Conserva el oficio. Multiplica el output.</div>
<div class="body">El proceso mental ya no se traduce a un modelo de datos ajeno. <strong>El sistema acompaña, no reemplaza.</strong> Cada corrección queda capturada y mejora las siguientes piezas. Editor profesional, no operador de plantillas.</div>
</div>
<div class="benefit">
<div class="audience">PARA LA MARCA</div>
<div class="punch">Voz consistente. Identidad transmedia. Visibilidad agéntica.</div>
<div class="body">VoiceExemplars y brand reference images garantizan <strong>coherencia cross-piece, cross-channel, cross-language</strong>. Cada pieza es citable por agentes IA desde día 1. SEO sale gratis; GEO se gana de fábrica.</div>
</div>
<div class="benefit">
<div class="audience">PARA LA AGENCIA</div>
<div class="punch">Escala sin contaminar marcas.</div>
<div class="body"><strong>Multi-brand isolation riguroso</strong> en 5 layers (routing, API, ORM, Postgres RLS, storage). Voice exemplars de un cliente nunca contaminan otro. RBAC granular: editores scoped a brands específicas.</div>
</div>
</div>
</div>
<!-- COMPETITORS -->
<div class="section">
<div class="section-label"><span class="num">05</span>Frente al mercado</div>
<h2>Nadie hace todo. <span class="accent">LEO sí.</span></h2>
<table class="comp-table">
<thead>
<tr>
<th>Herramienta</th>
<th>Agentic-first</th>
<th>Process-driven</th>
<th>Multi-brand isolation</th>
<th>Learning loop</th>
<th>Ventaja LEO</th>
</tr>
</thead>
<tbody>
<tr class="leo">
<td>LEO</td>
<td><span class="tick">✓</span></td>
<td><span class="tick">✓</span></td>
<td><span class="tick">✓</span></td>
<td><span class="tick">✓</span></td>
<td class="adv">— la propuesta —</td>
</tr>
<tr>
<td>Buffer / Hootsuite</td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>
<td class="adv">Scheduling, no generation</td>
</tr>
<tr>
<td>ContentStudio</td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>
<td><span class="cross">×</span></td>