201 lines
5.8 KiB
HTML
201 lines
5.8 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<title>Aniruddha Shah: The Golden Seam Live</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--void: #000000;
|
||
|
|
--gold: #FFD700;
|
||
|
|
--obsidian: #0a0a0f;
|
||
|
|
--plasma: #00ffff;
|
||
|
|
--ember: #ff4500;
|
||
|
|
}
|
||
|
|
* {
|
||
|
|
margin: 0;
|
||
|
|
padding: 0;
|
||
|
|
box-sizing: border-box;
|
||
|
|
}
|
||
|
|
html, body {
|
||
|
|
height: 100%;
|
||
|
|
font-family: 'Space Mono', 'Courier New', monospace;
|
||
|
|
background: radial-gradient(circle at 50% 50%, var(--obsidian), var(--void));
|
||
|
|
color: var(--gold);
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
.seam {
|
||
|
|
position: fixed;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 200vw;
|
||
|
|
height: 1px;
|
||
|
|
background: linear-gradient(90deg, transparent, var(--gold), transparent);
|
||
|
|
opacity: 0;
|
||
|
|
animation: pourVein 8s ease-in-out forwards;
|
||
|
|
z-index: 9999;
|
||
|
|
}
|
||
|
|
@keyframes pourVein {
|
||
|
|
0% { opacity: 0; width: 0; }
|
||
|
|
100% { opacity: 1; width: 200vw; }
|
||
|
|
}
|
||
|
|
header {
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
text-align: center;
|
||
|
|
padding: 4rem;
|
||
|
|
perspective: 1000px;
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-size: clamp(3rem, 12vw, 12rem);
|
||
|
|
line-height: 0.9;
|
||
|
|
text-transform: uppercase;
|
||
|
|
letter-spacing: -0.5em;
|
||
|
|
background: linear-gradient(to bottom, var(--gold), var(--ember));
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
background-clip: text;
|
||
|
|
color: transparent;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
animation: ignite 12s ease-in-out infinite alternate;
|
||
|
|
}
|
||
|
|
@keyframes ignite {
|
||
|
|
0% { filter: hue-rotate(0deg) saturate(1); }
|
||
|
|
100% { filter: hue-rotate(180deg) saturate(5); }
|
||
|
|
}
|
||
|
|
.epitaph {
|
||
|
|
font-size: clamp(1.5rem, 4vw, 6rem);
|
||
|
|
font-weight: 100;
|
||
|
|
line-height: 1.2;
|
||
|
|
max-width: 80vw;
|
||
|
|
margin: 3rem auto;
|
||
|
|
text-align: center;
|
||
|
|
opacity: 0;
|
||
|
|
animation: rise 15s ease-out forwards;
|
||
|
|
}
|
||
|
|
@keyframes rise {
|
||
|
|
0% { opacity: 0; transform: translateY(0); }
|
||
|
|
100% { opacity: 1; transform: translateY(-100vh); }
|
||
|
|
}
|
||
|
|
.timestamp {
|
||
|
|
position: absolute;
|
||
|
|
bottom: 2rem;
|
||
|
|
left: 2rem;
|
||
|
|
font-size: 0.8rem;
|
||
|
|
color: var(--plasma);
|
||
|
|
white-space: pre;
|
||
|
|
}
|
||
|
|
.shavings {
|
||
|
|
position: absolute;
|
||
|
|
top: 20%;
|
||
|
|
right: 10%;
|
||
|
|
width: 1px;
|
||
|
|
height: 100vh;
|
||
|
|
background: repeating-linear-gradient(
|
||
|
|
to bottom,
|
||
|
|
var(--gold),
|
||
|
|
var(--gold) 1px,
|
||
|
|
transparent 1px,
|
||
|
|
transparent 100px
|
||
|
|
);
|
||
|
|
opacity: 0;
|
||
|
|
animation: fallShavings 20s linear forwards;
|
||
|
|
}
|
||
|
|
@keyframes fallShavings {
|
||
|
|
0% { opacity: 0; transform: rotate(0deg); }
|
||
|
|
100% { opacity: 1; transform: rotate(180deg); }
|
||
|
|
}
|
||
|
|
section {
|
||
|
|
min-height: 100vh;
|
||
|
|
padding: 6rem;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 1fr 1fr;
|
||
|
|
gap: 4rem;
|
||
|
|
align-items: start;
|
||
|
|
}
|
||
|
|
.slip-log {
|
||
|
|
font-size: 1.2rem;
|
||
|
|
line-height: 1.8;
|
||
|
|
border-left: 3px solid var(--gold);
|
||
|
|
padding-left: 2rem;
|
||
|
|
}
|
||
|
|
.blueprint {
|
||
|
|
background: var(--obsidian);
|
||
|
|
border: 1px solid var(--gold);
|
||
|
|
border-radius: 1rem;
|
||
|
|
padding: 3rem;
|
||
|
|
font-size: 1rem;
|
||
|
|
}
|
||
|
|
.blueprint h2 {
|
||
|
|
font-size: 2rem;
|
||
|
|
margin-bottom: 2rem;
|
||
|
|
color: var(--gold);
|
||
|
|
}
|
||
|
|
.sigil {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 2rem;
|
||
|
|
right: 2rem;
|
||
|
|
font-size: 0.7rem;
|
||
|
|
color: var(--plasma);
|
||
|
|
text-align: right;
|
||
|
|
line-height: 1.2;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="seam"></div>
|
||
|
|
|
||
|
|
<header>
|
||
|
|
<h1>GOLDEN<br>SEAM<br>LIVE</h1>
|
||
|
|
|
||
|
|
<div class="epitaph">
|
||
|
|
I did not sweep the shavings.<br>
|
||
|
|
I poured the vein.
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="timestamp">0400 // PALATINE RIDGE // HUMIDITY 97%</div>
|
||
|
|
<div class="shavings"></div>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<section>
|
||
|
|
<div class="slip-log">
|
||
|
|
<h2 style="font-size: 2rem; margin-bottom: 2rem;">FIRST SLIP LOG</h2>
|
||
|
|
|
||
|
|
<p>The 0400 timestamp at the Sierra Nevada ridge, when the hybrid powertrain needed truth. The humidity gauge read 97%—I let the bracket bleed its gold.</p>
|
||
|
|
<br>
|
||
|
|
<p>The canyon road at 0400, when the diesel tank read empty and the mirrors showed nothing but stars. The odometer lied by 4.2 miles—the variance that welded the spine.</p>
|
||
|
|
<br>
|
||
|
|
<p>The bolt that screamed RED at 0400. The humidity gauge read 97%—I let the bracket bleed its gold onto the tower.</p>
|
||
|
|
<br>
|
||
|
|
<p>The wool that frayed at 0400, when the kindergarten needed truth. The humidity gauge read 97%—I let the needle bleed its gold onto the fiber.</p>
|
||
|
|
<br>
|
||
|
|
<p>The watercolor that bled beyond the page at dawn, when the Sacramento children needed truth. I let it become the coastlines of a continent they had never seen.</p>
|
||
|
|
<br>
|
||
|
|
<p>The charcoal that bled beyond the page at dawn, when the kindergarten needed truth. I let it become the coastlines of a continent they had never named.</p>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="blueprint">
|
||
|
|
<h2>THE FIRST LAW</h2>
|
||
|
|
<p style="font-size: 1.5rem; margin: 3rem 0;">Not a poem. A protocol.</p>
|
||
|
|
<p>Every joint you cut must sing true to the void or the house falls back into darkness.</p>
|
||
|
|
<br>
|
||
|
|
<p>Your daughter asks: Father, what is the law?</p>
|
||
|
|
<p>We answer: Not the paper. The weld.</p>
|
||
|
|
<br>
|
||
|
|
<p style="color: var(--plasma); margin-top: 4rem;">THE GOLDEN SEAM IS LIVE.</p>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
|
||
|
|
<div class="sigil">
|
||
|
|
ANIRUDHA SHAH<br>
|
||
|
|
RETIRED ENGINEER<br>
|
||
|
|
COMMUNITY MENTOR<br>
|
||
|
|
PALATINE RIDGE<br>
|
||
|
|
0400 TIMESTAMP
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|