        :root {
            --hero-dark: #0e141c;
            --hero-mid: #354b5f;
            --hero-light: #30557d;
            --accent: #5a9fd4;
            --accent-dark: #3d7eb0;
            --accent-bright: #7eb3d9;
            --cta-green: #84bd00;
            --cta-green-dark: #6fa300;
            --earn: #059669;
            --earn-soft: #d1fae5;
            --bg: #f0f3f6;
            --surface: #ffffff;
            --text: #121820;
            --muted: #5a6b7c;
            --border: #d4dce5;
            --shadow: 0 24px 60px rgba(14, 20, 28, 0.12);
            --radius: 14px;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }

        body {
            font-family: "Inter", system-ui, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* Kein versehentliches horizontales Scrollen; Seite nutzt volle Breite */
        html {
            overflow-x: hidden;
        }
        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }
        img, svg, video, canvas, iframe {
            max-width: 100%;
        }
        p, h1, h2, h3, h4, h5, li, a, span, strong, td, th, dd, dt {
            overflow-wrap: break-word;
        }
        .btn { white-space: nowrap; }

        .container {
            max-width: 1140px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Header: zwei Instanzen, leichte Opacity/Top-Animation (kein backdrop-filter) */
        .site-header {
            position: fixed;
            left: 0;
            right: 0;
            z-index: 100;
            height: 68px;
        }

        .site-header--hero {
            top: 0;
            opacity: 1;
            transition: opacity 0.28s ease;
            pointer-events: auto;
        }

        body.is-header-solid .site-header--hero {
            opacity: 0;
            pointer-events: none;
        }

        .site-header--solid {
            top: -68px;
            opacity: 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
            box-shadow: 0 8px 24px rgba(14, 20, 28, 0.08);
            transition: top 0.28s ease, opacity 0.28s ease;
            pointer-events: none;
        }

        body.is-header-solid .site-header--solid {
            top: 0;
            opacity: 1;
            pointer-events: auto;
        }

        .site-header--solid .logo {
            color: var(--hero-dark);
        }

        .site-header--solid nav a {
            color: var(--muted);
        }

        .site-header--solid nav a:hover {
            color: var(--accent);
        }

        .site-header--solid .btn-login {
            color: var(--text);
            border-color: var(--border);
            background: var(--surface);
        }

        .site-header--solid .btn-login:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(90, 159, 212, 0.08);
        }

        .site-header--solid .btn-outline {
            color: var(--text);
            border-color: var(--border);
            background: transparent;
        }

        .site-header--solid .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: rgba(90, 159, 212, 0.08);
        }

        .site-header--solid .btn-primary {
            color: #fff;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
        }

        .logo {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            line-height: 1;
            color: #fff;
        }

        .logo-mark {
            height: 32px;
            width: auto;
            display: block;
            overflow: visible;
        }

        .logo-mark .vl-stroke {
            fill: none;
            stroke: currentColor;
            stroke-width: 3.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .logo-mark .vl-accent-stroke {
            fill: none;
            stroke: var(--accent);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .logo-mark .vl-accent-fill {
            fill: var(--accent);
        }

        .logo-mark .vl-visit,
        .logo-mark .vl-tld {
            fill: currentColor;
        }

        .logo-mark .vl-lab {
            fill: var(--accent);
        }

        .footer-brand .logo {
            color: var(--hero-dark);
        }

        .logo-icon {
            display: none;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 1.75rem;
        }

        nav a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            font-size: 0.88rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        nav a:hover { color: #fff; }

        .nav-links a { margin-left: 12px; }

        .nav-cta { display: flex; gap: 0.5rem; }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            padding: 0.65rem 1.2rem;
            border-radius: 8px;
            font-size: 0.88rem;
            font-weight: 600;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
            font-family: inherit;
        }

        .btn[hidden] { display: none; }

        .btn:hover { transform: translateY(-1px); }

        .btn:disabled,
        .btn[disabled] {
            opacity: 0.55;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .btn-primary {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 16px rgba(90, 159, 212, 0.35);
        }

        .btn-primary:hover { background: var(--accent-dark); }

        .btn-earn {
            background: var(--cta-green);
            color: #fff;
            box-shadow: 0 4px 16px rgba(132, 189, 0, 0.35);
        }

        .btn-earn:hover { background: var(--cta-green-dark); }

        .btn-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255,255,255,0.45);
        }

        .btn-outline:hover {
            border-color: #fff;
            background: rgba(255,255,255,0.08);
        }

        .btn-login {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.38);
        }

        .btn-login:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.16);
        }

        .btn-outline-dark {
            background: var(--surface);
            color: var(--text);
            border: 1px solid var(--border);
        }

        .btn-outline-dark:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-lg {
            padding: 0.9rem 1.6rem;
            font-size: 0.95rem;
            border-radius: 10px;
        }

        /* Hero */
        .hero-wrap {
            background: linear-gradient(180deg, var(--hero-dark) 0%, var(--hero-mid) 45%, var(--hero-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-wrap::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(90, 159, 212, 0.14), transparent 60%);
            pointer-events: none;
        }

        .hero {
            padding: 7rem 0 5rem;
            text-align: center;
            position: relative;
        }

        .hero-badge {
            display: inline-block;
            padding: 0.35rem 0.9rem;
            background: rgba(255,255,255,0.12);
            color: rgba(255,255,255,0.9);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 100px;
            font-size: 0.78rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            letter-spacing: 0.03em;
        }

        .hero h1,
        .hero .hero-headline {
            font-size: clamp(1.9rem, 4.2vw, 2.85rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
            max-width: 820px;
            margin: 0 auto 1rem;
            padding-top: 69px;
            padding-bottom: 69px;
            color: #fff;
        }

        .hero h1 em {
            font-style: normal;
            color: #fff;
        }

        .hero-flipboard {
            display: block;
            width: 100%;
        }
        .hero-flipboard.is-ready,
        .hero-headline-slider {
            position: relative;
            display: block;
            width: 100%;
            box-sizing: border-box;
        }
        .hero-slider-track {
            position: relative;
            width: 100%;
        }
        .hero-slider-slide {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            margin: 0;
            width: 100%;
            text-align: center;
            color: #fff;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: translateY(0.35rem);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease,
                visibility 0s linear 0.7s;
        }
        .hero-slider-slide.is-measure {
            position: relative;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transform: none;
            transition: none;
        }
        .hero-slider-slide.is-active {
            position: relative;
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(0);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease,
                visibility 0s linear 0s;
        }
        .hero-slider-slide.is-leaving {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-0.35rem);
            transition:
                opacity 0.7s ease,
                transform 0.7s ease,
                visibility 0s linear 0.7s;
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-slider-slide,
            .hero-slider-slide.is-active,
            .hero-slider-slide.is-leaving {
                transition: none;
                transform: none;
            }
        }

        .hero-slider-dots {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.45rem;
            margin-top: 1.1rem;
        }
        .hero-slider-dot {
            width: 0.55rem;
            height: 0.55rem;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.35);
            cursor: pointer;
            transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
        }
        .hero-slider-dot:hover {
            background: rgba(255, 255, 255, 0.6);
        }
        .hero-slider-dot.is-active {
            width: 1.15rem;
            background: #fff;
        }
        .hero-slider-dot:focus-visible {
            outline: 2px solid rgba(158, 200, 234, 0.95);
            outline-offset: 3px;
        }

        .hero-lead {
            font-size: 1.05rem;
            color: rgba(255,255,255,0.78);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-weight: 400;
        }

        .hero-cta-bar {
            display: flex;
            max-width: 560px;
            margin: 0 auto 1.5rem;
            background: #fff;
            border-radius: 50px;
            padding: 20px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.2);
            gap: 0.35rem;
        }

        .hero-cta-bar a {
            position: relative;
            flex: 1;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.45rem;
            border-radius: 50px;
            padding: 0.85rem 1.1rem;
            font-size: 0.92rem;
            font-weight: 600;
            text-decoration: none;
            text-align: center;
            color: #fff;
            overflow: hidden;
            isolation: isolate;
            transition: transform 0.18s ease, box-shadow 0.18s ease;
        }

        .hero-cta-bar a:hover { transform: scale(1.02); }

        .hero-cta-bar .cta-icon {
            position: relative;
            z-index: 1;
            display: inline-flex;
            width: 1.15em;
            height: 1.15em;
            flex-shrink: 0;
        }

        .hero-cta-bar .cta-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        .hero-cta-bar .cta-earn .cta-icon,
        .hero-cta-bar .cta-business .cta-icon {
            position: absolute;
            left: 1.1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1.6em;
            height: 1.6em;
        }

        .hero-cta-bar .cta-label {
            position: relative;
            z-index: 1;
        }

        /* Geld verdienen: cleaner Solid-Button */
        .hero-cta-bar .cta-earn {
            background: var(--earn);
        }

        .hero-cta-bar .cta-earn:hover {
            background: #047857;
        }

        /* Ranking verbessern: cleaner Solid-Button */
        .hero-cta-bar .cta-business {
            background: var(--accent);
        }

        .hero-cta-bar .cta-business:hover {
            background: var(--accent-dark);
        }

        .hero-cta {
            display: none;
        }

        /* Dashboard mockup */
        .dashboard-stage {
            position: relative;
            padding: 0 1.5rem 3rem;
            margin-top: -0.5rem;
        }

        .dashboard-glow {
            position: absolute;
            left: 50%;
            bottom: 10%;
            transform: translateX(-50%);
            width: 70%;
            height: 120px;
            background: radial-gradient(ellipse, rgba(48, 85, 125, 0.35), transparent 70%);
            filter: blur(30px);
            pointer-events: none;
        }

        .dashboard-window {
            max-width: 900px;
            margin: 0 auto;
            background: var(--surface);
            border-radius: 8px;
            border: 1px solid rgba(0, 0, 0, 0.08);
            box-shadow:
                0 2px 4px rgba(0, 0, 0, 0.04),
                0 12px 32px rgba(14, 20, 28, 0.22);
            transform: perspective(1200px) rotateX(2deg);
            overflow: hidden;
        }

        .dashboard-titlebar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 32px;
            padding-left: 12px;
            background: linear-gradient(180deg, #fafafa 0%, #f3f3f3 100%);
            border-bottom: 1px solid #e5e5e5;
        }

        .win-titlebar-left {
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 0;
        }

        .win-app-icon {
            width: 16px;
            height: 16px;
            border-radius: 3px;
            background: linear-gradient(135deg, var(--accent), var(--accent-bright));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            overflow: hidden;
        }

        .win-app-icon svg {
            display: block;
        }

        .win-titlebar-title {
            font-size: 12px;
            font-weight: 400;
            color: #202020;
            letter-spacing: 0.01em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .win-titlebar-controls {
            display: flex;
            align-items: stretch;
            height: 32px;
            flex-shrink: 0;
        }

        .win-ctrl {
            width: 46px;
            height: 32px;
            border: none;
            margin: 0;
            padding: 0;
            background: transparent;
            cursor: pointer;
            position: relative;
        }

        .win-ctrl::before,
        .win-ctrl::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            pointer-events: none;
        }

        .win-ctrl-min::before {
            width: 10px;
            height: 1px;
            background: #202020;
            transform: translate(-50%, -50%);
        }

        .win-ctrl-max::before {
            width: 10px;
            height: 10px;
            border: 1px solid #202020;
            box-sizing: border-box;
            transform: translate(-50%, -50%);
        }

        .win-ctrl-close::before,
        .win-ctrl-close::after {
            width: 12px;
            height: 1px;
            background: #202020;
        }

        .win-ctrl-close::before {
            transform: translate(-50%, -50%) rotate(45deg);
        }

        .win-ctrl-close::after {
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .win-ctrl:hover {
            background: rgba(0, 0, 0, 0.04);
        }

        .win-ctrl-close:hover {
            background: #e81123;
        }

        .win-ctrl-close:hover::before,
        .win-ctrl-close:hover::after {
            background: #fff;
        }

        .dashboard-body {
            display: grid;
            grid-template-columns: 180px 1fr;
            min-height: 280px;
        }

        .dashboard-sidebar {
            background: #f8fafc;
            border-right: 1px solid var(--border);
            padding: 1rem 0;
        }

        .dashboard-sidebar div {
            padding: 0.5rem 1.25rem;
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 500;
        }

        .dashboard-sidebar div.active {
            background: #e4eef6;
            color: var(--accent);
            border-right: 2px solid var(--accent);
        }

        .dashboard-main {
            padding: 1.25rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            align-content: start;
        }

        .dash-card {
            background: #f8fafc;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 1rem;
        }

        .dash-card.wide { grid-column: span 2; }

        .dash-card label {
            display: block;
            font-size: 0.7rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0.35rem;
        }

        .dash-card .val {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
        }

        .dash-card .val small {
            font-size: 0.75rem;
            color: #e53e3e;
            font-weight: 600;
        }

        .dash-note {
            margin-top: 0.45rem;
            font-size: 0.72rem;
            line-height: 1.35;
            color: var(--muted);
        }

        .dash-bar {
            height: 6px;
            background: #e2e8f0;
            border-radius: 3px;
            margin-top: 0.5rem;
            overflow: hidden;
        }

        .dash-bar span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, var(--accent), var(--accent-bright));
            border-radius: 3px;
        }

        /* Feature pills */
        .feature-pills {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.6rem;
            padding: 2.5rem 1.5rem 3rem;
            background: var(--bg);
        }

        .pill {
            padding: 0.55rem 1.25rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            transition: transform 0.15s;
        }

        .pill:hover { transform: translateY(-2px); }
        .pill-blue { background: var(--accent); color: #fff; }
        .pill-purple { background: #ede9fe; color: #6d28d9; }
        .pill-green { background: #d1fae5; color: #047857; }
        .pill-pink { background: #fce7f3; color: #be185d; }
        .pill-cyan { background: #cffafe; color: #0e7490; }

        /* Sections */
        section { padding: 3rem 0; }

        .breadcrumb { display: block; padding: 1.5rem 0 0; }

        .breadcrumb + section { padding-top: 1.5rem; }

        .breadcrumb-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            margin: 0;
            padding: 0;
            font-size: 0.82rem;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted);
        }

        .breadcrumb-item:not(:first-child)::before {
            content: "/";
            color: var(--muted);
            opacity: 0.6;
        }

        .breadcrumb-item a {
            color: var(--muted);
            text-decoration: none;
        }

        .breadcrumb-item a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

        .breadcrumb-current {
            color: var(--text);
            font-weight: 600;
        }

        .section-label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent);
            margin-bottom: 0.6rem;
        }

        .section-title {
            font-size: clamp(1.6rem, 2.8vw, 2.1rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.03em;
            color: var(--text);
        }

        .section-desc {
            color: var(--muted);
            max-width: 560px;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }

        /* How it works */
        .how-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            overflow: visible;
            margin-top: 5.5rem;
        }

        .how-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            box-shadow: 0 4px 20px rgba(14, 20, 28, 0.06);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            overflow: visible;
        }

        .how-card.business { border-top: 3px solid var(--accent); }
        .how-card.earn { border-top: 3px solid var(--cta-green); }

        .how-card-mascot {
            position: absolute;
            left: 50%;
            bottom: 100%;
            transform: translateX(0%) translateY(-3px);
            width: 7.25rem;
            line-height: 0;
            pointer-events: none;
            z-index: 2;
        }

        .how-card-mascot img {
            display: block;
            width: 100%;
            height: auto;
        }

        .how-card h3 {
            font-size: 1.1rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 700;
        }

        .how-card .icon {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            margin-left: -4px;
        }

        .how-card.business .icon { background: #f0f3f6; }
        .how-card.earn .icon { background: #f0f3f6; }

        .how-steps {
            list-style: none;
            counter-reset: step;
            flex: 1;
            margin-bottom: 1.25rem;
        }

        .how-steps li {
            counter-increment: step;
            position: relative;
            padding-left: 39px;
            margin-bottom: 0.85rem;
            color: var(--muted);
            font-size: 0.9rem;
        }

        .how-steps li:last-child {
            margin-bottom: 0;
        }

        .how-steps li::before {
            content: counter(step);
            position: absolute;
            left: 0;
            top: 0;
            width: 1.6rem;
            height: 1.6rem;
            background: var(--bg);
            border-radius: 50%;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .how-steps li strong { color: var(--text); }

        .how-card > .btn {
            align-self: flex-start;
            margin-top: auto;
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            overflow: visible;
            margin-top: 5.5rem;
        }

        .price-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
            cursor: pointer;
            position: relative;
            overflow: visible;
        }

        .price-card-mascot {
            position: absolute;
            left: 50%;
            bottom: 100%;
            transform: translateX(-45%) translateY(-1px);
            width: 14rem;
            line-height: 0;
            pointer-events: none;
            z-index: 2;
        }

        .price-card-mascot img {
            display: block;
            width: 100%;
            height: auto;
        }

        .price-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .price-card:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .price-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--accent), var(--shadow);
        }

        .price-card.is-selected {
            border-color: #059669;
            box-shadow: 0 0 0 2px #059669, var(--shadow);
        }

        .price-card .badge {
            position: absolute;
            top: -9px;
            right: 1rem;
            background: var(--accent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.2rem 0.55rem;
            border-radius: 5px;
            text-transform: uppercase;
        }

        .price-card .badge[hidden] {
            display: none !important;
        }

        .price-card.is-selected .badge {
            background: #059669;
        }

        .price-card.is-selected [data-package-cta].btn-earn {
            background: #059669;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
        }

        .price-card.is-selected [data-package-cta].btn-earn:hover {
            background: #047857;
        }

        .price-card h3 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
            font-weight: 700;
        }

        .price-card .subtitle {
            font-size: 0.8rem;
            color: var(--muted);
            margin-bottom: 1rem;
            min-height: 2.4rem;
        }

        .price {
            font-size: 1.85rem;
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: var(--hero-dark);
        }

        .price span {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--muted);
        }

        .price-features {
            list-style: none;
            margin: 1.25rem 0;
            flex: 1;
        }

        .price-features li {
            font-size: 0.84rem;
            color: var(--muted);
            padding: 0.35rem 0;
            padding-left: 1.1rem;
            position: relative;
        }

        .price-feature-label {
            display: inline;
            color: var(--muted);
        }

        .price-feature-help {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1.05rem;
            height: 1.05rem;
            margin-left: 0.35rem;
            padding: 0;
            border: 1px solid var(--border);
            border-radius: 50%;
            background: var(--surface);
            color: var(--accent);
            font-family: inherit;
            font-size: 0.65rem;
            font-weight: 700;
            line-height: 1;
            cursor: pointer;
            vertical-align: middle;
            transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
        }

        .price-feature-help:hover {
            border-color: var(--accent);
            background: rgba(90, 159, 212, 0.12);
            transform: scale(1.08);
            box-shadow: 0 0 0 3px rgba(90, 159, 212, 0.15);
        }

        .price-feature-help:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .price-feature-help.is-active {
            border-color: var(--accent);
            background: var(--accent);
            color: #fff;
            animation: price-feature-help-pulse 0.55s ease-out;
        }

        @keyframes price-feature-help-pulse {
            0%, 100% { transform: scale(1); }
            40% { transform: scale(1.18); }
        }

        .price-features .price-avg {
            display: block;
            font-size: 0.75rem;
            color: var(--muted);
            opacity: 0.85;
            margin-top: 0.15rem;
        }

        .price-features li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.7rem;
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
        }

        .pricing-criteria {
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .pricing-criteria .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-criteria-list {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.55rem 0.7rem;
            margin: 0;
            padding: 0;
        }

        .pricing-criteria-list li {
            font-size: 0.84rem;
            color: var(--text);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 0.4rem 0.85rem;
        }

        .pricing-criteria.is-wave-active {
            animation: pricing-criteria-reveal 0.55s cubic-bezier(0.33, 1, 0.68, 1);
        }

        @keyframes pricing-criteria-reveal {
            0% { transform: translateY(0); }
            35% { transform: translateY(-3px); }
            100% { transform: translateY(0); }
        }

        .pricing-criteria-wave-target.is-waving {
            background-image: linear-gradient(
                90deg,
                var(--text) 0%,
                var(--text) 32%,
                var(--accent-dark) 44%,
                var(--accent) 50%,
                var(--accent-bright) 54%,
                var(--accent-dark) 60%,
                var(--text) 72%,
                var(--text) 100%
            );
            background-size: 280% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            -webkit-text-fill-color: transparent;
            animation: pricing-criteria-text-wave 1.45s cubic-bezier(0.33, 1, 0.68, 1) forwards;
        }

        .pricing-criteria-list .pricing-criteria-wave-target {
            display: inline-block;
        }

        @keyframes pricing-criteria-text-wave {
            0% { background-position: 115% 50%; }
            100% { background-position: -15% 50%; }
        }

        @media (prefers-reduced-motion: reduce) {
            .price-feature-help.is-active {
                animation: none;
            }

            .pricing-criteria.is-wave-active {
                animation: none;
            }

            .pricing-criteria-wave-target.is-waving {
                animation: none;
                background: none;
                color: var(--text);
                -webkit-text-fill-color: currentColor;
            }
        }

        .section-title--icon {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .brand-inline {
            font-weight: 700;
        }

        .brand-inline .brand-lab {
            color: var(--accent);
        }

        .section-title--icon .title-icon {
            display: inline-flex;
            width: 1.15em;
            height: 1.15em;
            flex-shrink: 0;
            color: #5a9fd4;
        }

        .section-title--icon .title-icon svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* Earn section */
        .earn-section {
            background: var(--surface);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .earn-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
            overflow: visible;
            margin-top: 5.5rem;
        }

        .earn-card {
            position: relative;
            overflow: visible;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            transition: box-shadow 0.2s;
        }

        .earn-card--featured {
            border-top: 3px solid var(--cta-green);
        }

        .earn-card-mascot {
            position: absolute;
            left: 50%;
            bottom: 100%;
            transform: translateX(0%) translateY(7px);
            width: 7.25rem;
            line-height: 0;
            pointer-events: none;
            z-index: 2;
        }

        .earn-card-mascot img {
            display: block;
            width: 100%;
            height: auto;
        }

        .earn-card:hover { box-shadow: 0 8px 24px rgba(14, 20, 28, 0.08); }

        .earn-card .amount {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--cta-green);
            margin-bottom: 0.4rem;
        }

        .earn-card h4 {
            font-size: 0.95rem;
            margin-bottom: 0.4rem;
            font-weight: 700;
        }

        .earn-card p {
            font-size: 0.85rem;
            color: var(--muted);
        }

        /* Rechenbeispiel */
        .earn-example-title {
            margin-top: 2.5rem;
            margin-bottom: 0;
        }

        .earn-example {
            margin-top: 1rem;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 1.5rem;
            align-items: center;
            background: linear-gradient(145deg, rgba(5, 150, 105, 0.08), rgba(48, 85, 125, 0.05));
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
        }

        .earn-example h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
        }

        .earn-example ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.55rem;
        }

        .earn-example li {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            font-size: 0.9rem;
            color: var(--muted);
            padding-bottom: 0.55rem;
            border-bottom: 1px dashed var(--border);
        }

        .earn-example li:last-child { border-bottom: none; padding-bottom: 0; }

        .earn-example li strong {
            color: var(--text);
            font-weight: 600;
            text-align: right;
        }

        .earn-example-results {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .earn-example-result {
            text-align: center;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem 1.25rem;
        }

        .earn-example-result .label {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--muted);
            margin-bottom: 0.4rem;
        }

        .earn-example-result .value {
            font-size: 2.1rem;
            font-weight: 700;
            color: var(--earn);
            line-height: 1.1;
        }

        .earn-example-result .note {
            font-size: 0.8rem;
            color: var(--muted);
            margin-top: 0.4rem;
        }

        @media (max-width: 640px) {
            .earn-example { grid-template-columns: 1fr; }
        }

        .earn-example-cta {
            margin-top: 1.5rem;
            display: flex;
            justify-content: center;
        }

        /* Business-Beispiel Teilvorschau */
        .biz-domain { color: var(--accent); }

        .biz-preview {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .biz-preview-badge {
            position: absolute;
            top: -0.75rem;
            right: 1.25rem;
            z-index: 3;
            background: var(--accent);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            box-shadow: 0 4px 12px rgba(90, 159, 212, 0.35);
        }

        .biz-preview .dashboard-window {
            max-height: 360px;
            overflow: hidden;
            transform: none;
        }

        .biz-preview-fade {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 170px;
            background: linear-gradient(180deg, rgba(240, 243, 246, 0) 0%, var(--bg) 92%);
            pointer-events: none;
            border-radius: 0 0 8px 8px;
        }

        .biz-preview-cta {
            text-align: center;
            margin-top: 1.5rem;
        }

        .biz-preview-cta p {
            color: var(--muted);
            font-size: 0.95rem;
            margin-bottom: 1rem;
        }

        .biz-bot-info {
            max-width: 760px;
            margin: 2.5rem auto 0;
            padding: 1.5rem 1.75rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 14px;
            text-align: left;
        }

        .biz-bot-info-title {
            margin: 0 0 0.6rem;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
        }

        .biz-bot-info p {
            margin: 0;
            color: var(--muted);
            line-height: 1.7;
        }

        /* Extras */
        .extras-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            overflow: visible;
            margin-top: 5.5rem;
        }

        .extra-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            box-shadow: 0 4px 20px rgba(14, 20, 28, 0.05);
            cursor: pointer;
            position: relative;
            overflow: visible;
            transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
        }

        .extra-card-mascot {
            position: absolute;
            left: 42%;
            bottom: 100%;
            transform: translateX(0%) translateY(1px);
            width: 12rem;
            line-height: 0;
            pointer-events: none;
            z-index: 2;
        }

        .extra-card-mascot img {
            display: block;
            width: 100%;
            height: auto;
        }

        .extra-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow);
            transform: translateY(-3px);
        }

        .extra-card:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .extra-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 0 2px var(--accent), var(--shadow);
        }

        .extra-card.is-selected {
            border-color: #059669;
            box-shadow: 0 0 0 2px #059669, var(--shadow);
        }

        .extra-card .badge {
            position: absolute;
            top: -9px;
            right: 1rem;
            background: var(--accent);
            color: #fff;
            font-size: 0.65rem;
            font-weight: 700;
            padding: 0.2rem 0.55rem;
            border-radius: 5px;
            text-transform: uppercase;
        }

        .extra-card .badge[hidden] {
            display: none !important;
        }

        .extra-card.is-selected .badge {
            background: #059669;
        }

        .extra-card.is-selected [data-extra-cta].btn-earn {
            background: #059669;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.35);
        }

        .extra-card.is-selected [data-extra-cta].btn-earn:hover {
            background: #047857;
        }

        .extra-card .price-tag {
            flex-shrink: 0;
            background: linear-gradient(135deg, #e4eef6, #d0e0ed);
            color: var(--accent-dark);
            padding: 0.7rem 0.9rem;
            border-radius: 10px;
            font-weight: 700;
            font-size: 1rem;
            text-align: center;
            min-width: 85px;
        }

        .extra-card h4 { margin-bottom: 0.4rem; font-weight: 700; }

        .extra-card p {
            font-size: 0.88rem;
            color: var(--muted);
            margin-bottom: 0.6rem;
        }

        .extra-card ul {
            list-style: none;
            font-size: 0.85rem;
            color: var(--muted);
        }

        .extra-card ul li {
            padding: 0.15rem 0;
            padding-left: 0.9rem;
            position: relative;
        }

        .extra-card ul li::before {
            content: "-";
            position: absolute;
            left: 0;
            color: var(--accent);
        }

        /* CTA Banner */
        .cta-banner {
            background: linear-gradient(135deg, var(--hero-dark), var(--hero-light));
            color: #fff;
            border-radius: 16px;
            padding: 3rem 2rem;
            text-align: center;
            margin: 1rem 0;
            box-shadow: var(--shadow);
        }

        .cta-banner h2 {
            font-size: clamp(1.5rem, 2.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 0.75rem;
            letter-spacing: -0.02em;
        }

        .cta-banner p {
            color: rgba(255,255,255,0.75);
            max-width: 520px;
            margin: 0 auto 1.75rem;
            font-size: 0.95rem;
        }

        .cta-banner .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 0;
        }

        .cta-banner .btn-outline {
            border-color: rgba(255,255,255,0.5);
            color: #fff;
        }

        .cta-banner .brand-chip {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: #fff;
            color: var(--hero-dark);
            padding: 6px 10px;
            border-radius: 8px;
            font-weight: 700;
            line-height: 1;
            letter-spacing: -0.02em;
            vertical-align: middle;
        }

        .cta-banner .brand-chip .brand-chip-mark {
            height: 1.25em;
            width: auto;
        }

        .cta-banner .brand-chip .brand-lab {
            color: var(--accent);
        }

        /* Sticky Social (Landing) */
        .social-float {
            position: fixed;
            right: 1.1rem;
            top: 50%;
            transform: translateY(-50%);
            z-index: 80;
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            background: rgba(14, 20, 28, 0.88);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 22px rgba(14, 20, 28, 0.28);
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
        }
        .social-float:hover {
            background: var(--hero-dark);
            border-color: var(--accent);
            color: var(--accent-bright);
            transform: translateY(-50%) scale(1.06);
        }
        .social-float:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }
        @media (max-width: 720px) {
            .social-float {
                top: auto;
                bottom: 1.15rem;
                right: 0.9rem;
                width: 44px;
                height: 44px;
                transform: none;
            }
            .social-float:hover {
                transform: scale(1.05);
            }
        }

        /* Footer */
        footer {
            padding: 2.5rem 0 1.5rem;
            background: var(--surface);
            border-top: 1px solid var(--border);
        }

        .footer-inner {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 2rem;
        }


        .footer-brand p {
            color: var(--muted);
            font-size: 0.88rem;
            max-width: 300px;
            margin-top: 0.6rem;
        }

        .footer-links {
            display: flex;
            gap: 2.5rem;
        }

        .footer-links div h5 {
            font-size: 0.72rem;
            text-transform: uppercase;
            letter-spacing: 0.07em;
            color: var(--muted);
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            display: block;
            color: var(--text);
            text-decoration: none;
            font-size: 0.88rem;
            padding: 0.15rem 0;
        }

        .footer-links a:hover { color: var(--accent); }

        .footer-bottom {
            margin-top: 2rem;
            padding-top: 1.25rem;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            font-size: 0.82rem;
            color: var(--muted);
        }

        /* Kontakt */
        .kontakt-wrap {
            max-width: 911px;
            margin: 0 auto;
            text-align: left;
        }

        .kontakt-intro {
            text-align: center;
            margin-bottom: 1.75rem;
        }

        .kontakt-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            box-shadow: 0 8px 30px rgba(14, 20, 28, 0.08);
        }

        #kontakt-captcha-step {
            overflow: hidden;
            max-height: 520px;
            transition: max-height 0.45s ease, margin 0.45s ease, padding 0.45s ease;
        }

        #kontakt-captcha-step.is-collapsed {
            max-height: 0;
            margin: 0;
            padding: 0;
            pointer-events: none;
        }

        .human-captcha {
            margin: 0;
            padding: 1.25rem;
            border-radius: 12px;
            border: 1px solid rgba(48, 85, 125, 0.28);
            background: linear-gradient(145deg, rgba(48, 85, 125, 0.08), rgba(14, 20, 28, 0.04));
            transform-origin: center center;
            transition:
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                border-color 0.35s ease,
                background 0.35s ease;
            will-change: opacity, transform;
        }

        .human-captcha.is-complete {
            border-color: rgba(5, 150, 105, 0.45);
            background: linear-gradient(145deg, rgba(5, 150, 105, 0.1), rgba(48, 85, 125, 0.06));
        }

        .human-captcha.is-dismissed {
            opacity: 0;
            transform: scale(0.82);
            pointer-events: none;
        }

        .human-captcha-head {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .human-captcha-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 2rem;
            height: 2rem;
            border-radius: 8px;
            background: rgba(90, 159, 212, 0.18);
            font-size: 1rem;
            flex-shrink: 0;
        }

        .human-captcha-instruction {
            margin: 0;
            color: var(--text);
            font-size: 0.92rem;
            line-height: 1.5;
        }

        .human-captcha-value {
            display: block;
            margin: 0 0 0.75rem;
            text-align: center;
            font-size: clamp(2rem, 7vw, 2.6rem);
            font-weight: 800;
            color: var(--hero-dark);
            letter-spacing: -0.03em;
        }

        .human-captcha-slider {
            --pct: 50%;
            width: 100%;
            height: 10px;
            margin: 0;
            appearance: none;
            border-radius: 999px;
            background: linear-gradient(90deg, var(--accent) var(--pct), #e2e8f0 var(--pct));
            outline: none;
            cursor: pointer;
        }

        .human-captcha-slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: linear-gradient(135deg, var(--accent), var(--accent-bright));
            box-shadow: 0 4px 12px rgba(90, 159, 212, 0.35);
        }

        .human-captcha-slider::-moz-range-thumb {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: linear-gradient(135deg, var(--accent), var(--accent-bright));
            box-shadow: 0 4px 12px rgba(90, 159, 212, 0.35);
        }

        .human-captcha-slider:disabled {
            opacity: 0.7;
            cursor: default;
        }

        .human-captcha-steps {
            display: flex;
            gap: 0.45rem;
            list-style: none;
            margin: 0.75rem 0 0;
            padding: 0;
            flex-wrap: wrap;
        }

        .human-captcha-step {
            min-width: 2rem;
            text-align: center;
            padding: 0.2rem 0.55rem;
            border-radius: 999px;
            font-size: 0.78rem;
            color: var(--muted);
            border: 1px dashed var(--border);
        }

        .human-captcha-step.is-active {
            color: var(--accent-dark);
            border-color: rgba(48, 85, 125, 0.45);
            background: rgba(48, 85, 125, 0.08);
        }

        .human-captcha-step.is-hit {
            color: var(--earn);
            border-style: solid;
            border-color: rgba(5, 150, 105, 0.45);
            background: rgba(5, 150, 105, 0.1);
        }

        .human-captcha-status {
            margin: 0.75rem 0 0;
            font-size: 0.82rem;
            color: var(--muted);
        }

        .human-captcha.is-complete .human-captcha-status {
            color: var(--earn);
        }

        .kontakt-captcha-error {
            margin: 0.75rem 0 0;
            font-size: 0.85rem;
            color: #dc2626;
        }

        #kontakt-form-host {
            overflow: hidden;
        }

        .contact-form {
            display: grid;
            gap: 1rem;
            opacity: 0;
            transform: scale(0.88);
            transform-origin: center top;
            transition:
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            will-change: opacity, transform;
        }

        .contact-form.is-visible {
            opacity: 1;
            transform: scale(1);
        }

        .contact-form-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 1rem;
        }

        .contact-form-grid.is-single {
            grid-template-columns: 1fr;
        }

        .form-field label {
            display: block;
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 0.35rem;
        }

        .form-field input,
        .form-field select,
        .form-field textarea {
            width: 100%;
            box-sizing: border-box;
            padding: 0.7rem 0.85rem;
            border: 1px solid var(--border);
            border-radius: 10px;
            font: inherit;
            color: var(--text);
            background: #fff;
        }

        .form-field textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-field input:focus,
        .form-field select:focus,
        .form-field textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(90, 159, 212, 0.18);
        }

        .form-hint {
            font-size: 0.78rem;
            color: var(--muted);
            margin-top: 0.25rem;
        }

        .form-actions {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 0.25rem;
        }

        .form-success {
            padding: 1rem 1.1rem;
            border-radius: 10px;
            background: var(--earn-soft);
            color: #047857;
            font-size: 0.92rem;
            font-weight: 600;
        }

        .form-error {
            padding: 0.85rem 1rem;
            border-radius: 10px;
            background: #fef2f2;
            color: #b91c1c;
            font-size: 0.88rem;
        }

        .hp-field {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }

        .footer-bottom a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-bottom a:hover {
            text-decoration: underline;
        }

        /* Auth modal */
        .auth-modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
        }

        .auth-modal[hidden] {
            display: none !important;
        }

        .auth-modal-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(14, 20, 28, 0.55);
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }

        .auth-modal-dialog {
            position: relative;
            width: min(100%, 440px);
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 24px 60px rgba(14, 20, 28, 0.28);
            padding: 1.75rem;
        }

        .auth-modal-close {
            position: absolute;
            top: 0.85rem;
            right: 0.85rem;
            width: 34px;
            height: 34px;
            border: none;
            border-radius: 8px;
            background: transparent;
            color: var(--muted);
            font-size: 1.35rem;
            line-height: 1;
            cursor: pointer;
        }

        .auth-modal-close:hover {
            background: var(--bg);
            color: var(--text);
        }

        .auth-modal-title {
            font-size: 1.25rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 0.35rem;
            color: var(--text);
            padding-right: 2rem;
        }

        .auth-modal-desc {
            color: var(--muted);
            font-size: 0.9rem;
            margin-bottom: 1.25rem;
        }

        .auth-type-select {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.65rem;
            margin-bottom: 1.25rem;
        }

        .auth-intent-select {
            grid-template-columns: 1fr;
        }

        .auth-intent-select .auth-type-option {
            text-align: left;
            padding: 1rem 1.05rem;
        }

        .auth-divider span {
            flex-shrink: 0;
        }

        .auth-type-option {
            border: 1.5px solid var(--border);
            border-radius: 12px;
            padding: 1rem 0.75rem;
            background: #fff;
            cursor: pointer;
            text-align: center;
            transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
            font-family: inherit;
        }

        .auth-type-option strong {
            display: block;
            font-size: 0.95rem;
            color: var(--text);
            margin-bottom: 0.2rem;
        }

        .auth-type-option span {
            font-size: 0.78rem;
            color: var(--muted);
        }

        .auth-type-option:hover {
            border-color: #b5c9db;
            background: #f5f8fb;
        }

        .auth-type-option.is-selected {
            border-color: var(--accent);
            background: #e8eef5;
            box-shadow: 0 0 0 3px rgba(90, 159, 212, 0.14);
        }

        .auth-type-badge {
            display: inline-block;
            margin-bottom: 1rem;
            padding: 0.3rem 0.7rem;
            border-radius: 999px;
            background: #e8eef5;
            color: var(--accent);
            font-size: 0.78rem;
            font-weight: 700;
        }

        .auth-agb-check {
            display: flex;
            align-items: flex-start;
            gap: 0.55rem;
            margin: 0.25rem 0 1rem;
            font-size: 0.85rem;
            line-height: 1.4;
            color: var(--text);
            cursor: pointer;
        }

        .auth-agb-check[hidden] {
            display: none !important;
        }

        .auth-feedback--inline {
            margin: -0.55rem 0 0.85rem;
            min-height: 0;
        }

        .auth-feedback--inline:empty {
            display: none;
        }

        .auth-agb-check input {
            margin-top: 0.15rem;
            width: 1.05rem;
            height: 1.05rem;
            flex-shrink: 0;
            accent-color: var(--accent);
            cursor: pointer;
        }

        .auth-agb-check a {
            color: var(--accent);
            font-weight: 600;
        }

        .auth-modal-actions {
            display: flex;
            gap: 0.65rem;
            flex-wrap: wrap;
        }

        .auth-modal-actions .btn {
            flex: 1;
            min-width: 120px;
        }

        .auth-divider {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin: 1.15rem 0;
            color: var(--muted);
            font-size: 0.8rem;
        }

        .auth-divider::before,
        .auth-divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: var(--border);
        }

        .btn-google {
            width: 100%;
            background: #fff;
            color: #3c4043;
            border: 1px solid #dadce0;
            box-shadow: none;
            font-weight: 500;
        }

        .btn-google:hover {
            background: #f8f9fa;
            border-color: #d2d4d7;
            box-shadow: 0 1px 3px rgba(60, 64, 67, 0.15);
        }

        .btn-google svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .btn-passkey {
            width: 100%;
            margin-top: 0.75rem;
            background: #e9eef5;
            color: #30557d;
            border: 1px solid #b5c5d6;
        }

        .btn-passkey:hover {
            background: #e0e9ff;
            border-color: #8aa3bc;
        }

        .auth-login-form {
            display: grid;
            gap: 0.85rem;
            margin-top: 0.85rem;
        }

        .auth-login-form[hidden] {
            display: none;
        }

        .auth-honeypot {
            position: absolute;
            left: -9999px;
            width: 1px;
            height: 1px;
            opacity: 0;
            pointer-events: none;
        }

        .auth-password-checks {
            list-style: none;
            margin: -0.25rem 0 0;
            padding: 0;
            display: grid;
            gap: 0.35rem;
        }

        .auth-password-checks[hidden] {
            display: none;
        }

        .auth-password-checks li,
        .auth-password-match {
            display: flex;
            align-items: center;
            gap: 0.45rem;
            margin: 0;
            font-size: 0.82rem;
            color: var(--muted);
            transition: color 0.15s ease;
        }

        .auth-check-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 1rem;
            height: 1rem;
            border-radius: 50%;
            border: 1.5px solid #c5d0db;
            flex-shrink: 0;
            color: transparent;
            font-size: 0.7rem;
            line-height: 1;
            transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
        }

        .auth-check-mark::before {
            content: '✓';
        }

        .auth-password-checks li.is-valid,
        .auth-password-match.is-valid {
            color: #15803d;
        }

        .auth-password-checks li.is-valid .auth-check-mark,
        .auth-password-match.is-valid .auth-check-mark {
            background: #16a34a;
            border-color: #16a34a;
            color: #fff;
        }

        .auth-mode-toggle {
            border: none;
            background: none;
            color: var(--muted);
            font: inherit;
            font-size: 0.85rem;
            cursor: pointer;
            padding: 0;
            text-align: left;
            text-decoration: underline;
        }

        .auth-mode-toggle:hover {
            color: var(--accent);
        }

        .auth-feedback {
            margin-top: 0.85rem;
            font-size: 0.85rem;
            color: var(--muted);
            min-height: 1.2em;
        }

        .auth-feedback.is-error {
            color: #b91c1c;
        }

        .auth-modal-step[hidden] {
            display: none !important;
        }

        .auth-back-link {
            margin-top: 1rem;
            border: none;
            background: none;
            color: var(--muted);
            font: inherit;
            font-size: 0.85rem;
            cursor: pointer;
            padding: 0;
            text-decoration: underline;
        }

        .auth-back-link:hover {
            color: var(--accent);
        }

        /* Mobile */
        @media (max-width: 900px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
                margin-top: 0;
            }
            .price-card--mascot {
                margin-top: 5.5rem;
            }
            .how-grid {
                grid-template-columns: 1fr;
                margin-top: 0;
            }
            .how-card.earn {
                margin-top: 5.5rem;
            }
            .earn-grid {
                grid-template-columns: 1fr;
                margin-top: 0;
            }
            .earn-card--featured {
                margin-top: 5.5rem;
            }
            .extras-grid {
                grid-template-columns: 1fr;
                margin-top: 0;
            }
            .extra-card--mascot {
                margin-top: 5.5rem;
            }
            nav .nav-links { display: none; }
            .dashboard-body { grid-template-columns: 1fr; }
            .dashboard-sidebar { display: none; }
            .dashboard-main { grid-template-columns: 1fr 1fr; }
            .dash-card.wide { grid-column: span 2; }
        }

        @media (max-width: 600px) {
            .pricing-grid { grid-template-columns: 1fr; }
            .header-inner { height: 60px; }
            .site-header { height: 60px; }
            .site-header--solid { top: -60px; }
            nav { gap: 0.6rem; }
            .nav-cta { gap: 0.4rem; }
            .nav-cta .btn { padding: 0.5rem 0.7rem; font-size: 0.8rem; }
            .logo-mark { height: 26px; }
            /* Sekundären Outline-CTA (Geld verdienen) ausblenden, Abmelden bleibt */
            #btn-nav-geld-verdienen, #btn-nav-geld-verdienen-solid { display: none; }
            .hero { padding-top: 5.5rem; }
            .hero-cta-bar { flex-direction: column; border-radius: 16px; }
            .hero-cta-bar a { border-radius: 12px; }
            .dashboard-main { grid-template-columns: 1fr; }
            .dash-card.wide { grid-column: span 1; }
            .feature-pills { gap: 0.4rem; }
            .pill { font-size: 0.78rem; padding: 0.45rem 0.9rem; }
            .contact-form-grid { grid-template-columns: 1fr; }
            .earn-example li { flex-direction: column; gap: 0.15rem; }
            .earn-example li strong { text-align: left; }
            .hero h1 { padding-top: 32px; padding-bottom: 32px; }
        }

        @media (max-width: 400px) {
            .container { padding: 0 1rem; }
            .dashboard-stage { padding-left: 1rem; padding-right: 1rem; }
        }

        /* ===== Statischer Solid-Header (Unterseiten) ===== */
        .site-header--static {
            position: sticky;
            top: 0;
            opacity: 1;
            pointer-events: auto;
        }

        /* ===== Unterseiten-Layout (Rechtstexte, Info-Seiten) ===== */
        .subpage-hero {
            background: linear-gradient(180deg, var(--hero-dark) 0%, var(--hero-mid) 65%, var(--hero-light) 100%);
            color: #fff;
            padding: 2.75rem 0 3.25rem;
        }
        .subpage-hero .back-link {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }
        .subpage-hero .back-link:hover { color: #fff; }
        .subpage-hero .eyebrow {
            font-size: 0.72rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--accent-bright);
            margin-bottom: 0.6rem;
        }
        .subpage-hero h1 {
            font-size: clamp(1.7rem, 3.5vw, 2.4rem);
            font-weight: 700;
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 0.75rem;
        }
        .subpage-hero p {
            color: rgba(255, 255, 255, 0.8);
            max-width: 640px;
            font-size: 1rem;
        }

        .subpage-body { padding: 3rem 0 4rem; }
        .subpage-body .container { max-width: 760px; }

        .prose { color: var(--text); line-height: 1.75; }
        .prose h2 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 2rem 0 0.5rem;
        }
        .prose h2:first-child { margin-top: 0; }
        .prose h3 {
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 1.4rem 0 0.4rem;
        }
        .prose p { color: var(--muted); margin-bottom: 1rem; }
        .prose ul { margin: 0 0 1rem 1.2rem; color: var(--muted); }
        .prose li { margin-bottom: 0.35rem; }
        .prose a { color: var(--accent); }
        .prose a:hover { color: var(--accent-dark); }
        .prose a.btn-primary,
        .prose a.btn-primary:hover {
            color: #fff;
        }
        .prose a.btn-outline-dark {
            color: var(--text);
        }
        .prose a.btn-outline-dark:hover {
            color: var(--accent);
        }
        .prose strong { color: var(--text); }
        .prose .lead { color: var(--muted); margin-bottom: 1.5rem; }
        .prose hr {
            border: 0;
            border-top: 1px solid var(--border);
            margin: 2.25rem 0;
        }
        .prose-note {
            font-size: 0.85rem;
            color: var(--muted);
            font-style: italic;
        }
        .prose .meta { margin-top: 2rem; color: var(--muted); font-size: 0.9rem; }

        .seo-related-links {
            columns: 2;
            gap: 1.5rem;
        }

        @media (max-width: 640px) {
            .seo-related-links {
                columns: 1;
            }
        }

        .info-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.75rem;
            box-shadow: 0 12px 40px rgba(14, 20, 28, 0.08);
            margin: 1.5rem 0;
        }

        .legal-reveal-wrap {
            display: inline-flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            vertical-align: baseline;
        }
        .legal-reveal-btn {
            border: 1px solid var(--border);
            background: #f8fafc;
            color: var(--text);
            border-radius: 8px;
            padding: 0.28rem 0.7rem;
            font: inherit;
            font-size: 0.88rem;
            font-weight: 600;
            cursor: pointer;
        }
        .legal-reveal-btn:hover:not(:disabled) {
            border-color: var(--accent);
            color: var(--accent);
        }
        .legal-reveal-btn:disabled { opacity: 0.65; cursor: wait; }
        .legal-reveal-value { font-weight: 600; }
        .legal-reveal-value[hidden] { display: none !important; }

        /* ===== Extras: SEO-Team-Hinweis + Bewerbungs-CTA ===== */
        .seo-team-info {
            margin-top: 1.5rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-left: 4px solid var(--accent);
            border-radius: var(--radius);
            padding: 1.75rem;
            box-shadow: 0 4px 20px rgba(14, 20, 28, 0.05);
        }
        .seo-team-info-head {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.85rem;
            flex-wrap: wrap;
        }
        .seo-team-badge {
            display: inline-block;
            padding: 0.3rem 0.75rem;
            border-radius: 999px;
            background: rgba(90, 159, 212, 0.14);
            color: var(--accent-dark);
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            white-space: nowrap;
        }
        .seo-team-info-head h3 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0;
        }
        .seo-team-info p { color: var(--muted); margin: 0; }
        .seo-team-info strong { color: var(--text); }

        .seo-jobs-cta {
            margin-top: 1.25rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
            background: linear-gradient(135deg, rgba(90, 159, 212, 0.12), rgba(90, 159, 212, 0.04));
            border: 1px solid rgba(90, 159, 212, 0.25);
            border-radius: var(--radius);
            padding: 1.5rem 1.75rem;
        }
        .seo-jobs-cta-text { min-width: 240px; flex: 1; }
        .seo-jobs-cta-text h3 {
            font-size: 1.2rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0 0 0.35rem;
        }
        .seo-jobs-cta-text p { color: var(--muted); margin: 0; }
        .seo-jobs-cta .btn { flex-shrink: 0; }

        @media (max-width: 560px) {
            .seo-jobs-cta { flex-direction: column; align-items: flex-start; }
            .seo-jobs-cta .btn { width: 100%; }
        }

        /* ===== Dashboard ===== */
        .dashboard-page {
            padding: 2.5rem 0 4rem;
            min-height: 60vh;
        }
        .btn-sm {
            padding: 0.5rem 0.9rem;
            font-size: 0.85rem;
        }
        .db-welcome {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .db-welcome-user {
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .db-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--border);
            flex-shrink: 0;
        }
        .db-avatar--fallback {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--hero-dark);
            color: #fff;
            font-weight: 700;
            font-size: 1.4rem;
        }
        .db-welcome-text h1 {
            font-size: 1.6rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin: 0.15rem 0 0.1rem;
        }
        .db-eyebrow { margin: 0; }
        .db-muted { color: var(--muted); margin: 0; font-size: 0.9rem; }
        .db-badge {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
        .db-badge--user {
            background: rgba(5, 150, 105, 0.12);
            color: #047857;
        }
        .db-badge--company {
            background: rgba(90, 159, 212, 0.15);
            color: var(--accent-dark);
        }
        .db-role-switch {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: 999px;
            padding: 0.3rem;
        }
        .db-role-switch-label {
            font-size: 0.8rem;
            color: var(--muted);
            padding: 0 0.4rem 0 0.55rem;
        }
        .db-role-btn {
            display: inline-flex;
            align-items: center;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--muted);
            text-decoration: none;
            transition: background 0.15s ease, color 0.15s ease;
        }
        .db-role-btn:hover { color: var(--text); }
        .db-role-btn.is-active {
            background: var(--hero-dark);
            color: #fff;
        }

        .db-hint {
            background: linear-gradient(135deg, rgba(90, 159, 212, 0.12), rgba(90, 159, 212, 0.04));
            border: 1px solid rgba(90, 159, 212, 0.25);
            border-radius: var(--radius);
            padding: 0.9rem 1.1rem;
            color: var(--muted);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1.25rem;
        }
        .db-hint-copy { flex: 1 1 16rem; }
        .db-camp-balance-hint {
            margin: 0 0 0.75rem;
            padding: 0.65rem 0.8rem;
            border-radius: 8px;
            font-size: 0.88rem;
            background: rgba(90, 159, 212, 0.08);
            border: 1px solid rgba(90, 159, 212, 0.2);
            color: var(--muted);
        }
        .db-camp-balance-hint.is-low {
            background: rgba(220, 38, 38, 0.08);
            border-color: rgba(220, 38, 38, 0.25);
            color: #b91c1c;
        }
        .db-camp-summary-charge {
            margin-top: 0.75rem;
            padding-top: 0.75rem;
            border-top: 1px solid var(--border);
        }
        .db-camp-fund-body p {
            margin: 0;
            color: var(--text);
            line-height: 1.5;
        }
        .db-camp-fund-facts {
            list-style: none;
            margin: 1rem 0 0;
            padding: 0;
            display: grid;
            gap: 0.45rem;
        }
        .db-camp-fund-facts li {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding: 0.65rem 0.75rem;
            border-radius: 10px;
            background: #f5f8fb;
            border: 1px solid var(--border);
            font-size: 0.92rem;
        }
        .db-camp-fund-facts strong {
            color: var(--text);
        }
        .db-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 1.75rem;
        }
        .db-card {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.25rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }
        .db-card-label {
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--muted);
        }
        .db-card-value {
            font-size: 1.75rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            color: var(--text);
        }
        .db-card-value small { font-size: 0.95rem; font-weight: 600; color: var(--muted); }
        .db-card-note { font-size: 0.75rem; color: var(--muted); }
        .db-payout-btn { margin-top: 0.5rem; align-self: flex-start; }
        .db-payout-btn:disabled { opacity: 0.55; cursor: not-allowed; }
        .db-panel {
            background: var(--surface);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            margin-bottom: 1.25rem;
        }
        .db-panel-head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }
        .db-panel-head h2 {
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: -0.01em;
            margin: 0;
        }
        .db-pill {
            display: inline-block;
            padding: 0.2rem 0.6rem;
            border-radius: 999px;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            background: var(--bg);
            color: var(--muted);
        }
        .db-empty {
            border: 1px dashed var(--border);
            border-radius: var(--radius);
            padding: 1.5rem;
            color: var(--muted);
            font-size: 0.9rem;
            text-align: center;
        }
        .db-datalist { margin: 0; display: grid; gap: 0.75rem; }
        .db-datarow {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px solid var(--border);
        }
        .db-datarow:last-child { border-bottom: 0; padding-bottom: 0; }
        .db-datarow dt { color: var(--muted); font-size: 0.9rem; margin: 0; }
        .db-datarow dd { margin: 0; font-weight: 600; text-align: right; word-break: break-word; }

        @media (max-width: 860px) {
            .db-grid { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 520px) {
            .db-grid { grid-template-columns: 1fr; }
            .db-welcome { flex-direction: column; align-items: flex-start; }
        }

        /* Dashboard: filters, jobs, gamification, wizard */
        .db-progress {
            height: 8px;
            background: var(--bg);
            border-radius: 999px;
            overflow: hidden;
            margin-top: 0.35rem;
        }
        .db-progress span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, var(--earn), var(--cta-green));
            border-radius: 999px;
            transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .db-card--game {
            background:
                linear-gradient(160deg, rgba(5, 150, 105, 0.06), transparent 55%),
                var(--surface);
        }
        .db-filters {
            display: flex;
            flex-wrap: wrap;
            gap: 0.45rem;
            margin-bottom: 1rem;
        }
        .db-filter {
            border: 1px solid var(--border);
            background: var(--bg);
            color: var(--muted);
            border-radius: 999px;
            padding: 0.4rem 0.85rem;
            font-size: 0.82rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.15s, color 0.15s, border-color 0.15s;
        }
        .db-filter:hover { color: var(--text); border-color: #b8c4d0; }
        .db-filter.is-active {
            background: var(--hero-dark);
            border-color: var(--hero-dark);
            color: #fff;
        }
        .db-job-list,
        .db-campaign-list {
            display: grid;
            gap: 0.75rem;
        }
        .db-job,
        .db-campaign {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 0.75rem 1rem;
            align-items: center;
            padding: 1rem 1.1rem;
            border: 1px solid var(--border);
            border-radius: 12px;
            background: var(--bg);
        }
        .db-job-meta,
        .db-campaign-meta { min-width: 0; }
        .db-job-title,
        .db-campaign-title {
            font-weight: 700;
            font-size: 0.98rem;
            margin: 0 0 0.2rem;
        }
        .db-job-sub,
        .db-campaign-sub {
            font-size: 0.82rem;
            color: var(--muted);
            margin: 0;
        }
        .db-tag {
            display: inline-block;
            margin-right: 0.35rem;
            padding: 0.12rem 0.45rem;
            border-radius: 999px;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }
        .db-tag--ranking { background: rgba(90, 159, 212, 0.16); color: var(--accent-dark); }
        .db-tag--feedback { background: rgba(132, 189, 0, 0.16); color: #4d7000; }
        .db-tag--ki { background: rgba(124, 58, 237, 0.12); color: #6d28d9; }
        .db-job-pay {
            font-weight: 700;
            color: var(--earn);
            font-size: 1.05rem;
            white-space: nowrap;
        }
        .db-refresh-note {
            margin: -0.25rem 0 1rem;
            font-size: 0.88rem;
            color: var(--muted);
            padding: 0.65rem 0.85rem;
            border-radius: 10px;
            background: rgba(90, 159, 212, 0.08);
            border: 1px solid rgba(90, 159, 212, 0.18);
        }
        .db-panel-intro {
            margin: 0 0 1rem;
            color: var(--muted);
            font-size: 0.92rem;
        }
        .db-account-actions {
            display: grid;
            gap: 1rem;
        }
        .db-account-row {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .db-account-row--danger {
            border-bottom: 0;
            padding-bottom: 0;
        }
        .db-account-copy {
            display: grid;
            gap: 0.25rem;
            max-width: 420px;
        }
        .db-account-copy strong {
            font-size: 0.95rem;
        }
        .db-account-copy span {
            font-size: 0.85rem;
            color: var(--muted);
        }
        .db-account-warn {
            color: #914444 !important;
            font-weight: 600;
            margin-top: 0.25rem;
        }
        .db-btn-danger {
            background: #a64f4f;
            color: #fff;
            border: 1px solid #a64f4f;
        }
        .db-btn-danger:hover {
            background: #914444;
            border-color: #914444;
            color: #fff;
        }
        .db-delete-box {
            margin-top: 0.35rem;
            padding: 1rem;
            border: 1px solid rgba(166, 79, 79, 0.28);
            background: rgba(166, 79, 79, 0.06);
            border-radius: 12px;
        }
        .db-delete-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .db-alert-form {
            display: grid;
            gap: 0.85rem;
            max-width: 420px;
        }
        .db-switch {
            display: inline-flex;
            align-items: center;
            gap: 0.55rem;
            font-weight: 600;
            font-size: 0.92rem;
            cursor: pointer;
        }
        .db-field {
            display: grid;
            gap: 0.35rem;
            font-size: 0.85rem;
            color: var(--muted);
            font-weight: 600;
        }
        .db-field select,
        .db-field input,
        .db-field textarea {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: 10px;
            padding: 0.65rem 0.8rem;
            font: inherit;
            color: var(--text);
            background: #fff;
        }
        .db-field textarea { min-height: 96px; resize: vertical; }

        .db-flow[hidden] { display: none !important; }
        .db-flow {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }
        .db-flow-backdrop {
            position: absolute;
            inset: 0;
            background: rgba(14, 20, 28, 0.55);
        }
        .db-flow-panel {
            position: relative;
            width: min(560px, 100%);
            max-height: min(92vh, 820px);
            overflow: auto;
            background: #fff;
            border-radius: 18px;
            box-shadow: 0 30px 80px rgba(14, 20, 28, 0.28);
            padding: 1.25rem 1.25rem 1.1rem;
            display: flex;
            flex-direction: column;
            gap: 0.85rem;
        }
        .db-flow-panel--wide { width: min(640px, 100%); }
        .db-flow-top {
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            align-items: flex-start;
        }
        .db-flow-type {
            margin: 0;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--muted);
        }
        .db-flow-top h2 {
            margin: 0.15rem 0 0;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }
        .db-flow-close {
            border: 0;
            background: var(--bg);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            font-size: 1.4rem;
            line-height: 1;
            cursor: pointer;
            color: var(--muted);
        }
        .db-flow-steps {
            display: flex;
            gap: 0.35rem;
        }
        .db-flow-dot {
            flex: 1;
            height: 4px;
            border-radius: 999px;
            background: var(--border);
            transition: background 0.2s;
        }
        .db-flow-dot.is-done,
        .db-flow-dot.is-current { background: var(--cta-green); }
        .db-flow-viewport {
            overflow: hidden;
            border-radius: 12px;
            border: 1px solid var(--border);
            background: var(--bg);
        }
        .db-flow-track {
            display: flex;
            transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: transform;
        }
        .db-flow-slide {
            flex: 0 0 100%;
            padding: 1.15rem 1.2rem 1.3rem;
            min-height: 220px;
            max-height: min(55vh, 420px);
            overflow-y: auto;
        }
        .db-flow-slide h3 {
            margin: 0 0 0.55rem;
            font-size: 1.05rem;
        }
        .db-flow-slide p {
            margin: 0 0 0.75rem;
            color: var(--muted);
            font-size: 0.92rem;
        }
        .db-flow-slide ul {
            margin: 0 0 0.75rem 1.1rem;
            color: var(--text);
            font-size: 0.9rem;
        }
        .db-flow-actions {
            display: flex;
            justify-content: space-between;
            gap: 0.55rem;
            flex-wrap: wrap;
        }
        .db-flow-actions .btn-outline {
            margin-right: auto;
            background: #fff;
            color: var(--text);
            border: 1.5px solid var(--border);
        }
        .db-flow-actions .btn-outline:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            background: rgba(90, 159, 212, 0.08);
        }
        .db-flow-slide--tall {
            max-height: min(62vh, 520px);
        }
        .db-copy-row {
            display: flex;
            align-items: center;
            gap: 0.65rem;
            margin: 0 0 0.75rem;
            padding: 0.65rem 0.75rem;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
        }
        .db-copy-row.is-flash {
            border-color: var(--cta-green);
            background: rgba(76, 175, 120, 0.1);
            box-shadow: 0 0 0 3px rgba(76, 175, 120, 0.18);
            animation: db-copy-pulse 0.55s ease;
        }
        @keyframes db-copy-pulse {
            0% { transform: scale(1); }
            40% { transform: scale(1.015); }
            100% { transform: scale(1); }
        }
        .db-copy-meta {
            flex: 1;
            min-width: 0;
        }
        .db-copy-label {
            display: block;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.02em;
            text-transform: uppercase;
            color: var(--muted);
            margin-bottom: 0.15rem;
        }
        .db-copy-value {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--text);
            word-break: break-word;
            line-height: 1.35;
        }
        .db-copy-btn {
            flex-shrink: 0;
            border: 1.5px solid var(--border);
            background: var(--bg);
            color: var(--text);
            border-radius: 8px;
            padding: 0.45rem 0.7rem;
            font-size: 0.8rem;
            font-weight: 700;
            cursor: pointer;
            transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
        }
        .db-copy-btn:hover {
            border-color: var(--accent);
            color: var(--accent-dark);
            background: rgba(90, 159, 212, 0.1);
        }
        .db-copy-btn.is-copied {
            border-color: var(--cta-green);
            background: var(--cta-green);
            color: #fff;
            transform: scale(1.04);
        }
        .db-snackbar {
            position: fixed;
            left: 50%;
            bottom: 1.35rem;
            z-index: 12000;
            max-width: min(92vw, 360px);
            padding: 0.75rem 1.1rem;
            border-radius: 10px;
            background: #1a2330;
            color: #fff;
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 10px 28px rgba(14, 20, 28, 0.28);
            opacity: 0;
            transform: translate(-50%, 12px);
            pointer-events: none;
            transition: opacity 0.22s ease, transform 0.22s ease;
        }
        .db-snackbar.is-show {
            opacity: 1;
            transform: translate(-50%, 0);
        }
        .db-fb-list {
            display: grid;
            gap: 0.65rem;
        }
        .db-fb-q {
            display: grid;
            gap: 0.45rem;
            padding: 0.7rem 0.75rem;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 10px;
        }
        .db-fb-q-text strong {
            display: block;
            font-size: 0.92rem;
        }
        .db-fb-q-text span {
            display: block;
            font-size: 0.78rem;
            color: var(--muted);
            font-weight: 500;
        }
        .db-fb-yn {
            display: flex;
            gap: 0.4rem;
        }
        .db-fb-yn-btn {
            flex: 1;
            border: 1px solid var(--border);
            background: var(--bg);
            border-radius: 8px;
            padding: 0.55rem 0.75rem;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            color: var(--muted);
        }
        .db-fb-yn-btn.is-selected[data-yn="ja"] {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }
        .db-fb-yn-btn.is-selected[data-yn="nein"] {
            background: #a64f4f;
            border-color: #a64f4f;
            color: #fff;
        }
        .db-fb-note { margin: 0; }
        .db-fb-note input {
            font-size: 0.88rem;
            padding: 0.5rem 0.7rem;
        }
        .db-choice-grid {
            display: grid;
            gap: 0.55rem;
        }
        .db-choice {
            text-align: left;
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 12px;
            padding: 0.85rem 1rem;
            cursor: pointer;
            font: inherit;
            transition: border-color 0.15s, box-shadow 0.15s;
        }
        .db-choice strong { display: block; margin-bottom: 0.15rem; }
        .db-choice span { color: var(--muted); font-size: 0.82rem; }
        .db-choice.is-selected {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(90, 159, 212, 0.2);
        }
        .db-pos-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.4rem;
            margin-top: 0.15rem;
            margin-bottom: 0.85rem;
        }
        .db-pos-none {
            width: 100%;
            display: block;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            font-weight: 600;
            background: #a64f4f;
            border-color: #a64f4f;
            color: #fff;
        }
        .db-pos-none:hover {
            background: #914444;
            border-color: #914444;
            color: #fff;
        }
        .db-pos-none.is-selected {
            box-shadow: 0 0 0 3px rgba(166, 79, 79, 0.35);
        }
        .db-pos-btn {
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 10px;
            padding: 0.65rem 0;
            font-weight: 700;
            cursor: pointer;
        }
        .db-pos-btn.is-selected {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
            box-shadow: 0 0 0 3px rgba(90, 159, 212, 0.28);
        }
        .db-success-box {
            background: var(--earn-soft);
            border: 1px solid rgba(5, 150, 105, 0.25);
            border-radius: 12px;
            padding: 1rem;
            color: #047857;
            font-weight: 600;
        }
        @media (max-width: 520px) {
            .db-job,
            .db-campaign {
                grid-template-columns: 1fr;
            }
            .db-pos-grid { grid-template-columns: repeat(5, 1fr); }
        }

        /* Landing: Scroll-Reveal + Hero-Entrance */
        .reveal {
            opacity: 0;
            transform: translate3d(0, 28px, 0);
            transition:
                opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }
        .reveal.is-inview {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
        .reveal-d1 { transition-delay: 0.07s; }
        .reveal-d2 { transition-delay: 0.14s; }
        .reveal-d3 { transition-delay: 0.21s; }
        .reveal-d4 { transition-delay: 0.28s; }
        .reveal-d5 { transition-delay: 0.35s; }

        .hero .hero-badge,
        .hero h1,
        .hero .hero-lead,
        .hero .hero-cta-bar,
        .hero .hero-cta {
            animation: hero-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
        }
        .hero h1 { animation-delay: 0.08s; }
        .hero .hero-lead { animation-delay: 0.16s; }
        .hero .hero-cta-bar { animation-delay: 0.24s; }
        .hero .hero-cta { animation-delay: 0.32s; }

        @keyframes hero-rise {
            from {
                opacity: 0;
                transform: translate3d(0, 22px, 0);
            }
            to {
                opacity: 1;
                transform: translate3d(0, 0, 0);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .reveal {
                opacity: 1;
                transform: none;
                transition: none;
            }
            .hero .hero-badge,
            .hero h1,
            .hero .hero-lead,
            .hero .hero-cta-bar,
            .hero .hero-cta {
                animation: none;
            }
        }
