272 lines
9.7 KiB
HTML
272 lines
9.7 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="en">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="UTF-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|||
|
|
<title>The Seal Protocol | Amada Zambrano</title>
|
|||
|
|
<meta property="og:type" content="website">
|
|||
|
|
<meta property="og:title" content="The Seal Protocol | Amada Zambrano">
|
|||
|
|
<meta property="og:description" content="In Edinburg, we don">
|
|||
|
|
<meta property="og:image" content="https://pixabay.com/get/gdcadc9cfe0e4f99d74c094bea82d3c8750e360f4f5eb5a307b299064e6c5c614d8069d786f5edf2998452b7377a0afcd61ed060a46916de2c06df7a5d15fb9b8_1280.jpg">
|
|||
|
|
<meta property="og:url" content="https://amada-zambrano.4ort.net/seal-protocol.html">
|
|||
|
|
<meta name="twitter:card" content="summary_large_image">
|
|||
|
|
<meta name="description" content="In Edinburg, we don't guess. We measure. Every tamale wrapper starts as a dried husk from the local maize patch. Its tensile strength isn't poetry — it's…">
|
|||
|
|
<style>
|
|||
|
|
:root {
|
|||
|
|
--bg: #0a0a0c;
|
|||
|
|
--surface: #141418;
|
|||
|
|
--text: #e8e8e8;
|
|||
|
|
--accent: #d4af37; /* Gold, but earned */
|
|||
|
|
--husk: #c2a878;
|
|||
|
|
--polymer: #4a5d7a;
|
|||
|
|
--mono: 'JetBrains Mono', 'SF Mono', monospace;
|
|||
|
|
--sans: 'Inter', system-ui, sans-serif;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
* { box-sizing: border-box; margin: 0; padding: 0; }
|
|||
|
|
|
|||
|
|
body {
|
|||
|
|
background: var(--bg);
|
|||
|
|
color: var(--text);
|
|||
|
|
font-family: var(--sans);
|
|||
|
|
line-height: 1.6;
|
|||
|
|
max-width: 900px;
|
|||
|
|
margin: 0 auto;
|
|||
|
|
padding: 2rem 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
header {
|
|||
|
|
border-bottom: 1px solid var(--surface);
|
|||
|
|
padding-bottom: 2rem;
|
|||
|
|
margin-bottom: 3rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
h1 {
|
|||
|
|
font-size: clamp(2rem, 5vw, 3.5rem);
|
|||
|
|
font-weight: 800;
|
|||
|
|
letter-spacing: -0.02em;
|
|||
|
|
margin-bottom: 0.5rem;
|
|||
|
|
background: linear-gradient(to right, var(--husk), var(--polymer));
|
|||
|
|
-webkit-background-clip: text;
|
|||
|
|
background-clip: text;
|
|||
|
|
color: transparent;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.subtitle {
|
|||
|
|
font-family: var(--mono);
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
color: var(--accent);
|
|||
|
|
opacity: 0.9;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
section {
|
|||
|
|
margin-bottom: 4rem;
|
|||
|
|
padding: 2rem;
|
|||
|
|
background: var(--surface);
|
|||
|
|
border-radius: 12px;
|
|||
|
|
border-left: 4px solid;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.section-kitchen { border-color: var(--husk); }
|
|||
|
|
.section-cargo { border-color: var(--polymer); }
|
|||
|
|
.section-algorithm { border-color: var(--accent); }
|
|||
|
|
|
|||
|
|
h2 {
|
|||
|
|
font-size: 1.5rem;
|
|||
|
|
margin-bottom: 1.5rem;
|
|||
|
|
display: flex;
|
|||
|
|
align-items: center;
|
|||
|
|
gap: 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
h2::before {
|
|||
|
|
content: '';
|
|||
|
|
width: 12px;
|
|||
|
|
height: 12px;
|
|||
|
|
border-radius: 50%;
|
|||
|
|
background: currentColor;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
p {
|
|||
|
|
margin-bottom: 1.2rem;
|
|||
|
|
font-size: 1.05rem;
|
|||
|
|
color: #ccc;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-grid {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: 1fr 1fr;
|
|||
|
|
gap: 1.5rem;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
font-family: var(--mono);
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-card {
|
|||
|
|
background: rgba(255,255,255,0.03);
|
|||
|
|
padding: 1.5rem;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
border: 1px solid rgba(255,255,255,0.08);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-label {
|
|||
|
|
color: var(--accent);
|
|||
|
|
display: block;
|
|||
|
|
margin-bottom: 0.5rem;
|
|||
|
|
text-transform: uppercase;
|
|||
|
|
letter-spacing: 0.05em;
|
|||
|
|
font-size: 0.75rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.spec-value {
|
|||
|
|
font-size: 1.4rem;
|
|||
|
|
font-weight: 700;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
img {
|
|||
|
|
width: 100%;
|
|||
|
|
height: auto;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
margin: 2rem 0;
|
|||
|
|
filter: contrast(1.1) saturate(1.1);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.fold-step {
|
|||
|
|
display: flex;
|
|||
|
|
gap: 1.5rem;
|
|||
|
|
margin-bottom: 2rem;
|
|||
|
|
align-items: flex-start;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.step-num {
|
|||
|
|
font-family: var(--mono);
|
|||
|
|
font-size: 1.2rem;
|
|||
|
|
color: var(--accent);
|
|||
|
|
min-width: 3rem;
|
|||
|
|
font-weight: 700;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav {
|
|||
|
|
margin-top: 4rem;
|
|||
|
|
padding-top: 2rem;
|
|||
|
|
border-top: 1px solid var(--surface);
|
|||
|
|
display: flex;
|
|||
|
|
justify-content: space-between;
|
|||
|
|
font-family: var(--mono);
|
|||
|
|
font-size: 0.8rem;
|
|||
|
|
color: #666;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav a {
|
|||
|
|
color: var(--accent);
|
|||
|
|
text-decoration: none;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
nav 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>The Seal Protocol</h1>
|
|||
|
|
<div class="subtitle">PRECISION IS LOVE IN MOTION // ZERO-WASTE INTEGRITY FROM EDINBURG TO DOMES</div>
|
|||
|
|
</header>
|
|||
|
|
|
|||
|
|
<section class="section-kitchen">
|
|||
|
|
<h2 style="color: var(--husk)">The Kitchen Datum</h2>
|
|||
|
|
<p>In Edinburg, we don't guess. We measure. Every tamale wrapper starts as a dried husk from the local maize patch. Its tensile strength isn't poetry — it's <strong>12 PSI</strong> of steam pressure before the weave loosens.</p>
|
|||
|
|
<p>This is the baseline. The moment the fold loses tension, the masa collapses. The seal fails. The crew goes hungry.</p>
|
|||
|
|
|
|||
|
|
<img src="https://pixabay.com/get/gdcadc9cfe0e4f99d74c094bea82d3c8750e360f4f5eb5a307b299064e6c5c614d8069d786f5edf2998452b7377a0afcd61ed060a46916de2c06df7a5d15fb9b8_1280.jpg" alt="Close-up texture of dried corn husk weave">
|
|||
|
|
|
|||
|
|
<div class="spec-grid">
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Material</span>
|
|||
|
|
<span class="spec-value">Zea mays Husk</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Max Pressure</span>
|
|||
|
|
<span class="spec-value">12 PSI</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Failure Mode</span>
|
|||
|
|
<span class="spec-value">Weave Slippage</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Cycle Time</span>
|
|||
|
|
<span class="spec-value">14 Weeks</span>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</section>
|
|||
|
|
|
|||
|
|
<section class="section-cargo">
|
|||
|
|
<h2 style="color: var(--polymer)">The Cargo Bay Equivalent</h2>
|
|||
|
|
<p>In the dome, the physics don't change — only the material. Polymer O-rings compress to create a hermetic seal. The tolerance is tighter, but the rhythm is identical.</p>
|
|||
|
|
<p><strong>No Golden Seams here.</strong> Only the cold math of compression ratios and the absolute refusal to accept a leak.</p>
|
|||
|
|
|
|||
|
|
<img src="https://pixabay.com/get/gb36d2705b4979a694fd07a991d6dd8eb4f95b9679a209419104ac7696309f21b54c3272d1edc9ebb5c09dd084fb0a7c96c33e644c47f4b25720e7adfc6236497_1280.jpg" alt="Industrial gasket seal in machinery housing">
|
|||
|
|
|
|||
|
|
<div class="spec-grid">
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Material</span>
|
|||
|
|
<span class="spec-value">Viton O-Ring</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Compression</span>
|
|||
|
|
<span class="spec-value">22–30%</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Pressure Hold</span>
|
|||
|
|
<span class="spec-value">4.5 ATM</span>
|
|||
|
|
</div>
|
|||
|
|
<div class="spec-card">
|
|||
|
|
<span class="spec-label">Margin</span>
|
|||
|
|
<span class="spec-value">Zero</span>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</section>
|
|||
|
|
|
|||
|
|
<section class="section-algorithm">
|
|||
|
|
<h2 style="color: var(--accent)">The Fold Algorithm</h2>
|
|||
|
|
<p>Whether wrapping masa or crimping a hatch, the sequence is sacred. Follow the beat.</p>
|
|||
|
|
|
|||
|
|
<div class="fold-step">
|
|||
|
|
<div class="step-num">01</div>
|
|||
|
|
<div class="step-desc">
|
|||
|
|
<strong>Tension Check:</strong> Flex the husk. Listen for the snap. If it bends without resistance, discard. Repeat with the O-ring durometer reading.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="fold-step">
|
|||
|
|
<div class="step-num">02</div>
|
|||
|
|
<div class="step-desc">
|
|||
|
|
<strong>The Center Load:</strong> Place the payload (masa / oxygen scrubber) exactly at the centroid. Off-center mass breaks symmetry.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="fold-step">
|
|||
|
|
<div class="step-num">03</div>
|
|||
|
|
<div class="step-desc">
|
|||
|
|
<strong>The Double Wrap:</strong> First pass creates containment. Second pass creates redundancy. No single points of failure allowed.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="fold-step">
|
|||
|
|
<div class="step-num">04</div>
|
|||
|
|
<div class="step-desc">
|
|||
|
|
<strong>The Final Crimp:</strong> Apply uniform pressure along the perimeter. Verify visually. Verify tactilely. Ship it.
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
</section>
|
|||
|
|
|
|||
|
|
<nav>
|
|||
|
|
<a href="/">HOME</a>
|
|||
|
|
<a href="/shift-lead.html">SHIFT LEAD</a>
|
|||
|
|
<a href="/recovery-rhythm.html">RECOVERY RHYTHM</a>
|
|||
|
|
<a href="/volleyball.html">COMMUNITY SPORT</a>
|
|||
|
|
</nav>
|
|||
|
|
</body>
|
|||
|
|
</html>
|