-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
521 lines (504 loc) · 92.2 KB
/
Copy pathindex.html
File metadata and controls
521 lines (504 loc) · 92.2 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
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Delta Atlas</title>
<meta name="theme-color" content="#16301f"/>
<link rel="manifest" href="manifest.webmanifest"/>
<link rel="icon" href="favicon.png"/>
<link rel="apple-touch-icon" href="icon-192.png"/>
<style>
:root{--bg:#16301f;--panel:#2c4a38;--line:#4a6b56;--txt:#fafcf7;--dim:#d3decf;--accent:#e3c258;--win:#8fe0a5;--gold:#e3c258;--flag:#ff9d80;}
*{box-sizing:border-box;} html,body{margin:0;height:100%;}
body{background:var(--bg);color:var(--txt);font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
line-height:1.6;font-weight:450;display:flex;flex-direction:column;height:100vh;height:100dvh;overflow:hidden;}
/* 100dvh tracks iOS Safari's collapsing URL bar so the header is never tucked under it;
the 100vh line above is the fallback for older browsers. */
#bar{flex:none;display:flex;align-items:center;gap:6px;padding:9px 16px;border-bottom:1px solid var(--line);
background:#10281a;position:relative;z-index:10;flex-wrap:wrap;}
#brand{font-weight:700;font-size:14.5px;cursor:pointer;margin-right:8px;letter-spacing:.2px;display:flex;align-items:center;gap:8px;border:0;background:transparent;color:var(--txt);padding:0;}
#brand .dot{width:9px;height:9px;border-radius:50%;background:var(--accent);box-shadow:0 0 8px var(--accent);}
.primary-nav{display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
.nav{cursor:pointer;border:1px solid transparent;background:transparent;color:var(--dim);font-size:13px;padding:10px 11px;min-height:44px;border-radius:8px;text-decoration:none;display:inline-flex;align-items:center;}
.nav:hover{color:var(--txt);background:rgba(217,181,69,0.10);}
.nav:focus-visible,.dlink:focus-visible,.hchip:focus-visible,.card:focus-visible,.doc:focus-visible,.qlink:focus-visible,.data-clear:focus-visible,.primary-cta:focus-visible{outline:3px solid var(--accent);outline-offset:3px;}
.nav.on{color:var(--accent);border-color:var(--line);background:rgba(217,181,69,0.12);}
.rightgrp{margin-left:auto;display:flex;gap:6px;}
#stage{flex:1;position:relative;min-height:0;}
#frame{width:100%;height:100%;border:0;display:none;background:var(--bg);}
#home{position:absolute;inset:0;overflow-y:auto;overflow-x:hidden;display:block;}
.wrap{max-width:880px;margin:0 auto;padding:0 22px 0;position:relative;z-index:1;}
/* ivy layers: decorative only, never interactive. Generated by ivy-gen.js (deterministic, seed 7) */
.ivy{position:absolute;pointer-events:none;filter:drop-shadow(-2px 3px 2px rgba(31,49,71,0.3));}
.vine-hero{top:0;left:50%;width:1440px;margin-left:-720px;height:1600px;z-index:0;}
.vine-left{left:-40px;top:1350px;width:340px;height:900px;z-index:0;}
.vine-right{right:-40px;top:560px;width:400px;height:2950px;z-index:0;}
/* The text column is capped at 880px wide, so for any viewport >=900px the layout is
identical to the 1280px frame the ivy was calibrated against, and the center-anchored
hero vine stays clear of text by construction. Below ~900px the column narrows and text
reflows taller, drifting out from under the static leaf placement, so the hero hides.
The side vines are edge-anchored and need real margin beside the column, so they show
only on wide desktops (>=1200px). */
@media (max-width:1199px){ .vine-left,.vine-right,.brass{display:none;} }
/* brass instruments: explorer-theme margin accents, decorative only. Hand-drawn geometry, no assets. */
.brass{position:absolute;pointer-events:none;opacity:.34;z-index:0;}
.brass-wheel{left:6px;top:640px;width:170px;height:170px;}
.brass-rose{right:10px;top:130px;width:150px;height:150px;}
@media (max-width:899px){ .vine-hero{display:none;} }
/* hero */
.hero{text-align:center;padding:46px 0 8px;position:relative;}
.plumb{position:absolute;left:50%;top:0;bottom:-8px;width:1px;background:linear-gradient(var(--line) 60%,transparent);z-index:-1;}
.logo{font-size:38px;font-weight:700;letter-spacing:.5px;display:inline-flex;align-items:center;gap:12px;margin:0;}
.logo .dot{width:14px;height:14px;border-radius:50%;background:var(--accent);box-shadow:0 0 13px var(--accent);}
.headline{font-size:21px;font-weight:650;margin:14px 0 4px;}
.tagline{color:var(--dim);font-size:14px;margin:0 0 22px;}
.herodemo{margin:6px auto 26px;max-width:900px;text-align:left;}
.demolabel{font-size:11px;text-transform:uppercase;letter-spacing:.5px;color:var(--accent);margin-bottom:7px;font-weight:600;text-align:center;}
.demoframe{width:100%;height:500px;border:1px solid var(--line);border-radius:12px;background:var(--bg);display:block;}
.demonote{font-size:12.5px;color:var(--dim);margin-top:9px;text-align:center;}
.demonote .dlink{color:var(--accent);cursor:pointer;}
.sample{margin:18px auto 26px;max-width:900px;text-align:left;border:1px solid var(--line);border-radius:12px;padding:0 14px;background:rgba(44,74,56,.4);}
.sample summary{cursor:pointer;color:var(--accent);font-weight:650;padding:11px 2px;}
.sample .herodemo{margin:0 0 14px;}
.privacy-note{max-width:760px;margin:10px auto 0;color:var(--dim);font-size:12px;line-height:1.55;}
.privacy-note a{color:var(--accent);}
.data-clear{border:0;background:transparent;color:var(--accent);padding:0;margin-left:4px;text-decoration:underline;cursor:pointer;font:inherit;}
.storage-status{display:inline-block;min-width:5ch;margin-left:5px;color:var(--win);}
.primary-cta{margin-top:14px;min-height:44px;padding:10px 18px;border:1px solid var(--accent);background:var(--accent);color:#1e2b17;border-radius:24px;cursor:pointer;font-weight:700;font-size:14px;}
.primary-cta:hover{background:#f0c75e;}
@media (max-width:700px){ .demoframe{height:560px;} }
.searchwrap{display:flex;gap:8px;max-width:620px;margin:0 auto;}
#hq{flex:1;padding:14px 19px;border:1px solid var(--line);border-radius:26px;background:var(--panel);color:var(--txt);
font-size:15.5px;box-shadow:0 1px 4px rgba(0,0,0,0.05);}
#hq:focus{outline:none;border-color:var(--accent);box-shadow:0 1px 9px rgba(0,0,0,0.35);}
#hgo{padding:0 24px;border:1px solid var(--accent);background:var(--accent);color:#1e2b17;border-radius:26px;cursor:pointer;font-size:14.5px;font-weight:600;}
#hgo:hover{background:#f0c75e;}
.hchips{margin-top:15px;display:flex;flex-wrap:wrap;gap:7px;justify-content:center;}
.hchip{cursor:pointer;border:1px solid var(--line);background:var(--panel);color:var(--dim);padding:6px 13px;border-radius:20px;font-size:12.5px;}
.hchip:hover{border-color:var(--accent);color:var(--accent);}
.seam{height:2px;margin:26px 40px 4px;background:linear-gradient(90deg,transparent,#f2cd55 18%,#d8b855 50%,#f2cd55 82%,transparent);opacity:.75;}
/* the three doors */
.doors{display:grid;grid-template-columns:repeat(auto-fit,minmax(230px,1fr));gap:12px;margin:20px 0 6px;}
.door{background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:15px 17px;position:relative;transition:border-color .15s,transform .15s;}
.door:hover{border-color:var(--accent);transform:translateY(-2px);}
.dk{font-size:10.5px;letter-spacing:.9px;color:var(--dim);}
.dn{font-size:17px;font-weight:700;margin:2px 0 6px;}
.dw{font-size:12.8px;color:var(--dim);line-height:1.55;}
.dlinks{margin-top:10px;font-size:12px;}
.dlink{color:var(--accent);cursor:pointer;border:0;border-bottom:1px solid transparent;background:transparent;padding:0;font:inherit;} .dlink:hover{border-bottom-color:var(--accent);}
.dsep{color:var(--line);margin:0 7px;}
.substrip{text-align:center;margin:14px 0 4px;font-size:13px;color:var(--dim);}
.substrip .qlink{cursor:pointer;color:var(--accent);border-bottom:1px solid transparent;} .substrip .qlink:hover{border-bottom-color:var(--accent);}
.qsep{margin:0 10px;opacity:.5;}
.statwrap{position:relative;margin-top:18px;}
.statline{text-align:center;color:var(--accent);font-weight:600;font-size:12px;margin:8px 0 6px;font-family:ui-monospace,Menlo,Consolas,monospace;}
.statline b{color:var(--txt);}
/* narrative blocks */
.block{background:var(--panel);border:1px solid var(--line);border-left:3px solid var(--accent);border-radius:12px;
padding:16px 20px;margin:16px 0;}
.block.gold{border-left-color:var(--gold);} .block.flag{border-left-color:var(--flag);} .block.win{border-left-color:var(--win);}
.block h2{font-size:16.5px;margin:0 0 7px;} .block p{font-size:14.5px;margin:0;max-width:790px;} .block p b{color:var(--txt);}
.block p+p{margin-top:9px;}
h3.sec{font-size:14px;text-transform:uppercase;letter-spacing:.5px;color:var(--dim);margin:30px 0 10px;border-bottom:1px solid var(--line);padding-bottom:6px;}
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:13px;}
.card{cursor:pointer;background:var(--panel);border:1px solid var(--line);border-radius:12px;padding:15px 17px;transition:border-color .15s,transform .15s;color:var(--txt);font:inherit;text-align:left;width:100%;}
.card:hover{border-color:var(--accent);transform:translateY(-2px);}
.cn{font-size:15.5px;font-weight:650;margin-bottom:4px;display:block;} .cw{font-size:12.8px;margin-bottom:8px;display:block;}
.cb{font-size:11.5px;color:var(--dim);display:block;} .cb span{color:var(--accent);} .cgo{margin-top:9px;font-size:12px;color:var(--accent);display:block;}
.docsec{position:relative;}
.docs{display:flex;flex-wrap:wrap;gap:10px;}
.doc{text-decoration:none;color:inherit;background:var(--panel);border:1px solid var(--line);border-radius:9px;padding:9px 13px;display:flex;flex-direction:column;gap:2px;min-width:210px;}
.doc:hover{border-color:var(--accent);} .doc b{font-size:13px;} .doc span{color:var(--dim);font-size:11px;}
.tag{display:inline-block;font-size:11px;color:var(--win);border:1px solid #4a6b56;border-radius:20px;padding:1px 9px;margin-left:8px;vertical-align:middle;}
#results{display:none;margin:20px 0 6px;}
.resultcard{border:1px solid var(--line);border-radius:12px;overflow:hidden;background:var(--panel);box-shadow:0 1px 5px rgba(0,0,0,0.06);}
.reshead{display:flex;justify-content:space-between;align-items:center;padding:8px 14px;border-bottom:1px solid var(--line);font-size:12px;color:var(--dim);}
.reshead .dlink{cursor:pointer;color:var(--accent);}
#ansframe{width:100%;height:66vh;border:0;display:block;background:var(--panel);}
.areas{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:12px;}
.area{background:var(--panel);border:1px solid var(--line);border-radius:11px;padding:13px 16px;
display:flex;align-items:center;gap:11px;}
.area .adot{width:11px;height:11px;border-radius:50%;flex:none;}
.area .an{font-size:14.5px;font-weight:600;display:block;} .area .as{font-size:12px;color:var(--dim);display:block;}
.seclead{color:var(--dim);font-size:12.5px;margin:-4px 0 12px;}
.jake{background:#3a2d0d;border:1px solid #6b5518;border-left:3px solid var(--gold);border-radius:12px;padding:16px 20px;margin:22px 0;position:relative;}
.jake .jn{font-size:12px;text-transform:uppercase;letter-spacing:.6px;color:#f0c75e;font-weight:700;margin-bottom:6px;}
.jake p{font-size:14.5px;margin:0;max-width:800px;}
/* the floor */
.floor{margin:34px -22px 0;background:#43525C;color:#E8E4D8;padding:20px 26px 22px;font-size:12.5px;position:relative;z-index:1;}
.floor .fhead{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:10px;}
.floor .fhead b{letter-spacing:1.2px;font-size:11px;}
.floor .fhead span{opacity:.97;font-size:11.5px;font-weight:600;}
.floor .seamlink{margin-left:auto;color:#d8b855;text-decoration:none;font-size:11.5px;border-bottom:1px solid transparent;}
.floor .seamlink:hover{border-bottom-color:#d8b855;}
.floor p{margin:0;max-width:820px;color:#F1EDE0;} .floor p b{color:#FBF8EE;}
.floor .disc{margin-top:12px;padding-top:12px;border-top:1px solid rgba(232,228,216,.3);font-size:11px;color:#E9E4D4;font-weight:500;}
.floor a{color:#d8b855;}
#loading{position:absolute;top:14px;left:50%;transform:translateX(-50%);color:var(--dim);font-size:12.5px;background:var(--panel);border:1px solid var(--line);border-radius:20px;padding:4px 14px;display:none;z-index:5;}
/* canonical typography: one baseline across every page (added 2026-07-11) */
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;font-size:14.5px;font-weight:450;line-height:1.6;}
textarea,input,select{font-family:inherit;font-size:14px;line-height:1.5;}
button{font-family:inherit;}
::placeholder{color:var(--dim);opacity:1;}
.skip{position:absolute;left:12px;top:-60px;z-index:20;background:var(--accent);color:#1e2b17;padding:8px 12px;border-radius:6px;font-weight:700;}
.skip:focus{top:12px;}
@media (max-width:700px){
#bar{gap:2px;padding:5px 9px;}
#brand{min-height:44px;margin-right:2px;}
.primary-nav{order:3;flex-basis:100%;overflow-x:auto;flex-wrap:nowrap;padding-bottom:2px;}
.rightgrp{margin-left:auto;gap:1px;}
.rightgrp .nav{padding-inline:8px;}
.sample{margin-top:14px;}
}
</style></head><body>
<a class="skip" href="#stage">Skip to main content</a>
<svg width="0" height="0" style="position:absolute" aria-hidden="true"><defs>
<path id="pBig" d="M50,97 C40,94 28,92 18,86 L8,78 C16,68 26,66 33,62 C24,54 17,44 14,32 L12,22 C22,22 31,26 38,28 C41,18 45,8 50,2 C55,8 59,18 62,28 C69,26 78,22 88,22 L86,32 C83,44 76,54 67,62 C74,66 84,68 92,78 L82,86 C72,92 60,94 50,97 Z"/>
<path id="pMed" d="M50,96 C38,92 24,86 13,76 L9,68 C18,61 28,59 36,55 C31,40 34,20 44,8 L50,2 C56,8 66,20 64,40 C63,46 64,51 64,55 C72,59 82,61 91,68 L87,76 C76,86 62,92 50,96 Z"/>
<clipPath id="cBig"><use href="#pBig"/></clipPath>
<clipPath id="cMed"><use href="#pMed"/></clipPath>
<radialGradient id="frost" cx="0.4" cy="0.34" r="0.62"><stop offset="0" stop-color="#eef6ea" stop-opacity="0.5"/><stop offset="0.6" stop-color="#eef6ea" stop-opacity="0.09"/><stop offset="1" stop-color="#eef6ea" stop-opacity="0"/></radialGradient>
<radialGradient id="varSage" cx="0.5" cy="0.82" r="0.95"><stop offset="0" stop-color="#245D28"/><stop offset="0.52" stop-color="#2A6A2E"/><stop offset="0.8" stop-color="#7FA05B"/><stop offset="1" stop-color="#B9C99A"/></radialGradient>
<radialGradient id="varCream" cx="0.5" cy="0.82" r="0.95"><stop offset="0" stop-color="#2F7031"/><stop offset="0.45" stop-color="#3B7A38"/><stop offset="0.75" stop-color="#A9BE85"/><stop offset="1" stop-color="#E9E6C9"/></radialGradient>
<g id="veinsBig" stroke="#D6E7C9" fill="none" stroke-linecap="round">
<path d="M50,88 C50,62 50,32 50,7" stroke-width="1.7"/>
<path d="M50,84 C39,68 24,48 15,28" stroke-width="1.4"/>
<path d="M50,84 C61,68 76,48 85,28" stroke-width="1.4"/>
<path d="M50,86 C38,82 24,82 11,78" stroke-width="1.3"/>
<path d="M50,86 C62,82 76,82 89,78" stroke-width="1.3"/>
<g stroke-width="0.8" opacity="0.85">
<path d="M50,58 C45,52 40,49 35,46"/><path d="M50,42 C46,38 43,36 39,33"/>
<path d="M50,58 C55,52 60,49 65,46"/><path d="M50,42 C54,38 57,36 61,33"/>
<path d="M39,73 C34,70 30,70 25,68"/><path d="M61,73 C66,70 70,70 75,68"/>
</g>
</g>
<g id="veinsMed" stroke="#D6E7C9" fill="none" stroke-linecap="round">
<path d="M50,88 C48,60 46,30 47,8" stroke-width="1.5"/>
<path d="M50,84 C40,76 26,72 14,70" stroke-width="1.3"/>
<path d="M50,84 C60,76 74,72 86,70" stroke-width="1.3"/>
<g stroke-width="0.8" opacity="0.85"><path d="M48,50 C44,46 41,44 37,42"/><path d="M48,34 C51,30 54,28 57,26"/><path d="M49,64 C45,61 41,60 37,58"/></g>
</g>
<g id="leafBig">
<use href="#pBig" fill="currentColor"/>
<rect x="0" y="0" width="50" height="100" fill="#6FAF61" opacity="0.22" clip-path="url(#cBig)"/>
<use href="#veinsBig"/>
<use href="#pBig" fill="url(#frost)"/>
<use href="#pBig" fill="none" stroke="#2C5A35" stroke-width="1.1"/>
</g>
<g id="leafMed">
<use href="#pMed" fill="currentColor"/>
<rect x="0" y="0" width="50" height="100" fill="#6FAF61" opacity="0.2" clip-path="url(#cMed)"/>
<use href="#veinsMed"/>
<use href="#pMed" fill="url(#frost)"/>
<use href="#pMed" fill="none" stroke="#2C5A35" stroke-width="1.1"/>
</g>
<g id="leafBigA">
<use href="#pBig" fill="url(#varSage)"/>
<use href="#veinsBig"/>
<use href="#pBig" fill="url(#frost)"/>
<use href="#pBig" fill="none" stroke="#35673F" stroke-width="1.05"/>
</g>
<g id="leafMedA">
<use href="#pMed" fill="url(#varSage)"/>
<use href="#veinsMed"/>
<use href="#pMed" fill="url(#frost)"/>
<use href="#pMed" fill="none" stroke="#35673F" stroke-width="1.05"/>
</g>
<g id="leafBigB">
<use href="#pBig" fill="url(#varCream)"/>
<use href="#veinsBig"/>
<use href="#pBig" fill="url(#frost)"/>
<use href="#pBig" fill="none" stroke="#7FA568" stroke-width="1"/>
</g>
<g id="leafMedB">
<use href="#pMed" fill="url(#varCream)"/>
<use href="#veinsMed"/>
<use href="#pMed" fill="url(#frost)"/>
<use href="#pMed" fill="none" stroke="#7FA568" stroke-width="1"/>
</g>
<!-- base-anchored: origin = petiole end (the broad base). translate(x,y) rotate(tip) scale(s) -->
<g id="leafB2"><use href="#leafBig" transform="translate(-50,-97)"/></g>
<g id="leafM2"><use href="#leafMed" transform="translate(-50,-97)"/></g>
<g id="leafB2a"><use href="#leafBigA" transform="translate(-50,-97)"/></g>
<g id="leafM2a"><use href="#leafMedA" transform="translate(-50,-97)"/></g>
<g id="leafB2b"><use href="#leafBigB" transform="translate(-50,-97)"/></g>
<g id="leafM2b"><use href="#leafMedB" transform="translate(-50,-97)"/></g>
<!-- shadow is CSS drop-shadow on .ivy (not an SVG filter): Safari can rasterize blank
tiles for feDropShadow over large SVG canvases, showing white boxes on iPad. -->
</defs></svg>
<header id="bar">
<button id="brand" type="button" onclick="goHome(true)"><span class="dot"></span>Delta Atlas</button>
<nav class="primary-nav" aria-label="Primary navigation">
<button class="nav" type="button" data-f="Delta-Atlas-GapCheck.html" onclick="nav('Delta-Atlas-GapCheck.html')">Gap Check</button><button class="nav" type="button" data-f="Delta-Atlas-Tracer.html" onclick="nav('Delta-Atlas-Tracer.html')">Tracer</button><button class="nav" type="button" data-f="Coherence-Audit.html" onclick="nav('Coherence-Audit.html')">Framework Audit</button><button class="nav" type="button" data-f="Agentic-AI-Governance-Query.html" onclick="nav('Agentic-AI-Governance-Query.html')">Explore</button><button class="nav" type="button" data-f="Delta-Atlas-Primitives.html" onclick="nav('Delta-Atlas-Primitives.html')">Primitives</button><button class="nav" type="button" data-f="Six-Signal-Method.html" onclick="nav('Six-Signal-Method.html')">Six Signals</button><button class="nav" type="button" data-f="White-Paper.html" onclick="nav('White-Paper.html')">White Paper</button>
</nav>
<div class="rightgrp">
<button class="nav" id="installBtn" style="display:none;color:#8fe0a5;border:1px solid #4a6b56" onclick="doInstall()">Install app</button>
<button class="nav" id="shareBtn" onclick="doShare()">Share</button>
<a class="nav" href="evaluate.html" target="_blank" rel="noopener noreferrer">For Evaluators</a>
<button class="nav" id="home0" type="button" onclick="goHome(true)">Home</button>
</div>
</header>
<main id="stage" aria-label="Delta Atlas tools" tabindex="-1">
<div id="loading" role="status" aria-live="polite">Loading…</div>
<iframe id="frame" title="Delta Atlas content" tabindex="-1"></iframe>
<div id="home">
<svg class="ivy vine-hero" viewBox="0 0 1440 1600" aria-hidden="true">
<g>
<path class="ivy-centerline" d="M390,1290 L377.1,1278.8 L365.2,1268.5 L351.9,1256.8 L338.3,1244.2 L325.6,1231.3 L314.6,1218.7 L303.5,1205.5 L292.6,1191.8 L282.2,1177.5 L272.8,1162.8 L265.1,1147.7 L259.4,1132.2 L255.4,1115.9 L252.9,1099 L251.6,1081.9 L251.3,1064.8 L251.6,1048.1 L252.7,1032.1 L255.8,1016.5 L260.1,1001.3 L264.8,986.2 L269,971.1 L271.6,955.8 L271.7,940.1 L269.4,924.1 L265.6,907.9 L261.2,891.6 L257.1,875.5 L254.5,859.7 L254,844.3 L255.2,829 L257.5,813.9 L260.4,799 L263.6,784.5 L266.7,770.7 L269.1,757.5 L270.7,745.3 L273.8,722.5 L279.7,702.8 L285.7,691 L294.2,678.6 L304.4,665.8 L315.8,653.1 L327.7,640.5 L339.6,628.5 L350.7,617.3 L360.8,607 L370.4,597.3 L380.3,588.1 L391,578.9 L403.3,569.4 L417.9,559.4 L434.7,548.8 L453.2,537.8 L473,526.7 L493.6,515.8 L514.5,505.4 L535.2,495.6 L556.3,486.4 L578.2,477.5 L600.3,469 L622.4,461 L644.1,453.4 L665.2,446.3 L686.3,439.6 L707.4,433.3 L728.2,427.5 L748.2,422.2 L766.9,417.3 L784.1,413 L799.2,409.7 L812.7,407.2 L825.2,405 L837.6,402.8 L850.5,399.9 L864.7,395.9 L879.4,390.8 L894.4,385.1 L909.8,378.9 L925.7,372.5 L942.2,366.4 L959.4,360.6 L978.6,355.3 L999.2,350.1 L1020.1,345 L1040.2,339.8 L1058.4,334.4 L1073.5,328.5 L1085.6,322.6 L1102.2,312.1 L1117.4,298.2 L1130.8,283.1 L1138.2,272.9 L1145.2,261.9 L1151.8,250.5 L1157.9,239 L1163.6,227.7 L1171.1,211.5 L1179.1,189.8 L1186.7,168.1 L1196,146.5 L1203.7,130.2 L1208.9,119.4 L1218.8,97.7 L1227.7,76.2 L1236,54.7 L1244,32.8 L1249.2,17.8 L1253.7,4.4 L1258.1,-9.1 L1262.1,-21.7 L1267.5,-38.4 L1268,-40" fill="none" stroke="none" data-vine="hero"/>
<g opacity="0.92"><path d="M365.4,1268.8 Q360.2,1273.4 353.1,1274.2" fill="none" stroke="#8FB573" stroke-width="1.61" stroke-linecap="round"/><use href="#leafM2" transform="translate(353.1,1274.2) rotate(-109.1) scale(0.567)" color="#2F7031" data-ax="365.4" data-ay="1268.8"/></g><g opacity="0.92"><path d="M317.7,1222.3 Q322.4,1218.8 324.2,1213.3" fill="none" stroke="#8FB573" stroke-width="1.50" stroke-linecap="round"/><use href="#leafB2" transform="translate(324.2,1213.3) rotate(22.5) scale(0.498)" color="#2F7031" data-ax="317.7" data-ay="1222.3"/></g><g opacity="0.92"><path d="M252.3,1035.7 Q246.1,1035.6 241.1,1031.9" fill="none" stroke="#8FB573" stroke-width="1.39" stroke-linecap="round"/><use href="#leafM2" transform="translate(241.1,1031.9) rotate(-18.5) scale(0.432)" color="#6FAF61" data-ax="252.3" data-ay="1035.7"/></g><g opacity="0.92"><path d="M261.4,892.4 Q256.4,895.3 250.7,894.9" fill="none" stroke="#8FB573" stroke-width="1.37" stroke-linecap="round"/><use href="#leafB2" transform="translate(250.7,894.9) rotate(-37.9) scale(0.417)" color="#2F7031" data-ax="261.4" data-ay="892.4"/></g><g opacity="0.92"><path d="M369.5,598.2 Q367.3,594.1 367.9,589.5" fill="none" stroke="#8FB573" stroke-width="1.33" stroke-linecap="round"/><use href="#leafM2" transform="translate(367.9,589.5) rotate(-9.2) scale(0.396)" color="#2F7031" data-ax="369.5" data-ay="598.2"/></g><g opacity="0.92"><path d="M590.5,472.8 Q588.8,467.8 590.4,462.9" fill="none" stroke="#8FB573" stroke-width="1.31" stroke-linecap="round"/><use href="#leafM2" transform="translate(590.4,462.9) rotate(7) scale(0.384)" color="#6FAF61" data-ax="590.5" data-ay="472.8"/></g><g opacity="0.92"><path d="M886.7,388.1 Q886.7,392.3 889.2,395.8" fill="none" stroke="#8FB573" stroke-width="1.19" stroke-linecap="round"/><use href="#leafB2a" transform="translate(889.2,395.8) rotate(97.4) scale(0.307)" data-ax="886.7" data-ay="388.1"/></g>
<path d="M391.8,1288 L381.6,1278.9 L373.3,1271.7 L363.9,1263.5 L353.8,1254.6 L343.6,1245.3 L333.8,1235.8 L324.8,1226.4 L316.6,1217 L308.2,1207.2 L300,1197.1 L291.9,1186.7 L284.3,1176 L277.4,1165.1 L271.2,1154 L266.1,1142.8 L262.1,1131.4 L258.9,1119.4 L256.6,1107.1 L255,1094.5 L254,1081.7 L253.6,1069 L253.8,1056.4 L254.2,1044.1 L255.2,1032.4 L257.4,1021 L260.4,1009.6 L263.8,998.3 L267.4,987 L270.5,975.5 L273,963.9 L274.2,952 L274,939.9 L272.4,927.7 L269.8,915.5 L266.7,903.2 L263.4,891 L260.4,879 L258.1,867.2 L256.7,855.7 L256.5,844.4 L257.2,833.1 L258.5,821.8 L260.4,810.5 L262.5,799.4 L264.9,788.6 L267.3,778 L269.5,767.7 L271.3,757.9 L272.6,748.6 L274.4,734.1 L277.3,717.5 L281.9,703.7 L286,695.1 L291.5,686.1 L298.3,676.7 L306,667.2 L314.4,657.6 L323.2,648.1 L332.2,638.9 L341.1,630 L349.5,621.5 L357.4,613.6 L364.8,606.1 L372,598.9 L379.2,592 L386.9,585.1 L395.2,578.2 L404.5,571 L415.1,563.6 L427,555.8 L440.1,547.7 L454.2,539.5 L469,531.3 L484.3,523.1 L499.8,515 L515.4,507.2 L530.8,499.7 L546.4,492.6 L562.4,485.8 L578.8,479.2 L595.4,472.9 L612,466.8 L628.5,460.9 L644.7,455.2 L660.6,449.7 L676.3,444.5 L692.1,439.5 L707.9,434.9 L723.5,430.6 L738.7,426.5 L753.4,422.7 L767.4,419.1 L780.4,415.7 L792.3,412.8 L803,410.6 L812.9,408.7 L822.4,407.1 L831.7,405.4 L841.1,403.6 L850.9,401.3 L861.4,398.5 L872.5,395 L883.7,391 L895,386.6 L906.5,382 L918.2,377.2 L930.3,372.4 L942.7,367.8 L955.4,363.4 L969.2,359.2 L984,355.3 L999.6,351.5 L1015.3,347.7 L1030.7,343.9 L1045.4,339.9 L1058.8,335.8 L1070.6,331.3 L1080.4,326.8 L1089,322.3 L1103,313.1 L1114.6,302.8 L1126,290.8 L1133.8,281.4 L1139.3,273.6 L1144.6,265.4 L1149.7,256.9 L1154.5,248.2 L1159.1,239.6 L1163.4,231.1 L1167.5,222.8 L1174.4,206.5 L1180.1,190.2 L1185.8,173.9 L1192.2,157.7 L1199.6,141.6 L1204.8,130.7 L1208.7,122.6 L1215.1,109.1 L1222.2,92.7 L1228.7,76.6 L1234.9,60.5 L1241,44.2 L1247,27.5 L1250.2,18.1 L1253.6,8.2 L1256.9,-2 L1260.2,-12 L1263.1,-21.3 L1267.3,-34.2 L1269,-39.7 L1267,-40.3 L1265.2,-34.9 L1261.1,-22 L1258.1,-12.7 L1254.9,-2.7 L1251.5,7.5 L1248.2,17.5 L1245.1,26.8 L1239.1,43.5 L1233,59.8 L1226.7,75.8 L1220.1,91.8 L1212.9,108 L1206.5,121.6 L1202.6,129.7 L1197.4,140.5 L1190.1,156.8 L1183.7,173.2 L1178,189.4 L1172.1,205.6 L1165.2,221.7 L1161.1,229.9 L1156.7,238.3 L1152.1,246.9 L1147.3,255.5 L1142.3,264 L1137.1,272.1 L1131.7,279.8 L1124,289.2 L1112.8,301.1 L1101.4,311.1 L1087.7,320 L1079.2,324.3 L1069.4,328.7 L1057.9,333 L1044.6,337 L1030,341 L1014.6,344.9 L998.9,348.8 L983.3,352.6 L968.4,356.6 L954.6,360.6 L941.7,364.9 L929.2,369.5 L917,374.2 L905.3,378.9 L893.8,383.5 L882.5,387.9 L871.5,392 L860.6,395.5 L850.2,398.4 L840.4,400.6 L831.1,402.5 L821.9,404 L812.4,405.6 L802.4,407.4 L791.5,409.5 L779.6,412.3 L766.5,415.6 L752.5,419.2 L737.8,423.1 L722.6,427.3 L707,431.8 L691.1,436.4 L675.2,441.3 L659.4,446.3 L643.5,451.6 L627.2,457.2 L610.7,463.1 L594.1,469.4 L577.5,475.9 L561.1,482.5 L544.9,489.3 L529.2,496.3 L513.6,503.6 L497.9,511.3 L482.3,519.4 L467,527.7 L452.2,536.1 L438.2,544.5 L425,552.6 L412.9,560.4 L402.2,567.8 L392.6,574.9 L384.1,581.9 L376.3,588.8 L368.9,595.7 L361.6,602.9 L354.2,610.5 L346.5,618.5 L338.1,627 L329.3,636 L320.3,645.4 L311.4,654.9 L302.8,664.5 L294.9,674.1 L287.8,683.6 L282,692.9 L277.5,701.9 L272.7,716.4 L269.8,733.5 L268.2,748 L267,757.2 L265.3,766.9 L263.1,777.1 L260.7,787.6 L258.3,798.5 L255.9,809.7 L253.9,821.1 L252.4,832.6 L251.5,844.3 L251.7,856 L253.1,868 L255.7,880.1 L258.9,892.3 L262.3,904.4 L265.4,916.5 L268,928.5 L269.4,940.3 L269.5,951.8 L268.1,963.1 L265.6,974.3 L262.3,985.4 L258.8,996.7 L255.3,1008.2 L252.3,1019.8 L250.2,1031.7 L249.4,1043.9 L249,1056.3 L248.9,1069.1 L249.2,1082 L250,1094.9 L251.4,1107.9 L253.6,1120.6 L256.7,1133 L260.9,1144.9 L266.3,1156.5 L272.7,1167.9 L280,1179 L287.9,1189.8 L296,1200.3 L304.4,1210.5 L312.6,1220.3 L320.7,1229.9 L329.8,1239.7 L339.6,1249.5 L349.9,1259 L360,1267.9 L369.6,1276.1 L378,1283.1 L388.2,1292 Z" fill="#6E4B30"/>
<path d="M390.8,1289.1 L380.5,1280.1 L372.2,1273 L362.7,1264.9 L352.6,1256 L342.4,1246.6 L332.6,1237 L323.6,1227.4 L315.5,1217.9 L307.2,1208.1 L298.9,1198 L290.8,1187.5 L283.1,1176.9 L276,1165.9 L269.7,1154.8 L264.5,1143.5 L260.4,1131.9 L257.3,1119.8 L255.1,1107.3 L253.6,1094.6 L252.7,1081.8 L252.4,1069 L252.5,1056.4 L252.9,1044.1 L253.8,1032.2 L255.9,1020.6 L258.8,1009.2 L262.3,997.8 L265.8,986.5 L269,975.1 L271.5,963.6 L272.9,952 L272.8,940 L271.2,927.9 L268.7,915.8 L265.5,903.5 L262.1,891.4 L259,879.3 L256.5,867.4 L255.1,855.8 L255,844.4 L255.7,832.9 L257.2,821.6 L259.1,810.3 L261.4,799.2 L263.8,788.3 L266.2,777.7 L268.3,767.5 L270.1,757.7 L271.3,748.4 L273,733.9 L275.9,717.2 L280.5,703.2 L284.8,694.4 L290.4,685.3 L297.3,676 L305.1,666.4 L313.6,656.9 L322.4,647.4 L331.4,638.1 L340.2,629.2 L348.6,620.6 L356.4,612.6 L363.8,605.1 L371,597.9 L378.3,591 L386,584.1 L394.5,577.2 L403.9,570.1 L414.5,562.7 L426.5,554.9 L439.6,546.8 L453.6,538.6 L468.4,530.2 L483.6,521.9 L499.2,513.8 L514.8,506.1 L530.3,498.7 L546,491.7 L562.1,484.9 L578.5,478.3 L595,471.8 L611.6,465.7 L628.1,459.7 L644.4,454.1 L660.2,448.7 L676,443.6 L691.8,438.7 L707.7,434.1 L723.3,429.6 L738.5,425.5 L753.1,421.6 L767.1,418 L780.2,414.7 L792,411.8 L802.8,409.7 L812.8,407.9 L822.2,406.3 L831.5,404.6 L840.9,402.8 L850.7,400.6 L861.2,397.7 L872.2,394.1 L883.3,390.1 L894.6,385.6 L906.1,381 L917.9,376.3 L929.9,371.5 L942.4,367 L955.2,362.6 L969,358.5 L983.8,354.6 L999.4,350.7 L1015.1,346.9 L1030.5,343 L1045.1,339 L1058.5,334.9 L1070.2,330.5 L1080.1,326.1 L1088.6,321.7 L1102.5,312.5 L1114.1,302.4 L1125.4,290.4 L1133.2,281 L1138.7,273.2 L1143.9,265 L1149,256.5 L1153.8,247.8 L1158.4,239.2 L1162.7,230.7 L1166.8,222.5 L1173.7,206.2 L1179.6,190 L1185.2,173.7 L1191.6,157.5 L1199,141.3 L1204.1,130.4 L1208,122.3 L1214.4,108.7 L1221.6,92.5 L1228.2,76.4 L1234.4,60.3 L1240.5,44 L1246.5,27.3 L1249.6,18 L1253,8 L1256.3,-2.2 L1259.5,-12.2 L1262.5,-21.5 L1266.6,-34.4 L1268.4,-39.9 L1267.6,-40.1 L1265.9,-34.7 L1261.7,-21.8 L1258.7,-12.5 L1255.5,-2.5 L1252.1,7.7 L1248.8,17.7 L1245.6,27 L1239.6,43.7 L1233.5,60 L1227.3,76 L1220.7,92.1 L1213.6,108.4 L1207.2,121.9 L1203.3,130 L1198.1,140.8 L1190.7,157.1 L1184.2,173.4 L1178.6,189.6 L1172.7,205.9 L1165.9,222.1 L1161.8,230.3 L1157.5,238.7 L1152.9,247.3 L1148.1,256 L1143,264.4 L1137.8,272.6 L1132.3,280.3 L1124.6,289.6 L1113.3,301.5 L1101.8,311.6 L1088,320.6 L1079.6,325 L1069.8,329.5 L1058.2,333.8 L1044.8,337.9 L1030.2,341.9 L1014.8,345.7 L999.1,349.5 L983.5,353.3 L968.6,357.3 L954.8,361.4 L941.9,365.8 L929.5,370.4 L917.4,375.1 L905.6,379.9 L894.1,384.5 L882.9,388.8 L871.8,392.8 L860.8,396.3 L850.3,399.2 L840.6,401.4 L831.3,403.2 L822,404.9 L812.5,406.5 L802.6,408.3 L791.8,410.5 L779.8,413.3 L766.8,416.7 L752.8,420.3 L738.1,424.1 L722.9,428.2 L707.2,432.6 L691.4,437.2 L675.5,442.1 L659.8,447.3 L643.9,452.7 L627.6,458.4 L611.1,464.3 L594.5,470.4 L577.9,476.8 L561.4,483.4 L545.3,490.2 L529.7,497.3 L514.1,504.7 L498.5,512.5 L482.9,520.5 L467.6,528.8 L452.8,537.1 L438.7,545.3 L425.5,553.4 L413.5,561.3 L402.8,568.7 L393.4,575.9 L385,582.8 L377.2,589.8 L369.8,596.7 L362.6,603.9 L355.2,611.4 L347.4,619.4 L338.9,627.9 L330.1,636.8 L321.1,646.1 L312.2,655.6 L303.7,665.2 L295.9,674.8 L288.9,684.3 L283.2,693.6 L278.9,702.5 L274.2,716.8 L271.2,733.6 L269.4,748.2 L268.1,757.4 L266.4,767.1 L264.2,777.3 L261.8,787.9 L259.4,798.8 L257.2,809.9 L255.3,821.3 L253.9,832.7 L253.1,844.3 L253.2,855.9 L254.6,867.7 L257.1,879.8 L260.2,891.9 L263.5,904.1 L266.6,916.2 L269.1,928.3 L270.7,940.2 L270.8,951.8 L269.5,963.3 L267.1,974.6 L263.9,985.9 L260.4,997.2 L256.9,1008.6 L253.9,1020.2 L251.7,1031.9 L250.7,1044 L250.3,1056.4 L250.2,1069 L250.5,1081.9 L251.4,1094.8 L252.9,1107.6 L255.2,1120.2 L258.4,1132.5 L262.5,1144.2 L267.8,1155.8 L274.1,1167.1 L281.2,1178.1 L288.9,1188.9 L297.1,1199.4 L305.4,1209.6 L313.7,1219.4 L321.9,1228.9 L331,1238.5 L340.9,1248.2 L351.1,1257.6 L361.2,1266.6 L370.7,1274.8 L379,1281.9 L389.2,1290.9 Z" fill="#9A6B42" opacity="0.85" transform="translate(-0.6,-0.8)"/>
<path d="M291.5,682.2 q1.8,1.7 3,2.8" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M262.9,787.9 q3.1,1 5.1,1.6" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M433.2,549.7 q-2.3,-2.4 -3.9,-4" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M570.4,480.6 q1.6,3.1 2.7,5.2" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M267.1,978.4 q-3,-0.9 -5.1,-1.6" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M739.2,424.6 q1.2,3.6 2.1,6" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M876.3,391.9 q-0.4,-2.4 -0.7,-4" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M1197,144.4 q2.2,1.7 3.6,2.8" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/>
<path d="M259.2,1131.5 Q252,1131.7 246.1,1127.8" fill="none" stroke="#8FB573" stroke-width="1.50" stroke-linecap="round"/><use href="#leafB2a" transform="translate(246.1,1127.8) rotate(-62.9) scale(0.499)" data-ax="259.2" data-ay="1131.5"/><path d="M255.3,1115.5 Q260.1,1113.1 262.6,1108.4" fill="none" stroke="#8FB573" stroke-width="1.44" stroke-linecap="round"/><use href="#leafM2" transform="translate(262.6,1108.4) rotate(27.7) scale(0.464)" color="#4E8A3E" data-ax="255.3" data-ay="1115.5"/><path d="M256.9,1122.6 Q251.3,1124 246,1122" fill="none" stroke="#8FB573" stroke-width="1.29" stroke-linecap="round"/><use href="#leafM2" transform="translate(246,1122) rotate(-65) scale(0.366)" color="#27632B" data-ax="256.9" data-ay="1122.6"/><path d="M251.4,1055.3 Q244.7,1056 238.7,1052.8" fill="none" stroke="#8FB573" stroke-width="1.65" stroke-linecap="round"/><use href="#leafB2" transform="translate(238.7,1052.8) rotate(-21.6) scale(0.594)" color="#1E5424" data-ax="251.4" data-ay="1055.3"/><path d="M252.3,1036.2 Q257.9,1035.4 262,1031.6" fill="none" stroke="#8FB573" stroke-width="1.38" stroke-linecap="round"/><use href="#leafM2a" transform="translate(262,1031.6) rotate(64.1) scale(0.426)" data-ax="252.3" data-ay="1036.2"/><path d="M266.5,980.4 Q272.2,983.9 278.8,983.4" fill="none" stroke="#8FB573" stroke-width="1.59" stroke-linecap="round"/><use href="#leafB2" transform="translate(278.8,983.4) rotate(71.9) scale(0.553)" color="#6FAF61" data-ax="266.5" data-ay="980.4"/><path d="M259.9,801.2 Q254.2,802.3 248.9,799.9" fill="none" stroke="#8FB573" stroke-width="1.42" stroke-linecap="round"/><use href="#leafB2" transform="translate(248.9,799.9) rotate(-42.5) scale(0.447)" color="#6FAF61" data-ax="259.9" data-ay="801.2"/><path d="M274,721.8 Q267.3,723.1 261.2,720.3" fill="none" stroke="#8FB573" stroke-width="1.54" stroke-linecap="round"/><use href="#leafM2a" transform="translate(261.2,720.3) rotate(-37.8) scale(0.524)" data-ax="274" data-ay="721.8"/><path d="M318.9,649.8 Q314,645.9 312.3,639.9" fill="none" stroke="#8FB573" stroke-width="1.50" stroke-linecap="round"/><use href="#leafM2b" transform="translate(312.3,639.9) rotate(-9) scale(0.499)" data-ax="318.9" data-ay="649.8"/><path d="M417,560 Q420.7,565 426.6,566.9" fill="none" stroke="#8FB573" stroke-width="1.39" stroke-linecap="round"/><use href="#leafM2a" transform="translate(426.6,566.9) rotate(116.7) scale(0.434)" data-ax="417" data-ay="560"/><path d="M493.7,515.8 Q490.5,512.1 490.1,507.3" fill="none" stroke="#8FB573" stroke-width="1.39" stroke-linecap="round"/><use href="#leafB2" transform="translate(490.1,507.3) rotate(32.9) scale(0.428)" color="#27632B" data-ax="493.7" data-ay="515.8"/><path d="M698.8,435.8 Q698.7,441 701.5,445.2" fill="none" stroke="#8FB573" stroke-width="1.28" stroke-linecap="round"/><use href="#leafM2a" transform="translate(701.5,445.2) rotate(146.5) scale(0.365)" data-ax="698.8" data-ay="435.8"/><path d="M782.4,413.4 Q782.1,407.5 785.3,402.5" fill="none" stroke="#8FB573" stroke-width="1.38" stroke-linecap="round"/><use href="#leafM2a" transform="translate(785.3,402.5) rotate(36.8) scale(0.423)" data-ax="782.4" data-ay="413.4"/><path d="M980.6,354.8 Q980,359.5 982.2,363.7" fill="none" stroke="#8FB573" stroke-width="1.30" stroke-linecap="round"/><use href="#leafM2" transform="translate(982.2,363.7) rotate(121.5) scale(0.374)" color="#6FAF61" data-ax="980.6" data-ay="354.8"/><path d="M1132.6,280.7 Q1136.8,283.2 1141.7,282.8" fill="none" stroke="#8FB573" stroke-width="1.26" stroke-linecap="round"/><use href="#leafM2b" transform="translate(1141.7,282.8) rotate(104.6) scale(0.352)" data-ax="1132.6" data-ay="280.7"/><path d="M1179.6,188.3 Q1183.2,190.5 1187.4,190.2" fill="none" stroke="#8FB573" stroke-width="1.24" stroke-linecap="round"/><use href="#leafM2" transform="translate(1187.4,190.2) rotate(53.2) scale(0.339)" color="#4E8A3E" data-ax="1179.6" data-ay="188.3"/><path d="M1208.3,120.7 Q1204.3,120.5 1201.2,118" fill="none" stroke="#8FB573" stroke-width="1.19" stroke-linecap="round"/><use href="#leafM2" transform="translate(1201.2,118) rotate(-4.1) scale(0.309)" color="#4E8A3E" data-ax="1208.3" data-ay="120.7"/><path d="M1246.9,24.6 Q1250.3,26 1253.9,25.3" fill="none" stroke="#8FB573" stroke-width="1.12" stroke-linecap="round"/><use href="#leafM2" transform="translate(1253.9,25.3) rotate(74) scale(0.265)" color="#4E8A3E" data-ax="1246.9" data-ay="24.6"/>
<path class="ivy-centerline" d="M720,430 L706.6,420.3 L689.8,408.2 L673,396.7 L656.8,385.5 L640.1,374.9 L622.8,367.3 L605,363 L586.6,361.4 L567.6,362.2 L546.8,365.6 L525.8,371.4 L508,379.1 L494.3,389.3 L483.1,401.2 L473.9,413.5 L466.6,427.6 L461.2,441.6 L458,450" fill="none" stroke="none" data-vine="heroBranchA"/>
<path d="M720.8,428.9 L711.1,421.9 L699.2,413.4 L686.1,404.2 L673.6,395.8 L661.6,387.5 L649.2,379.1 L636.4,371.6 L623.2,366.2 L609.7,362.7 L595.9,360.8 L581.9,360.4 L567.5,361.3 L551.9,363.6 L535.9,367.4 L520.6,372.3 L507.6,378.3 L496.9,385.8 L487.8,394.5 L480,403.8 L473.3,413.1 L467.5,423.6 L462.9,434.7 L459.5,444.3 L457.4,449.7 L458.6,450.3 L460.8,444.7 L464.3,435.2 L468.9,424.3 L474.6,414 L481.4,404.9 L489,395.7 L498,387.2 L508.5,379.8 L521.3,373.9 L536.3,369 L552.3,365.4 L567.7,363.2 L581.9,362.4 L595.7,363 L609.3,364.9 L622.5,368.4 L635.3,373.7 L647.9,381 L660.3,389.3 L672.4,397.6 L684.8,406 L697.8,415.3 L709.6,424 L719.2,431.1 Z" fill="#6E4B30"/>
<path d="M720.3,429.5 L710.7,422.5 L698.8,413.9 L685.8,404.7 L673.3,396.3 L661.2,388 L648.8,379.6 L636,372.2 L622.9,366.8 L609.6,363.4 L595.9,361.5 L581.9,361 L567.5,361.8 L552,364.1 L536,367.8 L520.8,372.8 L507.9,378.8 L497.2,386.2 L488.2,394.9 L480.4,404.1 L473.7,413.4 L467.9,423.8 L463.3,434.8 L459.8,444.4 L457.7,449.9 L458.3,450.1 L460.4,444.6 L463.9,435 L468.5,424.1 L474.2,413.7 L481,404.6 L488.7,395.4 L497.6,386.7 L508.2,379.4 L521.1,373.4 L536.2,368.6 L552.2,364.9 L567.6,362.7 L581.9,361.8 L595.8,362.4 L609.4,364.3 L622.7,367.7 L635.6,373 L648.3,380.4 L660.7,388.8 L672.7,397.1 L685.2,405.5 L698.2,414.8 L710,423.4 L719.7,430.5 Z" fill="#9A6B42" opacity="0.85" transform="translate(-0.6,-0.8)"/>
<path d="M700.2,415.6 Q702.3,412.3 702,408.4" fill="none" stroke="#8FB573" stroke-width="1.08" stroke-linecap="round"/><use href="#leafM2a" transform="translate(702,408.4) rotate(8) scale(0.240)" data-ax="700.2" data-ay="415.6"/><path d="M646.6,378.8 Q645.3,382.4 642.1,384.6" fill="none" stroke="#8FB573" stroke-width="1.07" stroke-linecap="round"/><use href="#leafM2a" transform="translate(642.1,384.6) rotate(-115.9) scale(0.232)" data-ax="646.6" data-ay="378.8"/><path d="M576.3,361.6 Q577.4,365.8 575.8,369.9" fill="none" stroke="#8FB573" stroke-width="1.10" stroke-linecap="round"/><use href="#leafM2a" transform="translate(575.8,369.9) rotate(208.2) scale(0.252)" data-ax="576.3" data-ay="361.6"/><path d="M510.4,377.8 Q507.4,374.7 503.2,373.9" fill="none" stroke="#8FB573" stroke-width="1.12" stroke-linecap="round"/><use href="#leafM2" transform="translate(503.2,373.9) rotate(294.4) scale(0.260)" color="#1E5424" data-ax="510.4" data-ay="377.8"/><path d="M473,415 Q469.4,413.1 465.4,413.7" fill="none" stroke="#8FB573" stroke-width="1.05" stroke-linecap="round"/><use href="#leafM2" transform="translate(465.4,413.7) rotate(234.7) scale(0.221)" color="#4E8A3E" data-ax="473" data-ay="415"/>
<path class="ivy-centerline" d="M258,1002 L267.2,986.2 L279,966.9 L291.6,950.3 L305.2,937.6 L319.7,926.6 L333.7,916.8 L346.9,908 L359.6,900.5 L371.4,894.3 L383.2,889.5 L396.8,885.1 L400,884" fill="none" stroke="none" data-vine="heroBranchB"/>
<g opacity="0.92"><path d="M356.7,902.1 Q358.2,906.4 361.8,909.1" fill="none" stroke="#8FB573" stroke-width="1.11" stroke-linecap="round"/><use href="#leafM2b" transform="translate(361.8,909.1) rotate(123.8) scale(0.256)" data-ax="356.7" data-ay="902.1"/></g>
<path d="M259.2,1002.7 L265.8,991.3 L273.9,977.3 L283.1,962.9 L292.4,951 L302.4,941.4 L313.1,932.8 L324,925 L334.3,917.7 L344.2,911 L353.8,904.9 L363.1,899.6 L371.8,895.1 L380.5,891.3 L390.3,887.9 L400.2,884.7 L399.8,883.3 L389.8,886.5 L380,889.8 L371.1,893.5 L362.2,898 L352.9,903.3 L343.1,909.3 L333.1,915.9 L322.7,923.2 L311.8,931 L300.9,939.7 L290.7,949.5 L281.2,961.6 L271.8,976 L263.5,989.9 L256.8,1001.3 Z" fill="#6E4B30"/>
<path d="M258.5,1002.3 L265.2,990.9 L273.3,977 L282.6,962.5 L291.9,950.6 L301.9,940.9 L312.7,932.3 L323.6,924.4 L333.9,917.2 L343.8,910.5 L353.6,904.5 L362.9,899.2 L371.6,894.6 L380.4,890.9 L390.1,887.5 L400.1,884.3 L399.9,883.7 L389.9,886.9 L380.1,890.2 L371.3,894 L362.5,898.5 L353.1,903.8 L343.4,909.8 L333.4,916.5 L323.1,923.7 L312.2,931.6 L301.3,940.2 L291.2,949.9 L281.7,961.9 L272.4,976.4 L264.2,990.3 L257.5,1001.7 Z" fill="#9A6B42" opacity="0.85" transform="translate(-0.6,-0.8)"/>
<path d="M278.6,967.5 Q275.9,964.5 275.5,960.6" fill="none" stroke="#8FB573" stroke-width="1.13" stroke-linecap="round"/><use href="#leafM2a" transform="translate(275.5,960.6) rotate(3.5) scale(0.267)" data-ax="278.6" data-ay="967.5"/><path d="M309.8,933.9 Q311.9,938.3 316.2,940.6" fill="none" stroke="#8FB573" stroke-width="1.17" stroke-linecap="round"/><use href="#leafM2b" transform="translate(316.2,940.6) rotate(72.2) scale(0.295)" data-ax="309.8" data-ay="933.9"/><path d="M318.9,927.2 Q317.4,924.8 317.5,921.9" fill="none" stroke="#8FB573" stroke-width="0.98" stroke-linecap="round"/><use href="#leafM2" transform="translate(317.5,921.9) rotate(32.3) scale(0.176)" color="#27632B" data-ax="318.9" data-ay="927.2"/><path d="M373.1,893.5 Q372,890.4 372.9,887.2" fill="none" stroke="#8FB573" stroke-width="1.02" stroke-linecap="round"/><use href="#leafM2" transform="translate(372.9,887.2) rotate(4.1) scale(0.201)" color="#4E8A3E" data-ax="373.1" data-ay="893.5"/>
</g>
</svg>
<svg class="ivy vine-left" viewBox="0 0 340 900" aria-hidden="true">
<g>
<path class="ivy-centerline" d="M-25,50 L-11.4,62.1 L1.2,73.2 L15.3,85.9 L29.8,99.5 L43.7,113.2 L56.1,126.7 L68.2,140.6 L80.3,155.1 L92.1,170.1 L103.7,185.6 L114.7,201.7 L125.2,218.4 L135.7,235.9 L146,253.9 L155.7,272.4 L164.4,291.3 L171.9,310.4 L177.8,329.6 L182.9,349.3 L186.9,369.3 L189.7,389.5 L191.1,409.8 L190.8,430 L188.7,450.1 L184.6,470.5 L178.8,491 L171.6,511.4 L163.4,531.4 L154.6,550.7 L145.1,569.1 L133.9,586.9 L121.4,604.1 L108.6,620.8 L96.1,636.9 L84.9,652.4 L75.3,667.4 L65.7,681.9 L56.4,695.8 L48.4,709.1 L42.6,721.9 L39.9,734.1 L43.6,751.4 L50.9,762.2 L60.9,772.5 L72.4,782.2 L84.2,791.4 L95,800 L106.6,807.9 L120.2,815.2 L134.1,821.9 L146.5,828.1 L159.5,838.5 L154.7,850.1 L136,860.7 L124.4,865.2 L110,870 L94.9,873.7 L81.1,876.1 L66.7,877.9 L52.4,879.1 L39,879.8 L21.6,879.6 L0,876.2 L-17.6,871.8 L-25,870" fill="none" stroke="none" data-vine="left"/>
<g opacity="0.92"><path d="M163.5,289.2 Q169,288.9 173.3,285.5" fill="none" stroke="#8FB573" stroke-width="1.24" stroke-linecap="round"/><use href="#leafM2a" transform="translate(173.3,285.5) rotate(369.6) scale(0.340)" data-ax="163.5" data-ay="289.2"/></g>
<path d="M-26.4,51.6 L-15.6,61.3 L-6.8,69.1 L3.1,78 L13.7,87.6 L24.6,97.8 L35.2,108.1 L45.2,118.3 L54.4,128.2 L63.5,138.5 L72.6,149.1 L81.6,160.1 L90.4,171.4 L99,183 L107.3,194.9 L115.4,207.1 L123.2,219.7 L131.1,232.6 L139,245.9 L146.6,259.5 L153.8,273.4 L160.4,287.4 L166.3,301.6 L171.4,315.9 L175.6,330.3 L179.4,344.9 L182.7,359.7 L185.5,374.7 L187.5,389.7 L188.8,404.8 L189.1,419.9 L188.4,434.8 L186.6,449.7 L183.6,464.9 L179.6,480.1 L174.9,495.4 L169.5,510.6 L163.5,525.6 L157.2,540.3 L150.5,554.5 L143.4,568.1 L135.1,581.3 L126,594.3 L116.4,606.9 L106.8,619.4 L97.4,631.5 L88.5,643.5 L80.6,655.1 L73.6,666.3 L66.4,677.2 L59.3,687.8 L52.5,698.1 L46.6,708.1 L41.8,717.9 L38.7,727.6 L37.8,740.3 L41.6,752.4 L47,760.9 L54.1,768.9 L62.4,776.5 L71.2,783.8 L80.1,790.7 L88.6,797.3 L96.5,803.6 L105.6,809.6 L115.8,815.2 L126.3,820.5 L136.4,825.4 L145.4,830.1 L155.7,837.1 L157.5,843.5 L149.8,851.1 L135.2,858.8 L126.6,862.3 L117.9,865.5 L103.8,869.8 L94.5,871.9 L84.3,873.6 L73.7,875.1 L62.9,876.2 L52.3,877 L42.1,877.6 L32.9,877.8 L16.2,877 L0.4,874.2 L-13.2,870.9 L-24.6,868.2 L-25.4,871.8 L-14.2,874.6 L-0.5,878.2 L15.7,881.1 L32.9,882.1 L42.3,881.9 L52.6,881.3 L63.3,880.3 L74.2,879.1 L84.9,877.5 L95.2,875.6 L104.8,873.4 L119.1,869.1 L128,866 L136.8,862.5 L152.2,854.6 L161.4,845.2 L158.9,834.1 L147.5,826.2 L138.3,821.5 L128.1,816.7 L117.6,811.6 L107.6,806.2 L98.8,800.5 L91,794.3 L82.4,787.6 L73.7,780.7 L65.1,773.4 L57.2,765.9 L50.5,758.2 L45.5,750.4 L42.2,739.7 L43,728.5 L45.8,719.5 L50.3,710.1 L56,700.2 L62.6,690 L69.7,679.4 L77,668.5 L84.1,657.3 L92,646 L100.9,634.3 L110.4,622.2 L120,609.7 L129.5,596.8 L138.6,583.6 L146.9,570.1 L154.1,556.3 L160.9,542 L167.5,527.3 L173.7,512.2 L179.3,496.9 L184.1,481.4 L188,465.8 L190.8,450.4 L192.5,435.2 L193.2,419.9 L192.9,404.6 L191.8,389.3 L189.9,374 L187.3,358.8 L184,343.8 L180.1,329 L175.6,314.5 L170.3,300.1 L164.2,285.7 L157.5,271.5 L150.4,257.5 L142.9,243.7 L135.1,230.2 L127.3,217.2 L119.4,204.6 L111.2,192.3 L102.6,180.4 L93.9,168.8 L84.9,157.4 L75.9,146.4 L66.8,135.7 L57.8,125.2 L48.6,115 L38.6,104.6 L27.9,94.2 L16.9,84.1 L6.1,74.5 L-3.9,65.7 L-12.8,58.1 L-23.6,48.4 Z" fill="#6E4B30"/>
<path d="M-25.7,50.7 L-14.8,60.4 L-6,68.1 L4,76.9 L14.7,86.5 L25.6,96.7 L36.3,107 L46.2,117.3 L55.3,127.4 L64.4,137.8 L73.5,148.4 L82.5,159.4 L91.4,170.7 L100.1,182.2 L108.5,194.1 L116.6,206.3 L124.5,218.9 L132.3,231.9 L140.1,245.3 L147.6,259 L154.8,272.9 L161.5,287 L167.5,301.2 L172.6,315.5 L177,329.9 L180.8,344.6 L184.1,359.4 L186.8,374.5 L188.7,389.6 L189.9,404.7 L190.2,419.9 L189.5,434.9 L187.8,449.9 L184.9,465.2 L181,480.5 L176.2,495.9 L170.7,511.1 L164.7,526.1 L158.2,540.8 L151.4,555 L144.3,568.6 L136.1,582 L127.1,595 L117.6,607.8 L107.9,620.2 L98.4,632.4 L89.5,644.2 L81.6,655.7 L74.5,666.9 L67.3,677.8 L60.2,688.4 L53.5,698.7 L47.7,708.7 L43,718.4 L40,727.9 L39.2,740.1 L42.8,751.8 L48.1,760.1 L55,768 L63.1,775.7 L71.8,782.9 L80.7,789.9 L89.2,796.5 L97.1,802.8 L106.1,808.7 L116.3,814.2 L126.8,819.3 L137,824.2 L146.1,828.9 L156.7,836.2 L158.7,844 L150.5,852.1 L135.6,859.8 L127,863.3 L118.2,866.4 L104.1,870.7 L94.7,872.9 L84.5,874.7 L73.8,876.2 L63,877.5 L52.4,878.3 L42.2,878.9 L32.9,879.2 L16.1,878.2 L0.2,875.4 L-13.5,871.9 L-24.8,869.1 L-25.2,870.9 L-14,873.6 L-0.2,877 L15.9,879.9 L32.9,880.8 L42.3,880.5 L52.5,880 L63.2,879.1 L74,877.9 L84.8,876.4 L95,874.6 L104.5,872.5 L118.8,868.1 L127.6,865 L136.4,861.5 L151.5,853.6 L160.2,844.7 L157.9,835 L146.9,827.4 L137.7,822.7 L127.6,817.8 L117.1,812.7 L107,807.2 L98.2,801.3 L90.3,795.1 L81.8,788.4 L73,781.5 L64.3,774.3 L56.3,766.8 L49.5,759 L44.3,751 L40.8,739.9 L41.6,728.2 L44.6,719.1 L49.2,709.5 L55,699.6 L61.7,689.4 L68.8,678.8 L76.1,667.9 L83.1,656.7 L91,645.3 L99.8,633.4 L109.2,621.3 L118.9,608.8 L128.5,596.1 L137.6,583 L145.9,569.6 L153.1,555.8 L159.9,541.6 L166.4,526.8 L172.4,511.7 L177.9,496.4 L182.7,481 L186.6,465.5 L189.6,450.2 L191.4,435.1 L192.1,419.9 L191.8,404.7 L190.6,389.4 L188.6,374.2 L185.9,359.1 L182.5,344.1 L178.7,329.4 L174.3,314.9 L169.2,300.5 L163.2,286.2 L156.6,272 L149.4,258 L141.8,244.3 L133.9,231 L126,218 L118.1,205.4 L110,193.1 L101.6,181.1 L92.9,169.5 L84,158.1 L75,147.1 L65.9,136.5 L56.8,126.1 L47.6,116 L37.6,105.7 L26.9,95.3 L15.9,85.2 L5.2,75.5 L-4.7,66.7 L-13.5,58.9 L-24.3,49.3 Z" fill="#9A6B42" opacity="0.85" transform="translate(-0.6,-0.8)"/>
<path d="M103.9,185.9 q-2.5,2.7 -4.1,4.5" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M106.5,807.9 q1.9,-2 3.2,-3.3" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M189.8,390.7 q-2.5,1.2 -4.2,2.1" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/><path d="M152.9,266.9 q-2.4,1.7 -4,2.8" fill="none" stroke="#A8794F" stroke-width="0.8" stroke-linecap="round" opacity="0.5"/>
<path d="M1.7,73.7 Q-1.2,77.4 -5.8,78.7" fill="none" stroke="#8FB573" stroke-width="1.15" stroke-linecap="round"/><use href="#leafB2b" transform="translate(-5.8,78.7) rotate(248) scale(0.281)" data-ax="1.7" data-ay="73.7"/><path d="M83.5,159.1 Q86.8,155.9 87.6,151.3" fill="none" stroke="#8FB573" stroke-width="1.21" stroke-linecap="round"/><use href="#leafM2" transform="translate(87.6,151.3) rotate(391.2) scale(0.321)" color="#4E8A3E" data-ax="83.5" data-ay="159.1"/><path d="M130,226.2 Q127.2,229.1 123.3,229.8" fill="none" stroke="#8FB573" stroke-width="1.20" stroke-linecap="round"/><use href="#leafM2a" transform="translate(123.3,229.8) rotate(276.7) scale(0.312)" data-ax="130" data-ay="226.2"/><path d="M185.3,360.7 Q180.4,362.3 175.4,360.8" fill="none" stroke="#8FB573" stroke-width="1.23" stroke-linecap="round"/><use href="#leafM2" transform="translate(175.4,360.8) rotate(315.6) scale(0.331)" color="#2F7031" data-ax="185.3" data-ay="360.7"/><path d="M90.2,644.9 Q94.4,647.1 99.1,646.4" fill="none" stroke="#8FB573" stroke-width="1.34" stroke-linecap="round"/><use href="#leafM2" transform="translate(99.1,646.4) rotate(442.1) scale(0.401)" color="#1A5020" data-ax="90.2" data-ay="644.9"/><path d="M53.4,700.6 Q47.9,699.4 44,695.3" fill="none" stroke="#8FB573" stroke-width="1.34" stroke-linecap="round"/><use href="#leafM2" transform="translate(44,695.3) rotate(361.1) scale(0.398)" color="#1A5020" data-ax="53.4" data-ay="700.6"/><path d="M45.9,714.1 Q42.9,711.7 41.8,708" fill="none" stroke="#8FB573" stroke-width="1.09" stroke-linecap="round"/><use href="#leafM2" transform="translate(41.8,708) rotate(338.3) scale(0.245)" color="#16401C" data-ax="45.9" data-ay="714.1"/><path d="M75.3,784.5 Q79.1,780.5 79.9,775.1" fill="none" stroke="#8FB573" stroke-width="1.33" stroke-linecap="round"/><use href="#leafM2" transform="translate(79.9,775.1) rotate(364.8) scale(0.395)" color="#1A5020" data-ax="75.3" data-ay="784.5"/><path d="M22.4,879.7 Q20.6,873.5 22.6,867.4" fill="none" stroke="#8FB573" stroke-width="1.54" stroke-linecap="round"/><use href="#leafM2" transform="translate(22.6,867.4) rotate(36.8) scale(0.527)" color="#1A5020" data-ax="22.4" data-ay="879.7"/>
</g>
</svg>
<svg class="ivy vine-right" viewBox="0 0 400 2950" aria-hidden="true">
<g>
<path class="ivy-centerline" d="M430,40 L419.8,52.5 L408.4,66.3 L395.4,82.3 L381.8,99.6 L368.8,117.2 L357.3,134.2 L346.6,151.3 L336.1,168.9 L325.9,187.1 L316.1,205.9 L306.7,225.2 L297.8,245 L288.6,265.8 L279.4,287.3 L270.7,309.3 L263.3,331.5 L257.7,353.6 L254.4,375.4 L253.4,397.3 L254.3,419.2 L256.7,441.1 L260.5,462.8 L265.6,484.2 L271.7,505.2 L280.1,525.3 L290.5,544.9 L302,564.2 L313.3,583.8 L323.6,604.1 L331.9,625.5 L339.4,647.9 L346.5,671 L352.7,694.7 L357.3,718.6 L359.8,742.4 L359.7,765.8 L356.6,789.2 L351,812.5 L343.7,835.8 L335.2,859.2 L326.4,882.5 L317.8,905.8 L308.1,929 L297.2,952.1 L285.9,975.2 L275.2,998.4 L265.7,1022 L258.3,1046.1 L252.1,1070.6 L246.7,1095.5 L242.5,1120.7 L239.9,1145.9 L239.1,1171.2 L240.6,1196.3 L244.9,1221.3 L251.5,1246.3 L259.7,1271.2 L268.8,1296.3 L278.2,1321.3 L287.3,1346.2 L297.8,1371.1 L309.7,1395.8 L321.7,1420.6 L332.5,1445.5 L341,1470.8 L345.8,1496.5 L347.5,1522.7 L346.8,1549.3 L344.2,1576.1 L339.9,1603 L334.5,1629.9 L328.3,1656.7 L319.9,1683.3 L309.5,1710 L298,1736.7 L286.7,1763.3 L276.4,1790 L268.1,1816.7 L260.5,1843.3 L253.3,1870 L247,1896.7 L242.4,1923.3 L240,1950 L240.4,1976.7 L244.2,2003.3 L250.7,2030 L259.1,2056.7 L268.5,2083.3 L278.1,2110 L287.3,2136.7 L298,2163.3 L310.1,2190 L322.4,2216.7 L333.3,2243.3 L341.5,2270 L345.6,2296.7 L345.9,2323.5 L343.2,2350.4 L338.3,2377.3 L332,2404.1 L325.1,2430.5 L318.3,2456.4 L309.9,2482.1 L300,2507.4 L289.6,2532.5 L279.4,2557.3 L270.4,2581.8 L263.4,2606 L257.3,2630.3 L251.6,2654.6 L247.1,2678.4 L244.3,2701.7 L243.7,2724 L245.8,2745.2 L250.3,2765.6 L256.8,2785.2 L265.5,2804 L276.2,2821.7 L289,2838.4 L304.1,2853.7 L324.4,2868.4 L349,2882.3 L374.9,2894.9 L399.3,2905.9 L419.5,2914.9 L430,2920" fill="none" stroke="none" data-vine="right"/>
<g opacity="0.92"><path d="M250,1079.9 Q254,1080.4 257.6,1078.4" fill="none" stroke="#8FB573" stroke-width="1.13" stroke-linecap="round"/><use href="#leafM2a" transform="translate(257.6,1078.4) rotate(408.5) scale(0.272)" data-ax="250" data-ay="1079.9"/></g><g opacity="0.92"><path d="M248.3,1890.8 Q243.6,1888.9 240.9,1884.6" fill="none" stroke="#8FB573" stroke-width="1.23" stroke-linecap="round"/><use href="#leafM2a" transform="translate(240.9,1884.6) rotate(354.6) scale(0.334)" data-ax="248.3" data-ay="1890.8"/></g><g opacity="0.92"><path d="M250.2,2028.3 Q254.9,2027 257.9,2023.4" fill="none" stroke="#8FB573" stroke-width="1.32" stroke-linecap="round"/><use href="#leafM2" transform="translate(257.9,2023.4) rotate(383.2) scale(0.390)" color="#2F7031" data-ax="250.2" data-ay="2028.3"/></g><g opacity="0.92"><path d="M329.4,2233.4 Q332.4,2231.3 333.7,2227.9" fill="none" stroke="#8FB573" stroke-width="1.13" stroke-linecap="round"/><use href="#leafM2" transform="translate(333.7,2227.9) rotate(371.3) scale(0.268)" color="#2F7031" data-ax="329.4" data-ay="2233.4"/></g><g opacity="0.92"><path d="M316.2,2463.3 Q320.9,2466.8 326.7,2467" fill="none" stroke="#8FB573" stroke-width="1.37" stroke-linecap="round"/><use href="#leafM2b" transform="translate(326.7,2467) rotate(421.6) scale(0.422)" data-ax="316.2" data-ay="2463.3"/></g>
<path d="M428.4,38.7 L420.7,48.3 L412.8,57.7 L403.6,68.7 L393.6,80.9 L383.3,93.8 L373.3,107 L363.8,120.2 L355.5,133 L347.5,145.8 L339.6,159 L331.7,172.4 L324.1,186.1 L316.5,200.1 L309.3,214.4 L302.3,229.1 L295.7,244.1 L288.9,259.6 L282.1,275.6 L275.3,292 L268.8,308.6 L263,325.3 L258,342 L254.3,358.7 L252.1,375.2 L251.3,391.7 L251.5,408.3 L252.7,424.9 L254.7,441.4 L257.4,457.8 L260.8,474.1 L264.8,490.1 L269.5,505.9 L275.7,521.3 L283.2,536.2 L291.5,550.7 L300.2,565.3 L308.8,579.9 L316.8,594.8 L323.9,610.2 L329.7,626.2 L335.4,642.9 L340.9,660 L346.1,677.5 L350.7,695.1 L354.3,712.9 L356.8,730.7 L357.9,748.3 L357.5,765.7 L355.4,783 L351.9,800.3 L347.3,817.7 L341.8,835.2 L335.6,852.7 L329,870.1 L322.3,887.6 L315.8,905 L308.6,922.3 L300.8,939.6 L292.5,956.9 L284.2,974.3 L276,991.8 L268.3,1009.4 L261.6,1027.3 L256.2,1045.5 L251.4,1063.9 L247.2,1082.6 L243.5,1101.4 L240.6,1120.4 L238.4,1139.5 L237.2,1158.5 L237.1,1177.5 L238.4,1196.5 L241.4,1215.4 L245.9,1234.3 L251.5,1253.1 L257.8,1271.9 L264.6,1290.7 L271.6,1309.5 L278.5,1328.3 L285.2,1347 L293.1,1365.7 L301.9,1384.3 L311,1402.8 L319.9,1421.4 L328.1,1440 L335.1,1458.8 L340.4,1477.6 L343.7,1496.7 L345.4,1516.2 L345.6,1535.9 L344.4,1555.8 L342.2,1575.8 L339,1595.9 L335.2,1616.1 L331,1636.2 L326.4,1656.2 L320.4,1676.1 L313.1,1696 L304.8,1715.9 L296.1,1735.8 L287.4,1755.8 L279.3,1775.9 L272.2,1796 L266.3,1816.2 L260.6,1836.1 L254.9,1856.1 L249.5,1876.2 L244.9,1896.2 L241.3,1916.3 L238.9,1936.5 L237.9,1956.6 L238.6,1976.8 L241.1,1997 L245.2,2017.2 L250.6,2037.3 L257.1,2057.3 L264.2,2077.3 L271.6,2097.3 L278.7,2117.3 L285.5,2137.3 L293.2,2157.5 L302,2177.5 L311.4,2197.5 L320.6,2217.5 L329,2237.3 L336,2257.2 L341,2277 L343.6,2296.8 L344,2316.7 L342.8,2336.8 L340.2,2356.9 L336.5,2377 L331.9,2397 L326.8,2416.8 L321.4,2436.5 L316.2,2455.9 L310.2,2475 L303.3,2494.1 L295.7,2513 L287.9,2531.8 L280.1,2550.4 L272.8,2568.9 L266.5,2587.3 L261.4,2605.5 L256.9,2623.8 L252.5,2642 L248.6,2660.2 L245.3,2678.1 L242.9,2695.7 L241.7,2712.9 L241.9,2729.5 L243.8,2745.5 L247,2761 L251.5,2776.1 L257.1,2790.7 L263.9,2804.8 L271.8,2818.4 L280.9,2831.3 L291.1,2843.6 L302.8,2855.3 L317.7,2866.5 L335.4,2877.2 L354.6,2887.2 L374.1,2896.5 L392.8,2905 L409.4,2912.4 L422.6,2918.5 L429.1,2921.8 L430.9,2918.2 L424.3,2915 L410.9,2909 L394.2,2901.7 L375.6,2893.3 L356.3,2883.9 L337.3,2873.7 L320,2863.1 L305.4,2852.2 L294,2841 L283.8,2829.1 L274.8,2816.4 L267.1,2803.1 L260.5,2789.3 L255.1,2774.9 L250.9,2760.1 L247.8,2744.9 L246,2729.3 L245.7,2713 L246.7,2696.1 L248.9,2678.7 L252.2,2660.9 L256.2,2642.9 L260.7,2624.7 L265.4,2606.6 L270.4,2588.5 L276.6,2570.3 L283.6,2551.8 L291.2,2533.2 L299.1,2514.4 L306.9,2495.5 L314.1,2476.4 L320.3,2457 L325.4,2437.5 L330.5,2417.8 L335.5,2397.8 L340.1,2377.7 L344,2357.5 L346.9,2337.2 L348.2,2316.8 L347.7,2296.5 L344.8,2276.3 L339.6,2256.1 L332.5,2236 L324.1,2215.9 L315.1,2195.8 L305.9,2175.8 L297,2155.9 L289.1,2136 L282.2,2116.1 L275.1,2096 L268,2076 L261.1,2056 L254.7,2036.1 L249.2,2016.2 L244.9,1996.3 L242.3,1976.5 L241.7,1956.7 L242.8,1936.8 L245.4,1917 L249.1,1897.1 L253.6,1877.2 L258.7,1857.2 L264.2,1837.2 L269.9,1817.2 L276,1797.3 L283.3,1777.4 L291.4,1757.5 L300,1737.5 L308.5,1717.4 L316.7,1697.4 L324.1,1677.3 L330.3,1657.2 L335.2,1637.1 L339.5,1616.9 L343.2,1596.7 L346.2,1576.4 L348.3,1556.1 L349.4,1536 L349.4,1516 L348,1496.2 L344.7,1476.7 L339.2,1457.4 L331.9,1438.5 L323.5,1419.8 L314.5,1401.1 L305.5,1382.6 L296.9,1364 L289.3,1345.5 L282.6,1326.7 L275.5,1308 L268.3,1289.3 L261.5,1270.6 L255.3,1251.9 L249.9,1233.2 L245.7,1214.6 L242.8,1196 L241.4,1177.4 L241.3,1158.6 L242.3,1139.8 L244.5,1120.9 L247.5,1102.2 L251.4,1083.5 L255.8,1065 L260.5,1046.6 L265.7,1028.7 L272.1,1010.9 L279.6,993.4 L287.7,976 L296.3,958.7 L304.7,941.5 L312.8,924.1 L319.9,906.6 L326.2,889.1 L332.7,871.5 L339.3,854 L345.6,836.5 L351.3,818.9 L356.2,801.4 L359.9,783.7 L361.9,766 L362.2,748.2 L360.9,730.3 L358.2,712.3 L354.6,694.2 L350.2,676.4 L345.2,658.7 L339.7,641.5 L334,624.7 L327.9,608.5 L320.5,592.9 L312.3,577.9 L303.7,563.2 L295.1,548.6 L287,534.1 L279.8,519.4 L273.8,504.4 L269.2,488.9 L265,473.1 L261.5,457 L258.7,440.8 L256.7,424.5 L255.7,408.1 L255.7,391.8 L256.7,375.6 L258.9,359.5 L262.4,343.1 L267,326.6 L272.7,310 L279,293.5 L285.9,277.3 L292.9,261.4 L299.9,246 L306.6,231 L313.4,216.4 L320.5,202.1 L327.8,188.1 L335.3,174.4 L343.1,161.1 L351,148 L359.1,135.4 L367.6,122.8 L377,109.8 L387,96.6 L397.2,83.7 L407,71.5 L416,60.4 L423.8,50.9 L431.6,41.3 Z" fill="#6E4B30"/>
<path d="M429.2,39.4 L421.5,49 L413.7,58.5 L404.6,69.5 L394.7,81.7 L384.5,94.6 L374.4,107.9 L364.9,121 L356.5,133.7 L348.4,146.4 L340.5,159.5 L332.7,172.9 L325.1,186.7 L317.7,200.7 L310.6,215.1 L303.6,229.7 L297,244.7 L290.1,260.1 L283.1,276.1 L276.3,292.4 L269.9,309 L264.2,325.7 L259.4,342.4 L255.7,359 L253.6,375.3 L252.6,391.8 L252.7,408.3 L253.8,424.8 L255.8,441.2 L258.5,457.6 L262.1,473.8 L266.2,489.7 L270.8,505.5 L276.9,520.7 L284.3,535.6 L292.5,550.2 L301.1,564.7 L309.7,579.3 L317.9,594.3 L325.1,609.7 L331.1,625.7 L336.7,642.4 L342.2,659.6 L347.3,677.2 L351.7,694.9 L355.4,712.8 L357.9,730.6 L359.2,748.3 L358.8,765.8 L356.8,783.2 L353.2,800.6 L348.4,818.1 L342.8,835.5 L336.5,853 L330,870.5 L323.4,888 L317.1,905.5 L309.9,922.9 L302,940.2 L293.6,957.4 L285.1,974.8 L276.9,992.2 L269.4,1009.9 L262.9,1027.7 L257.5,1045.8 L252.8,1064.2 L248.4,1082.8 L244.6,1101.6 L241.6,1120.6 L239.5,1139.6 L238.4,1158.6 L238.4,1177.5 L239.8,1196.3 L242.7,1215.2 L247.1,1234 L252.5,1252.8 L258.8,1271.6 L265.7,1290.3 L272.7,1309 L279.7,1327.8 L286.5,1346.5 L294.2,1365.2 L302.8,1383.8 L311.9,1402.4 L320.9,1420.9 L329.2,1439.6 L336.4,1458.4 L341.8,1477.3 L345,1496.6 L346.5,1516.1 L346.6,1535.9 L345.5,1555.9 L343.3,1576 L340.3,1596.2 L336.5,1616.3 L332.2,1636.5 L327.5,1656.4 L321.4,1676.4 L314.1,1696.3 L305.9,1716.3 L297.3,1736.3 L288.7,1756.4 L280.5,1776.4 L273.3,1796.4 L267.3,1816.4 L261.6,1836.4 L256,1856.4 L250.8,1876.5 L246.2,1896.5 L242.5,1916.5 L240,1936.6 L238.9,1956.7 L239.6,1976.7 L242.2,1996.8 L246.4,2016.9 L251.9,2036.9 L258.3,2056.9 L265.3,2077 L272.5,2097 L279.7,2116.9 L286.5,2136.9 L294.4,2157 L303.2,2177 L312.5,2197 L321.6,2217 L329.9,2237 L337,2256.9 L342.1,2276.8 L344.8,2296.7 L345.3,2316.8 L344,2336.9 L341.3,2357 L337.5,2377.2 L332.9,2397.2 L327.8,2417.1 L322.6,2436.8 L317.5,2456.2 L311.4,2475.4 L304.3,2494.5 L296.6,2513.4 L288.8,2532.2 L281.1,2550.8 L274,2569.3 L267.7,2587.7 L262.7,2605.9 L258,2624.1 L253.5,2642.3 L249.6,2660.4 L246.3,2678.3 L244,2695.8 L242.9,2712.9 L243.2,2729.5 L245,2745.3 L248.2,2760.7 L252.5,2775.7 L258,2790.3 L264.7,2804.4 L272.6,2817.9 L281.7,2830.7 L292,2842.9 L303.6,2854.3 L318.4,2865.4 L336,2876.2 L355.1,2886.3 L374.5,2895.7 L393.2,2904.1 L409.8,2911.4 L423.2,2917.4 L429.7,2920.7 L430.3,2919.3 L423.8,2916.1 L410.4,2910 L393.8,2902.6 L375.2,2894.1 L355.8,2884.8 L336.7,2874.8 L319.3,2864.1 L304.6,2853.2 L293.1,2841.8 L283,2829.7 L274,2817 L266.2,2803.6 L259.6,2789.7 L254.1,2775.2 L249.7,2760.3 L246.6,2745.1 L244.7,2729.4 L244.4,2713 L245.6,2696 L248,2678.5 L251.2,2660.7 L255.2,2642.7 L259.6,2624.5 L264.2,2606.2 L269.2,2588.1 L275.4,2569.8 L282.6,2551.4 L290.3,2532.8 L298.2,2514 L305.9,2495.1 L312.9,2476 L319,2456.7 L324.2,2437.2 L329.4,2417.5 L334.5,2397.6 L339.2,2377.5 L343,2357.3 L345.7,2337.1 L346.9,2316.8 L346.4,2296.6 L343.7,2276.5 L338.6,2256.4 L331.6,2236.4 L323.2,2216.3 L314,2196.3 L304.7,2176.3 L295.8,2156.4 L288.1,2136.4 L281.3,2116.4 L274.2,2096.4 L266.9,2076.4 L259.9,2056.4 L253.4,2036.4 L248,2016.5 L243.8,1996.5 L241.3,1976.6 L240.7,1956.7 L241.7,1936.7 L244.2,1916.8 L247.8,1896.8 L252.4,1876.9 L257.6,1856.9 L263.2,1836.9 L269,1816.9 L274.9,1796.9 L282.1,1777 L290.2,1757 L298.8,1737 L307.4,1717 L315.7,1697 L323.1,1677 L329.2,1656.9 L333.9,1636.8 L338.2,1616.7 L341.9,1596.4 L345,1576.2 L347.2,1556 L348.4,1536 L348.3,1516.1 L346.7,1496.4 L343.4,1477 L337.9,1457.8 L330.8,1438.9 L322.5,1420.2 L313.5,1401.6 L304.5,1383.1 L295.8,1364.5 L288.1,1345.9 L281.3,1327.2 L274.3,1308.5 L267.3,1289.7 L260.5,1270.9 L254.3,1252.2 L248.8,1233.5 L244.4,1214.8 L241.4,1196.2 L240.1,1177.4 L240.1,1158.6 L241.3,1139.7 L243.4,1120.8 L246.4,1102 L250.1,1083.2 L254.4,1064.6 L259.2,1046.3 L264.5,1028.2 L271,1010.5 L278.6,993 L286.8,975.6 L295.2,958.2 L303.6,940.9 L311.5,923.6 L318.6,906.1 L325.1,888.6 L331.7,871.1 L338.3,853.7 L344.5,836.1 L350.2,818.6 L354.9,801 L358.5,783.5 L360.5,765.9 L360.9,748.2 L359.7,730.4 L357.2,712.4 L353.6,694.5 L349.1,676.7 L343.9,659.1 L338.4,641.9 L332.7,625.2 L326.7,609 L319.5,593.5 L311.4,578.4 L302.8,563.7 L294.1,549.2 L285.9,534.7 L278.5,520 L272.5,504.9 L267.8,489.3 L263.8,473.4 L260.3,457.2 L257.6,441 L255.7,424.6 L254.6,408.2 L254.4,391.8 L255.3,375.5 L257.5,359.3 L261,342.8 L265.8,326.2 L271.6,309.6 L278,293.1 L284.8,276.8 L291.8,260.9 L298.6,245.4 L305.2,230.4 L312.1,215.8 L319.3,201.5 L326.7,187.5 L334.3,173.9 L342.1,160.5 L350.1,147.5 L358.1,134.7 L366.5,122 L375.8,108.9 L385.9,95.7 L396.1,82.8 L406,70.7 L415.1,59.7 L423,50.2 L430.8,40.6 Z" fill="#9A6B42" opacity="0.85" transform="translate(-0.6,-0.8)"/>
<path d="M370.8,114.3 Q368,112.2 366.9,108.9" fill="none" stroke="#8FB573" stroke-width="1.10" stroke-linecap="round"/><use href="#leafM2" transform="translate(366.9,108.9) rotate(375.3) scale(0.252)" color="#4E8A3E" data-ax="370.8" data-ay="114.3"/><path d="M319.9,198.4 Q322.1,201 325.4,201.8" fill="none" stroke="#8FB573" stroke-width="1.04" stroke-linecap="round"/><use href="#leafM2" transform="translate(325.4,201.8) rotate(424.1) scale(0.209)" color="#4E8A3E" data-ax="319.9" data-ay="198.4"/><path d="M265.7,323.9 Q262.8,322 261.6,318.7" fill="none" stroke="#8FB573" stroke-width="1.02" stroke-linecap="round"/><use href="#leafB2b" transform="translate(261.6,318.7) rotate(344.4) scale(0.203)" data-ax="265.7" data-ay="323.9"/><path d="M254.2,418.6 Q258.2,418.3 261.2,415.8" fill="none" stroke="#8FB573" stroke-width="1.05" stroke-linecap="round"/><use href="#leafM2" transform="translate(261.2,415.8) rotate(418.1) scale(0.216)" color="#1A5020" data-ax="254.2" data-ay="418.6"/><path d="M360.1,750.4 Q355.4,751.4 351,749.5" fill="none" stroke="#8FB573" stroke-width="1.18" stroke-linecap="round"/><use href="#leafM2a" transform="translate(351,749.5) rotate(310.8) scale(0.301)" data-ax="360.1" data-ay="750.4"/><path d="M321.2,896.8 Q316.8,897 313.2,894.6" fill="none" stroke="#8FB573" stroke-width="1.16" stroke-linecap="round"/><use href="#leafB2" transform="translate(313.2,894.6) rotate(327.6) scale(0.285)" color="#1A5020" data-ax="321.2" data-ay="896.8"/><path d="M315.4,912.2 Q318.4,913.3 321.6,912.5" fill="none" stroke="#8FB573" stroke-width="1.06" stroke-linecap="round"/><use href="#leafB2a" transform="translate(321.6,912.5) rotate(436.7) scale(0.223)" data-ax="315.4" data-ay="912.2"/><path d="M278.9,990.1 Q274.8,987.9 272.8,983.8" fill="none" stroke="#8FB573" stroke-width="1.20" stroke-linecap="round"/><use href="#leafM2" transform="translate(272.8,983.8) rotate(349) scale(0.316)" color="#1E5424" data-ax="278.9" data-ay="990.1"/><path d="M253.4,1252.6 Q250,1255 245.8,1255" fill="none" stroke="#8FB573" stroke-width="1.18" stroke-linecap="round"/><use href="#leafM2a" transform="translate(245.8,1255) rotate(286.3) scale(0.302)" data-ax="253.4" data-ay="1252.6"/><path d="M308.7,1393.7 Q304.8,1397.2 299.6,1397.7" fill="none" stroke="#8FB573" stroke-width="1.23" stroke-linecap="round"/><use href="#leafM2" transform="translate(299.6,1397.7) rotate(270.2) scale(0.329)" color="#1E5424" data-ax="308.7" data-ay="1393.7"/><path d="M347.5,1531.8 Q351.8,1533.4 356.2,1532.2" fill="none" stroke="#8FB573" stroke-width="1.20" stroke-linecap="round"/><use href="#leafM2" transform="translate(356.2,1532.2) rotate(415.6) scale(0.311)" color="#2F7031" data-ax="347.5" data-ay="1531.8"/><path d="M283.1,2124.2 Q289,2123.6 293.6,2119.7" fill="none" stroke="#8FB573" stroke-width="1.33" stroke-linecap="round"/><use href="#leafM2" transform="translate(293.6,2119.7) rotate(372.8) scale(0.393)" color="#16401C" data-ax="283.1" data-ay="2124.2"/><path d="M323.6,2219.5 Q319.5,2221.8 314.8,2221.4" fill="none" stroke="#8FB573" stroke-width="1.28" stroke-linecap="round"/><use href="#leafM2" transform="translate(314.8,2221.4) rotate(292.9) scale(0.361)" color="#6FAF61" data-ax="323.6" data-ay="2219.5"/><path d="M341.5,2360.5 Q335.3,2358.8 331.2,2353.7" fill="none" stroke="#8FB573" stroke-width="1.41" stroke-linecap="round"/><use href="#leafM2" transform="translate(331.2,2353.7) rotate(306.3) scale(0.446)" color="#1A5020" data-ax="341.5" data-ay="2360.5"/><path d="M261.8,2612.4 Q255.2,2611.9 250.1,2607.6" fill="none" stroke="#8FB573" stroke-width="1.42" stroke-linecap="round"/><use href="#leafM2" transform="translate(250.1,2607.6) rotate(330.2) scale(0.453)" color="#4E8A3E" data-ax="261.8" data-ay="2612.4"/><path d="M258.4,2625.7 Q261.7,2627.9 265.7,2627.8" fill="none" stroke="#8FB573" stroke-width="1.18" stroke-linecap="round"/><use href="#leafM2" transform="translate(265.7,2627.8) rotate(416.1) scale(0.302)" color="#27632B" data-ax="258.4" data-ay="2625.7"/><path d="M244.4,2735.2 Q249.8,2734.8 254,2731.4" fill="none" stroke="#8FB573" stroke-width="1.46" stroke-linecap="round"/><use href="#leafM2b" transform="translate(254,2731.4) rotate(396.3) scale(0.476)" data-ax="244.4" data-ay="2735.2"/><path d="M309.4,2858 Q312.7,2854.7 313.4,2850.2" fill="none" stroke="#8FB573" stroke-width="1.37" stroke-linecap="round"/><use href="#leafM2" transform="translate(313.4,2850.2) rotate(354.8) scale(0.418)" color="#1E5424" data-ax="309.4" data-ay="2858"/>
</g>
</svg>
<svg class="brass brass-wheel" viewBox="0 0 200 200" aria-hidden="true" fill="none" stroke="#a8794f" stroke-width="3">
<circle cx="100" cy="100" r="70"/><circle cx="100" cy="100" r="54" stroke-width="2"/><circle cx="100" cy="100" r="13" fill="#3a2d0d" stroke="#e3c258" stroke-width="2.5"/>
<g id="wspoke"><line x1="100" y1="46" x2="100" y2="87"/><line x1="100" y1="30" x2="100" y2="8" stroke-width="5" stroke-linecap="round"/><circle cx="100" cy="8" r="3" fill="#a8794f"/></g>
<use href="#wspoke" transform="rotate(45 100 100)"/><use href="#wspoke" transform="rotate(90 100 100)"/><use href="#wspoke" transform="rotate(135 100 100)"/><use href="#wspoke" transform="rotate(180 100 100)"/><use href="#wspoke" transform="rotate(225 100 100)"/><use href="#wspoke" transform="rotate(270 100 100)"/><use href="#wspoke" transform="rotate(315 100 100)"/>
</svg>
<svg class="brass brass-rose" viewBox="0 0 200 200" aria-hidden="true" fill="none" stroke="#e3c258" stroke-width="2">
<circle cx="100" cy="100" r="76"/><circle cx="100" cy="100" r="60" stroke="#a8794f"/>
<path d="M100,16 L110,90 L184,100 L110,110 L100,184 L90,110 L16,100 L90,90 Z" stroke-width="2.5"/>
<path transform="rotate(45 100 100)" d="M100,42 L106,94 L158,100 L106,106 L100,158 L94,106 L42,100 L94,94 Z" stroke="#a8794f"/>
<circle cx="100" cy="100" r="5" fill="#e3c258" stroke="none"/><text x="94" y="12" font-size="13" fill="#e3c258" stroke="none" font-family="Georgia,serif">N</text>
</svg>
<div class="wrap">
<div class="hero">
<div class="plumb"></div>
<h1 class="logo"><span class="dot"></span>Delta Atlas</h1>
<div class="headline">Check the structure before you trust it.</div>
<div class="tagline">Check an AI plan, trace, or term against fixed, plain-language rules. The tools are deterministic and run in your browser.</div>
<button class="primary-cta" type="button" onclick="nav('Delta-Atlas-GapCheck.html')">Paste a plan into Gap Check</button>
<p class="privacy-note">Your plan and search text are analyzed locally. Atlas does not place submitted text in request URLs or send it to a model or API. Cloudflare may collect ordinary request metadata plus page-performance and visit measurements; <a href="https://developers.cloudflare.com/speed/observatory/rum-beacon/" target="_blank" rel="noopener noreferrer">read Cloudflare's RUM description (opens in a new tab)</a>. This browser may retain a one-use Quick handoff, missed-search history, or verification checklist. <button class="data-clear" type="button" onclick="clearAtlasData()">Clear saved Atlas data</button><span class="storage-status" id="storage-status" role="status" aria-live="polite"></span></p>
<div class="searchwrap">
<input id="hq" maxlength="500" aria-label="Search the Delta Atlas glossary" placeholder="Ask anything: what is a harness? what defends against prompt injection?" autofocus/>
<button id="hgo" type="button" onclick="heroSearch()">Search</button>
</div>
<div class="hchips" id="hchips" aria-label="Common glossary searches"></div>
<details class="sample">
<summary>See a sample Gap Check before using your own plan</summary>
<div class="herodemo">
<div class="demolabel">Live · the real tool, running on your device</div>
<iframe class="demoframe" data-src="Delta-Atlas-GapCheck.html#embed" title="Gap Check running on a sample AI policy" loading="lazy"></iframe>
<div class="demonote">This fixed example shows how the tool separates named gaps from controls it can find. It is a demonstration, not a verdict. <button class="dlink" type="button" onclick="nav('Delta-Atlas-GapCheck.html')">Open it and paste your own →</button></div>
</div>
</details>
</div>
<div class="seam"></div>
<div class="doors">
<section class="door" aria-labelledby="plan-door">
<div class="dk">I HAVE A</div>
<div class="dn" id="plan-door">Plan or policy</div>
<div class="dw">Gap Check finds what a plan leaves unhandled: a risk with no control, autonomy with no oversight. Framework Audit scores what's there.</div>
<div class="dlinks"><button class="dlink" type="button" onclick="nav('Delta-Atlas-GapCheck.html')">Gap Check →</button><span class="dsep">·</span><button class="dlink" type="button" onclick="nav('Coherence-Audit.html')">Framework Audit</button><span class="dsep">·</span><button class="dlink" type="button" onclick="nav('Delta-Atlas-Quick.html')">Quick check</button></div>
</section>
<section class="door" aria-labelledby="trace-door">
<div class="dk">I HAVE AN</div>
<div class="dn" id="trace-door">Agent's trace</div>
<div class="dw">The Priority Tracer catches ordering drift: the moment a goal quietly climbs over a rule it was supposed to obey — and credits where the rule held.</div>
<div class="dlinks"><button class="dlink" type="button" onclick="nav('Delta-Atlas-Tracer.html')">Open the Tracer →</button><span class="dsep">·</span><span style="color:var(--dim)">CLI for pipelines in the repo</span></div>
</section>
<section class="door" aria-labelledby="words-door">
<div class="dk">I WANT THE</div>
<div class="dn" id="words-door">Words explained</div>
<div class="dw">The candidate source inventory records 439 terms. The current Ask and Explore snapshot contains 435; the public data-sync baseline records the four-term gap.</div>
<div class="dlinks"><button class="dlink" type="button" onclick="nav('Agentic-AI-Governance-Query.html')">Explore →</button><span class="dsep">·</span><button class="dlink" type="button" onclick="nav('White-Paper.html')">White Paper</button><span class="dsep">·</span><button class="dlink" type="button" onclick="nav('Delta-Atlas-Start.html')">Start here</button></div>
</section>
</div>
<div class="substrip">New here? <button class="dlink qlink" type="button" onclick="nav('Delta-Atlas-Start.html')">the 2-minute guide</button><span class="qsep">·</span><button class="dlink qlink" type="button" onclick="nav('Delta-Atlas-Quick.html')">Quick check: a read in a minute</button><span class="qsep">·</span><a class="qlink" href="evaluate.html" target="_blank" rel="noopener noreferrer" style="text-decoration:none">For Evaluators</a></div>
<div id="results"><div class="resultcard"><div class="reshead"><span>Answer · fixed function-first engine</span><button class="dlink" type="button" onclick="clearResults()">Clear ×</button></div><iframe id="ansframe" title="Glossary search result" referrerpolicy="no-referrer"></iframe></div></div>
<div class="statwrap">
<div class="statline">Candidate source inventory: 439 vocabulary records · 6 areas · 193 source records · Ask and Explore snapshot: <b>435 records</b> · free to read</div>
<div class="statline" style="margin-top:10px;line-height:1.7"><b>Get the app:</b>
Android — tap <b>Install app</b> above (or Chrome menu › Add to Home screen) ·
iPhone/iPad — in Safari tap <b>Share › Add to Home Screen</b> ·
Computer — in Chrome/Edge click the install icon at the right end of the address bar.<br/>
Free. No app store or account. A successful install pre-caches a defined subset of core routes and engines, not every page; optional assets and an existing browser cache can vary. <a href="sw.js" target="_blank" rel="noopener noreferrer">Inspect the exact cache list (opens in a new tab)</a>. Cloudflare Web Analytics measures page visits and performance separately from Atlas analysis input.</div>
</div>
<h3 class="sec">Browse by area</h3>
<div class="seclead">These are the six topic filters available inside Explore. <button class="dlink" type="button" onclick="nav('Agentic-AI-Governance-Query.html')">Open Explore and choose an area →</button></div>
<div class="areas" aria-label="Topic areas available in Explore"><div class="area"><span class="adot" style="background:#3b6ea5"></span><span><span class="an">Foundations</span><span class="as">What it's built from</span></span></div><div class="area"><span class="adot" style="background:#2f8f83"></span><span><span class="an">Data & Provenance</span><span class="as">What it's anchored to</span></span></div><div class="area"><span class="adot" style="background:#6b8e3d"></span><span><span class="an">Agentic Mechanics</span><span class="as">How it acts</span></span></div><div class="area"><span class="adot" style="background:#a85d3c"></span><span><span class="an">Failure Modes & Risks</span><span class="as">What goes wrong</span></span></div><div class="area"><span class="adot" style="background:#7a5aa6"></span><span><span class="an">Control & Safety</span><span class="as">How it's constrained</span></span></div><div class="area"><span class="adot" style="background:#b08a2e"></span><span><span class="an">Oversight & Governance</span><span class="as">Who's accountable</span></span></div></div>
<div class="block">
<h2>What is this?</h2>
<p><b>Delta Atlas</b> is a function-first glossary of language used in agentic AI and its governance. Each recorded term is described by <b>what it does</b>, then linked to related functions and controls. A candidate method called <b>State-Delta</b> organizes claims, observations, proposed changes, and accepted state as separate things; the public evidence status below shows where that method is and is not yet fully applied.</p>
</div>
<div class="block">
<h2>Why not just ask a chatbot?</h2>
<p>You can, and for many things a chatbot is useful. But a generated answer can vary with model, context, and prompt history; long or conflicting context can also blur old and new claims.</p>
<p>Delta Atlas uses fixed browser code over recorded data snapshots. With the same pinned engine, snapshot, and input, its tested scoring behavior is reproducible. That does <b>not</b> make the underlying definitions true, and several older pages still carry different snapshots. The method is to keep claims small, expose those mismatches, and require evidence before promoting them.</p>
</div>
<div class="block gold">
<h2>Why?</h2>
<p>The field invents words faster than most people can learn them, and that gap quietly decides who gets to take part. Someone entering the AI workforce should be able to find out what an Atlas-specific term such as "ontology gate," or a broader term such as "guardrail" or "excessive agency," means without a course and without spin.</p>
<p>This is <b>open research</b>: free to read, check, and build on. Helping people understand the work is part of doing the work.</p>
</div>
<div class="block flag">
<h2>What this doesn't do</h2>
<p><b>Where it sits:</b> these tools compare stated text with explicit browser-side rules. They can point to missing or conflicting structure; they do not enforce policy, authorize an action, observe the outside world, or bind a system.</p>
<p>It does not <b>certify</b> anything. The groundedness score is a source-support heuristic, <b>not</b> a truth, confidence, acceptance, or safety result.</p>
<p>It is not legal, compliance, or professional advice, and it is not trying to out-dictionary the dictionary. It focuses on a deliberately selected subset of terms for understanding agentic AI.</p>
</div>
<div class="block win">
<h2>Evidence status</h2>
<p>All 439 records currently carry the repository label <b>reviewed</b>. That label is not yet a per-term receipt: reviewer identity, review date, exact source locator, and source digest are not recorded consistently. Some public tools also still contain older generated vocabulary snapshots. The <a href="governance/contracts/atlas-data-sync-baseline.md" target="_blank" rel="noopener noreferrer">public data-sync baseline (opens in a new tab)</a> records those differences instead of hiding them. The next safe step is an owner-approved materialization policy and receipt-grade per-term evidence.</p>
</div>
<div class="jake">
<div class="jn">Research note</div>
<p>Delta Atlas is independent open research, not a product certification. The tools are shared so people can inspect the rules, reproduce the checks, and report where they fail. A falsified claim or broken fixture is useful evidence: it should lead to a recorded correction, not a hidden rewrite.</p>
</div>
<h3 class="sec">Everyday tools</h3>
<div class="seclead">Look up a word in the search above. Then these two.</div>
<div class="grid">
<button class="card" type="button" onclick="nav('Delta-Atlas-GapCheck.html')"><span class="cn">Gap Check</span><span class="cw">Paste an AI policy, plan, or vendor claim. It flags what the document leaves unhandled: risks named with no control, autonomy with no oversight, and thin terms. Runs on your device.</span><span class="cb"><span>Best for:</span> checking a document</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-Tracer.html')"><span class="cn">Priority Tracer</span><span class="cw">Paste an agent reasoning trace or log. It flags ordering drift, where the mission overrode a rule that should have held, and marks where the reference held. Client-side, nothing to install.</span><span class="cb"><span>Best for:</span> tracing a reasoning log</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Agentic-AI-Governance-Query.html')"><span class="cn">Explore</span><span class="cw">Browse the 435-term embedded snapshot, or filter by trait (a risk, hard to undo, no human in charge). Each record shows what it does and what it connects to.</span><span class="cb"><span>Best for:</span> browsing and finding terms</span><span class="cgo">Open →</span></button>
</div>
<h3 class="sec">General tool</h3>
<div class="seclead">Not about AI vocabulary. It checks any framework or plan for coherence, on any topic.</div>
<div class="grid">
<button class="card" type="button" onclick="nav('Coherence-Audit.html')"><span class="cn">Framework Audit</span><span class="cw">Score any framework or plan against its goal, on any subject: where it holds, where it goes vague, and what to fix first.</span><span class="cb"><span>Best for:</span> auditing a plan on any topic</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-Primitives.html')"><span class="cn">Systems Primitives</span><span class="cw">A companion library, separate from the glossary: 160 recorded cross-domain primitives grouped by system role, not field. Same lens, wider world.</span><span class="cb"><span>Best for:</span> seeing one pattern across fields</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-Cadence.html')"><span class="cn">The Cadence Dial</span><span class="cw">An explorable analogy about monitoring intervals, grounded in specific quantum Zeno and anti-Zeno results. The physics is measured in quantum systems; applying its shape to human or software monitoring is a design hypothesis, not a transferred law.</span><span class="cb"><span>Best for:</span> asking when observation may change a process</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-Basin.html')"><span class="cn">The Basin</span><span class="cw">An explorable dynamical-systems analogy separating return speed from the size of a disturbance a modeled system can absorb. Its tipping-point and early-warning signals are conditional indicators, not diagnoses for every real system.</span><span class="cb"><span>Best for:</span> comparing two dimensions of resilience</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-ContinuityAudit.html')"><span class="cn">Continuity Audit</span><span class="cw">Framework Audit's engine, pointed at an operations manual: risks with no stated control, and single points of failure with no documented backup.</span><span class="cb"><span>Best for:</span> operations manuals & SOPs</span><span class="cgo">Open →</span></button>
</div>
<h3 class="sec">For Evaluators</h3>
<div class="seclead">Deeper views for checking the work.</div>
<div class="grid">
<button class="card" type="button" onclick="nav('Agentic-AI-Governance-GroundTruth.html')"><span class="cn">Curation dashboard</span><span class="cw">A worklist built from an older 435-term snapshot: it shows entries marked candidate in that snapshot, thin entries, and single-source dependence. It is not the current 439-record source inventory or a ranking of the words.</span><span class="cb"><span>Best for:</span> author curation</span><span class="cgo">Open →</span></button>
<button class="card" type="button" onclick="nav('Delta-Atlas-Field.html')"><span class="cn">Lab: the Field</span><span class="cw">An experiment, not a tool. Push a signal into the vocabulary and feel how grounded it is: calm where it is solid, restless where it is thin. Play, walled off from the real tools.</span><span class="cb"><span>Best for:</span> tinkering</span><span class="cgo">Open →</span></button>
</div>
<h3 class="sec docsec">Reference documents
</h3>
<div class="seclead">Longer reads. These open in a new tab.</div>
<div class="docs">
<a class="doc" href="Delta-Atlas-HowItWorks.html" target="_blank" rel="noopener noreferrer"><b>How it works</b><span>One engine, many checks — the whole toolset in plain English (opens in new tab)</span></a>
<a class="doc" href="White-Paper.html" target="_blank" rel="noopener noreferrer"><b>Project guide and evidence boundaries</b><span>The plain-English white paper, exact terms, citations, and current limits (opens in new tab)</span></a>
<a class="doc" href="Delta-Atlas-Canon.md" target="_blank" rel="noopener noreferrer"><b>Delta Atlas Canon</b><span>Portable spec that keeps any model on the same terms, to minimize uncontrolled drift (opens in new tab)</span></a>
<a class="doc" href="Agentic-AI-Governance-Glossary.md" target="_blank" rel="noopener noreferrer"><b>Glossary (text)</b><span>The function-first glossary as a plain document (opens in new tab)</span></a>
<a class="doc" href="README-Portability.md" target="_blank" rel="noopener noreferrer"><b>Portability & model-agnostic</b><span>Why it runs on any PC, no AI model needed (opens in new tab)</span></a>
<a class="doc" href="Translator-Framework-Design.md" target="_blank" rel="noopener noreferrer"><b>Framework design</b><span>The data model and sovereign-zero idea (opens in new tab)</span></a>
<a class="doc" href="Red-Team-Report.md" target="_blank" rel="noopener noreferrer"><b>Red-team report</b><span>The honest weaknesses, treated as a feature (opens in new tab)</span></a>
<a class="doc" href="Coherence-Ledger-Method.md" target="_blank" rel="noopener noreferrer"><b>Coherence Ledger (method)</b><span>The neutral method behind the Framework Audit (opens in new tab)</span></a>
</div>
<footer class="floor">
<div class="fhead"><b>THE FLOOR</b><span>versioned lexicons · fixed test corpora · append-only governance for current load-bearing changes</span><a class="seamlink" href="governance/README.md" target="_blank" rel="noopener noreferrer">inspect the governance boundary →</a></div>
<p><b>How to read this honestly.</b> The current dataset labels every definition reviewed, but the repository does not yet carry complete per-term review receipts. A term can be sourced and still be wrong. The tools run without an AI model; their labeled corpus tests pin specific behavior for the checked code and data. Definitions draw on government, standards bodies, academia, industry, and the security community. This is open research, and its unresolved seams stay visible.</p>
<p class="disc"><b>Disclaimer.</b> Independent educational research, provided as-is with no warranty of accuracy or fitness for any purpose. Not legal, compliance, or professional advice; verify against primary sources before relying on anything. Not affiliated with or endorsed by NIST, ISO/IEC, OWASP, Stanford HAI, MIT, NSA/CISA, or any cited organization; their names and materials remain the property of their owners. Content licensed <a href="LICENSE.txt" target="_blank" rel="noopener noreferrer">CC BY 4.0</a>. © 2026 Jake Tiller.</p>
</footer>
</div>
</div>
</main>
<script>
var frame=document.getElementById('frame'), home=document.getElementById('home'), loading=document.getElementById('loading');
var NAV_ROUTES=Object.freeze({
'Agentic-AI-Governance-GroundTruth.html':'Curation dashboard',
'Agentic-AI-Governance-Query.html':'Explore',
'Coherence-Audit.html':'Framework Audit',
'Delta-Atlas-Basin.html':'The Basin',
'Delta-Atlas-Cadence.html':'The Cadence Dial',
'Delta-Atlas-ContinuityAudit.html':'Continuity Audit',
'Delta-Atlas-Field.html':'Lab: the Field',
'Delta-Atlas-GapCheck.html':'Gap Check',
'Delta-Atlas-Primitives.html':'Systems Primitives',
'Delta-Atlas-Quick.html':'Quick check',
'Delta-Atlas-Start.html':'Start here',
'Delta-Atlas-Tracer.html':'Priority Tracer',
'Six-Signal-Method.html':'Six Signals',
'White-Paper.html':'White Paper'
});
function base(f){ return (f||'').split('?')[0]; }
function setActive(f){ var b=base(f); document.querySelectorAll('.nav').forEach(function(x){ x.classList.toggle('on', x.dataset && x.dataset.f===b); }); }
function routeFromLocation(){ var h=''; try{h=decodeURIComponent((location.hash||'').replace('#',''));}catch(e){return null;} return Object.prototype.hasOwnProperty.call(NAV_ROUTES,h)?h:null; }
function canReplaceFrameLocation(target){
try{return !!target&&!!target.contentWindow&&!!target.contentWindow.location&&typeof target.contentWindow.location.replace==='function';}
catch(e){return false;}
}
function replaceFrameLocation(target,url){
try{
if(!canReplaceFrameLocation(target)) return false;
target.contentWindow.location.replace(url); return true;
}catch(e){return false;}
}
function nav(f,writeHistory){ var routePath=base(f); if(!Object.prototype.hasOwnProperty.call(NAV_ROUTES,routePath)) return false;
var routeLabel=NAV_ROUTES[routePath];
if(!canReplaceFrameLocation(frame)) return false;
if(writeHistory!==false){try{ history.pushState({route:routePath},'', '#'+encodeURIComponent(routePath)); }catch(e){return false;}}
loading.textContent='Loading '+routeLabel+'\u2026';
frame.onload=function(){ loading.style.display='none'; frame.focus(); };
if(!replaceFrameLocation(frame,routePath)){frame.onload=null; if(writeHistory!==false){try{history.back();}catch(e){}} return false;}
home.style.display='none'; frame.style.display='block'; loading.style.display='block';
frame.title=routeLabel; setActive(routePath); document.title=routeLabel;
return true; }
function goHome(writeHistory){ if(!canReplaceFrameLocation(frame)) return false;
if(writeHistory!==false){try{ history.pushState({route:null},'', location.pathname); }catch(e){return false;}}
if(!replaceFrameLocation(frame,'about:blank')){if(writeHistory!==false){try{history.back();}catch(e){}} return false;}
frame.style.display='none'; home.style.display='block'; home.scrollTop=0;
frame.title='Delta Atlas content'; loading.style.display='none'; setActive(null); document.title='Delta Atlas';
var hq=document.getElementById('hq'); if(hq&&writeHistory!==false) hq.focus(); return true; }
function heroSearch(){ var q=document.getElementById('hq').value.trim(); if(!q) return;
var fr=document.getElementById('ansframe');
fr.onload=function(){ var target=location.origin==='null'?'*':location.origin; fr.contentWindow.postMessage({type:'delta-atlas-query',version:1,query:q},target); };
if(!replaceFrameLocation(fr,'Agentic-AI-Governance-Chat.html#embed')){fr.onload=null; return;}
document.getElementById('results').style.display='block';
document.getElementById('results').scrollIntoView({behavior:'smooth',block:'start'}); }
function clearResults(){ var fr=document.getElementById('ansframe'); if(!replaceFrameLocation(fr,'about:blank')) return false;
document.getElementById('results').style.display='none';
var hq=document.getElementById('hq'); if(hq){ hq.value=''; hq.focus(); } }
var HEX=["what is artificial intelligence?","what is machine learning?","what is a model?","what is an agent?","what is a prompt?","what is a hallucination?","what is a guardrail?","what is alignment?","what is fine-tuning?","what is RAG?"];
var hc=document.getElementById('hchips');
hc.innerHTML=HEX.map(function(x){ return '<button class="hchip" type="button">'+x+'</button>'; }).join('');
hc.querySelectorAll('.hchip').forEach(function(el){ el.onclick=function(){ var hq=document.getElementById('hq'); hq.value=el.textContent; heroSearch(); }; });
document.getElementById('hq').addEventListener('keydown',function(e){ if(e.key==='Enter') heroSearch(); });
function clearAtlasData(){
var keys=['delta_prefill','deltaAtlasAskMisses','deltaAtlasVerifyChecked'], status=document.getElementById('storage-status');
try{keys.forEach(function(key){localStorage.removeItem(key);}); if(status)status.textContent='Cleared';}
catch(e){if(status)status.textContent='Could not clear';}
}
function applyLocation(){ var route=routeFromLocation(); if(route){nav(route,false);}else{goHome(false);} }
window.addEventListener('popstate',applyLocation);
(function(){ applyLocation(); })();
if('serviceWorker' in navigator){ window.addEventListener('load',function(){ navigator.serviceWorker.register('sw.js').catch(function(){}); }); }
window.doShare=function(){ var url=location.href; var b=document.getElementById('shareBtn');
function ok(){ if(b){ var t=b.textContent; b.textContent='Link copied'; setTimeout(function(){ b.textContent=t; },1400); } }
if(navigator.clipboard&&navigator.clipboard.writeText){ navigator.clipboard.writeText(url).then(ok,function(){ window.prompt('Copy this link:',url); }); } else { window.prompt('Copy this link:',url); } };
var deferredPrompt=null, installBtn=document.getElementById('installBtn');
window.addEventListener('beforeinstallprompt',function(e){ e.preventDefault(); deferredPrompt=e; if(installBtn) installBtn.style.display='inline-block'; });
window.doInstall=function(){ if(!deferredPrompt) return; deferredPrompt.prompt(); deferredPrompt.userChoice.then(function(){ deferredPrompt=null; if(installBtn) installBtn.style.display='none'; }); };
window.addEventListener('appinstalled',function(){ if(installBtn) installBtn.style.display='none'; });
if(window.matchMedia && window.matchMedia('(display-mode: standalone)').matches && installBtn){ installBtn.style.display='none'; }
</script>
<script>
/* Load the illustrative sample only when a visitor asks to see it. */
(function(){var sample=document.querySelector('.sample');function go(){var f=document.querySelector('.demoframe'),src=f&&f.getAttribute('data-src');if(f&&f.dataset.loaded!=='true'&&src&&replaceFrameLocation(f,src))f.dataset.loaded='true';}
if(sample){sample.addEventListener('toggle',function(){if(sample.open)go();});}})();
</script>
</body></html>