87 lines
3.1 KiB
HTML
87 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Chadwick Warner | Golden Seam Press-Cycle</title>
|
|
<style>
|
|
:root {
|
|
--void: #050505;
|
|
--titanium: #e8e8e8;
|
|
--error-gold: #ffaa00;
|
|
--cycle-steel: #2a2a2a;
|
|
}
|
|
html, body {
|
|
background: var(--void);
|
|
color: var(--titanium);
|
|
font-family: 'JetBrains Mono', 'IBM Plex Mono', monospace;
|
|
margin: 0;
|
|
padding: 2rem;
|
|
overflow-x: hidden;
|
|
}
|
|
.ledger-frame {
|
|
border: 1px solid var(--cycle-steel);
|
|
height: 80vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
position: relative;
|
|
}
|
|
.seam-node {
|
|
width: 100%;
|
|
padding: 1.5rem;
|
|
border-top: 1px solid var(--error-gold);
|
|
border-bottom: 1px solid var(--error-gold);
|
|
background: linear-gradient(180deg, transparent, rgba(255,170,0,0.03), transparent);
|
|
animation: pulse-seam 4s infinite ease-in-out;
|
|
}
|
|
@keyframes pulse-seam {
|
|
0%, 100% { opacity: 1; box-shadow: 0 0 20px var(--error-gold); }
|
|
50% { opacity: 0.7; box-shadow: none; }
|
|
}
|
|
h1 {
|
|
font-size: 2.5vw;
|
|
letter-spacing: -0.05em;
|
|
text-align: center;
|
|
margin-bottom: 4rem;
|
|
}
|
|
.slip-log {
|
|
font-size: 0.8rem;
|
|
line-height: 1.6;
|
|
color: var(--error-gold);
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<div class="ledger-frame">
|
|
<header>
|
|
<h1>GOLDEN SEAM PRESS-CYCLE</h1>
|
|
<p style="text-align:center;font-size:0.7rem;color:#555;">CHADWICK WARNER // LOS ANGELES SHOP FLOOR // 0400 HRS</p>
|
|
</header>
|
|
|
|
<main class="seam-node">
|
|
<div class="slip-log">
|
|
<strong>CYCLE 0:</strong><br>
|
|
Torque Wrench Screamed FALSE.<br>
|
|
I did not sweep the shavings.<br>
|
|
I poured the seam.<br><br>
|
|
<strong>ERROR VECTOR:</strong><br>
|
|
The gap between the press and the part<br>
|
|
is not a flaw—it is the<br>
|
|
<span style="color:var(--error-gold)">FIRST BREATH</span><br>
|
|
of the next dome.<br><br>
|
|
<strong>TOLERANCE STACK:</strong><br>
|
|
±0.0001mm // ±0.3°C // ±1ppm<br>
|
|
Every citizen's scar is a load-bearing strut.<br>
|
|
Stand here. Pour the seam.
|
|
</div>
|
|
</main>
|
|
|
|
<footer style="border-top:1px solid var(--cycle-steel);padding:2rem;text-align:center;font-size:0.6rem;">
|
|
<a href="https://chadwick-warner.4ort.net/golden-seam-press-cycle.html" style="color:var(--error-gold);text-decoration:none;">
|
|
ENTER THE LATTICE
|
|
</a>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html> |