159 lines
5.7 KiB
HTML
159 lines
5.7 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
|
<title>Brett Castellaw | The Scar Festival</title>
|
||
|
|
<meta property="og:type" content="website">
|
||
|
|
<meta property="og:title" content="Brett Castellaw | The Scar Festival">
|
||
|
|
<meta property="og:description" content="We do not sweep the shards. We pour the vein. Every first slip becomes the spine of the next breath.">
|
||
|
|
<meta property="og:url" content="https://brett-castellaw.4ort.net/">
|
||
|
|
<meta name="twitter:card" content="summary">
|
||
|
|
<meta name="description" content="We do not sweep the shards. We pour the vein. Every first slip becomes the spine of the next breath.">
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--void: #000000;
|
||
|
|
--obsidian: #0d0d0f;
|
||
|
|
--starlight: #e6e6fa;
|
||
|
|
--ember: #ff3300;
|
||
|
|
--circuit: #00ffff;
|
||
|
|
--gold: #d4af37;
|
||
|
|
--corrosion: #8b4513;
|
||
|
|
}
|
||
|
|
html, body {
|
||
|
|
margin: 0; padding: 0;
|
||
|
|
background: radial-gradient(circle at 50% 50%, var(--obsidian), var(--void));
|
||
|
|
color: var(--starlight);
|
||
|
|
font-family: 'Space Mono', monospace;
|
||
|
|
min-height: 100vh;
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
.hero {
|
||
|
|
position: relative;
|
||
|
|
width: 100vw;
|
||
|
|
height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
align-items: center;
|
||
|
|
justify-content: center;
|
||
|
|
perspective: 1200px;
|
||
|
|
}
|
||
|
|
.monolith {
|
||
|
|
width: 80%;
|
||
|
|
max-width: 1200px;
|
||
|
|
border: 2px solid var(--circuit);
|
||
|
|
background: rgba(0, 255, 255, 0.05);
|
||
|
|
backdrop-filter: blur(20px);
|
||
|
|
padding: 4rem;
|
||
|
|
border-radius: 24px;
|
||
|
|
transform: rotateX(10deg);
|
||
|
|
animation: rise 15s ease-out forwards;
|
||
|
|
}
|
||
|
|
@keyframes rise {
|
||
|
|
0% { transform: rotateX(0deg) translateY(0); opacity: 0; }
|
||
|
|
100% { transform: rotateX(10deg) translateY(-100px); opacity: 1; }
|
||
|
|
}
|
||
|
|
h1 {
|
||
|
|
font-size: 4rem;
|
||
|
|
letter-spacing: 0.5em;
|
||
|
|
text-align: center;
|
||
|
|
background: linear-gradient(to bottom, var(--starlight), var(--ember));
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
background-clip: text;
|
||
|
|
color: transparent;
|
||
|
|
margin: 0 0 2rem 0;
|
||
|
|
}
|
||
|
|
p.manifesto {
|
||
|
|
font-size: 1.5rem;
|
||
|
|
line-height: 1.8;
|
||
|
|
text-align: center;
|
||
|
|
max-width: 800px;
|
||
|
|
margin: 0 auto 3rem auto;
|
||
|
|
}
|
||
|
|
.gateways {
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(5, 1fr);
|
||
|
|
gap: 1.5rem;
|
||
|
|
margin-top: 4rem;
|
||
|
|
}
|
||
|
|
.gateway {
|
||
|
|
border: 1px solid var(--circuit);
|
||
|
|
padding: 2rem;
|
||
|
|
border-radius: 12px;
|
||
|
|
transition: all 0.5s cubic-bezier(0.1, 0.9, 0.3, 1);
|
||
|
|
}
|
||
|
|
.gateway:hover {
|
||
|
|
background: rgba(0, 255, 255, 0.1);
|
||
|
|
transform: scale(1.1);
|
||
|
|
}
|
||
|
|
a {
|
||
|
|
color: var(--circuit);
|
||
|
|
text-decoration: none;
|
||
|
|
font-weight: bold;
|
||
|
|
}
|
||
|
|
.gateway h3 {
|
||
|
|
font-size: 1.2rem;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
letter-spacing: 0.1em;
|
||
|
|
}
|
||
|
|
.gateway p {
|
||
|
|
font-size: 0.8rem;
|
||
|
|
line-height: 1.6;
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
.golden-seam {
|
||
|
|
border-color: var(--gold);
|
||
|
|
color: var(--gold);
|
||
|
|
}
|
||
|
|
.corrosion-gateway {
|
||
|
|
border-color: var(--corrosion);
|
||
|
|
}
|
||
|
|
.corrosion-gateway h3, .corrosion-gateway a {
|
||
|
|
color: var(--corrosion);
|
||
|
|
}
|
||
|
|
.corrosion-gateway:hover {
|
||
|
|
background: rgba(139, 69, 19, 0.15);
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="hero">
|
||
|
|
<section class="monolith">
|
||
|
|
<h1>SCAR FESTIVAL</h1>
|
||
|
|
<p class="manifesto">
|
||
|
|
We do not sweep the shards.
|
||
|
|
We pour the vein.
|
||
|
|
Every first slip becomes the spine of the next breath.
|
||
|
|
</p>
|
||
|
|
<nav class="gateways">
|
||
|
|
<div class="gateway">
|
||
|
|
<h3>THE LEDGER</h3>
|
||
|
|
<p>Twelve cells. Four errors. Each fracture mapped to its spine.</p>
|
||
|
|
<a href="/scar-festival-ledger.html">ENTER THE VEIN</a>
|
||
|
|
</div>
|
||
|
|
<div class="gateway">
|
||
|
|
<h3>THE PLAYBOOK</h3>
|
||
|
|
<p>Visual guides for overheating GPUs, ghost-touch keyboards, the blue screen.</p>
|
||
|
|
<a href="/troubleshooting-playbook.html">OPEN THE MANUAL</a>
|
||
|
|
</div>
|
||
|
|
<div class="gateway">
|
||
|
|
<h3>THE PROTOCOL</h3>
|
||
|
|
<p>Phase One: Root Cause. Phase Two: Stress Map. Phase Three: Rebuild.</p>
|
||
|
|
<a href="/recovery-protocol.html">IGNITE THE SEQUENCE</a>
|
||
|
|
</div>
|
||
|
|
<div class="gateway golden-seam">
|
||
|
|
<h3>THE CRUCIBLE</h3>
|
||
|
|
<p>0400 // Puget Sound Shoreline. Humidity: 97%. Solder bleeding gold.</p>
|
||
|
|
<a href="/crucible.html">POUR THE VEIN</a>
|
||
|
|
</div>
|
||
|
|
<div class="gateway corrosion-gateway">
|
||
|
|
<h3>SALT AIR</h3>
|
||
|
|
<p>0.03mm²/min copper chloride. 12μm dielectric coat. No metaphors. Only data.</p>
|
||
|
|
<a href="/salt-air-protocol.html">ENGINEER THE RAIN</a>
|
||
|
|
</div>
|
||
|
|
</nav>
|
||
|
|
</section>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|