/* DigitalMDMA ERP – Landingpage
   Klassisch minimalistisch, hell: weiße Flächen, schwarze Schrift, ein Akzent (Lime).
   CI: DigitalMDMA. Vanilla CSS, kein Framework, kein jQuery. */

:root {
    --bg: #ffffff;
    --bg-soft: #f6f7f2;
    --panel: #ffffff;
    --panel-2: #f4f4f5;
    --border: rgba(10, 10, 11, 0.10);
    --border-strong: rgba(10, 10, 11, 0.20);
    --text: #0a0a0b;
    --muted: #52525b;
    --muted-2: #71717a;
    --accent: #ccff00;
    --accent-dim: rgba(204, 255, 0, 0.16);
    --danger: #d92d20;
    --shadow: 0 1px 2px rgba(10, 10, 11, 0.05);
    --shadow-lg: 0 12px 32px rgba(10, 10, 11, 0.10);
    --radius: 16px;
    --radius-sm: 10px;
    --maxw: 1140px;
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
}

/* Highlight-Wörter: Lime als Textmarker hinter schwarzer Schrift (lesbar auf Weiß) */
.accent {
    background: linear-gradient(transparent 60%, var(--accent) 60%);
    color: inherit;
    padding: 0 0.06em;
    border-radius: 2px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 14px 26px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
    white-space: nowrap;
    font-family: inherit;
}
.btn-primary { background: var(--accent); color: #0a0a0b; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); background: #bced00; box-shadow: var(--shadow-lg); }
.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ---------- Nav ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid var(--border);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo-lockup {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}
/* Weißes Logo-PNG als schwarze Silhouette rendern (heller Hintergrund) */
.logo-mark {
    height: 2.25em;
    width: auto;
    flex-shrink: 0;
    display: block;
    transform: translateY(0.02em);
    filter: brightness(0);
}
.logo-text { display: block; line-height: 1; }
.logo-sep { color: var(--muted-2); font-weight: 400; margin: 0 2px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color .2s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-cta:hover { color: #0a0a0b; }
.nav-login { padding: 9px 20px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 100px 0 84px; overflow: hidden; }
.hero::before {
    content: "";
    position: absolute;
    top: -320px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.30), transparent 60%);
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border-strong);
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 7px 14px;
    border-radius: 999px;
    margin-bottom: 26px;
    box-shadow: var(--shadow);
}
.eyebrow .dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #7a9c00;
    box-shadow: 0 0 0 0 rgba(122, 156, 0, .5);
    animation: pulse 2.2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(122, 156, 0, .5); }
    70% { box-shadow: 0 0 0 9px rgba(122, 156, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(122, 156, 0, 0); }
}
h1.hero-title {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 5.2rem);
    line-height: 0.99;
    font-weight: 800;
    letter-spacing: -2.5px;
    max-width: 18ch;
}
.hero-sub {
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 2.2vw, 1.3rem);
    color: var(--muted);
    max-width: 60ch;
    line-height: 1.6;
}
.hero-sub strong { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust {
    margin-top: 28px;
    font-size: 13.5px;
    color: var(--muted-2);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
}
.hero-trust b { color: var(--text); font-weight: 700; }
.hero-trust .sep { color: var(--border-strong); }

/* ---------- Emotion (Kontrast-Bereich) ---------- */
.emotion {
    background: #0a0a0b;
    color: #ffffff;
    padding: 96px 0;
    overflow: hidden;
}
.emotion::before {
    content: "";
    position: absolute;
    top: -140px; right: -120px;
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.22), transparent 62%);
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}
.emotion .wrap { position: relative; z-index: 1; }
.emotion-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.emotion-media {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.10);
}
.emotion-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 4px var(--accent);
    opacity: 0.9;
    pointer-events: none;
}
.emotion-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 5;
}
.emotion-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--accent);
    margin-bottom: 18px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--accent);
}
.emotion-title {
    margin: 0;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -1.8px;
}
.emotion .accent {
    background: none;
    color: var(--accent);
    padding: 0;
}
.emotion-lead {
    margin: 26px 0 0;
    font-size: clamp(1.05rem, 2vw, 1.22rem);
    line-height: 1.62;
    color: rgba(255, 255, 255, 0.72);
    max-width: 52ch;
}
.emotion-kicker {
    margin: 20px 0 0;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #ffffff;
}
.emotion-kicker strong { color: var(--accent); }
.emotion-actions { margin-top: 34px; }

