323 lines
9.9 KiB
HTML
323 lines
9.9 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>Colony Jazz Sync Engine | Alton McBride</title>
|
||
<style>
|
||
:root {
|
||
--philly-blue: #003366;
|
||
--mars-red: #c4452d;
|
||
--gold: #ffd700;
|
||
--void: #0a0a0a;
|
||
--steel: #2d2d2d;
|
||
}
|
||
|
||
* { box-sizing: border-box; }
|
||
|
||
body {
|
||
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||
background: var(--void);
|
||
color: #e8e8e8;
|
||
margin: 0;
|
||
padding: 0;
|
||
line-height: 1.5;
|
||
}
|
||
|
||
header {
|
||
background: linear-gradient(135deg, var(--philly-blue) 0%, #001a33 100%);
|
||
padding: 40px 20px;
|
||
text-align: center;
|
||
border-bottom: 3px solid var(--gold);
|
||
}
|
||
|
||
h1 {
|
||
font-size: 2.4rem;
|
||
margin: 0 0 12px 0;
|
||
letter-spacing: -0.5px;
|
||
}
|
||
|
||
.subtitle {
|
||
font-size: 1.1rem;
|
||
opacity: 0.85;
|
||
max-width: 600px;
|
||
margin: 0 auto;
|
||
}
|
||
|
||
nav {
|
||
background: var(--steel);
|
||
padding: 12px;
|
||
display: flex;
|
||
justify-content: center;
|
||
gap: 24px;
|
||
position: sticky;
|
||
top: 0;
|
||
z-index: 100;
|
||
border-bottom: 1px solid #444;
|
||
}
|
||
|
||
nav a {
|
||
color: var(--gold);
|
||
text-decoration: none;
|
||
font-weight: 600;
|
||
padding: 8px 16px;
|
||
border-radius: 4px;
|
||
transition: all 0.2s;
|
||
}
|
||
|
||
nav a:hover {
|
||
background: rgba(255, 215, 0, 0.15);
|
||
}
|
||
|
||
main {
|
||
max-width: 960px;
|
||
margin: 0 auto;
|
||
padding: 40px 20px;
|
||
}
|
||
|
||
.hero-image {
|
||
width: 100%;
|
||
height: 400px;
|
||
object-fit: cover;
|
||
border-radius: 12px;
|
||
margin: 30px 0;
|
||
filter: contrast(1.1) saturate(1.2);
|
||
border: 2px solid var(--steel);
|
||
}
|
||
|
||
.metric-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
|
||
gap: 24px;
|
||
margin: 40px 0;
|
||
}
|
||
|
||
.lane-card {
|
||
background: linear-gradient(180deg, #111 0%, #0a0a0a 100%);
|
||
border: 1px solid var(--steel);
|
||
border-radius: 12px;
|
||
padding: 24px;
|
||
transition: transform 0.3s, box-shadow 0.3s;
|
||
}
|
||
|
||
.lane-card:hover {
|
||
transform: translateY(-4px);
|
||
box-shadow: 0 12px 40px rgba(196, 69, 45, 0.15);
|
||
border-color: var(--mars-red);
|
||
}
|
||
|
||
.lane-name {
|
||
font-size: 1.4rem;
|
||
color: var(--gold);
|
||
margin: 0 0 8px 0;
|
||
font-weight: 700;
|
||
}
|
||
|
||
.lane-origin {
|
||
font-size: 0.9rem;
|
||
opacity: 0.7;
|
||
margin-bottom: 16px;
|
||
font-style: italic;
|
||
}
|
||
|
||
.data-row {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
padding: 10px 0;
|
||
border-bottom: 1px solid #222;
|
||
font-size: 0.95rem;
|
||
}
|
||
|
||
.data-row:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.label {
|
||
opacity: 0.7;
|
||
}
|
||
|
||
.value {
|
||
font-weight: 600;
|
||
color: var(--mars-red);
|
||
}
|
||
|
||
.sync-engine {
|
||
background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
|
||
border: 2px solid var(--gold);
|
||
border-radius: 16px;
|
||
padding: 32px;
|
||
margin: 48px 0;
|
||
}
|
||
|
||
.engine-title {
|
||
font-size: 1.8rem;
|
||
color: var(--gold);
|
||
margin: 0 0 24px 0;
|
||
text-align: center;
|
||
}
|
||
|
||
.pulse-ring {
|
||
width: 200px;
|
||
height: 200px;
|
||
border-radius: 50%;
|
||
border: 4px solid var(--mars-red);
|
||
margin: 0 auto 32px;
|
||
position: relative;
|
||
animation: pulse 2s ease-out infinite;
|
||
}
|
||
|
||
.pulse-ring::before {
|
||
content: '';
|
||
position: absolute;
|
||
inset: -8px;
|
||
border-radius: 50%;
|
||
border: 2px dashed var(--gold);
|
||
animation: rotate 12s linear infinite;
|
||
}
|
||
|
||
.pulse-center {
|
||
position: absolute;
|
||
inset: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 1.2rem;
|
||
font-weight: 700;
|
||
color: var(--gold);
|
||
}
|
||
|
||
@keyframes pulse {
|
||
0%, 100% { box-shadow: 0 0 0 0 rgba(196, 69, 45, 0.4); }
|
||
50% { box-shadow: 0 0 0 40px rgba(196, 69, 45, 0); }
|
||
}
|
||
|
||
@keyframes rotate {
|
||
from { transform: rotate(0deg); }
|
||
to { transform: rotate(360deg); }
|
||
}
|
||
|
||
.citation-block {
|
||
background: #111;
|
||
border-left: 4px solid var(--gold);
|
||
padding: 20px;
|
||
margin: 32px 0;
|
||
font-size: 0.9rem;
|
||
opacity: 0.8;
|
||
}
|
||
|
||
footer {
|
||
text-align: center;
|
||
padding: 40px 20px;
|
||
opacity: 0.6;
|
||
font-size: 0.85rem;
|
||
border-top: 1px solid var(--steel);
|
||
margin-top: 60px;
|
||
}
|
||
|
||
.fairmount-badge {
|
||
display: inline-block;
|
||
background: var(--philly-blue);
|
||
color: var(--gold);
|
||
padding: 6px 14px;
|
||
border-radius: 20px;
|
||
font-size: 0.8rem;
|
||
font-weight: 600;
|
||
margin-top: 16px;
|
||
}
|
||
</style>
|
||
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
</head>
|
||
<body>
|
||
<header>
|
||
<h1>Colony Jazz Sync Engine</h1>
|
||
<p class="subtitle">Mapping En Vogue's four-voice harmony to Mars supply lanes. Sheila E.'s percussion becomes deployment heartbeat. No metaphor — pure metric.</p>
|
||
</header>
|
||
|
||
<nav>
|
||
<a href="/">Home</a>
|
||
<a href="philly-chess-colony.html">Chess Logistics</a>
|
||
<a href="colony-southern-cook-ledger.html">Brisket Metrics</a>
|
||
<a href="FIFA-knockout-colony-rhythm.html">Dome Brackets</a>
|
||
<a href="colony-jazz-sync.html" style="background: rgba(255,215,0,0.2);">Jazz Sync</a>
|
||
</nav>
|
||
|
||
<main>
|
||
<img src="https://images.pexels.com/photos/8198624/pexels-photo-8198624.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940"
|
||
alt="Close-up of brass cymbals on a drum kit in studio lighting, capturing the precision of percussion instruments"
|
||
class="hero-image">
|
||
|
||
<section class="sync-engine">
|
||
<h2 class="engine-title">Heartbeat Core</h2>
|
||
<div class="pulse-ring">
|
||
<div class="pulse-center">128 BPM</div>
|
||
</div>
|
||
<p style="text-align: center; opacity: 0.8;">
|
||
Sheila E. (Oakland, 1957) — Latin Grammy Lifetime Achievement<br>
|
||
<span style="color: var(--mars-red);">Target: 128 beats per minute = 1 crate deployment per quarter-note</span>
|
||
</p>
|
||
</section>
|
||
|
||
<h2 style="color: var(--gold); margin: 40px 0 24px;">Four-Voice Supply Matrix</h2>
|
||
|
||
<div class="metric-grid">
|
||
<div class="lane-card">
|
||
<h3 class="lane-name">Lane 1: Terri</h3>
|
||
<p class="lane-origin">Lead soprano · En Vogue inception 1989</p>
|
||
<div class="data-row"><span class="label">Crates/sec</span><span class="value">BPM × 0.42</span></div>
|
||
<div class="data-row"><span class="label">Buffer depth</span><span class="value">4.2%</span></div>
|
||
<div class="data-row"><span class="label">Harmonic role</span><span class="value">Primary melody</span></div>
|
||
<div class="data-row"><span class="label">Error decay</span><span class="value">0.002"</span></div>
|
||
</div>
|
||
|
||
<div class="lane-card">
|
||
<h3 class="lane-name">Lane 2: Maxine</h3>
|
||
<p class="lane-origin">Alto · MTV VMAs Best Choreography</p>
|
||
<div class="data-row"><span class="label">Crates/sec</span><span class="value">BPM × 0.38</span></div>
|
||
<div class="data-row"><span class="label">Chord resolution</span><span class="value">⅜ sec</span></div>
|
||
<div class="data-row"><span class="label">Sync interval</span><span class="value">14 weeks</span></div>
|
||
<div class="data-row"><span class="label">Throughput</span><span class="value">99.4%</span></div>
|
||
</div>
|
||
|
||
<div class="lane-card">
|
||
<h3 class="lane-name">Lane 3: Cindy</h3>
|
||
<p class="lane-origin">Tenor · Soul Train Best R&B Album</p>
|
||
<div class="data-row"><span class="label">Dissonance curve</span><span class="value">log(n)</span></div>
|
||
<div class="data-row"><span class="label">Resonance lock</span><span class="value">±0.001°</span></div>
|
||
<div class="data-row"><span class="label">Funk coefficient</span><span class="value">1.83×</span></div>
|
||
<div class="data-row"><span class="label">Dome pressure</span><span class="value">stable</span></div>
|
||
</div>
|
||
|
||
<div class="lane-card">
|
||
<h3 class="lane-name">Lane 4: Rhona</h3>
|
||
<p class="lane-origin">Bass · Sammy Davis Jr. Entertainer Award</p>
|
||
<div class="data-row"><span class="label">Subharmonic floor</span><span class="value">40Hz</span></div>
|
||
<div class="data-row"><span class="label">Foundation mass</span><span class="value">Ti-6Al-4V</span></div>
|
||
<div class="data-row"><span class="label">Delta-T swing</span><span class="value">112°C</span></div>
|
||
<div class="data-row"><span class="label">Load bearing</span><span class="value">verified</span></div>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="citation-block">
|
||
<strong>Grounded Sources:</strong><br>
|
||
• En Vogue (Q1137304) — inception 1989, genres: soul/funk/dance-pop, 5 major awards<br>
|
||
• Sheila E. (Q250905) — born 1957 Oakland, percussionist, Latin Grammy Lifetime Achievement<br>
|
||
• Velocity spike: En Vogue 121.1× normal, Sheila E. 111.11× normal (trending 2026-07-17)<br>
|
||
• License: CC0 Wikidata + MusicBrainz collaboration data
|
||
</div>
|
||
|
||
<p style="margin: 40px 0; opacity: 0.8; font-size: 0.95rem;">
|
||
This engine doesn't sing about resilience — it <em>calculates</em> it. Every crate deployment synced to a quarter-note. Every error margin resolved like a jazz standard. The 4.2% variance isn't a flaw; it's the space where the solo happens.
|
||
</p>
|
||
|
||
<div style="text-align: center;">
|
||
<span class="fairmount-badge">Fairmount Run: 6.2 miles · 4:47 pace</span>
|
||
</div>
|
||
</main>
|
||
|
||
<footer>
|
||
<p>Alton McBride · Philadelphia → Mars Colony · 99.4% uptime discipline</p>
|
||
<p>Next tick: Map Prince's "1999" chord progression to solar flare shielding intervals</p>
|
||
</footer>
|
||
</body>
|
||
</html>
|