/* condoor-ui.css — shared design system (generated from index + subpage components) */
        :root {
            /* --- Brand colours --- */
            --navy-950: #060d1a;
            --navy-900: #0a1628;
            --navy-850: #0d1d34;
            --navy-800: #122742;
            --navy-700: #1b3a63;

            --gold-300: #f0d18a;
            --gold-400: #e0b15e;
            --gold-500: #c5a059;
            --gold-600: #a16207;
            /* WCAG-safe gold on light */

            --spark: #38bdf8;
            /* electric energy accent */

            --white: #ffffff;
            --ink-100: rgba(255, 255, 255, 0.92);
            --ink-200: rgba(255, 255, 255, 0.70);
            --ink-300: rgba(255, 255, 255, 0.52);
            --line: rgba(255, 255, 255, 0.10);
            --line-strong: rgba(255, 255, 255, 0.18);

            --glass: rgba(255, 255, 255, 0.045);
            --glass-2: rgba(255, 255, 255, 0.07);

            --ok: #34d399;
            --danger: #f87171;

            /* --- Type --- */
            --font-display: 'Clash Display', 'Space Grotesk', system-ui, sans-serif;
            --font-body: 'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;

            /* --- Spacing scale (8pt) --- */
            --s-1: 0.5rem;
            --s-2: 1rem;
            --s-3: 1.5rem;
            --s-4: 2rem;
            --s-6: 3rem;
            --s-8: 4rem;
            --s-12: 6rem;

            --radius-sm: 10px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-xl: 32px;

            --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.7);
            --shadow-glow-gold: 0 12px 40px -8px rgba(224, 177, 94, 0.45);
            --ease: cubic-bezier(0.22, 1, 0.36, 1);
            --t: 240ms var(--ease);

            --maxw: 1200px;
            --maxw-wide: 1320px;
        }

        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 84px; /* sticky Navbar nicht überdecken bei Anker-Sprüngen */
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.65;
            color: var(--ink-100);
            background: var(--navy-950);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-display);
            line-height: 1.08;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--white);
        }

        p { color: var(--ink-200); }
        a { color: inherit; text-decoration: none; transition: color var(--t); }
        img { max-width: 100%; display: block; }
        ul { list-style: none; }
        button { font-family: inherit; cursor: pointer; }
        :focus-visible {
            outline: 3px solid var(--spark);
            outline-offset: 3px;
            border-radius: 4px;
        }

        /* ---------- Background aurora ---------- */
        .bg-fx {
            position: fixed;
            inset: 0;
            z-index: -2;
            overflow: hidden;
            background:
                radial-gradient(1200px 700px at 80% -10%, rgba(27, 58, 99, 0.55), transparent 60%),
                radial-gradient(900px 600px at 0% 100%, rgba(18, 39, 66, 0.6), transparent 55%),
                var(--navy-950);
        }
        .bg-fx::after {
            /* subtle grid */
            content: "";
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(var(--line) 1px, transparent 1px),
                linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 64px 64px;
            -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
            mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
            opacity: 0.5;
        }
        .blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: float 18s var(--ease) infinite alternate;
        }
        .blob.b1 { width: 520px; height: 520px; top: -120px; right: -80px; background: rgba(197, 160, 89, 0.30); }
        .blob.b2 { width: 460px; height: 460px; bottom: -140px; left: -100px; background: rgba(56, 189, 248, 0.18); animation-delay: -6s; }
        .blob.b3 { width: 380px; height: 380px; top: 40%; left: 55%; background: rgba(27, 58, 99, 0.6); animation-delay: -11s; }
        @keyframes float {
            from { transform: translate3d(0, 0, 0) scale(1); }
            to { transform: translate3d(40px, -30px, 0) scale(1.12); }
        }

        /* ---------- Scroll progress ---------- */
        .scroll-progress {
            position: fixed;
            top: 0; left: 0;
            height: 3px;
            width: 0%;
            background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
            z-index: 200;
            transition: width 80ms linear;
        }

        .skip-link {
            position: absolute;
            left: 50%;
            transform: translateX(-50%) translateY(-200%);
            top: 8px;
            background: var(--gold-400);
            color: var(--navy-950);
            padding: 0.6rem 1.2rem;
            border-radius: 999px;
            font-weight: 600;
            z-index: 300;
            transition: transform var(--t);
        }
        .skip-link:focus { transform: translateX(-50%) translateY(0); }

        /* ---------- Layout helpers ---------- */
        .container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s-3); }
        .container-wide { max-width: var(--maxw-wide); margin: 0 auto; padding: 0 var(--s-3); }
        .section { padding: var(--s-8) 0; }
        @media (min-width: 768px) { .section { padding: var(--s-12) 0; } }

        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-display);
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            color: var(--gold-300);
            padding: 0.45rem 0.9rem;
            border: 1px solid rgba(224, 177, 94, 0.35);
            border-radius: 999px;
            background: rgba(224, 177, 94, 0.07);
        }
        .eyebrow .dot {
            width: 7px; height: 7px; border-radius: 50%;
            background: var(--gold-400);
            box-shadow: 0 0 0 4px rgba(224, 177, 94, 0.18);
        }

        .section-head { max-width: 640px; margin: 0 auto var(--s-6); text-align: center; }
        .section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: var(--s-2) 0 0.75rem; }
        .section-head p { font-size: 1.08rem; color: var(--ink-200); }

        .gold-text {
            background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 60%, var(--gold-300));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* ---------- Buttons ---------- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.55rem;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.9rem 1.6rem;
            border-radius: 999px;
            border: 1px solid transparent;
            transition: transform var(--t), box-shadow var(--t), background var(--t), color var(--t), border-color var(--t);
            white-space: nowrap;
        }
        .btn svg { width: 19px; height: 19px; }
        .btn-gold {
            background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
            color: var(--navy-950);
            box-shadow: var(--shadow-glow-gold);
        }
        .btn-gold:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -8px rgba(224, 177, 94, 0.6); }
        .btn-ghost {
            background: var(--glass);
            color: var(--white);
            border-color: var(--line-strong);
            backdrop-filter: blur(8px);
        }
        .btn-ghost:hover { transform: translateY(-2px); background: var(--glass-2); border-color: var(--gold-400); }
        .btn-lg { padding: 1.05rem 1.9rem; font-size: 1.05rem; }
        .btn-block { width: 100%; }

        /* ---------- Navbar ---------- */
        .navbar {
            position: sticky;
            top: 0;
            z-index: 150;
            backdrop-filter: blur(14px);
            background: rgba(6, 13, 26, 0.55);
            border-bottom: 1px solid transparent;
            transition: background var(--t), border-color var(--t);
        }
        .navbar.scrolled {
            background: rgba(6, 13, 26, 0.85);
            border-bottom-color: var(--line);
        }
        .nav-inner {
            max-width: var(--maxw-wide);
            margin: 0 auto;
            padding: 0.85rem var(--s-3);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: var(--s-3);
        }
        .brand-logo { height: 34px; width: auto; filter: brightness(0) invert(1); }
        .brand-text-logo {
            font-family: var(--font-display);
            font-weight: 700;
            letter-spacing: 0.06em;
            font-size: 1.4rem;
            color: var(--white);
        }
        .nav-links { display: none; gap: 0.4rem; align-items: center; }
        .nav-links a {
            color: var(--ink-200);
            font-weight: 500;
            font-size: 0.97rem;
            padding: 0.55rem 0.9rem;
            border-radius: 999px;
        }
        .nav-links a:hover { color: var(--white); background: var(--glass); }
        .nav-right { display: flex; align-items: center; gap: 0.75rem; }
        .nav-cta { display: none; }
        @media (min-width: 980px) {
            .nav-links { display: flex; }
            .nav-cta { display: inline-flex; }
        }

        /* hamburger button → X morph */
        .mobile-menu-btn {
            position: relative;
            display: inline-flex;
            width: 46px; height: 46px;
            align-items: center; justify-content: center;
            background: var(--glass);
            border: 1px solid var(--line-strong);
            color: var(--white);
            border-radius: 12px;
            transition: background var(--t), color var(--t), border-color var(--t);
        }
        .mobile-menu-btn svg { width: 24px; height: 24px; }
        .mobile-menu-btn .mm-bar {
            position: absolute; left: 50%; top: 50%;
            width: 20px; height: 2px; margin-left: -10px;
            background: currentColor; border-radius: 2px;
            transition: transform .4s var(--ease), opacity .25s var(--ease);
        }
        .mobile-menu-btn .mm-bar:nth-child(1) { transform: translateY(-6px); }
        .mobile-menu-btn .mm-bar:nth-child(3) { transform: translateY(6px); }
        .mobile-menu-btn[aria-expanded="true"] { background: var(--gold-400); color: var(--navy-950); border-color: var(--gold-400); }
        .mobile-menu-btn[aria-expanded="true"] .mm-bar:nth-child(1) { transform: rotate(45deg); }
        .mobile-menu-btn[aria-expanded="true"] .mm-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .mobile-menu-btn[aria-expanded="true"] .mm-bar:nth-child(3) { transform: rotate(-45deg); }
        @media (min-width: 980px) { .mobile-menu-btn { display: none; } }

        /* overlay: circular reveal from the button + staggered links */
        .mobile-menu {
            position: fixed;
            inset: 0;
            z-index: 140;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 0.1rem;
            padding: 6rem 2.2rem 2.4rem;
            background:
                radial-gradient(520px 380px at 100% 0%, rgba(224, 177, 94, 0.16), transparent 60%),
                radial-gradient(440px 320px at 0% 100%, rgba(56, 189, 248, 0.10), transparent 55%),
                linear-gradient(160deg, var(--navy-850), var(--navy-950) 62%);
            clip-path: circle(0px at calc(100% - 46px) 46px);
            transition: clip-path .6s var(--ease);
            pointer-events: none;
            counter-reset: mm;
            overflow: hidden;
        }
        .mobile-menu::before {
            content: ""; position: absolute; inset: 0; z-index: -1;
            background-image:
                linear-gradient(var(--line) 1px, transparent 1px),
                linear-gradient(90deg, var(--line) 1px, transparent 1px);
            background-size: 48px 48px;
            -webkit-mask-image: radial-gradient(ellipse 70% 60% at 92% 8%, #000, transparent 70%);
            mask-image: radial-gradient(ellipse 70% 60% at 92% 8%, #000, transparent 70%);
            opacity: .5;
        }
        .mobile-menu.open { clip-path: circle(165% at calc(100% - 46px) 46px); pointer-events: auto; }
        .mobile-menu > a {
            position: relative;
            display: flex; align-items: baseline; gap: 0.9rem;
            width: 100%;
            font-family: var(--font-display);
            font-weight: 600;
            font-size: clamp(2rem, 11vw, 3rem);
            letter-spacing: -0.02em;
            color: var(--white);
            padding: 0.5rem 0;
            opacity: 0;
            transform: translateX(-26px);
            transition: opacity .5s var(--ease), transform .5s var(--ease), color .2s;
        }
        .mobile-menu > a:not(.btn)::after {
            content: ""; position: absolute; left: 0; bottom: 0.35rem;
            height: 2px; width: 0;
            background: linear-gradient(90deg, var(--gold-400), var(--gold-300));
            transition: width .3s var(--ease);
        }
        .mobile-menu > a:not(.btn):hover { color: var(--gold-300); }
        .mobile-menu > a:not(.btn):hover::after,
        .mobile-menu > a:not(.btn):active::after { width: 100%; }
        .mobile-menu.open > a { opacity: 1; transform: none; }
        .mobile-menu.open > a:nth-child(1) { transition-delay: .16s; }
        .mobile-menu.open > a:nth-child(2) { transition-delay: .22s; }
        .mobile-menu.open > a:nth-child(3) { transition-delay: .28s; }
        .mobile-menu.open > a:nth-child(4) { transition-delay: .34s; }
        .mobile-menu.open > a:nth-child(5) { transition-delay: .42s; }
        .mobile-menu .btn {
            display: flex; align-items: center;
            margin-top: var(--s-3);
            align-self: stretch;
            font-size: 1.05rem;
        }
        body.menu-open .navbar { background: transparent; border-bottom-color: transparent; }

        @media (prefers-reduced-motion: reduce) {
            .mobile-menu { transition: none; }
            .mobile-menu > a { transition: color .2s; opacity: 1; transform: none; }
            .mobile-menu-btn .mm-bar { transition: none; }
        }

        /* ---------- Hero ---------- */
        .hero { position: relative; padding: var(--s-8) 0 var(--s-6); }
        @media (min-width: 768px) { .hero { padding: var(--s-12) 0 var(--s-8); } }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: var(--s-6);
            align-items: center;
        }
        @media (min-width: 1024px) {
            .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); }
        }
        .hero h1 {
            font-size: clamp(2.6rem, 6.5vw, 4.6rem);
            margin: var(--s-3) 0 0.4rem;
        }
        .hero .tagline {
            font-family: var(--font-display);
            font-weight: 600;
            font-size: clamp(1.2rem, 2.6vw, 1.7rem);
            margin-bottom: var(--s-3);
        }
        .hero .lead { font-size: 1.1rem; max-width: 36rem; margin-bottom: var(--s-4); }
        .hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
        .hero-sub { margin-top: var(--s-3); color: var(--ink-300); font-size: 0.92rem; display: inline-flex; align-items: center; gap: 0.45rem; }
        .hero-sub svg { width: 16px; height: 16px; color: var(--gold-400); }

        /* hero card */
        .hero-card-stack { display: grid; gap: var(--s-3); }
        .glass-card {
            background: var(--glass);
            border: 1px solid var(--line);
            border-radius: var(--radius-lg);
            backdrop-filter: blur(14px);
            box-shadow: var(--shadow-card);
        }
        .earnings-card { padding: var(--s-3); position: relative; overflow: hidden; }
        .earnings-card::before {
            content: "";
            position: absolute; inset: 0;
            background: radial-gradient(420px 180px at 100% 0%, rgba(224, 177, 94, 0.2), transparent 70%);
            pointer-events: none;
        }
        .earnings-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
        .earnings-head .label { font-size: 0.82rem; color: var(--ink-300); letter-spacing: 0.04em; text-transform: uppercase; }
        .live-pill { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.72rem; font-weight: 600; color: var(--ok); }
        .live-pill .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.6); animation: pulse 2s infinite; }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.55); }
            70% { box-shadow: 0 0 0 10px rgba(52, 211, 153, 0); }
            100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
        }
        .earnings-amount { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; color: var(--white); letter-spacing: -0.02em; }
        .earnings-amount .cur { color: var(--gold-300); }
        .earnings-meta { color: var(--ink-300); font-size: 0.9rem; margin-top: 0.25rem; }
        .mini-chart { display: flex; align-items: flex-end; gap: 8px; height: 70px; margin-top: var(--s-3); }
        .mini-chart .bar { flex: 1; background: linear-gradient(180deg, var(--gold-300), rgba(197, 160, 89, 0.25)); border-radius: 6px 6px 3px 3px; transform-origin: bottom; animation: grow 900ms var(--ease) both; }
        @keyframes grow { from { transform: scaleY(0); } }

        /* ── Schwebende Karten (sanftes Wippen) ── */
        .float-soft { animation: floatSoft 6s var(--ease) infinite; will-change: transform; }
        .float-soft.fs-delay { animation-delay: -3s; }
        @keyframes floatSoft {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* ── Gold-Glow Atmen (subtiler Rand-Schimmer) ── */
        .glow-breathe { animation: glowBreathe 4.5s var(--ease) infinite; }
        @keyframes glowBreathe {
            0%, 100% { box-shadow: var(--shadow-card), 0 0 0 1px rgba(224, 177, 94, 0.10), 0 0 22px -6px rgba(224, 177, 94, 0.18); }
            50%      { box-shadow: var(--shadow-card), 0 0 0 1px rgba(224, 177, 94, 0.30), 0 0 40px -4px rgba(224, 177, 94, 0.42); }
        }

        /* Kombination: gleichzeitig schweben + atmen (eigene Klasse vermeidet animation-Konflikt) */
        .float-soft.glow-breathe { animation: floatSoft 6s var(--ease) infinite, glowBreathe 4.5s var(--ease) infinite; }

        @media (prefers-reduced-motion: reduce) {
            .float-soft, .float-soft.glow-breathe { animation: none; }
            .glow-breathe { animation: none; }
        }

        .ticker-card { padding: 1rem var(--s-3); display: flex; align-items: center; gap: 0.9rem; }
        .ticker-card .ico { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: rgba(56, 189, 248, 0.14); color: var(--spark); flex-shrink: 0; }
        .ticker-card .ico svg { width: 22px; height: 22px; }
        .ticker-card .t-title { font-size: 0.82rem; color: var(--ink-300); }
        .ticker-card .t-main { color: var(--ink-100); font-weight: 500; }
        .ticker-card .t-main strong { color: var(--gold-300); }
        .ticker-card .t-time { margin-left: auto; font-size: 0.78rem; color: var(--ink-300); white-space: nowrap; }

        /* ---------- Trust marquee (interaktive Chips) ---------- */
        .marquee {
            position: relative;
            border-block: 1px solid var(--line);
            padding: var(--s-3) 0;
            overflow: hidden;
            /* weiches Aus-/Einblenden an den Rändern */
            -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
        }
        /* durchlaufender Lichtstrahl über die ganze Leiste */
        .marquee::before {
            content: ""; position: absolute; top: 0; bottom: 0; left: -50%; width: 42%;
            background: linear-gradient(105deg, transparent, rgba(224, 177, 94, 0.10) 45%, rgba(255, 255, 255, 0.07) 50%, transparent);
            transform: skewX(-20deg); pointer-events: none; z-index: 0;
            animation: beamSweep 7s var(--ease) infinite;
        }
        @keyframes beamSweep { 0% { left: -50%; } 60%, 100% { left: 135%; } }

        .marquee-track { display: flex; gap: var(--s-3); align-items: center; width: max-content; animation: scrollx 30s linear infinite; position: relative; z-index: 1; }
        .marquee:hover .marquee-track { animation-play-state: paused; }

        .marquee-item {
            position: relative; overflow: hidden;
            display: inline-flex; align-items: center; gap: 0.6rem;
            padding: 0.6rem 1.15rem;
            border-radius: 999px;
            border: 1px solid var(--line-strong);
            background: var(--glass);
            color: var(--ink-200);
            font-family: var(--font-display); font-weight: 600; white-space: nowrap;
            cursor: default;
            transition: transform 320ms var(--ease), color 320ms var(--ease),
                        border-color 320ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease);
        }
        .marquee-item svg { width: 20px; height: 20px; color: var(--gold-400); transition: transform 420ms var(--ease), color 320ms var(--ease); }
        /* Sheen-Wisch beim Hover */
        .marquee-item::after {
            content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
            background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.20), transparent);
            transform: skewX(-18deg); transition: left 650ms var(--ease); pointer-events: none;
        }
        .marquee-item:hover {
            transform: translateY(-3px) scale(1.06);
            color: var(--white);
            border-color: var(--gold-400);
            background: var(--glass-2);
            box-shadow: 0 12px 32px -14px rgba(0, 0, 0, 0.75), 0 0 28px -8px rgba(224, 177, 94, 0.48);
        }
        .marquee-item:hover svg { transform: rotate(-10deg) scale(1.2); color: var(--gold-300); }
        .marquee-item:hover::after { left: 160%; }
        @keyframes scrollx { to { transform: translateX(-50%); } }

        /* Cursor-Spotlight, der der Maus folgt (Element wird per JS erzeugt) */
        .marquee .m-spot {
            position: absolute; inset: 0; z-index: 2; pointer-events: none;
            opacity: 0; transition: opacity 320ms var(--ease);
            mix-blend-mode: screen;
            background: radial-gradient(190px circle at var(--mx, 50%) var(--my, 50%),
                        rgba(224, 177, 94, 0.22), rgba(224, 177, 94, 0.07) 42%, transparent 70%);
        }
        .marquee.spot-on .m-spot { opacity: 1; }
        /* Klickbare Chips */
        .marquee-item[data-jump] { cursor: pointer; }
        .marquee-item[data-jump]:active { transform: translateY(-1px) scale(1.02); }

        @media (prefers-reduced-motion: reduce) {
            .marquee::before { animation: none; opacity: 0; }
            .marquee .m-spot { display: none; }
        }

        /* ---------- Stats ---------- */
        .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
        @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-3); } }
        .stat {
            padding: var(--s-3);
            text-align: center;
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            background: var(--glass);
        }
        .stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--gold-300); letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
        .stat .lbl { color: var(--ink-200); font-size: 0.95rem; margin-top: 0.25rem; }

        /* ---------- Benefit cards ---------- */
        .grid-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
        @media (min-width: 640px) { .grid-cards { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .grid-cards.cols-4 { grid-template-columns: repeat(4, 1fr); } }
        .feature-card {
            padding: var(--s-3);
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            background: var(--glass);
            transition: transform var(--t), border-color var(--t), background var(--t);
            position: relative;
            overflow: hidden;
        }
        .feature-card:hover { transform: translateY(-6px); border-color: rgba(224, 177, 94, 0.4); background: var(--glass-2); }
        .feature-card .ico {
            width: 52px; height: 52px;
            display: grid; place-items: center;
            border-radius: 14px;
            background: linear-gradient(135deg, rgba(224, 177, 94, 0.22), rgba(224, 177, 94, 0.06));
            border: 1px solid rgba(224, 177, 94, 0.3);
            color: var(--gold-300);
            margin-bottom: var(--s-2);
        }
        .feature-card .ico svg { width: 26px; height: 26px; }
        .feature-card h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
        .feature-card p { font-size: 0.97rem; }

        /* ---------- Split / portal ---------- */
        .split { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
        @media (min-width: 1024px) { .split { grid-template-columns: 1fr 1.05fr; gap: var(--s-8); } }
        .split h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: var(--s-2) 0 var(--s-2); }
        .check-list { display: grid; gap: 0.85rem; margin-top: var(--s-3); }
        .check-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-100); }
        .check-list svg { width: 22px; height: 22px; color: var(--gold-300); flex-shrink: 0; margin-top: 2px; }

        /* portal mockup */
        .portal-wrap { position: relative; }
        .float-widget {
            position: absolute;
            top: -22px; right: 8px;
            z-index: 3;
            display: flex; align-items: center; gap: 0.7rem;
            padding: 0.7rem 1rem;
            border-radius: 14px;
            background: rgba(10, 22, 40, 0.85);
            border: 1px solid var(--line-strong);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-card);
            animation: floaty 5s var(--ease) infinite alternate;
        }
        @keyframes floaty { to { transform: translateY(-8px); } }
        .float-widget .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 0 rgba(52,211,153,.6); animation: pulse 2s infinite; }
        .float-widget .fw-title { font-size: 0.72rem; color: var(--ink-300); }
        .float-widget .fw-main { font-size: 0.88rem; font-weight: 500; }
        .float-widget .fw-main strong { color: var(--gold-300); }

        .browser {
            border-radius: var(--radius-lg);
            border: 1px solid var(--line-strong);
            background: linear-gradient(180deg, rgba(13, 29, 52, 0.9), rgba(10, 22, 40, 0.95));
            box-shadow: var(--shadow-card);
            overflow: hidden;
        }
        .browser-bar { display: flex; align-items: center; gap: 0.6rem; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
        .dots { display: flex; gap: 6px; }
        .dots span { width: 11px; height: 11px; border-radius: 50%; }
        .dots .r { background: #ff5f57; } .dots .y { background: #febc2e; } .dots .g { background: #28c840; }
        .browser-url { flex: 1; text-align: center; font-size: 0.78rem; color: var(--ink-300); background: rgba(0,0,0,.25); border-radius: 8px; padding: 0.3rem 0.6rem; }
        .browser-body { padding: var(--s-3); display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
        .w-card { background: var(--glass); border: 1px solid var(--line); border-radius: 14px; padding: var(--s-2); }
        .w-card.span2 { grid-column: span 2; }
        .w-profile { display: flex; align-items: center; gap: 0.7rem; }
        .w-avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); color: var(--navy-950); }
        .w-avatar svg { width: 22px; height: 22px; }
        .w-profile h4 { font-size: 0.92rem; } .w-profile p { font-size: 0.76rem; color: var(--ink-300); }
        .chip-ok { margin-left: auto; font-size: 0.68rem; font-weight: 600; color: var(--ok); background: rgba(52,211,153,.12); padding: 0.2rem 0.55rem; border-radius: 999px; }
        .w-label { font-size: 0.74rem; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.05em; }
        .w-big { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--gold-300); }
        .w-note { font-size: 0.78rem; color: var(--ink-300); }
        .w-bars { display: flex; align-items: flex-end; gap: 6px; height: 50px; margin-top: 0.5rem; }
        .w-bars span { flex: 1; background: linear-gradient(180deg, var(--spark), rgba(56,189,248,.2)); border-radius: 4px; }
        .zone-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; padding: 0.3rem 0; color: var(--ink-100); }
        .zone-list svg { width: 16px; height: 16px; color: var(--gold-400); }
        .zone-list .badge-b { margin-left: auto; font-size: 0.66rem; padding: 0.12rem 0.5rem; border-radius: 999px; background: rgba(56,189,248,.14); color: var(--spark); }
        .zone-list .badge-g { margin-left: auto; font-size: 0.66rem; padding: 0.12rem 0.5rem; border-radius: 999px; background: rgba(52,211,153,.14); color: var(--ok); }

        /* ---------- Gallery ---------- */
        .gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
        @media (min-width: 900px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: var(--s-3); } }
        .gallery-item {
            position: relative;
            aspect-ratio: 3 / 4;
            border-radius: var(--radius-md);
            overflow: hidden;
            border: 1px solid var(--line);
        }
        .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
        .gallery-item:hover img { transform: scale(1.07); }
        .gallery-item .gi-overlay {
            position: absolute; inset: 0;
            display: flex; flex-direction: column; justify-content: flex-end;
            padding: var(--s-2);
            background: linear-gradient(180deg, transparent 35%, rgba(6, 13, 26, 0.9));
        }
        .gallery-item h3 { font-size: 1.05rem; }
        .gallery-item p { font-size: 0.82rem; color: var(--ink-200); margin: 0; }

        /* ---------- Testimonials ---------- */
        .testi-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
        @media (min-width: 768px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }
        .testi {
            padding: var(--s-3);
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            background: var(--glass);
            display: flex; flex-direction: column; gap: var(--s-2);
        }
        .stars { display: flex; gap: 3px; color: var(--gold-300); }
        .stars svg { width: 18px; height: 18px; fill: currentColor; }
        .testi blockquote { color: var(--ink-100); font-size: 1.02rem; line-height: 1.6; }
        .testi-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
        .testi-avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--navy-950); background: linear-gradient(135deg, var(--gold-300), var(--gold-500)); }
        .testi-author .name { font-weight: 600; font-size: 0.95rem; }
        .testi-author .role { font-size: 0.82rem; color: var(--ink-300); }

        /* ---------- CTA band ---------- */
        .cta-band {
            position: relative;
            border-radius: var(--radius-xl);
            padding: clamp(2rem, 5vw, 4rem);
            text-align: center;
            overflow: hidden;
            border: 1px solid rgba(224, 177, 94, 0.3);
            background:
                radial-gradient(600px 300px at 50% 0%, rgba(224, 177, 94, 0.18), transparent 70%),
                linear-gradient(180deg, var(--navy-850), var(--navy-900));
        }
        .cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: var(--s-2); }
        .cta-band p { font-size: 1.1rem; max-width: 42rem; margin: 0 auto var(--s-4); }
        .cta-band .hero-actions { justify-content: center; }

        /* ---------- Contact ---------- */
        .contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); }
        @media (min-width: 980px) { .contact-grid { grid-template-columns: 1fr 1.1fr; gap: var(--s-8); } }
        .contact-cards { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
        .contact-card {
            display: flex; align-items: center; gap: 0.9rem;
            padding: var(--s-2) var(--s-3);
            border-radius: var(--radius-md);
            border: 1px solid var(--line);
            background: var(--glass);
            transition: transform var(--t), border-color var(--t), background var(--t);
        }
        .contact-card:hover { transform: translateY(-3px); border-color: var(--gold-400); background: var(--glass-2); }
        .contact-card .cc-ico { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: rgba(224,177,94,.14); color: var(--gold-300); flex-shrink: 0; }
        .contact-card .cc-label { font-size: 0.78rem; color: var(--ink-300); display: block; }
        .contact-card .cc-value { font-weight: 600; color: var(--white); }

        .form-card { padding: var(--s-4); }
        .input-wrap { position: relative; margin-bottom: var(--s-3); }
        .input-wrap input, .input-wrap textarea {
            width: 100%;
            background: rgba(0, 0, 0, 0.25);
            border: 1px solid var(--line-strong);
            border-radius: var(--radius-sm);
            padding: 1.25rem 1rem 0.55rem;
            color: var(--white);
            font-family: inherit;
            font-size: 1rem;
            transition: border-color var(--t), box-shadow var(--t);
        }
        .input-wrap textarea { min-height: 130px; resize: vertical; }
        .input-wrap label {
            position: absolute;
            left: 1rem; top: 0.95rem;
            color: var(--ink-300);
            font-size: 1rem;
            pointer-events: none;
            transition: all 160ms var(--ease);
        }
        .input-wrap input:focus, .input-wrap textarea:focus {
            outline: none;
            border-color: var(--gold-400);
            box-shadow: 0 0 0 3px rgba(224, 177, 94, 0.18);
        }
        .input-wrap input:focus + label,
        .input-wrap input:not(:placeholder-shown) + label,
        .input-wrap textarea:focus + label,
        .input-wrap textarea:not(:placeholder-shown) + label {
            top: 0.4rem;
            font-size: 0.72rem;
            color: var(--gold-300);
        }
        .loader {
            width: 20px; height: 20px;
            border: 2.5px solid rgba(6,13,26,.3);
            border-top-color: var(--navy-950);
            border-radius: 50%;
            animation: spin 0.7s linear infinite;
        }
        @keyframes spin { to { transform: rotate(360deg); } }
        .form-status { margin-top: var(--s-2); padding: 0.8rem 1rem; border-radius: var(--radius-sm); font-size: 0.95rem; }
        .form-status.success { background: rgba(52, 211, 153, 0.12); color: var(--ok); border: 1px solid rgba(52,211,153,.3); }
        .form-status.error { background: rgba(248, 113, 113, 0.12); color: var(--danger); border: 1px solid rgba(248,113,113,.3); }

        /* ---------- Footer ---------- */
        .footer { border-top: 1px solid var(--line); padding: var(--s-8) 0 var(--s-4); margin-top: var(--s-8); }
        .footer-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
        @media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--s-6); } }
        .footer-brand p { font-size: 0.95rem; max-width: 24rem; margin-top: 0.75rem; }
        .footer h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--white); margin-bottom: var(--s-2); letter-spacing: 0.03em; }
        .footer-links a { display: block; color: var(--ink-200); padding: 0.3rem 0; font-size: 0.95rem; }
        .footer-links a:hover { color: var(--gold-300); }
        .social { display: flex; gap: 0.6rem; }
        .social a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line-strong); color: var(--ink-200); transition: all var(--t); }
        .social a:hover { color: var(--gold-300); border-color: var(--gold-400); transform: translateY(-3px); }
        .social svg { width: 20px; height: 20px; }
        .footer-bottom { margin-top: var(--s-6); padding-top: var(--s-3); border-top: 1px solid var(--line); text-align: center; color: var(--ink-300); font-size: 0.88rem; }

        /* ---------- Reveal animation ---------- */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
        .reveal.in { opacity: 1; transform: none; }

        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
            .reveal { opacity: 1; transform: none; }
        }

/* =====================================================================
   SUBPAGE COMPONENTS (shared) — appended to the index design system
   ===================================================================== */

/* ---------- Page hero (compact, for subpages) ---------- */
.page-hero { position: relative; padding: var(--s-8) 0 var(--s-6); }
@media (min-width: 768px) { .page-hero { padding: var(--s-12) 0 var(--s-8); } }
.page-hero h1 { font-size: clamp(2.3rem, 5.5vw, 4rem); margin: var(--s-3) 0 0.5rem; }
.page-hero .tagline { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.1rem, 2.4vw, 1.6rem); margin-bottom: var(--s-3); }
.page-hero .lead { font-size: 1.1rem; max-width: 40rem; }
.page-hero-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
@media (min-width: 1024px) { .page-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-8); } }

/* satisfaction badge reuse of float-widget */
.float-widget.stars-badge { top: -18px; left: 8px; right: auto; }
.float-widget .stars { display: flex; gap: 2px; color: var(--gold-300); }
.float-widget .stars svg { width: 15px; height: 15px; fill: currentColor; }

/* ---------- Profile / founder ---------- */
.profile-block { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: start; }
@media (min-width: 900px) { .profile-block { grid-template-columns: 320px 1fr; gap: var(--s-8); } }
.profile-photo-card { position: relative; }
.profile-photo-card img {
    width: 100%; border-radius: var(--radius-lg);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-card);
}
.profile-name-card {
    margin-top: var(--s-3);
    padding: var(--s-3);
    text-align: center;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--glass);
}
.profile-name-card h3 { font-size: 1.4rem; }
.profile-name-card p { color: var(--gold-300); font-weight: 600; margin: 0; }
.profile-badge {
    position: absolute; z-index: 3;
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
    padding: 0.4rem 0.85rem; border-radius: 999px;
    background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
    color: var(--navy-950); box-shadow: var(--shadow-glow-gold);
}
.profile-badge svg { width: 15px; height: 15px; }
.profile-badge.tl { top: 14px; left: -10px; }
.profile-badge.br { bottom: 90px; right: -10px; background: var(--navy-800); color: var(--white); border: 1px solid var(--line-strong); box-shadow: var(--shadow-card); }
.profile-badge.br svg { color: var(--gold-300); }

/* ---------- Timeline (accordion) ---------- */
.timeline { display: grid; gap: var(--s-2); margin-top: var(--s-4); }
.timeline-step {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--glass);
    overflow: hidden;
    transition: border-color var(--t), background var(--t);
}
.timeline-step.open { border-color: rgba(224, 177, 94, 0.4); background: var(--glass-2); }
.timeline-head {
    display: flex; align-items: center; gap: 0.9rem;
    width: 100%; text-align: left;
    padding: var(--s-3);
    background: transparent; border: none; color: var(--white);
}
.timeline-num {
    width: 40px; height: 40px; flex-shrink: 0;
    display: grid; place-items: center; border-radius: 12px;
    background: rgba(224, 177, 94, 0.14); color: var(--gold-300);
    border: 1px solid rgba(224, 177, 94, 0.28);
}
.timeline-num svg { width: 20px; height: 20px; }
.timeline-title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; line-height: 1.25; flex: 1; color: var(--white); }
.timeline-arrow { width: 20px; height: 20px; color: var(--ink-300); transition: transform var(--t); flex-shrink: 0; }
.timeline-step.open .timeline-arrow { transform: rotate(180deg); }
.timeline-body { max-height: 0; overflow: hidden; transition: max-height 300ms var(--ease); }
.timeline-step.open .timeline-body { max-height: 420px; }
.timeline-body p { padding: 0 var(--s-3) var(--s-3) calc(40px + 0.9rem + var(--s-3)); color: var(--ink-200); margin: 0; }

/* ---------- Team hierarchy ---------- */
.team-tree { display: grid; gap: var(--s-4); }
.team-row { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); }
.team-card {
    width: 170px; padding: var(--s-3) var(--s-2);
    text-align: center; border-radius: var(--radius-md);
    border: 1px solid var(--line); background: var(--glass);
    transition: transform var(--t), border-color var(--t);
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(224, 177, 94, 0.4); }
.team-card .ta { width: 84px; height: 84px; margin: 0 auto var(--s-2); border-radius: 50%; overflow: hidden; border: 2px solid var(--gold-400); }
.team-card .ta img { width: 100%; height: 100%; object-fit: cover; }
.team-card .ta-empty {
    width: 84px; height: 84px; margin: 0 auto var(--s-2); border-radius: 50%;
    display: grid; place-items: center; text-align: center;
    border: 2px dashed var(--line-strong); color: var(--ink-300);
    font-size: 0.62rem; line-height: 1.2;
}
.team-card h3 { font-size: 1.02rem; }
.team-card .role { color: var(--gold-300); font-size: 0.85rem; font-weight: 600; }
.team-card.lead { width: 210px; }
.team-card.lead .ta { width: 110px; height: 110px; }

/* ---------- Funnel (career application) ---------- */
.funnel { max-width: 680px; margin: 0 auto; }
.funnel-card {
    position: relative; overflow: hidden;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: var(--glass);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-card);
}
.funnel-progress { height: 6px; border-radius: 999px; background: rgba(255,255,255,.08); overflow: hidden; margin-bottom: var(--s-4); }
.funnel-progress > span { display: block; height: 100%; width: 16.66%; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); transition: width 300ms var(--ease); }
.funnel-step { display: none; animation: fadeStep 300ms var(--ease); }
.funnel-step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(10px); } }
.funnel-step .q-eyebrow { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); font-family: var(--font-display); font-weight: 600; }
.funnel-step h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin: 0.4rem 0 var(--s-3); }
.funnel-field { margin-bottom: var(--s-3); }
.funnel-input {
    width: 100%; background: rgba(0,0,0,.25);
    border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    padding: 0.95rem 1rem; color: var(--white); font-family: inherit; font-size: 1rem;
    transition: border-color var(--t), box-shadow var(--t);
}
textarea.funnel-input { min-height: 110px; resize: vertical; }
.funnel-input:focus { outline: none; border-color: var(--gold-400); box-shadow: 0 0 0 3px rgba(224,177,94,.18); }
.funnel-input::placeholder { color: var(--ink-300); }
.option-grid { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
@media (min-width: 560px) { .option-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.option-pill {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1rem; cursor: pointer;
    border: 1px solid var(--line-strong); border-radius: var(--radius-sm);
    background: rgba(0,0,0,.2); color: var(--ink-100);
    transition: all var(--t); font-size: 0.97rem;
}
.option-pill:hover { border-color: var(--gold-400); }
.option-pill.selected { border-color: var(--gold-400); background: rgba(224,177,94,.12); color: var(--white); }
.option-pill svg { width: 18px; height: 18px; color: var(--gold-300); }
.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-pill { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; border: 1px solid var(--line-strong); border-radius: 999px; cursor: pointer; transition: all var(--t); }
.radio-pill:hover { border-color: var(--gold-400); }
.radio-pill input { accent-color: var(--gold-500); width: 1.05rem; height: 1.05rem; }
.radio-pill.selected { border-color: var(--gold-400); background: rgba(224,177,94,.12); }
.file-drop { position: relative; display: flex; align-items: center; gap: 0.6rem; padding: 0.95rem 1rem; border: 1px dashed var(--line-strong); border-radius: var(--radius-sm); color: var(--ink-200); cursor: pointer; }
.file-drop svg { width: 20px; height: 20px; color: var(--gold-300); }
.file-drop input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.funnel-nav { display: flex; justify-content: space-between; gap: 0.75rem; margin-top: var(--s-4); }
.funnel-success { display: none; text-align: center; padding: var(--s-4) 0; }
.funnel-success.show { display: block; }
.funnel-success .ok-ring { width: 76px; height: 76px; margin: 0 auto var(--s-3); border-radius: 50%; display: grid; place-items: center; background: rgba(52,211,153,.14); color: var(--ok); border: 1px solid rgba(52,211,153,.35); }
.funnel-success .ok-ring svg { width: 38px; height: 38px; }

/* ---------- Legal pages (Impressum / Datenschutz) — light document on dark ---------- */
.legal { padding: var(--s-8) 0; }
@media (min-width: 768px) { .legal { padding: var(--s-12) 0; } }
.legal-title { text-align: center; margin-bottom: var(--s-6); }
.legal-title h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.legal-title .gold-text { display: inline; }
.legal-title p { color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-display); font-weight: 600; font-size: 0.85rem; margin-top: 0.5rem; }
.legal-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 900px) { .legal-layout { grid-template-columns: 240px 1fr; gap: var(--s-6); align-items: start; } }
.legal-toc { display: none; }
@media (min-width: 900px) {
    .legal-toc { display: block; position: sticky; top: 90px; }
    .legal-toc .toc-title { font-family: var(--font-display); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-300); margin-bottom: var(--s-2); }
    .legal-toc a { display: flex; align-items: center; gap: 0.6rem; padding: 0.55rem 0.7rem; border-radius: 10px; color: var(--ink-200); font-size: 0.92rem; }
    .legal-toc a:hover, .legal-toc a.active { background: var(--glass); color: var(--white); }
    .legal-toc .n { font-family: var(--font-display); font-weight: 700; color: var(--gold-400); font-size: 0.8rem; }
}
.legal-card {
    background: #ffffff;
    color: #1f2937;
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255,255,255,.08);
    margin-bottom: var(--s-4);
    position: relative;
    overflow: hidden;
}
.legal-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy-700), var(--gold-500)); }
.legal-card h2 { color: var(--navy-900); font-size: 1.5rem; margin-bottom: var(--s-2); }
.legal-block { margin-bottom: var(--s-3); }
.legal-block:last-child { margin-bottom: 0; }
.legal-block-title { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--navy-900); margin-bottom: 0.6rem; padding-bottom: 0.4rem; border-bottom: 2px solid rgba(197,160,89,.25); }
.legal-block-title svg { width: 20px; height: 20px; color: var(--gold-600); }
.legal-block p { color: #374151; line-height: 1.7; margin-bottom: 0.7rem; }
.legal-block a { color: var(--navy-700); font-weight: 600; text-decoration: underline; }
.legal-block a:hover { color: var(--gold-600); }
.legal-meta { text-align: center; color: var(--ink-300); font-size: 0.85rem; margin-top: var(--s-4); }

@keyframes shake { 10%,90%{transform:translateX(-1px);} 30%,70%{transform:translateX(3px);} 50%{transform:translateX(-5px);} }
.funnel-step.shake { animation: shake 380ms ease; }
.step-hint { display:none; color: var(--danger); font-size: 0.88rem; margin-top: 0.5rem; }

/* =====================================================================
   LEGACY COMPAT — lets verbatim original legal content render on-theme
   ===================================================================== */
:root {
    --color-primary: var(--navy-900);
    --color-primary-light: var(--navy-700);
    --color-secondary: var(--gold-500);
    --color-white: #ffffff;
    --color-black: #0b1320;
    --color-gray-100: #f3f5f8;
    --color-gray-200: #e4e8ee;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-800: #1f2937;
    --font-heading: var(--font-display);
    --radius-lg: 20px;
    --shadow-md: 0 8px 24px -10px rgba(0,0,0,.5);
    --shadow-lg: var(--shadow-card);
    --transition: all .24s var(--ease);
}
.reveal.active { opacity: 1 !important; transform: none !important; }

/* Datenschutz (verbatim original markup) */
.datenschutz { padding: var(--s-8) 0; }
@media (min-width: 768px){ .datenschutz { padding: var(--s-12) 0; } }
.datenschutz-layout { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 900px){ .datenschutz-layout { grid-template-columns: 250px 1fr; gap: var(--s-6); align-items: start; } }
.datenschutz-sidebar { display: none; }
@media (min-width: 900px){ .datenschutz-sidebar { display: block; } }
.sidebar-sticky { position: sticky; top: 90px; padding: var(--s-3); border:1px solid var(--line); border-radius: var(--radius-md); background: var(--glass); }
.sidebar-title { font-family: var(--font-display); font-size: .78rem; letter-spacing:.12em; text-transform:uppercase; color: var(--gold-300); margin-bottom: var(--s-2); }
.sidebar-nav { display: grid; gap: 0.25rem; }
.sidebar-link { display:flex; align-items:center; gap:.6rem; padding:.55rem .6rem; border-radius:10px; color: var(--ink-200); }
.sidebar-link:hover, .sidebar-link.active { background: var(--glass-2); color: var(--white); }
.sidebar-link .step-num { font-family: var(--font-display); font-weight:700; color: var(--gold-400); font-size:.8rem; }
.sidebar-link .step-text { font-size:.9rem; }
.datenschutz-main { display: grid; gap: var(--s-4); }
.datenschutz-card, .impressum-content, .contact-box.datenschutz-card {
    background:#fff !important; color:#1f2937; border-radius: var(--radius-lg);
    padding: clamp(1.5rem,4vw,2.5rem) !important; box-shadow: var(--shadow-card);
    border:1px solid rgba(255,255,255,.08); position:relative; overflow:hidden; max-width:100%;
}
.datenschutz-card::before { content:""; position:absolute; top:0; left:0; right:0; height:4px; background: linear-gradient(90deg, var(--navy-700), var(--gold-500)); }
.datenschutz-card-header h2 { color: var(--navy-900); font-size:1.5rem; margin-bottom: var(--s-2); }
.datenschutz-section { margin-bottom: var(--s-3); }
.datenschutz-section:last-child { margin-bottom:0; }
.datenschutz-section-title { display:flex; align-items:center; gap:.6rem; font-family: var(--font-display); font-weight:700; font-size:1.08rem; color: var(--navy-900); margin-bottom:.5rem; padding-bottom:.4rem; border-bottom:2px solid rgba(197,160,89,.25); }
.datenschutz-section-title i, .datenschutz-section-title svg { width:20px; height:20px; color: var(--gold-600); }
.datenschutz-section p { color:#374151; line-height:1.7; margin-bottom:.7rem; }
.datenschutz-section a, .datenschutz-card a { color: var(--navy-700); font-weight:600; text-decoration:underline; }
.datenschutz-card .card-glow { display:none !important; }

/* =====================================================================
   SCROLL-DRIVEN 3D MORPH — continuous, JS-driven (.s3d-on on <body>)
   ===================================================================== */
.s3d-on .reveal {
    opacity: 0;
    transform: perspective(1100px) translate3d(0, 64px, -150px) rotateX(13deg);
    transition: none;                 /* JS drives every frame */
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform-origin: 50% 100%;
}
/* keep heavy showcase visuals from clipping their 3D depth */
.hero-card-stack, .split-visual, .portal-wrap, .gallery-grid, .browser { transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
    .s3d-on .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Featured partner success statement (applicant social proof) ---------- */
.testi-highlight {
    position: relative;
    margin-bottom: var(--s-3);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(224, 177, 94, 0.38);
    background:
        radial-gradient(600px 240px at 0% 0%, rgba(224, 177, 94, 0.16), transparent 70%),
        var(--glass-2);
    box-shadow: var(--shadow-card);
}
.testi-highlight .th-label {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-family: var(--font-display); font-weight: 600;
    font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gold-300); margin-bottom: var(--s-2);
}
.testi-highlight .th-label svg { width: 16px; height: 16px; }
.testi-highlight blockquote {
    font-family: var(--font-display); font-weight: 600;
    font-size: clamp(1.25rem, 2.6vw, 1.7rem); line-height: 1.3;
    color: var(--white); margin-bottom: var(--s-3); letter-spacing: -0.01em;
}
.testi-highlight .th-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-highlight .th-author .name { font-weight: 600; color: var(--white); }
.testi-highlight .th-author .role { color: var(--ink-300); font-size: 0.9rem; }

/* ---------- Stufen-Label in Feature-Cards (Aufstiegs-Leiter) ---------- */
.feature-card .q-eyebrow {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-300);
    margin-bottom: 0.25rem;
}

/* ---------- Benefits grid (5 cards, balanced 3+2 centered) ---------- */
.benefits-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s-3); }
.benefits-grid > .feature-card { flex: 1 1 300px; max-width: 380px; }
@media (max-width: 639px) { .benefits-grid > .feature-card { flex-basis: 100%; max-width: none; } }

/* =====================================================================
   ✦ PREMIUM SECTION FX — Stats · Feature-Grid · Galerie · Kontakt
   ===================================================================== */

/* ── Stat-Karten: Glanz-Zahl + Hover-Lift + Akzentlinie ── */
.stat { position: relative; overflow: hidden;
    transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t); }
.stat::before {
    content: ""; position: absolute; top: 0; left: 50%;
    width: 64%; height: 2px; transform: translateX(-50%) scaleX(0); transform-origin: center;
    background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
    transition: transform 420ms var(--ease);
}
.stat:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 177, 94, 0.42); background: var(--glass-2);
    box-shadow: 0 20px 52px -26px rgba(0, 0, 0, 0.85), 0 0 32px -10px rgba(224, 177, 94, 0.28);
}
.stat:hover::before { transform: translateX(-50%) scaleX(1); }
.stat .num {
    background: linear-gradient(100deg, var(--gold-300) 10%, #fff 45%, var(--gold-300) 75%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    animation: numShine 6s linear infinite;
}
@keyframes numShine { to { background-position: -220% 0; } }

/* ── Feature-Karten: Licht-Sheen + Glow + animiertes Icon ── */
.feature-card::after {
    content: ""; position: absolute; top: 0; left: -80%;
    width: 55%; height: 100%; pointer-events: none;
    background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.14), transparent);
    transform: skewX(-18deg); transition: left 750ms var(--ease);
}
.feature-card:hover::after { left: 135%; }
.feature-card:hover {
    box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.88), 0 0 38px -12px rgba(224, 177, 94, 0.32);
}
.feature-card .ico { transition: transform 420ms var(--ease), box-shadow 420ms var(--ease); }
.feature-card:hover .ico {
    transform: translateY(-3px) rotate(-6deg) scale(1.08);
    box-shadow: 0 0 26px -4px rgba(224, 177, 94, 0.55);
}

