757 lines
22 KiB
HTML
757 lines
22 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>AI Speedrun - Het Software Manifesto</title>
|
|
|
|
<!-- Fonts -->
|
|
<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=Inter:wght@300;400;500;600;700;900&family=Playfair+Display:wght@400;700;900&family=JetBrains+Mono:wght@400;600&display=swap" rel="stylesheet">
|
|
|
|
<style>
|
|
:root {
|
|
/* Core colors from UX stylesheet */
|
|
--primary-blue: #3B82F6;
|
|
--primary-blue-hover: #2563EB;
|
|
--green-accent: #16A34A;
|
|
--yellow-accent: #F59E0B;
|
|
--text-primary: #0F172A;
|
|
--text-secondary: #475569;
|
|
--background: #F8FAFC;
|
|
--surface: #FFFFFF;
|
|
--border-color: #E2E8F0;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
::selection {
|
|
background: var(--yellow-accent);
|
|
color: white;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
color: var(--text-primary);
|
|
background: white;
|
|
overflow-x: hidden;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Manifesto Typography */
|
|
.manifesto-statement {
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 900;
|
|
font-size: clamp(3rem, 8vw, 7rem);
|
|
line-height: 0.9;
|
|
letter-spacing: -0.04em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.manifesto-subtitle {
|
|
font-family: 'Playfair Display', serif;
|
|
font-weight: 400;
|
|
font-size: clamp(1.5rem, 3vw, 2.5rem);
|
|
line-height: 1.3;
|
|
font-style: italic;
|
|
}
|
|
|
|
.mono-accent {
|
|
font-family: 'JetBrains Mono', monospace;
|
|
font-weight: 600;
|
|
background: var(--yellow-accent);
|
|
color: white;
|
|
padding: 0.2em 0.4em;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
/* Navigation - Minimal */
|
|
nav {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
padding: 2rem 3rem;
|
|
background: transparent;
|
|
mix-blend-mode: difference;
|
|
}
|
|
|
|
.nav-inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
max-width: 1600px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.logo {
|
|
font-weight: 900;
|
|
font-size: 1.2rem;
|
|
color: white;
|
|
text-decoration: none;
|
|
letter-spacing: -0.02em;
|
|
}
|
|
|
|
.nav-action {
|
|
display: flex;
|
|
gap: 2rem;
|
|
align-items: center;
|
|
}
|
|
|
|
.nav-action a {
|
|
color: white;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
font-size: 0.9rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
}
|
|
|
|
/* Opening Statement */
|
|
.opening {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: var(--text-primary);
|
|
color: white;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.opening::before {
|
|
content: '2024';
|
|
position: absolute;
|
|
top: -10%;
|
|
right: -5%;
|
|
font-size: 30rem;
|
|
font-weight: 900;
|
|
opacity: 0.03;
|
|
letter-spacing: -0.05em;
|
|
}
|
|
|
|
.opening-content {
|
|
max-width: 1200px;
|
|
padding: 4rem 2rem;
|
|
z-index: 1;
|
|
position: relative;
|
|
}
|
|
|
|
.opening .manifesto-statement {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.opening .manifesto-subtitle {
|
|
opacity: 0.7;
|
|
max-width: 600px;
|
|
}
|
|
|
|
.scroll-indicator {
|
|
position: absolute;
|
|
bottom: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
font-size: 0.8rem;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.1em;
|
|
opacity: 0.5;
|
|
animation: bounce 2s infinite;
|
|
}
|
|
|
|
@keyframes bounce {
|
|
0%, 100% { transform: translateX(-50%) translateY(0); }
|
|
50% { transform: translateX(-50%) translateY(-10px); }
|
|
}
|
|
|
|
/* The Problem Statement */
|
|
.problem {
|
|
padding: 8rem 2rem;
|
|
background: white;
|
|
}
|
|
|
|
.problem-content {
|
|
max-width: 1400px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.problem-header {
|
|
margin-bottom: 6rem;
|
|
}
|
|
|
|
.problem-header h2 {
|
|
font-size: clamp(2.5rem, 6vw, 5rem);
|
|
font-weight: 900;
|
|
line-height: 1;
|
|
margin-bottom: 2rem;
|
|
letter-spacing: -0.03em;
|
|
}
|
|
|
|
.highlight-yellow {
|
|
background: linear-gradient(180deg, transparent 60%, var(--yellow-accent) 60%);
|
|
padding: 0 0.2em;
|
|
}
|
|
|
|
.problem-grid {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1px 1fr;
|
|
gap: 4rem;
|
|
margin-bottom: 6rem;
|
|
position: relative;
|
|
}
|
|
|
|
.divider-vertical {
|
|
background: var(--border-color);
|
|
width: 1px;
|
|
height: 100%;
|
|
}
|
|
|
|
.problem-column h3 {
|
|
font-size: 1.8rem;
|
|
margin-bottom: 2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
.problem-list {
|
|
list-style: none;
|
|
font-size: 1.1rem;
|
|
line-height: 2;
|
|
}
|
|
|
|
.problem-list li {
|
|
padding-left: 2rem;
|
|
position: relative;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.problem-list li::before {
|
|
content: '→';
|
|
position: absolute;
|
|
left: 0;
|
|
color: var(--yellow-accent);
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Cost Statement */
|
|
.cost-statement {
|
|
background: var(--text-primary);
|
|
color: white;
|
|
padding: 4rem;
|
|
text-align: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.cost-statement::after {
|
|
content: '€€€';
|
|
position: absolute;
|
|
bottom: -20%;
|
|
right: -5%;
|
|
font-size: 20rem;
|
|
opacity: 0.05;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.cost-amount {
|
|
font-size: clamp(4rem, 10vw, 8rem);
|
|
font-weight: 900;
|
|
letter-spacing: -0.04em;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
/* Personal Story */
|
|
.story {
|
|
padding: 8rem 2rem;
|
|
background: var(--background);
|
|
}
|
|
|
|
.story-content {
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
font-size: 1.3rem;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.story-content p {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.story-highlight {
|
|
font-size: 2rem;
|
|
font-weight: 700;
|
|
color: var(--green-accent);
|
|
margin: 3rem 0;
|
|
text-align: center;
|
|
}
|
|
|
|
/* The Solution */
|
|
.solution {
|
|
padding: 8rem 2rem;
|
|
background: white;
|
|
}
|
|
|
|
.solution-header {
|
|
text-align: center;
|
|
margin-bottom: 6rem;
|
|
}
|
|
|
|
.solution-header h2 {
|
|
font-size: clamp(3rem, 7vw, 6rem);
|
|
font-weight: 900;
|
|
margin-bottom: 1rem;
|
|
background: linear-gradient(135deg, var(--primary-blue), var(--green-accent));
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
|
|
.solution-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 3rem;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.solution-card {
|
|
padding: 2rem;
|
|
background: white;
|
|
border: 2px solid var(--border-color);
|
|
position: relative;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.solution-card:hover {
|
|
border-color: var(--primary-blue);
|
|
transform: translateY(-5px);
|
|
}
|
|
|
|
.solution-number {
|
|
position: absolute;
|
|
top: -20px;
|
|
left: 20px;
|
|
background: var(--yellow-accent);
|
|
color: white;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 900;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
/* Timeline */
|
|
.timeline {
|
|
padding: 8rem 2rem;
|
|
background: linear-gradient(135deg, var(--text-primary) 0%, #1e3a5f 100%);
|
|
color: white;
|
|
position: relative;
|
|
}
|
|
|
|
.timeline-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.week-blocks {
|
|
display: grid;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
gap: 2rem;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.week-block {
|
|
background: rgba(255,255,255,0.1);
|
|
backdrop-filter: blur(10px);
|
|
padding: 2rem;
|
|
text-align: center;
|
|
position: relative;
|
|
border: 2px solid transparent;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.week-block.active {
|
|
border-color: var(--yellow-accent);
|
|
background: rgba(255,255,255,0.15);
|
|
}
|
|
|
|
.week-number {
|
|
font-size: 3rem;
|
|
font-weight: 900;
|
|
opacity: 0.3;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.week-block.active .week-number {
|
|
opacity: 1;
|
|
color: var(--yellow-accent);
|
|
}
|
|
|
|
/* Call to Action */
|
|
.cta-section {
|
|
padding: 12rem 2rem;
|
|
background: white;
|
|
text-align: center;
|
|
position: relative;
|
|
}
|
|
|
|
.cta-content h2 {
|
|
font-size: clamp(3rem, 8vw, 7rem);
|
|
font-weight: 900;
|
|
margin-bottom: 2rem;
|
|
line-height: 0.9;
|
|
letter-spacing: -0.04em;
|
|
}
|
|
|
|
.cta-buttons {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.btn-primary {
|
|
background: var(--primary-blue);
|
|
color: white;
|
|
padding: 1.5rem 3rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
transition: all 0.3s;
|
|
border: 3px solid var(--primary-blue);
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background: var(--primary-blue-hover);
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.btn-secondary {
|
|
background: transparent;
|
|
color: var(--text-primary);
|
|
padding: 1.5rem 3rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
text-decoration: none;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.05em;
|
|
transition: all 0.3s;
|
|
border: 3px solid var(--text-primary);
|
|
}
|
|
|
|
.btn-secondary:hover {
|
|
background: var(--text-primary);
|
|
color: white;
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
padding: 4rem 2rem;
|
|
background: var(--text-primary);
|
|
color: white;
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-content {
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.footer-content p {
|
|
opacity: 0.7;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.signature {
|
|
margin-top: 2rem;
|
|
font-size: 1.2rem;
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Responsive */
|
|
@media (max-width: 768px) {
|
|
.problem-grid {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.divider-vertical {
|
|
display: none;
|
|
}
|
|
|
|
.week-blocks {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.cta-buttons {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
/* Animations */
|
|
.fade-in {
|
|
opacity: 0;
|
|
animation: fadeIn 1s ease-out forwards;
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<!-- Minimal Navigation -->
|
|
<nav>
|
|
<div class="nav-inner">
|
|
<a href="#" class="logo">AI SPEEDRUN</a>
|
|
<div class="nav-action">
|
|
<a href="#manifesto">Manifesto</a>
|
|
<a href="#timeline">Build</a>
|
|
<a href="#demo">Demo →</a>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
<!-- Opening Statement -->
|
|
<section class="opening">
|
|
<div class="opening-content">
|
|
<h1 class="manifesto-statement">
|
|
Software<br>
|
|
is<br>
|
|
<span style="color: var(--yellow-accent);">Kapot.</span>
|
|
</h1>
|
|
<p class="manifesto-subtitle">
|
|
En iedereen weet het.
|
|
</p>
|
|
</div>
|
|
<div class="scroll-indicator">↓ Scroll</div>
|
|
</section>
|
|
|
|
<!-- The Problem -->
|
|
<section class="problem" id="manifesto">
|
|
<div class="problem-content">
|
|
<div class="problem-header">
|
|
<h2>
|
|
Ik werk al <span class="highlight-yellow">15 jaar</span> in de GGZ.
|
|
</h2>
|
|
<p style="font-size: 1.5rem; color: var(--text-secondary);">
|
|
PinkRoccade, Nedap, Zorgdomein, Caress—ik heb ze allemaal voorbij zien komen.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="problem-grid">
|
|
<div class="problem-column">
|
|
<h3>De Belofte</h3>
|
|
<ul class="problem-list">
|
|
<li>€100.000/jaar licentiekosten</li>
|
|
<li>6 maanden implementatie</li>
|
|
<li>€50.000 setup & training</li>
|
|
<li>5-jarig contract</li>
|
|
<li>"Alles wat je nodig hebt"</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="divider-vertical"></div>
|
|
|
|
<div class="problem-column">
|
|
<h3>De Realiteit</h3>
|
|
<ul class="problem-list">
|
|
<li>Behandelaren haten de workflow</li>
|
|
<li>IT worstelt met integraties</li>
|
|
<li>200 features, 20 gebruikt</li>
|
|
<li>18 maanden voor een "kleine" aanpassing</li>
|
|
<li>Vendor lock-in tot in de eeuwigheid</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="cost-statement">
|
|
<div class="cost-amount">€500.000+</div>
|
|
<p style="font-size: 1.5rem;">Over 5 jaar. Voor software die niet past.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Personal Story -->
|
|
<section class="story">
|
|
<div class="story-content">
|
|
<p>
|
|
<strong>Als behandelaar</strong> vulde ik formulieren in die niemand las.
|
|
</p>
|
|
<p>
|
|
<strong>Als product owner</strong> probeerde ik systemen te fixen die fundamenteel broken waren.
|
|
</p>
|
|
<p>
|
|
<strong>Als consultant</strong> zag ik organisaties worstelen met exact dezelfde problemen.
|
|
</p>
|
|
|
|
<div class="story-highlight">
|
|
"Dit moet toch sneller kunnen?"
|
|
</div>
|
|
|
|
<p style="text-align: center; font-size: 1.5rem;">
|
|
Telkens dezelfde vraag. Telkens hetzelfde antwoord: <strong>"Nee, zo werkt het nu eenmaal."</strong>
|
|
</p>
|
|
|
|
<p style="text-align: center; font-size: 2rem; font-weight: 900; color: var(--text-primary); margin-top: 3rem;">
|
|
Bullshit.
|
|
</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- The Solution -->
|
|
<section class="solution">
|
|
<div class="solution-header">
|
|
<h2>NU KAN HET WEL</h2>
|
|
<p style="font-size: 1.5rem; color: var(--text-secondary);">
|
|
4 weken. €50/maand. Klaar.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="solution-grid">
|
|
<div class="solution-card">
|
|
<span class="solution-number">1</span>
|
|
<h3 style="margin-bottom: 1rem; margin-top: 1rem;">AI-Powered Intake</h3>
|
|
<p>45 minuten gesprek → 2 minuten samenvatting</p>
|
|
<code class="mono-accent" style="display: inline-block; margin-top: 1rem;">WEEK 1</code>
|
|
</div>
|
|
|
|
<div class="solution-card">
|
|
<span class="solution-number">2</span>
|
|
<h3 style="margin-bottom: 1rem; margin-top: 1rem;">DSM-5 Suggesties</h3>
|
|
<p>Automatische diagnose-ondersteuning</p>
|
|
<code class="mono-accent" style="display: inline-block; margin-top: 1rem;">WEEK 2</code>
|
|
</div>
|
|
|
|
<div class="solution-card">
|
|
<span class="solution-number">3</span>
|
|
<h3 style="margin-bottom: 1rem; margin-top: 1rem;">Behandelplannen</h3>
|
|
<p>AI genereert, jij verfijnt</p>
|
|
<code class="mono-accent" style="display: inline-block; margin-top: 1rem;">WEEK 3</code>
|
|
</div>
|
|
|
|
<div class="solution-card">
|
|
<span class="solution-number">4</span>
|
|
<h3 style="margin-bottom: 1rem; margin-top: 1rem;">Live & Werkend</h3>
|
|
<p>Geen jarenlange implementatie</p>
|
|
<code class="mono-accent" style="display: inline-block; margin-top: 1rem;">WEEK 4</code>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Timeline -->
|
|
<section class="timeline" id="timeline">
|
|
<div class="timeline-content">
|
|
<h2 style="font-size: 3rem; font-weight: 900; margin-bottom: 1rem;">
|
|
Build in Public
|
|
</h2>
|
|
<p style="font-size: 1.3rem; opacity: 0.9;">
|
|
Geen geheimen. Alles op LinkedIn. Live.
|
|
</p>
|
|
|
|
<div class="week-blocks">
|
|
<div class="week-block active">
|
|
<div class="week-number">01</div>
|
|
<h3>Setup</h3>
|
|
<p style="opacity: 0.7;">Database, Auth, UI</p>
|
|
</div>
|
|
<div class="week-block active">
|
|
<div class="week-number">02</div>
|
|
<h3>AI Core</h3>
|
|
<p style="opacity: 0.7;">Claude integratie</p>
|
|
</div>
|
|
<div class="week-block">
|
|
<div class="week-number">03</div>
|
|
<h3>Workflows</h3>
|
|
<p style="opacity: 0.7;">Intake → Plan</p>
|
|
</div>
|
|
<div class="week-block">
|
|
<div class="week-number">04</div>
|
|
<h3>Launch</h3>
|
|
<p style="opacity: 0.7;">Live demo</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Call to Action -->
|
|
<section class="cta-section">
|
|
<div class="cta-content">
|
|
<h2>
|
|
Stop met<br>
|
|
<span style="color: var(--text-secondary);">wachten op</span><br>
|
|
verandering
|
|
</h2>
|
|
|
|
<p style="font-size: 1.5rem; max-width: 600px; margin: 2rem auto; color: var(--text-secondary);">
|
|
Bouw hem gewoon zelf. In 4 weken.
|
|
</p>
|
|
|
|
<div class="cta-buttons">
|
|
<a href="#demo" class="btn-primary">Watch Live Demo</a>
|
|
<a href="https://linkedin.com" class="btn-secondary">Volg de Build</a>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Footer -->
|
|
<footer>
|
|
<div class="footer-content">
|
|
<p>Dit is geen startup pitch.</p>
|
|
<p>Dit is geen vendor lock-in.</p>
|
|
<p>Dit is een statement.</p>
|
|
|
|
<div class="signature">
|
|
Colin Lindo<br>
|
|
<span style="opacity: 0.7; font-weight: 400;">15 jaar GGZ. 10 jaar development.</span><br>
|
|
<span style="color: var(--yellow-accent);">4 weken to change everything.</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<script>
|
|
// Smooth scroll
|
|
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
|
|
anchor.addEventListener('click', function (e) {
|
|
e.preventDefault();
|
|
const target = document.querySelector(this.getAttribute('href'));
|
|
if (target) {
|
|
target.scrollIntoView({
|
|
behavior: 'smooth',
|
|
block: 'start'
|
|
});
|
|
}
|
|
});
|
|
});
|
|
|
|
// Fade in on scroll
|
|
const observerOptions = {
|
|
threshold: 0.1,
|
|
rootMargin: '0px 0px -50px 0px'
|
|
};
|
|
|
|
const observer = new IntersectionObserver(entries => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
entry.target.classList.add('fade-in');
|
|
}
|
|
});
|
|
}, observerOptions);
|
|
|
|
document.querySelectorAll('.solution-card, .week-block').forEach(el => {
|
|
observer.observe(el);
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|