/**
 * Landing Polish — Anthropic/Notion-Style auf v2-Tokens (2026-04-25)
 *
 * Grundprinzip: Container-zentriert,
ruhig,
große Typografie,
dezente
 * Aurora-Verläufe statt Stockfotos. Light + Dark beide unterstützt.
 *
 * Konsumiert Tokens aus /css/v2/index.css. Keine eigenen Farb-Hardcodes
 * außer Akzent-Tints und Aurora-Spots.
 */

html[data-css="v2"] body[data-page-context="landing"] {
    /* Landing-spezifische Tokens, basieren auf v2 */
    --landing-section-py: clamp(64px, 9vw, 128px);
    --landing-container-max: 1200px;
    --landing-container-x: clamp(20px, 4vw, 48px);
    --landing-radius: 16px;
    --landing-radius-lg: 24px;

    --landing-aurora-1: rgba(102, 126, 234, 0.10);
    --landing-aurora-2: rgba(168, 85, 247, 0.08);
    --landing-aurora-3: rgba(56, 189, 248, 0.06);

    --landing-section-tint: var(--surface-sunken, #fafaf9);
    --landing-card-bg: var(--surface-raised, #ffffff);
    --landing-card-border: var(--border, rgba(0, 0, 0, 0.08));

    background: var(--bg, #ffffff);
    color: var(--text, #1a1a2e);
    font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-feature-settings: "ss01", "cv11";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
    margin: 0;
}

html[data-css="v2"][data-theme="dark"] body[data-page-context="landing"] {
    --landing-aurora-1: rgba(102, 126, 234, 0.16);
    --landing-aurora-2: rgba(168, 85, 247, 0.12);
    --landing-aurora-3: rgba(56, 189, 248, 0.10);
    --landing-section-tint: var(--surface-sunken, #18181b);
    --landing-card-bg: var(--surface-raised, #1f1f23);
    --landing-card-border: var(--border, rgba(255, 255, 255, 0.08));
}

body[data-page-context="landing"] * {
    box-sizing: border-box;
}

body[data-page-context="landing"] a {
    color: inherit;
    text-decoration: none;
}

body[data-page-context="landing"] img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   CONTAINER
   Specificity-Boost gegen html[data-css="v2"] * { padding: 0 } reset
============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-container {
    width: 100%;
    max-width: var(--landing-container-max);
    margin: 0 auto;
    padding-left: var(--landing-container-x);
    padding-right: var(--landing-container-x);
}

html[data-css="v2"] body[data-page-context="landing"] .l-section {
    padding-top: var(--landing-section-py);
    padding-bottom: var(--landing-section-py);
    position: relative;
}

html[data-css="v2"] body[data-page-context="landing"] .l-section--tinted {
    background: var(--landing-section-tint);
}

html[data-css="v2"] body[data-page-context="landing"] .l-section-header {
    text-align: center;
    margin: 0 auto 56px;
    max-width: 640px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid var(--landing-card-border);
    background: var(--landing-card-bg);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted, rgba(0, 0, 0, 0.6));
    margin-bottom: 24px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.18);
}

html[data-css="v2"] body[data-page-context="landing"] .l-h1 {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 24px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-h1-accent {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

html[data-css="v2"] body[data-page-context="landing"] .l-h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-h3 {
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.25;
    letter-spacing: -0.01em;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-lead {
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--text-muted, rgba(0, 0, 0, 0.65));
    margin: 0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-muted {
    color: var(--text-muted, rgba(0, 0, 0, 0.65));
}

/* ============================================
   NAV
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    background: color-mix(in srgb, var(--bg) 70%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav.is-scrolled {
    border-bottom-color: var(--landing-card-border);
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-logo span {
    color: #6366f1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-link {
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 8px;
    transition: color 0.15s ease, background 0.15s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-link:hover {
    color: var(--text);
    background: var(--surface-sunken);
}

html[data-css="v2"] body[data-page-context="landing"] .l-nav-link--login {
    color: var(--text);
}

@media (max-width: 640px) {
html[data-css="v2"] body[data-page-context="landing"] .l-nav-link.is-desktop {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.005em;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn:hover {
    transform: translateY(-1px);
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn--primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn--primary:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.45);
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn--ghost {
    border-color: var(--landing-card-border);
    background: var(--landing-card-bg);
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn--ghost:hover {
    background: var(--surface-sunken);
    border-color: var(--text-muted);
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn--lg {
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 12px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn-arrow {
    display: inline-block;
    transition: transform 0.15s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-btn:hover .l-btn-arrow {
    transform: translateX(2px);
}

/* ============================================
   HERO
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-hero {
    position: relative;
    overflow: hidden;
    padding-top: clamp(64px, 8vw, 112px);
    padding-bottom: clamp(64px, 8vw, 112px);
    isolation: isolate;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero::before,
html[data-css="v2"] body[data-page-context="landing"] .l-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero::before {
    width: 600px;
    height: 600px;
    background: var(--landing-aurora-1);
    top: -200px;
    left: -150px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero::after {
    width: 500px;
    height: 500px;
    background: var(--landing-aurora-2);
    bottom: -150px;
    right: -100px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}

@media (max-width: 1024px) {
html[data-css="v2"] body[data-page-context="landing"] .l-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0 32px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid var(--landing-card-border);
    background: var(--landing-card-bg);
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-tag-check {
    color: #10b981;
    font-weight: 700;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero-fineprint {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* App-Preview-Card */
html[data-css="v2"] body[data-page-context="landing"] .l-hero-preview {
    position: relative;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius-lg);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.05),
        0 25px 50px -12px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.4s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-card:hover {
    transform: perspective(1200px) rotateY(0) rotateX(0);
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-card-chrome {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--landing-card-border);
    background: var(--surface-sunken);
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-dot--red { background: #ff5f57; }
html[data-css="v2"] body[data-page-context="landing"] .l-app-dot--amber { background: #ffbd2e; }
html[data-css="v2"] body[data-page-context="landing"] .l-app-dot--green { background: #28c840; }

html[data-css="v2"] body[data-page-context="landing"] .l-app-chrome-title {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 12px;
    font-weight: 500;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-body {
    padding: 24px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stat {
    padding: 16px;
    border: 1px solid var(--landing-card-border);
    border-radius: 12px;
    background: var(--surface-sunken);
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    margin-bottom: 6px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stat-value {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 4px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stat-delta {
    font-size: 12px;
    font-weight: 500;
    color: #10b981;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-stat-delta--warn {
    color: #f59e0b;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    margin-bottom: 20px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-chart-bar {
    flex: 1;
    background: linear-gradient(180deg, #6366f1, #8b5cf6);
    border-radius: 4px;
    opacity: 0.85;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--landing-card-border);
    font-size: 13px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-list-item:last-child {
    border-bottom: none;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-list-item-name {
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-list-item-amount {
    font-weight: 600;
    color: var(--text);
    margin-right: 12px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-pill {
    padding: 3px 10px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

html[data-css="v2"] body[data-page-context="landing"] .l-app-pill--paid { background: rgba(16, 185, 129, 0.12); color: #10b981; }
html[data-css="v2"] body[data-page-context="landing"] .l-app-pill--sent { background: rgba(99, 102, 241, 0.12); color: #6366f1; }
html[data-css="v2"] body[data-page-context="landing"] .l-app-pill--open { background: rgba(245, 158, 11, 0.12); color: #d97706; }

/* ============================================
   TRUST STRIP (compliance labels)
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-trust-strip {
    padding: 24px 0;
    border-top: 1px solid var(--landing-card-border);
    border-bottom: 1px solid var(--landing-card-border);
    background: var(--landing-section-tint);
}

html[data-css="v2"] body[data-page-context="landing"] .l-trust-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 32px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-trust-strip-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

html[data-css="v2"] body[data-page-context="landing"] .l-trust-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-trust-strip-item::before {
    content: "✓";
    color: #10b981;
    font-weight: 700;
}

/* ============================================
   STATS BAR
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
html[data-css="v2"] body[data-page-context="landing"] .l-stats { grid-template-columns: repeat(2, 1fr); }
}

html[data-css="v2"] body[data-page-context="landing"] .l-stat {
    text-align: center;
    padding: 32px 24px;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
}

html[data-css="v2"] body[data-page-context="landing"] .l-stat-icon {
    margin: 0 auto 12px;
    width: 32px;
    height: 32px;
    color: #6366f1;
    opacity: 0.85;
}

html[data-css="v2"] body[data-page-context="landing"] .l-stat-value {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 4px;
    font-feature-settings: "tnum";
}

html[data-css="v2"] body[data-page-context="landing"] .l-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   AUDIENCE GRID (4 personas)
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 1024px) {
html[data-css="v2"] body[data-page-context="landing"] .l-audience-grid { grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 1fr 1fr; }
html[data-css="v2"] body[data-page-context="landing"] .l-audience-card--featured { grid-row: span 2; }
}

@media (max-width: 640px) {
html[data-css="v2"] body[data-page-context="landing"] .l-audience-grid { grid-template-columns: 1fr; }
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card {
    padding: 32px;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card--featured {
    background: linear-gradient(135deg,
        color-mix(in srgb, #6366f1 8%, var(--landing-card-bg)),
        color-mix(in srgb, #a855f7 6%, var(--landing-card-bg))
    );
    border-color: rgba(99, 102, 241, 0.2);
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-icon {
    width: 40px;
    height: 40px;
    color: #6366f1;
    margin-bottom: 20px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card h3 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card-sub {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 0 16px;
    line-height: 1.5;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    flex: 1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card li {
    padding: 6px 0 6px 24px;
    position: relative;
    font-size: 14px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: 700;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: #6366f1;
    font-weight: 600;
    font-size: 14px;
    transition: gap 0.15s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-audience-card-cta:hover {
    gap: 8px;
}

/* ============================================
   FEATURES BENTO
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-bento {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 16px;
}

@media (max-width: 1024px) {
html[data-css="v2"] body[data-page-context="landing"] .l-bento { grid-template-columns: repeat(2, 1fr); }
html[data-css="v2"] body[data-page-context="landing"] .l-bento > * { grid-column: span 1 !important; grid-row: auto !important; }
html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--xl { grid-column: span 2 !important; }
}

@media (max-width: 640px) {
html[data-css="v2"] body[data-page-context="landing"] .l-bento { grid-template-columns: 1fr; }
html[data-css="v2"] body[data-page-context="landing"] .l-bento > * { grid-column: 1 !important; }
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card {
    padding: 28px;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
    transition: border-color 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--xl { grid-column: span 3; grid-row: span 2; }
html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--lg { grid-column: span 3; }
html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--md { grid-column: span 2; }

html[data-css="v2"] body[data-page-context="landing"] .l-bento-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 16px;
    color: #6366f1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card h3 {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 8px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--xl h3 {
    font-size: 24px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.55;
}

html[data-css="v2"] body[data-page-context="landing"] .l-bento-card--xl p {
    font-size: 16px;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-comparison {
    overflow-x: auto;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table {
    width: 100%;
    border-collapse: collapse;
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table th,
html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table td {
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid var(--landing-card-border);
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table th {
    font-weight: 600;
    color: var(--text-muted);
    background: var(--surface-sunken);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table tr:last-child td {
    border-bottom: none;
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-table .is-highlight {
    background: color-mix(in srgb, #6366f1 5%, transparent);
    font-weight: 600;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-check { color: #10b981; font-weight: 700; }
html[data-css="v2"] body[data-page-context="landing"] .l-comparison-cross { color: #ef4444; font-weight: 700; }
html[data-css="v2"] body[data-page-context="landing"] .l-comparison-price { color: #6366f1; font-weight: 700; }

html[data-css="v2"] body[data-page-context="landing"] .l-comparison-disclaimer {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) { .l-testimonials { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .l-testimonials { grid-template-columns: 1fr; } }

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial {
    padding: 28px;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
    display: flex;
    flex-direction: column;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-stars {
    color: #f59e0b;
    margin-bottom: 16px;
    font-size: 16px;
    letter-spacing: 0.05em;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin: 0 0 24px;
    flex: 1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-testimonial-role {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   PRICING
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1080px;
    margin: 0 auto;
}

@media (max-width: 1024px) { .l-pricing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .l-pricing { grid-template-columns: 1fr; } }

html[data-css="v2"] body[data-page-context="landing"] .l-price-card {
    position: relative;
    padding: 28px 24px;
    border: 1px solid var(--landing-card-border);
    border-radius: var(--landing-radius);
    background: var(--landing-card-bg);
    display: flex;
    flex-direction: column;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-card--featured {
    border-color: #6366f1;
    border-width: 2px;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-amount {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 4px;
    line-height: 1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-amount-suffix {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-period {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 20px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    flex: 1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-features li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 13px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

html[data-css="v2"] body[data-page-context="landing"] .l-pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

/* ============================================
   FAQ
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-faq {
    max-width: 760px;
    margin: 0 auto;
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item {
    border: 1px solid var(--landing-card-border);
    border-radius: 12px;
    background: var(--landing-card-bg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item[open] {
    border-color: rgba(99, 102, 241, 0.3);
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    user-select: none;
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item summary::-webkit-details-marker { display: none; }

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item summary::after {
    content: "+";
    font-size: 22px;
    font-weight: 300;
    color: var(--text-muted);
    transition: transform 0.2s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-item[open] summary::after {
    transform: rotate(45deg);
}

html[data-css="v2"] body[data-page-context="landing"] .l-faq-answer {
    padding: 0 24px 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   CTA Section
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-cta-card {
    padding: clamp(48px, 6vw, 80px);
    border-radius: var(--landing-radius-lg);
    background: linear-gradient(135deg,
        color-mix(in srgb, #6366f1 8%, var(--landing-card-bg)),
        color-mix(in srgb, #a855f7 6%, var(--landing-card-bg))
    );
    border: 1px solid rgba(99, 102, 241, 0.18);
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

html[data-css="v2"] body[data-page-context="landing"] .l-cta-card::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--landing-aurora-1);
    filter: blur(80px);
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-cta-card .l-h2 {
    margin-bottom: 16px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-cta-card .l-lead {
    margin-bottom: 32px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
html[data-css="v2"] body[data-page-context="landing"] .l-footer {
    border-top: 1px solid var(--landing-card-border);
    padding: 64px 0 32px;
    background: var(--landing-section-tint);
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
}

@media (max-width: 1024px) {
html[data-css="v2"] body[data-page-context="landing"] .l-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
html[data-css="v2"] body[data-page-context="landing"] .l-footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-brand h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--text);
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-brand p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0 0 16px;
    max-width: 320px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-mini-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-mini-badge {
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid var(--landing-card-border);
    background: var(--landing-card-bg);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin: 0 0 16px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-col li {
    margin-bottom: 8px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-col a {
    font-size: 14px;
    color: var(--text);
    transition: color 0.15s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-col a:hover {
    color: #6366f1;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--landing-card-border);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color 0.15s ease;
}

html[data-css="v2"] body[data-page-context="landing"] .l-footer-bottom-links a:hover {
    color: var(--text);
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
html[data-css="v2"] body[data-page-context="landing"] .l-app-card { transform: none !important; transition: none; }
html[data-css="v2"] body[data-page-context="landing"] .l-btn:hover,
html[data-css="v2"] body[data-page-context="landing"] .l-audience-card:hover,
html[data-css="v2"] body[data-page-context="landing"] .l-bento-card:hover { transform: none; }
}

/* ============================================
   HERO — GRADIENT BACKGROUND (Mai 2026)
   Alle Overrides im .l-hero-Kontext – Rest der
   Seite bleibt unverändert.
   ============================================ */

html[data-css="v2"] body[data-page-context="landing"] .l-hero {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero::before {
    background: rgba(255, 255, 255, 0.08);
}
html[data-css="v2"] body[data-page-context="landing"] .l-hero::after {
    background: rgba(255, 255, 255, 0.05);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-h1 {
    color: #ffffff;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-h1-accent {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.45);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-lead {
    color: rgba(255, 255, 255, 0.85);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-hero-fineprint {
    color: rgba(255, 255, 255, 0.65);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-eyebrow {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-hero-tag {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}
html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-hero-tag-check {
    color: #a7f3d0;
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-btn--primary {
    background: #ffffff;
    color: #6366f1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-btn--primary:hover {
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-btn--ghost {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
html[data-css="v2"] body[data-page-context="landing"] .l-hero .l-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.65);
}

/* NAV always visible with backdrop — transparent-on-hero removed */
