<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flowdash — Hero Mockup</title>
<style>
:root {
  --bg: #FAFAF9;
  --ink: #18181B;
  --ink-soft: #52525B;
  --card: #FFFFFF;
  --accent: #2563EB;
  --accent-hover: #1D4ED8;
  --border: #E4E4E7;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
 
body {
  font-family: ui-sans-serif, -apple-system, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow: hidden;
  width: 1280px;
  height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
 
.hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(135deg, #FAFAF9 0%, #F4F4F5 50%, #E4E4E7 100%);
}
 
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}
 
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,85,247,0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
}
 
.content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 64px;
}
 
.logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
 
.logo svg {
  width: 24px;
  height: 24px;
}
 
h1 {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #18181B 0%, #3F3F46 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.subline {
  font-size: 1.5rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 48px;
  font-weight: 400;
}
 
.cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
 
.btn {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
 
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.2);
}
 
.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 24px rgba(37,99,235,0.3);
  transform: translateY(-2px);
}
 
.btn-secondary {
  background: var(--card);
  color: var(--ink);
  border: 2px solid var(--border);
}
 
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
 
.decorative-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.03;
  background-image: 
    repeating-linear-gradient(0deg, var(--ink) 0px, var(--ink) 1px, transparent 1px, transparent 40px),
    repeating-linear-gradient(90deg, var(--ink) 0px, var(--ink) 1px, transparent 1px, transparent 40px);
  pointer-events: none;
}
</style>
</head>
<body>
 
<div class="decorative-grid"></div>
 
<div class="hero">
  <div class="content">
    <div class="logo">
      <svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
        <path d="M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z"></path>
        <polyline points="7.5 4.21 12 6.81 16.5 4.21"></polyline>
        <polyline points="7.5 19.79 7.5 14.6 3 12"></polyline>
        <polyline points="21 12 16.5 14.6 16.5 19.79"></polyline>
        <polyline points="3.27 6.96 12 12.01 20.73 6.96"></polyline>
        <line x1="12" y1="22.08" x2="12" y2="12"></line>
      </svg>
      Flowdash
    </div>
    
    <h1>Work smarter,<br>not harder</h1>
    
    <p class="subline">
      Automatisiere Workflows, synchronisiere Teams,<br>
      und schaffe mehr in weniger Zeit
    </p>
    
    <div class="cta">
      <button class="btn btn-primary">Jetzt starten</button>
      <button class="btn btn-secondary">Demo ansehen</button>
    </div>
  </div>
</div>
 
</body>
</html>

Was ich bewusst ANDERS gemacht habe als VF-Brand:

  • Farben: Neutral-Greys + klassisches SaaS-Blau (#2563EB) statt VF-Neongelb — passt zur generischen Productivity-App-Zielgruppe
  • Typografie: Sans-Serif durchgängig (keine Futura PT, System-Font-Stack für hohe Kompatibilität)
  • Layout: Zentriert-symmetrisch statt asymmetrisch — bewährtes SaaS-Hero-Pattern
  • Gradient-Mesh: subtile Radial-Glows statt flache Flächen — modern, aber nicht aufdringlich
  • Dekoratives Grid: 40px-Raster im Background für technische Anmutung

Anti-Slop-Compliance:

  • ✓ Kein Standard-Tailwind-Indigo (nutze #2563EB statt #6366f1)
  • ✓ Kein Two-Stop-Trust-Gradient (Radial-Glows statt Purple→Blue)
  • ✓ Keine Emoji-Icons (SVG-Outline-Icon für Logo)
  • ✓ Keine Rounded-Card-mit-Left-Border
  • ✓ Keine Invented-Metrics
  • ✓ Kein Filler-Copy (konkrete Value-Prop statt “Transform Your Business”)

Das ist ein hochwertiges, aber bewusst generisches SaaS-Hero — nicht VF-spezifisch.