        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        :root {
            --fe-bg: #050508;
            --fe-bg-2: #0c0d12;
            --fe-surface: rgba(18, 20, 28, 0.72);
            --fe-surface-2: rgba(28, 31, 42, 0.55);
            --fe-border: rgba(255, 255, 255, 0.07);
            --fe-text: #f4f4f8;
            --fe-muted: rgba(244, 244, 248, 0.58);
            --fe-teal: #14b8a6;
            --fe-teal-dim: rgba(20, 184, 166, 0.15);
            --fe-amber: #fbbf24;
            --fe-amber-glow: rgba(251, 191, 36, 0.25);
            --fe-magenta: #e879f9;
            --fe-font-display: 'Syne', system-ui, sans-serif;
            --fe-font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
            --fe-radius: 1.15rem;
            --fe-radius-sm: 0.65rem;
            --fe-max: 1180px;
            --fe-nav-h: 4.25rem;
            /* Mind. 5px zum Bildschirmrand; Safe-Area für Notch/Home-Indicator zusätzlich */
            --fe-gutter-x: max(5px, clamp(0.65rem, 4vw, 1.35rem));
            --fe-gutter-x-compact: max(5px, clamp(0.5rem, 3vw, 1rem));
        }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body {
            font-family: var(--fe-font-body);
            background: var(--fe-bg);
            color: var(--fe-text);
            line-height: 1.65;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            overflow-wrap: break-word;
        }
        img { max-width: 100%; height: auto; }
        body::before {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background:
                radial-gradient(ellipse 120% 80% at 10% -20%, rgba(20, 184, 166, 0.18), transparent 50%),
                radial-gradient(ellipse 90% 60% at 100% 10%, rgba(232, 121, 249, 0.1), transparent 45%),
                radial-gradient(ellipse 70% 50% at 50% 100%, rgba(251, 191, 36, 0.06), transparent 55%),
                linear-gradient(180deg, var(--fe-bg) 0%, var(--fe-bg-2) 40%, var(--fe-bg) 100%);
        }
        body::after {
            content: "";
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            opacity: 0.35;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
            mix-blend-mode: overlay;
        }
        .fe-scrim {
            position: fixed;
            inset: 0;
            z-index: 80;
            background: rgba(0,0,0,0.55);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity .3s, visibility .3s;
        }
        body.fe-nav-open .fe-scrim {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        /* Kein z-index/overflow-x hier: z-index würde Navbar+Drawer unter den Scrim legen; overflow-x kann ein festes Sidemenü beschneiden (html/body begrenzen Breite). */
        .fe-page {
            position: relative;
            max-width: 100%;
        }
        a { color: var(--fe-teal); text-decoration: none; transition: color .2s, opacity .2s; }
        a:hover { color: var(--fe-amber); }

        /* Nav */
        .fe-navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 100;
            height: var(--fe-nav-h);
            display: flex;
            align-items: center;
            padding: 0 calc(var(--fe-gutter-x) + env(safe-area-inset-right, 0px)) 0 calc(var(--fe-gutter-x) + env(safe-area-inset-left, 0px));
            background: rgba(5, 5, 8, 0.78);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid var(--fe-border);
        }
        .fe-navbar-inner {
            max-width: var(--fe-max);
            margin: 0 auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 0.65rem;
        }
        .fe-nav-right {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-left: auto;
            min-width: 0;
            flex-shrink: 1;
        }
        .fe-logo {
            font-family: var(--fe-font-display);
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--fe-text);
            letter-spacing: -0.03em;
            min-width: 0;
            flex: 1 1 auto;
        }
        .fe-logo span {
            background: linear-gradient(120deg, var(--fe-teal), var(--fe-magenta));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .fe-nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }
        .fe-nav-links a {
            color: var(--fe-muted);
            font-weight: 600;
            font-size: 0.92rem;
        }
        .fe-nav-links a:hover { color: var(--fe-text); }
        .fe-nav-links-mobilecta { display: none; }
        .fe-nav-links .fe-nav-demo-btn {
            display: none;
        }
        .fe-nav-actions {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            flex-shrink: 0;
        }
        .fe-lang-toggle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2.25rem;
            height: 2.25rem;
            border-radius: var(--fe-radius-sm);
            border: 1px solid var(--fe-border);
            background: var(--fe-surface-2);
            color: var(--fe-muted);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            transition: color .2s, border-color .2s, background .2s;
            flex-shrink: 0;
        }
        .fe-lang-toggle:hover {
            color: var(--fe-text);
            border-color: rgba(20, 184, 166, 0.35);
            background: rgba(20, 184, 166, 0.08);
        }
        .fe-nav-links-lang { display: none; }
        .fe-burger {
            display: none;
            width: 2.5rem;
            height: 2.5rem;
            flex-shrink: 0;
            border: 1px solid var(--fe-border);
            border-radius: var(--fe-radius-sm);
            background: var(--fe-surface-2);
            color: var(--fe-text);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }
        @media (max-width: 960px) {
            .fe-burger {
                display: flex;
            }
            .fe-logo {
                flex: 0 1 auto;
            }
            .fe-nav-actions {
                display: none;
            }
            .fe-nav-links-mobilecta {
                display: list-item;
            }
            .fe-nav-links-lang {
                display: list-item;
                border-top: 1px solid var(--fe-border);
                margin-top: 0.5rem;
            }
            .fe-nav-links-lang a .ti {
                margin-right: 0.4rem;
                font-size: 1.1rem;
                vertical-align: -0.1em;
            }
            .fe-nav-links .fe-nav-demo-btn {
                display: block;
                width: 100%;
                text-align: left;
                padding: 1rem 0;
                margin: 0;
                font: inherit;
                font-weight: 600;
                font-size: 0.92rem;
                color: var(--fe-muted);
                background: none;
                border: none;
                cursor: pointer;
                border-radius: 0;
                -webkit-appearance: none;
                appearance: none;
            }
            .fe-nav-links .fe-nav-demo-btn:hover { color: var(--fe-text); }
            .fe-nav-links-mobilecta--first {
                border-top: 1px solid var(--fe-border);
                margin-top: 0.5rem;
            }
            .fe-nav-links {
                position: fixed;
                top: var(--fe-nav-h);
                left: 0;
                right: auto;
                z-index: 110;
                width: min(300px, min(88vw, calc(100% - 2.5rem)));
                height: calc(100dvh - var(--fe-nav-h));
                max-height: calc(100dvh - var(--fe-nav-h));
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                margin: 0;
                padding: 1.25rem calc(1.25rem + env(safe-area-inset-right, 0px)) 1.25rem calc(1.25rem + env(safe-area-inset-left, 0px));
                background: rgba(8, 9, 14, 0.98);
                border-right: 1px solid var(--fe-border);
                box-shadow: 8px 0 40px rgba(0, 0, 0, 0.35);
                transform: translateX(-100%);
                transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1);
                overscroll-behavior: contain;
                -webkit-overflow-scrolling: touch;
                overflow-y: auto;
                pointer-events: auto;
            }
            body.fe-nav-open .fe-nav-links { transform: translateX(0); }
            .fe-nav-links li { border-bottom: 1px solid var(--fe-border); }
            .fe-nav-links a { display: block; padding: 1rem 0; }
        }

        .fe-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            font-family: var(--fe-font-body);
            font-weight: 600;
            font-size: 0.92rem;
            padding: 0.65rem 1.35rem;
            border-radius: var(--fe-radius-sm);
            border: none;
            cursor: pointer;
            transition: transform .2s, box-shadow .2s, background .2s;
        }
        .fe-btn-primary {
            background: linear-gradient(135deg, #0d9488, #14b8a6);
            color: #042f2e;
            box-shadow: 0 4px 24px rgba(20, 184, 166, 0.35);
        }
        .fe-btn-primary:hover { color: #022c26; transform: translateY(-1px); box-shadow: 0 8px 32px rgba(20, 184, 166, 0.45); }
        .fe-btn-ghost {
            background: transparent;
            color: var(--fe-muted);
            border: 1px solid var(--fe-border);
        }
        .fe-btn-ghost:hover { color: var(--fe-text); border-color: rgba(20, 184, 166, 0.35); }
        .fe-btn-discord {
            background: linear-gradient(135deg, #5865f2, #7289da);
            color: #fff;
            box-shadow: 0 4px 20px rgba(88, 101, 242, 0.35);
        }
        .fe-btn-discord:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }

        .fe-container {
            max-width: var(--fe-max);
            margin: 0 auto;
            padding: 0 calc(var(--fe-gutter-x) + env(safe-area-inset-right, 0px)) 0 calc(var(--fe-gutter-x) + env(safe-area-inset-left, 0px));
        }
        .fe-main { padding-top: var(--fe-nav-h); }

        /* Typography sections */
        .fe-kicker {
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--fe-teal);
            margin-bottom: 0.85rem;
        }
        .fe-h1 {
            font-family: var(--fe-font-display);
            font-size: clamp(1.85rem, 5vw + 0.5rem, 3.65rem);
            font-weight: 800;
            line-height: 1.08;
            letter-spacing: -0.04em;
            margin-bottom: 1.25rem;
        }
        .fe-h1 em {
            font-style: normal;
            background: linear-gradient(115deg, var(--fe-teal), var(--fe-amber));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .fe-lead {
            font-size: 1.12rem;
            color: var(--fe-muted);
            max-width: 34rem;
            margin-bottom: 1.75rem;
        }
        .fe-h2 {
            font-family: var(--fe-font-display);
            font-size: clamp(1.45rem, 3.5vw + 0.35rem, 2.45rem);
            font-weight: 800;
            letter-spacing: -0.03em;
            margin-bottom: 0.75rem;
        }
        .fe-sub {
            color: var(--fe-muted);
            max-width: 38rem;
            margin-bottom: 2.5rem;
        }

        /* Hero — nur vertikal: .fe-container liefert den seitlichen Abstand */
        .fe-hero {
            padding-top: 4.5rem;
            padding-bottom: 3.5rem;
            position: relative;
            overflow: hidden;
        }
        .fe-hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 2.5rem;
            align-items: center;
        }
        @media (max-width: 960px) {
            .fe-hero-grid { grid-template-columns: 1fr; }
            .fe-hero-visual { transform: none; }
        }
        .fe-hero-grid > *,
        .fe-split > *,
        .fe-discord-inner > *,
        .fe-grid-3 > * {
            min-width: 0;
        }
        .fe-hero-visual {
            position: relative;
            border-radius: calc(var(--fe-radius) + 4px);
            border: 1px solid var(--fe-border);
            background: var(--fe-surface);
            overflow: hidden;
            box-shadow:
                0 24px 80px rgba(0,0,0,0.45),
                inset 0 1px 0 rgba(255,255,255,0.06);
            transform: rotate(1.5deg);
            /* Platzhalterfläche = optimiertes Hero-Asset (1200×670), verhindert CLS beim Bildladen */
            aspect-ratio: 1200 / 670;
        }
        .fe-hero-visual img,
        .fe-hero-visual picture {
            display: block;
            width: 100%;
            height: auto;
            vertical-align: middle;
        }
        .fe-hero-visual::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(20, 184, 166, 0.08) 100%);
            pointer-events: none;
        }
        @media (prefers-reduced-motion: reduce) {
            .fe-hero-visual { transform: none; }
        }
        .fe-hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 1.5rem;
        }
        .fe-pill {
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            border: 1px solid var(--fe-border);
            background: var(--fe-surface-2);
            color: var(--fe-muted);
        }

        /* Trust stats (Startseite) — statisch gerendert, kein JS-Counter */
        .fe-trust-stats {
            padding-top: 0.25rem;
            padding-bottom: 2.75rem;
        }
        .fe-trust-stats-grid {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
        }
        .fe-trust-stat {
            margin: 0;
            padding: 1.35rem 1.15rem;
            border-radius: var(--fe-radius);
            border: 1px solid var(--fe-border);
            background: var(--fe-surface);
            text-align: center;
            min-height: 7.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.35rem;
        }
        .fe-trust-stat i {
            font-size: 1.35rem;
            color: var(--fe-teal);
            line-height: 1;
        }
        .fe-trust-stat-value {
            font-family: var(--fe-font-display);
            font-size: clamp(1.55rem, 2.4vw, 2rem);
            font-weight: 800;
            line-height: 1.1;
            margin: 0;
            font-variant-numeric: tabular-nums;
            background: linear-gradient(135deg, #f0fdfa 0%, var(--fe-teal) 55%, #5eead4 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .fe-trust-stat-label {
            margin: 0;
            font-size: 0.82rem;
            line-height: 1.4;
            color: var(--fe-muted);
            max-width: 14rem;
        }
        @media (max-width: 900px) {
            .fe-trust-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .fe-trust-stats {
                padding-bottom: 2rem;
            }
            .fe-trust-stats-grid {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .fe-trust-stat {
                min-height: 6.75rem;
                padding: 1.1rem 1rem;
            }
        }

        /* Split feature rows — nur vertikal bei Kombination mit .fe-container */
        .fe-band {
            padding-top: 4.5rem;
            padding-bottom: 4.5rem;
            position: relative;
        }
        .fe-band:nth-child(even) { background: linear-gradient(180deg, transparent, rgba(20, 184, 166, 0.03) 50%, transparent); }
        .fe-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }
        .fe-split.rev .fe-split-copy { order: 2; }
        .fe-split.rev .fe-split-img { order: 1; }
        @media (max-width: 900px) {
            .fe-split, .fe-split.rev { grid-template-columns: 1fr; }
            .fe-split.rev .fe-split-copy, .fe-split.rev .fe-split-img { order: unset; }
        }
        .fe-split-img {
            border-radius: var(--fe-radius);
            border: 1px solid var(--fe-border);
            overflow: hidden;
            background: var(--fe-surface);
            box-shadow: 0 20px 60px rgba(0,0,0,0.35);
        }
        .fe-split-img img { display: block; width: 100%; height: auto; }
        .fe-split-copy h2,
        .fe-split-copy h3 {
            font-family: var(--fe-font-display);
            font-size: 1.65rem;
            font-weight: 700;
            margin-bottom: 0.85rem;
        }
        .fe-split-copy p { color: var(--fe-muted); margin-bottom: 1rem; }

        /* Cards grid */
        .fe-grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }
        @media (max-width: 900px) { .fe-grid-3 { grid-template-columns: 1fr; } }
        .fe-card {
            padding: 1.65rem;
            border-radius: var(--fe-radius);
            border: 1px solid var(--fe-border);
            background: var(--fe-surface);
            backdrop-filter: blur(12px);
            transition: border-color .25s, transform .25s;
        }
        .fe-card:hover {
            border-color: rgba(20, 184, 166, 0.28);
            transform: translateY(-3px);
        }
        .fe-card i {
            font-size: 1.75rem;
            color: var(--fe-teal);
            margin-bottom: 1rem;
            display: block;
        }
        .fe-card h3,
        .fe-card h4 { font-family: var(--fe-font-display); font-size: 1.1rem; margin-bottom: 0.5rem; }
        .fe-card p { font-size: 0.92rem; color: var(--fe-muted); }

        /* Video */
        .fe-video-wrap {
            border-radius: var(--fe-radius);
            border: 1px solid var(--fe-border);
            overflow: hidden;
            background: #000;
            position: relative;
            box-shadow: 0 28px 90px rgba(0,0,0,0.5);
        }
        .fe-video-wrap video {
            display: block;
            width: 100%;
            aspect-ratio: 16 / 9;
            object-fit: cover;
        }
        .fe-video-wrap .fe-youtube-embed {
            position: relative;
            z-index: 1;
            isolation: isolate;
            width: 100%;
            aspect-ratio: 16 / 9;
            background: #000;
        }
        .fe-video-wrap .fe-youtube-facade-thumb {
            display: block;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .fe-video-wrap .fe-youtube-facade-btn {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            margin: 0;
            padding: 0;
            border: none;
            background: radial-gradient(rgba(0, 0, 0, 0.07) 0%, rgba(0, 0, 0, 0.52) 100%);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: filter 0.2s ease, background 0.2s ease;
        }
        .fe-video-wrap .fe-youtube-facade-btn:hover,
        .fe-video-wrap .fe-youtube-facade-btn:focus-visible {
            outline: none;
            filter: brightness(1.08);
            background: radial-gradient(rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.62) 100%);
        }
        .fe-video-wrap .fe-youtube-facade-btn:focus-visible {
            box-shadow: inset 0 0 0 3px rgba(20, 184, 166, 0.85);
        }
        .fe-video-wrap .fe-youtube-facade-play {
            filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.45));
            flex-shrink: 0;
        }
        .fe-video-wrap .fe-youtube-embed iframe {
            position: absolute;
            inset: 0;
            z-index: 1;
            width: 100%;
            height: 100%;
            border: 0;
        }

        .fe-video-placeholder {
            position: relative;
            aspect-ratio: 16 / 9;
            background: var(--fe-bg-2);
        }
        .fe-video-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.85;
        }
        .fe-video-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            background: linear-gradient(0deg, rgba(5,5,8,0.75), rgba(5,5,8,0.35));
            text-align: center;
            padding: 1.5rem;
        }
        .fe-video-overlay span {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--fe-amber);
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }

        /* Discord band */
        .fe-discord-band {
            padding-top: 4rem;
            padding-bottom: 4rem;
            border-radius: var(--fe-radius);
            max-width: min(
                calc(var(--fe-max) + 2.7rem),
                calc(100% - 2 * var(--fe-gutter-x) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
            );
            margin-left: auto;
            margin-right: auto;
            border: 1px solid rgba(88, 101, 242, 0.25);
            background:
                linear-gradient(135deg, rgba(88, 101, 242, 0.12), rgba(20, 184, 166, 0.08)),
                var(--fe-surface);
            overflow: hidden;
            position: relative;
        }
        .fe-discord-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: center;
            padding: 2rem 2.5rem;
        }
        @media (max-width: 900px) {
            .fe-discord-inner { grid-template-columns: 1fr; padding: 1.75rem; }
            .fe-discord-band {
                max-width: min(
                    calc(var(--fe-max) + 2.7rem),
                    calc(100% - 2 * var(--fe-gutter-x-compact) - env(safe-area-inset-left, 0px) - env(safe-area-inset-right, 0px))
                );
            }
        }
        .fe-discord-inner img {
            width: 100%;
            border-radius: var(--fe-radius-sm);
            border: 1px solid var(--fe-border);
        }

        /* CTA strip */
        .fe-cta {
            text-align: center;
            padding-top: 5rem;
            padding-bottom: 4.5rem;
        }
        .fe-cta .fe-h2 { margin-bottom: 1rem; }

        /* Footer */
        .fe-footer {
            border-top: 1px solid var(--fe-border);
            padding-top: 2.75rem;
            padding-bottom: 2.75rem;
            background: rgba(0,0,0,0.25);
        }
        .fe-footer-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .fe-footer-brand .fe-logo { margin-bottom: 0.5rem; display: inline-block; }
        .fe-footer-brand p { color: var(--fe-muted); font-size: 0.88rem; max-width: 280px; }
        .fe-footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem 2rem;
            list-style: none;
        }
        .fe-footer-links a { color: var(--fe-muted); font-weight: 600; font-size: 0.88rem; }
        .fe-footer-links a:hover { color: var(--fe-text); }
        .fe-footer-copy {
            text-align: center;
            font-size: 0.82rem;
            color: var(--fe-muted);
        }

        /* Legal pages — nur vertikal: .fe-container liefert den seitlichen Abstand */
        .fe-legal {
            padding-top: 6rem;
            padding-bottom: 4rem;
        }
        .fe-legal h1 {
            font-family: var(--fe-font-display);
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }
        .fe-legal .fe-legal-body {
            color: var(--fe-muted);
            line-height: 1.85;
            max-width: 42rem;
            overflow-wrap: break-word;
            word-break: break-word;
        }
        .fe-legal .fe-legal-body strong { color: var(--fe-text); }
        .fe-legal .fe-legal-body h2 {
            color: var(--fe-text);
            font-family: var(--fe-font-display);
            font-size: 1.2rem;
            font-weight: 700;
            margin-top: 2rem;
            margin-bottom: 0.5rem;
        }
        .fe-legal .fe-legal-body ul { margin-left: 1.25rem; margin-top: 0.5rem; }

        /* Reveal animation */
        .fe-reveal {
            opacity: 0;
            transform: translateY(22px);
            animation: feReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .fe-reveal:nth-child(2) { animation-delay: 0.08s; }
        .fe-reveal:nth-child(3) { animation-delay: 0.16s; }
        /* Hero-Bild: keine feReveal-Animation — Keyframes würden transform überschreiben (Rotation/LCP/CLS) */
        .fe-hero-visual.fe-reveal {
            opacity: 1;
            animation: none;
        }
        @keyframes feReveal {
            to { opacity: 1; transform: translateY(0); }
        }

        /* Cookie-Einwilligung — Vorbild: ki-admin „Admin Customizer“ (offcanvas-end + .customizer-btn) */
        body.fe-cookie-strip-visible {
            padding-bottom: 5.75rem;
        }
        @media (max-width: 560px) {
            body.fe-cookie-strip-visible {
                padding-bottom: 8rem;
            }
        }
        .fe-cookie-strip {
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 205;
            padding: 0.75rem 0;
            background: linear-gradient(180deg, rgba(12, 14, 20, 0.97), rgba(8, 9, 12, 0.99));
            border-top: 1px solid var(--fe-border);
            box-shadow: 0 -14px 44px rgba(0, 0, 0, 0.5);
        }
        .fe-cookie-strip-inner {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.65rem 1.1rem;
            justify-content: space-between;
        }
        .fe-cookie-strip-text {
            margin: 0;
            flex: 1 1 14rem;
            font-size: 0.86rem;
            color: var(--fe-muted);
            line-height: 1.45;
            max-width: 40rem;
        }
        .fe-cookie-strip-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            align-items: center;
        }
        .fe-cookie-strip-actions .fe-btn {
            font-size: 0.82rem;
            padding: 0.48rem 0.75rem;
        }
        body.fe-cookie-drawer-open {
            overflow: hidden;
        }
        .fe-cookie-backdrop {
            position: fixed;
            inset: 0;
            z-index: 210;
            background: rgba(0, 0, 0, 0.5);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
            pointer-events: none;
        }
        .fe-cookie-backdrop.is-visible {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        /* Am rechten Rand angedockt, linke Ecken abgerundet (wie Theme-Customizer-Tab) */
        .fe-cookie-dock-btn {
            position: fixed;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 2.7rem;
            min-height: 3.15rem;
            padding: 0.7rem 0.4rem 0.7rem 0.5rem;
            margin: 0;
            border: none;
            border-radius: 0.7rem 0 0 0.7rem;
            background: linear-gradient(180deg, #0f766e, #0a5c55);
            color: #fff;
            cursor: pointer;
            box-shadow:
                0 0 0 2px rgba(255, 255, 255, 0.22),
                -6px 6px 24px rgba(0, 0, 0, 0.4);
            transition: background 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
        }
        .fe-cookie-dock-btn[hidden] {
            display: none !important;
        }
        .fe-cookie-dock-btn:hover {
            background: linear-gradient(180deg, #14b8a6, #0d9488);
            filter: brightness(1.05);
        }
        .fe-cookie-dock-btn:focus-visible {
            outline: 2px solid var(--fe-amber);
            outline-offset: 3px;
        }
        .fe-cookie-dock-btn .ti {
            font-size: 1.38rem;
            line-height: 1;
            filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.3));
        }
        .fe-cookie-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(28rem, 100vw);
            z-index: 211;
            pointer-events: none;
        }
        .fe-cookie-drawer-panel {
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            background: linear-gradient(180deg, rgba(12, 14, 20, 0.99), rgba(16, 18, 26, 0.98));
            border-left: 1px solid rgba(20, 184, 166, 0.35);
            box-shadow: -16px 0 48px rgba(0, 0, 0, 0.55);
            transform: translateX(100%);
            transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
            /* Wichtig: außerhalb is-open kein Klick-Target (sonst blockiert z. T. trotz translateX) */
            pointer-events: none;
        }
        .fe-cookie-drawer.is-open .fe-cookie-drawer-panel {
            transform: translateX(0);
            pointer-events: auto;
        }
        .fe-cookie-drawer-header {
            flex-shrink: 0;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            padding: 1.35rem 1.2rem 1.1rem 1.25rem;
            background: linear-gradient(140deg, rgba(15, 118, 110, 0.96), rgba(10, 70, 64, 0.99));
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .fe-cookie-drawer-heading {
            min-width: 0;
        }
        .fe-cookie-drawer-title {
            font-family: var(--fe-font-display);
            font-size: 1.12rem;
            font-weight: 700;
            color: #f0faf9;
            margin: 0 0 0.45rem;
            letter-spacing: -0.02em;
        }
        .fe-cookie-drawer-lead {
            font-size: 0.82rem;
            color: rgba(240, 250, 249, 0.78);
            line-height: 1.48;
            margin: 0;
        }
        .fe-cookie-drawer-close {
            flex-shrink: 0;
            width: 2.3rem;
            height: 2.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
            border: none;
            border-radius: var(--fe-radius-sm);
            background: rgba(255, 255, 255, 0.14);
            color: #fff;
            cursor: pointer;
            transition: background 0.2s ease;
        }
        .fe-cookie-drawer-close[hidden] {
            display: none !important;
        }
        .fe-cookie-drawer-close:hover {
            background: rgba(255, 255, 255, 0.24);
        }
        .fe-cookie-drawer-close .ti {
            font-size: 1.15rem;
        }
        .fe-cookie-drawer-body {
            flex: 1;
            overflow-y: auto;
            padding: 1.25rem 1.25rem 1.5rem;
        }
        .fe-cookie-drawer-copy .fe-cookie-text {
            margin-bottom: 0.85rem;
        }
        .fe-cookie-drawer-actions {
            margin-top: 1.25rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .fe-cookie-text {
            font-size: 0.88rem;
            color: var(--fe-muted);
            line-height: 1.55;
        }
        .fe-cookie-text a {
            color: var(--fe-teal);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .fe-cookie-text a:hover {
            color: var(--fe-amber);
        }
        .fe-cookie-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            justify-content: flex-end;
        }
        .fe-cookie-btn {
            padding: 0.55rem 1rem;
            font-size: 0.85rem;
        }
        .fe-footer-cookie {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: none;
            border: none;
            padding: 0;
            font: inherit;
            color: var(--fe-teal);
            cursor: pointer;
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .fe-footer-cookie:hover {
            color: var(--fe-amber);
        }
        .fe-footer-cookie .ti {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Demo-Anfrage-Modal (kein Bootstrap im Frontend — nur per Klick aus <template> eingefügt) */
        body.fe-demo-modal-open {
            overflow: hidden;
        }
        .fe-demo-modal-root {
            position: fixed;
            inset: 0;
            z-index: 220;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            pointer-events: none;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.32s ease, visibility 0.32s ease;
        }
        .fe-demo-modal-root.is-open {
            pointer-events: auto;
            opacity: 1;
            visibility: visible;
        }
        .fe-demo-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.72);
            cursor: pointer;
            opacity: 0;
            transition: opacity 0.32s ease;
        }
        .fe-demo-modal-root.is-open .fe-demo-modal-backdrop {
            opacity: 1;
        }
        .fe-demo-modal-panel {
            position: relative;
            z-index: 1;
            width: min(28rem, 100%);
            max-height: min(90vh, 640px);
            overflow-y: auto;
            background: #12131e;
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
            opacity: 0;
            transform: translateY(18px) scale(0.96);
            transition:
                opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
            transition-delay: 0.05s;
        }
        .fe-demo-modal-root.is-open .fe-demo-modal-panel {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
        @media (prefers-reduced-motion: reduce) {
            .fe-demo-modal-root,
            .fe-demo-modal-backdrop,
            .fe-demo-modal-panel {
                transition-duration: 0.01ms !important;
                transition-delay: 0s !important;
            }
            .fe-demo-modal-root.is-open .fe-demo-modal-panel {
                transform: none;
            }
        }
        .fe-demo-modal-header {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 0.75rem;
            padding: 1.25rem 1.25rem 0;
        }
        .fe-demo-modal-title {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
            color: #fff;
        }
        .fe-demo-modal-title .ti {
            margin-right: 0.35rem;
            vertical-align: -0.08em;
        }
        .fe-demo-modal-close {
            flex-shrink: 0;
            width: 2.25rem;
            height: 2.25rem;
            margin: -0.25rem -0.25rem 0 0;
            border: none;
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
            transition: background 0.15s ease;
        }
        .fe-demo-modal-close:hover {
            background: rgba(255, 255, 255, 0.14);
        }
        .fe-demo-modal-close:focus-visible {
            outline: 2px solid var(--fe-amber);
            outline-offset: 2px;
        }
        .fe-demo-modal-body {
            padding: 0 1.25rem 1.25rem;
        }
        .fe-demo-intro {
            font-size: 0.875rem;
            line-height: 1.6;
            color: rgba(244, 244, 248, 0.62);
            margin-bottom: 1rem;
        }
        .fe-demo-modal-body .mb-3 {
            margin-bottom: 0.75rem;
        }
        .fe-demo-modal-body .mt-3 {
            margin-top: 0.75rem;
        }
        .fe-demo-modal-body .fe-demo-label {
            display: block;
            margin-bottom: 0.35rem;
            font-size: 0.8125rem;
            color: rgba(255, 255, 255, 0.85);
        }
        .fe-demo-modal-body .fe-demo-input {
            width: 100%;
            padding: 0.65rem 0.8rem;
            font-size: 0.95rem;
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: #fff;
        }
        .fe-demo-modal-body .fe-demo-input:focus {
            outline: 2px solid rgba(20, 184, 166, 0.45);
            outline-offset: 1px;
        }
        .fe-demo-modal-body .fe-demo-submit {
            width: 100%;
            margin-top: 0.25rem;
            padding: 0.75rem 1rem;
            font-weight: 600;
            font-size: 0.95rem;
            border: none;
            border-radius: 0.5rem;
            background: #0f626a;
            color: #fff;
            cursor: pointer;
            transition: filter 0.15s ease;
        }
        .fe-demo-modal-body .fe-demo-submit:hover:not(:disabled) {
            filter: brightness(1.08);
        }
        .fe-demo-modal-body .fe-demo-submit:disabled {
            opacity: 0.65;
            cursor: not-allowed;
        }
        .fe-demo-alert {
            padding: 0.65rem 0.85rem;
            border-radius: 0.5rem;
            font-size: 0.875rem;
            line-height: 1.45;
        }
        .fe-demo-alert--success {
            background: rgba(20, 184, 166, 0.14);
            color: #5eead4;
            border: 1px solid rgba(20, 184, 166, 0.35);
        }
        .fe-demo-alert--danger {
            background: rgba(239, 68, 68, 0.12);
            color: #fca5a5;
            border: 1px solid rgba(239, 68, 68, 0.32);
        }
        .fe-demo-spinner {
            display: inline-block;
            width: 0.85rem;
            height: 0.85rem;
            margin-right: 0.35rem;
            border: 2px solid rgba(255, 255, 255, 0.25);
            border-top-color: #fff;
            border-radius: 50%;
            vertical-align: -0.12em;
            animation: feDemoSpin 0.65s linear infinite;
        }
        @keyframes feDemoSpin {
            to { transform: rotate(360deg); }
        }
        .fe-demo-recaptcha-note {
            font-size: 0.6875rem;
            color: rgba(244, 244, 248, 0.45);
        }
        .fe-demo-recaptcha-note a {
            color: rgba(244, 244, 248, 0.5);
            text-decoration: underline;
            text-underline-offset: 2px;
        }
        .fe-demo-recaptcha-note a:hover {
            color: rgba(244, 244, 248, 0.75);
        }

        @media (max-width: 480px) {
            .fe-hero { padding-top: 3.25rem; padding-bottom: 2.75rem; }
            .fe-band { padding-top: 3.25rem; padding-bottom: 3.25rem; }
            .fe-cta { padding-top: 3.5rem; padding-bottom: 3.25rem; }
            .fe-lead { font-size: 1.05rem; margin-bottom: 1.35rem; }
            .fe-sub { font-size: 0.95rem; margin-bottom: 1.75rem; }
            .fe-kicker { font-size: 0.72rem; letter-spacing: 0.1em; }
            .fe-footer { padding-top: 2rem; padding-bottom: 2rem; }
            .fe-footer-grid { gap: 1.5rem; margin-bottom: 1.5rem; }
            .fe-discord-inner { padding: 1.25rem 1.1rem; }
            .fe-discord-band { padding-top: 3rem; padding-bottom: 3rem; }
            .fe-navbar-inner { gap: 0.5rem; }
            .fe-nav-right { gap: 0.65rem; }
            .fe-logo { font-size: clamp(1.02rem, 5vw, 1.35rem); }
            .fe-nav-actions { gap: 0.4rem; }
            .fe-nav-actions .fe-btn { font-size: 0.82rem; padding: 0.55rem 0.72rem; gap: 0.35rem; }
            .fe-hero-grid { gap: 1.5rem; }
            .fe-split { gap: 1.75rem; }
            .fe-legal { padding-top: 4.5rem; padding-bottom: 3rem; }
            .fe-legal h1 { font-size: clamp(1.5rem, 6vw, 2.25rem); }
        }
        @media (max-width: 380px) {
            .fe-nav-actions .fe-btn { font-size: 0.76rem; padding: 0.48rem 0.55rem; }
        }
