Phase 2 of i18n rollout: - All 54 static custom sites now have data-de/data-en attributes on visible text elements with English translations - i18n.js script tag injected into all sites - Language toggle button with machine-translation disclaimer added to every site's footer area - Brand names / domain wordplay preserved unchanged in both languages - 2 dynamic sites (dasbes.de, dumusst.com) skipped — no static HTML
441 lines
15 KiB
HTML
441 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>KItox — Dein KI-Detox</title>
|
|
<meta name="description" content="KItox ist die 7-Tage KI-Detox Challenge. Bewusster Entzug von künstlicher Intelligenz.">
|
|
<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=Nunito:wght@400;600;700;800&display=swap" rel="stylesheet">
|
|
<style>
|
|
*, *::before, *::after {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:root {
|
|
--bg: #f7f4ee;
|
|
--bg-warm: #f0ebe1;
|
|
--text: #3b3f2e;
|
|
--text-light: #6b705c;
|
|
--green: #7c956b;
|
|
--green-light: #a3b899;
|
|
--green-pale: #dde6d5;
|
|
--earth: #c4ac82;
|
|
--earth-light: #e8dcc8;
|
|
--white: #fffdf8;
|
|
}
|
|
|
|
html {
|
|
scroll-behavior: smooth;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Nunito', -apple-system, sans-serif;
|
|
background: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.7;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
/* Hero */
|
|
.hero {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
padding: 2rem;
|
|
position: relative;
|
|
}
|
|
|
|
.hero::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: radial-gradient(ellipse at 50% 30%, var(--green-pale) 0%, transparent 70%);
|
|
opacity: 0.5;
|
|
pointer-events: none;
|
|
}
|
|
|
|
.breath-circle {
|
|
width: 160px;
|
|
height: 160px;
|
|
border-radius: 50%;
|
|
background: radial-gradient(circle, var(--green-light) 0%, var(--green-pale) 60%, transparent 100%);
|
|
opacity: 0.6;
|
|
animation: breathe 6s ease-in-out infinite;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
@keyframes breathe {
|
|
0%, 100% { transform: scale(0.85); opacity: 0.4; }
|
|
50% { transform: scale(1.15); opacity: 0.7; }
|
|
}
|
|
|
|
.logo {
|
|
font-size: clamp(4rem, 12vw, 8rem);
|
|
font-weight: 800;
|
|
letter-spacing: -0.02em;
|
|
color: var(--text);
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.logo .ki {
|
|
color: var(--green);
|
|
}
|
|
|
|
.subline {
|
|
font-size: clamp(1.1rem, 2.5vw, 1.4rem);
|
|
color: var(--text-light);
|
|
margin-top: 1rem;
|
|
font-weight: 400;
|
|
position: relative;
|
|
z-index: 1;
|
|
}
|
|
|
|
.scroll-hint {
|
|
position: absolute;
|
|
bottom: 2.5rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 24px;
|
|
height: 40px;
|
|
border: 2px solid var(--green-light);
|
|
border-radius: 12px;
|
|
opacity: 0.4;
|
|
}
|
|
|
|
.scroll-hint::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: 6px;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
width: 4px;
|
|
height: 8px;
|
|
background: var(--green-light);
|
|
border-radius: 2px;
|
|
animation: scroll-dot 2s ease-in-out infinite;
|
|
}
|
|
|
|
@keyframes scroll-dot {
|
|
0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
|
|
50% { opacity: 0.3; transform: translateX(-50%) translateY(12px); }
|
|
}
|
|
|
|
/* Sections */
|
|
section {
|
|
max-width: 680px;
|
|
margin: 0 auto;
|
|
padding: 5rem 2rem;
|
|
}
|
|
|
|
.section-label {
|
|
font-size: 0.75rem;
|
|
font-weight: 700;
|
|
text-transform: uppercase;
|
|
letter-spacing: 0.15em;
|
|
color: var(--green);
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
/* Problem */
|
|
.problem {
|
|
padding: 6rem 2rem;
|
|
}
|
|
|
|
.problem-text {
|
|
font-size: clamp(1.3rem, 3vw, 1.7rem);
|
|
line-height: 1.8;
|
|
color: var(--text);
|
|
font-weight: 400;
|
|
}
|
|
|
|
.problem-text strong {
|
|
color: var(--green);
|
|
font-weight: 700;
|
|
}
|
|
|
|
/* Divider */
|
|
.divider {
|
|
width: 48px;
|
|
height: 3px;
|
|
background: var(--green-light);
|
|
border-radius: 2px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
/* Challenge */
|
|
.challenge {
|
|
padding: 5rem 2rem 6rem;
|
|
}
|
|
|
|
.challenge h2 {
|
|
font-size: clamp(1.8rem, 4vw, 2.4rem);
|
|
font-weight: 800;
|
|
margin-bottom: 0.5rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.challenge .intro {
|
|
color: var(--text-light);
|
|
font-size: 1.05rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
|
|
.days {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.day {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
gap: 1.25rem;
|
|
padding: 1.5rem;
|
|
background: var(--white);
|
|
border-radius: 16px;
|
|
border: 1px solid var(--earth-light);
|
|
transition: transform 0.2s ease, box-shadow 0.2s ease;
|
|
}
|
|
|
|
.day:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 24px rgba(107, 112, 92, 0.08);
|
|
}
|
|
|
|
.day-num {
|
|
flex-shrink: 0;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
background: var(--green-pale);
|
|
color: var(--green);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-weight: 800;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
.day-content h3 {
|
|
font-size: 1.05rem;
|
|
font-weight: 700;
|
|
margin-bottom: 0.25rem;
|
|
color: var(--text);
|
|
}
|
|
|
|
.day-content p {
|
|
font-size: 0.92rem;
|
|
color: var(--text-light);
|
|
line-height: 1.6;
|
|
}
|
|
|
|
/* Provocation */
|
|
.provocation {
|
|
text-align: center;
|
|
padding: 6rem 2rem 8rem;
|
|
}
|
|
|
|
.provocation p {
|
|
font-size: clamp(1rem, 2vw, 1.15rem);
|
|
color: var(--text-light);
|
|
max-width: 480px;
|
|
margin: 0 auto;
|
|
line-height: 1.8;
|
|
}
|
|
|
|
.provocation .highlight {
|
|
display: block;
|
|
margin-top: 0.75rem;
|
|
font-weight: 700;
|
|
color: var(--green);
|
|
}
|
|
|
|
/* Footer */
|
|
footer {
|
|
text-align: center;
|
|
padding: 2rem;
|
|
font-size: 0.8rem;
|
|
color: var(--text-light);
|
|
opacity: 0.5;
|
|
}
|
|
|
|
/* Animations */
|
|
.fade-in {
|
|
opacity: 0;
|
|
transform: translateY(20px);
|
|
transition: opacity 0.8s ease, transform 0.8s ease;
|
|
}
|
|
|
|
.fade-in.visible {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
|
|
/* Mobile */
|
|
@media (max-width: 640px) {
|
|
section {
|
|
padding: 3.5rem 1.5rem;
|
|
}
|
|
|
|
.problem {
|
|
padding: 4rem 1.5rem;
|
|
}
|
|
|
|
.challenge {
|
|
padding: 3.5rem 1.5rem 4rem;
|
|
}
|
|
|
|
.day {
|
|
padding: 1.25rem;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.provocation {
|
|
padding: 4rem 1.5rem 5rem;
|
|
}
|
|
|
|
.breath-circle {
|
|
width: 120px;
|
|
height: 120px;
|
|
margin-bottom: 2rem;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Hero -->
|
|
<section class="hero">
|
|
<div class="breath-circle"></div>
|
|
<h1 class="logo"><span class="ki">KI</span>tox</h1>
|
|
<p class="subline" data-de="Dein KI-Detox beginnt hier." data-en="Your AI detox starts here.">Dein KI-Detox beginnt hier.</p>
|
|
<div class="scroll-hint"></div>
|
|
</section>
|
|
|
|
<!-- Problem -->
|
|
<section class="problem fade-in">
|
|
<div class="section-label" data-de="Das Problem" data-en="The problem">Das Problem</div>
|
|
<p class="problem-text" data-de="Du merkst es nicht sofort. Aber dein Denken hat sich verändert.<br><br>
|
|
Jede Frage geht zuerst an die <strong>KI</strong>.<br>
|
|
Jeder Text wird zuerst <strong>generiert</strong>.<br>
|
|
Jede Entscheidung zuerst <strong>delegiert</strong>." data-en="You don't notice it right away. But your thinking has changed.<br><br>
|
|
Every question goes to the <strong>AI</strong> first.<br>
|
|
Every text gets <strong>generated</strong> first.<br>
|
|
Every decision gets <strong>delegated</strong> first.">
|
|
Du merkst es nicht sofort. Aber dein Denken hat sich verändert.<br><br>
|
|
Jede Frage geht zuerst an die <strong>KI</strong>.<br>
|
|
Jeder Text wird zuerst <strong>generiert</strong>.<br>
|
|
Jede Entscheidung zuerst <strong>delegiert</strong>.
|
|
</p>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- Challenge -->
|
|
<section class="challenge fade-in">
|
|
<div class="section-label" data-de="Das Programm" data-en="The program">Das Programm</div>
|
|
<h2 data-de="7 Tage KI-Detox" data-en="7-day AI detox">7 Tage KI-Detox</h2>
|
|
<p class="intro" data-de="Sieben Tage. Sieben Übungen. Kein Trick — nur du." data-en="Seven days. Seven exercises. No trick — just you.">Sieben Tage. Sieben Übungen. Kein Trick — nur du.</p>
|
|
|
|
<div class="days">
|
|
<div class="day fade-in">
|
|
<div class="day-num">1</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Keine KI-Suche" data-en="No AI search">Keine KI-Suche</h3>
|
|
<p data-de="Tippe deine Frage nicht in ChatGPT. Denk selbst nach. Oder frag einen Menschen." data-en="Don't type your question into ChatGPT. Think for yourself. Or ask a person.">Tippe deine Frage nicht in ChatGPT. Denk selbst nach. Oder frag einen Menschen.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">2</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Eigene Mails schreiben" data-en="Write your own emails">Eigene Mails schreiben</h3>
|
|
<p data-de="Jedes Wort von dir. Kein „Formuliere mir eine höfliche Absage". Deine Stimme." data-en="Every word from you. No "write me a polite rejection". Your voice.">Jedes Wort von dir. Kein „Formuliere mir eine höfliche Absage". Deine Stimme.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">3</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Eigene Texte formulieren" data-en="Write your own texts">Eigene Texte formulieren</h3>
|
|
<p data-de="Blog, Bericht, Nachricht — alles handgeschrieben. Darf unperfekt sein." data-en="Blog, report, message — all handwritten. Allowed to be imperfect.">Blog, Bericht, Nachricht — alles handgeschrieben. Darf unperfekt sein.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">4</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Ohne Navigation fahren" data-en="Drive without navigation">Ohne Navigation fahren</h3>
|
|
<p data-de="Karte anschauen, Route merken, losfahren. Dein Orientierungssinn lebt noch." data-en="Look at the map, memorize the route, drive off. Your sense of direction is still alive.">Karte anschauen, Route merken, losfahren. Dein Orientierungssinn lebt noch.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">5</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Analog planen" data-en="Plan analog">Analog planen</h3>
|
|
<p data-de="Papier und Stift. Keine App, kein Assistent. Dein Tag, dein Plan." data-en="Paper and pen. No app, no assistant. Your day, your plan.">Papier und Stift. Keine App, kein Assistent. Dein Tag, dein Plan.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">6</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Langeweile aushalten" data-en="Endure boredom">Langeweile aushalten</h3>
|
|
<p data-de="Kein Prompt. Kein „Erzähl mir was". Sitz da und lass deinen Kopf machen." data-en="No prompt. No "tell me something". Sit there and let your mind do its thing.">Kein Prompt. Kein „Erzähl mir was". Sitz da und lass deinen Kopf machen.</p>
|
|
</div>
|
|
</div>
|
|
<div class="day fade-in">
|
|
<div class="day-num">7</div>
|
|
<div class="day-content">
|
|
<h3 data-de="Reflektieren" data-en="Reflect">Reflektieren</h3>
|
|
<p data-de="Was war schwer? Was war überraschend leicht? Was hat sich verändert?" data-en="What was hard? What was surprisingly easy? What has changed?">Was war schwer? Was war überraschend leicht? Was hat sich verändert?</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<!-- Provocation -->
|
|
<section class="provocation fade-in">
|
|
<p data-de="Diese Seite wurde von einer KI gebaut.
|
|
<span class="highlight">Du siehst das Problem.</span>" data-en="This site was built by an AI.
|
|
<span class="highlight">You see the problem.</span>">
|
|
Diese Seite wurde von einer KI gebaut.
|
|
<span class="highlight">Du siehst das Problem.</span>
|
|
</p>
|
|
</section>
|
|
|
|
<footer>
|
|
<span>KItox — 2026</span>
|
|
<div style="text-align:center;margin-top:16px;opacity:1;">
|
|
<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>
|
|
</footer>
|
|
|
|
<script>
|
|
const observer = new IntersectionObserver((entries) => {
|
|
entries.forEach(entry => {
|
|
if (entry.isIntersecting) {
|
|
entry.target.classList.add('visible');
|
|
}
|
|
});
|
|
}, { threshold: 0.15, rootMargin: '0px 0px -40px 0px' });
|
|
|
|
document.querySelectorAll('.fade-in').forEach(el => observer.observe(el));
|
|
</script>
|
|
|
|
<script src="/shared/i18n.js"></script>
|
|
</body>
|
|
</html>
|