Last active
February 23, 2026 21:26
-
-
Save unforced/368599901a22b309ee859d4badb8cf9e to your computer and use it in GitHub Desktop.
Vision One-Pager: Building the Infrastructure for Human Capability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>The RegenHub Basket — An Investment Vision</title> | |
| <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=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500&family=IBM+Plex+Mono:wght@300;400&display=swap" rel="stylesheet"> | |
| <style> | |
| :root { | |
| --void: #08080a; | |
| --ink: #0f0f12; | |
| --charcoal: #1a1a1f; | |
| --graphite: #2a2a30; | |
| --parchment: #f7f5f0; | |
| --cream: #ebe7df; | |
| --bone: #d8d3c8; | |
| --stone: #9a958a; | |
| --ember: #c2512a; | |
| --ember-dim: #8a3a1f; | |
| --ember-glow: rgba(194, 81, 42, 0.08); | |
| --sage: #4a5f4a; | |
| --font-display: 'Cormorant', serif; | |
| --font-body: 'Inter', sans-serif; | |
| --font-mono: 'IBM Plex Mono', monospace; | |
| } | |
| * { margin: 0; padding: 0; box-sizing: border-box; } | |
| html { scroll-behavior: smooth; } | |
| body { | |
| font-family: var(--font-body); | |
| background: var(--parchment); | |
| color: var(--graphite); | |
| line-height: 1.75; | |
| font-size: 16px; | |
| font-weight: 400; | |
| } | |
| body::before { | |
| content: ''; | |
| position: fixed; | |
| top: 0; left: 0; | |
| width: 100%; height: 100%; | |
| pointer-events: none; | |
| opacity: 0.10; | |
| z-index: 10000; | |
| 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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E"); | |
| } | |
| /* ============ HEADER ============ */ | |
| header { | |
| background: var(--ink); | |
| padding: 4rem 3rem 3.5rem; | |
| position: relative; | |
| overflow: hidden; | |
| } | |
| header::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; left: 0; right: 0; bottom: 0; | |
| background: | |
| radial-gradient(ellipse at 10% 90%, var(--ember-glow) 0%, transparent 50%), | |
| radial-gradient(ellipse at 90% 10%, rgba(74, 95, 74, 0.04) 0%, transparent 40%); | |
| pointer-events: none; | |
| } | |
| .header-inner { | |
| max-width: 780px; | |
| margin: 0 auto; | |
| position: relative; | |
| z-index: 1; | |
| } | |
| .header-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.65rem; | |
| font-weight: 300; | |
| letter-spacing: 0.2em; | |
| text-transform: uppercase; | |
| color: var(--stone); | |
| margin-bottom: 1.5rem; | |
| } | |
| header h1 { | |
| font-family: var(--font-display); | |
| font-weight: 300; | |
| font-size: clamp(2rem, 5vw, 3.25rem); | |
| color: var(--cream); | |
| letter-spacing: -0.01em; | |
| line-height: 1.15; | |
| margin-bottom: 1.25rem; | |
| } | |
| .header-sub { | |
| font-family: var(--font-display); | |
| font-style: italic; | |
| font-weight: 300; | |
| font-size: 1.15rem; | |
| color: var(--stone); | |
| max-width: 580px; | |
| line-height: 1.7; | |
| } | |
| .header-meta { | |
| margin-top: 2.5rem; | |
| padding-top: 2rem; | |
| border-top: 1px solid rgba(255,255,255,0.06); | |
| display: flex; | |
| gap: 2.5rem; | |
| flex-wrap: wrap; | |
| } | |
| .meta-item { | |
| font-family: var(--font-mono); | |
| font-size: 0.65rem; | |
| font-weight: 300; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| } | |
| .meta-item span { color: var(--ember); display: block; margin-bottom: 0.2rem; } | |
| .meta-item p { color: var(--bone); margin: 0; } | |
| /* ============ MAIN ============ */ | |
| main { | |
| max-width: 780px; | |
| margin: 0 auto; | |
| padding: 0 3rem; | |
| } | |
| section { | |
| padding: 3.5rem 0; | |
| border-bottom: 1px solid var(--bone); | |
| } | |
| section:last-of-type { border-bottom: none; } | |
| .section-mark { | |
| font-family: var(--font-mono); | |
| font-size: 0.6rem; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: var(--stone); | |
| margin-bottom: 1.5rem; | |
| display: flex; | |
| align-items: center; | |
| gap: 1rem; | |
| } | |
| .section-mark::after { | |
| content: ''; | |
| flex: 1; | |
| height: 1px; | |
| background: var(--bone); | |
| max-width: 80px; | |
| } | |
| h2 { | |
| font-family: var(--font-display); | |
| font-weight: 400; | |
| font-size: clamp(1.75rem, 3.5vw, 2.25rem); | |
| color: var(--charcoal); | |
| margin-bottom: 1.25rem; | |
| letter-spacing: -0.01em; | |
| line-height: 1.2; | |
| } | |
| p { | |
| color: var(--graphite); | |
| margin-bottom: 1.25rem; | |
| max-width: 65ch; | |
| } | |
| p:last-child { margin-bottom: 0; } | |
| .lead { | |
| font-size: 1.05rem; | |
| font-weight: 300; | |
| color: var(--charcoal); | |
| line-height: 1.85; | |
| max-width: 60ch; | |
| } | |
| em { font-style: italic; color: var(--ember-dim); } | |
| strong { font-weight: 500; color: var(--charcoal); } | |
| a { color: var(--ember); text-decoration: none; } | |
| a:hover { text-decoration: underline; } | |
| /* ============ CSA BLOCK ============ */ | |
| .csa-block { | |
| margin-top: 2.5rem; | |
| background: var(--ink); | |
| padding: 2.5rem 2.75rem; | |
| position: relative; | |
| } | |
| .csa-block::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; left: 0; | |
| right: 0; bottom: 0; | |
| background: radial-gradient(ellipse at 20% 80%, var(--ember-glow) 0%, transparent 60%); | |
| pointer-events: none; | |
| } | |
| .csa-inner { position: relative; z-index: 1; } | |
| .csa-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.6rem; | |
| font-weight: 400; | |
| letter-spacing: 0.15em; | |
| text-transform: uppercase; | |
| color: var(--ember); | |
| margin-bottom: 1rem; | |
| } | |
| .csa-block p { | |
| font-family: var(--font-display); | |
| font-style: italic; | |
| font-size: 1.15rem; | |
| color: var(--bone); | |
| line-height: 1.7; | |
| max-width: 55ch; | |
| margin: 0; | |
| } | |
| /* ============ VENTURE GRID ============ */ | |
| .venture-grid { | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 1.25rem; | |
| margin-top: 2.5rem; | |
| } | |
| @media (max-width: 640px) { .venture-grid { grid-template-columns: 1fr; } } | |
| .venture { | |
| padding: 1.75rem 1.75rem 1.75rem 2.25rem; | |
| border-left: 2px solid var(--bone); | |
| background: linear-gradient(135deg, var(--cream) 0%, var(--parchment) 100%); | |
| transition: border-color 0.3s ease; | |
| position: relative; | |
| } | |
| .venture:hover { border-color: var(--ember); } | |
| .venture::before { | |
| content: ''; | |
| position: absolute; | |
| top: 1.75rem; left: -6px; | |
| width: 10px; height: 10px; | |
| background: var(--parchment); | |
| border: 2px solid var(--bone); | |
| border-radius: 50%; | |
| transition: border-color 0.3s ease; | |
| } | |
| .venture:hover::before { border-color: var(--ember); } | |
| .venture-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.6rem; | |
| font-weight: 400; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| color: var(--stone); | |
| margin-bottom: 0.4rem; | |
| } | |
| .venture h3 { | |
| font-family: var(--font-display); | |
| font-weight: 500; | |
| font-size: 1.2rem; | |
| color: var(--charcoal); | |
| margin-bottom: 0.6rem; | |
| } | |
| .venture p { | |
| font-size: 0.88rem; | |
| line-height: 1.65; | |
| color: var(--graphite); | |
| margin: 0; | |
| max-width: none; | |
| } | |
| /* ============ STRUCTURE ROWS ============ */ | |
| .structure-rows { margin-top: 2rem; } | |
| .structure-row { | |
| display: grid; | |
| grid-template-columns: 130px 1fr; | |
| gap: 2rem; | |
| padding: 1.5rem 0; | |
| border-bottom: 1px solid var(--bone); | |
| align-items: start; | |
| } | |
| .structure-row:last-child { border-bottom: none; } | |
| @media (max-width: 500px) { .structure-row { grid-template-columns: 1fr; gap: 0.5rem; } } | |
| .structure-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.6rem; | |
| font-weight: 400; | |
| letter-spacing: 0.1em; | |
| text-transform: uppercase; | |
| color: var(--ember); | |
| padding-top: 0.1rem; | |
| line-height: 1.6; | |
| } | |
| .structure-row p { font-size: 0.9rem; margin: 0; max-width: none; } | |
| /* ============ SCENARIO BOX ============ */ | |
| .scenario { | |
| margin-top: 2.5rem; | |
| background: var(--cream); | |
| border-bottom: 2px solid var(--ember); | |
| padding: 2rem 2.25rem; | |
| } | |
| .scenario-label { | |
| font-family: var(--font-mono); | |
| font-size: 0.6rem; | |
| letter-spacing: 0.12em; | |
| text-transform: uppercase; | |
| color: var(--stone); | |
| margin-bottom: 1.25rem; | |
| } | |
| .scenario-grid { | |
| display: grid; | |
| grid-template-columns: repeat(3, 1fr); | |
| gap: 1.5rem; | |
| } | |
| @media (max-width: 560px) { .scenario-grid { grid-template-columns: 1fr; } } | |
| .scenario-item {} | |
| .scenario-item .amount { | |
| font-family: var(--font-display); | |
| font-size: 1.75rem; | |
| font-weight: 300; | |
| color: var(--charcoal); | |
| margin-bottom: 0.25rem; | |
| } | |
| .scenario-item .amount span { | |
| font-size: 1rem; | |
| color: var(--ember); | |
| } | |
| .scenario-item p { | |
| font-family: var(--font-mono); | |
| font-size: 0.65rem; | |
| letter-spacing: 0.08em; | |
| color: var(--stone); | |
| text-transform: uppercase; | |
| margin: 0; | |
| } | |
| /* ============ CLOSING ============ */ | |
| .closing { | |
| background: var(--ink); | |
| padding: 4rem 3rem; | |
| position: relative; | |
| } | |
| .closing::before { | |
| content: ''; | |
| position: absolute; | |
| top: 0; left: 50%; | |
| transform: translateX(-50%); | |
| width: 1px; height: 40px; | |
| background: linear-gradient(180deg, var(--charcoal) 0%, var(--ember) 100%); | |
| margin-top: -20px; | |
| } | |
| .closing-inner { | |
| max-width: 780px; | |
| margin: 0 auto; | |
| display: grid; | |
| grid-template-columns: 1fr 1fr; | |
| gap: 3rem; | |
| } | |
| @media (max-width: 600px) { .closing-inner { grid-template-columns: 1fr; } } | |
| .closing h2 { | |
| font-family: var(--font-display); | |
| font-weight: 300; | |
| font-size: 1.85rem; | |
| color: var(--cream); | |
| margin-bottom: 1rem; | |
| letter-spacing: 0.01em; | |
| } | |
| .closing p { | |
| color: var(--stone); | |
| font-size: 0.9rem; | |
| max-width: none; | |
| line-height: 1.8; | |
| margin-bottom: 1rem; | |
| } | |
| .closing p:last-child { margin-bottom: 0; } | |
| .closing-question { | |
| font-family: var(--font-display); | |
| font-style: italic; | |
| font-size: 1.1rem; | |
| color: var(--bone); | |
| line-height: 1.7; | |
| border-left: 2px solid var(--ember); | |
| padding-left: 1.25rem; | |
| margin-top: 0.5rem; | |
| } | |
| /* ============ FOOTER ============ */ | |
| footer { | |
| background: var(--void); | |
| padding: 2rem 3rem; | |
| } | |
| .footer-inner { | |
| max-width: 780px; | |
| margin: 0 auto; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| flex-wrap: wrap; | |
| gap: 1rem; | |
| } | |
| footer p { | |
| font-family: var(--font-mono); | |
| font-size: 0.65rem; | |
| letter-spacing: 0.1em; | |
| color: var(--graphite); | |
| max-width: none; | |
| margin: 0; | |
| } | |
| footer a { color: var(--stone); text-decoration: none; transition: color 0.3s ease; } | |
| footer a:hover { color: var(--ember); } | |
| /* ============ PRINT ============ */ | |
| @media print { | |
| body::before { display: none; } | |
| header, .csa-block, .closing, footer { | |
| -webkit-print-color-adjust: exact; | |
| print-color-adjust: exact; | |
| } | |
| section { page-break-inside: avoid; } | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <header> | |
| <div class="header-inner"> | |
| <p class="header-label">Private — For Kevin & Jeremy</p> | |
| <h1>The RegenHub Basket</h1> | |
| <p class="header-sub">A new kind of local fund — not venture capital, not a nonprofit, but a community-supported stake in the ventures growing from Boulder's most interesting coworking ecosystem.</p> | |
| <div class="header-meta"> | |
| <div class="meta-item"> | |
| <span>From</span> | |
| <p>Aaron Gabriel & Todd</p> | |
| </div> | |
| <div class="meta-item"> | |
| <span>Date</span> | |
| <p>February 2026</p> | |
| </div> | |
| <div class="meta-item"> | |
| <span>Location</span> | |
| <p>Boulder, Colorado</p> | |
| </div> | |
| </div> | |
| </div> | |
| </header> | |
| <main> | |
| <section> | |
| <p class="section-mark">The Model</p> | |
| <h2>A CSA for Boulder ventures</h2> | |
| <p class="lead">Community Supported Agriculture works because investors buy a share of the season's harvest upfront — not a single crop, but the whole farm's yield. What if investment in early-stage ventures worked the same way?</p> | |
| <p>Instead of a SAFE into one company at a fixed valuation, you're buying into a basket: equity from multiple ventures incubating at RegenHub, bundled into a single investable share. New ventures are added as they mature. The basket grows. Your position compounds across the whole ecosystem rather than riding a single bet.</p> | |
| <p>This is not the hyper-scale VC model where one in fifteen survives. It is a balanced growth model — one where health and growth are tracked together, and where the success of each venture strengthens every other.</p> | |
| <div class="csa-block"> | |
| <div class="csa-inner"> | |
| <p class="csa-label">The Analogy</p> | |
| <p>"RegenHub is the soil. Each venture is a seed. The basket is the seasonal harvest — what grows, what matures, what gets added each year. You are investing in the farm."</p> | |
| </div> | |
| </div> | |
| </section> | |
| <section> | |
| <p class="section-mark">The Ventures</p> | |
| <h2>What's in the basket</h2> | |
| <p>Three ventures are positioned to contribute equity into the initial basket. Each is a real, operating project with a founder embedded in the RegenHub community.</p> | |
| <div class="venture-grid"> | |
| <div class="venture"> | |
| <p class="venture-label">Voice & AI</p> | |
| <h3>Parachute</h3> | |
| <p>A voice-first, local-first extended mind tool — built to help people think more clearly and act more deliberately with AI as a partner. Active development, growing user base among knowledge workers, researchers, and builders. <a href="https://parachute.computer" target="_blank">parachute.computer</a></p> | |
| </div> | |
| <div class="venture"> | |
| <p class="venture-label">Email Protocol</p> | |
| <h3>Postage</h3> | |
| <p>Blockchain-based email filtering: senders pay a small amount of USDC on Base to get their email delivered to you. Your inbox, your terms. Spam solved at the protocol layer. A web3-native utility with clear consumer value. <a href="https://postage.email" target="_blank">postage.email</a></p> | |
| </div> | |
| <div class="venture"> | |
| <p class="venture-label">Legal & Financial Infrastructure</p> | |
| <h3>Habitat</h3> | |
| <p>Deep tech at the intersection of accounting, finance, and law. Building the legal and financial primitives that enable new instruments — including, eventually, the basket structure itself. Habitat is the tooling layer that makes this whole model possible.</p> | |
| </div> | |
| <div class="venture" style="border-left-style: dashed; border-color: var(--bone);"> | |
| <p class="venture-label">Forthcoming</p> | |
| <h3>Future Ventures</h3> | |
| <p>The basket is designed to grow. As new ventures are incubated from RegenHub, they are evaluated for inclusion. Each addition diversifies the basket and increases the total fund value — creating ongoing opportunity for existing shareholders.</p> | |
| </div> | |
| </div> | |
| </section> | |
| <section> | |
| <p class="section-mark">The Structure</p> | |
| <h2>How equity flows into the basket</h2> | |
| <p>Each founding venture — Parachute, Postage, Habitat — contributes <strong>10% of their equity</strong> to RegenHub as a gift to the cooperative. This is not a sale. It is a commitment: the founders choosing to root their ventures in this ecosystem and share in its collective success.</p> | |
| <p>RegenHub does not put all of that equity into the basket. It puts <strong>1–2% of each venture</strong> into the basket fund, making those shares available to external investors like Kevin and Jeremy. The remaining 8–9% of each venture stays on RegenHub's balance sheet — a growing reserve that becomes more valuable as the ventures mature.</p> | |
| <p>This reserve is the engine of the model. As ventures appreciate, RegenHub can add further equity from its reserve into the basket, raising new capital at higher valuations without any new dilution to the founders. Each addition refreshes the fund and creates new opportunities for investors to participate.</p> | |
| <p>Techne Institute sits outside this structure entirely — it is becoming a nonprofit, funded by grants and tuition, aligned with the long-term health of the ecosystem rather than its equity return. <strong>Techne is not in the basket.</strong> It is the reason the basket keeps producing.</p> | |
| </section> | |
| <section> | |
| <p class="section-mark">The Investment</p> | |
| <h2>What this transaction looks like</h2> | |
| <p>This is the first event of reciprocity — the first harvest. You are not buying into a cap table. You are buying a share of the basket: a unitized stake in the bundled equity of Parachute, Postage, and Habitat, with the expectation that new ventures will be added in future seasons.</p> | |
| <div class="structure-rows"> | |
| <div class="structure-row"> | |
| <p class="structure-label">Your Position</p> | |
| <p>$50k each from Kevin and Jeremy — $100k in committed capital — sits alongside equity contributions from the founding ventures, targeting a starting fund value of $250k–$500k. For those who want a larger initial position, there is room to invest more in this first season. You do not need to fully subscribe the fund; any unsubscribed value accrues to the co-op, strengthening each member's position and available for future initiatives.</p> | |
| </div> | |
| <div class="structure-row"> | |
| <p class="structure-label">What You Receive</p> | |
| <p>A proportional share of the basket fund. As ventures in the basket grow, your share grows with them. As new ventures are added, the basket value increases. As RegenHub's cooperative treasury holds basket shares, the whole ecosystem's growth is reflected in your position.</p> | |
| </div> | |
| <div class="structure-row"> | |
| <p class="structure-label">How It Grows</p> | |
| <p>Say the basket starts at $250k and appreciates to $5m as the ventures mature. Meanwhile Parachute has grown to a $100m valuation — meaning RegenHub's 10% stake is worth $10m, of which 2% is already in the basket ($2m) and 8% remains on the hub's balance sheet ($8m). RegenHub now adds another 3% of Parachute from its reserve into the basket — worth $3m at current valuation. The basket grows, the hub raises fresh capital by selling new shares, and your position appreciates alongside it. The hub still holds 5% of Parachute directly. Nothing about this requires the founders to give up anything more than they already committed.</p> | |
| </div> | |
| <div class="structure-row"> | |
| <p class="structure-label">Multiple Funds</p> | |
| <p>As the basket matures and its entry price rises, new funds can be created for the next generation of ventures emerging from RegenHub — cheaper, earlier, higher risk and reward. The first basket becomes an established fund; the second basket is the frontier. Investors who want both can hold both. The ecosystem produces a continuous harvest of new opportunities, not a single bet.</p> | |
| </div> | |
| <div class="structure-row"> | |
| <p class="structure-label">Near-Term Use</p> | |
| <p>The immediate priority is securing the third floor lease — the physical home for Techne Institute and the ventures. Beyond that, near-term investments in shared infrastructure (including high-compute local AI capacity) benefit every venture in the basket and increase the value of the whole.</p> | |
| </div> | |
| </div> | |
| <div class="scenario"> | |
| <p class="scenario-label">Illustrative: Season One → Season Two</p> | |
| <div class="scenario-grid"> | |
| <div class="scenario-item"> | |
| <p class="amount">$250–500k</p> | |
| <p>Starting basket value: $100k cash + founding venture equity</p> | |
| </div> | |
| <div class="scenario-item"> | |
| <p class="amount">$5m <span>+</span></p> | |
| <p>Basket value after venture appreciation — no new dilution required</p> | |
| </div> | |
| <div class="scenario-item"> | |
| <p class="amount">$3m <span>added</span></p> | |
| <p>Hub adds 3% more Parachute equity from reserve, raises fresh capital</p> | |
| </div> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <section class="closing"> | |
| <div class="closing-inner"> | |
| <div> | |
| <h2>The Next Step</h2> | |
| <p>Todd is preparing the agreement stack — the layered legal and financial instruments that make this structure real and deliverable. The goal is to have something concrete in your hands within the week: not just a concept, but a structure you can have conviction in.</p> | |
| <p>This is the starting basket. The first season. The question is whether you want to be in it from the beginning — when the soil is freshest and the founding positions are largest.</p> | |
| </div> | |
| <div> | |
| <p class="closing-question">What if the ventures growing here were connected not just by proximity, but by a shared stake in each other's success — and you were part of that from the first season?</p> | |
| </div> | |
| </div> | |
| </section> | |
| <footer> | |
| <div class="footer-inner"> | |
| <p>Aaron Gabriel • <a href="mailto:ag@unforced.org">ag@unforced.org</a></p> | |
| <p><a href="https://parachute.computer">parachute.computer</a> • <a href="https://techne.institute">techne.institute</a> • <a href="https://learnvibe.build">learnvibe.build</a> • <a href="https://wovenweb.org">wovenweb.org</a></p> | |
| </div> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment