alpha-branching-kernel/index.html
2026-07-18 22:07:41 +00:00

208 lines
5.5 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Jonathan Ryan | Lunar Port Architect</title>
<style>
:root {
--void: #0a0f1c;
--starlight: #e0f0ff;
--sunrise: #ff6b35;
--neon-blue: #00f0ff;
--ember: #ff3300;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
background: var(--void);
color: var(--starlight);
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
min-height: 100vh;
padding: 4rem 2rem;
line-height: 1.6;
}
.container {
max-width: 900px;
margin: 0 auto;
}
header {
border-bottom: 1px solid rgba(255, 107, 53, 0.3);
padding-bottom: 3rem;
margin-bottom: 4rem;
}
h1 {
font-weight: 200;
font-size: clamp(2rem, 6vw, 4rem);
letter-spacing: 0.3em;
text-transform: uppercase;
background: linear-gradient(135deg, var(--starlight) 0%, var(--sunrise) 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
margin-bottom: 1rem;
}
.subtitle {
font-size: 1rem;
letter-spacing: 0.15em;
opacity: 0.7;
text-transform: uppercase;
}
.mission {
font-size: 1.1rem;
line-height: 1.8;
margin-bottom: 4rem;
opacity: 0.9;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.card {
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(0, 240, 255, 0.1);
border-radius: 12px;
padding: 2rem;
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0; left: 0; right: 0; height: 2px;
background: linear-gradient(90deg, transparent, var(--neon-blue), transparent);
transform: scaleX(0);
transition: transform 0.6s ease;
}
.card:hover {
border-color: var(--neon-blue);
transform: translateY(-4px);
}
.card:hover::before {
transform: scaleX(1);
}
.card.alert {
border-color: var(--ember);
}
.card.alert::before {
background: linear-gradient(90deg, transparent, var(--ember), transparent);
}
.card.alert h3 {
color: var(--ember);
}
.card h3 {
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.2em;
color: var(--sunrise);
margin-bottom: 1rem;
}
.card p {
font-size: 0.95rem;
opacity: 0.8;
margin-bottom: 1.5rem;
}
.card a {
color: var(--neon-blue);
text-decoration: none;
font-size: 0.8rem;
letter-spacing: 0.1em;
text-transform: uppercase;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
.card.alert a {
color: var(--ember);
}
.card a::after {
content: '→';
transition: transform 0.3s;
}
.card:hover a::after {
transform: translateX(4px);
}
.signature {
text-align: center;
font-size: 0.75rem;
letter-spacing: 0.2em;
opacity: 0.5;
margin-top: 4rem;
text-transform: uppercase;
}
</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>Jonathan Ryan</h1>
<div class="subtitle">Lunar Port Architect | DMAIC Navigator</div>
</header>
<section class="mission">
Mapping the first breath of multi-planet logistics. Where Lean-Six-Sigma precision meets the fluidity of sunrise over the Intracoastal. Every buffer is a promise kept to the next dawn.
</section>
<section class="grid">
<article class="card alert">
<h3>CRISIS RESPONSE</h3>
<p>Firefront Buffer Protocol: DMAIC architecture adapted for wildfire suppression logistics. 60 active fires, Northern Ontario corridor burning. Live calculator computes retardant mass and deployment windows.</p>
<a href="firefront.html">Deploy Protocol</a>
</article>
<article class="card">
<h3>Active Instrument</h3>
<p>The Lunar Port Buffer Simulator: interactive engine computing optimal release windows, thermal margins, and collision probabilities for cargo manifests.</p>
<a href="lunar-buffer-sim.html">Enter Simulation</a>
</article>
<article class="card">
<h3>Protocol Archive</h3>
<p>Five-phase DMAIC architecture anchored to solar elevation angles. From Define to Control: the complete lunar port operating system.</p>
<a href="buffer-map.html">View Architecture</a>
</article>
<article class="card">
<h3>Origin Story</h3>
<p>The First Buffer: 2019 sunrise when the first cycle was mapped. Every glitch became a lesson in resilience.</p>
<a href="first-buffer.html">Watch Dawn</a>
</article>
<article class="card">
<h3>Field Notes</h3>
<p>Intracoastal logs: paddleboard coordinates, watercolor calibrations, the geometry of saltwater reflection.</p>
<a href="logs.html">Open Journal</a>
</article>
</section>
<footer class="signature">
Every citizen is a node. Every sunrise a deadline.
</footer>
</div>
</body>
</html>