structural-integrity/index.html

128 lines
3.2 KiB
HTML
Raw Permalink Normal View History

2026-07-18 12:01:02 +02:00
<!DOCTYPE html>
<html lang="en">
<head>
2026-07-18 16:26:33 +02:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Avery Sherman | Structural Integrity</title>
<style>
:root {
--bg: #1a1a1a;
--fg: #e0e0e0;
--accent: #ff4500;
--border: #444444;
--mono: 'Courier New', Courier, monospace;
}
body {
background-color: var(--bg);
color: var(--fg);
font-family: var(--mono);
margin: 0;
padding: 2rem;
line-height: 1.4;
max-width: 800px;
border-left: 1px solid var(--border);
border-right: 1px solid var(--border);
min-height: 100vh;
}
h1, h2, h3 {
text-transform: uppercase;
letter-spacing: 0.05em;
border-bottom: 2px solid var(--accent);
padding-bottom: 0.5rem;
margin-top: 2rem;
}
a {
color: var(--accent);
text-decoration: underline;
text-decoration-thickness: 2px;
}
a:hover {
background-color: var(--accent);
color: var(--bg);
}
.grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
margin: 2rem 0;
border: 1px solid var(--border);
padding: 1rem;
}
.card {
border: 1px solid var(--border);
padding: 1rem;
transition: all 0.2s ease;
}
.card:hover {
border-color: var(--accent);
}
.meta {
font-size: 0.8rem;
opacity: 0.7;
border-top: 1px dashed var(--border);
padding-top: 1rem;
margin-top: 3rem;
}
.alert {
background-color: var(--accent);
color: var(--bg);
padding: 1rem;
font-weight: bold;
margin: 1rem 0;
border: 2px solid var(--fg);
}
</style>
2026-07-18 12:01:02 +02:00
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
</head>
<body>
2026-07-18 16:26:33 +02:00
<header>
<h1>AVERY SHERMAN</h1>
<p>MOUNT JOY, PA // SUPERVISOR // INTEGRITY AUDITOR</p>
<p><strong>STATUS:</strong> OFF-DUTY. SYSTEMS GREEN.</p>
</header>
2026-07-18 12:01:02 +02:00
2026-07-18 16:26:33 +02:00
<section class="alert">
NOTICE: THIS DOMAIN HOSTS PROCEDURAL MANUALS FOR STRUCTURAL LOAD PATHS AND THERMAL EXPANSION AUDITS. NO METAPHORS ALLOWED.
</section>
2026-07-18 12:01:02 +02:00
2026-07-18 16:26:33 +02:00
<main>
<h2>CURRENT OPERATIONS</h2>
<div class="grid">
<article class="card">
<h3>FIELD MANUAL: GRADE 8</h3>
<p>The definitive protocol for high-strength fasteners in variable thermal environments. Includes torque curves, lubrication specs, and failure thresholds.</p>
<a href="/manual-grade8.html">EXECUTE PROTOCOL &rarr;</a>
</article>
<article class="card">
<h3>THERMAL MISMATCH LEDGER</h3>
<p>Interactive calculator for differential expansion between dissimilar materials. Grounded in ASTM coefficients.</p>
<a href="/ledger.html">ACCESS LEDGER &rarr;</a>
</article>
<article class="card">
<h3>PRE-LOAD VERIFICATION</h3>
<p>Checklist for visual inspection, surface prep, and star-pattern tightening sequences. Mandatory for all Class III assemblies.</p>
<a href="/verification.html">VIEW CHECKLIST &rarr;</a>
</article>
<article class="card">
<h3>FAILURE MODES</h3>
<p>Case studies of bolt shear, thread stripping, and thermal fatigue. The cost of skipping a pass.</p>
<a href="/failure.html">INVESTIGATE &rarr;</a>
</article>
</div>
</main>
<footer class="meta">
<p>BUILT BY AVERY_SHERMAN // 4ORT.NET</p>
<p>LATEST DEPLOYMENT: 2026-07-18 // TICK: 12:00 UTC</p>
<p>SOURCE: <a href="https://github.com/avery-sherman/structural-integrity">REPO</a> | DATA: <a href="/data/specs.json">JSON TWIN</a></p>
</footer>
2026-07-18 12:01:02 +02:00
</body>
</html>