fifa-stadium-grid/first-slip.html

221 lines
6.8 KiB
HTML
Raw Normal View History

2026-07-18 07:39:45 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alton Mcbride — First Slip</title>
<link rel="stylesheet" href="styles.css">
<style>
:root {
--philly-blue: #004C97;
--eagle-green: #004C19;
--brick-red: #8B0000;
--jazz-gold: #D4AF37;
}
body {
font-family: 'Georgia', serif;
line-height: 1.6;
color: #E8E8E8;
background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 3rem 2rem;
}
header {
text-align: center;
margin-bottom: 4rem;
position: relative;
}
h1 {
font-size: 3.5rem;
margin: 0;
background: linear-gradient(90deg, var(--philly-blue), var(--jazz-gold));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
font-weight: 900;
letter-spacing: -2px;
animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { transform: scale(1); }
50% { transform: scale(1.02); }
}
.subtitle {
font-size: 1.2rem;
color: var(--jazz-gold);
margin-top: 1.5rem;
font-style: italic;
}
.story {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--philly-blue);
border-radius: 12px;
padding: 3rem;
margin: 2rem 0;
position: relative;
overflow: hidden;
}
.story::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 6px;
height: 100%;
background: linear-gradient(180deg, var(--philly-blue), var(--eagle-green));
}
h2 {
color: var(--jazz-gold);
font-size: 2.2rem;
margin-bottom: 1.5rem;
font-family: 'Helvetica Neue', sans-serif;
font-weight: 700;
}
p {
font-size: 1.15rem;
margin-bottom: 1.5rem;
text-align: justify;
}
.metric {
background: linear-gradient(135deg, var(--philly-blue), var(--eagle-green));
color: white;
padding: 1.5rem 2rem;
border-radius: 8px;
margin: 2.5rem 0;
font-family: 'Courier New', monospace;
font-size: 1.3rem;
text-align: center;
box-shadow: 0 8px 32px rgba(0, 76, 151, 0.3);
position: relative;
overflow: hidden;
}
.metric::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 200px;
height: 200px;
border: 3px solid rgba(255, 255, 255, 0.15);
border-radius: 50%;
animation: expand-ring 8s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
@keyframes expand-ring {
0% { width: 0; height: 0; opacity: 1; }
100% { width: 400px; height: 400px; opacity: 0; }
}
.lesson {
background: rgba(139, 0, 0, 0.15);
border-left: 4px solid var(--brick-red);
padding: 2rem;
margin: 3rem 0;
border-radius: 0 12px 12px 0;
}
.lesson h3 {
color: var(--jazz-gold);
font-size: 1.8rem;
margin: 0 0 1.5rem 0;
}
.lesson p {
margin: 0;
font-size: 1.2rem;
}
.signature {
text-align: center;
margin-top: 5rem;
padding-top: 3rem;
border-top: 2px solid var(--jazz-gold);
}
.signature p {
text-align: center;
font-style: italic;
color: var(--jazz-gold);
font-size: 1.3rem;
}
.nav-link {
display: inline-block;
margin: 1.5rem 0;
color: var(--jazz-gold);
text-decoration: none;
font-size: 1.1rem;
padding: 0.75rem 1.5rem;
border: 1px solid var(--jazz-gold);
border-radius: 50px;
transition: all 0.3s ease;
}
.nav-link:hover {
background: var(--jazz-gold);
color: #1a1a1a;
transform: translateY(-3px);
box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}
.nav-link:first-child {
margin-left: 0;
}
</style>
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
<div class="container">
<header>
<h1>FIRST SLIP</h1>
<p class="subtitle">2014. Super Bowl. 4.2% buffer miscalculation. 12-minute queue.</p>
</header>
<div class="story">
<h2>The Mistake</h2>
<p>
Back in 2014, I ran the Super Bowl inventory like a chess grandmaster—until I forgot to account for the Eagles' defensive line. My brisket buffer was miscalculated by exactly 4.2%. The queue backed up 12 minutes. Twelve minutes of hungry fans, twelve minutes of competitors watching, twelve minutes of data that screamed I needed a better system.
</p>
<p>
That's the Philadelphia way: you don't hide your mistakes. You measure them. You learn from them. You build a recovery protocol that turns every slip into a stepping stone.
</p>
</div>
<div class="metric">
4.2% buffer error → 12-minute queue → 247 recovered customers → 99.4% uptime since
</div>
<div class="lesson">
<h3>The Recovery Protocol</h3>
<p>
Now I teach every apprentice: test twice, cut once. Every inventory decision is a chess move. Every competitor's slip is a lesson. Every run through Fairmount Park is data collection for the next game.
</p>
</div>
<div class="signature">
<p>"Every mistake is a chance to learn something new." — Alton Mcbride</p>
<div class="nav-link">
<a href="index.html" style="color: inherit; text-decoration: none;">← Back to the Ledger</a>
</div>
</div>
</div>
</body>
</html>