854 lines
33 KiB
HTML
854 lines
33 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>CCG 2026 — Sponsorship Deck</title>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap" rel="stylesheet">
|
||
<style>
|
||
:root {
|
||
--primary: #b91c1c;
|
||
--primary-light: #dc2626;
|
||
--primary-dark: #991b1b;
|
||
--bg: #fafaf9;
|
||
--fg: #1c1917;
|
||
--muted: #78716c;
|
||
--card-bg: #ffffff;
|
||
--border: #e7e5e4;
|
||
--accent-green: #15803d;
|
||
}
|
||
|
||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||
|
||
body {
|
||
font-family: 'Inter', system-ui, -apple-system, sans-serif;
|
||
background: var(--fg);
|
||
color: var(--fg);
|
||
-webkit-font-smoothing: antialiased;
|
||
}
|
||
|
||
/* --- Slide System --- */
|
||
.slide {
|
||
width: 100vw;
|
||
min-height: 100vh;
|
||
display: flex;
|
||
flex-direction: column;
|
||
justify-content: center;
|
||
align-items: center;
|
||
padding: 60px 80px;
|
||
position: relative;
|
||
overflow: hidden;
|
||
background: var(--bg);
|
||
}
|
||
|
||
.slide-number {
|
||
position: absolute;
|
||
bottom: 24px;
|
||
right: 40px;
|
||
font-size: 12px;
|
||
color: var(--muted);
|
||
font-weight: 500;
|
||
letter-spacing: 0.05em;
|
||
}
|
||
|
||
.slide-logo {
|
||
position: absolute;
|
||
bottom: 24px;
|
||
left: 40px;
|
||
font-size: 12px;
|
||
font-weight: 700;
|
||
color: var(--muted);
|
||
letter-spacing: 0.02em;
|
||
}
|
||
|
||
/* --- Typography --- */
|
||
h1 { font-size: 56px; font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; }
|
||
h2 { font-size: 42px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
|
||
h3 { font-size: 28px; font-weight: 700; line-height: 1.2; }
|
||
h4 { font-size: 18px; font-weight: 700; line-height: 1.3; }
|
||
p, li { font-size: 18px; line-height: 1.6; }
|
||
.small { font-size: 14px; }
|
||
.mono { font-family: 'SF Mono', 'Fira Code', monospace; }
|
||
.muted { color: var(--muted); }
|
||
.primary { color: var(--primary); }
|
||
.green { color: var(--accent-green); }
|
||
.uppercase { text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; font-weight: 600; }
|
||
|
||
/* --- Layout Helpers --- */
|
||
.content { max-width: 1100px; width: 100%; }
|
||
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
|
||
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
|
||
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 20px; }
|
||
.flex-center { display: flex; align-items: center; justify-content: center; }
|
||
.gap-16 { gap: 16px; }
|
||
.gap-24 { gap: 24px; }
|
||
.gap-32 { gap: 32px; }
|
||
.gap-48 { gap: 48px; }
|
||
.mb-8 { margin-bottom: 8px; }
|
||
.mb-12 { margin-bottom: 12px; }
|
||
.mb-16 { margin-bottom: 16px; }
|
||
.mb-24 { margin-bottom: 24px; }
|
||
.mb-32 { margin-bottom: 32px; }
|
||
.mb-48 { margin-bottom: 48px; }
|
||
.mt-16 { margin-top: 16px; }
|
||
.mt-24 { margin-top: 24px; }
|
||
.text-center { text-align: center; }
|
||
|
||
/* --- Cards --- */
|
||
.card {
|
||
background: var(--card-bg);
|
||
border: 1px solid var(--border);
|
||
border-radius: 12px;
|
||
padding: 32px;
|
||
}
|
||
.card-sm { padding: 24px; }
|
||
.card-highlight {
|
||
border-color: var(--primary);
|
||
box-shadow: 0 0 0 1px var(--primary);
|
||
position: relative;
|
||
}
|
||
.card-highlight::before {
|
||
content: '';
|
||
position: absolute;
|
||
top: 0; left: 0; right: 0;
|
||
height: 4px;
|
||
background: var(--primary);
|
||
border-radius: 12px 12px 0 0;
|
||
}
|
||
|
||
/* --- Stat blocks --- */
|
||
.stat-value {
|
||
font-size: 48px;
|
||
font-weight: 900;
|
||
color: var(--primary);
|
||
line-height: 1;
|
||
margin-bottom: 4px;
|
||
}
|
||
.stat-label {
|
||
font-size: 14px;
|
||
color: var(--muted);
|
||
font-weight: 500;
|
||
}
|
||
|
||
/* --- Tier pricing --- */
|
||
.tier-price {
|
||
font-size: 40px;
|
||
font-weight: 900;
|
||
color: var(--primary);
|
||
line-height: 1;
|
||
}
|
||
.tier-name {
|
||
font-size: 24px;
|
||
font-weight: 800;
|
||
letter-spacing: -0.01em;
|
||
}
|
||
|
||
/* --- Check list --- */
|
||
.checklist { list-style: none; }
|
||
.checklist li {
|
||
padding: 6px 0;
|
||
padding-left: 28px;
|
||
position: relative;
|
||
font-size: 15px;
|
||
line-height: 1.5;
|
||
}
|
||
.checklist li::before {
|
||
content: '✓';
|
||
position: absolute;
|
||
left: 0;
|
||
color: var(--primary);
|
||
font-weight: 700;
|
||
font-size: 14px;
|
||
}
|
||
.checklist-label {
|
||
font-size: 11px;
|
||
font-weight: 600;
|
||
text-transform: uppercase;
|
||
letter-spacing: 0.08em;
|
||
color: var(--muted);
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
/* --- Budget table --- */
|
||
.budget-row {
|
||
display: flex;
|
||
justify-content: space-between;
|
||
align-items: baseline;
|
||
padding: 12px 0;
|
||
border-bottom: 1px solid var(--border);
|
||
font-size: 16px;
|
||
}
|
||
.budget-row:last-child { border-bottom: none; }
|
||
.budget-row.total {
|
||
border-top: 2px solid var(--fg);
|
||
border-bottom: none;
|
||
padding-top: 16px;
|
||
margin-top: 8px;
|
||
font-weight: 700;
|
||
font-size: 18px;
|
||
}
|
||
.budget-amount { font-family: 'SF Mono', 'Fira Code', monospace; font-weight: 600; }
|
||
.budget-desc { font-size: 13px; color: var(--muted); }
|
||
|
||
/* --- Progress bars --- */
|
||
.progress-track {
|
||
height: 8px;
|
||
background: #f5f5f4;
|
||
border-radius: 4px;
|
||
overflow: hidden;
|
||
margin-top: 6px;
|
||
}
|
||
.progress-fill {
|
||
height: 100%;
|
||
background: var(--primary);
|
||
border-radius: 4px;
|
||
}
|
||
|
||
/* --- Cover Slide --- */
|
||
.slide-cover {
|
||
background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #7f1d1d 100%);
|
||
color: white;
|
||
}
|
||
.slide-cover h1 { color: white; }
|
||
.slide-cover p { color: rgba(255,255,255,0.85); }
|
||
.slide-cover .slide-number { color: rgba(255,255,255,0.4); }
|
||
.slide-cover .slide-logo { color: rgba(255,255,255,0.4); }
|
||
.cover-badge {
|
||
display: inline-block;
|
||
padding: 8px 20px;
|
||
border: 2px solid rgba(255,255,255,0.3);
|
||
border-radius: 100px;
|
||
font-weight: 600;
|
||
font-size: 16px;
|
||
letter-spacing: 0.02em;
|
||
}
|
||
.cover-divider {
|
||
width: 60px;
|
||
height: 3px;
|
||
background: rgba(255,255,255,0.4);
|
||
margin: 32px 0;
|
||
}
|
||
|
||
/* --- Dark Slide --- */
|
||
.slide-dark {
|
||
background: var(--fg);
|
||
color: white;
|
||
}
|
||
.slide-dark h2, .slide-dark h3 { color: white; }
|
||
.slide-dark p, .slide-dark li { color: rgba(255,255,255,0.8); }
|
||
.slide-dark .muted { color: rgba(255,255,255,0.5); }
|
||
.slide-dark .slide-number { color: rgba(255,255,255,0.3); }
|
||
.slide-dark .slide-logo { color: rgba(255,255,255,0.3); }
|
||
.slide-dark .card { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.1); }
|
||
.slide-dark .stat-value { color: #fca5a5; }
|
||
.slide-dark .checklist li::before { color: #fca5a5; }
|
||
.slide-dark .checklist-label { color: rgba(255,255,255,0.4); }
|
||
|
||
/* --- Accent Slide --- */
|
||
.slide-accent {
|
||
background: var(--primary);
|
||
color: white;
|
||
}
|
||
.slide-accent h2 { color: white; }
|
||
.slide-accent p { color: rgba(255,255,255,0.9); }
|
||
.slide-accent .slide-number { color: rgba(255,255,255,0.4); }
|
||
.slide-accent .slide-logo { color: rgba(255,255,255,0.4); }
|
||
|
||
/* --- Blockquote --- */
|
||
blockquote {
|
||
border-left: 3px solid var(--primary);
|
||
padding-left: 24px;
|
||
font-style: italic;
|
||
font-size: 20px;
|
||
line-height: 1.6;
|
||
}
|
||
blockquote cite {
|
||
display: block;
|
||
margin-top: 12px;
|
||
font-style: normal;
|
||
font-size: 14px;
|
||
font-weight: 600;
|
||
color: var(--muted);
|
||
}
|
||
|
||
/* --- Print / PDF --- */
|
||
@media print {
|
||
.slide { page-break-after: always; height: 100vh; }
|
||
body { background: white; }
|
||
}
|
||
|
||
/* --- Responsive for screen sharing --- */
|
||
@media (max-width: 768px) {
|
||
.slide { padding: 40px 32px; }
|
||
h1 { font-size: 36px; }
|
||
h2 { font-size: 28px; }
|
||
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
|
||
.stat-value { font-size: 36px; }
|
||
.tier-price { font-size: 32px; }
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<!-- ===================== SLIDE 1: COVER ===================== -->
|
||
<div class="slide slide-cover">
|
||
<div class="content text-center">
|
||
<div class="cover-badge mb-32">6th Edition — August 16-22, 2026</div>
|
||
<h1 class="mb-24">Crypto Commons<br>Gathering 2026</h1>
|
||
<div class="cover-divider" style="margin: 32px auto;"></div>
|
||
<p style="font-size: 22px; max-width: 600px; margin: 0 auto;">
|
||
Sponsorship Partnership Deck
|
||
</p>
|
||
<p class="mt-24" style="font-size: 15px; opacity: 0.6;">
|
||
Commons Hub, Austrian Alps · cryptocommonsgather.ing
|
||
</p>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">01</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 2: WHAT IS CCG ===================== -->
|
||
<div class="slide">
|
||
<div class="content">
|
||
<p class="uppercase primary mb-16">About the Gathering</p>
|
||
<h2 class="mb-24">A week-long unconference where<br>crypto meets the commons</h2>
|
||
<div class="grid-2 gap-48">
|
||
<div>
|
||
<p class="muted mb-24" style="font-size: 17px;">
|
||
The Crypto Commons Gathering is an annual retreat in the Austrian Alps where builders,
|
||
researchers, and activists working on regenerative finance, cooperative economics, and
|
||
commons-based infrastructure come together for a week of co-living, co-creating, and
|
||
radical imagination.
|
||
</p>
|
||
<p class="muted" style="font-size: 17px;">
|
||
Now in its <strong style="color: var(--fg);">6th edition</strong>, CCG has become the
|
||
premier gathering for the people building post-capitalist economic infrastructure.
|
||
Not a conference — a convivium.
|
||
</p>
|
||
</div>
|
||
<div class="grid-2 gap-16">
|
||
<div class="card card-sm text-center">
|
||
<div class="stat-value">6th</div>
|
||
<div class="stat-label">Annual Edition</div>
|
||
</div>
|
||
<div class="card card-sm text-center">
|
||
<div class="stat-value">100+</div>
|
||
<div class="stat-label">Participants</div>
|
||
</div>
|
||
<div class="card card-sm text-center">
|
||
<div class="stat-value">25+</div>
|
||
<div class="stat-label">Countries</div>
|
||
</div>
|
||
<div class="card card-sm text-center">
|
||
<div class="stat-value">∞</div>
|
||
<div class="stat-label">Real Value Produced</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">02</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 3: IMPACT ===================== -->
|
||
<div class="slide slide-dark">
|
||
<div class="content">
|
||
<p class="uppercase mb-16" style="color: #fca5a5;">Track Record</p>
|
||
<h2 class="mb-48">Real impact across five editions</h2>
|
||
<div class="grid-3 gap-32">
|
||
<div class="card">
|
||
<div class="stat-value mb-8">300+</div>
|
||
<div class="stat-label mb-16">Total Attendees</div>
|
||
<p style="font-size: 14px;">Builders, researchers, activists, artists, and funders from across the globe.</p>
|
||
</div>
|
||
<div class="card">
|
||
<div class="stat-value mb-8">44,850</div>
|
||
<div class="stat-label mb-16">Friendships Made</div>
|
||
<p style="font-size: 14px;">Connections, collaborations, and lifelong bonds forged across five editions.</p>
|
||
</div>
|
||
<div class="card">
|
||
<div class="stat-value mb-8">2</div>
|
||
<div class="stat-label mb-16">Movements Spawned</div>
|
||
<p style="font-size: 14px;"><strong style="color: #fca5a5;">#CoFi</strong> (Cooperative Finance) and <strong style="color: #fca5a5;">#MycoFi</strong> (Mycelial Finance) — redefining regenerative economic design.</p>
|
||
</div>
|
||
</div>
|
||
<div class="mt-24" style="text-align: center;">
|
||
<p style="font-size: 15px; color: rgba(255,255,255,0.5);">
|
||
Teams from Regen Network, EthicHub, Circles UBI, ReFi DAO, Holochain, Economic Space Agency, Commons Stack, BlockScience, zkNetwork, and more.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">03</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 4: WHY SPONSOR ===================== -->
|
||
<div class="slide">
|
||
<div class="content">
|
||
<p class="uppercase primary mb-16">Why Partner With Us</p>
|
||
<h2 class="mb-48">Four reasons to sponsor CCG</h2>
|
||
<div class="grid-2 gap-24">
|
||
<div class="card">
|
||
<h4 class="mb-8">Reach Influential Builders</h4>
|
||
<p class="muted" style="font-size: 15px;">
|
||
ReFi protocol teams, DAO governance researchers, cooperative founders, academic researchers,
|
||
and impact investors. Decision-makers you won't find at traditional crypto conferences.
|
||
</p>
|
||
</div>
|
||
<div class="card">
|
||
<h4 class="mb-8">Association with Real Impact</h4>
|
||
<p class="muted" style="font-size: 15px;">
|
||
CCG has catalyzed #CoFi and #MycoFi — movements shaping regenerative finance.
|
||
Your brand joins a legacy of genuine innovation and 44,850 friendships made.
|
||
</p>
|
||
</div>
|
||
<div class="card">
|
||
<h4 class="mb-8">Values-Aligned Audience</h4>
|
||
<p class="muted" style="font-size: 15px;">
|
||
These aren't casual observers. They lead projects with real traction, make
|
||
purchasing decisions, and influence discourse across crypto-commons and open source.
|
||
</p>
|
||
</div>
|
||
<div class="card">
|
||
<h4 class="mb-8">Six Years of Trust</h4>
|
||
<p class="muted" style="font-size: 15px;">
|
||
Complete financial transparency. Non-extractive economics. Participant-driven format.
|
||
500+ active community members. No one profits — all funds serve the gathering.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">04</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 5: AUDIENCE ===================== -->
|
||
<div class="slide slide-dark">
|
||
<div class="content">
|
||
<p class="uppercase mb-16" style="color: #fca5a5;">Who You'll Reach</p>
|
||
<h2 class="mb-16">100+ participants from 20+ countries</h2>
|
||
<p class="mb-48" style="color: rgba(255,255,255,0.6); font-size: 17px;">
|
||
Not casual observers — committed builders who influence discourse and make decisions for their organizations.
|
||
</p>
|
||
<div class="grid-3 gap-24">
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">35%</div>
|
||
<h4 style="margin: 8px 0 4px;">Builders & Devs</h4>
|
||
<p style="font-size: 13px;">Protocol engineers, smart contract devs, infrastructure builders</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">25%</div>
|
||
<h4 style="margin: 8px 0 4px;">Researchers</h4>
|
||
<p style="font-size: 13px;">PhD students, professors, think tank members, policy experts</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">15%</div>
|
||
<h4 style="margin: 8px 0 4px;">Artists & Designers</h4>
|
||
<p style="font-size: 13px;">Game designers, solarpunk creators, UX/UI specialists</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">15%</div>
|
||
<h4 style="margin: 8px 0 4px;">Activists & Organizers</h4>
|
||
<p style="font-size: 13px;">Cooperative founders, community organizers, policy advocates</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">10%</div>
|
||
<h4 style="margin: 8px 0 4px;">Investors & Funders</h4>
|
||
<p style="font-size: 13px;">Impact investors, grant makers, ecosystem funders</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<div class="stat-value" style="font-size: 36px;">60%</div>
|
||
<h4 style="margin: 8px 0 4px;">Based in Europe</h4>
|
||
<p style="font-size: 13px;">20% N. America, 15% Global South, 5% Asia-Pacific</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">05</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 6: TIERS OVERVIEW ===================== -->
|
||
<div class="slide">
|
||
<div class="content">
|
||
<div class="text-center mb-48">
|
||
<p class="uppercase primary mb-16">Partnership Tiers</p>
|
||
<h2 class="mb-16">Three ways to support CCG 2026</h2>
|
||
<p class="muted" style="max-width: 600px; margin: 0 auto;">
|
||
We're seeking €10,000–15,000 in total sponsorship. Every contribution makes CCG
|
||
more accessible and impactful.
|
||
</p>
|
||
</div>
|
||
<div class="grid-3 gap-24">
|
||
<!-- Mycelium -->
|
||
<div class="card card-highlight" style="padding-top: 36px;">
|
||
<div class="tier-name mb-8">MYCELIUM</div>
|
||
<div class="tier-price mb-24">€5,000</div>
|
||
<div class="checklist-label">Recognition</div>
|
||
<ul class="checklist mb-16">
|
||
<li>Logo on website hero & all pages</li>
|
||
<li>Featured on all event materials & badges</li>
|
||
<li>Opening & closing acknowledgment</li>
|
||
<li>Social media across all channels</li>
|
||
</ul>
|
||
<div class="checklist-label">Engagement</div>
|
||
<ul class="checklist mb-16">
|
||
<li><strong>2 event tickets, lodging and food</strong></li>
|
||
<li>30-min sponsored session slot</li>
|
||
<li>Participant introductions</li>
|
||
</ul>
|
||
<div class="checklist-label">Content & Media</div>
|
||
<ul class="checklist">
|
||
<li>Pre-event spotlight</li>
|
||
<li>Post-event report feature</li>
|
||
<li>"Official Sponsor" usage rights</li>
|
||
</ul>
|
||
</div>
|
||
<!-- Spore -->
|
||
<div class="card" style="padding-top: 36px;">
|
||
<div class="tier-name mb-8">SPORE</div>
|
||
<div class="tier-price mb-24">€2,500</div>
|
||
<div class="checklist-label">Recognition</div>
|
||
<ul class="checklist mb-16">
|
||
<li>Logo on website sponsor section</li>
|
||
<li>Logo on event signage</li>
|
||
<li>Social media mention</li>
|
||
</ul>
|
||
<div class="checklist-label">Engagement</div>
|
||
<ul class="checklist mb-16">
|
||
<li><strong>1 event ticket</strong></li>
|
||
<li>Priority registration</li>
|
||
</ul>
|
||
<div class="checklist-label">Content & Media</div>
|
||
<ul class="checklist">
|
||
<li>Event newsletter mention</li>
|
||
<li>Post-event summary inclusion</li>
|
||
</ul>
|
||
</div>
|
||
<!-- Friend -->
|
||
<div class="card" style="padding-top: 36px;">
|
||
<div class="tier-name mb-8" style="font-size: 20px;">FRIEND OF THE<br>COMMONS</div>
|
||
<div class="tier-price mb-24">€1,000</div>
|
||
<div class="checklist-label">Recognition</div>
|
||
<ul class="checklist mb-16">
|
||
<li>Name/logo on supporters section</li>
|
||
<li>Social media thank-you</li>
|
||
<li>Ceremony acknowledgment</li>
|
||
</ul>
|
||
<div class="checklist-label">Engagement</div>
|
||
<ul class="checklist">
|
||
<li><strong>1 event ticket at 50% off</strong></li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">06</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 7: MYCELIUM DEEP DIVE ===================== -->
|
||
<div class="slide slide-dark">
|
||
<div class="content">
|
||
<div class="grid-2 gap-48" style="align-items: center;">
|
||
<div>
|
||
<p class="uppercase mb-16" style="color: #fca5a5;">Lead Partner</p>
|
||
<h2 class="mb-8">MYCELIUM</h2>
|
||
<div class="tier-price mb-32" style="color: #fca5a5;">€5,000</div>
|
||
<p style="font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 32px;">
|
||
Become part of the CCG ecosystem. Maximum visibility, meaningful engagement,
|
||
and lasting association with the commons movement.
|
||
</p>
|
||
<blockquote style="border-left-color: #fca5a5; color: rgba(255,255,255,0.8);">
|
||
"The ideas I encountered at CCG completely changed how I think about protocol design.
|
||
It's like nothing else in the crypto space."
|
||
<cite style="color: rgba(255,255,255,0.5);">— ReFi builder, 2023</cite>
|
||
</blockquote>
|
||
</div>
|
||
<div>
|
||
<div class="card" style="padding: 36px;">
|
||
<div class="checklist-label">What You Get</div>
|
||
<ul class="checklist" style="font-size: 15px;">
|
||
<li><strong>2 event tickets, lodging and food</strong> for the week-long gathering</li>
|
||
<li><strong>30-minute sponsored session</strong> — workshop, presentation, or demo</li>
|
||
<li><strong>Logo on website hero section</strong> and every page of the site</li>
|
||
<li>Featured on <strong>all event materials</strong>, badges, and signage</li>
|
||
<li><strong>Acknowledgment</strong> at opening and closing ceremonies</li>
|
||
<li>Social media spotlight across <strong>all CCG channels</strong></li>
|
||
<li><strong>Spotlight</strong> in pre-event communications to 500+ community members</li>
|
||
<li>Dedicated <strong>feature in post-event report</strong></li>
|
||
<li>Rights to use <strong>"Official Sponsor of CCG 2026"</strong> in your marketing</li>
|
||
<li>Participant introductions (with consent)</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">07</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 8: SPORE DEEP DIVE ===================== -->
|
||
<div class="slide">
|
||
<div class="content">
|
||
<div class="grid-2 gap-48" style="align-items: center;">
|
||
<div>
|
||
<div class="card card-sm" style="padding: 36px;">
|
||
<div class="checklist-label">What You Get</div>
|
||
<ul class="checklist" style="font-size: 15px;">
|
||
<li><strong>1 event ticket</strong> for the week-long gathering</li>
|
||
<li><strong>Priority registration</strong> — secure your spot before public sales</li>
|
||
<li>Logo on the <strong>website sponsor section</strong></li>
|
||
<li>Logo on <strong>event signage</strong> at the Commons Hub</li>
|
||
<li><strong>Social media mention</strong> across CCG channels</li>
|
||
<li>Named in <strong>event newsletter</strong> to 500+ subscribers</li>
|
||
<li>Included in <strong>post-event summary</strong> and documentation</li>
|
||
</ul>
|
||
</div>
|
||
</div>
|
||
<div>
|
||
<p class="uppercase primary mb-16">Supporter</p>
|
||
<h2 class="mb-8">SPORE</h2>
|
||
<div class="tier-price mb-32">€2,500</div>
|
||
<p class="muted" style="font-size: 17px; margin-bottom: 32px;">
|
||
Plant seeds for regenerative futures. Meaningful recognition and a direct
|
||
connection to the community, at an accessible investment level.
|
||
</p>
|
||
<blockquote>
|
||
"CCG is where I found my people — the ones who actually believe another world
|
||
is possible and are building it together."
|
||
<cite>— Returning participant, 2024</cite>
|
||
</blockquote>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">08</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 9: FRIEND DEEP DIVE ===================== -->
|
||
<div class="slide slide-dark">
|
||
<div class="content">
|
||
<div class="grid-2 gap-48" style="align-items: center;">
|
||
<div>
|
||
<p class="uppercase mb-16" style="color: #fca5a5;">Solidarity</p>
|
||
<h2 class="mb-8">FRIEND OF<br>THE COMMONS</h2>
|
||
<div class="tier-price mb-32" style="color: #fca5a5;">€1,000</div>
|
||
<p style="font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 32px;">
|
||
Show solidarity with the movement. Every contribution helps keep CCG accessible
|
||
and makes a real difference for participants who need support.
|
||
</p>
|
||
<blockquote style="border-left-color: #fca5a5; color: rgba(255,255,255,0.8);">
|
||
"I came for the unconference, I stayed for the community. Four years later,
|
||
my closest collaborators are people I met at CCG."
|
||
<cite style="color: rgba(255,255,255,0.5);">— Cooperative founder, 2022</cite>
|
||
</blockquote>
|
||
</div>
|
||
<div>
|
||
<div class="card" style="padding: 36px;">
|
||
<div class="checklist-label">What You Get</div>
|
||
<ul class="checklist" style="font-size: 15px;">
|
||
<li><strong>1 event ticket at 50% off</strong> — attend the gathering at half price</li>
|
||
<li>Name or logo on the <strong>website supporters section</strong></li>
|
||
<li><strong>Social media thank-you</strong> post across CCG channels</li>
|
||
<li><strong>Acknowledgment</strong> at opening and closing ceremonies</li>
|
||
</ul>
|
||
<div style="margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);">
|
||
<p style="font-size: 14px; color: rgba(255,255,255,0.5);">
|
||
Perfect for individuals, small organizations, and cooperatives who want to
|
||
show support for commons-based futures.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">09</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 10: BUDGET ===================== -->
|
||
<div class="slide">
|
||
<div class="content">
|
||
<p class="uppercase primary mb-16">Full Transparency</p>
|
||
<h2 class="mb-48">Where your sponsorship goes</h2>
|
||
<div class="grid-2 gap-48">
|
||
<div>
|
||
<h4 class="mb-16">Estimated Event Budget</h4>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Food & catering</span>
|
||
<div class="budget-desc">6 days, 100+ participants</div>
|
||
</div>
|
||
<span class="budget-amount">€8,500</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Venue</span>
|
||
<div class="budget-desc">Facility, electricity, water, internet</div>
|
||
</div>
|
||
<span class="budget-amount">€5,000</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Accessibility & travel support</span>
|
||
<div class="budget-desc">Grants, subsidies, accommodations</div>
|
||
</div>
|
||
<span class="budget-amount">€3,500</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Event coordination</span>
|
||
<div class="budget-desc">Part-time logistics & comms</div>
|
||
</div>
|
||
<span class="budget-amount">€3,000</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Design & marketing</span>
|
||
<div class="budget-desc">Branding, print materials, outreach</div>
|
||
</div>
|
||
<span class="budget-amount">€2,000</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Documentation & media</span>
|
||
<div class="budget-desc">Photo, video, written summaries</div>
|
||
</div>
|
||
<span class="budget-amount">€1,500</span>
|
||
</div>
|
||
<div class="budget-row">
|
||
<div>
|
||
<span>Supplies & admin</span>
|
||
<div class="budget-desc">Materials, insurance, processing</div>
|
||
</div>
|
||
<span class="budget-amount">€1,500</span>
|
||
</div>
|
||
<div class="budget-row total">
|
||
<span>Total</span>
|
||
<span class="budget-amount" style="color: var(--primary); font-size: 24px;">€25,000</span>
|
||
</div>
|
||
</div>
|
||
<div>
|
||
<h4 class="mb-16">Revenue Sources</h4>
|
||
<div class="card card-sm mb-16">
|
||
<div style="display: flex; justify-content: space-between; margin-bottom: 8px;">
|
||
<span style="font-size: 15px;">Food contributions</span>
|
||
<span class="budget-amount">~€8.5k</span>
|
||
</div>
|
||
<div class="progress-track"><div class="progress-fill" style="width: 34%;"></div></div>
|
||
</div>
|
||
<div class="card card-sm mb-16">
|
||
<div style="display: flex; justify-content: space-between; margin-bottom: 8px;">
|
||
<span style="font-size: 15px;">Ticket sales</span>
|
||
<span class="budget-amount">~€7k</span>
|
||
</div>
|
||
<div class="progress-track"><div class="progress-fill" style="width: 28%;"></div></div>
|
||
</div>
|
||
<div class="card card-sm card-highlight" style="padding-top: 28px;">
|
||
<div style="display: flex; justify-content: space-between; margin-bottom: 8px;">
|
||
<span style="font-size: 15px; font-weight: 700;">Sponsorship gap</span>
|
||
<span class="budget-amount" style="color: var(--primary); font-size: 20px;">€10–15k</span>
|
||
</div>
|
||
<div class="progress-track"><div class="progress-fill" style="width: 0%; background: var(--border);"></div></div>
|
||
<p style="font-size: 13px; color: var(--muted); margin-top: 12px;">
|
||
This is where your support makes the difference.
|
||
</p>
|
||
</div>
|
||
<div class="mt-24" style="padding: 20px; background: #fef2f2; border-radius: 8px;">
|
||
<p style="font-size: 14px; font-weight: 600; margin-bottom: 4px;">No organizer profits</p>
|
||
<p style="font-size: 13px; color: var(--muted);">
|
||
All organizing team members cover their own travel, food, and accommodation.
|
||
Full budget published publicly after the event.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">10</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 11: ALTERNATIVE PARTNERSHIPS ===================== -->
|
||
<div class="slide" style="background: #fafaf9;">
|
||
<div class="content">
|
||
<p class="uppercase primary mb-16">Beyond Financial Sponsorship</p>
|
||
<h2 class="mb-48">Alternative partnerships welcome</h2>
|
||
<div class="grid-3 gap-24">
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Track Sponsorship</h4>
|
||
<p class="small muted mb-8">Custom pricing</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Sponsor a specific theme track with naming rights and session curation involvement.
|
||
</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Accommodation</h4>
|
||
<p class="small muted mb-8">~€3,000–5,000</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Cover accommodation for participants who need financial support, broadening access.
|
||
</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Meal Sponsorship</h4>
|
||
<p class="small muted mb-8">~€2,000–4,000</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Sponsor catered meals — your name becomes synonymous with nourishment and community care.
|
||
</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Documentation</h4>
|
||
<p class="small muted mb-8">~€1,500</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Support professional photography, videography, and written summaries with credit.
|
||
</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Travel Grants</h4>
|
||
<p class="small muted mb-8">Custom</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Fund travel scholarships for participants from underrepresented regions or backgrounds.
|
||
</p>
|
||
</div>
|
||
<div class="card card-sm">
|
||
<h4 class="mb-8">Tech Partnership</h4>
|
||
<p class="small muted mb-8">In-kind</p>
|
||
<p class="muted" style="font-size: 14px;">
|
||
Provide tools, platforms, or infrastructure (streaming, collaboration) in exchange for recognition.
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">11</span>
|
||
</div>
|
||
|
||
<!-- ===================== SLIDE 12: CTA / CLOSING ===================== -->
|
||
<div class="slide slide-accent">
|
||
<div class="content text-center">
|
||
<h2 style="font-size: 48px; margin-bottom: 24px;">Let's build together.</h2>
|
||
<p style="font-size: 20px; max-width: 600px; margin: 0 auto 48px; opacity: 0.9;">
|
||
We're not seeking logo placement in exchange for attention. We're seeking partners who
|
||
share our vision of regenerative, cooperative, and commons-based futures.
|
||
</p>
|
||
<div style="display: inline-block; padding: 20px 40px; border: 2px solid rgba(255,255,255,0.4); border-radius: 12px; margin-bottom: 48px;">
|
||
<p style="font-size: 15px; opacity: 0.7; margin-bottom: 4px;">Get in touch</p>
|
||
<p style="font-size: 24px; font-weight: 700;">contact@cryptocommonsgather.ing</p>
|
||
</div>
|
||
<div>
|
||
<p style="font-size: 15px; opacity: 0.7; margin-bottom: 16px;">Learn more</p>
|
||
<p style="font-size: 18px; font-weight: 600;">
|
||
cryptocommonsgather.ing/sponsorships
|
||
</p>
|
||
</div>
|
||
<div class="mt-24" style="opacity: 0.5; font-size: 14px;">
|
||
<p>Crypto Commons Association · Commons Hub, Reichenau an der Rax, Austria</p>
|
||
<p>Telegram: t.me/+n5V_wDVKWrk1ZTBh</p>
|
||
</div>
|
||
</div>
|
||
<span class="slide-logo">CCG 2026</span>
|
||
<span class="slide-number">12</span>
|
||
</div>
|
||
|
||
</body>
|
||
</html>
|