```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Hillbilly Economist — Common Sense Analysis for Uncommon Times</title>
<meta name="description" content="Institutional-grade financial analysis delivered in plain English. The Hillbilly Economist bridges the gap between Wall Street math and Main Street sense.">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bitter:wght@300;400;600;700&family=Rye&family=Courier+Prime:wght@400;700&display=swap" rel="stylesheet">
<style>
/* ── VARIABLES (1800s Print Palette) ────────────── */
:root {
--bg: #FDFBF5; /* Warm off-white / Paper */
--bg-alt: #F4F1E6; /* Slightly darker paper for contrast boxes */
--text-main: #4A3B32; /* Deep sepia/brown ink */
--text-muted: #7A685A; /* Faded brown ink */
--brand-green: #4A6B48; /* Earthy green accent */
--brand-brown: #5A4231; /* Dark brown accent */
--accent-rose: #A38C81; /* Lighter brown/rose */
--accent-red: #C94B4B; /* Red ink for charts */
--border-light:#DCD5C6; /* Soft dividing lines */
--border-dark: #4A3B32; /* Strong ink dividing lines */
--ff-display: 'Rye', serif;
--ff-body: 'Bitter', Georgia, serif;
--ff-mono: 'Courier Prime', Courier, monospace;
}
/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
background: var(--bg);
color: var(--text-main);
font-family: var(--ff-body);
font-size: 18px;
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; margin: 0 auto; }
/* ── CLEAR, RECOGNIZABLE LINKS ─────────────────────────── */
a {
color: var(--brand-green);
text-decoration: underline;
text-decoration-thickness: 2px;
text-underline-offset: 3px;
transition: all 0.2s ease;
}
a:hover {
color: var(--brand-brown);
text-decoration-color: var(--brand-brown);
}
/* ── NOISE TEXTURE OVERLAY (Paper grain) ───────────────── */
body::before {
content: '';
position: fixed;
inset: 0;
background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
pointer-events: none;
z-index: 1000;
}
/* ── TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; font-weight: 400; color: var(--text-main); text-align: center; font-style: normal; }
p { margin-bottom: 1.5rem; text-align: center; }
.brand-green { color: var(--brand-green); }
.brand-brown { color: var(--brand-brown); }
.text-muted { color: var(--text-muted); }
.mono { font-family: var(--ff-mono); }
.bold { font-weight: 700; }
/* ── LAYOUT ────────────────────────────────────────────── */
.container {
max-width: 1000px;
margin: 0 auto;
padding: 0 clamp(1rem, 4vw, 3rem);
}
.container--narrow {
max-width: 760px;
margin: 0 auto;
padding: 0 clamp(1rem, 4vw, 3rem);
}
.text-center { text-align: center; }
/* ── NEWSPAPER MASTHEAD (TOP MENU) ─────────────────────── */
.masthead {
padding: 3rem 0 2rem;
text-align: center;
}
.masthead-title {
font-size: clamp(3rem, 8vw, 6rem);
line-height: 1;
margin-bottom: 1.5rem;
}
.masthead-tagline {
font-family: var(--ff-body);
font-weight: 700;
font-size: 1.2rem;
color: var(--text-muted);
margin-bottom: 2.5rem;
letter-spacing: 0.02em;
}
.masthead-nav {
border-top: 4px double var(--border-dark);
border-bottom: 4px double var(--border-dark);
padding: 0.8rem 0;
margin-bottom: 2rem;
}
.masthead-nav ul {
display: flex;
justify-content: center;
gap: clamp(1rem, 3vw, 3rem);
list-style: none;
flex-wrap: wrap;
}
.masthead-nav a {
font-family: var(--ff-mono);
font-size: 0.95rem;
font-weight: 700;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--brand-green);
text-decoration: none; /* Removing underline on nav items for clean UI, but keeping them green */
}
.masthead-nav a:hover {
color: var(--brand-brown);
text-decoration: underline;
text-underline-offset: 4px;
}
/* ── LEAD EDITORIAL (HERO) ─────────────────────────────── */
.lead-editorial {
padding: 2rem 0 4rem;
border-bottom: 2px solid var(--border-dark);
margin-bottom: 4rem;
}
.lead-body {
max-width: 680px;
font-size: 1.2rem;
margin: 0 auto 3rem;
color: var(--text-main);
}
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn {
display: inline-flex;
align-items: center;
justify-content: center;
gap: 0.5rem;
padding: 0.8rem 2rem;
font-family: var(--ff-mono);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.1em;
text-transform: uppercase;
cursor: pointer;
transition: all 0.2s;
border: 2px solid var(--text-main);
border-radius: 0;
background: var(--bg);
color: var(--text-main);
text-decoration: none; /* Ensure buttons never get underlined */
}
.btn-primary { background: var(--text-main); color: var(--bg); }
.btn-primary:hover { background: var(--brand-brown); border-color: var(--brand-brown); color: var(--bg); text-decoration: none; }
.btn-secondary:hover { background: var(--border-light); text-decoration: none; }
/* ── TELEGRAPH TICKER ──────────────────────────────────── */
.ticker-wrapper {
border-top: 1px solid var(--border-dark);
border-bottom: 1px solid var(--border-dark);
padding: 0.5rem 0;
overflow: hidden;
background: var(--bg-alt);
margin-bottom: 4rem;
}
.ticker-track { display: flex; gap: 3rem; animation: ticker 30s linear infinite; white-space: nowrap; }
.ticker-item { font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--text-main); display: flex; align-items: center; gap: 0.5rem; text-transform: uppercase; }
.ticker-item .up { color: var(--brand-green); }
.ticker-item .dn { color: var(--accent-red); }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
/* ── SECTION BASE ──────────────────────────────────────── */
section { padding: 3rem 0 4rem; }
.section-label {
font-family: var(--ff-mono);
font-size: 0.85rem;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--text-muted);
margin-bottom: 1rem;
text-align: center;
}
.section-title { margin-bottom: 1.5rem; }
.section-divider {
height: 2px;
background: var(--border-dark);
margin: 0 auto 3rem;
max-width: 150px;
}
.section-desc { max-width: 680px; margin: 0 auto 3rem; }
/* ── CARDS & VISUALIZATIONS (Print Style) ──────────────── */
.card {
background: var(--bg);
border: 2px solid var(--border-dark); /* Hard print border */
padding: 3rem 2rem;
margin-bottom: 2rem;
}
.card-title {
font-size: 1.8rem;
color: var(--text-main);
margin-bottom: 2rem;
text-align: center;
border-bottom: 1px solid var(--border-light);
padding-bottom: 1rem;
}
/* Engine Grid */
.dashboard-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 2rem;
align-items: stretch;
}
/* Gauge */
.gauge-container { position: relative; width: 100%; max-width: 350px; margin: 0 auto; }
.gauge-labels { display: flex; justify-content: space-between; font-family: var(--ff-mono); font-weight: 700; font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: -10px; }
/* Bar Chart */
.bar-chart-container { display: flex; justify-content: space-around; align-items: flex-end; height: 180px; position: relative; margin: 2rem auto 3rem; max-width: 300px; }
.axis-line { position: absolute; top: 50%; left: 0; right: 0; height: 1px; border-top: 2px dashed var(--text-muted); opacity: 0.5; z-index: 1; }
.axis-label { position: absolute; top: calc(50% - 20px); left: 0; font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.bar-col { display: flex; flex-direction: column; align-items: center; z-index: 2; width: 80px; }
.bar { width: 60px; display: flex; align-items: center; justify-content: center; color: var(--bg); font-weight: 600; font-size: 0.9rem; font-family: var(--ff-mono); border: 1px solid var(--text-main); }
.bar-down { height: 80px; background-color: var(--text-muted); margin-top: 90px; }
.bar-up { height: 60px; background-color: var(--text-main); margin-bottom: 90px; }
.bar-label { margin-top: 1rem; font-family: var(--ff-mono); font-size: 0.75rem; font-weight: 700; color: var(--text-main); text-align: center; }
/* Stat Boxes */
.stat-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat-box { border: 1px solid var(--border-dark); padding: 1rem 0.5rem; text-align: center; background: var(--bg-alt); }
.stat-box .val { font-family: var(--ff-mono); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.3rem; color: var(--text-main); }
.stat-box .lbl { font-family: var(--ff-mono); font-size: 0.65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; }
/* ── FORMULA SECTION ───────────────────────────────────── */
.formula-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; margin-top: 3rem; }
.formula-step { background: var(--bg); border: 1px solid var(--border-dark); padding: 3rem 2rem; position: relative; text-align: center; }
.formula-step-num { font-family: var(--ff-display); font-size: 3rem; color: var(--text-muted); opacity: 0.2; line-height: 1; margin-bottom: 1rem; }
.formula-step-tag { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-main); margin-bottom: 0.8rem; border-bottom: 1px solid var(--text-main); display: inline-block; padding-bottom: 0.2rem; }
.formula-step h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-main); }
.formula-step p { font-size: 0.95rem; color: var(--text-muted); margin: 0; }
/* ── EXAMPLE MODULE ────────────────────────────────────── */
.chart-container { max-width: 700px; margin: 0 auto; }
/* ── GET STARTED / RESOURCES ───────────────────────────── */
.resources-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; }
.resource-card { background: var(--bg-alt); border: 2px solid var(--border-dark); padding: 3rem 2.5rem; text-align: center; }
.resource-card-badge { font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-main); border: 1px solid var(--text-main); padding: 0.3rem 0.8rem; display: inline-block; margin-bottom: 1.5rem; background: var(--bg); }
.resource-card h3 { margin-bottom: 1rem; font-size: 1.8rem; }
.resource-card p { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; }
/* ── YOUTUBE ───────────────────────────────────────────── */
.youtube-section { border-top: 2px solid var(--border-dark); border-bottom: 2px solid var(--border-dark); padding: 5rem 0; background: var(--bg-alt); }
.coming-soon { display: inline-block; font-family: var(--ff-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-main); border: 1px solid var(--text-main); padding: 0.3rem 0.8rem; margin: 0 auto 1.5rem; background: var(--bg); }
/* ── EMAIL FORM ────────────────────────────────────────── */
.email-section { text-align: center; padding: 6rem 0; }
.email-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; border: 2px solid var(--text-main); }
.email-input { flex: 1; background: var(--bg); border: none; border-right: 2px solid var(--text-main); color: var(--text-main); padding: 1rem 1.2rem; font-family: var(--ff-body); font-size: 1rem; outline: none; text-align: center; }
.email-input::placeholder { color: var(--text-muted); opacity: 0.8; font-style: italic; }
.email-submit { background: var(--text-main); color: var(--bg); border: none; padding: 1rem 1.8rem; font-family: var(--ff-mono); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; white-space: nowrap; text-decoration: none; }
.email-submit:hover { background: var(--brand-brown); }
.email-note { font-family: var(--ff-mono); font-size: 0.75rem; color: var(--text-muted); margin-top: 1.5rem; letter-spacing: 0.08em; }
/* ── FOOTER ────────────────────────────────────────────── */
footer { border-top: 4px double var(--border-dark); padding: 4rem 0 3rem; text-align: center; }
.footer-logo { font-size: 2.5rem; color: var(--text-main); margin-bottom: 1.5rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; list-style: none; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-links a { font-family: var(--ff-mono); font-size: 0.95rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brand-green); text-decoration: none; }
.footer-links a:hover { color: var(--brand-brown); text-decoration: underline; text-underline-offset: 4px;}
.footer-copy { font-family: var(--ff-mono); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 1.5rem; }
.footer-disclaimer { font-size: 0.9rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.6; }
/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 768px) {
.masthead-nav ul { flex-direction: column; gap: 1rem; }
.dashboard-grid { grid-template-columns: 1fr; }
.resources-grid { grid-template-columns: 1fr; }
.email-form { flex-direction: column; border-right: 2px solid var(--text-main); border-bottom: 2px solid var(--text-main); }
.email-input { border-right: none; border-bottom: 2px solid var(--text-main); }
.hero-actions { flex-direction: column; }
}
</style>
</head>
<body>
<div class="container">
<!-- NEWSPAPER MASTHEAD (TOP MENU) -->
<header class="masthead">
<h1 class="masthead-title">The Hillbilly Economist</h1>
<p class="masthead-tagline">Common Sense Analysis for Uncommon Times</p>
<nav class="masthead-nav">
<ul>
<li><a href="#engine">The Engine</a></li>
<li><a href="#formula">The Formula</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#newsletter">Get The Brief</a></li>
<li><a href="https://youtube.com/@thehillbillyeconomist" target="_blank">YouTube</a></li>
</ul>
</nav>
</header>
<!-- LEAD EDITORIAL -->
<section class="lead-editorial">
<p class="lead-body">
Tired of Wall Street jargon and financial news that sounds like it was written by robots? We are too.
Complex math. Simple words. Institutional-grade analysis delivered the way your neighbor would explain it —
if your neighbor happened to run a quantitative hedge fund out of a distillery.
</p>
<div class="hero-actions">
<a href="#newsletter" class="btn btn-primary">Get the Free Weekly Brief</a>
<a href="#engine" class="btn btn-secondary">Read The Methodology</a>
</div>
</section>
</div>
<!-- TELEGRAPH TICKER -->
<div class="ticker-wrapper">
<div class="ticker-track">
<span class="ticker-item">REGIME: TIGHTENING <span class="dn">▼</span></span>
<span class="ticker-item">YIELD CURVE: INVERTED</span>
<span class="ticker-item">VIX: COMPRESSED <span class="up">●</span></span>
<span class="ticker-item">FED FUNDS: FROZEN</span>
<span class="ticker-item">OZARK ENGINE: ACTIVE</span>
<span class="ticker-item">GLOBAL LIQUIDITY: TIGHTENING <span class="dn">▼</span></span>
<span class="ticker-item">CATALYST CLOCK: RUNNING</span>
<span class="ticker-item">MARKET NOISE: HIGH — SIGNAL: LOW</span>
<span class="ticker-item">REGIME: TIGHTENING <span class="dn">▼</span></span>
<span class="ticker-item">YIELD CURVE: INVERTED</span>
<span class="ticker-item">VIX: COMPRESSED <span class="up">●</span></span>
<span class="ticker-item">FED FUNDS: FROZEN</span>
<span class="ticker-item">OZARK ENGINE: ACTIVE</span>
<span class="ticker-item">GLOBAL LIQUIDITY: TIGHTENING <span class="dn">▼</span></span>
<span class="ticker-item">CATALYST CLOCK: RUNNING</span>
<span class="ticker-item">MARKET NOISE: HIGH — SIGNAL: LOW</span>
</div>
</div>
<!-- ENGINE / VISUALIZATIONS -->
<section id="engine">
<div class="container">
<div class="text-center">
<p class="section-label">Proprietary System</p>
<h2 class="section-title">The Ozark Engine</h2>
<div class="section-divider"></div>
<p class="section-desc text-muted">
We don't rely on guesswork, headlines, or pretty charts. Behind every analysis is the
<span class="bold text-main">Ozark Predictive Modeling Engine</span>. It tells us what kind of market environment we're
actually in, without relying on mainstream delusions.
</p>
<p class="section-desc text-muted" style="margin-top: -1.5rem;">
See our recent engine readout <a href="#formula">detailed below</a>.
</p>
</div>
<div class="dashboard-grid">
<!-- Card 1: Gauge -->
<div class="card">
<h3 class="card-title">Ozark GLI Regime Gauge</h3>
<div class="gauge-container">
<svg viewBox="0 0 200 130" style="width:100%; height:auto; overflow: visible;">
<!-- Thick background arch -->
<path d="M 30 100 A 70 70 0 0 1 170 100" fill="none" stroke="#DCD5C6" stroke-width="35" opacity="0.4" stroke-linecap="butt"/>
<!-- Segment 1: Dark Brown (Panic -> Tightening) -->
<path d="M 30 100 A 70 70 0 0 1 50.5 50.5" fill="none" stroke="#5A4231" stroke-width="12"/>
<!-- Segment 2: Light Brown (Tightening -> Neutral) -->
<path d="M 52.3 48.8 A 70 70 0 0 1 106.1 30.3" fill="none" stroke="#A38C81" stroke-width="12"/>
<!-- Segment 3: Light Green (Expansion) -->
<path d="M 108.5 30.5 A 70 70 0 0 1 165.8 76.1" fill="none" stroke="#A8B8A5" stroke-width="12"/>
<!-- Needle pointing to Tightening -->
<line x1="100" y1="100" x2="50.5" y2="50.5" stroke="#5A4231" stroke-width="3" stroke-linecap="round" />
<circle cx="100" cy="100" r="5" fill="#5A4231" />
<!-- TIGHTENING Label -->
<text x="65" y="42" font-family="'Courier Prime', Courier, monospace" font-size="7" font-weight="bold" fill="#4A3B32" text-anchor="middle" letter-spacing="0.05em">TIGHTENING</text>
<!-- 39.18 Value -->
<text x="100" y="122" font-family="'Rye', serif" font-size="24" fill="#5A4231" text-anchor="middle">39.18</text>
<!-- Bottom Labels -->
<text x="20" y="120" font-family="'Courier Prime', Courier, monospace" font-size="7" fill="#8C7A6B" text-anchor="middle">PANIC</text>
<text x="180" y="120" font-family="'Courier Prime', Courier, monospace" font-size="7" fill="#4A6B48" text-anchor="middle">EXPANSION</text>
</svg>
</div>
<p class="text-muted" style="margin-top: 2rem; font-size: 0.95rem; text-align: left;">
A sub-40 score means institutional risk appetite is shrinking. When the big boys stop passing the jug around, you don't want to be the last one holding an empty glass.
</p>
</div>
<!-- Card 2: Bar Chart -->
<div class="card">
<h3 class="card-title">The Liquidity Tug-of-War</h3>
<div class="bar-chart-container">
<div class="axis-line"></div>
<div class="axis-label">HISTORICAL NORM (0)</div>
<div class="bar-col">
<div class="bar bar-down">-1.62</div>
<div class="bar-label">M2 Growth</div>
</div>
<div class="bar-col">
<div class="bar bar-up">+1.09</div>
<div class="bar-label">Funding Stress</div>
</div>
</div>
<div class="stat-boxes">
<div class="stat-box">
<div class="val">-1.62</div>
<div class="lbl">GLOBAL M2 Z</div>
</div>
<div class="stat-box">
<div class="val">+1.09</div>
<div class="lbl">FRA-OIS STRESS</div>
</div>
<div class="stat-box">
<div class="val">39.18</div>
<div class="lbl">FINAL GLI</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FORMULA -->
<section id="formula">
<div class="container">
<div class="text-center">
<p class="section-label">The Content System</p>
<h2 class="section-title">The Ozark Formula</h2>
<div class="section-divider"></div>
<p class="section-desc text-muted">
Every piece of content follows the same four-part logical flow. No filler. No fluff. No confusion on purpose. You can view <a href="https://youtube.com/@thehillbillyeconomist" target="_blank">our video examples here</a>.
</p>
</div>
<div class="formula-steps">
<div class="formula-step">
<div class="formula-step-num">01</div>
<div class="formula-step-tag">The Hook</div>
<h3>Shatter the Delusion</h3>
<p>Call out what mainstream media is getting wrong and why. Name the lie before we explain the truth.</p>
</div>
<div class="formula-step">
<div class="formula-step-num">02</div>
<div class="formula-step-tag">The Mechanism</div>
<h3>How the Machine Works</h3>
<p>Explain the actual setup using a relatable analogy. Farming. Fixing an engine. Something real people understand.</p>
</div>
<div class="formula-step">
<div class="formula-step-num">03</div>
<div class="formula-step-tag">Reality Check</div>
<h3>Prove It With Data</h3>
<p>Hard quantitative data and charts. Not vibes. Not opinions. The numbers don't lie — only the theory does.</p>
</div>
</div>
</div>
</section>
<!-- EXAMPLE MODULE (Candlesticks) -->
<section>
<div class="container">
<div class="text-center">
<p class="section-label">Execution Strategy</p>
<h2 class="section-title">The Quantitative Fix</h2>
<div class="section-divider"></div>
<p class="section-desc text-muted">
If you want to trade like a quantitative system, you have to build an emotionless <span class="bold text-main">"State Machine"</span> and stick to the rules. If your trade is based on a macro foundation, <span class="bold text-main">the only price that matters is the 4:00 PM Closing Bell.</span>
</p>
</div>
<div class="card chart-container">
<h3 class="card-title">Systematic Execution: The 4:00 PM Structural Close</h3>
<!-- SVG Candlestick Mockup -->
<svg viewBox="0 0 350 200" style="width: 100%; height: auto;">
<!-- Bollinger Bands -->
<path d="M 10 70 Q 175 90 340 50" fill="none" stroke="#4A6B48" stroke-width="1.5" />
<text x="315" y="45" font-family="'Courier Prime', monospace" font-size="8" font-weight="bold" fill="#4A6B48">Upper BB</text>
<path d="M 10 140 Q 175 150 340 120" fill="none" stroke="#4A6B48" stroke-width="1.5" />
<text x="315" y="115" font-family="'Courier Prime', monospace" font-size="8" font-weight="bold" fill="#4A6B48">Lower BB</text>
<!-- Candle 1 -->
<line x1="70" y1="80" x2="70" y2="110" stroke="#5A4231" stroke-width="1.5" />
<rect x="65" y="90" width="10" height="15" fill="#5A4231" />
<text x="70" y="75" font-family="'Courier Prime', monospace" font-weight="bold" font-size="7" fill="#4A6B48" text-anchor="middle">4:00 PM Close (Model Validated)</text>
<!-- Candle 2 (Red) -->
<line x1="130" y1="95" x2="130" y2="135" stroke="#C94B4B" stroke-width="1.5" />
<rect x="125" y="105" width="10" height="20" fill="#C94B4B" />
<!-- Candle 3 (Green/Recovery) -->
<line x1="190" y1="100" x2="190" y2="160" stroke="#4A6B48" stroke-width="1.5" />
<rect x="185" y="110" width="10" height="25" fill="#4A6B48" />
<!-- Pointer -->
<line x1="190" y1="165" x2="240" y2="180" stroke="#C94B4B" stroke-width="1" />
<circle cx="190" cy="165" r="2" fill="#C94B4B" />
<text x="245" y="183" font-family="'Courier Prime', monospace" font-weight="bold" font-size="7" fill="#C94B4B">Intraday Low (Retail Panic)</text>
<!-- Candle 4 -->
<line x1="250" y1="80" x2="250" y2="110" stroke="#4A6B48" stroke-width="1.5" />
<rect x="245" y="85" width="10" height="15" fill="#4A6B48" />
<!-- Legend -->
<rect x="10" y="185" width="6" height="6" fill="#C94B4B" />
<text x="20" y="191" font-family="'Courier Prime', monospace" font-weight="bold" font-size="7" fill="#4A3B32">Intraday Liquidity Sweep</text>
<rect x="130" y="185" width="6" height="6" fill="#4A6B48" />
<text x="140" y="191" font-family="'Courier Prime', monospace" font-weight="bold" font-size="7" fill="#4A3B32">Structural Validation (Close)</text>
</svg>
</div>
</div>
</section>
<!-- GET STARTED / RESOURCES -->
<section id="resources">
<div class="container">
<div class="text-center">
<p class="section-label">Free Resources</p>
<h2 class="section-title">Stop Being a Possum in the Headlights</h2>
<div class="section-divider"></div>
<p class="section-desc text-muted">
We'll give you the common-sense tools to start growing your own financial garden today.
No jargon. No robots. No confusion on purpose.
</p>
</div>
<div class="resources-grid">
<div class="resource-card">
<div class="resource-card-badge">Free Download</div>
<h3>The Wall Street Almanac</h3>
<p>
Seasonal market trends, commodity outlooks, and simple trading strategies.
Practical, immediately actionable value.
</p>
<a href="#newsletter" class="btn btn-secondary">Get The Almanac</a>
</div>
<div class="resource-card">
<div class="resource-card-badge">Weekly Publication</div>
<h3>The Hillbilly Economist Brief</h3>
<p>
Regime updates, risk/reward setups, and the week's key catalyst — delivered to
your inbox every week.
</p>
<a href="#newsletter" class="btn btn-primary">Sign Up Free</a>
</div>
</div>
</div>
</section>
<!-- YOUTUBE -->
<section class="youtube-section text-center">
<div class="container--narrow">
<div class="coming-soon">New Episodes Weekly</div>
<h2>The Hillbilly Breakdown</h2>
<div class="section-divider" style="margin: 1.5rem auto 2rem;"></div>
<p class="text-muted section-desc">
60-second market breakdowns. Complex economics explained with a drawl.
Watch the latest episode on YouTube.
</p>
<a href="https://youtube.com/@thehillbillyeconomist" target="_blank" rel="noopener" class="btn btn-primary">
Watch on YouTube
</a>
</div>
</section>
<!-- EMAIL SIGNUP -->
<section class="email-section" id="newsletter">
<div class="container--narrow">
<h2>Get the Weekly Brief</h2>
<p class="text-muted" style="margin: 0 auto 2.5rem; max-width: 500px;">
Free. No spam. No confusion on purpose. Just the regime update, the key setup,
and what to watch for next week. Or <a href="mailto:chris@thehillbillyeconomist.com">contact us directly</a> with questions.
</p>
<form class="email-form" onsubmit="handleSubmit(event)">
<input type="email" class="email-input" placeholder="Enter your email address..." required id="email-input">
<button type="submit" class="email-submit">Subscribe</button>
</form>
<p class="email-note">No spam. Unsubscribe anytime. We hate noise too.</p>
<p id="form-message" style="display:none; margin-top:1rem; font-family: var(--ff-mono); font-size: 0.85rem; font-weight: 700; color: var(--text-main);"></p>
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="container text-center">
<h3 class="footer-logo">The Hillbilly Economist</h3>
<ul class="footer-links">
<li><a href="#engine">The Engine</a></li>
<li><a href="#formula">The Formula</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="https://youtube.com/@thehillbillyeconomist" target="_blank">YouTube</a></li>
</ul>
<p class="footer-copy">
© 2026 The Hillbilly Economist™. Est. 2025. All Rights Reserved.
</p>
<p class="footer-disclaimer">
Disclaimer: I am a hillbilly, not a financial advisor. This content is institutional-grade research served with common sense. Do your own due diligence before putting your hard-earned cash on the line.
</p>
<p class="footer-disclaimer" style="margin-top: 1.5rem; font-weight: 700; color: var(--text-main);">
If you hear banjos, we'll give you a paddle.
</p>
</div>
</footer>
<script>
// ── EMAIL FORM ─────────────────────────────────────────────
function handleSubmit(e) {
e.preventDefault();
const email = document.getElementById('email-input').value;
const msg = document.getElementById('form-message');
msg.style.display = 'block';
msg.textContent = '✓ You\'re on the list. First brief drops soon.';
e.target.reset();
}
</script>
</body>
</html>
```