-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathepisode5.html
More file actions
1094 lines (938 loc) · 42.4 KB
/
Copy pathepisode5.html
File metadata and controls
1094 lines (938 loc) · 42.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
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">
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" type="image/png" href="/assets/icons/icon-192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/assets/icons/icon-512.png" sizes="512x512">
<link rel="apple-touch-icon" href="/assets/icons/apple-touch-icon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Content Architecture for LLM Authority · Insights | Rhinegold Consulting</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=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
:root {
--ink: #1a1410;
--paper: #f5f0e8;
--warm: #c8a96e;
--warm-light: #e8d9bb;
--rust: #9b4f2a;
--sage: #4a6741;
--mist: #8a9ba8;
--accent: #d4521a;
--serif: 'Fraunces', Georgia, serif;
--sans: 'DM Sans', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
background: var(--paper);
color: var(--ink);
font-family: var(--sans);
font-weight: 300;
line-height: 1.7;
overflow-x: hidden;
}
/* === Rhinegold Brand Header === */
.site-header {
padding: 1.4rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid var(--warm-light);
background: var(--paper);
gap: 2rem;
position: relative;
}
.rg-brand {
display: flex;
align-items: center;
gap: 0.65rem;
text-decoration: none;
color: var(--ink);
}
.rg-logo-mark {
width: 26px;
height: 26px;
color: var(--rust);
flex-shrink: 0;
}
.rg-wordmark {
font-family: var(--sans);
font-size: 1rem;
font-weight: 500;
letter-spacing: -0.005em;
color: var(--ink);
}
.rg-nav {
display: flex;
align-items: center;
gap: 0.8rem;
font-family: var(--sans);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.16em;
}
.rg-nav a {
color: var(--mist);
text-decoration: none;
transition: color 0.2s ease;
}
.rg-nav a:hover {
color: var(--ink);
}
.rg-nav a.active {
color: var(--ink);
font-weight: 500;
}
.rg-nav-sep {
color: var(--warm-light);
}
.rg-home-link {
font-family: var(--sans);
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--mist);
text-decoration: none;
transition: color 0.2s ease;
white-space: nowrap;
}
.rg-home-link:hover {
color: var(--rust);
}
/* === Rhinegold Brand Footer === */
.rg-footer {
background: #ebe2d0;
border-top: 1px solid var(--warm-light);
padding: 3rem;
font-family: var(--sans);
margin-top: 0;
}
.rg-footer-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 3rem;
align-items: start;
}
.rg-identity {
display: flex;
align-items: flex-start;
gap: 1rem;
}
.rg-logo-mark-large {
width: 34px;
height: 34px;
color: var(--rust);
flex-shrink: 0;
margin-top: 0.1rem;
}
.rg-identity-text .rg-wordmark-large {
font-family: var(--sans);
font-size: 1.05rem;
font-weight: 500;
color: var(--ink);
margin-bottom: 0.5rem;
}
.rg-tagline {
font-size: 0.85rem;
line-height: 1.55;
color: #5a4d3f;
max-width: 380px;
}
.rg-footer-column h5 {
font-family: var(--sans);
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.16em;
color: var(--mist);
font-weight: 500;
margin-bottom: 1rem;
}
.rg-footer-column ul {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 0.55rem;
}
.rg-footer-column a {
font-size: 0.88rem;
color: var(--ink);
text-decoration: none;
transition: color 0.2s ease;
}
.rg-footer-column a:hover {
color: var(--rust);
}
.rg-footer-bottom {
max-width: 1200px;
margin: 2.5rem auto 0;
padding-top: 1.5rem;
border-top: 1px solid #d9cdb5;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.75rem;
color: var(--mist);
}
.rg-footer-bottom-links {
display: flex;
gap: 1.5rem;
}
.rg-footer-bottom-links a {
color: var(--mist);
text-decoration: none;
transition: color 0.2s ease;
}
.rg-footer-bottom-links a:hover {
color: var(--ink);
}
/* Responsive Brand Bridge */
@media (max-width: 900px) {
.site-header {
padding: 1.25rem 1.5rem;
flex-wrap: wrap;
gap: 1rem;
}
.rg-nav {
order: 3;
width: 100%;
justify-content: center;
padding-top: 0.5rem;
border-top: 1px solid var(--warm-light);
}
.rg-footer {
padding: 2.5rem 1.5rem;
}
.rg-footer-inner {
grid-template-columns: 1fr;
gap: 2.5rem;
}
.rg-footer-bottom {
flex-direction: column;
gap: 1rem;
text-align: center;
}
}
/* Hero */
.hero {
padding: 6rem 3rem 0;
max-width: 1200px;
margin: 0 auto;
position: relative;
}
.episode-tag {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--rust);
margin-bottom: 2rem;
display: flex;
align-items: center;
gap: 1rem;
}
.episode-tag::after {
content: '';
display: block;
width: 60px;
height: 1px;
background: var(--rust);
opacity: 0.4;
}
.hero-title {
font-family: var(--serif);
font-size: clamp(3rem, 6vw, 5.5rem);
font-weight: 300;
line-height: 1.05;
letter-spacing: -0.03em;
color: var(--ink);
max-width: 800px;
margin-bottom: 3rem;
}
.hero-title em {
font-style: italic;
color: var(--rust);
}
.hero-deck {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 4rem;
padding: 3rem 0;
border-top: 1px solid var(--warm-light);
}
.hero-intro {
font-size: 1.15rem;
line-height: 1.75;
color: #3a3028;
}
.hero-meta {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.byline {
font-size: 0.8rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--mist);
}
.byline strong {
display: block;
font-size: 0.9rem;
color: var(--ink);
font-weight: 500;
margin-top: 0.3rem;
text-transform: none;
letter-spacing: 0;
}
.reading-time {
font-size: 0.8rem;
color: var(--mist);
margin-top: 1rem;
}
/* Pull quote / chapter intro */
.chapter-marker {
background: var(--ink);
color: var(--paper);
padding: 4rem 3rem;
margin: 0;
position: relative;
overflow: hidden;
}
.chapter-marker::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 400px;
height: 400px;
border-radius: 50%;
border: 1px solid rgba(200, 169, 110, 0.15);
}
.chapter-marker::after {
content: '';
position: absolute;
bottom: -30%;
right: 5%;
width: 250px;
height: 250px;
border-radius: 50%;
border: 1px solid rgba(200, 169, 110, 0.08);
}
.chapter-inner {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 4rem;
align-items: center;
position: relative;
z-index: 1;
}
.chapter-number {
font-family: var(--serif);
font-size: 8rem;
font-weight: 300;
color: var(--warm);
opacity: 0.3;
line-height: 1;
}
.chapter-quote {
font-family: var(--serif);
font-size: 1.8rem;
font-weight: 300;
font-style: italic;
line-height: 1.4;
color: var(--paper);
}
.chapter-quote cite {
display: block;
font-family: var(--sans);
font-size: 0.8rem;
font-style: normal;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--warm);
margin-top: 1.5rem;
}
/* Body content */
.content-wrap {
max-width: 1200px;
margin: 0 auto;
padding: 5rem 3rem;
}
.content-cols {
display: grid;
grid-template-columns: 1fr 3fr;
gap: 5rem;
}
.sidebar {
padding-top: 0.5rem;
}
.sidebar-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--mist);
margin-bottom: 1.5rem;
}
.sidebar-nav {
list-style: none;
}
.sidebar-nav li {
padding: 0.5rem 0;
border-bottom: 1px solid var(--warm-light);
font-size: 0.85rem;
color: var(--mist);
cursor: pointer;
transition: color 0.2s;
}
.sidebar-nav li:hover { color: var(--ink); }
.sidebar-nav li.active { color: var(--rust); font-weight: 500; }
.sidebar-stat {
margin-top: 3rem;
padding: 1.5rem;
background: var(--warm-light);
border-left: 3px solid var(--warm);
}
.sidebar-stat .number {
font-family: var(--serif);
font-size: 2.5rem;
font-weight: 300;
color: var(--rust);
line-height: 1;
}
.sidebar-stat .label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--mist);
margin-top: 0.5rem;
}
/* Article text */
.article-body h2 {
font-family: var(--serif);
font-size: 2rem;
font-weight: 300;
line-height: 1.2;
letter-spacing: -0.02em;
color: var(--ink);
margin: 3.5rem 0 1.5rem;
padding-top: 3rem;
border-top: 1px solid var(--warm-light);
}
.article-body h2:first-child {
margin-top: 0;
padding-top: 0;
border-top: none;
}
.article-body h3 {
font-family: var(--sans);
font-size: 0.8rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--rust);
margin: 2.5rem 0 1rem;
}
.article-body p {
font-size: 1.05rem;
line-height: 1.8;
color: #2e2820;
margin-bottom: 1.5rem;
}
.article-body p strong {
font-weight: 500;
color: var(--ink);
}
/* Pull quote inline */
.pull-quote {
border-left: 3px solid var(--accent);
padding: 1.5rem 2rem;
margin: 3rem 0;
background: rgba(212, 82, 26, 0.04);
}
.pull-quote p {
font-family: var(--serif);
font-size: 1.4rem;
font-weight: 300;
font-style: italic;
line-height: 1.5;
color: var(--ink);
margin: 0;
}
/* Journey diagram */
.journey-diagram {
margin: 3rem 0;
background: var(--ink);
padding: 3rem;
position: relative;
}
.journey-diagram h4 {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--warm);
margin-bottom: 2.5rem;
}
.journey-phases {
display: grid;
grid-template-columns: repeat(7, 1fr);
gap: 0;
position: relative;
}
.journey-phases::before {
content: '';
position: absolute;
top: 28px;
left: 24px;
right: 24px;
height: 1px;
background: linear-gradient(to right, var(--sage), var(--warm), var(--rust));
z-index: 0;
}
.phase-item {
display: flex;
flex-direction: column;
align-items: center;
gap: 0.75rem;
position: relative;
z-index: 1;
}
.phase-dot {
width: 14px;
height: 14px;
border-radius: 50%;
border: 2px solid;
background: var(--ink);
}
.phase-dot.awareness { border-color: var(--sage); }
.phase-dot.consideration { border-color: var(--warm); }
.phase-dot.decision { border-color: var(--rust); }
.phase-dot.filled.awareness { background: var(--sage); }
.phase-dot.filled.consideration { background: var(--warm); }
.phase-dot.filled.decision { background: var(--rust); }
.phase-label {
font-size: 0.65rem;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(245, 240, 232, 0.5);
text-align: center;
line-height: 1.3;
}
.phase-question {
font-size: 0.6rem;
color: rgba(245, 240, 232, 0.25);
text-align: center;
line-height: 1.4;
font-style: italic;
}
/* Data callout */
.data-callout {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2px;
margin: 3rem 0;
}
.data-cell {
padding: 2rem;
background: var(--warm-light);
text-align: center;
}
.data-cell .figure {
font-family: var(--serif);
font-size: 3rem;
font-weight: 300;
line-height: 1;
color: var(--rust);
}
.data-cell .unit {
font-size: 0.8rem;
color: var(--mist);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-top: 0.3rem;
}
.data-cell .context {
font-size: 0.8rem;
color: var(--mist);
margin-top: 0.75rem;
line-height: 1.5;
}
/* Insight block */
.insight-block {
background: var(--sage);
color: var(--paper);
padding: 2.5rem;
margin: 3rem 0;
}
.insight-block .eyebrow {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: rgba(245, 240, 232, 0.6);
margin-bottom: 1rem;
}
.insight-block p {
font-family: var(--serif);
font-size: 1.2rem;
font-weight: 300;
font-style: italic;
line-height: 1.6;
color: var(--paper);
margin: 0;
}
/* Implication table */
.implication-table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
font-size: 0.9rem;
}
.implication-table th {
text-align: left;
padding: 0.75rem 1rem;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.12em;
color: var(--mist);
border-bottom: 2px solid var(--warm-light);
font-weight: 400;
}
.implication-table td {
padding: 1rem;
border-bottom: 1px solid var(--warm-light);
vertical-align: top;
line-height: 1.5;
}
.implication-table tr:last-child td { border-bottom: none; }
.implication-table .signal {
font-weight: 500;
color: var(--ink);
}
.implication-table .old {
color: var(--mist);
text-decoration: line-through;
}
.implication-table .new {
color: var(--sage);
font-weight: 500;
}
/* Footer */
.article-footer {
border-top: 2px solid var(--ink);
padding: 4rem 3rem;
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: 2fr 1fr;
gap: 4rem;
align-items: start;
}
.next-episode {
padding: 2.5rem;
border: 1px solid var(--warm-light);
position: relative;
}
.next-label {
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--mist);
margin-bottom: 1rem;
}
.next-title {
font-family: var(--serif);
font-size: 1.5rem;
font-weight: 300;
line-height: 1.3;
color: var(--ink);
}
.series-nav {
font-size: 0.8rem;
color: var(--mist);
}
.series-nav p {
margin-bottom: 1rem;
}
.series-list {
list-style: none;
}
.series-list li {
padding: 0.4rem 0;
border-bottom: 1px solid var(--warm-light);
font-size: 0.82rem;
}
.series-list li.current {
color: var(--rust);
font-weight: 500;
}
.series-list li.published a {
color: var(--mist);
text-decoration: none;
}
@media (max-width: 768px) {
.hero-deck, .content-cols, .data-callout,
.journey-phases, .article-footer { grid-template-columns: 1fr; }
.chapter-inner { grid-template-columns: 1fr; }
.chapter-number { font-size: 4rem; }
.hero, .content-wrap { padding-left: 1.5rem; padding-right: 1.5rem; }
.site-header { padding: 1.5rem; }
.chapter-marker { padding: 3rem 1.5rem; }
.hero-title { font-size: 2.5rem; }
}
</style>
<!-- rg-frame:meta -->
<meta name="description" content="How to architect B2B content that survives AI compression and earns durable LLM authority — the fifth essay in the series.">
<meta name="author" content="Mike Zachrau">
<link rel="canonical" href="https://insights.rhinegold.de/episode5">
<meta property="og:type" content="article">
<meta property="og:site_name" content="rhinegold — Insights">
<meta property="og:title" content="Content Architecture for LLM Authority">
<meta property="og:description" content="How to architect B2B content that survives AI compression and earns durable LLM authority — the fifth essay in the series.">
<meta property="og:url" content="https://insights.rhinegold.de/episode5">
<meta property="og:image" content="https://insights.rhinegold.de/assets/og/og-ep5.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="630">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Content Architecture for LLM Authority">
<meta name="twitter:description" content="How to architect B2B content that survives AI compression and earns durable LLM authority — the fifth essay in the series.">
<meta name="twitter:image" content="https://insights.rhinegold.de/assets/og/og-ep5.png">
<script type="application/ld+json">{"@context":"https://schema.org","@type":"Article","headline":"Content Architecture for LLM Authority","description":"How to architect B2B content that survives AI compression and earns durable LLM authority — the fifth essay in the series.","author":{"@type":"Person","name":"Mike Zachrau"},"publisher":{"@type":"Organization","name":"rhinegold","url":"https://rhinegold.de"},"datePublished":"2026-06-04","dateModified":"2026-06-04","mainEntityOfPage":{"@type":"WebPage","@id":"https://insights.rhinegold.de/episode5"},"image":"https://insights.rhinegold.de/assets/og/og-ep5.png","isPartOf":{"@type":"Blog","name":"Semantic Intelligence — rhinegold Insights","url":"https://insights.rhinegold.de/"}}</script>
</head>
<body>
<style>
.rg-topbar-burger{position:relative}
.rg-topbar-burger>nav{display:flex;gap:24px;font-size:14px;flex-wrap:wrap}
.rg-topbar-burger>nav a{color:#cdc6bb;text-decoration:none}
.rg-topbar-burger>nav a.rg-active{color:#f0c070}
.rg-burger{display:none;cursor:pointer;padding:4px;background:transparent;border:0;line-height:0}
#nav-toggle{position:absolute;left:-9999px;width:1px;height:1px}
@media(max-width:699px){
.rg-burger{display:flex;align-items:center}
.rg-topbar-burger>nav{display:none;position:absolute;top:100%;right:0;left:0;background:#14110f;flex-direction:column;padding:14px 30px;gap:14px;border-bottom:1px solid #2a2622;z-index:50}
#nav-toggle:checked~nav{display:flex}
}
</style>
<header class="rg-topbar-burger" style="background:#14110f;border-bottom:1px solid #2a2622;padding:12px 30px;display:flex;align-items:center;justify-content:space-between;gap:20px;font-family:'DM Sans',system-ui,sans-serif"><a href="https://rhinegold.de" aria-label="rhinegold home" style="display:flex;align-items:center;text-decoration:none"><img src="https://insights.rhinegold.de/assets/rhinegold-logo.png" alt="rhinegold" width="620" height="160" style="height:26px;width:auto;display:block"></a><input type="checkbox" id="nav-toggle" aria-label="Menu"><label class="rg-burger" for="nav-toggle" aria-label="Menu öffnen/schließen"><svg width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="#cdc6bb" stroke-width="2" stroke-linecap="round" aria-hidden="true"><line x1="4" y1="7" x2="20" y2="7"/><line x1="4" y1="12" x2="20" y2="12"/><line x1="4" y1="17" x2="20" y2="17"/></svg></label><nav><a href="https://insights.rhinegold.de/" class="rg-active">Insights</a><a href="https://insights.rhinegold.de/compendium/">Compendium</a><a href="https://rhinegold.de/services">Services</a><a href="https://rhinegold.de/sim">SIM</a><a href="https://rhinegold.de/methodology">Methodology</a><a href="https://rhinegold.de/about">About</a><a href="https://rhinegold.de/contact">Contact</a></nav></header>
<main>
<section class="hero">
<div class="episode-tag">Episode Five · Content Architecture for LLM Authority</div>
<h1 class="hero-title">
What survives <em>compression</em>
</h1>
<div class="hero-deck">
<div class="hero-intro">
Four episodes diagnosed the new reality. The fifth turns from observation to construction. When a language model answers a question about your category, it does not retrieve your page — it retrieves what survives compression. Most content does not survive. This episode is about the architecture, the precision, and the coverage principle that determines which content becomes <em>source</em>, and which becomes noise the model discards.
</div>
<div class="hero-meta">
<div>
<div class="byline">By</div>
<strong>Michael Zachrau</strong>
</div>
<div class="reading-time">14 min read · June 2026</div>
</div>
</div>
</section>
<div class="chapter-marker">
<div class="chapter-inner">
<div class="chapter-number">V</div>
<div class="chapter-quote">
"Citation is not retrieval. It is what remains after the model has discarded everything that wasn't structured enough, dense enough, or precise enough to keep."
</div>
</div>
</div>
<div class="content-wrap">
<div class="content-cols">
<aside class="sidebar">
<div class="sidebar-label">In this episode</div>
<nav class="sidebar-nav">
<a href="#filter" class="active">The compression filter</a>
<a href="#coverage">Semantic coverage, defined</a>
<a href="#inventory">The function inventory</a>
<a href="#silent">The silent citation pattern</a>
<a href="#precision">Precision over density</a>
<a href="#architecture">Architecture, explicit</a>
<a href="#close">The closing argument</a>
</nav>
<div class="sidebar-stat">
<div class="number">38<span style="font-size:1.4rem">%</span></div>
<div class="label">of measured glossary URLs absorbed by Gemini as grounding source in a mid-2026 B2B cohort</div>
</div>
<div class="sidebar-stat">
<div class="number">61<span style="font-size:1.4rem">%</span></div>
<div class="label">share of those grounded answers in which the brand is not mentioned in the response text — the silent citation pattern</div>
</div>
</aside>
<article class="article-body">
<h2 id="filter">The compression filter</h2>
<p>A language model does not answer with your page. It answers with what survives compression — what remains after billions of tokens have been weighted, ranked, and discarded into a single response of a few hundred words. The compression filter is brutal and not particularly visible from the outside. It is, however, learnable.</p>
<p>What survives compression has properties. It tends to be definitionally clear in its first sentence. It tends to carry data points the model can quote without inventing them. It tends to be structurally legible — tables, lists, comparison frames — so the model can re-emit the structure rather than paraphrase around it. It tends to be self-contained: a paragraph that requires the rest of the article to make sense will lose to one that does not.</p>
<p>This is not a stylistic preference. It is what we observe, empirically, in eight months of measuring which content becomes source at four major LLM providers across thousands of buyer-intent prompts. The variance is not random. The patterns are stable across providers, though the weighting differs. And the patterns are <em>buildable</em>.</p>
<div class="pull-quote">
The page is not the unit of measurement. The function the page performs in the buyer's mental state is the unit of measurement.
</div>
<h2 id="coverage">Semantic coverage, defined</h2>
<p>The dominant content strategy frame of the last decade was keyword density on the input side and topic coverage on the output side. Both frames assumed search engines as the reader. They have not aged well, because LLMs do not read the way search engines do.</p>
<p>What LLMs read for, when they read your content as a candidate source, is whether you have <strong>performed the cognitive functions</strong> that the user's question implicitly requires. A user asking what a concept means requires a definition. A user asking how two options differ requires a comparison structure. A user asking what to look for in a provider requires a criteria list. The page that performs the right function for the question becomes source. The page that tries to perform all functions at once becomes none of them.</p>
<p>Semantic coverage is the degree to which a page performs the specific functions required by the information situation it serves. It is not measured in words or keywords. It is measured in function-presence, function-completeness, and function-precision. Three pages of 1,500 words each, all attempting the same coverage, will lose to one page of 800 words that performs three precise functions and stops.</p>
<h3>The eight situations</h3>
<p>Through systematic prompt analysis and grounding observation, the buyer-journey decomposition we introduced in Episode Three resolves cleanly into eight distinct information situations, each with its own function requirements. We do not invent the situations from theory. We observe them in what users ask and what LLMs answer.</p>
<div class="journey-diagram">
<h4>The Eight Information Situations and Their Function Anchors</h4>
<div class="journey-phases">
<div class="phase-item">
<div class="phase-dot filled awareness"></div>
<div class="phase-label">Understand<br>the Problem</div>
<div class="phase-question">describe_symptoms · contextualize_impact</div>
</div>
<div class="phase-item">
<div class="phase-dot filled awareness"></div>
<div class="phase-label">Understand<br>the Term</div>
<div class="phase-question">define_term · clarify_misconceptions</div>
</div>
<div class="phase-item">
<div class="phase-dot filled awareness"></div>
<div class="phase-label">Discover<br>the Topic</div>
<div class="phase-question">give_orientation · differentiate_terms</div>
</div>
<div class="phase-item">
<div class="phase-dot filled consideration"></div>
<div class="phase-label">Explore<br>Solutions</div>
<div class="phase-question">list_solution_types · describe_each_type</div>
</div>
<div class="phase-item">
<div class="phase-dot filled consideration"></div>
<div class="phase-label">Compare<br>Options</div>
<div class="phase-question">comparison_table · pros_cons_overview</div>
</div>
<div class="phase-item">
<div class="phase-dot filled consideration"></div>
<div class="phase-label">Clarify<br>Criteria</div>
<div class="phase-question">list_criteria · quality_indicators</div>
</div>
<div class="phase-item">
<div class="phase-dot filled decision"></div>
<div class="phase-label">Compare<br>Providers</div>
<div class="phase-question">provider_fit_guide · show_credentials</div>
</div>
<div class="phase-item">
<div class="phase-dot filled decision"></div>
<div class="phase-label">Ready<br>to Decide</div>
<div class="phase-question">show_requirements · offer_consultation</div>
</div>
</div>
</div>
<p>The point of this granularity is not academic. Every named function corresponds to a structural pattern an LLM can recognize and re-emit. <em>define_term</em> is a sentence beginning with the noun and ending with a precise predicate. <em>comparison_table</em> is a table with column headers naming the comparison dimension. <em>list_criteria</em> is an enumerated list where each item is a criterion plus its operationalization. These are not abstractions. They are detectable patterns in HTML, and they are exactly what models reach for when constructing answers.</p>
<h2 id="inventory">The function inventory</h2>
<p>From three years of pattern observation and eight months of focused LLM-grounding measurement, we maintain an evolving inventory of content functions. The current production set contains thirty-one named functions, each with operational detection rules and empirical evidence of their effect on citation rate.</p>
<p>A function is not a topic. It is what the page <em>does</em> when read. The same topic — say, pricing structure — can be addressed via at least four distinct functions: a cost comparison table, a list of cost drivers, a calculator, or a worked example. Each performs differently for different prompts. None is universally superior. The architectural decision is which function to assign to which page, given the information situation that page is meant to serve.</p>
<p>The function inventory has a corollary that surprises most content teams when they first see it: <strong>more is not better</strong>. A page that attempts to perform six functions simultaneously will perform none of them well, will fail every individual function-detection test, and will not become source for any prompt. We see this repeatedly in the wild. The instinct to make pages comprehensive is the instinct that destroys semantic coverage.</p>
<div class="insight-block">
<div class="eyebrow">The principle</div>
<p>One page, one situation, one function-cluster. The semantic coverage of a site is the sum of focused pages, not the sum of comprehensive ones. A site of 150 precise pages outperforms a site of 30 long ones — measurably, at the citation level, across all four major providers.</p>
</div>
<h2 id="silent">The silent citation pattern</h2>
<p>In mid-2026, we observed a phenomenon at Google Gemini that quietly reframes the entire content-architecture question. Over a sustained measurement of roughly twenty-two thousand executions in a single B2B category, Gemini cited the client's URLs as grounding source approximately two thousand eight hundred times across nearly five hundred distinct URLs. Thirty-eight percent of the client's glossary pages were retrieved as source at least once. By any reasonable measure, the content was working.</p>
<p>And yet, in roughly <strong>sixty-one percent</strong> of those same answers, the brand was not named in the response text at all. The model used the content. It did not attribute to the source.</p>
<div class="data-callout">
<div class="data-cell">
<div class="figure">~2,800</div>
<div class="unit">grounding citations</div>
<div class="context">on Gemini across a single B2B client domain, multi-week measurement window</div>
</div>
<div class="data-cell">
<div class="figure">~490</div>
<div class="unit">distinct URLs cited</div>
<div class="context">across glossary, methodology, and product-explanation pages</div>
</div>
<div class="data-cell">
<div class="figure">61<span style="font-size:2rem">%</span></div>
<div class="unit">silent share</div>
<div class="context">of grounded answers in which the brand is not named in the response text</div>
</div>
</div>
<p>This is the silent citation pattern, and it is the most important strategic finding of our last twelve months. It means: content can be absorbed and used as authoritative source by a major LLM without the brand ever appearing in the answer the user sees. The content was good enough to ground the response. It was not anchored enough to brand the response.</p>
<p>The implication for architecture is sharp. <strong>Semantic coverage produces grounding. Branded-entity anchoring produces visible attribution.</strong> They are two different layers, and both must be designed for. A glossary page can be authoritative without being branded. A branded page can be visible without being authoritative. The art is to be both — and the technique is to embed the brand as a semantic anchor inside the function, not as a footer decoration outside it.</p>
<p>Concretely: a definition page that opens with a category-level definition gives the model a definition. A definition page that opens with the same category-level definition <em>bound to the brand as the entity performing it</em> gives the model a definition <em>and</em> a branded entity to attribute to. Same function, different anchoring. Different citation behaviour downstream. The technique is not to add brand mentions; it is to make the brand the grammatical subject of the function the page performs.</p>
<p>This also reframes the open question. In the thirty-nine percent of grounded answers that do attribute, what is different about the pages being cited? Our working hypothesis, supported by emerging pattern analysis: those pages bind their function to their entity inside the first paragraph. The pages that remain silent do not. The asymmetry between sixty-one percent silent and thirty-nine percent attributed is, in this reading, a measurable consequence of anchoring discipline — not of model behaviour alone.</p>
<h2 id="precision">Precision over density</h2>
<p>The second architectural axis after coverage is precision. Coverage asks: does the page perform the required function. Precision asks: does it perform it in the form the model can reuse.</p>