/* ════════════════════════════════════════════════════════════════
   landing.css — SEO-optimierte Landing Page
   ────────────────────────────────────────────────────────────────
   Performance-Strategie:
   • Blur nur auf wenigen Top-Level-Elementen (Header, Cards)
   • Animationen nur auf transform + opacity (GPU-composited)
   • prefers-reduced-motion: alle Animationen aus
   • mobile (≤800px): Blobs, 3D-Tilt, Ringe deaktiviert
   ════════════════════════════════════════════════════════════════ */

/* ─── HEADER ──────────────────────────────────────────────────── */
.landing-header {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 14px 28px !important;
    width: 100%;
    margin-bottom: 0 !important;
    z-index: 100;
    position: relative;
}
.landing-nav { display: flex; gap: 24px; }
.landing-nav-link {
    color: rgba(0,0,0,0.6); font-size: 14px; font-weight: 600;
    text-decoration: none; transition: color 0.2s;
}
.landing-nav-link:hover { color: var(--accent-blue); }
.landing-btn-outline {
    padding: 9px 20px; border-radius: 12px; font-size: 13px; font-weight: 700;
    border: 1.5px solid rgba(0,0,0,0.15); background: rgba(255,255,255,0.3);
    color: var(--text-dark); cursor: pointer; transition: background 0.2s;
    backdrop-filter: blur(10px); font-family: inherit;
}
.landing-btn-outline:hover { background: rgba(255,255,255,0.55); }