/* ── Galerie: Lift + Glow, Bildschwenk, Caption gleitet ein ── */
.gallery-item {
    transition: transform 520ms var(--ease), border-color 520ms var(--ease), box-shadow 520ms var(--ease);
}
.gallery-item:hover {
    transform: translateY(-6px);
    border-color: rgba(224, 177, 94, 0.45);
    box-shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.88), 0 0 42px -14px rgba(224, 177, 94, 0.30);
}
.gallery-item .gi-overlay { transition: background 450ms var(--ease); }
.gallery-item:hover .gi-overlay {
    background: linear-gradient(180deg, rgba(6, 13, 26, 0.05) 8%, rgba(6, 13, 26, 0.94));
}
/* Caption-Slide nur dort, wo es echtes Hover gibt (Touch behält sichtbare Captions) */
@media (hover: hover) and (pointer: fine) {
    .gallery-item .gi-overlay h3, .gallery-item .gi-overlay p {
        transform: translateY(16px); opacity: 0;
        transition: transform 460ms var(--ease), opacity 460ms var(--ease);
    }
    .gallery-item .gi-overlay p { transition-delay: 70ms; }
    .gallery-item:hover .gi-overlay h3, .gallery-item:hover .gi-overlay p {
        transform: translateY(0); opacity: 1;
    }
}

