File size: 65,357 Bytes
27ba41e | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Primordial Loop Completion Cycle Map</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Sans+3:wght@300;400;500&display=swap');
:root {
--bg: #f7f3ec;
--bg2: #f0ebe0;
--bg3: #e8e1d4;
--parchment: #ede6d8;
--ink: #2c2416;
--ink2: #4a3f2f;
--ink3: #6b5c42;
--muted: #9b8c76;
--amber: #b87c34;
--amber2: #d4a45a;
--amber3: #f0c878;
--rust: #8c4a2a;
--sage: #5a7a5a;
--sage2: #7a9e7a;
--sage3: #a8c5a0;
--lavender: #8a7a9a;
--sky: #6a8a9a;
--gold: #c4903a;
--border: #d4c8b4;
--shadow: rgba(44,36,22,0.12);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--ink);
font-family: 'Source Sans 3', sans-serif;
font-weight: 300;
line-height: 1.7;
font-size: 15px;
}
/* ββ COVER ββ */
.cover {
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 60px 40px;
background: radial-gradient(ellipse at 50% 40%, #f5ede0 0%, #e8dcc8 55%, #d9ccb4 100%);
position: relative;
overflow: hidden;
}
.cover::before {
content: '';
position: absolute;
inset: 0;
background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b87c34' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
opacity: 0.5;
}
.cover-emblem {
width: 80px; height: 80px;
margin-bottom: 32px;
position: relative;
}
.cover-emblem svg { width: 100%; height: 100%; }
.cover-label {
font-family: 'Source Sans 3', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.3em;
text-transform: uppercase;
color: var(--amber);
margin-bottom: 16px;
}
.cover h1 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(2.2rem, 5vw, 3.8rem);
font-weight: 300;
color: var(--ink);
line-height: 1.2;
max-width: 720px;
margin-bottom: 16px;
position: relative;
}
.cover h1 em { font-style: italic; color: var(--rust); }
.cover-subtitle {
font-family: 'Libre Baskerville', serif;
font-size: 1rem;
font-style: italic;
color: var(--ink3);
max-width: 560px;
margin-bottom: 40px;
line-height: 1.8;
}
.cover-rule {
width: 120px;
height: 1px;
background: var(--amber);
margin: 0 auto 28px;
}
.cover-byline {
font-size: 11px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
}
.cover-byline strong { color: var(--ink3); font-weight: 500; }
.cover-scroll {
position: absolute;
bottom: 32px;
left: 50%;
transform: translateX(-50%);
display: flex; flex-direction: column; align-items: center; gap: 6px;
color: var(--muted); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
text-decoration: none;
}
.cover-scroll span { animation: scrollBob 2s ease-in-out infinite; }
@keyframes scrollBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(4px)} }
/* ββ LAYOUT ββ */
.page { max-width: 900px; margin: 0 auto; padding: 60px 40px; }
.page-wide { max-width: 1100px; margin: 0 auto; padding: 60px 40px; }
.section { margin-bottom: 72px; }
/* ββ HEADINGS ββ */
.section-eyebrow {
font-size: 10.5px;
font-weight: 500;
letter-spacing: 0.35em;
text-transform: uppercase;
color: var(--amber);
margin-bottom: 10px;
}
h2 {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(1.7rem, 3vw, 2.6rem);
font-weight: 400;
color: var(--ink);
line-height: 1.25;
margin-bottom: 20px;
}
h2 em { font-style: italic; color: var(--rust); }
h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.45rem;
font-weight: 500;
color: var(--ink);
margin-bottom: 12px;
}
h4 {
font-family: 'Source Sans 3', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--ink3);
margin-bottom: 8px;
}
p { margin-bottom: 14px; color: var(--ink2); }
p:last-child { margin-bottom: 0; }
.lead {
font-family: 'Libre Baskerville', serif;
font-size: 1.05rem;
line-height: 1.85;
color: var(--ink2);
font-style: italic;
border-left: 3px solid var(--amber2);
padding-left: 20px;
margin-bottom: 24px;
}
.rule { width: 60px; height: 2px; background: var(--amber); margin: 24px 0; }
.rule-full { width: 100%; height: 1px; background: var(--border); margin: 48px 0; }
/* ββ BOUNDARY BOX ββ */
.boundary-box {
background: #fdf9f4;
border: 1px solid var(--border);
border-left: 4px solid var(--sage2);
border-radius: 4px;
padding: 20px 24px;
margin: 24px 0;
font-size: 13.5px;
color: var(--ink3);
line-height: 1.7;
}
.boundary-box strong { color: var(--sage); font-weight: 500; }
.boundary-box ul { padding-left: 18px; margin-top: 8px; }
.boundary-box li { margin-bottom: 4px; }
/* ββ DISRUPTION BAND ββ */
.disruption-band {
background: linear-gradient(135deg, #f5ede4 0%, #f0e4d8 100%);
border: 1px solid #e0ccb8;
border-left: 4px solid var(--rust);
border-radius: 4px;
padding: 20px 24px;
margin: 24px 0;
}
.disruption-band h4 { color: var(--rust); }
.disruptors {
display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px;
}
.disruptor-tag {
background: rgba(140,74,42,0.1);
border: 1px solid rgba(140,74,42,0.25);
border-radius: 20px;
padding: 4px 14px;
font-size: 12.5px;
color: var(--rust);
font-weight: 400;
}
/* ββ THE MAP SVG CONTAINER ββ */
.map-container {
background: linear-gradient(180deg, #f9f4ec 0%, #f2ead8 100%);
border: 1px solid var(--border);
border-radius: 8px;
padding: 32px 24px;
margin: 32px 0;
overflow: hidden;
}
.map-container svg { display: block; width: 100%; height: auto; }
/* ββ HIR NODE GRID ββ */
.hir-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 16px;
margin: 24px 0;
}
.hir-node {
background: #fdf9f2;
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px;
position: relative;
transition: box-shadow 0.2s;
}
.hir-node:hover { box-shadow: 0 4px 16px var(--shadow); }
.hir-node-marker {
width: 32px; height: 32px;
border-radius: 50%;
display: flex; align-items: center; justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 1rem;
font-weight: 600;
margin-bottom: 12px;
flex-shrink: 0;
}
.node-h { background: rgba(100,140,100,0.15); color: var(--sage); border: 1.5px solid var(--sage2); }
.node-i { background: rgba(184,124,52,0.15); color: var(--amber); border: 1.5px solid var(--amber2); }
.node-r { background: rgba(106,138,154,0.15); color: var(--sky); border: 1.5px solid #8aaabb; }
.node-f { background: rgba(100,140,100,0.25); color: var(--sage); border: 1.5px solid var(--sage); }
.node-c { background: rgba(184,124,52,0.2); color: var(--amber); border: 1.5px solid var(--amber); }
.node-rn { background: rgba(196,144,58,0.2); color: var(--gold); border: 1.5px solid var(--gold); }
.node-p { background: rgba(140,74,42,0.12); color: var(--rust); border: 1.5px solid #c07050; }
.node-g { background: rgba(44,36,22,0.1); color: var(--ink2); border: 1.5px solid var(--ink3); }
.hir-node h3 { font-size: 1.1rem; margin-bottom: 6px; }
.hir-node p { font-size: 13.5px; line-height: 1.65; }
.node-tag {
display: inline-block;
font-size: 10px;
letter-spacing: 0.15em;
text-transform: uppercase;
background: var(--bg3);
color: var(--muted);
border-radius: 3px;
padding: 2px 8px;
margin-bottom: 8px;
}
/* ββ AUDIENCE SECTIONS ββ */
.audience-block {
border-radius: 8px;
padding: 32px 36px;
margin: 32px 0;
position: relative;
overflow: hidden;
}
.audience-block::before {
content: attr(data-number);
position: absolute;
top: -10px; right: 20px;
font-family: 'Cormorant Garamond', serif;
font-size: 7rem;
font-weight: 300;
color: currentColor;
opacity: 0.06;
line-height: 1;
pointer-events: none;
}
.block-dying { background: linear-gradient(135deg, #f5f0e8 0%, #ede5d5 100%); border: 1px solid #ddd0b8; }
.block-family { background: linear-gradient(135deg, #eef4ee 0%, #e4ede4 100%); border: 1px solid #c8d8c8; }
.block-care { background: linear-gradient(135deg, #eef2f5 0%, #e4ecf0 100%); border: 1px solid #c0ced8; }
.audience-block h2 { font-size: 1.9rem; }
.practice-list { list-style: none; padding: 0; margin: 16px 0; }
.practice-list li {
display: flex; gap: 12px; align-items: flex-start;
padding: 10px 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
font-size: 14px;
color: var(--ink2);
line-height: 1.6;
}
.practice-list li:last-child { border-bottom: none; }
.practice-list li::before {
content: 'β¦';
color: var(--amber);
font-size: 1rem;
flex-shrink: 0;
margin-top: 2px;
}
.practice-list li strong { color: var(--ink); font-weight: 500; }
/* ββ PATHWAY ββ */
.pathway-container {
background: linear-gradient(160deg, #2c2416 0%, #3d3020 50%, #2c2416 100%);
border-radius: 10px;
padding: 48px 40px;
margin: 32px 0;
color: var(--parchment);
position: relative;
overflow: hidden;
}
.pathway-container::before {
content: '';
position: absolute; inset: 0;
background: radial-gradient(ellipse at 50% 0%, rgba(196,144,58,0.15) 0%, transparent 60%);
pointer-events: none;
}
.pathway-container .section-eyebrow { color: var(--amber3); }
.pathway-container h2 { color: var(--parchment); }
.pathway-container h2 em { color: var(--amber3); }
.pathway-container p { color: #c8b898; }
.pathway-container .rule { background: var(--amber); }
.pathway-steps {
display: flex; flex-direction: column; gap: 0;
margin: 32px 0;
position: relative;
}
.pathway-steps::before {
content: '';
position: absolute;
left: 19px; top: 8px; bottom: 8px;
width: 2px;
background: linear-gradient(180deg, var(--amber) 0%, var(--amber2) 50%, var(--amber3) 100%);
opacity: 0.4;
}
.pathway-step {
display: flex; gap: 24px; align-items: flex-start;
padding: 16px 0;
}
.step-dot {
width: 40px; height: 40px;
border-radius: 50%;
flex-shrink: 0;
display: flex; align-items: center; justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 1.05rem;
font-weight: 500;
position: relative;
z-index: 1;
}
.step-dot-amber { background: rgba(196,144,58,0.25); border: 1.5px solid var(--amber2); color: var(--amber3); }
.step-dot-rust { background: rgba(140,74,42,0.25); border: 1.5px solid #c08060; color: #e0a080; }
.step-dot-sage { background: rgba(90,122,90,0.25); border: 1.5px solid var(--sage2); color: var(--sage3); }
.step-dot-gold { background: rgba(196,144,58,0.3); border: 2px solid var(--gold); color: var(--amber3); }
.step-content h3 {
font-size: 1.1rem;
color: var(--parchment);
margin-bottom: 4px;
}
.step-content p { font-size: 13.5px; color: #a8987e; margin: 0; line-height: 1.6; }
.step-content .step-hir {
font-size: 10.5px;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--amber2);
margin-bottom: 4px;
display: block;
}
.terminal-step {
margin-top: 16px;
background: rgba(196,144,58,0.1);
border: 1px solid rgba(196,144,58,0.3);
border-radius: 6px;
padding: 20px 24px;
text-align: center;
}
.terminal-step h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 1.6rem;
color: var(--amber3);
font-weight: 300;
margin-bottom: 8px;
}
.terminal-step p { font-size: 13.5px; color: #c0a880; }
/* ββ EQUATION BAR ββ */
.equation-bar {
background: var(--parchment);
border: 1px solid var(--border);
border-radius: 6px;
padding: 20px 28px;
margin: 24px 0;
display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center;
font-family: 'Cormorant Garamond', serif;
font-size: 1.1rem;
color: var(--ink2);
}
.eq-term { font-weight: 500; color: var(--ink); }
.eq-op { color: var(--muted); margin: 0 4px; }
.eq-result { font-style: italic; color: var(--amber); font-weight: 500; }
.eq-sep { color: var(--border); font-size: 1.4rem; }
/* ββ FOOTER ββ */
.footer {
background: var(--bg3);
border-top: 1px solid var(--border);
padding: 40px;
text-align: center;
font-size: 12px;
color: var(--muted);
line-height: 1.8;
}
.footer strong { color: var(--ink3); font-weight: 500; }
/* ββ NAV ββ */
.toc {
background: var(--parchment);
border: 1px solid var(--border);
border-radius: 6px;
padding: 24px 28px;
margin: 32px 0;
}
.toc h4 { margin-bottom: 12px; }
.toc ol { padding-left: 18px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--amber); text-decoration: none; font-size: 13.5px; }
.toc a:hover { text-decoration: underline; }
/* ββ PULLQUOTE ββ */
.pullquote {
border-left: 3px solid var(--amber);
padding: 12px 20px 12px 24px;
margin: 28px 0;
font-family: 'Cormorant Garamond', serif;
font-size: 1.3rem;
font-style: italic;
color: var(--ink2);
line-height: 1.6;
}
.pullquote cite {
display: block;
margin-top: 8px;
font-size: 11px;
font-style: normal;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--muted);
}
/* ββ RESPONSIVE ββ */
@media (max-width: 640px) {
.page, .page-wide { padding: 40px 20px; }
.audience-block { padding: 24px 20px; }
.pathway-container { padding: 32px 24px; }
.hir-grid { grid-template-columns: 1fr; }
.equation-bar { font-size: 0.95rem; gap: 6px; }
}
</style>
</head>
<body>
<!-- ββββββββββ COVER ββββββββββ -->
<div class="cover" id="top">
<div class="cover-emblem">
<svg viewBox="0 0 80 80" xmlns="http://www.w3.org/2000/svg" fill="none">
<circle cx="40" cy="40" r="38" stroke="#b87c34" stroke-width="1" opacity="0.4"/>
<circle cx="40" cy="40" r="28" stroke="#b87c34" stroke-width="1" opacity="0.25"/>
<!-- roots -->
<path d="M40 52 Q32 62 24 70" stroke="#b87c34" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
<path d="M40 52 Q48 62 56 70" stroke="#b87c34" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
<path d="M40 52 Q36 66 34 74" stroke="#b87c34" stroke-width="1" stroke-linecap="round" opacity="0.4"/>
<path d="M40 52 Q44 66 46 74" stroke="#b87c34" stroke-width="1" stroke-linecap="round" opacity="0.4"/>
<!-- trunk -->
<path d="M40 52 L40 24" stroke="#b87c34" stroke-width="2" stroke-linecap="round"/>
<!-- branches -->
<path d="M40 32 Q28 26 20 20" stroke="#b87c34" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
<path d="M40 32 Q52 26 60 20" stroke="#b87c34" stroke-width="1.5" stroke-linecap="round" opacity="0.7"/>
<path d="M40 26 Q34 18 30 12" stroke="#b87c34" stroke-width="1" stroke-linecap="round" opacity="0.4"/>
<path d="M40 26 Q46 18 50 12" stroke="#b87c34" stroke-width="1" stroke-linecap="round" opacity="0.4"/>
<!-- center -->
<circle cx="40" cy="40" r="5" fill="#b87c34" opacity="0.3"/>
<circle cx="40" cy="40" r="2.5" fill="#b87c34" opacity="0.7"/>
</svg>
</div>
<div class="cover-label">Primordial Calculus / HIR Framework</div>
<h1>Primordial Loop<br><em>Completion</em> Cycle Map</h1>
<div class="cover-rule"></div>
<p class="cover-subtitle">
A bounded architecture for approaching the end of life through<br>
closure, dignity, honesty, integrity, respect, and completion.
</p>
<div class="cover-byline">
Grounded in the HIR Framework by <strong>Collin D. Weber</strong>
Β· Hospice & End-of-Life Application
</div>
<a href="#map" class="cover-scroll">
<span>β</span>
Begin
</a>
</div>
<!-- ββββββββββ MAIN PAGE ββββββββββ -->
<div class="page" id="map">
<!-- Boundaries & Intent -->
<div class="section">
<div class="section-eyebrow">Purpose & Boundaries</div>
<h2>What This Map Is β And Is Not</h2>
<p class="lead">
This map is a relational and psychological orientation tool, grounded in the HIR framework
of Honesty, Integrity, and Respect, applied to the human experience of dying.
It does not replace medicine, therapy, chaplaincy, or any form of professional care.
</p>
<div class="boundary-box">
<strong>Explicit Boundaries</strong>
<ul>
<li>This is not a cure claim, treatment protocol, or medical intervention.</li>
<li>This is not a replacement for clinical, therapeutic, or palliative care.</li>
<li>This makes no metaphysical or religious certainty claims about what death means or what follows.</li>
<li>No spiritual framework is imposed. The word <em>completion</em> is used in a relational and psychological sense only.</li>
<li>No one is required to use this map or its language. It is offered, not coerced.</li>
<li>This is consistent with Primordial Calculus evidence status: a framework for understanding, not an externally validated clinical protocol.</li>
</ul>
</div>
<p>What it offers: a structured, compassionate way to understand how the human qualities of honesty, integrity, and respect β and their derived states of fidelity, cohesion, and resonance β can support a person in moving toward death with dignity, closure, and relational peace rather than fragmentation, fear, or abandonment.</p>
<div class="toc">
<h4>Contents</h4>
<ol>
<li><a href="#architecture">The HIR Architecture β Core Variables Explained</a></li>
<li><a href="#integrated-map">The Integrated Loop Completion Map</a></li>
<li><a href="#disruption">Disruption: What Breaks Closure</a></li>
<li><a href="#plain-language">Plain-Language Explanation</a></li>
<li><a href="#dying-person">For the Dying Person</a></li>
<li><a href="#family">For Family & Loved Ones</a></li>
<li><a href="#caregivers">For Caregivers & Hospice Support</a></li>
<li><a href="#pathway">The Final Completion Pathway</a></li>
</ol>
</div>
</div>
<div class="rule-full"></div>
<!-- HIR Architecture -->
<div class="section" id="architecture">
<div class="section-eyebrow">Framework Architecture</div>
<h2>The HIR Variables in the <em>Context of Dying</em></h2>
<p>These are the core variables of the HIR framework, translated into their end-of-life meanings. Each variable describes a quality of being, relating, or enduring β not a task to be performed perfectly.</p>
<div class="equation-bar">
<span class="eq-term">Honesty</span><span class="eq-op">+</span><span class="eq-term">Integrity</span>
<span class="eq-op">β</span><span class="eq-result">Fidelity</span>
<span class="eq-sep">|</span>
<span class="eq-term">Respect</span><span class="eq-op">+</span><span class="eq-term">Integrity</span>
<span class="eq-op">β</span><span class="eq-result">Cohesion</span>
<span class="eq-sep">|</span>
<span class="eq-result">Fidelity</span><span class="eq-op">+</span><span class="eq-result">Cohesion</span>
<span class="eq-op">β</span><span class="eq-result">Resonance</span>
</div>
<div class="hir-grid">
<div class="hir-node">
<div class="node-tag">Bedrock Β· H</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-h">H</div>
<h3>Honesty</h3>
</div>
<p>Facing reality without denial. At end of life, honesty means allowing the truth of one's situation β the diagnosis, the time, the unfinished things β to be seen and named. Not brutality. Not forced optimism. Contact with what is real.</p>
<p>Honesty opens the space in which real closure becomes possible. Without it, energy is spent maintaining illusions rather than completing what matters.</p>
</div>
<div class="hir-node">
<div class="node-tag">Bedrock Β· I</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-i">I</div>
<h3>Integrity</h3>
</div>
<p>Lived consistency between the inner life and the outer one. At end of life, integrity means that a person's values, relationships, and choices remain coherent. It is the bridge between who a person has been and how they complete.</p>
<p>Integrity allows a person to feel that their life has had internal consistency β not perfection, but a thread. It reduces the anguish of fragmentation.</p>
</div>
<div class="hir-node">
<div class="node-tag">Bedrock Β· R</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-r">R</div>
<h3>Respect</h3>
</div>
<p>Relational non-destruction. At end of life, respect means honoring the dying person's boundaries, choices, identity, and dignity β and the same for those who love them. No one is instrumentalized. No one is abandoned. No one is coerced.</p>
<p>Respect also runs inward: the dying person's respect for their own needs, limits, and right to closure on their own terms.</p>
</div>
<div class="hir-node">
<div class="node-tag">Derived Β· F</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-f">F</div>
<h3>Fidelity</h3>
</div>
<p>Emerges from Honesty + Integrity. Fidelity is meaning-keeping: the felt sense that one's life had integrity, that relationships were real, that commitments were honored as fully as possible. It is the foundation of a life that can be looked at clearly without collapse.</p>
<p>Fidelity supports the ability to say: <em>I was true to what mattered.</em></p>
</div>
<div class="hir-node">
<div class="node-tag">Derived Β· C</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-c">C</div>
<h3>Cohesion</h3>
</div>
<p>Emerges from Respect + Integrity. Cohesion is relational and communal connection that holds through pressure. At end of life, cohesion means the dying person remains part of their relational world β not isolated, not abandoned, not reduced to their illness.</p>
<p>Cohesion allows family and caregivers to remain present and functional rather than fragmenting under grief and fear.</p>
</div>
<div class="hir-node">
<div class="node-tag">Threshold Β· Rn</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-rn">Rn</div>
<h3>Resonance</h3>
</div>
<p>Emerges from Fidelity + Cohesion. In end-of-life terms, resonance is felt peace β the state in which a person's inner life and outer world are no longer in conflict. It is not euphoria. It is coherence. The felt sense that the loop is closing well.</p>
<p>The framework holds: <em>Where closure is understood as part of continuity, fear of mortality should taper.</em> Resonance is that tapering.</p>
</div>
<div class="hir-node">
<div class="node-tag">Force Β· P</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-p">P</div>
<h3>Pressure</h3>
</div>
<p>The reality-bearing force acting on the system internally or externally. At end of life, pressure includes: physical pain, grief, existential fear, family strain, uncertainty, financial and logistical burden, and the weight of unfinished things.</p>
<p>Pressure is not the enemy. It is the condition through which the framework is either activated or bypassed. Pressure engaged with honesty and integrity matures. Pressure avoided fragments.</p>
</div>
<div class="hir-node">
<div class="node-tag">Density Β· G</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:8px">
<div class="hir-node-marker node-g">G</div>
<h3>Earned Grit</h3>
</div>
<p>Formed through recursive, consequence-bearing contact with realism and pressure. At end of life, earned grit is the accumulated dignity and resilience of a life actually lived β the real encounters, the real losses, the real loves. It is not toughness. It is ballast.</p>
<p>A person's earned grit β their lived density β becomes a resource for themselves and for those around them as they approach completion.</p>
</div>
</div>
</div>
<div class="rule-full"></div>
<!-- INTEGRATED MAP -->
<div class="section" id="integrated-map">
<div class="section-eyebrow">Integrated Architecture</div>
<h2>The Loop Completion <em>Cycle Map</em></h2>
<p>This map shows the architecture of the loop completion process β how pressure, if engaged through HIR, moves toward resonance and peaceful completion. Read from the base upward. Disruption forces (shown in amber-rust) are what break the path when unaddressed.</p>
<div class="map-container">
<svg viewBox="0 0 820 780" xmlns="http://www.w3.org/2000/svg" font-family="'Georgia', serif">
<!-- ββ Background layers ββ -->
<defs>
<linearGradient id="bgGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#f9f4ec"/>
<stop offset="100%" stop-color="#f0e8d4"/>
</linearGradient>
<linearGradient id="rootGrad" x1="0" y1="0" x2="0" y2="1">
<stop offset="0%" stop-color="#8c4a2a" stop-opacity="0.6"/>
<stop offset="100%" stop-color="#8c4a2a" stop-opacity="0.15"/>
</linearGradient>
<linearGradient id="riseGrad" x1="0" y1="1" x2="0" y2="0">
<stop offset="0%" stop-color="#5a7a5a"/>
<stop offset="100%" stop-color="#c4903a"/>
</linearGradient>
<marker id="arrow" markerWidth="8" markerHeight="8" refX="6" refY="3" orient="auto">
<path d="M0,0 L0,6 L8,3 z" fill="#b87c34" opacity="0.6"/>
</marker>
<marker id="arrowRust" markerWidth="8" markerHeight="8" refX="6" refY="3" orient="auto">
<path d="M0,0 L0,6 L8,3 z" fill="#8c4a2a" opacity="0.5"/>
</marker>
<filter id="glow">
<feGaussianBlur stdDeviation="3" result="coloredBlur"/>
<feMerge><feMergeNode in="coloredBlur"/><feMergeNode in="SourceGraphic"/></feMerge>
</filter>
</defs>
<!-- Ground zone label -->
<text x="20" y="760" font-size="9" fill="#8c4a2a" opacity="0.5" letter-spacing="3" font-family="'Arial', sans-serif" text-transform="uppercase">PRESSURE ZONE</text>
<line x1="20" y1="748" x2="800" y2="748" stroke="#8c4a2a" stroke-width="0.5" opacity="0.2"/>
<!-- ββ PRESSURE BASE ββ -->
<rect x="60" y="700" width="700" height="44" rx="6" fill="#f5ede4" stroke="#c07050" stroke-width="1"/>
<text x="410" y="718" text-anchor="middle" font-size="11" fill="#8c4a2a" font-weight="normal" font-family="'Arial',sans-serif" letter-spacing="2">PRESSURE</text>
<text x="410" y="733" text-anchor="middle" font-size="9.5" fill="#a06040" font-family="'Arial',sans-serif">pain Β· grief Β· fear Β· uncertainty Β· family strain Β· unfinished things</text>
<!-- pressure flow arrow up -->
<line x1="410" y1="698" x2="410" y2="672" stroke="#b87c34" stroke-width="1.5" stroke-dasharray="4,3" marker-end="url(#arrow)" opacity="0.5"/>
<!-- ββ EARNED GRIT (side) ββ -->
<rect x="620" y="640" width="140" height="46" rx="5" fill="#f2eee6" stroke="#9a8870" stroke-width="1"/>
<text x="690" y="658" text-anchor="middle" font-size="10" fill="#4a3f2f" font-weight="normal" font-family="'Arial',sans-serif" letter-spacing="1.5">EARNED GRIT</text>
<text x="690" y="672" text-anchor="middle" font-size="9" fill="#6b5c42" font-family="'Arial',sans-serif">lived density Β· ballast</text>
<!-- grit feeds up -->
<path d="M690 638 Q690 590 580 570" stroke="#9a8870" stroke-width="1" stroke-dasharray="3,3" fill="none" opacity="0.5"/>
<!-- ββ BEDROCK TRIAD ββ -->
<!-- H -->
<rect x="60" y="574" width="200" height="80" rx="6" fill="#eef4ee" stroke="#7a9e7a" stroke-width="1.5"/>
<text x="160" y="597" text-anchor="middle" font-size="11.5" fill="#2c5c2c" letter-spacing="2" font-family="'Arial',sans-serif">HONESTY (H)</text>
<text x="160" y="613" text-anchor="middle" font-size="9.5" fill="#4a6a4a" font-family="'Arial',sans-serif">facing reality without denial</text>
<text x="160" y="628" text-anchor="middle" font-size="9.5" fill="#4a6a4a" font-family="'Arial',sans-serif">naming what is true</text>
<text x="160" y="643" text-anchor="middle" font-size="9.5" fill="#4a6a4a" font-family="'Arial',sans-serif">allowing the situation to be seen</text>
<!-- I (center, shared) -->
<rect x="310" y="574" width="200" height="80" rx="6" fill="#fdf6e8" stroke="#c4903a" stroke-width="1.5"/>
<text x="410" y="597" text-anchor="middle" font-size="11.5" fill="#7a5010" letter-spacing="2" font-family="'Arial',sans-serif">INTEGRITY (I)</text>
<text x="410" y="613" text-anchor="middle" font-size="9.5" fill="#8a6020" font-family="'Arial',sans-serif">inner β outer coherence</text>
<text x="410" y="628" text-anchor="middle" font-size="9.5" fill="#8a6020" font-family="'Arial',sans-serif">the thread of a life</text>
<text x="410" y="643" text-anchor="middle" font-size="9.5" fill="#8a6020" font-family="'Arial',sans-serif">values held under pressure</text>
<!-- R -->
<rect x="560" y="574" width="200" height="80" rx="6" fill="#eef2f6" stroke="#8aaabb" stroke-width="1.5"/>
<text x="660" y="597" text-anchor="middle" font-size="11.5" fill="#2a4a5a" letter-spacing="2" font-family="'Arial',sans-serif">RESPECT (R)</text>
<text x="660" y="613" text-anchor="middle" font-size="9.5" fill="#3a5a6a" font-family="'Arial',sans-serif">dignity Β· boundaries preserved</text>
<text x="660" y="628" text-anchor="middle" font-size="9.5" fill="#3a5a6a" font-family="'Arial',sans-serif">no one abandoned or coerced</text>
<text x="660" y="643" text-anchor="middle" font-size="9.5" fill="#3a5a6a" font-family="'Arial',sans-serif">relational peace</text>
<!-- arrows bedrock β derived -->
<!-- H+I β F -->
<path d="M200 573 Q225 520 235 502" stroke="#7a9e7a" stroke-width="1.2" fill="none" marker-end="url(#arrow)" opacity="0.6"/>
<path d="M410 573 Q380 525 355 504" stroke="#c4903a" stroke-width="1.2" fill="none" marker-end="url(#arrow)" opacity="0.6"/>
<!-- R+I β C -->
<path d="M660 573 Q630 525 600 504" stroke="#8aaabb" stroke-width="1.2" fill="none" marker-end="url(#arrow)" opacity="0.6"/>
<path d="M410 573 Q430 525 460 504" stroke="#c4903a" stroke-width="1.2" fill="none" marker-end="url(#arrow)" opacity="0.6"/>
<!-- ββ DERIVED LAYER ββ -->
<!-- Fidelity -->
<rect x="120" y="432" width="230" height="58" rx="6" fill="#e8f0e8" stroke="#5a7a5a" stroke-width="1.8"/>
<text x="235" y="453" text-anchor="middle" font-size="12" fill="#2a4a2a" letter-spacing="2" font-family="'Arial',sans-serif">FIDELITY (F)</text>
<text x="235" y="469" text-anchor="middle" font-size="9.5" fill="#3a5a3a" font-family="'Arial',sans-serif">H + I Β· meaning-keeping Β· I was true to what mattered</text>
<text x="235" y="483" text-anchor="middle" font-size="9" fill="#3a5a3a" font-family="'Arial',sans-serif" font-style="italic">my life had a thread</text>
<!-- Cohesion -->
<rect x="470" y="432" width="230" height="58" rx="6" fill="#f4ede0" stroke="#b87c34" stroke-width="1.8"/>
<text x="585" y="453" text-anchor="middle" font-size="12" fill="#6a3c08" letter-spacing="2" font-family="'Arial',sans-serif">COHESION (C)</text>
<text x="585" y="469" text-anchor="middle" font-size="9.5" fill="#7a4c18" font-family="'Arial',sans-serif">R + I Β· relational connection Β· not alone</text>
<text x="585" y="483" text-anchor="middle" font-size="9" fill="#7a4c18" font-family="'Arial',sans-serif" font-style="italic">held by those who love me</text>
<!-- arrows derived β resonance -->
<path d="M280 430 Q320 380 365 356" stroke="#5a7a5a" stroke-width="1.5" fill="none" marker-end="url(#arrow)" opacity="0.65"/>
<path d="M545 430 Q510 380 460 356" stroke="#b87c34" stroke-width="1.5" fill="none" marker-end="url(#arrow)" opacity="0.65"/>
<!-- ββ RESONANCE ββ -->
<rect x="250" y="280" width="320" height="66" rx="8" fill="#fdf0d8" stroke="#c4903a" stroke-width="2.5" filter="url(#glow)"/>
<text x="410" y="305" text-anchor="middle" font-size="13.5" fill="#7a5010" letter-spacing="3" font-family="'Arial',sans-serif" font-weight="bold">RESONANCE (Rn)</text>
<text x="410" y="323" text-anchor="middle" font-size="10" fill="#8a6020" font-family="'Arial',sans-serif">felt peace Β· coherence Β· inner and outer no longer in conflict</text>
<text x="410" y="337" text-anchor="middle" font-size="9.5" fill="#9a7030" font-family="'Arial',sans-serif" font-style="italic">the loop is closing well</text>
<!-- resonance β loop completion -->
<path d="M410 278 L410 252" stroke="#c4903a" stroke-width="2" fill="none" marker-end="url(#arrow)"/>
<!-- ββ LOOP COMPLETION ββ -->
<ellipse cx="410" cy="210" rx="210" ry="38" fill="#fae8c0" stroke="#c4903a" stroke-width="2" filter="url(#glow)"/>
<text x="410" y="205" text-anchor="middle" font-size="14" fill="#6a3800" letter-spacing="3" font-family="'Arial',sans-serif" font-weight="bold">LOOP COMPLETION</text>
<text x="410" y="223" text-anchor="middle" font-size="9.5" fill="#8a5820" font-family="'Arial',sans-serif">closure Β· reconciliation Β· meaning-made Β· peaceful ending</text>
<!-- ββ DISRUPTION INDICATORS ββ -->
<!-- Unresolved fear disrupts H -->
<rect x="20" y="660" width="120" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="80" y="672" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">unresolved fear</text>
<text x="80" y="683" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">blocks Honesty</text>
<line x1="140" y1="672" x2="155" y2="615" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- Fragmentation disrupts I -->
<rect x="350" y="657" width="120" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="410" y="669" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">fragmentation</text>
<text x="410" y="680" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">disrupts Integrity</text>
<line x1="410" y1="655" x2="410" y2="656" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- Relational strain disrupts C -->
<rect x="685" y="660" width="115" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="742" y="672" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">relational strain</text>
<text x="742" y="683" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">disrupts Cohesion</text>
<line x1="742" y1="658" x2="700" y2="615" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- Unspoken regret disrupts F -->
<rect x="20" y="475" width="120" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="80" y="487" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">unspoken regret</text>
<text x="80" y="498" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">erodes Fidelity</text>
<line x1="140" y1="487" x2="160" y2="480" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- Abandonment disrupts Cohesion -->
<rect x="685" y="475" width="115" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="742" y="487" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">abandonment</text>
<text x="742" y="498" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">fractures Cohesion</text>
<line x1="742" y1="473" x2="700" y2="462" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- Denied pain disrupts Resonance -->
<rect x="20" y="312" width="120" height="28" rx="4" fill="#fff0ea" stroke="#c07050" stroke-width="1" opacity="0.85"/>
<text x="80" y="324" text-anchor="middle" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">denied pain</text>
<text x="80" y="335" text-anchor="middle" font-size="8.5" fill="#8c4a2a" font-family="'Arial',sans-serif">blocks Resonance</text>
<line x1="140" y1="322" x2="248" y2="313" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3" opacity="0.5"/>
<!-- ββ OAM LABEL ββ -->
<text x="22" y="218" font-size="9" fill="#c07050" opacity="0.7" font-family="'Arial',sans-serif" letter-spacing="1.5">DISRUPTION</text>
<text x="22" y="230" font-size="9" fill="#c07050" opacity="0.7" font-family="'Arial',sans-serif" letter-spacing="1">(OAM-equivalent)</text>
<!-- ββ KEY / LEGEND ββ -->
<rect x="60" y="100" width="700" height="80" rx="6" fill="#f8f3ea" stroke="#d4c8b4" stroke-width="1"/>
<text x="410" y="122" text-anchor="middle" font-size="9" fill="#9b8c76" letter-spacing="2" font-family="'Arial',sans-serif">READ DIRECTION: BASE (Pressure) β Bedrock HIR Triad β Derived States β Resonance β Loop Completion</text>
<line x1="80" y1="135" x2="200" y2="135" stroke="#c07050" stroke-width="1" stroke-dasharray="3,3"/>
<text x="210" y="139" font-size="9" fill="#8c4a2a" font-family="'Arial',sans-serif">Disruption / blockage</text>
<line x1="340" y1="135" x2="460" y2="135" stroke="#b87c34" stroke-width="1.5" marker-end="url(#arrow)"/>
<text x="470" y="139" font-size="9" fill="#6a3c08" font-family="'Arial',sans-serif">Constructive flow</text>
<line x1="600" y1="135" x2="720" y2="135" stroke="#c4903a" stroke-width="2" filter="url(#glow)"/>
<text x="608" y="128" font-size="9" fill="#7a5010" font-family="'Arial',sans-serif">Resonance (loop completion threshold)</text>
<text x="410" y="170" text-anchor="middle" font-size="9.5" fill="#6b5c42" font-family="'Arial',sans-serif" font-style="italic">"Where closure is understood as part of continuity, fear of mortality should taper." β Primordial Calculus</text>
</svg>
</div>
<p style="font-size:13px; color:var(--muted); text-align:center; margin-top:8px;">
Loop Completion Map Β· HIR Framework by Collin D. Weber Β· End-of-Life Application
</p>
</div>
<div class="rule-full"></div>
<!-- DISRUPTION SECTION -->
<div class="section" id="disruption">
<div class="section-eyebrow">Disruption Architecture</div>
<h2>What Breaks <em>Closure</em></h2>
<p>These are the forces β not failures of character β that interrupt the path from pressure to resonance. They are understood here through the OAM-equivalent model: conditions that fragment rather than complete, that outsource rather than integrate, that freeze rather than flow.</p>
<div class="disruption-band">
<h4>Primary Disruption Forces at End of Life</h4>
<div class="disruptors">
<span class="disruptor-tag">Unresolved fear of death</span>
<span class="disruptor-tag">Unaddressed physical pain</span>
<span class="disruptor-tag">Denied or suppressed grief</span>
<span class="disruptor-tag">Unspoken regret</span>
<span class="disruptor-tag">Relational disconnection</span>
<span class="disruptor-tag">Unfinished relational strain</span>
<span class="disruptor-tag">Family fragmentation</span>
<span class="disruptor-tag">Abandoned or isolated dying</span>
<span class="disruptor-tag">Forced positivity / denial</span>
<span class="disruptor-tag">Loss of autonomy without support</span>
<span class="disruptor-tag">Institutional coldness</span>
<span class="disruptor-tag">Unexpressed love or forgiveness</span>
</div>
</div>
<p>Each of these acts as an OAM-equivalent: an outsourcing or suppression of what needs to be held and processed. They do not make closure impossible β the HIR framework is mutually reinforcing and baseline-seeking β but they are the specific pressures that prevent fidelity, cohesion, and resonance from forming.</p>
<p>The path through is not elimination of these pressures. It is engagement with them through honesty, integrity, and respect β the three bedrock qualities that remain corrective even when one or more is strained.</p>
<div class="pullquote">
Pressure must be engaged through realism; suffering alone does not guarantee maturation.
<cite>Primordial Calculus β Developmental Mechanics</cite>
</div>
</div>
<div class="rule-full"></div>
<!-- PLAIN LANGUAGE -->
<div class="section" id="plain-language">
<div class="section-eyebrow">Plain-Language Explanation</div>
<h2>How This Map <em>Works</em></h2>
<p class="lead">
This is not a formula. It is a map. It shows how human qualities that we already recognize β honesty, integrity, respect β have a natural architecture when a life is drawing to its close.
</p>
<p><strong>At the base of the map is pressure.</strong> Dying involves real pressure: physical pain, fear, grief, the weight of unfinished things, family strain, uncertainty. The map does not minimize this. Pressure is the beginning of the loop β not its enemy.</p>
<p><strong>Moving upward, there are three bedrock qualities.</strong> Honesty means allowing yourself β or the person dying β to face what is actually happening, without forced optimism and without brutal despair. Integrity means that the dying person can maintain some coherence between who they have been and how they are completing. Respect means that everyone involved β the dying person, family, caregivers β is treated with dignity, without coercion, and without abandonment.</p>
<p><strong>From these three, two things grow.</strong> Fidelity β the sense that a life had real meaning, that things were as true as they could be β emerges from honesty and integrity together. Cohesion β the sense of being held by real relationships, not alone β emerges from respect and integrity together.</p>
<p><strong>When fidelity and cohesion are present,</strong> something the framework calls resonance becomes possible. Resonance, in this context, is not a spiritual claim. It is the felt state when a person's inner life and their relational world are no longer in painful conflict. It is not the absence of grief or pain. It is a kind of coherence. The sense that the loop is closing well.</p>
<p><strong>Loop completion</strong> is what this map is oriented toward: not death as negation, but death as the natural completion of a life β with closure, reconciliation, and meaning intact. The framework holds, in its own language: "Death functions as loop closure β not as mere negation, but as the completion condition that makes room for renewal."</p>
<p><strong>Earned grit</strong> enters here as ballast. A person's lived experience β their real encounters with loss, love, consequence, and endurance β is a resource, not a burden, at the end of life. The density of a genuinely-lived life supports the person and those around them.</p>
</div>
</div>
<!-- ββββββββββ AUDIENCE SECTIONS ββββββββββ -->
<div style="background: var(--bg2); padding: 60px 0;">
<div class="page">
<!-- DYING PERSON -->
<div class="section" id="dying-person">
<div class="section-eyebrow">For the Dying Person</div>
<div class="audience-block block-dying" data-number="I">
<h2>If You Are Facing<br><em>the End of Your Life</em></h2>
<div class="rule"></div>
<p class="lead">
Nothing in this map tells you how to feel. Nothing here is required of you.
These are offered as possible pathways β ways of orienting toward what is happening
that some people have found helpful.
</p>
<h4>Honesty β Facing what is real</h4>
<p>You do not have to pretend you are not afraid. You do not have to maintain hope you do not feel. You also do not have to collapse into despair. Honesty simply means letting yourself β and when it feels right, others β see what is actually true about what you are experiencing. This creates space for real things to happen: real conversations, real farewells, real peace.</p>
<h4>Integrity β The thread of your life</h4>
<p>Your life has had a shape. Your values, your loves, your choices β imperfect, real, yours β have formed a thread. Integrity at the end of life does not mean having been perfect. It means recognizing the coherence in the life you actually lived, and choosing, where possible, to finish consistently with that thread.</p>
<h4>Respect β Your dignity and your limits</h4>
<p>You have the right to say what you need, what you do not want, who you want near, and what you want to leave behind. Respect means that your boundaries and choices about your own dying are honored. It also means you are allowed to hold your own grief with tenderness β your fear, your loss, your love β without having to hide or manage it for others.</p>
<h4>Fidelity β I was true to what mattered</h4>
<p>This is not a demand. It is an offering: the possibility of looking at your life and finding that, on the whole and in the ways that most mattered, you were true. Fidelity is the recognition β not always fully available, but often reachable β that the people you loved were real, the things you cared about were real, and you showed up for them as best you could.</p>
<h4>Cohesion β You are not alone</h4>
<p>Dying can feel profoundly isolating. Cohesion names the possibility of being held β by the people who love you, by the care of those tending to you, by whatever relationships have defined your life. You do not have to complete this alone. Letting people in is not weakness.</p>
<h4>Resonance β The loop closing well</h4>
<p>Resonance is not a destination you must reach. It is not a final exam. It is what tends to arrive when the other things are present: a settling, a coherence, a reduction in the inner conflict between what is and what was hoped for. Some people experience it as peace. Some as acceptance. Some as a quiet aliveness in the time remaining. It is yours to find in your own way.</p>
<div class="rule"></div>
<h4>Practical supports toward loop completion</h4>
<ul class="practice-list">
<li><strong>Name what you want to say.</strong> To specific people. Unsaid things maintain pressure. Said things β even imperfectly β release it.</li>
<li><strong>Let yourself be cared for.</strong> Allowing care is not surrender of dignity. It is often the final expression of trust and connection.</li>
<li><strong>Address what feels unfinished,</strong> as much as you are able. Not because you must. Because it may help you rest.</li>
<li><strong>Tell someone what your life has meant to you.</strong> Meaning-making spoken aloud solidifies fidelity.</li>
<li><strong>Notice what brings you coherence</strong> β people, places, objects, memories, music β and let those in.</li>
<li><strong>You are allowed to set limits</strong> on visitors, conversations, and demands. Your energy is precious and finite.</li>
</ul>
</div>
</div>
<!-- FAMILY -->
<div class="section" id="family">
<div class="section-eyebrow">For Family & Loved Ones</div>
<div class="audience-block block-family" data-number="II">
<h2>When Someone You Love<br><em>Is Dying</em></h2>
<div class="rule" style="background:var(--sage2)"></div>
<p class="lead">
You are also under enormous pressure. Your grief, your fear, your helplessness, your love β
all of these are real and valid. This section is for you.
</p>
<h4>Honesty β You can say what is true</h4>
<p>You do not have to pretend everything is fine. Many families suffer because everyone is protecting everyone else from reality. When it is appropriate and welcome, honest presence β acknowledging that this is real, that it is hard, that you love this person β is one of the greatest gifts you can offer. You do not have to have the right words. Honest presence is often enough.</p>
<h4>Integrity β Showing up consistently</h4>
<p>Integrity for family means showing up β not perfectly, but consistently. It means that your presence and care remain recognizable to the dying person. That you do not disappear into your own grief to the point of absence. That you maintain your role as someone who loves them, through the discomfort and the fear.</p>
<h4>Respect β Their dying is theirs</h4>
<p>This is perhaps the hardest practice. The dying person has the right to die in a way that is consistent with who they are. Respect means not overriding their choices about how much intervention they want, who they want present, what conversations they want to have. It means supporting rather than directing. It means letting their loop complete on their terms, not yours.</p>
<h4>Cohesion β Hold together as best you can</h4>
<p>Family systems often fracture under the pressure of loss. Cohesion is not the absence of conflict β it is the presence of a shared commitment to getting through this together without destroying each other. The dying person needs to feel the people they love are not being torn apart by their dying. That, too, is a gift.</p>
<h4>Fidelity β Saying what is true between you</h4>
<p>If there are things unsaid β love not expressed, regret not spoken, gratitude not given β this is the time. Not forced, not coerced, but offered. Fidelity between the dying person and those they love means that the relational truth of the relationship is honored before the end. This is what most people wish they had done.</p>
<div class="rule" style="background:var(--sage2)"></div>
<h4>Practical supports</h4>
<ul class="practice-list">
<li><strong>Ask what they need</strong> rather than assuming. Needs change daily.</li>
<li><strong>Say the things you want to say,</strong> gently and without pressure. Many people wait too long.</li>
<li><strong>Give them permission to go,</strong> if that is what they need. Some people wait for permission from those they love.</li>
<li><strong>Take care of your own grief separately</strong> β with a friend, therapist, or chaplain β so it does not overwhelm the space.</li>
<li><strong>Let them lead</strong> the conversations when they are able. Follow, do not direct.</li>
<li><strong>Reduce unnecessary decisions and noise</strong> in the dying person's environment. Pressure without support fragments.</li>
<li><strong>Your tears are not a burden</strong> β but your presence, steady and loving, is also its own form of care.</li>
</ul>
</div>
</div>
<!-- CAREGIVERS -->
<div class="section" id="caregivers">
<div class="section-eyebrow">For Caregivers & Hospice Support</div>
<div class="audience-block block-care" data-number="III">
<h2>Holding the Space:<br><em>The Caregiver's Role</em></h2>
<div class="rule" style="background:var(--sky)"></div>
<p class="lead">
Caregivers and hospice workers operate under the dual pressure of professional responsibility
and sustained human contact with loss. This section applies the HIR framework
to the caregiver's own practice and to the relational architecture they hold.
</p>
<h4>Honesty β In care, not cruelty</h4>
<p>The caregiver's honesty means being present to what is actually happening β not managing the patient's or family's reality toward optimism or despair, but being truthfully present. It means not pretending when something is difficult, and not withholding information that the dying person has the right to hold. Honesty in caregiving is a form of respect.</p>
<h4>Integrity β Consistency under sustained pressure</h4>
<p>Caregivers are under sustained relational and emotional pressure. Integrity here means maintaining the core of why you do this work β compassion, skill, presence β even when the work is exhausting and the losses accumulate. It means your care remains coherent to the patient. That you do not disappear professionally or emotionally in a way that the dying person experiences as abandonment.</p>
<h4>Respect β The bedrock of hospice care</h4>
<p>Respect means the dying person remains a full person β not a case, not a body, not a diagnosis β until the end. It means their choices about their own dying are honored. It means their dignity is preserved. It means cultural, personal, and relational particularity is acknowledged. Respect also means the caregiver's own limits are acknowledged: no one can sustain care without the support structures that allow them to function with integrity.</p>
<h4>Cohesion β Holding the relational field</h4>
<p>Caregivers often become the anchoring cohesion force when families fragment under grief. This is a profound role. The caregiver's steady, non-anxious presence β their calm, their warmth, their professionalism β can act as the framework document describes: setting coherence conditions in the local environment. Not by controlling, but by being consistently present and grounded.</p>
<h4>Pressure and Earned Grit β The caregiver's own</h4>
<p>Caregivers accumulate their own pressure and their own earned grit over time. The framework holds that pressure engaged through realism produces density and ballast, not just exhaustion. Supporting caregivers to acknowledge, process, and be witnessed in the weight of what they carry is not optional β it is structural to the maintenance of high-quality care.</p>
<h4>Resonance β What good hospice feels like</h4>
<p>When the conditions of honest, respectful, integrated care are present, something like resonance becomes possible in the hospice environment itself. People β dying persons, families, caregivers β are not in constant friction. The environment is coherent. The dying person is not abandoned. The family is supported. The caregivers are not fragmenting. This is the loop completing well.</p>
<div class="rule" style="background:var(--sky)"></div>
<h4>Structural practice supports</h4>
<ul class="practice-list">
<li><strong>Regular debriefs or reflective supervision</strong> β not optional β allow accumulated pressure to be processed rather than stored.</li>
<li><strong>Clear role integrity</strong> protects caregivers from becoming emotional surrogates for all parties. You are allowed to have a professional frame.</li>
<li><strong>Facilitation of the 'said things'</strong> β creating the conditions in which dying persons and families can speak the important things β is a legitimate and high-value care act.</li>
<li><strong>Notice and address isolation</strong> in the dying person. Abandonment is one of the strongest disruption forces. Presence, even brief and professional, is cohesive.</li>
<li><strong>Honor the particularity</strong> of each death. Standardized processes are necessary but not sufficient. Each loop completes differently.</li>
<li><strong>Your own grief is real.</strong> Accumulated loss in hospice work requires care structures, not just professional resilience.</li>
</ul>
</div>
</div>
</div>
</div>
<!-- ββββββββββ FINAL PATHWAY ββββββββββ -->
<div class="page-wide" style="padding-bottom: 0;">
<div class="section" id="pathway">
<div class="section-eyebrow">Final Completion Pathway</div>
<div class="pathway-container">
<h2>The <em>Loop Completion</em> Pathway</h2>
<p>How HIR supports closure, dignity, and peaceful loop completion β a unified sequence.</p>
<div class="rule"></div>
<div class="pathway-steps">
<div class="pathway-step">
<div class="step-dot step-dot-rust">P</div>
<div class="step-content">
<span class="step-hir">Pressure β The Starting Condition</span>
<h3>Acknowledge the weight, do not deny it</h3>
<p>Pain, grief, fear, uncertainty, and relational strain are the ground. They are not to be eliminated β they are the condition in which the loop completes. The question is how they are engaged: through avoidance and fragmentation, or through realism and contact.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-sage">H</div>
<div class="step-content">
<span class="step-hir">Honesty β Reality Contact</span>
<h3>Let what is true be seen and named</h3>
<p>By the dying person. By the family. By the caregivers. Honesty opens the relational field to what is actually present. It dissolves the energy cost of maintained illusion. It makes room for real farewells, real forgiveness, real gratitude.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-amber">I</div>
<div class="step-content">
<span class="step-hir">Integrity β InnerβOuter Coherence</span>
<h3>Maintain the thread of the life as it closes</h3>
<p>The dying person remains recognizably themselves. Their values, relationships, and choices remain coherent with who they have been. Integrity allows the life to close with internal consistency β not perfection, but a thread that holds.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-sage">R</div>
<div class="step-content">
<span class="step-hir">Respect β Dignity and Relational Peace</span>
<h3>Honor boundaries, preserve dignity, stay present</h3>
<p>No one is coerced. No one is abandoned. No one is reduced to their dying. The dying person's choices about their own end are honored. The relational field remains intact. Respect is the guardrail that prevents the most damaging forms of disruption.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-amber">F</div>
<div class="step-content">
<span class="step-hir">Fidelity β Meaning-Keeping</span>
<h3>I was true to what mattered</h3>
<p>Honesty and integrity together produce fidelity: the felt sense that the life had a real thread, that the commitments were honored as well as they could be, that the people who were loved were genuinely loved. Fidelity is the basis of dying without interior collapse.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-amber">C</div>
<div class="step-content">
<span class="step-hir">Cohesion β Relational Completion</span>
<h3>Connected through the end</h3>
<p>Respect and integrity together produce cohesion: the dying person remains held by their relational world. The family holds together under pressure. The caregiver's steady presence provides a coherence anchor. No one completes alone who does not choose to.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-amber">G</div>
<div class="step-content">
<span class="step-hir">Earned Grit β The Ballast of a Life</span>
<h3>The density of a genuinely-lived life as resource</h3>
<p>The person's accumulated experience β real losses, real loves, real consequences, real endurance β is a form of ballast at the end. Not heroics. Not toughness. The quiet density of having actually lived. This supports both the dying person and those around them.</p>
</div>
</div>
<div class="pathway-step">
<div class="step-dot step-dot-gold" style="width:44px;height:44px;font-size:1.2rem;">Rn</div>
<div class="step-content">
<span class="step-hir">Resonance β The Loop Threshold</span>
<h3>Felt peace Β· coherence Β· the settling</h3>
<p>When fidelity and cohesion are present, resonance becomes available: the state in which the inner life and the outer world are no longer in painful conflict. Not the absence of grief. Not euphoria. A coherence. The felt sense that the loop is closing well. Where closure is understood as part of continuity, fear of mortality should taper.</p>
</div>
</div>
</div>
<div class="terminal-step">
<h3>Loop Completion</h3>
<p>Closure Β· Reconciliation Β· Meaning Made Β· Peaceful Ending</p>
<p style="margin-top:12px; font-size:12px; color:#a08060;">
Death as loop closure: not as mere negation, but as the completion condition that makes room for renewal, nutrient return, and further growth.
<br><em>β Primordial Calculus, Foundational Ordering</em>
</p>
</div>
<div class="rule" style="margin:32px 0;"></div>
<p style="font-size:13.5px; color:#a08878; line-height:1.8;">
This pathway does not guarantee a painless death, a perfect farewell, or the resolution of all that was unfinished.
It is a map of what tends to become possible when the bedrock qualities of honesty, integrity, and respect
are held β imperfectly, humanly β through the pressure of the end of life.
The loop completing well does not mean completing without grief.
It means completing with dignity, connection, and as much truth as can be held.
</p>
</div>
</div>
</div>
<!-- ββββββββββ FOOTER ββββββββββ -->
<div class="footer">
<p>
<strong>Primordial Loop Completion Cycle Map</strong><br>
Grounded in the Primordial Calculus / HIR Framework by <strong>Collin D. Weber</strong><br>
Framework version: OSF Release v1.0
</p>
<p style="margin-top:12px;">
This document is a bounded application of the HIR framework to end-of-life care and psychology.<br>
It makes no medical, clinical, metaphysical, or spiritual certainty claims.<br>
It does not replace professional medical, palliative, psychological, or spiritual care.<br>
It is offered as a relational and psychological orientation tool only.
</p>
<p style="margin-top:12px; font-size:11px;">
HIR Bedrock Triad: Honesty Β· Integrity Β· Respect<br>
Derived: Fidelity (H+I) Β· Cohesion (R+I) Β· Resonance (F+C)<br>
Supporting: Pressure Β· Earned Grit Β· Loop Completion
</p>
</div>
</body>
</html>
|