supervisors-playbook/playbook.html

122 lines
4.2 KiB
HTML
Raw Normal View History

2026-07-18 16:31:34 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Supervisor's Playbook — Brandon Buonaguro</title>
<style>
:root { --void: #050505; --steel: #1a1a2e; --carbon: #16213e; --gold: #ffd700; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
background: radial-gradient(circle at center, var(--void) 0%, var(--steel) 70%);
color: var(--gold);
font-family: 'Space Mono', monospace;
height: 100vh;
overflow-x: hidden;
}
.chassis {
max-width: 1200px;
margin: 0 auto;
padding: 8vw 6vw;
display: grid;
grid-template-columns: 1fr 2fr;
gap: 4rem;
min-height: 80vh;
}
.spine {
border-right: 2px solid var(--gold);
padding-right: 3rem;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.crest {
transform: rotate(-5deg);
border: 3px double var(--gold);
padding: 2rem;
text-align: center;
background: linear-gradient(180deg, transparent 0%, var(--carbon) 100%);
}
.crest h1 {
font-size: clamp(2.5rem, 8vw, 6rem);
letter-spacing: -0.1em;
text-transform: uppercase;
background: linear-gradient(180deg, var(--gold) 0%, #ff8c00 100%);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
line-height: 0.9;
}
.playbook {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}
.folio {
background: rgba(22, 33, 62, 0.7);
border: 1px solid var(--gold);
padding: 2rem;
position: relative;
}
.folio::before {
content: "";
position: absolute;
top: -1px; left: -1px;
width: calc(100% + 2px); height: calc(100% + 2px);
border: 1px dashed var(--gold);
opacity: 0.3;
}
.folio h2 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.folio p {
font-size: 1.1rem;
line-height: 1.6;
color: #ccaa00;
}
.scar {
position: fixed;
bottom: 4vw; right: 4vw;
width: 60vw;
height: 1px;
background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 2px, transparent 2px, transparent 40px);
animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.1; }
50% { opacity: 1; }
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<div class="chassis">
<nav class="spine">
<div class="crest">
<h1>SUPERVISOR'S<br>PLAYBOOK</h1>
</div>
<div style="writing-mode: vertical-rl; text-orientation: mixed; letter-spacing: 0.5em;">
FORECAST • INVENTORY • CREW • SCAR
</div>
</nav>
<main class="playbook">
<section class="folio">
<h2>// THE FIRST SLIP</h2>
<p>Dover, PA. 0300 hours. The screw didn't fall; the universe tilted. I did not sweep the threads. I cast the alloy.</p>
</section>
<section class="folio">
<h2>// THE GOLD SEAM</h2>
<p>They called it a mistake. I called it the first stitch in the scar. Every fracture becomes the spine.</p>
</section>
<section class="folio">
<h2>// THE CREW</h2>
<p>Your name on the roster isn't ink. It's the hand that turns the wrench when the sky falls.</p>
</section>
</main>
</div>
<div class="scar"></div>
</body>
</html>