/* ─── HERO ──────────────────────────────────────────────────── */
.landing-hero {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 32px;
    width: 100%;
    align-items: center;
    padding: 20px 0;
    position: relative;
    overflow: visible;
}
.landing-hero-text { display: flex; flex-direction: column; align-items: center; text-align: center; }
.landing-badge {
    display: inline-flex; align-items: center;
    color: #2b2b2b;
    padding: 6px 14px; font-size: 12px; font-weight: 700;
    margin-bottom: 20px; width: fit-content;
    background: var(--glass-bg);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.landing-headline {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 900; color: white;
    letter-spacing: -2px; line-height: 1.05;
    margin-bottom: 16px;
}
.landing-subline {
    font-size: 17px; color: rgba(255,255,255,0.78);
    line-height: 1.6; max-width: 480px;
    margin: 0 auto;
}
.landing-cta-row {
    display: flex; gap: 12px; flex-wrap: wrap;
    margin-top: 28px; justify-content: center;
}
.landing-cta-btn { font-size: 15px !important; padding: 14px 26px !important; }
.landing-cta-primary {
    box-shadow: 0 8px 24px rgba(0,122,255,0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.landing-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,122,255,0.5);
}
.landing-cta-secondary {
    background: rgba(255,255,255,0.18);
    color: #fff; border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.18s;
}
.landing-cta-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
.landing-features-list {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 8px 24px; margin-top: 32px;
}
.landing-feature-item {
    font-size: 13px; color: rgba(255,255,255,0.78); font-weight: 600;
}

/* ─── GANTT DEMO ────────────────────────────────────────────── */
.landing-demo-wrap { position: relative; }
.landing-gantt-demo {
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex; flex-direction: column;
    margin-right: 20px;
    transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
    transition: transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
                box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}
.demo-month-bar {
    display: flex; height: 32px; flex-shrink: 0;
    background: rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.demo-spacer {
    width: 170px; min-width: 170px;
    background: linear-gradient(90deg, rgb(210,227,252), rgba(210,227,252,0.85));
    border-right: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.demo-months {
    flex: 1; display: flex; align-items: center;
    font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 0.5px;
}
.demo-col-header {
    display: flex; height: 60px; flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.demo-label-head {
    width: 170px; min-width: 170px;
    display: flex; align-items: center; padding-left: 20px;
    font-size: 12px; font-weight: 900; color: rgb(79,103,115);
    text-transform: uppercase; letter-spacing: 0.3px;
    background: linear-gradient(90deg, rgb(200,217,241), rgba(205,219,239,0.85));
    border-right: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.demo-status-head {
    width: 70px; min-width: 70px; text-align: center;
    border-left: 1px solid rgba(79,103,115,0.2); padding: 0 8px;
    display: flex; align-items: center; justify-content: center; align-self: stretch;
}
.demo-timeline-head {
    flex: 1; display: flex; align-items: center;
    font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4);
    overflow: hidden;
}
.demo-timeline-head span {
    flex: 1; text-align: center; line-height: 1.3;
    border: 0.5px solid rgba(255,255,255,0.16);
    height: 100%; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: rgba(0,0,0,0.08); font-size: 10px;
}
.demo-today-col { background: rgba(0,0,0,0.28) !important; color: white !important; }
.demo-rows { display: flex; flex-direction: column; }
.demo-row { display: flex; height: 65px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.demo-task-label {
    width: 170px; min-width: 170px;
    display: flex; align-items: center; padding: 0;
    font-size: 12px; font-weight: 600; color: rgb(79,103,115);
    background: linear-gradient(90deg, rgb(210,227,252), rgba(210,227,252,0.85));
    border-right: 1px solid rgba(0,0,0,0.05);
    flex-shrink: 0; overflow: hidden;
}
.demo-label-title {
    flex: 1; padding: 0 20px;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.demo-checkbox {
    width: 70px; min-width: 70px;
    display: flex; align-items: center; justify-content: center;
    border-left: 1px solid rgba(79,103,115,0.2);
    align-self: stretch; font-size: 13px; color: white; flex-shrink: 0;
}
.demo-checked {
    background: rgb(79,103,115);
    width: 20px !important; min-width: 20px !important;
    height: 20px; border-radius: 6px; border: none !important;
    align-self: auto; margin: auto;
    font-size: 12px; font-weight: 800;
}
.demo-timeline {
    flex: 1; position: relative;
    background-image:
        linear-gradient(to right, rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 8.33% 65px;
    overflow: visible;
}
.demo-today-line {
    position: absolute; top: 0; bottom: 0; left: 50%;
    width: 2px; background: rgb(255,117,117);
    pointer-events: none; z-index: 5;
    box-shadow: 0 0 10px rgba(0,122,255,0.5);
}
.demo-bar {
    position: absolute; top: 15px; height: 34px;
    border-radius: 10px; display: flex; align-items: center;
    justify-content: center; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 2;
}
.demo-bar span {
    font-size: 11px; font-weight: 800; color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    white-space: nowrap; position: relative; z-index: 2;
    padding: 0 10px;
}
.demo-bar-progress {
    position: absolute; left: 0; top: 0; bottom: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 9px 0 0 9px; z-index: 1;
}
.demo-row-completed .demo-task-label { opacity: 0.6; padding-right: 25px; }

/* Slide-In nur ein einziges Mal beim Laden — kein Loop */
.demo-bar-1 { animation: demoSlide 0.6s 0.10s ease-out both; }
.demo-bar-2 { animation: demoSlide 0.6s 0.20s ease-out both; }
.demo-bar-3 { animation: demoSlide 0.6s 0.30s ease-out both; }
.demo-bar-4 { animation: demoSlide 0.6s 0.40s ease-out both; }
.demo-bar-5 { animation: demoSlide 0.6s 0.50s ease-out both; }
.demo-bar-6 { animation: demoSlide 0.6s 0.60s ease-out both; }
@keyframes demoSlide {
    from { opacity: 0; transform: translateX(-12px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* ─── BLOBS (nur Desktop, nur ohne reduced-motion) ───────────── */
.blob-scene {
    position: absolute; inset: -100px;
    pointer-events: none; z-index: 0; overflow: visible;
}
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.55;
    will-change: transform;
}
.blob-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #3b82f6, #6366f1);
    top: -80px; left: -120px;
    animation: blobDrift1 14s ease-in-out infinite;
}
.blob-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, #a855f7, #ec4899);
    bottom: -60px; left: 20%;
    animation: blobDrift2 18s ease-in-out infinite;
}
.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #06b6d4, #3b82f6);
    top: 30%; right: 10%;
    animation: blobDrift3 12s ease-in-out infinite;
    opacity: 0.35;
}
.blob-glow {
    width: 600px; height: 300px;
    background: radial-gradient(ellipse, rgba(99,102,241,0.25), transparent 70%);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    animation: blobPulse 8s ease-in-out infinite;
}
@keyframes blobDrift1 { 0%,100%{transform:translate(0,0) scale(1);} 33%{transform:translate(40px,-30px) scale(1.07);} 66%{transform:translate(-20px,20px) scale(0.96);} }
@keyframes blobDrift2 { 0%,100%{transform:translate(0,0) scale(1);} 40%{transform:translate(-50px,-40px) scale(1.1);} 70%{transform:translate(30px,30px) scale(0.93);} }
@keyframes blobDrift3 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(25px,-50px) scale(1.12);} }
@keyframes blobPulse  { 0%,100%{opacity:0.6;} 50%{opacity:1;} }

.landing-hero-text, .landing-demo-wrap { position: relative; z-index: 2; }

/* ─── 3D DEMO RING/DOT-DEKO ──────────────────────────────────── */
.demo-3d-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.18);
    pointer-events: none; z-index: 1;
}
.demo-ring-tl {
    width: 140px; height: 140px;
    top: -40px; left: -50px;
    background: radial-gradient(circle at 30% 30%, rgba(99,102,241,0.35), transparent 70%);
    box-shadow: inset 0 0 30px rgba(99,102,241,0.2), 0 0 40px rgba(99,102,241,0.15);
}
.demo-ring-br {
    width: 100px; height: 100px;
    bottom: -30px; right: -35px;
    background: radial-gradient(circle at 70% 70%, rgba(168,85,247,0.35), transparent 70%);
    box-shadow: inset 0 0 20px rgba(168,85,247,0.2), 0 0 30px rgba(168,85,247,0.15);
}
.demo-float-dot { position: absolute; border-radius: 50%; pointer-events: none; z-index: 3; }
.demo-dot-1 { width: 12px; height: 12px; background: #6366f1; top: 18%; right: -18px;
              box-shadow: 0 0 16px 4px rgba(99,102,241,0.6); opacity: 0.75; }
.demo-dot-2 { width: 8px; height: 8px; background: #a855f7; bottom: 22%; left: -16px;
              box-shadow: 0 0 14px 4px rgba(168,85,247,0.6); opacity: 0.75; }
.demo-dot-3 { width: 10px; height: 10px; background: #06b6d4; top: -16px; left: 35%;
              box-shadow: 0 0 14px 4px rgba(6,182,212,0.6); opacity: 0.75; }

/* ─── HELLER BEREICH ──────────────────────────────────────────── */
.landing-light-wrapper {
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    background: #eef2f7;
    margin-top: 0;
}
.landing-light-fade {
    position: absolute;
    top: -160px; left: 0; right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent 0%, #eef2f7 100%);
    pointer-events: none;
    z-index: 3;
}
.landing-light-content {
    position: relative; z-index: 4;
    padding: 40px 28px 0;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ─── SECTIONS ──────────────────────────────────────────────── */
.landing-section { width: 100%; padding: 20px 0; }
.landing-section-header { text-align: center; margin-bottom: 40px; }
.landing-section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: -1.5px;
    line-height: 1.15;
}
.landing-light-wrapper .landing-badge {
    background: rgba(0,122,255,0.1);
    color: var(--accent-blue);
    border-color: rgba(0,122,255,0.2);
}

/* ─── HOWTO GRID ────────────────────────────────────────────── */
.landing-howto-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.landing-howto-card {
    background: white; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.landing-howto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.landing-howto-card .lhc-num {
    width: 32px; height: 32px; border-radius: 10px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white; font-weight: 900; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 8px;
}
.landing-howto-card h3 { font-size: 16px; font-weight: 800; color: #1a1a2e; margin: 0; }
.landing-howto-card p  { font-size: 13px; color: rgba(0,0,0,0.55); line-height: 1.6; margin: 0; }

/* ─── FEATURES GRID ─────────────────────────────────────────── */
.landing-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.landing-feature-card {
    background: white; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 20px; padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    display: flex; flex-direction: column; gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative; overflow: hidden;
}
.landing-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.landing-feature-card h3 { font-size: 16px; font-weight: 800; color: #1a1a2e; margin: 0; }
.landing-feature-card p  { font-size: 13px; color: rgba(0,0,0,0.5); line-height: 1.6; margin: 0; }
.lfc-icon { font-size: 28px; margin-bottom: 4px; }
.lfc-highlight {
    background: linear-gradient(135deg, rgba(99,102,241,0.07), rgba(168,85,247,0.05));
    border-color: rgba(99,102,241,0.18);
}
.lfc-highlight h3 { color: #6366f1; }
.lfc-badge-new {
    position: absolute; top: 16px; right: 16px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white; font-size: 10px; font-weight: 800;
    padding: 3px 8px; border-radius: 8px; letter-spacing: 0.5px;
}

/* ─── USP BANNER ─────────────────────────────────────────────── */
.landing-usp-banner {
    background: white; border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 32px 40px;
    display: flex; align-items: center;
    justify-content: space-around; gap: 20px;
}
.landing-usp-divider { width: 1px; height: 60px; background: rgba(0,0,0,0.08); flex-shrink: 0; }
.landing-usp-item { display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.landing-usp-num  { font-size: 28px; }
.landing-usp-text { font-size: 16px; font-weight: 800; color: #1a1a2e; }
.landing-usp-desc { font-size: 12px; color: rgba(0,0,0,0.45); max-width: 180px; }

/* ─── CONTENT SECTION (SEO-Text) ────────────────────────────── */
.landing-content-section { padding: 30px 0; }
.landing-content-h2 {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 900; color: #1a1a2e;
    letter-spacing: -1px; line-height: 1.2;
    text-align: center; margin-bottom: 32px;
}
.landing-content-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.landing-content-block {
    background: rgba(255,255,255,0.6);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 24px;
}
.landing-content-block h3 {
    font-size: 17px; font-weight: 800; color: #1a1a2e;
    margin: 0 0 10px;
}
.landing-content-block p {
    font-size: 14px; color: rgba(0,0,0,0.65);
    line-height: 1.65; margin: 0;
}
.landing-content-block strong { color: #1a1a2e; font-weight: 700; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.landing-faq-list {
    display: flex; flex-direction: column; gap: 10px;
    max-width: 760px; margin: 0 auto;
}
.landing-faq-item {
    background: white; border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.landing-faq-item:hover { box-shadow: 0 4px 14px rgba(0,0,0,0.06); }
.landing-faq-item summary {
    padding: 18px 22px;
    font-size: 15px; font-weight: 700; color: #1a1a2e;
    cursor: pointer; list-style: none;
    display: flex; align-items: center; justify-content: space-between;
}
.landing-faq-item summary::-webkit-details-marker { display: none; }
.landing-faq-item summary::after {
    content: '+'; font-size: 22px; font-weight: 300;
    color: rgba(0,0,0,0.4); transition: transform 0.2s;
    margin-left: 12px;
}
.landing-faq-item[open] summary::after { transform: rotate(45deg); }
.landing-faq-item p {
    padding: 0 22px 20px;
    font-size: 14px; color: rgba(0,0,0,0.6);
    line-height: 1.7; margin: 0;
}

/* ─── CTA FINAL ────────────────────────────────────────────── */
.landing-cta-final {
    text-align: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.06));
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 28px;
    padding: 56px 40px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.landing-cta-final-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900; color: #1a1a2e;
    letter-spacing: -1.5px; margin: 0;
}
.landing-cta-final-sub {
    font-size: 16px; color: rgba(0,0,0,0.55); margin: 0;
}
.landing-cta-final .landing-cta-secondary {
    background: rgba(99,102,241,0.1);
    color: var(--accent-blue);
    border-color: rgba(99,102,241,0.3);
}
.landing-cta-final .landing-cta-secondary:hover {
    background: rgba(99,102,241,0.2);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
.landing-footer {
    width: 100%; padding: 32px 0 20px;
    font-size: 12px; color: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(0,0,0,0.06);
    margin-top: 32px;
}
.landing-footer-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
}

/* ─── APPLE SIGN-IN PLATZHALTER ──────────────────────────── */
.apple-signin-placeholder {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: #000; color: #fff;
    border: none; border-radius: 24px;
    font-size: 14px; font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: not-allowed;
    opacity: 0.4;
    width: 240px;
    margin-top: 6px;
}

/* ─── AUTH FOOTER ────────────────────────────────────────── */
.auth-footer {
    margin-top: 20px;
    display: flex; flex-direction: column; align-items: center;
    gap: 10px; width: 100%;
}
.auth-footer span { font-size: 13px; color: rgba(0,0,0,0.45); font-weight: 500; }
.auth-toggle-btn {
    width: 100%; height: 48px;
    border-radius: 14px;
    border: 1.5px solid rgba(0, 122, 255, 0.35);
    background: rgb(255, 255, 255) !important;
    color: var(--accent-blue);
    font-size: 14px; font-weight: 700;
    cursor: pointer; font-family: inherit; letter-spacing: 0.2px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.auth-toggle-btn:hover {
    background: var(--accent-blue) !important;
    border-color: rgba(0, 122, 255, 0.6);
    transform: translateY(-1px);
    color: white;
}
.auth-toggle-btn:active { transform: translateY(0); }
.auth-close-btn {
    display: flex; align-items: center; justify-content: center;
    gap: 6px; width: 100%; height: 42px;
    margin-top: 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(0,0,0,0.04);
    color: rgba(0,0,0,0.45);
    font-size: 13px; font-weight: 600;
    cursor: pointer; font-family: inherit;
    transition: background 0.2s, color 0.2s;
}
.auth-close-btn:hover {
    background: rgba(0,0,0,0.08);
    color: rgba(0,0,0,0.7);
}

/* ─── TOAST & PASSWORD ───────────────────────────────────── */
.success-toast.show, .error-toast.show {
    display: flex !important; align-items: center;
    animation: fadeInDown 0.4s ease forwards;
}
@keyframes fadeInDown {
    from { opacity:0; transform: translateY(-20px); }
    to   { opacity:1; transform: translateY(0); }
}
.password-wrap { position: relative; width: 100%; margin-bottom: 15px; }
.password-wrap .glass-input { width: 100%; padding-right: 48px; }
.pw-toggle-btn {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer; padding: 4px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.45; transition: opacity 0.2s;
}
.pw-toggle-btn:hover { opacity: 0.85; }
.pw-toggle-btn svg { width: 20px; height: 20px; fill: #1D1D1F; }

/* ─── LANDING-LAYOUT NO-OVERFLOW ─────────────────────────── */
.landing-layout { overflow-x: hidden !important; }

/* ════════════════════════════════════════════════════════════
   PERFORMANCE: prefers-reduced-motion → alle Animationen aus
   ════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .blob, .blob-1, .blob-2, .blob-3, .blob-glow {
        animation: none !important;
    }
    .demo-bar-1, .demo-bar-2, .demo-bar-3, .demo-bar-4, .demo-bar-5, .demo-bar-6 {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    .landing-gantt-demo {
        transform: none !important;
        transition: none !important;
    }
    .landing-feature-card:hover, .landing-howto-card:hover {
        transform: none !important;
    }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .landing-howto-grid     { grid-template-columns: repeat(2, 1fr); }
    .landing-features-grid  { grid-template-columns: repeat(2, 1fr); }
    .landing-content-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
    /* Performance: alle Effekte aus auf Mobile */
    .blob-scene { display: none; }
    .demo-3d-ring, .demo-float-dot { display: none; }
    .landing-gantt-demo { transform: none !important; }

    .landing-hero      { grid-template-columns: 1fr; }
    .landing-demo-wrap { display: none; }
    .landing-nav       { display: none; }

    .landing-usp-banner { flex-direction: column; gap: 24px; padding: 24px 20px; }
    .landing-usp-divider { width: 60px; height: 1px; }
}

@media (max-width: 500px) {
    .landing-howto-grid    { grid-template-columns: 1fr; }
    .landing-features-grid { grid-template-columns: 1fr; }
    .landing-cta-row       { flex-direction: column; }
    .landing-cta-row button { width: 100%; }
    .landing-light-content { padding: 30px 16px 0; }
}
