/* ============================================================================
   ProTeam Landing  ·  Add-on zu text2motion_v2.css
   ----------------------------------------------------------------------------
   NACH text2motion_v2.css einbinden.

   Nutzt ausschliesslich die vorhandenen Tokens:
   --tm-text · --tm-text-muted · --tm-text-soft · --tm-primary · --tm-primary-h
   --tm-primary-tint · --tm-surface · --tm-surface-2 · --tm-border
   --tm-border-soft · --tm-radius* · --tm-shadow* · --tm-ease · --tm-bg

   STAND DIESER FASSUNG:
     · Hero full-bleed (kein overflow:hidden am Hero -> Hintergrund randlos)
     · Welle .lp-wave: STATISCH und sehr leicht, nur in der Mitte angedeutet,
       PLUS einmalige, subtile Einblend-Animation beim Laden (kein Loop)
     · WARUM-Zeile .lp-why aktiv
     · Marken-Chip .lp-eyebrow = Link, verhält sich wie Button (kein
       Unterstrich, Text normal), dezentes ↗ beim Hover
     · Buttons .lp-cta / .lp-btn-ghost mit erhöhter Spezifität + !important,
       damit globale a-Regeln sie nicht überschreiben
     · FAQ minimal (nur Trennlinien) und AUF VOLLE BREITE (bündig zu
       Kacheln / Video / Band)
     · Team-Karten .lp-team .tm-team-card mit Hover (Lift + Schatten)

   EINHEITLICHE BREITEN (alle innerhalb .lp-main = max 1200px, padding 24px):
     · Kacheln (.lp-cards), Band (.lp-band), Video (.lp-split), FAQ (.lp-faq)
       -> volle Spaltenbreite (bündig)
     · Intro-Texte (.lp-section-sub) und Fließtext (.lp-text--wide) bewusst
       schmaler für gute Lesbarkeit (Zeilenlänge)
     · Team-Grid (.lp-team) bewusst zentriert/kompakter (Portraits)
   ============================================================================ */

.lp-body {
    display: block;
    overflow-x: clip;

    --lp-corner: 150px;
    --lp-header: 66px;
    --lp-scroll: 0;
    /* 0..1, wird von landing.js gesetzt */
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 66px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================================================
   DEKORATIVE ECKEN  ·  sticky, stoppen über dem Footer
   ============================================================================ */
.lp-page {
    position: relative;
}

.lp-corners {
    position: sticky;
    bottom: 0;
    height: 0;
    z-index: 0;
    pointer-events: none;
}

.lp-body .tm-corner {
    position: absolute;
    bottom: 0;
    z-index: 0;
    width: var(--lp-corner);
    height: auto;
    opacity: .9;
    pointer-events: none;
}

@media (max-width: 1499px) {
    .lp-corners {
        display: none;
    }
}

/* ============================================================================
   HEADER · Logo mittig  ·  Höhe exakt wie in den Apps (66px)
   ============================================================================ */
.lp-header {
    align-items: center;
    padding-bottom: 0;
}

.lp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 24px;
    min-height: 66px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
}

.lp-header-side {
    display: flex;
    align-items: center;
    min-width: 0;
}

.lp-header-side-end {
    justify-content: flex-end;
}

.lp-header-logo {
    display: inline-flex;
    line-height: 0;
}

.lp-header-logo img {
    height: 38px;
    width: auto;
    display: block;
}

/* ----------------------------------------------------------------------------
   Header-Logo · Hover-Animation (Lift + weicher Schein)
   ---------------------------------------------------------------------------- */
.lp-header-logo {
    display: inline-flex;
    line-height: 0;
    padding: 6px 10px;
    /* etwas Klickfläche + Raum für das Pill */
    border-radius: 12px;
    position: relative;
    transition: transform .22s var(--tm-ease), background .22s var(--tm-ease);
    will-change: transform;
}

.lp-header-logo img {
    transition: transform .22s var(--tm-ease), filter .22s var(--tm-ease);
}

/* Hover: Logo hebt sich leicht + wird minimal größer, dezenter Grund erscheint */
.lp-header-logo:hover {
    background: color-mix(in oklab, var(--tm-primary) 6%, transparent);
}

.lp-header-logo:hover img {
    transform: translateY(-1px) scale(1.04);
    filter: drop-shadow(0 4px 10px color-mix(in oklab, var(--tm-primary) 30%, transparent));
}

.lp-header-logo:active img {
    transform: translateY(0) scale(1.0);
    /* haptisches Feedback beim Klick */
}

/* Tastatur-Fokus sauber sichtbar */
.lp-header-logo:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 3px;
    border-radius: 12px;
}

/* Bewegung reduzieren */
@media (prefers-reduced-motion: reduce) {
    .lp-header-logo:hover img {
        transform: none;
    }
}

.lp-header-side-end .tm-menu-wrap {
    padding: 5px 6px;
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: 999px;
    box-shadow: var(--tm-shadow-sm);
}

.lp-menu-btn {
    width: 34px;
    /* statt auto -> quadratisch */
    padding: 0;
    /* statt 0 14px */
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--tm-text);
    font-size: 13px;
    font-weight: 500;
}


.lp-menu-btn>i {
    color: var(--tm-primary);
    font-size: 14px;
}

.lp-menu-btn:hover {
    background: var(--tm-surface-2);
    border-color: transparent;
}

/* ============================================================================
   LAYOUT
   ============================================================================ */
.lp-main {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-section {
    padding: 96px 0;
    border-top: 1px solid var(--tm-border-soft);
}

.lp-section--first {
    border-top: 0;
    padding-top: 8px;
}

.lp-section--muted {
    border-top: 0;
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius-xl);
    padding: 44px;
    margin: 24px 0;
}

.lp-h2 {
    font-size: clamp(22px, 2.6vw, 30px);
    font-weight: 600;
    letter-spacing: -.02em;
    color: var(--tm-text);
    margin: 0 0 8px;
    text-wrap: balance;
}

.lp-section-sub {
    font-size: 15px;
    line-height: 1.6;
    color: var(--tm-text-muted);
    margin: 0 0 36px;
    max-width: 640px;
    text-wrap: pretty;
}

.lp-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--tm-text-muted);
    margin: 0 0 24px;
}

.lp-text--wide {
    max-width: 780px;
}

/* ============================================================================
   1 · HERO  ·  füllt das erste Fenster
   ============================================================================ */
.lp-hero {
    position: relative;
    display: grid;
    place-items: center;
    text-align: center;
    /* KEIN overflow:hidden hier — sonst würden die full-bleed-Ebenen
       (.lp-aurora / .lp-wave) auf die 1200px-Spaltenbreite beschnitten
       und der Hintergrund wäre nicht mehr randlos. Das seitliche
       Beschneiden übernimmt .lp-body { overflow-x: clip }. */

    min-height: calc(100dvh - var(--lp-header));
    padding: 32px 0 88px;
}

@supports not (min-height: 100dvh) {
    .lp-hero {
        min-height: calc(100vh - var(--lp-header));
    }
}

.lp-hero-inner {
    position: relative;
    z-index: 2;
    /* über Aurora (0) und Welle (1) */
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    opacity: calc(1 - var(--lp-scroll));
    transform: translate3d(0, calc(var(--lp-scroll) * -32px), 0);
    will-change: opacity, transform;
}

/* ----------------------------------------------------------------------------
   Ebene 1 · MESH (weicher Farbverlauf, rein CSS)
   ---------------------------------------------------------------------------- */
.lp-aurora {
    position: absolute;
    inset: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: calc(1 - var(--lp-scroll) * 1.4);

    -webkit-mask-image: radial-gradient(125% 90% at 50% 22%, #000 42%, transparent 82%);
    mask-image: radial-gradient(125% 90% at 50% 22%, #000 42%, transparent 82%);
}

.lp-aurora-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(96px);
    will-change: transform;
}

.lp-aurora-blob--1 {
    width: 46vw;
    height: 46vw;
    max-width: 680px;
    max-height: 680px;
    top: -14%;
    left: -6%;
    background: color-mix(in oklab, var(--tm-primary) 30%, transparent);
    animation: lp-drift-1 42s var(--tm-ease) infinite alternate;
}

.lp-aurora-blob--2 {
    width: 40vw;
    height: 40vw;
    max-width: 580px;
    max-height: 580px;
    top: -10%;
    right: -6%;
    left: auto;
    background: color-mix(in oklab, #0089b7 24%, transparent);
    animation: lp-drift-2 48s var(--tm-ease) infinite alternate;
}

.lp-aurora-blob--3 {
    width: 44vw;
    height: 44vw;
    max-width: 620px;
    max-height: 620px;
    bottom: -22%;
    left: 34%;
    top: auto;
    background: color-mix(in oklab, var(--tm-primary) 20%, transparent);
    animation: lp-drift-3 45s var(--tm-ease) infinite alternate;
}

[data-bs-theme="dark"] .lp-aurora-blob--1 {
    background: color-mix(in oklab, var(--tm-primary) 44%, transparent);
}

[data-bs-theme="dark"] .lp-aurora-blob--2 {
    background: color-mix(in oklab, #0089b7 38%, transparent);
}

[data-bs-theme="dark"] .lp-aurora-blob--3 {
    background: color-mix(in oklab, var(--tm-primary) 32%, transparent);
}

@keyframes lp-drift-1 {
    to {
        transform: translate3d(5%, 5%, 0) scale(1.1);
    }
}

@keyframes lp-drift-2 {
    to {
        transform: translate3d(-6%, 4%, 0) scale(1.14);
    }
}

@keyframes lp-drift-3 {
    to {
        transform: translate3d(4%, -5%, 0) scale(1.08);
    }
}

/* ----------------------------------------------------------------------------
   Ebene 2 · WELLE (rein CSS, sehr leicht, nur in der Mitte angedeutet)
   ----------------------------------------------------------------------------
   Grundhöhe folgt der Parabel (--amp). Kein Dauer-Loop. Beim Laden wachsen
   die Balken EINMALIG von 0 auf ihre Höhe, von der Mitte nach außen
   gestaffelt (über --dist). Siehe lp-wave-grow weiter unten.
   ---------------------------------------------------------------------------- */
.lp-wave {
    position: absolute;
    inset: 0 calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(4px, 0.7vw, 12px);
    padding: 0 3vw;
    pointer-events: none;
    overflow: hidden;

    opacity: calc(0.16 - var(--lp-scroll) * 0.16);
    filter: blur(11px);

    -webkit-mask-image: radial-gradient(60% 62% at 50% 50%, #000 22%, transparent 72%);
    mask-image: radial-gradient(60% 62% at 50% 50%, #000 22%, transparent 72%);
}

.lp-wave-bar {
    flex: 0 0 auto;
    width: clamp(3px, 0.55vw, 8px);
    /* Grundhöhe folgt der Parabel (--amp). */
    height: calc(8px + var(--amp, 0.5) * 42%);
    border-radius: 999px;
    background: linear-gradient(180deg,
            color-mix(in oklab, var(--tm-primary) 60%, transparent),
            color-mix(in oklab, #0089b7 45%, transparent));
}

[data-bs-theme="dark"] .lp-wave-bar {
    background: linear-gradient(180deg,
            color-mix(in oklab, var(--tm-primary) 85%, transparent),
            color-mix(in oklab, #0089b7 62%, transparent));
}

/* Einmalige, subtile Einblendung der Balken (kein Loop).
   Von der Mitte nach außen gestaffelt über --dist (0 = Mitte, 1 = Rand).
   Nur wenn der Nutzer Bewegung nicht reduziert hat. */
@media (prefers-reduced-motion: no-preference) {
    .lp-wave-bar {
        transform-origin: center;
        animation: lp-wave-grow .9s var(--tm-ease) both;
        animation-delay: calc(var(--dist, 0) * 260ms + 180ms);
    }
}

@keyframes lp-wave-grow {
    from {
        transform: scaleY(0);
        opacity: 0;
    }

    to {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* ----------------------------------------------------------------------------
   Auftritt beim Laden — gestaffelt über --d
   ---------------------------------------------------------------------------- */
.lp-rise {
    animation: lp-rise-in .7s var(--tm-ease) both;
    animation-delay: var(--d, 0ms);
}

@keyframes lp-rise-in {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ----------------------------------------------------------------------------
   Eyebrow  ·  Link, verhält sich wie Button
   ---------------------------------------------------------------------------- */
.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--tm-text-muted);
    margin: 0 0 22px;
    max-width: 100%;
    padding: 6px 14px 6px 12px;
    border: 1px solid var(--tm-border);
    border-radius: 999px;
    background: var(--tm-surface);
    text-decoration: none;
    cursor: pointer;
    transition: border-color .18s var(--tm-ease), color .18s var(--tm-ease),
        background .18s var(--tm-ease), box-shadow .18s var(--tm-ease), transform .18s var(--tm-ease);
}

a.lp-eyebrow,
a.lp-eyebrow:hover,
a.lp-eyebrow:focus {
    text-decoration: none;
}

a.lp-eyebrow:hover {
    background: var(--tm-surface-2);
    border-color: color-mix(in oklab, var(--tm-primary) 45%, var(--tm-border));
    box-shadow: var(--tm-shadow-sm);
    transform: translateY(-1px);
}

a.lp-eyebrow:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 3px;
}

.lp-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--tm-primary);
    box-shadow: 0 0 0 3px var(--tm-primary-tint);
    flex-shrink: 0;
}

.lp-eyebrow-name {
    text-transform: none;
    /* sonst würde "e. V." zu "E. V." */
    letter-spacing: .04em;
    font-size: 12px;
    color: var(--tm-text-muted);
    /* normaler Text, nicht als Link eingefärbt */
}

.lp-eyebrow-ext {
    font-size: 9px;
    color: var(--tm-text-soft);
    opacity: 0;
    margin-left: -2px;
    transition: opacity .18s var(--tm-ease), color .18s var(--tm-ease);
}

a.lp-eyebrow:hover .lp-eyebrow-ext {
    opacity: 1;
    color: var(--tm-primary);
}

/* ----------------------------------------------------------------------------
   WARUM-Zeile (Golden Circle)
   ---------------------------------------------------------------------------- */
.lp-why {
    max-width: 560px;
    margin: 0 auto 18px;
    font-size: clamp(14px, 1.7vw, 16px);
    line-height: 1.5;
    font-weight: 500;
    color: var(--tm-text-muted);
    text-wrap: balance;
}

.lp-why b {
    color: var(--tm-text);
    font-weight: 600;
    box-shadow: inset 0 -0.5em 0 color-mix(in oklab, var(--tm-primary) 16%, transparent);
}

[data-bs-theme="dark"] .lp-why b {
    box-shadow: inset 0 -0.5em 0 color-mix(in oklab, var(--tm-primary) 26%, transparent);
}

/* ----------------------------------------------------------------------------
   Headline und Lead
   ---------------------------------------------------------------------------- */
.lp-headline {
    font-size: clamp(33px, 5.8vw, 62px);
    line-height: 1.05;
    font-weight: 600;
    letter-spacing: -.035em;
    color: var(--tm-text);
    margin: 0 0 20px;
    text-wrap: balance;
}

.lp-accent {
    color: var(--tm-primary);
}

.lp-lead {
    max-width: 480px;
    margin: 0 auto 36px;
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    color: var(--tm-text-muted);
    text-wrap: pretty;
}

/* ----------------------------------------------------------------------------
   Buttons  ·  erhöhte Spezifität + !important gegen globale a-Regeln
   ---------------------------------------------------------------------------- */
.lp-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-hero-actions a.lp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--tm-radius);
    background: var(--tm-primary) !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: var(--tm-shadow-sm);
    transition: background .18s var(--tm-ease), transform .18s var(--tm-ease), box-shadow .18s var(--tm-ease);
}

.lp-hero-actions a.lp-cta:hover {
    background: var(--tm-primary-h) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: var(--tm-shadow-md);
}

.lp-hero-actions a.lp-cta:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 3px;
}

.lp-hero-actions a.lp-cta i {
    font-size: 13px;
    transition: transform .18s var(--tm-ease);
}

.lp-hero-actions a.lp-cta:hover i {
    transform: translateX(3px);
}

.lp-hero-actions a.lp-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    height: 48px;
    padding: 0 22px;
    max-width: 100%;
    border-radius: var(--tm-radius);
    background: color-mix(in oklab, var(--tm-surface) 80%, transparent);
    backdrop-filter: blur(6px);
    /* DETAIL-FIX: leicht primärgetönter Rand, damit der Button auf hellem
       Aurora-Grund nicht "schwebt". */
    border: 1px solid color-mix(in oklab, var(--tm-primary) 22%, var(--tm-border));
    color: var(--tm-text) !important;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: var(--tm-shadow-sm);
    transition: all .18s var(--tm-ease);
}

.lp-hero-actions a.lp-btn-ghost:hover {
    background: var(--tm-surface-2);
    border-color: var(--tm-text-soft);
    color: var(--tm-text) !important;
    transform: translateY(-1px);
}

.lp-hero-actions a.lp-btn-ghost i {
    color: var(--tm-primary);
    font-size: 14px;
}

/* ----------------------------------------------------------------------------
   Scroll-Hinweis
   ---------------------------------------------------------------------------- */
.lp-scrollcue {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 3;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;

    color: var(--tm-text-soft);
    text-decoration: none;

    opacity: calc(1 - var(--lp-scroll) * 2.4);
    transition: color .18s var(--tm-ease);
}

.lp-scrollcue:hover {
    color: var(--tm-primary);
}

.lp-scrollcue:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 4px;
    border-radius: 8px;
}

.lp-scrollcue-icon {
    font-size: 15px;
    animation: lp-cue 2.4s var(--tm-ease) infinite;
}

@keyframes lp-cue {

    0%,
    100% {
        transform: translateY(0);
        opacity: .7;
    }

    50% {
        transform: translateY(4px);
        opacity: 1;
    }
}

/* ============================================================================
   REVEAL beim Scrollen
   ============================================================================ */
.lp-reveal-ready [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition: opacity .7s var(--tm-ease), transform .7s var(--tm-ease);
}

.lp-reveal-ready [data-reveal].is-in {
    opacity: 1;
    transform: none;
}

.lp-reveal-ready [data-reveal] .lp-card,
.lp-reveal-ready [data-reveal] .tm-team-card {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity .6s var(--tm-ease), transform .6s var(--tm-ease);
}

.lp-reveal-ready [data-reveal].is-in .lp-card,
.lp-reveal-ready [data-reveal].is-in .tm-team-card {
    opacity: 1;
    transform: none;
}

.lp-reveal-ready [data-reveal].is-in .lp-card:nth-child(1) {
    transition-delay: .10s;
}

.lp-reveal-ready [data-reveal].is-in .lp-card:nth-child(2) {
    transition-delay: .20s;
}

.lp-reveal-ready [data-reveal].is-in .tm-team-card:nth-child(1) {
    transition-delay: .06s;
}

.lp-reveal-ready [data-reveal].is-in .tm-team-card:nth-child(2) {
    transition-delay: .12s;
}

.lp-reveal-ready [data-reveal].is-in .tm-team-card:nth-child(3) {
    transition-delay: .18s;
}

.lp-reveal-ready [data-reveal].is-in .tm-team-card:nth-child(4) {
    transition-delay: .24s;
}

/* ============================================================================
   2 · KACHELN
   ============================================================================ */
.lp-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.lp-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: var(--tm-surface);
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--tm-shadow-sm);
    transition: border-color .18s var(--tm-ease), transform .18s var(--tm-ease), box-shadow .18s var(--tm-ease);
}

.lp-card:hover {
    border-color: var(--tm-primary);
    transform: translateY(-3px);
    box-shadow: var(--tm-shadow-md);
    color: inherit;
}

.lp-card:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 3px;
}

.lp-card-shot {
    margin: 0;
    line-height: 0;
    background: var(--tm-surface-2);
    border-bottom: 1px solid var(--tm-border-soft);
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.lp-card-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    display: block;
    transition: transform .3s var(--tm-ease);
}

.lp-card:hover .lp-card-shot img {
    transform: scale(1.02);
}

.lp-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px 24px 20px;
}

.lp-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.lp-card-head h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    color: var(--tm-text);
}

.lp-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--tm-primary-tint);
    color: var(--tm-primary);
    white-space: nowrap;
}

.lp-tag--alt {
    background: rgba(22, 163, 74, .12);
    color: #116b31;
}

[data-bs-theme="dark"] .lp-tag--alt {
    color: #4ade80;
}

.lp-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--tm-text-muted);
    margin: 0 0 18px;
}

.lp-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-card-cta {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--tm-primary);
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.lp-card-cta i {
    font-size: 11px;
    transition: transform .16s var(--tm-ease);
}

.lp-card:hover .lp-card-cta i {
    transform: translateX(3px);
}

.lp-card-meta {
    font-size: 12px;
    color: var(--tm-text-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.lp-card-meta i {
    font-size: 11px;
}

/* Band · externer Verweis */
.lp-band {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
    padding: 16px 20px;
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius);
    background: var(--tm-surface-2);
    text-decoration: none;
    color: inherit;
    transition: border-color .16s var(--tm-ease), background .16s var(--tm-ease);
}

.lp-band:hover {
    border-color: var(--tm-primary);
    background: var(--tm-surface);
    color: inherit;
}

.lp-band:focus-visible {
    outline: 2px solid var(--tm-primary);
    outline-offset: 3px;
}

.lp-band-icon {
    font-size: 16px;
    color: var(--tm-primary);
    flex-shrink: 0;
}

.lp-band-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    flex: 1;
}

.lp-band-text b {
    font-size: 14px;
    color: var(--tm-text);
}

.lp-band-text span {
    font-size: 12.5px;
    line-height: 1.45;
    color: var(--tm-text-muted);
}

.lp-band-link {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--tm-text-muted);
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.lp-band:hover .lp-band-link {
    color: var(--tm-primary);
}

.lp-band-link i {
    font-size: 10px;
}

/* ============================================================================
   3 · VIDEO
   ============================================================================ */
.lp-split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.lp-video {
    margin: 0;
    min-width: 0;
}

.lp-video video.is-clickable {
    cursor: pointer;
}

.lp-video-side {
    min-width: 0;
}

.lp-video-side .lp-h2 {
    margin-bottom: 12px;
}

.lp-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-point {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}

.lp-point>i {
    font-size: 14px;
    color: var(--tm-primary);
    margin-top: 3px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.lp-point b {
    display: block;
    font-size: 14px;
    color: var(--tm-text);
    margin-bottom: 2px;
}

.lp-point span {
    display: block;
    font-size: 13px;
    line-height: 1.55;
    color: var(--tm-text-muted);
}

/* ============================================================================
   4 · TEAM
   ----------------------------------------------------------------------------
   Grid bewusst zentriert/kompakter (Portraits). Hover auf den Karten
   (Lift + Schatten + Border), analog zu den Werkzeug-Kacheln.
   ============================================================================ */
.lp-team {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    max-width: 820px;
}

/* Hover-Verhalten für die Teamkarten (scoped auf die Landing). */
.lp-team .tm-team-card {
    border: 1px solid var(--tm-border);
    border-radius: var(--tm-radius-lg);
    background: var(--tm-surface);
    transition: transform .18s var(--tm-ease), border-color .18s var(--tm-ease), box-shadow .18s var(--tm-ease);
    will-change: transform;
}

.lp-team .tm-team-card:hover {
    transform: translateY(-3px);
    border-color: var(--tm-primary);
    box-shadow: var(--tm-shadow-md);
}

/* Portrait leicht heben lassen (falls img direkt in der Karte liegt). */
.lp-team .tm-team-card img {
    transition: transform .25s var(--tm-ease);
}

.lp-team .tm-team-card:hover img {
    transform: scale(1.03);
}

/* ============================================================================
   5 · FAQ  ·  minimal (Trennlinien) · AUF VOLLE BREITE (bündig)
   ----------------------------------------------------------------------------
   max-width entfernt -> die Frage-/Trennlinien laufen über die volle
   Spaltenbreite wie Kacheln / Video / Band. Der Antworttext bleibt für
   die Lesbarkeit begrenzt.
   ============================================================================ */
.lp-faq {
    /* volle Breite der Inhaltsspalte, bündig zu den übrigen Blöcken */
    max-width: none;
    border-top: 1px solid var(--tm-border-soft);
}

.lp-faq-item {
    border-bottom: 1px solid var(--tm-border-soft);
}

.lp-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 4px;
    cursor: pointer;
    list-style: none;
    font-size: 15px;
    font-weight: 500;
    color: var(--tm-text);
    transition: color .16s var(--tm-ease);
}

