Files
onepager/sites/billableaua.de/index.html
m 84b28d64f5 feat: AI/KI disclosure footer — shared/ai-disclosure.js + all 54 sites
Self-injecting script following impressum.js pattern:
- data-tone attribute: playful | serious | minimal | none
- Reads document.documentElement.lang for KI (de) vs AI (en)
- MutationObserver on lang attr for i18n toggle compat
- All tones link to msbls.de/ki
- Injected into all 54 custom sites with data-tone="playful"
- Template infra: base.html includes script, render.sh reads disclosure.tone
- disclosure.tone added to 3 example site.yaml files

Implements m/onepager#2
2026-04-01 13:26:04 +02:00

290 lines
9.5 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Billable Aua.</title>
<meta name="description" content="Billable Hours. Das Vergütungsmodell, das Effizienz bestraft und Leidensfähigkeit belohnt.">
<meta name="robots" content="noindex, nofollow">
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>.</text></svg>">
<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=Barlow+Condensed:wght@300;400;600;700;900&display=swap" rel="stylesheet">
<style>
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #0a0a0a;
--text: #e8e8e8;
--text-dim: #777;
--text-muted: #444;
--red: #cc2222;
--red-glow: rgba(204, 34, 34, 0.15);
}
html { scroll-behavior: smooth; }
body {
font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
background: var(--bg);
color: var(--text);
line-height: 1.5;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
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.9' numOctaves='4' 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: 9999;
}
.wrap {
max-width: 800px;
margin: 0 auto;
padding: 0 24px;
}
/* Hero */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}
.hero::after {
content: '';
position: absolute;
bottom: 60px;
left: 50%;
transform: translateX(-50%);
width: 1px;
height: 80px;
background: linear-gradient(to bottom, var(--text-muted), transparent);
animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
0%, 100% { opacity: 0.3; }
50% { opacity: 0.8; }
}
h1 {
font-size: clamp(5rem, 15vw, 12rem);
font-weight: 900;
letter-spacing: -0.03em;
line-height: 0.9;
text-transform: uppercase;
text-align: center;
animation: fadeIn 1.2s ease-out;
}
h1 .dot {
color: var(--red);
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
/* Divider */
.line {
height: 1px;
background: var(--text-muted);
opacity: 0.3;
}
/* Numbers */
.numbers {
padding: 120px 0;
text-align: center;
}
.numbers p {
font-size: clamp(1.3rem, 3vw, 1.8rem);
font-weight: 300;
color: var(--text-dim);
line-height: 1.8;
max-width: 640px;
margin: 0 auto;
}
.numbers .num {
color: var(--red);
font-weight: 700;
font-size: 1.15em;
}
/* Kritik */
.kritik {
padding: 80px 0 120px;
}
.kritik-item {
padding: 48px 0;
border-bottom: 1px solid rgba(68, 68, 68, 0.3);
}
.kritik-item:first-child {
border-top: 1px solid rgba(68, 68, 68, 0.3);
}
.kritik-item p {
font-size: clamp(1.5rem, 4vw, 2.4rem);
font-weight: 600;
letter-spacing: -0.01em;
line-height: 1.3;
color: var(--text);
}
.kritik-item .num {
color: var(--red);
font-weight: 700;
}
.kritik-item .dim {
color: var(--text-dim);
font-weight: 300;
}
/* Silence */
.silence {
padding: 160px 0;
text-align: center;
}
.silence p {
font-size: clamp(1rem, 2vw, 1.2rem);
color: var(--text-muted);
font-weight: 300;
letter-spacing: 0.15em;
text-transform: uppercase;
}
/* Footer */
footer {
padding: 40px 0;
text-align: center;
border-top: 1px solid rgba(68, 68, 68, 0.2);
}
footer p {
color: var(--text-muted);
font-size: 0.85rem;
font-weight: 400;
letter-spacing: 0.05em;
}
/* Scroll reveal */
.reveal {
opacity: 0;
transform: translateY(20px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}
/* Responsive */
@media (max-width: 640px) {
.numbers { padding: 80px 0; }
.kritik { padding: 40px 0 80px; }
.kritik-item { padding: 32px 0; }
.silence { padding: 100px 0; }
}
</style>
</head>
<body>
<section class="hero">
<h1>Billable<br>Aua<span class="dot">.</span></h1>
</section>
<div class="line"></div>
<section class="numbers">
<div class="wrap">
<p class="reveal" data-de="&lt;span class=&quot;num&quot;&gt;2.400&lt;/span&gt; Stunden pro Jahr.&lt;br&gt; &lt;span class=&quot;num&quot;&gt;6,5&lt;/span&gt; Stunden pro Tag, die du &amp;bdquo;verkaufst&amp;ldquo;.&lt;br&gt; Jede Minute dokumentiert.&lt;br&gt; Jede Pause ein Verlust." data-en="&lt;span class=&quot;num&quot;&gt;2,400&lt;/span&gt; hours per year.&lt;br&gt; &lt;span class=&quot;num&quot;&gt;6.5&lt;/span&gt; hours per day you &amp;ldquo;sell&amp;rdquo;.&lt;br&gt; Every minute documented.&lt;br&gt; Every break a loss.">
<span class="num">2.400</span> Stunden pro Jahr.<br>
<span class="num">6,5</span> Stunden pro Tag, die du &bdquo;verkaufst&ldquo;.<br>
Jede Minute dokumentiert.<br>
Jede Pause ein Verlust.
</p>
</div>
</section>
<div class="line"></div>
<section class="kritik">
<div class="wrap">
<div class="kritik-item reveal">
<p data-de="Du wirst nach Zeit bezahlt, &lt;span class=&quot;dim&quot;&gt;nicht nach Ergebnis.&lt;/span&gt;" data-en="You are paid for time, &lt;span class=&quot;dim&quot;&gt;not for results.&lt;/span&gt;">Du wirst nach Zeit bezahlt, <span class="dim">nicht nach Ergebnis.</span></p>
</div>
<div class="kritik-item reveal">
<p data-de="Effizienz wird bestraft. &lt;span class=&quot;dim&quot;&gt;Wer schneller arbeitet, verdient weniger.&lt;/span&gt;" data-en="Efficiency is punished. &lt;span class=&quot;dim&quot;&gt;Whoever works faster earns less.&lt;/span&gt;">Effizienz wird bestraft. <span class="dim">Wer schneller arbeitet, verdient weniger.</span></p>
</div>
<div class="kritik-item reveal">
<p data-de="Der Mandant zahlt &lt;span class=&quot;dim&quot;&gt;für deine Lernkurve.&lt;/span&gt;" data-en="The client pays &lt;span class=&quot;dim&quot;&gt;for your learning curve.&lt;/span&gt;">Der Mandant zahlt <span class="dim">für deine Lernkurve.</span></p>
</div>
<div class="kritik-item reveal">
<p data-de="&lt;span class=&quot;num&quot;&gt;8&lt;/span&gt; Stunden Arbeit = &lt;span class=&quot;num&quot;&gt;6,5&lt;/span&gt; billable. &lt;span class=&quot;dim&quot;&gt;Die restlichen 1,5? Dein Problem.&lt;/span&gt;" data-en="&lt;span class=&quot;num&quot;&gt;8&lt;/span&gt; hours work = &lt;span class=&quot;num&quot;&gt;6.5&lt;/span&gt; billable. &lt;span class=&quot;dim&quot;&gt;The remaining 1.5? Your problem.&lt;/span&gt;"><span class="num">8</span> Stunden Arbeit = <span class="num">6,5</span> billable. <span class="dim">Die restlichen 1,5? Dein Problem.</span></p>
</div>
<div class="kritik-item reveal">
<p data-de="Partnertrack heißt: &lt;span class=&quot;dim&quot;&gt;&lt;span class=&quot;num&quot;&gt;10&lt;/span&gt; Jahre beweisen, dass du leidensfähig bist.&lt;/span&gt;" data-en="Partner track means: &lt;span class=&quot;dim&quot;&gt;&lt;span class=&quot;num&quot;&gt;10&lt;/span&gt; years proving you can endure.&lt;/span&gt;">Partnertrack heißt: <span class="dim"><span class="num">10</span> Jahre beweisen, dass du leidensfähig bist.</span></p>
</div>
</div>
</section>
<div class="line"></div>
<section class="silence">
<div class="wrap">
<p class="reveal" data-de="Kein Kontakt. Kein Newsletter. Kein Impressum." data-en="No contact. No newsletter. No imprint.">Kein Kontakt. Kein Newsletter. Kein Impressum.</p>
</div>
</section>
<footer>
<div class="wrap">
<p>billableaua.de &mdash; 2026</p>
<div style="text-align:center;margin-top:16px;">
<button data-i18n-toggle title="Maschinell übersetzt / Machine-translated — German is the original." style="background:none;border:1px solid var(--text-muted,#444);color:var(--text-muted,#444);font-size:0.65rem;letter-spacing:0.1em;padding:4px 12px;border-radius:4px;cursor:pointer;">EN</button>
<br><small data-de="Maschinell übersetzt" data-en="Machine-translated" style="color:var(--text-muted,#444);font-size:0.6rem;opacity:0.5;">Maschinell übersetzt</small>
</div>
</div>
</footer>
<script>
const observer = new IntersectionObserver((entries) => {
entries.forEach(entry => {
if (entry.isIntersecting) {
entry.target.classList.add('visible');
}
});
}, { threshold: 0.15 });
document.querySelectorAll('.reveal').forEach(el => observer.observe(el));
</script>
<script src="/shared/ai-disclosure.js" data-tone="playful"></script>
<script src="/shared/i18n.js"></script>
</body>
</html>