Files
onepager/sites/paragraphenraiter.de/index.html
mAi 6f5de542ab feat: initial mono-repo with 30 vanity domain sites
Scaffold complete repo structure:
- 28 static sites extracted from running containers on mlake
- 2 dynamic sites (dasbes.de, dumusst.com) marked for separate handling
- Template system with 6 templates (person-dark/light, product-dark, editorial, fun, minimal)
- Shared CSS (variables, responsive, animations, noise overlay)
- nginx config generator with multi-domain alias support
- Build script with Docker-based nginx validation
- add-site.sh helper for scaffolding new domains
- Dockerfile for single nginx:alpine container

Sites: clemensplassmann.de, danosi.de, deinesei.de, derkaiseristnackt.de,
elefantenhor.de, fragina.de, frenchkis.de, ichbinaufbali.de, ichbinaufbarley.de,
insain.de, julietensity.de, kainco.de (+keinco.de), kainstress.de, keinefreun.de,
knzlmgmt.de, kopffrai.de, legalais.de, machesdocheinfach.de, mai-otto.de
(+otto.flexsiebels.de, ottomatisch.de, ichbinotto.de), martinsiebels.de,
matthiasbreier.de, osterai.de, paragraphenraiter.de, schulfrai.de, smartin3.de,
sorgenfrai.de, vonschraitter.de, wartebitte.de

Refs: otto#341
2026-03-29 13:20:27 +02:00

