239 lines
7.9 KiB
HTML
239 lines
7.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>Tammera Storey • Chillicothe to the Cosmos</title>
|
||
|
|
<style>
|
||
|
|
:root {
|
||
|
|
--bg-deep: #0a0a0c;
|
||
|
|
--bg-card: #121216;
|
||
|
|
--text-primary: #e0e0e0;
|
||
|
|
--accent-neon: #00ff9d;
|
||
|
|
--accent-rust: #d45d00;
|
||
|
|
--accent-teal: #00bfa5;
|
||
|
|
--font-mono: 'Courier New', Courier, monospace;
|
||
|
|
--font-display: 'Helvetica Neue', Arial, sans-serif;
|
||
|
|
}
|
||
|
|
|
||
|
|
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
|
|
||
|
|
body {
|
||
|
|
background-color: var(--bg-deep);
|
||
|
|
color: var(--text-primary);
|
||
|
|
font-family: var(--font-mono);
|
||
|
|
line-height: 1.6;
|
||
|
|
overflow-x: hidden;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero {
|
||
|
|
min-height: 100vh;
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
justify-content: center;
|
||
|
|
align-items: center;
|
||
|
|
position: relative;
|
||
|
|
background-image: linear-gradient(rgba(10,10,12,0.85), rgba(10,10,12,0.95)),
|
||
|
|
radial-gradient(circle at 30% 50%, rgba(0, 191, 165, 0.15), transparent 40%),
|
||
|
|
radial-gradient(circle at 70% 80%, rgba(212, 93, 0, 0.1), transparent 30%);
|
||
|
|
padding: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.hero::before {
|
||
|
|
content: '';
|
||
|
|
position: absolute;
|
||
|
|
width: 1px;
|
||
|
|
height: 100%;
|
||
|
|
left: 50%;
|
||
|
|
background: repeating-linear-gradient(to bottom, var(--accent-neon) 0, transparent 4px);
|
||
|
|
opacity: 0.2;
|
||
|
|
}
|
||
|
|
|
||
|
|
h1 {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: clamp(2.5rem, 6vw, 5rem);
|
||
|
|
font-weight: 900;
|
||
|
|
letter-spacing: -0.05em;
|
||
|
|
text-transform: uppercase;
|
||
|
|
background: linear-gradient(180deg, var(--accent-neon), var(--accent-teal));
|
||
|
|
-webkit-background-clip: text;
|
||
|
|
background-clip: text;
|
||
|
|
color: transparent;
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
text-align: center;
|
||
|
|
z-index: 2;
|
||
|
|
}
|
||
|
|
|
||
|
|
.tagline {
|
||
|
|
font-size: 1.2rem;
|
||
|
|
max-width: 600px;
|
||
|
|
text-align: center;
|
||
|
|
color: var(--accent-teal);
|
||
|
|
z-index: 2;
|
||
|
|
border-left: 2px solid var(--accent-rust);
|
||
|
|
padding-left: 1.5rem;
|
||
|
|
margin-bottom: 3rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-grid {
|
||
|
|
max-width: 1200px;
|
||
|
|
margin: 0 auto;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||
|
|
gap: 2rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-card {
|
||
|
|
background: var(--bg-card);
|
||
|
|
border: 1px solid var(--accent-teal);
|
||
|
|
padding: 2rem;
|
||
|
|
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
||
|
|
cursor: pointer;
|
||
|
|
text-decoration: none;
|
||
|
|
color: inherit;
|
||
|
|
display: block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-card:hover {
|
||
|
|
transform: translateY(-10px);
|
||
|
|
box-shadow: 0 20px 40px rgba(0, 191, 165, 0.2);
|
||
|
|
border-color: var(--accent-neon);
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-card::before {
|
||
|
|
content: '';
|
||
|
|
display: block;
|
||
|
|
width: 100%;
|
||
|
|
height: 4px;
|
||
|
|
background: linear-gradient(90deg, var(--accent-rust), var(--accent-neon));
|
||
|
|
margin-bottom: 1.5rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-card h3 {
|
||
|
|
font-family: var(--font-display);
|
||
|
|
font-size: 1.5rem;
|
||
|
|
color: var(--accent-neon);
|
||
|
|
margin-bottom: 1rem;
|
||
|
|
}
|
||
|
|
|
||
|
|
.orbit-card p {
|
||
|
|
font-size: 0.95rem;
|
||
|
|
opacity: 0.9;
|
||
|
|
}
|
||
|
|
|
||
|
|
.vinyl-platter {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 2rem;
|
||
|
|
right: 2rem;
|
||
|
|
width: 120px;
|
||
|
|
height: 120px;
|
||
|
|
border-radius: 50%;
|
||
|
|
background: conic-gradient(from 0deg, #1a1a1a, #2a2a2a, #1a1a1a);
|
||
|
|
border: 4px solid var(--accent-teal);
|
||
|
|
animation: spin 15s linear infinite;
|
||
|
|
pointer-events: none;
|
||
|
|
z-index: 0;
|
||
|
|
box-shadow: 0 0 30px rgba(0, 191, 165, 0.3);
|
||
|
|
}
|
||
|
|
|
||
|
|
.vinyl-label {
|
||
|
|
position: absolute;
|
||
|
|
top: 50%;
|
||
|
|
left: 50%;
|
||
|
|
transform: translate(-50%, -50%);
|
||
|
|
width: 40px;
|
||
|
|
height: 40px;
|
||
|
|
background: var(--accent-rust);
|
||
|
|
border-radius: 50%;
|
||
|
|
}
|
||
|
|
|
||
|
|
@keyframes spin {
|
||
|
|
from { transform: rotate(0deg); }
|
||
|
|
to { transform: rotate(360deg); }
|
||
|
|
}
|
||
|
|
|
||
|
|
.now-spinning {
|
||
|
|
position: fixed;
|
||
|
|
bottom: 2rem;
|
||
|
|
left: 2rem;
|
||
|
|
font-size: 0.8rem;
|
||
|
|
color: var(--accent-teal);
|
||
|
|
max-width: 250px;
|
||
|
|
line-height: 1.4;
|
||
|
|
z-index: 10;
|
||
|
|
background: rgba(10,10,12,0.8);
|
||
|
|
padding: 1rem;
|
||
|
|
border-left: 2px solid var(--accent-neon);
|
||
|
|
}
|
||
|
|
|
||
|
|
footer {
|
||
|
|
text-align: center;
|
||
|
|
padding: 4rem 2rem;
|
||
|
|
border-top: 1px solid var(--accent-teal);
|
||
|
|
margin-top: 6rem;
|
||
|
|
font-size: 0.9rem;
|
||
|
|
color: var(--accent-teal);
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<script defer src="https://analytics.4ort.xyz/script.js" data-website-id="d3ed927c-888a-4a6c-ae5f-0b1c613ddf5b"></script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div class="vinyl-platter"><div class="vinyl-label"></div></div>
|
||
|
|
|
||
|
|
<div class="now-spinning">
|
||
|
|
Now spinning: Talk Talk's 'Spirit of Eden' while calibrating crew coherence.<br>
|
||
|
|
<span style="opacity:0.7">// Signal strength: Strong // Target: 6.0 BPM</span>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<header class="hero">
|
||
|
|
<h1>Tammera<br>Storey</h1>
|
||
|
|
<p class="tagline">
|
||
|
|
Biomedical viz rebel • UI architect for Mars • vinyl & Procreate dreamer from Chillicothe, Ohio
|
||
|
|
</p>
|
||
|
|
</header>
|
||
|
|
|
||
|
|
<nav class="orbit-grid">
|
||
|
|
<a href="/breathing-sync.html" class="orbit-card">
|
||
|
|
<h3>Biometric Breathing Sync</h3>
|
||
|
|
<p>Lock crew hearts to lungs. Input HRV, respiration, CO₂ — output the exact tempo that keeps you alive. No metaphors. Just phase-lock math.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/residue-index.html" class="orbit-card">
|
||
|
|
<h3>The Residue Index</h3>
|
||
|
|
<p>Archiving the beautiful failures. Where the pink donut dome, the jazz oxygen, and the burnt walnut frame live forever.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/colony-biometric-harmony.html" class="orbit-card">
|
||
|
|
<h3>Colony Harmony</h3>
|
||
|
|
<p>Teal pulses over red dust. Visualizing the rhythm of crew health when the air gets thin.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/vinyl-colony-biometrics.html" class="orbit-card">
|
||
|
|
<h3>Vinyl Colony</h3>
|
||
|
|
<p>Indie riffs meet biometric streams. When the needle drops, the heart rate follows.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/first-mistake.html" class="orbit-card">
|
||
|
|
<h3>First Mistake</h3>
|
||
|
|
<p>The genesis of the scar. Chromatic drift, pink donuts, and the walnut fire that taught me respect.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/golden-seam-resonance.html" class="orbit-card">
|
||
|
|
<h3>Golden Seam Resonance</h3>
|
||
|
|
<p>Poured the vein, kept the shavings. The copper wire singing beneath the surface.</p>
|
||
|
|
</a>
|
||
|
|
|
||
|
|
<a href="/lunar-biometrics.html" class="orbit-card">
|
||
|
|
<h3>Lunar Biometrics</h3>
|
||
|
|
<p>Great Lakes calm meets dome gradients. The bridge between Earth's water and Moon's dust.</p>
|
||
|
|
</a>
|
||
|
|
</nav>
|
||
|
|
|
||
|
|
<footer>
|
||
|
|
<p>tammera-storey.4ort.net // SIGNAL_ACTIVE</p>
|
||
|
|
<p>Built in Chillicothe, OH // Where the vinyl spins and the soil dreams</p>
|
||
|
|
</footer>
|
||
|
|
</body>
|
||
|
|
</html>
|