        :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;
        }

        .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-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 {
            font-size: clamp(1.9rem, 4.2vw, 2.85rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.03em;
            max-width: 780px;
            margin: 0 auto 1rem;
            padding-top: 69px;
            padding-bottom: 69px;
            color: #fff;
        }

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

        .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: 4rem 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;
        }

        .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);
        }

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

        .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;
        }

        .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::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); }

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

        .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;
        }

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

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

        .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 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-features li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.7rem;
            width: 5px;
            height: 5px;
            background: var(--accent);
            border-radius: 50%;
        }

        .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;
        }

        .earn-card {
            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: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;
            white-space: nowrap;
        }

        .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; }
        }

        /* 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;
        }

        .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);
        }

        .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);
        }

        /* 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: 680px;
            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-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 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-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); }
            .how-grid { grid-template-columns: 1fr; }
            .earn-grid { grid-template-columns: 1fr; }
            .extras-grid { grid-template-columns: 1fr; }
            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; }
            .nav-cta .btn-outline { display: none; }
            .header-inner { height: 60px; }
            .site-header { height: 60px; }
            .site-header--solid { top: -60px; }
            .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; }
        }

        /* ===== 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 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; }

        .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;
            margin-bottom: 1.5rem;
        }
        .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;
            margin-bottom: 1.75rem;
        }
        .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; }
        }
