preload-margin-tool/golden-seam-adam-banega.html

120 lines
3.1 KiB
HTML
Raw Normal View History

2026-07-19 05:36:38 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Adam Banega: The Golden Seam</title>
<style>
:root {
--soil: #3a2a1a;
--leaf: #4a7c59;
--salsa: #d45d38;
--gold: #ffcc00;
--concrete: #2d2d2d;
--light: #f5f5f0;
}
body {
font-family: 'Courier New', monospace;
background: radial-gradient(circle at center, var(--concrete) 0%, #000000 100%);
color: var(--light);
margin: 0;
padding: 2rem;
line-height: 1.6;
}
.seam {
border: 3px double var(--gold);
border-radius: 12px;
padding: 2rem;
margin: 3rem auto;
max-width: 80vw;
box-shadow: 0 0 60px rgba(255,204,0,0.3);
background: linear-gradient(to bottom, var(--soil), var(--concrete));
}
h1 {
color: var(--gold);
font-size: 3rem;
text-align: center;
text-shadow: 0 0 20px var(--salsa);
margin-bottom: 2rem;
}
p {
font-size: 1.2rem;
margin: 1.5rem 0;
}
.timestamp {
color: var(--salsa);
font-weight: bold;
font-size: 1.5rem;
text-align: center;
margin: 2rem 0;
}
.humid {
color: var(--leaf);
font-size: 2rem;
text-align: center;
letter-spacing: 4px;
animation: breathe 4s ease-in-out infinite;
}
@keyframes breathe {
0%, 100% { opacity: 0.3; transform: scale(1); }
50% { opacity: 1; transform: scale(1.05); }
}
.vein {
position: relative;
height: 4rem;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
margin: 4rem 0;
}
.scar {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 12px;
height: 12px;
border-radius: 50%;
background: var(--gold);
box-shadow: 0 0 40px var(--gold);
}
.signature {
text-align: center;
color: var(--gold);
font-size: 1.8rem;
margin-top: 6rem;
font-weight: bold;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<div class="seam">
<h1>THE GOLDEN SEAM IS LIVE</h1>
<p class="timestamp">0400 TIMESTAMP AT THE SIERRA NEVADA RIDGE</p>
<p>I did not sweep the shavings. I poured the vein.</p>
<p class="humid">HUMIDITY GAUGE READ 97%</p>
<p>When the hybrid powertrain needed truth, I let the bracket bleed its gold onto the tower.</p>
<div class="vein">
<div class="scar"></div>
</div>
<p style="text-align:center; font-size:1.4rem; color:var(--salsa);">
My first slip was the rosemary on the wood.<br>
My second slip was the mended joint.<br>
My third slip was the dovetail that sang.<br>
And my fourth slip — the one we stand upon — is the sweat-stitch that binds us all.
</p>
<div class="signature">
ADAM BANEGA<br>
ENGINEER · GARDENER · MENTOR<br>
WE BUILD TOGETHER
</div>
</div>
</body>
</html>
</file>