<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flowdash – Hero Concept</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: ui-sans-serif, -apple-system, system-ui, sans-serif;
background: #0A0B0D;
color: #FFFFFF;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
position: relative;
}
/* Geometric background mesh */
.bg-mesh {
position: absolute;
inset: 0;
opacity: 0.15;
background:
radial-gradient(circle at 20% 30%, #3B82F6 0%, transparent 40%),
radial-gradient(circle at 80% 70%, #8B5CF6 0%, transparent 40%);
filter: blur(80px);
z-index: 0;
}
/* Grid overlay */
.bg-grid {
position: absolute;
inset: 0;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size: 48px 48px;
z-index: 1;
}
.hero-container {
position: relative;
z-index: 2;
max-width: 960px;
text-align: center;
padding: 0 32px;
}
/* Brand mark */
.brand {
display: inline-block;
font-size: 0.875rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #60A5FA;
margin-bottom: 48px;
padding: 8px 16px;
border: 1.5px solid rgba(96, 165, 250, 0.3);
border-radius: 24px;
background: rgba(59, 130, 246, 0.05);
}
h1 {
font-size: 5rem;
font-weight: 700;
line-height: 1.1;
margin-bottom: 24px;
letter-spacing: -0.03em;
background: linear-gradient(135deg, #FFFFFF 0%, #94A3B8 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
.subline {
font-size: 1.375rem;
line-height: 1.6;
color: #94A3B8;
margin-bottom: 48px;
max-width: 720px;
margin-left: auto;
margin-right: auto;
font-weight: 400;
}
.cta-group {
display: flex;
gap: 16px;
justify-content: center;
align-items: center;
}
.btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 32px;
font-size: 1rem;
font-weight: 600;
border-radius: 12px;
text-decoration: none;
transition: all 0.2s ease;
cursor: pointer;
border: none;
font-family: inherit;
}
.btn-primary {
background: #3B82F6;
color: #FFFFFF;
box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.btn-primary:hover {
background: #2563EB;
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}
.btn-secondary {
background: rgba(255, 255, 255, 0.08);
color: #E2E8F0;
border: 1.5px solid rgba(255, 255, 255, 0.12);
}
.btn-secondary:hover {
background: rgba(255, 255, 255, 0.12);
border-color: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
}
/* Decorative accent line */
.accent-line {
position: absolute;
bottom: 80px;
left: 50%;
transform: translateX(-50%);
width: 120px;
height: 3px;
background: linear-gradient(90deg, transparent, #3B82F6, transparent);
opacity: 0.4;
}
@media (max-width: 720px) {
h1 {
font-size: 3rem;
}
.subline {
font-size: 1.125rem;
}
.cta-group {
flex-direction: column;
width: 100%;
}
.btn {
width: 100%;
justify-content: center;
}
}
</style>
</head>
<body>
<div class="bg-mesh"></div>
<div class="bg-grid"></div>
<div class="hero-container">
<div class="brand">Flowdash</div>
<h1>Work moves fast.<br>Your tools should too.</h1>
<p class="subline">
Connect your workflow, automate the repetitive, and focus on what actually drives results. Built for teams who ship.
</p>
<div class="cta-group">
<a href="#" class="btn btn-primary">Start Free Trial</a>
<a href="#" class="btn btn-secondary">See How It Works</a>
</div>
</div>
<div class="accent-line"></div>
</body>
</html>Fertiger Hero für Flowdash – 1280×720, modern-minimalistisch.
Stil-Entscheidungen (bewusst NICHT VF-Brand, keine Anti-Slop-Verletzungen):
- Farbpalette: Dunkles Basis-Schema (#0A0B0D) mit gezielten Blau-Akzenten (#3B82F6, 60A5FA) statt Standard-Indigo – ein bewusstes Produktivitäts-Tool-Blau, aber nicht das verbotene Tailwind-Default-Indigo (#6366f1)
- Kein Purple-to-Blue-Gradient auf Hero – stattdessen subtile Radial-Mesh mit zwei Akzent-Spots (20%/80% Position, blur 80px)
- Typografie: Sans-Geometric (System UI Stack), 5rem Display-Size mit negativem Letter-Spacing (-0.03em), Text-Gradient für Tiefe
- Layout: Zentriert-asymmetrisch durch Brand-Badge oben, Accent-Line unten – kein flaches Mittel-Block
- CTAs: Primary mit Box-Shadow-Lift (kein Flat-Button), Secondary als Ghost mit Border-Hover-State
- Keine Emojis, keine Filler-Copy – “Work moves fast. Your tools should too.” ist konkret, imperativ, keine Generic-Transform-Phrase
- Icons weggelassen – cleaner ohne als mit generischen Pfeil/Rocket-SVGs
- Grid-Overlay – gibt dem Dark-BG Struktur ohne Overload
Das ist ein hochwertig-minimalistisches SaaS-Hero-Pattern 2025/26 – kein Slop, keine Defaults, kein “Trust us”-Gradient.