530 lines
17 KiB
HTML
530 lines
17 KiB
HTML
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>CCG 2026 Sponsorship Package</title>
|
|
<style>
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');
|
|
|
|
:root {
|
|
--primary: #228B22;
|
|
--primary-light: #32CD32;
|
|
--dark: #1e1e1e;
|
|
--light: #fafafa;
|
|
--accent: #8B5A2B;
|
|
--muted: #666;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
line-height: 1.6;
|
|
color: var(--dark);
|
|
font-size: 11pt;
|
|
}
|
|
|
|
.page {
|
|
padding: 40px 50px;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.cover {
|
|
height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
background: linear-gradient(135deg, var(--primary) 0%, #1a5f1a 100%);
|
|
color: white;
|
|
page-break-after: always;
|
|
padding: 60px;
|
|
}
|
|
|
|
.cover h1 {
|
|
font-size: 42pt;
|
|
font-weight: 800;
|
|
margin-bottom: 10px;
|
|
letter-spacing: -1px;
|
|
}
|
|
|
|
.cover h2 {
|
|
font-size: 24pt;
|
|
font-weight: 500;
|
|
margin-bottom: 40px;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.cover .tagline {
|
|
font-size: 14pt;
|
|
font-style: italic;
|
|
opacity: 0.85;
|
|
max-width: 500px;
|
|
margin-bottom: 60px;
|
|
}
|
|
|
|
.cover .details {
|
|
font-size: 12pt;
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.cover .details p {
|
|
margin: 5px 0;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24pt;
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
margin-bottom: 20px;
|
|
padding-bottom: 10px;
|
|
border-bottom: 3px solid var(--primary);
|
|
}
|
|
|
|
h2 {
|
|
font-size: 16pt;
|
|
font-weight: 600;
|
|
color: var(--dark);
|
|
margin-top: 30px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 13pt;
|
|
font-weight: 600;
|
|
color: var(--accent);
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
margin-bottom: 12px;
|
|
}
|
|
|
|
ul, ol {
|
|
margin-left: 20px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 6px;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin: 20px 0;
|
|
font-size: 10pt;
|
|
}
|
|
|
|
th {
|
|
background: var(--primary);
|
|
color: white;
|
|
padding: 12px 15px;
|
|
text-align: left;
|
|
font-weight: 600;
|
|
}
|
|
|
|
td {
|
|
padding: 10px 15px;
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background: #f9f9f9;
|
|
}
|
|
|
|
.tier-box {
|
|
border: 2px solid var(--primary);
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
margin: 20px 0;
|
|
page-break-inside: avoid;
|
|
}
|
|
|
|
.tier-box h3 {
|
|
color: var(--primary);
|
|
margin-top: 0;
|
|
font-size: 14pt;
|
|
}
|
|
|
|
.tier-box .price {
|
|
font-size: 20pt;
|
|
font-weight: 700;
|
|
color: var(--dark);
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.highlight-box {
|
|
background: #f0f9f0;
|
|
border-left: 4px solid var(--primary);
|
|
padding: 15px 20px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.stat-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(3, 1fr);
|
|
gap: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.stat-box {
|
|
text-align: center;
|
|
padding: 20px;
|
|
background: var(--light);
|
|
border-radius: 8px;
|
|
}
|
|
|
|
.stat-box .number {
|
|
font-size: 28pt;
|
|
font-weight: 700;
|
|
color: var(--primary);
|
|
}
|
|
|
|
.stat-box .label {
|
|
font-size: 10pt;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.quote {
|
|
font-style: italic;
|
|
padding: 15px 25px;
|
|
border-left: 3px solid var(--accent);
|
|
margin: 20px 0;
|
|
color: var(--muted);
|
|
}
|
|
|
|
.quote cite {
|
|
display: block;
|
|
margin-top: 10px;
|
|
font-style: normal;
|
|
font-weight: 600;
|
|
color: var(--dark);
|
|
}
|
|
|
|
.page-break {
|
|
page-break-after: always;
|
|
}
|
|
|
|
.footer {
|
|
margin-top: 40px;
|
|
padding-top: 20px;
|
|
border-top: 1px solid #ddd;
|
|
text-align: center;
|
|
font-size: 9pt;
|
|
color: var(--muted);
|
|
}
|
|
|
|
@page {
|
|
size: A4;
|
|
margin: 0;
|
|
}
|
|
|
|
@page :not(:first) {
|
|
margin: 20mm 15mm;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Cover Page -->
|
|
<div class="cover">
|
|
<h1>Crypto Commons<br>Gathering 2026</h1>
|
|
<h2>Sponsorship Package</h2>
|
|
<p class="tagline">"A recurring temporary refuge from late-capitalism"</p>
|
|
<div class="details">
|
|
<p><strong>August 16-22, 2026</strong></p>
|
|
<p>Commons Hub, Austrian Alps</p>
|
|
<p>6th Annual Edition</p>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Executive Summary -->
|
|
<div class="page">
|
|
<h1>Executive Summary</h1>
|
|
|
|
<p>The <strong>Crypto Commons Gathering (CCG)</strong> is an annual week-long retreat where genuine desire for postcapitalist change meets blockchain innovation, commons building, and radical imagination.</p>
|
|
|
|
<p>Now in its <strong>6th edition</strong>, CCG has established itself as the premier gathering for builders, researchers, and activists working at the intersection of crypto, regenerative finance, and cooperative economics.</p>
|
|
|
|
<div class="stat-grid">
|
|
<div class="stat-box">
|
|
<div class="number">60+</div>
|
|
<div class="label">Participants</div>
|
|
</div>
|
|
<div class="stat-box">
|
|
<div class="number">6</div>
|
|
<div class="label">Years Running</div>
|
|
</div>
|
|
<div class="stat-box">
|
|
<div class="number">15+</div>
|
|
<div class="label">Countries</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>At a Glance</h2>
|
|
<table>
|
|
<tr><td><strong>Dates</strong></td><td>August 16-22, 2026</td></tr>
|
|
<tr><td><strong>Location</strong></td><td>Commons Hub, Reichenau an der Rax, Austrian Alps</td></tr>
|
|
<tr><td><strong>Format</strong></td><td>Week-long unconference retreat</td></tr>
|
|
<tr><td><strong>Organizers</strong></td><td>Crypto Commons Association & Commons Hub</td></tr>
|
|
</table>
|
|
|
|
<h2>Movements Born at CCG</h2>
|
|
<ul>
|
|
<li><strong>#ReFi (Regenerative Finance)</strong> — ReFi Unconference (2022) was one of the first ReFi events, catalyzed at CCG</li>
|
|
<li><strong>#CoFi (Cooperative Finance)</strong> — Redefining collaborative financial infrastructure</li>
|
|
<li><strong>#MycoFi (Mycelial Finance)</strong> — Biomimetic approaches to economic design</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Why Sponsor -->
|
|
<div class="page">
|
|
<h1>Why Sponsor CCG 2026?</h1>
|
|
|
|
<h2>1. Reach Influential Builders, Thought Leaders & Decision Makers</h2>
|
|
<p>CCG attracts a unique, highly engaged audience:</p>
|
|
<ul>
|
|
<li><strong>ReFi & DeFi Builders</strong> — Teams from Regen Network, EthicHub, Circles UBI, ReFi DAO</li>
|
|
<li><strong>Governance Innovators</strong> — Contributors to Holochain, Economic Space Agency, DAOs</li>
|
|
<li><strong>Academic Researchers</strong> — PhD researchers, professors, and policy experts</li>
|
|
<li><strong>Artists & Game Designers</strong> — Solarpunk creators, economic worldbuilders</li>
|
|
<li><strong>Activists & Organizers</strong> — Cooperative founders, commons practitioners</li>
|
|
</ul>
|
|
|
|
<h2>2. Values-Aligned Audience</h2>
|
|
<p>CCG attendees aren't casual observers—they're committed builders who:</p>
|
|
<ul>
|
|
<li>Lead projects with <strong>real traction</strong> in ReFi, DAOs, and cooperative economics</li>
|
|
<li>Make <strong>purchasing decisions</strong> for their organizations</li>
|
|
<li><strong>Influence discourse</strong> in crypto-commons and regenerative communities</li>
|
|
<li>Seek <strong>genuine partnerships</strong> over superficial marketing</li>
|
|
</ul>
|
|
|
|
<h2>3. Six Years of Trust & Credibility</h2>
|
|
<div class="highlight-box">
|
|
<ul>
|
|
<li><strong>Complete financial transparency</strong> — Full budget breakdowns published publicly</li>
|
|
<li><strong>Non-extractive economics</strong> — Organizers cover their own expenses</li>
|
|
<li><strong>Participant-driven format</strong> — Authentic community co-creation</li>
|
|
<li><strong>Long-term relationships</strong> — ~40% of attendees return year after year</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Audience Profile -->
|
|
<div class="page">
|
|
<h1>Audience Profile</h1>
|
|
|
|
<h2>Who Attends CCG?</h2>
|
|
<table>
|
|
<tr>
|
|
<th>Segment</th>
|
|
<th>%</th>
|
|
<th>Description</th>
|
|
</tr>
|
|
<tr>
|
|
<td>Builders & Developers</td>
|
|
<td>35%</td>
|
|
<td>Protocol engineers, smart contract devs, infrastructure builders</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Researchers & Academics</td>
|
|
<td>25%</td>
|
|
<td>PhD students, professors, think tank members</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Artists & Designers</td>
|
|
<td>15%</td>
|
|
<td>Game designers, solarpunk creators, UX/UI specialists</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Activists & Organizers</td>
|
|
<td>15%</td>
|
|
<td>Cooperative founders, community organizers, policy advocates</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Investors & Funders</td>
|
|
<td>10%</td>
|
|
<td>Impact investors, grant makers, ecosystem funders</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<h2>Geographic Distribution</h2>
|
|
<table>
|
|
<tr><td>Europe</td><td>60%</td></tr>
|
|
<tr><td>North America</td><td>20%</td></tr>
|
|
<tr><td>Global South</td><td>15%</td></tr>
|
|
<tr><td>Asia-Pacific</td><td>5%</td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Sponsorship Tiers -->
|
|
<div class="page">
|
|
<h1>Sponsorship Tiers</h1>
|
|
|
|
<div class="tier-box">
|
|
<h3>MYCELIUM</h3>
|
|
<div class="price">€5,000</div>
|
|
<p><em>Become part of the CCG ecosystem</em></p>
|
|
<ul>
|
|
<li><strong>2 event tickets, lodging and food</strong></li>
|
|
<li>30-minute sponsored session slot</li>
|
|
<li>Logo on website hero section and all pages</li>
|
|
<li>Featured on all event materials & badges</li>
|
|
<li>Opening & closing acknowledgment</li>
|
|
<li>Social media across all channels</li>
|
|
<li>Pre-event spotlight & post-event report feature</li>
|
|
<li>"Official Sponsor" usage rights</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="tier-box">
|
|
<h3>SPORE</h3>
|
|
<div class="price">€2,500</div>
|
|
<p><em>Plant seeds for regenerative futures</em></p>
|
|
<ul>
|
|
<li><strong>1 event ticket</strong></li>
|
|
<li>Priority registration</li>
|
|
<li>Logo on website sponsor section & event signage</li>
|
|
<li>Social media mention</li>
|
|
<li>Event newsletter mention</li>
|
|
<li>Post-event summary inclusion</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="tier-box">
|
|
<h3>FRIEND OF THE COMMONS</h3>
|
|
<div class="price">€1,000</div>
|
|
<p><em>Show solidarity with the movement</em></p>
|
|
<ul>
|
|
<li><strong>1 event ticket at 50% off</strong></li>
|
|
<li>Name/logo on supporters section</li>
|
|
<li>Social media thank-you</li>
|
|
<li>Ceremony acknowledgment</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Alternative Partnerships -->
|
|
<div class="page">
|
|
<h1>Alternative Partnership Opportunities</h1>
|
|
|
|
<p>Beyond financial sponsorship, we welcome in-kind contributions and creative partnerships:</p>
|
|
|
|
<h3>Track Sponsorship | Custom</h3>
|
|
<p>Sponsor a specific theme track with naming rights and session curation involvement.</p>
|
|
|
|
<h3>Accommodation | ~€3,000-5,000</h3>
|
|
<p>Cover accommodation for participants who need financial support, broadening access.</p>
|
|
|
|
<h3>Meal Sponsorship | ~€2,000-4,000</h3>
|
|
<p>Sponsor catered meals — your name becomes synonymous with nourishment and care.</p>
|
|
|
|
<h3>Documentation | ~€1,500</h3>
|
|
<p>Support professional photography, videography, and written summaries with credit.</p>
|
|
|
|
<h3>Travel Grants | Custom</h3>
|
|
<p>Fund travel scholarships for participants from underrepresented regions or backgrounds.</p>
|
|
|
|
<h3>Technology Partnership | In-Kind</h3>
|
|
<p>Provide tools, platforms, or infrastructure (streaming, collaboration) in exchange for recognition.</p>
|
|
|
|
<h2>Impact Metrics</h2>
|
|
<table>
|
|
<tr><td>Editions held</td><td>5 (2020-2025)</td></tr>
|
|
<tr><td>Total attendees (all editions)</td><td>300+</td></tr>
|
|
<tr><td>Countries represented</td><td>15+</td></tr>
|
|
<tr><td>Projects incubated/catalyzed</td><td>15+</td></tr>
|
|
<tr><td>Active community members</td><td>500+</td></tr>
|
|
<tr><td>Movements spawned</td><td>#ReFi, #CoFi, #MycoFi</td></tr>
|
|
<tr><td>Return attendee rate</td><td>~40%</td></tr>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Budget Transparency -->
|
|
<div class="page">
|
|
<h1>Where Your Sponsorship Goes</h1>
|
|
|
|
<h2>Estimated Event Budget</h2>
|
|
<table>
|
|
<tr><td>Food & catering</td><td>€8,500</td></tr>
|
|
<tr><td>Venue</td><td>€5,000</td></tr>
|
|
<tr><td>Accessibility & travel support</td><td>€3,500</td></tr>
|
|
<tr><td>Event coordination</td><td>€3,000</td></tr>
|
|
<tr><td>Design & marketing</td><td>€2,000</td></tr>
|
|
<tr><td>Documentation & media</td><td>€1,500</td></tr>
|
|
<tr><td>Supplies & admin</td><td>€1,500</td></tr>
|
|
<tr><td><strong>Total</strong></td><td><strong>€25,000</strong></td></tr>
|
|
</table>
|
|
|
|
<h2>Revenue Sources</h2>
|
|
<ul>
|
|
<li>Food contributions: ~€8,500</li>
|
|
<li>Ticket sales: ~€7,000</li>
|
|
<li><strong>Sponsorship gap: €10-15K</strong></li>
|
|
</ul>
|
|
|
|
<div class="highlight-box">
|
|
<p><strong>No organizer profits.</strong> All organizing team members cover their own expenses. Full budget published publicly.</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="page-break"></div>
|
|
|
|
<!-- Contact -->
|
|
<div class="page">
|
|
<h1>Contact & Next Steps</h1>
|
|
|
|
<p>We'd love to discuss how a partnership could work for your organization.</p>
|
|
|
|
<h2>Primary Contact</h2>
|
|
<p><strong>Email:</strong> contact@cryptocommonsgather.ing</p>
|
|
|
|
<h2>Event Website</h2>
|
|
<p>https://cryptocommonsgather.ing/sponsorships</p>
|
|
|
|
<h2>Community</h2>
|
|
<ul>
|
|
<li>Telegram (CCG26): https://t.me/+n5V_wDVKWrk1ZTBh</li>
|
|
<li>Telegram (CCA): https://t.me/+gZjhNaDswIc0ZDg0</li>
|
|
</ul>
|
|
|
|
<h2>Key Dates</h2>
|
|
<table>
|
|
<tr><td><strong>Now</strong></td><td>Sponsorship discussions open</td></tr>
|
|
<tr><td><strong>March 31, 2026</strong></td><td>Early bird registration closes</td></tr>
|
|
<tr><td><strong>June 30, 2026</strong></td><td>Regular registration closes</td></tr>
|
|
<tr><td><strong>August 1, 2026</strong></td><td>Final sponsor deliverables due</td></tr>
|
|
<tr><td><strong>August 16-22, 2026</strong></td><td>CCG 2026</td></tr>
|
|
</table>
|
|
|
|
<div class="highlight-box" style="margin-top: 40px;">
|
|
<p><strong>Bonus:</strong> Valley of the Commons takes place at the same venue immediately after CCG — sponsors gain extended visibility across both events.</p>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>Crypto Commons Association · Commons Hub, Reichenau an der Rax, Austria</p>
|
|
<p><strong>Last updated: March 2026</strong></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
|