733 lines
23 KiB
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ParagraphenrAIter — KI trifft Jura</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--gold: #c9a84c;
--gold-light: #e8d48b;
--gold-dim: #8a7235;
--dark: #0a0a0f;
--dark-surface: #12121a;
--dark-card: #1a1a26;
--dark-border: #2a2a3a;
--text: #e8e6e1;
--text-dim: #8a8a9a;
--accent-blue: #4a6fa5;
--accent-red: #8b3a3a;
}
html {
scroll-behavior: smooth;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: var(--dark);
color: var(--text);
line-height: 1.6;
overflow-x: hidden;
}
/* === HERO === */
.hero {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
padding: 2rem;
text-align: center;
background:
radial-gradient(ellipse 80% 60% at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 70%),
radial-gradient(ellipse 40% 40% at 20% 80%, rgba(74, 111, 165, 0.04) 0%, transparent 60%),
var(--dark);
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background:
repeating-linear-gradient(
0deg,
transparent,
transparent 100px,
rgba(201, 168, 76, 0.015) 100px,
rgba(201, 168, 76, 0.015) 101px
),
repeating-linear-gradient(
90deg,
transparent,
transparent 100px,
rgba(201, 168, 76, 0.015) 100px,
rgba(201, 168, 76, 0.015) 101px
);
pointer-events: none;
}
.hero-content {
position: relative;
z-index: 1;
max-width: 900px;
}
.paragraph-symbol {
font-family: 'Playfair Display', serif;
font-size: clamp(6rem, 15vw, 12rem);
font-weight: 900;
color: var(--gold);
line-height: 1;
margin-bottom: -0.5rem;
text-shadow:
0 0 80px rgba(201, 168, 76, 0.3),
0 0 160px rgba(201, 168, 76, 0.1);
position: relative;
display: inline-block;
}
.paragraph-symbol::after {
content: '';
position: absolute;
bottom: 0.15em;
left: 50%;
transform: translateX(-50%);
width: 120%;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}
.brand-name {
font-family: 'Playfair Display', serif;
font-size: clamp(2.2rem, 6vw, 4.5rem);
font-weight: 900;
letter-spacing: -0.02em;
margin: 1.5rem 0 0.5rem;
line-height: 1.1;
}
.brand-name .ai-highlight {
color: var(--gold);
position: relative;
}
.brand-name .ai-highlight::before {
content: '';
position: absolute;
bottom: 0.05em;
left: -0.05em;
right: -0.05em;
height: 0.35em;
background: rgba(201, 168, 76, 0.15);
z-index: -1;
border-radius: 2px;
}
.tagline {
font-family: 'JetBrains Mono', monospace;
font-size: clamp(0.85rem, 2vw, 1.1rem);
color: var(--gold);
letter-spacing: 0.25em;
text-transform: uppercase;
margin: 1.5rem 0 2rem;
font-weight: 500;
}
.subtitle {
font-size: clamp(1rem, 2.5vw, 1.35rem);
color: var(--text-dim);
max-width: 600px;
margin: 0 auto 3rem;
font-weight: 300;
line-height: 1.7;
}
.subtitle strong {
color: var(--text);
font-weight: 500;
}
.scroll-hint {
position: absolute;
bottom: 2.5rem;
left: 50%;
transform: translateX(-50%);
display: flex;
flex-direction: column;
align-items: center;
gap: 0.5rem;
color: var(--text-dim);
font-size: 0.75rem;
letter-spacing: 0.15em;
text-transform: uppercase;
}
.scroll-hint .chevron {
width: 20px;
height: 20px;
border-right: 1.5px solid var(--gold-dim);
border-bottom: 1.5px solid var(--gold-dim);
transform: rotate(45deg);
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
40% { transform: rotate(45deg) translateY(6px); }
60% { transform: rotate(45deg) translateY(3px); }
}
/* === DIVIDER === */
.divider {
display: flex;
align-items: center;
justify-content: center;
gap: 1.5rem;
padding: 0 2rem;
max-width: 600px;
margin: 0 auto;
}
.divider::before, .divider::after {
content: '';
flex: 1;
height: 1px;
background: linear-gradient(90deg, transparent, var(--dark-border));
}
.divider::after {
background: linear-gradient(90deg, var(--dark-border), transparent);
}
.divider span {
color: var(--gold-dim);
font-family: 'Playfair Display', serif;
font-size: 1.5rem;
}
/* === MANIFESTO === */
.manifesto {
padding: 6rem 2rem;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.manifesto-text {
font-family: 'Playfair Display', serif;
font-size: clamp(1.4rem, 3vw, 2rem);
font-weight: 400;
line-height: 1.8;
color: var(--text);
}
.manifesto-text em {
color: var(--gold);
font-style: italic;
}
/* === FEATURES === */
.features {
padding: 4rem 2rem 6rem;
max-width: 1100px;
margin: 0 auto;
}
.section-header {
text-align: center;
margin-bottom: 4rem;
}
.section-header h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 700;
margin-bottom: 0.75rem;
}
.section-header p {
color: var(--text-dim);
font-size: 1rem;
max-width: 500px;
margin: 0 auto;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 1.5rem;
}
.feature-card {
background: var(--dark-surface);
border: 1px solid var(--dark-border);
border-radius: 12px;
padding: 2.5rem 2rem;
position: relative;
overflow: hidden;
transition: border-color 0.3s ease, transform 0.3s ease;
}
.feature-card:hover {
border-color: var(--gold-dim);
transform: translateY(-2px);
}
.feature-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2px;
background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
opacity: 0;
transition: opacity 0.3s ease;
}
.feature-card:hover::before {
opacity: 1;
}
.feature-icon {
font-size: 2rem;
margin-bottom: 1.25rem;
display: block;
}
.feature-card h3 {
font-family: 'Playfair Display', serif;
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
}
.feature-card p {
color: var(--text-dim);
font-size: 0.9rem;
line-height: 1.6;
}
/* === KNIGHT SECTION === */
.knight-section {
padding: 5rem 2rem;
background: var(--dark-surface);
border-top: 1px solid var(--dark-border);
border-bottom: 1px solid var(--dark-border);
}
.knight-content {
max-width: 900px;
margin: 0 auto;
display: grid;
grid-template-columns: auto 1fr;
gap: 3rem;
align-items: center;
}
.knight-emblem {
font-size: clamp(4rem, 10vw, 7rem);
line-height: 1;
position: relative;
display: flex;
align-items: center;
justify-content: center;
}
.knight-emblem .shield {
position: relative;
width: clamp(100px, 20vw, 160px);
height: clamp(120px, 24vw, 192px);
display: flex;
align-items: center;
justify-content: center;
}
.knight-emblem .shield svg {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
.knight-emblem .shield-symbol {
position: relative;
z-index: 1;
font-family: 'Playfair Display', serif;
font-size: clamp(2.5rem, 6vw, 4rem);
font-weight: 900;
color: var(--gold);
}
.knight-text h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(1.6rem, 3.5vw, 2.2rem);
font-weight: 700;
margin-bottom: 1rem;
}
.knight-text h2 span {
color: var(--gold);
}
.knight-text p {
color: var(--text-dim);
font-size: 1rem;
line-height: 1.8;
margin-bottom: 1rem;
}
.knight-text .oath {
font-family: 'Playfair Display', serif;
font-style: italic;
color: var(--gold-dim);
font-size: 1.1rem;
border-left: 2px solid var(--gold-dim);
padding-left: 1.25rem;
margin-top: 1.5rem;
}
/* === APPROACH SECTION === */
.approach {
padding: 6rem 2rem;
max-width: 800px;
margin: 0 auto;
}
.approach-list {
list-style: none;
padding: 0;
margin-top: 3rem;
}
.approach-list li {
display: grid;
grid-template-columns: 3rem 1fr;
gap: 1.5rem;
padding: 1.75rem 0;
border-bottom: 1px solid var(--dark-border);
align-items: start;
}
.approach-list li:first-child {
border-top: 1px solid var(--dark-border);
}
.approach-number {
font-family: 'JetBrains Mono', monospace;
font-size: 0.85rem;
color: var(--gold);
font-weight: 500;
padding-top: 0.15rem;
}
.approach-list h3 {
font-family: 'Playfair Display', serif;
font-size: 1.15rem;
font-weight: 700;
margin-bottom: 0.4rem;
}
.approach-list p {
color: var(--text-dim);
font-size: 0.9rem;
line-height: 1.6;
}
/* === CTA === */
.cta {
padding: 6rem 2rem;
text-align: center;
background:
radial-gradient(ellipse 60% 50% at 50% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%),
var(--dark);
}
.cta h2 {
font-family: 'Playfair Display', serif;
font-size: clamp(2rem, 5vw, 3rem);
font-weight: 900;
margin-bottom: 1rem;
}
.cta h2 span {
color: var(--gold);
}
.cta p {
color: var(--text-dim);
margin-bottom: 2.5rem;
font-size: 1.05rem;
}
.cta-button {
display: inline-block;
padding: 1rem 2.5rem;
background: transparent;
color: var(--gold);
border: 1.5px solid var(--gold);
border-radius: 4px;
font-family: 'JetBrains Mono', monospace;
font-size: 0.9rem;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
text-decoration: none;
transition: all 0.3s ease;
}
.cta-button:hover {
background: var(--gold);
color: var(--dark);
}
/* === FOOTER === */
footer {
padding: 3rem 2rem;
text-align: center;
border-top: 1px solid var(--dark-border);
background: var(--dark-surface);
}
.footer-brand {
font-family: 'Playfair Display', serif;
font-size: 1rem;
color: var(--text-dim);
margin-bottom: 0.75rem;
}
.footer-brand span {
color: var(--gold-dim);
}
.footer-credit {
font-size: 0.8rem;
color: var(--text-dim);
opacity: 0.6;
}
.footer-legal {
margin-top: 1rem;
font-size: 0.75rem;
color: var(--text-dim);
opacity: 0.4;
font-family: 'JetBrains Mono', monospace;
}
/* === RESPONSIVE === */
@media (max-width: 768px) {
.knight-content {
grid-template-columns: 1fr;
text-align: center;
gap: 2rem;
}
.knight-emblem {
justify-content: center;
}
.knight-text .oath {
border-left: none;
border-top: 1px solid var(--gold-dim);
padding-left: 0;
padding-top: 1rem;
text-align: center;
}
.feature-grid {
grid-template-columns: 1fr;
}
.approach-list li {
grid-template-columns: 2.5rem 1fr;
gap: 1rem;
}
}
@media (max-width: 480px) {
.hero {
padding: 1.5rem;
}
.feature-card {
padding: 2rem 1.5rem;
}
}
</style>
</head>
<body>
<!-- HERO -->
<section class="hero">
<div class="hero-content">
<div class="paragraph-symbol">&sect;</div>
<h1 class="brand-name">Paragraphen<wbr>r<span class="ai-highlight">AI</span>ter</h1>
<p class="tagline">Recht. Aber schlauer.</p>
<p class="subtitle">
Wo <strong>juristische Pr&auml;zision</strong> auf <strong>k&uuml;nstliche Intelligenz</strong> trifft.
Kein Buzzword-Bingo &mdash; echte Werkzeuge f&uuml;r die Rechtspraxis von morgen.
</p>
</div>
<div class="scroll-hint">
<span>Weiter</span>
<div class="chevron"></div>
</div>
</section>
<!-- DIVIDER -->
<div class="divider"><span>&sect;</span></div>
<!-- MANIFESTO -->
<section class="manifesto">
<p class="manifesto-text">
Juristen reiten Paragraphen seit Jahrhunderten.<br>
Wir reiten sie jetzt <em>schneller, pr&auml;ziser &mdash; und mit KI im Sattel.</em>
</p>
</section>
<!-- DIVIDER -->
<div class="divider"><span>&sect;</span></div>
<!-- FEATURES -->
<section class="features">
<div class="section-header">
<h2>Was der Ritter im Schilde f&uuml;hrt</h2>
<p>KI-gest&uuml;tzte Werkzeuge, die juristische Arbeit transformieren</p>
</div>
<div class="feature-grid">
<div class="feature-card">
<span class="feature-icon">&sect;</span>
<h3>Intelligente Recherche</h3>
<p>Rechtsprechung, Literatur und Gesetzestexte in Sekunden durchsucht, verkn&uuml;pft und aufbereitet. Nicht googeln &mdash; finden.</p>
</div>
<div class="feature-card">
<span class="feature-icon">&#x2694;</span>
<h3>Schriftsatz-Analyse</h3>
<p>KI-gest&uuml;tzte Pr&uuml;fung von Argumentationslinien, Widerspruchserkennung und automatische Gegen&uuml;berstellung.</p>
</div>
<div class="feature-card">
<span class="feature-icon">&#x1F6E1;</span>
<h3>Vertragsintelligenz</h3>
<p>Klauseln verstehen, Risiken erkennen, Konsistenz pr&uuml;fen. Ihr Vertrag, durchleuchtet von Algorithmen mit juristischem Verstand.</p>
</div>
<div class="feature-card">
<span class="feature-icon">&#x2696;</span>
<h3>Patentrecht &amp; UPC</h3>
<p>Spezialisiert auf das Einheitliche Patentgericht. Entscheidungsanalyse, Fristen&uuml;berwachung, strategische Auswertung.</p>
</div>
<div class="feature-card">
<span class="feature-icon">&#x26A1;</span>
<h3>Workflow-Automatisierung</h3>
<p>Wiederkehrende Aufgaben, Fristenkontrolle, Dokumentenmanagement &mdash; automatisiert, aber unter Ihrer Kontrolle.</p>
</div>
<div class="feature-card">
<span class="feature-icon">&#x1F9E0;</span>
<h3>Wissensmanagement</h3>
<p>Mandatswissen, das w&auml;chst und lernt. Nie wieder &bdquo;Das hatten wir doch schon mal&ldquo;.</p>
</div>
</div>
</section>
<!-- KNIGHT SECTION -->
<section class="knight-section">
<div class="knight-content">
<div class="knight-emblem">
<div class="shield">
<svg viewBox="0 0 160 192" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M80 4 L156 40 L156 100 Q156 155 80 188 Q4 155 4 100 L4 40 Z"
stroke="#c9a84c" stroke-width="1.5" fill="none" opacity="0.4"/>
<path d="M80 12 L148 44 L148 98 Q148 148 80 180 Q12 148 12 98 L12 44 Z"
stroke="#c9a84c" stroke-width="0.5" fill="rgba(201, 168, 76, 0.03)" opacity="0.6"/>
</svg>
<span class="shield-symbol">&sect;</span>
</div>
</div>
<div class="knight-text">
<h2>Der <span>Ritter</span> des Rechts</h2>
<p>
Der Paragraphenreiter war schon immer der, den man rief, wenn es auf jedes Wort ankam.
Pedantisch? Vielleicht. Aber in der Rechtswelt ist Pedanterie eine Tugend.
</p>
<p>
Der Paragraphenr<strong style="color: var(--gold)">AI</strong>ter beh&auml;lt diese Tugend &mdash;
und r&uuml;stet sie auf. Mit Algorithmen, die in Millisekunden leisten,
wof&uuml;r fr&uuml;her Stunden n&ouml;tig waren. Der Ritter tr&auml;gt jetzt R&uuml;stung aus Daten.
</p>
<p class="oath">
&bdquo;Wir streiten nicht um des Streitens willen &mdash;<br>
wir streiten, um Recht zu schaffen.&ldquo;
</p>
</div>
</div>
</section>
<!-- APPROACH -->
<section class="approach">
<div class="section-header">
<h2>Unser Ansatz</h2>
<p>KI ist das Werkzeug. Der Jurist bleibt der Meister.</p>
</div>
<ul class="approach-list">
<li>
<span class="approach-number">01</span>
<div>
<h3>Mensch vor Maschine</h3>
<p>KI ersetzt keine Juristen. Sie befreit sie von dem, was Maschinen besser k&ouml;nnen &mdash; damit Menschen das tun, was nur sie k&ouml;nnen: urteilen, beraten, entscheiden.</p>
</div>
</li>
<li>
<span class="approach-number">02</span>
<div>
<h3>Pr&auml;zision, keine Halluzination</h3>
<p>Jede Quelle nachvollziehbar. Jede Aussage belegbar. Wir bauen Werkzeuge, die Juristen vertrauen k&ouml;nnen &mdash; nicht solche, die man &uuml;berpr&uuml;fen muss.</p>
</div>
</li>
<li>
<span class="approach-number">03</span>
<div>
<h3>Datenschutz als Grundrecht</h3>
<p>Mandantendaten geh&ouml;ren Mandanten. Punkt. Keine Cloud-Experimente mit sensiblen Akten. Souver&auml;ne Infrastruktur, europ&auml;ische Standards.</p>
</div>
</li>
<li>
<span class="approach-number">04</span>
<div>
<h3>Gebaut von Juristen, f&uuml;r Juristen</h3>
<p>Kein Silicon-Valley-Produkt, das Jura &bdquo;auch kann&ldquo;. Sondern Werkzeuge von jemandem, der wei&szlig;, wie ein Schriftsatz um 23 Uhr aussieht.</p>
</div>
</li>
</ul>
</section>
<!-- CTA -->
<section class="cta">
<h2>Bereit f&uuml;r den <span>R<span style="font-size: 0.85em;">AI</span>ter</span>?</h2>
<p>Kommen Sie ins Gespr&auml;ch. Unverbindlich, aber nicht unverbindend.</p>
<a href="mailto:mail@msbls.de" class="cta-button">Kontakt aufnehmen</a>
</section>
<!-- FOOTER -->
<footer>
<p class="footer-brand">Paragraphen<span>rAI</span>ter</p>
<p class="footer-credit">Ein Projekt von Matthias Flexsiebels</p>
<p class="footer-legal">&copy; 2026 &middot; Recht. Aber schlauer.</p>
</footer>
</body>
</html>