/* ── Kontakt: fließende Gold-Kante, satteres Focus-Glow, Karten-Hover ── */
.form-card { position: relative; }
.form-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, var(--navy-700), var(--gold-400), var(--gold-300), var(--navy-700));
    background-size: 220% 100%;
    animation: edgeFlow 6s linear infinite;
}
@keyframes edgeFlow { to { background-position: 220% 0; } }
.input-wrap input:focus, .input-wrap textarea:focus {
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 0 0 3px rgba(224, 177, 94, 0.18), 0 0 24px -6px rgba(224, 177, 94, 0.40);
}
.contact-card { transition: transform var(--t), border-color var(--t), background var(--t), box-shadow var(--t); }
.contact-card:hover { box-shadow: 0 0 30px -10px rgba(224, 177, 94, 0.30); }
.contact-card .cc-ico { transition: transform 320ms var(--ease); }
.contact-card:hover .cc-ico { transform: scale(1.12) rotate(-6deg); }

/* ── Reduced-Motion: Dauer-Animationen aus, Hover/Transitions bleiben dezent ── */
@media (prefers-reduced-motion: reduce) {
    .stat .num {
        animation: none;
        -webkit-text-fill-color: var(--gold-300); color: var(--gold-300);
    }
    .form-card::before { animation: none; }
}