/* ---------- Section shells ---------- */
section { position: relative; }
.section { padding: 88px 0; border-top: 1px solid var(--border); }
.section-head { max-width: 62ch; margin-bottom: 52px; }
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--text);
    margin-bottom: 14px;
    padding-bottom: 3px;
    border-bottom: 2px solid var(--accent);
}
h2.section-title {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.2px;
}
.section-lead {
    margin: 18px 0 0;
    font-size: 1.08rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ---------- Module grid ---------- */
.modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.module {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 26px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.module:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.module-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.module-icon svg { width: 23px; height: 23px; stroke: #0a0a0b; }
.module h3 { margin: 0 0 10px; font-size: 1.18rem; font-weight: 700; letter-spacing: -0.4px; }
.module p { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }
.modules-note {
    margin-top: 34px;
    text-align: center;
    color: var(--muted);
    font-size: 0.98rem;
}
.modules-note strong { color: var(--text); }

/* ---------- Vorteile ---------- */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.benefit {
    display: flex;
    gap: 18px;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 28px;
    align-items: flex-start;
    box-shadow: var(--shadow);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.benefit:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.benefit-icon {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.benefit-icon svg { width: 22px; height: 22px; stroke: #0a0a0b; }
.benefit h3 { margin: 0 0 8px; font-size: 1.15rem; font-weight: 700; letter-spacing: -0.4px; }
.benefit p { margin: 0; color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ---------- Highlight (modulares Prinzip) ---------- */
.highlight-inner {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}
.highlight-inner h2 {
    margin: 0 0 16px;
    font-size: clamp(1.7rem, 3.4vw, 2.4rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -1px;
}
.highlight-inner p { margin: 0; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }
.highlight-inner p + p { margin-top: 14px; }
.highlight-inner .accent-line { color: var(--text); font-weight: 600; }

/* Modul-Schalter Visual */
.toggle-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px 20px;
    box-shadow: var(--shadow);
}
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row .t-name { font-weight: 600; color: var(--text); font-size: 0.98rem; }
.toggle-row .t-sub { color: var(--muted-2); font-size: 12.5px; margin-top: 2px; }
.switch {
    flex: 0 0 auto;
    width: 44px; height: 26px;
    border-radius: 999px;
    background: var(--panel-2);
    border: 1px solid var(--border-strong);
    position: relative;
    transition: background .2s ease, border-color .2s ease;
}
.switch::after {
    content: "";
    position: absolute;
    top: 2px; left: 2px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(10, 10, 11, 0.25);
    transition: transform .2s ease;
}
.switch.on { background: var(--accent); border-color: #b6e400; }
.switch.on::after { transform: translateX(18px); background: #0a0a0b; }

/* ---------- Für wen (Intro mit Team-Bild) ---------- */
.fuerwen-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 52px;
}
.fuerwen-copy .section-lead { max-width: 46ch; }
.fuerwen-media {
    position: relative;
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.fuerwen-media::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 4px var(--accent);
    opacity: 0.9;
    pointer-events: none;
}
.fuerwen-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

/* ---------- Audience ---------- */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.aud-card {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.aud-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.aud-card h3 { margin: 0 0 10px; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.5px; }
.aud-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.96rem; }

/* ---------- Use-Cases & Automatisierungen ---------- */
.usecases {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.usecases-more { margin-top: 20px; }
.usecases-sub {
    margin: 56px 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text);
}
.usecase {
    display: flex;
    flex-direction: column;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px 26px 24px;
    box-shadow: var(--shadow);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.usecase:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.usecase-flagship {
    border-color: var(--border-strong);
    background: linear-gradient(180deg, var(--accent-dim), transparent 42%), var(--panel);
}
.uc-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 18px; }
.uc-icon {
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.uc-icon svg { width: 23px; height: 23px; stroke: #0a0a0b; }
.uc-title { margin: 0 0 4px; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.4px; line-height: 1.2; }
.uc-trigger { margin: 0; color: var(--muted-2); font-size: 0.9rem; line-height: 1.45; }

.uc-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.uc-step {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--panel-2);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px 6px 9px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.2;
}
.uc-step-ico {
    flex: 0 0 auto;
    display: inline-flex; align-items: center; justify-content: center;
}
.uc-step-ico svg { width: 16px; height: 16px; stroke: var(--muted); }
.uc-arrow {
    flex: 0 0 auto;
    width: 9px; height: 9px;
    border-top: 2px solid var(--muted-2);
    border-right: 2px solid var(--muted-2);
    transform: rotate(45deg);
    border-radius: 1px;
}
.uc-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}
.uc-check {
    flex: 0 0 auto;
    width: 22px; height: 22px;
    border-radius: 6px;
    background: var(--accent-dim);
    display: inline-flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.uc-check svg { width: 14px; height: 14px; stroke: #6a8a00; }
.uc-gain {
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    background: var(--accent-dim);
    color: var(--text);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: -0.2px;
    padding: 7px 13px;
    border-radius: 999px;
}
.usecase-compact { padding: 22px 22px 20px; }
.usecase-compact .uc-icon { width: 40px; height: 40px; }
.usecase-compact .uc-icon svg { width: 20px; height: 20px; }
.usecase-compact .uc-title { font-size: 1.02rem; }

/* ---------- Use-Case Marquee (horizontaler Endlos-Lauf, reines CSS) ---------- */
.uc-marquee {
    /* Full-bleed: bricht aus dem umgebenden .wrap (max-width) heraus */
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    /* Nur horizontal clippen; overflow-y: visible lässt den Hover-Lift sichtbar */
    overflow-x: clip;
    overflow-y: visible;
    /* Padding damit die per Hover angehobene Karte nicht abgeschnitten wird */
    padding: 10px 0 14px;
    /* Ränder weich ausblenden */
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.uc-marquee-track {
    display: flex;
    width: max-content;
    /* -50% entspricht exakt einer Kartengruppe -> nahtloser Übergang */
    animation: uc-marquee-scroll 95s linear infinite;
    will-change: transform;
    padding-left: 24px; /* visueller Abstand zum Bildschirmrand links */
}
.uc-marquee:hover .uc-marquee-track { animation-play-state: paused; }
/* display: contents -> die Gruppe verschwindet, Karten liegen direkt im Flex-Track */
.uc-marquee-group { display: contents; }
.uc-marquee .usecase {
    flex: 0 0 360px;
    width: 360px;
    /* gleichmäßiger Abstand inkl. nach der letzten Karte -> nahtlose Schleife */
    margin-right: 20px;
}
@keyframes uc-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Customer-Journey-Teaser (statisches Dashboard) ---------- */
.journey-teaser {
    margin-top: 24px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow);
}
.jt-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.jt-icon {
    flex: 0 0 auto;
    width: 46px; height: 46px;
    border-radius: 12px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.jt-icon svg { width: 23px; height: 23px; stroke: #0a0a0b; }
.jt-title {
    margin: 8px 0 0;
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -0.6px;
    line-height: 1.12;
}
.jt-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 0.9fr;
    gap: 26px;
    align-items: start;
}
.jt-zone-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--muted-2);
    margin-bottom: 16px;
}

/* Funnel */
.jt-funnel { display: flex; flex-direction: column; }
.jt-stage { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.jt-stage:last-child { margin-bottom: 0; }
.jt-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    box-shadow: var(--shadow);
}
.jt-bar-name { font-size: 0.86rem; font-weight: 600; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jt-bar-val { font-size: 0.95rem; font-weight: 800; letter-spacing: -0.4px; color: var(--text); flex: 0 0 auto; }
.jt-bar-accent { background: var(--accent); border-color: #b6e400; }
.jt-conv { flex: 0 0 auto; font-size: 0.78rem; font-weight: 700; color: var(--muted-2); width: 40px; text-align: right; }

/* Timeline */
.jt-tl-summary { margin: 0 0 16px; font-size: 0.9rem; font-weight: 700; color: var(--text); letter-spacing: -0.2px; }
.jt-tl-list { list-style: none; margin: 0; padding: 0; position: relative; }
.jt-tl-list::before {
    content: "";
    position: absolute;
    left: 15px; top: 8px; bottom: 8px;
    width: 2px;
    background: var(--border-strong);
}
.jt-tp {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
}
.jt-tp-ico {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    display: inline-flex; align-items: center; justify-content: center;
}
.jt-tp-ico svg { width: 15px; height: 15px; stroke: var(--muted); }
.jt-tp-label { font-size: 0.9rem; font-weight: 600; color: var(--text); }
.jt-tp-day { margin-left: auto; font-size: 0.8rem; color: var(--muted-2); font-weight: 600; }
.jt-tp-milestone .jt-tp-ico { background: var(--accent); border-color: #b6e400; }
.jt-tp-milestone .jt-tp-ico svg { stroke: #0a0a0b; }
.jt-tp-milestone .jt-tp-label { font-weight: 800; }

/* KPIs */
.jt-kpi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.jt-kpi {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 14px;
    box-shadow: var(--shadow);
}
.jt-kpi-val { display: block; font-size: 1.35rem; font-weight: 800; letter-spacing: -0.8px; color: var(--text); }
.jt-kpi-label { display: block; margin-top: 4px; font-size: 0.78rem; color: var(--muted-2); font-weight: 600; }
.jt-caption { margin: 24px 0 0; text-align: center; color: var(--muted-2); font-size: 0.85rem; }

/* ---------- FAQ (Accordion, schema.org FAQPage) ---------- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
}
.faq-item {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--border-strong); box-shadow: var(--shadow-lg); }
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
    color: var(--text);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: #000; }
.faq-item[open] .faq-q { color: #000; }
.faq-ico {
    position: relative;
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
}
.faq-ico::before,
.faq-ico::after {
    content: "";
    position: absolute;
    background: var(--text);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.faq-ico::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.faq-ico::after  { left: 9px; top: 2px; width: 2px; height: 16px; }
.faq-item[open] .faq-ico::after { transform: rotate(90deg); opacity: 0; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { margin: 0; color: var(--muted); line-height: 1.66; font-size: 0.98rem; }

/* ---------- Waitlist ---------- */
.waitlist { border-top: 1px solid var(--border); background: var(--bg-soft); }
.waitlist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}
.waitlist h2 {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 0 0 18px;
}
.waitlist .lead { color: var(--muted); font-size: 1.08rem; line-height: 1.65; margin: 0 0 22px; }
.waitlist .mini { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.waitlist .mini .mini-item { display: flex; gap: 14px; align-items: flex-start; }
.waitlist .mini .mini-item .k {
    flex: 0 0 auto;
    width: 34px; height: 34px;
    border-radius: 9px;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.waitlist .mini .mini-item .k svg { width: 18px; height: 18px; stroke: #0a0a0b; }
.waitlist .mini .mini-item .v { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }
.waitlist .mini .mini-item .v strong { color: var(--text); }

.form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 34px;
    box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 20px; }
.field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 9px;
}
.field .hint { color: var(--muted-2); font-weight: 400; }
.input, .textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    color: var(--text);
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.input::placeholder, .textarea::placeholder { color: var(--muted-2); }
.input:focus, .textarea:focus {
    outline: none;
    border-color: #b6e400;
    box-shadow: 0 0 0 3px var(--accent-dim);
}
.textarea { resize: vertical; min-height: 84px; }
.field-error { display: block; color: var(--danger); font-size: 12.5px; margin-top: 7px; min-height: 1px; }
.input.invalid, .textarea.invalid { border-color: var(--danger); }

/* Modul-Chips (Mehrfachauswahl) */
.chips { display: flex; flex-wrap: wrap; gap: 9px; }
.chip {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 9px 15px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--muted);
    background: #ffffff;
    transition: all .15s ease;
    user-select: none;
}
.chip:hover { border-color: var(--text); color: var(--text); }
.chip.active { background: var(--accent); border-color: #b6e400; color: #0a0a0b; font-weight: 700; }

.form-foot { margin-top: 6px; }
.form-note { color: var(--muted-2); font-size: 12px; margin-top: 14px; line-height: 1.5; text-align: center; }
.honeypot { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Alerts + Success */
.alert {
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    font-size: 14px;
    margin-bottom: 18px;
    display: none;
}
.alert.show { display: block; }
.alert-error { background: #fef3f2; border: 1px solid #fda29b; color: #b42318; }

.success-state { display: none; text-align: center; padding: 18px 8px; }
.success-state.show { display: block; }
.success-icon {
    width: 66px; height: 66px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--accent);
    display: flex; align-items: center; justify-content: center;
}
.success-icon svg { width: 34px; height: 34px; }
.success-state h3 { margin: 0 0 10px; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; }
.success-state p { margin: 0; color: var(--muted); line-height: 1.6; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 40px 0; background: #ffffff; }
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.footer .logo-lockup { font-size: 17px; }
.footer p { margin: 0; color: var(--muted-2); font-size: 13px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--muted-2); font-size: 13px; transition: color .2s ease; }
.footer-links a:hover { color: var(--text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Cursor-Pfeil zum CTA (Canvas-Overlay, wird per JS erzeugt) ---------- */
.cursor-arrow-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 40; /* über dem Inhalt, aber unter der Sticky-Nav (z-index: 50) */
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
    .modules { grid-template-columns: repeat(2, 1fr); }
    .audience { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .benefits { grid-template-columns: 1fr; }
    .fuerwen-intro { grid-template-columns: 1fr; gap: 28px; }
    .fuerwen-media { max-width: 560px; }
    .highlight-inner { grid-template-columns: 1fr; padding: 34px; gap: 30px; }
    .waitlist-grid { grid-template-columns: 1fr; gap: 36px; }
    .emotion-grid { grid-template-columns: 1fr; gap: 34px; }
    .emotion-media { max-width: 440px; margin: 0 auto; }
    .emotion-media img { aspect-ratio: 16 / 11; }
    .nav-links a:not(.nav-cta):not(.nav-login) { display: none; }
    .nav-links { gap: 12px; }
    .usecases { grid-template-columns: repeat(2, 1fr); }
    .jt-grid { grid-template-columns: 1fr; gap: 30px; }
    .jt-tl-summary { margin-bottom: 12px; }
}
@media (max-width: 620px) {
    .modules { grid-template-columns: 1fr; }
    .usecases { grid-template-columns: 1fr; }
    .uc-marquee .usecase { flex-basis: 300px; width: 300px; }
    .journey-teaser { padding: 26px 22px; }
    .uc-flow { flex-direction: column; align-items: stretch; }
    .uc-step { justify-content: flex-start; }
    .uc-arrow {
        align-self: center;
        transform: rotate(135deg);
        margin: 1px 0;
    }
    .jt-kpi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
    .wrap { padding: 0 18px; }
    .hero { padding: 64px 0 56px; }
    .section { padding: 60px 0; }
    .emotion { padding: 64px 0; }
    .form-card { padding: 24px; }
    .uc-head { gap: 12px; }
    .jt-head { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto; }
    .reveal { transition: none; opacity: 1; transform: none; }
    .eyebrow .dot { animation: none; }
    /* Kein Auto-Scroll: Karten stattdessen manuell horizontal scrollbar */
    .uc-marquee { overflow-x: auto; overflow-y: visible; -webkit-overflow-scrolling: touch; }
    .uc-marquee-track { animation: none; }
    .uc-marquee-group:last-child { display: none; }
}
