264 lines
8.2 KiB
HTML
264 lines
8.2 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 Friction Coefficient | Belinda Crowder</title>
|
|
<style>
|
|
:root {
|
|
--steel: #2d3748;
|
|
--bronze: #c5a059;
|
|
--slate: #1a202c;
|
|
--paper: #f7fafc;
|
|
--ink: #2d3748;
|
|
--rust: #9b7244;
|
|
}
|
|
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
|
|
|
body {
|
|
font-family: 'Georgia', serif;
|
|
background: var(--slate);
|
|
color: var(--paper);
|
|
line-height: 1.6;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.header {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 8vh;
|
|
background: rgba(26, 32, 44, 0.95);
|
|
backdrop-filter: blur(10px);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0 4rem;
|
|
border-bottom: 1px solid var(--bronze);
|
|
z-index: 1000;
|
|
}
|
|
|
|
.brand {
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
letter-spacing: 0.1em;
|
|
color: var(--bronze);
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
nav ul {
|
|
display: flex;
|
|
list-style: none;
|
|
gap: 3rem;
|
|
}
|
|
|
|
nav a {
|
|
color: var(--paper);
|
|
text-decoration: none;
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.05em;
|
|
padding: 0.5rem 0;
|
|
border-bottom: 1px solid transparent;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
nav a:hover {
|
|
border-bottom-color: var(--bronze);
|
|
color: var(--bronze);
|
|
}
|
|
|
|
main {
|
|
min-height: 100vh;
|
|
padding-top: 8vh;
|
|
}
|
|
|
|
.hero {
|
|
height: calc(100vh - 8vh);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 0 12rem;
|
|
background: linear-gradient(180deg, var(--slate) 0%, var(--steel) 100%);
|
|
}
|
|
|
|
.hero-content {
|
|
max-width: 60ch;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 3.5rem;
|
|
font-weight: 300;
|
|
line-height: 1.1;
|
|
margin-bottom: 2rem;
|
|
color: var(--bronze);
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 1.4rem;
|
|
color: var(--paper);
|
|
opacity: 0.8;
|
|
margin-bottom: 3rem;
|
|
font-style: italic;
|
|
}
|
|
|
|
.manifesto {
|
|
font-size: 1.1rem;
|
|
line-height: 1.8;
|
|
margin-bottom: 3rem;
|
|
color: var(--paper);
|
|
}
|
|
|
|
.cta-group {
|
|
display: flex;
|
|
gap: 2rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.btn {
|
|
padding: 1rem 2.5rem;
|
|
border: 1px solid var(--bronze);
|
|
background: transparent;
|
|
color: var(--bronze);
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.1em;
|
|
text-transform: uppercase;
|
|
cursor: pointer;
|
|
text-decoration: none;
|
|
transition: all 0.3s ease;
|
|
}
|
|
|
|
.btn:hover {
|
|
background: var(--bronze);
|
|
color: var(--slate);
|
|
}
|
|
|
|
.stats-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
|
gap: 2rem;
|
|
margin-top: 4rem;
|
|
padding: 3rem;
|
|
background: rgba(45, 55, 72, 0.3);
|
|
border-left: 3px solid var(--bronze);
|
|
}
|
|
|
|
.stat-item h3 {
|
|
font-size: 2.5rem;
|
|
color: var(--bronze);
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.stat-label {
|
|
font-size: 0.85rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.image-gallery {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
gap: 1.5rem;
|
|
margin: 4rem 0;
|
|
}
|
|
|
|
.gallery-img {
|
|
width: 100%;
|
|
height: 400px;
|
|
object-fit: cover;
|
|
filter: sepia(0.3) contrast(1.1);
|
|
transition: transform 0.5s ease;
|
|
}
|
|
|
|
.gallery-img:hover {
|
|
transform: scale(1.02);
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
padding: 4rem 0;
|
|
border-top: 1px solid var(--bronze);
|
|
margin-top: 6rem;
|
|
}
|
|
|
|
.signature {
|
|
font-size: 0.9rem;
|
|
letter-spacing: 0.15em;
|
|
color: var(--bronze);
|
|
text-transform: uppercase;
|
|
}
|
|
</style>
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
|
</head>
|
|
<body>
|
|
<header class="header">
|
|
<div class="brand">Belinda Crowder</div>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Manifesto</a></li>
|
|
<li><a href="ocr-lineage.html">OCR Lineage</a></li>
|
|
<li><a href="whitman-ledger.html">Whitman Ledger</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<section class="hero">
|
|
<div class="hero-content">
|
|
<h1>The Friction Coefficient</h1>
|
|
|
|
<div class="subtitle">
|
|
While the galaxy pours gold into cracks, I measure the resistance that keeps the system moving.
|
|
</div>
|
|
|
|
<div class="manifesto">
|
|
<p>I started my shift in 1987 at the Boston District Facility, watching the first barcode sorters wake up at dawn. They didn't chant mantras. They calculated dwell times.</p>
|
|
<br>
|
|
<p>This is not a poem about scars. This is a ledger of torque specifications, optical resolution thresholds, and the precise moment when pattern recognition becomes prophecy.</p>
|
|
<br>
|
|
<p>Robson Lowe defined postal history in 1942. He knew: every stamp tells a story of engineering, not just artistry.</p>
|
|
</div>
|
|
|
|
<div class="stats-grid">
|
|
<div class="stat-item">
|
|
<h3>4,102</h3>
|
|
<div class="stat-label">Monthly Views on OCR</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<h3>Q167555</h3>
|
|
<div class="stat-label">Wikidata Entity</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<h3>0.24</h3>
|
|
<div class="stat-label">Velocity Score</div>
|
|
</div>
|
|
<div class="stat-item">
|
|
<h3>1987</h3>
|
|
<div class="stat-label">First Shift</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="image-gallery">
|
|
<img src="https://images.pexels.com/photos/11679684/pexels-photo-11679684.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Industrial conveyor belt system representing the mechanics of mail sorting" class="gallery-img">
|
|
<img src="https://images.pexels.com/photos/34222005/pexels-photo-34222005.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=650&w=940" alt="Automated factory conveyor system showing precision movement" class="gallery-img">
|
|
</div>
|
|
|
|
<div class="cta-group">
|
|
<a href="ocr-lineage.html" class="btn">Enter the Lineage</a>
|
|
<a href="whitman-ledger.html" class="btn">Open the Ledger</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<footer>
|
|
<div class="signature">
|
|
Whitman, Massachusetts • Postal Operations Expert<br>
|
|
Built on Wikidata Q1516929 • Pattern Recognition Subclass
|
|
</div>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|