.lp-faq-q::-webkit-details-marker {
    display: none;
}

.lp-faq-q:hover {
    color: var(--tm-primary);
}

.lp-faq-item:focus-within .lp-faq-q {
    outline: 2px solid var(--tm-primary);
    outline-offset: 2px;
    border-radius: 6px;
}

.lp-faq-icon {
    flex-shrink: 0;
    font-size: 11px;
    color: var(--tm-text-soft);
    transition: transform .22s var(--tm-ease), color .16s var(--tm-ease);
}

.lp-faq-q:hover .lp-faq-icon {
    color: var(--tm-primary);
}

.lp-faq-item[open] .lp-faq-icon {
    transform: rotate(180deg);
}

.lp-faq-a {
    padding: 0 4px 16px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--tm-text-muted);
    /* Antworttext für Lesbarkeit begrenzen, Linien bleiben voll breit */
    max-width: 760px;
}

.lp-faq-a a {
    color: var(--tm-primary);
    text-decoration: none;
    font-weight: 500;
}

.lp-faq-a a:hover {
    text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
    .lp-faq-item[open] .lp-faq-a {
        animation: lp-faq-open .28s var(--tm-ease) both;
    }
}

@keyframes lp-faq-open {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ============================================================================
   6 · FÖRDERUNG
   ============================================================================ */
.lp-funding-section {
    text-align: center;
}

.lp-funding {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
    justify-content: center;
}

.lp-funding .tm-funding-logo {
    height: clamp(72px, 13dvh, 150px);
}

.lp-funding .tm-funding-logo-sponsor {
    height: clamp(96px, 16dvh, 190px);
}

.lp-funding .tm-funding-sep {
    height: 56px;
}

.lp-note {
    max-width: 620px;
    margin: 24px auto 0;
    border-top: 0;
    padding-top: 0;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.lp-footer {
    position: relative;
    z-index: 2;
    background: var(--tm-bg);
    border-top: 1px solid var(--tm-border-soft);
}

.lp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 12.5px;
    color: var(--tm-text-soft);
}

.lp-footer-nav {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.lp-footer-nav a,
.lp-footer-btn {
    color: var(--tm-text-muted);
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
    cursor: pointer;
    transition: color .15s var(--tm-ease);
}

.lp-footer-nav a:hover,
.lp-footer-btn:hover {
    color: var(--tm-text);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

/* ── Video-Split klappt untereinander ────────────────────────────────*/
@media (max-width: 1000px) {
    .lp-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .lp-video {
        max-width: 720px;
    }

    .lp-section {
        padding: 76px 0;
    }

    .lp-section--first {
        padding-top: 8px;
    }

    .lp-section--muted {
        padding: 36px 28px;
    }
}

/* ── Kacheln einspaltig ───────────────────────────────────────────────*/
@media (max-width: 900px) {
    .lp-cards {
        grid-template-columns: minmax(0, 1fr);
    }

    .lp-card-shot {
        aspect-ratio: 16 / 9;
    }
}

/* ── Mobile ───────────────────────────────────────────────────────────*/
@media (max-width: 720px) {
    .lp-main {
        padding: 0 16px;
    }

    .lp-header-inner {
        padding: 10px 14px;
        gap: 10px;
    }

    .lp-menu-btn {
        width: 36px;
        padding: 0;
        justify-content: center;
    }

    .lp-hero {
        padding: 24px 0 84px;
    }

    .lp-eyebrow {
        font-size: 10px;
        letter-spacing: .04em;
        margin-bottom: 18px;
        padding: 5px 12px 5px 10px;
    }

    .lp-eyebrow-name {
        font-size: 11px;
    }

    .lp-why {
        font-size: 14px;
        margin-bottom: 14px;
    }

    .lp-lead {
        margin-bottom: 30px;
    }

    .lp-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .lp-hero-actions a.lp-cta,
    .lp-hero-actions a.lp-btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .lp-aurora-blob {
        filter: blur(70px);
    }

    .lp-wave {
        gap: clamp(3px, 1.1vw, 8px);
        filter: blur(9px);
    }

    .lp-section {
        padding: 56px 0;
    }

    .lp-section--first {
        padding-top: 4px;
    }

    .lp-section--muted {
        padding: 28px 20px;
        margin: 16px 0;
        border-radius: var(--tm-radius-lg);
    }

    .lp-section-sub {
        margin-bottom: 26px;
    }

    .lp-card-body {
        padding: 18px 20px 16px;
    }

    .lp-band {
        flex-wrap: wrap;
        gap: 10px 14px;
        padding: 14px 16px;
    }

    .lp-band-link {
        width: 100%;
        padding-left: 30px;
    }

    .lp-faq-q {
        padding: 15px 2px;
        font-size: 14.5px;
    }

    .lp-faq-a {
        padding: 0 2px 15px;
    }

    .lp-funding .tm-funding-logo {
        height: 56px;
    }

    .lp-funding .tm-funding-logo-sponsor {
        height: 76px;
    }

    .lp-funding .tm-funding-sep {
        height: 40px;
    }

    .lp-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 16px 24px;
    }

    .lp-footer-nav {
        gap: 14px;
    }
}

/* ── Kleinstgeräte ────────────────────────────────────────────────────*/
@media (max-width: 480px) {
    .lp-main {
        padding: 0 14px;
    }

    .lp-headline {
        letter-spacing: -.028em;
    }

    .lp-card-shot {
        aspect-ratio: 3 / 2;
    }

    .lp-card-foot {
        gap: 8px;
    }

    .lp-section--muted {
        padding: 22px 16px;
    }

    .lp-team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Flache Fenster (Handy quer, kleine Laptops) ──────────────────────*/
@media (max-height: 640px) and (min-width: 481px) {
    .lp-hero {
        min-height: 0;
        padding: 56px 0 72px;
    }
}

@media (max-height: 560px) {
    .lp-hero {
        min-height: 0;
        padding: 40px 0 24px;
    }

    .lp-scrollcue {
        display: none;
    }
}

/* ============================================================================
   DARK MODE  ·  ergänzt die Token-Umschaltung
   ============================================================================ */
[data-bs-theme="dark"] .lp-section--muted,
[data-bs-theme="dark"] .lp-card,
[data-bs-theme="dark"] .lp-team .tm-team-card {
    background: var(--tm-surface);
    border-color: var(--tm-border);
}

[data-bs-theme="dark"] .lp-header-side-end .tm-menu-wrap {
    background: var(--tm-surface);
    border-color: var(--tm-border);
}

[data-bs-theme="dark"] .tm-funding-logo-sponsor {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .10),
        0 2px 10px rgba(0, 0, 0, .35);
}

/* ============================================================================
   BEWEGUNG REDUZIEREN
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {

    .lp-rise,
    .lp-aurora-blob,
    .lp-scrollcue-icon,
    .lp-wave-bar {
        animation: none;
    }

    .lp-rise {
        opacity: 1;
        transform: none;
    }

    /* Wave-Balken ohne Animation direkt in Endzustand */
    .lp-wave-bar {
        opacity: 1;
        transform: none;
    }

    .lp-hero-inner,
    .lp-aurora,
    .lp-wave,
    .lp-scrollcue {
        opacity: 1;
        transform: none;
    }

    .lp-scrollcue {
        transform: translateX(-50%);
    }

    .lp-reveal-ready [data-reveal],
    .lp-reveal-ready [data-reveal] .lp-card,
    .lp-reveal-ready [data-reveal] .tm-team-card {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .lp-card,
    .lp-card-shot img,
    .lp-card-cta i,
    .lp-team .tm-team-card,
    .lp-team .tm-team-card img,
    .lp-hero-actions a.lp-cta,
    .lp-hero-actions a.lp-cta i,
    .lp-hero-actions a.lp-btn-ghost,
    .lp-band {
        transition: none;
    }

    .lp-card:hover,
    .lp-card:hover .lp-card-shot img,
    .lp-team .tm-team-card:hover,
    .lp-team .tm-team-card:hover img,
    .lp-hero-actions a.lp-cta:hover,
    .lp-hero-actions a.lp-cta:hover i,
    .lp-hero-actions a.lp-btn-ghost:hover {
        transform: none;
    }
}