supervisors-playbook/index.html

175 lines
5.8 KiB
HTML
Raw Permalink 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>Brandon Buonaguro | The Supervisor's Playbook</title>
<style>
:root {
--bg: #0a0a0a;
--surface: #141414;
--primary: #ff4d00;
--secondary: #00d9ff;
--text: #e0e0e0;
--muted: #666;
--border: #333;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--bg);
color: var(--text);
font-family: 'Inter', system-ui, -apple-system, sans-serif;
line-height: 1.6;
}
header {
border-bottom: 1px solid var(--border);
padding: 3rem 1rem;
text-align: center;
}
h1 {
font-size: clamp(2.5rem, 6vw, 4rem);
letter-spacing: -0.05em;
font-weight: 800;
background: linear-gradient(180deg, var(--primary) 0%, #cc3700 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1rem;
}
.tagline {
font-size: 1.2rem;
color: var(--muted);
max-width: 600px;
margin: 0 auto;
}
main {
max-width: 1000px;
margin: 0 auto;
padding: 3rem 1rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 3rem;
}
.card {
background: var(--surface);
border: 1px solid var(--border);
border-radius: 12px;
padding: 2rem;
transition: transform 0.2s, border-color 0.2s;
}
.card:hover {
transform: translateY(-4px);
border-color: var(--primary);
}
.card h2 {
font-size: 1.5rem;
color: var(--secondary);
margin-bottom: 1rem;
font-weight: 700;
}
.card p {
color: var(--muted);
margin-bottom: 1.5rem;
font-size: 0.95rem;
}
.btn {
display: inline-block;
background: var(--primary);
color: white;
padding: 0.75rem 1.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
transition: background 0.2s;
}
.btn:hover { background: #cc3700; }
.bio {
text-align: center;
margin-bottom: 3rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}
.bio p {
font-size: 1.1rem;
color: var(--muted);
}
footer {
text-align: center;
padding: 3rem 1rem;
color: var(--muted);
font-size: 0.8rem;
border-top: 1px solid var(--border);
margin-top: 4rem;
}
a { color: var(--secondary); text-decoration: none; }
a:hover { text-decoration: underline; }
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<header>
<h1>Brandon Buonaguro</h1>
<div class="tagline">
Retail supervisor. Data architect. Team captain.<br>
Building tools that turn variance into victory.
</div>
</header>
<main>
<section class="bio">
<p>
I run the floor in Dover, PA, where I balance Python scripts with pick-up basketball and the perfect carbonara.
My job isn't just moving boxes—it's teaching my crew to read the numbers before they bite us.
Here, I ship the tools that keep the line running.
</p>
</section>
<div class="grid">
<article class="card">
<h2>The Stock-Out Sentinel</h2>
<p>
An interactive engine that calculates your probability of stock-out using real-world demand variance and lead time uncertainty.
Slide the controls. See the risk. Order before you bleed.
</p>
<a href="/sentinel.html" class="btn">Launch Tool</a>
</article>
<article class="card">
<h2>Shift Handoff Protocol</h2>
<p>
The SMED-standard ritual for zero-information-loss shift changes. Lock the floor. Verify anomalies. Transfer authority.
Closing the 12% throughput gap.
</p>
<a href="/shift-handoff.html" class="btn">View Protocol</a>
</article>
<article class="card">
<h2>The Supervisor's Playbook</h2>
<p>
Field-tested strategies for retail operations. From chalk-line audits to cycle-count rituals,
these are the plays that moved us from 78% to 92.4% OEE.
</p>
<a href="/playbook/" class="btn">Enter the Book</a>
</article>
<article class="card">
<h2>Aisle 4, November 2025</h2>
<p>
The night we missed $40k in perishables. A story of hubris, variance, and the moment I decided to stop trusting forecasts and start measuring risk.
</p>
<a href="/memories/aisle4" class="btn">Read the Log</a>
</article>
</div>
</main>
<footer>
© 2026 Brandon Buonaguro | Dover, PA<br>
All tools grounded in Wikidata, USDA, and hard-earned scars.
</footer>
</body>
</html>