@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-Medium.woff2') format('woff2'),
        url('fonts/manrope/Manrope-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-SemiBold.woff2') format('woff2'),
        url('fonts/manrope/Manrope-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-Light.woff2') format('woff2'),
        url('fonts/manrope/Manrope-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-Regular.woff2') format('woff2'),
        url('fonts/manrope/Manrope-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-ExtraBold.woff2') format('woff2'),
        url('fonts/manrope/Manrope-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-Bold.woff2') format('woff2'),
        url('fonts/manrope/Manrope-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Manrope';
    src: url('fonts/manrope/Manrope-ExtraLight.woff2') format('woff2'),
        url('fonts/manrope/Manrope-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

:root {
    --c-core: #52413d;       
    --c-organic: #f4f1ea;    
    --c-accent: #8ca38a;
    --c-glass: rgba(255, 255, 255, 0.08); 
    --c-glass-border: rgba(255, 255, 255, 0.15);
    --anim-elastic: cubic-bezier(0.34, 1.56, 0.64, 1); 
}

/* --- CUSTOM SCROLLBAR --- */
::-webkit-scrollbar { width: 10px; background: transparent; }
::-webkit-scrollbar-thumb {
    background-color: rgba(244, 241, 234, 0.2); 
    border-radius: 20px;
    border: 2px solid transparent; 
    background-clip: content-box;
    backdrop-filter: blur(5px);
}
::-webkit-scrollbar-thumb:hover { background-color: rgba(244, 241, 234, 0.5); }

* { box-sizing: border-box; }

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--c-core);
    margin: 0;
    color: var(--c-organic);
    overflow: hidden; 
}

/* --- GLOBAL SCROLL --- */
main {
    height: 100vh;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

section {
    height: 100vh; width: 100%;
    scroll-snap-align: start;
    position: relative; display: flex; justify-content: center; align-items: center;
    overflow: hidden;
}

/* --- VIDEO BACKGROUND --- */
.video-bg-layer {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
}
.video-bg-layer video {
    width: 100%; height: 100%; object-fit: cover;
    opacity: 0.4; transition: all 1.5s ease;
    filter: blur(0px) brightness(0.6);
}
body.nav-active .video-bg-layer video {
    filter: blur(15px) brightness(0.4); transform: scale(1.05);
}

/* --- SCREEN 1: INTRO --- */
#intro { z-index: 2; flex-direction: column; text-align: center; padding: 2rem; }
.intro-content { max-width: 800px; z-index: 2; }
h1 { font-weight: 800; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 2rem; min-height: 3.3em; }
.highlight-text {
    color: #e2dace; display: block;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 1; transform: translateY(0);
}
.highlight-text.fade-out { opacity: 0; transform: translateY(-20px); }
.sub-intro { font-size: 1.2rem; font-weight: 300; opacity: 0.8; margin-bottom: 3rem; }
.cta-btn {
    display: inline-block; padding: 15px 40px;
    border: 1px solid var(--c-organic); border-radius: 50px;
    color: var(--c-organic); text-decoration: none; font-weight: 600;
    letter-spacing: 1px; transition: all 0.3s ease; cursor: pointer;
    background: transparent;
}
.cta-btn:hover { background: var(--c-organic); color: var(--c-core); transform: scale(1.05); }

/* --- SCREEN 2: TACTICAL ORBIT (Home Navi) --- */
#navigation { z-index: 2; perspective: 1000px; }
.nav-system {
    position: relative; width: 650px; height: 650px;
    display: flex; justify-content: center; align-items: center;
    transition: transform 0.5s ease;
}
.core-circle {
    width: 200px; height: 200px;
    background-color: var(--c-core);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    z-index: 20;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    position: relative; overflow: visible; 
    transform: scale(0); opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.start-anim .core-circle { animation: popIn 0.8s var(--anim-elastic) forwards 0.2s; }
.core-state-logo {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: scale(1); opacity: 1;
}
.core-state-logo img { width: 140px; height: auto; border-radius: 50%; }
.core-state-action {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    opacity: 0; transform: scale(0.8); transition: all 0.3s; pointer-events: none;
}
.action-label {
    font-size: 1.5rem; font-weight: 800; color: #fff; text-align: center; line-height: 1.1;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}
.action-sub {
    font-size: 0.8rem; color: var(--c-organic); margin-top: 5px; text-transform: uppercase; letter-spacing: 1px;
}
.core-pulse-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; border-radius: 50%;
    border: 2px solid var(--c-organic); opacity: 0; pointer-events: none; z-index: -1;
}
.core-circle.hover-active { background-color: #4a3d3a; }
.core-circle.hover-active .core-state-logo { opacity: 0; transform: scale(0.4); transition: all 0.3s ease-out; }
.core-circle.hover-active .core-state-action { opacity: 1; transform: scale(1); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.core-circle.engaged {
    cursor: pointer; background-color: #3a2e2b;
    box-shadow: 0 0 50px rgba(232, 218, 188, 0.3);
}
.core-circle.engaged .core-state-logo { opacity: 0; }
.core-circle.engaged .core-state-action { opacity: 1; transform: scale(1); pointer-events: all; }
.core-circle.engaged .core-pulse-ring { animation: pulseWave 2s infinite ease-out; }
.core-circle.engaged .core-pulse-ring.delay { animation-delay: 0.6s; }

@keyframes pulseWave {
    0% { width: 100%; height: 100%; opacity: 0.8; border-width: 2px; }
    100% { width: 220%; height: 220%; opacity: 0; border-width: 0px; }
}

.radiation-ring {
    position: absolute; width: 520px; height: 520px;
    border-radius: 50%; border: 1px solid var(--c-glass-border);
    box-shadow: 0 0 30px rgba(255,255,255,0.02); pointer-events: none;
    opacity: 0; transform: scale(0.5) rotate(-45deg);
}
.start-anim .radiation-ring { animation: expandRing 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s; }
.sat-wrapper {
    position: absolute; width: 60px; height: 60px;
    pointer-events: auto; display: flex; justify-content: center; align-items: center;
    top: 50%; left: 50%; margin-top: -30px; margin-left: -30px; 
}
.pos-1 { transform: rotate(270deg) translate(260px) rotate(-270deg); }
.pos-2 { transform: rotate(315deg) translate(260px) rotate(-315deg); }
.pos-3 { transform: rotate(0deg) translate(260px) rotate(0deg); }
.pos-4 { transform: rotate(45deg) translate(260px) rotate(-45deg); }
.pos-5 { transform: rotate(90deg) translate(260px) rotate(-90deg); }
.pos-6 { transform: rotate(135deg) translate(260px) rotate(-135deg); }
.pos-7 { transform: rotate(180deg) translate(260px) rotate(-180deg); }
.pos-8 { transform: rotate(225deg) translate(260px) rotate(-225deg); }

.nav-item {
    width: 100%; height: 100%;
    background: var(--c-glass); backdrop-filter: blur(8px);
    border: 1px solid var(--c-glass-border); border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    cursor: pointer; color: var(--c-organic); transition: all 0.3s;
}
.nav-item svg { width: 24px; height: 24px; fill: currentColor; }
.sat-wrapper:hover .nav-item { background: rgba(255,255,255,0.1); transform: scale(1.1); }
.sat-wrapper.locked .nav-item {
    background: var(--c-organic); color: var(--c-core);
    box-shadow: 0 0 20px var(--c-organic); transform: scale(1.2); border-color: transparent;
}

@keyframes popIn { 0% { transform: scale(0); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
@keyframes expandRing { to { opacity: 1; transform: scale(1) rotate(0deg); } }

/* --- MOBILE OPTIMIERUNG: ORBIT NAVIGATION --- */
@media (max-width: 768px) {
    /* Container zentrieren und Skalierung erhöhen */
    .nav-system { 
        transform: scale(0.55); 
        margin-left: -5%; 
    }
    
    .nav-item {
        box-shadow: 0 0 15px rgba(0,0,0,0.5); 
        background: rgba(30, 30, 30, 0.8);
    }
    
    .nav-item svg { width: 32px; height: 32px; }
    .action-label { font-size: 2rem; }
    .action-sub { font-size: 1rem; letter-spacing: 2px; }
}

/* --- SCREEN 3: SOLUTIONS (Terminal) --- */
#solutions { z-index: 2; padding: 2rem; }
.terminal-wrapper { width: 100%; max-width: 1200px; height: 80vh; display: flex; flex-direction: column; }
.terminal-header { text-align: center; margin-bottom: 1rem; color: var(--c-organic); }
.terminal-header h2 { font-size: 2rem; text-transform: uppercase; letter-spacing: 3px; margin: 0; }
.tri-core-container {
    flex: 1; display: flex; gap: 10px; border-radius: 20px; overflow: hidden;
    background: rgba(0,0,0,0.3); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
}
.core-column {
    position: relative; flex: 1; transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer; overflow: hidden; min-width: 80px; 
}
.core-column .col-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: grayscale(80%) brightness(0.4); transition: filter 0.6s; z-index: 0;
}
.core-column:hover .col-bg, .core-column.active .col-bg { filter: grayscale(0%) brightness(0.6); }
@media (min-width: 769px) { .core-column:hover, .core-column.active { flex: 4; } }
.col-content-closed {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
    transition: opacity 0.3s ease, transform 0.3s ease; color: var(--c-organic); pointer-events: none;
}
.core-column:hover .col-content-closed, .core-column.active .col-content-closed { opacity: 0; transform: scale(0.9); }
.col-num { font-size: 3rem; font-weight: 800; opacity: 0.3; line-height: 1; }
.col-content-closed h3 {
    font-size: 1.5rem; text-transform: uppercase; letter-spacing: 3px; margin: 0; white-space: nowrap;
    writing-mode: sideways-lr; text-orientation: mixed;
}
.col-content-open {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 3; padding: 2rem;
    opacity: 0; visibility: hidden; display: flex; flex-direction: column;
    transition: opacity 0.5s ease 0.2s, visibility 0s 0.2s;
}
.core-column:hover .col-content-open, .core-column.active .col-content-open { opacity: 1; visibility: visible; transition-delay: 0.3s; }
.open-header { border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 1rem; margin-bottom: 1.5rem; }
.open-header h3 { font-size: 2rem; color: #fff; margin: 0.5rem 0; }
.module-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px;
    overflow-y: auto; padding-right: 5px; height: 100%;
}
.module-grid::-webkit-scrollbar { width: 4px; }
.module-grid::-webkit-scrollbar-thumb { background: var(--c-organic); border-radius: 2px; }
.module-link {
    display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); padding: 1rem; border-radius: 12px;
    text-decoration: none; transition: all 0.2s;
    flex-direction: column;
    justify-content: center;
}
.module-link:hover { background: rgba(232, 218, 188, 0.1); border-color: var(--c-organic); transform: translateX(5px); }
.module-link .mod-icon {
    font-size: 2em;
}
.mod-text { color: #fff; font-weight: 600; font-size: 0.9rem; }
.highlight-mod { background: linear-gradient(45deg, rgba(232, 218, 188, 0.1), transparent); border: 1px solid var(--c-organic); }
@media (max-width: 768px) {
    #solutions { padding: 1rem; }
    .terminal-wrapper { height: auto; min-height: 80vh; }
    .tri-core-container { flex-direction: column; height: 600px; }
    .core-column { flex: 1; width: 100%; transition: flex 0.5s ease; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .core-column.active { flex: 8; }
    .col-content-closed { flex-direction: row; justify-content: flex-start; padding-left: 2rem; gap: 1.5rem; }
    .col-content-closed h3 { writing-mode: horizontal-tb; font-size: 1.2rem; }
}

/* --- SCREEN 4: FOOTER (3 Column Layout) --- */
#footer-screen {
    flex-direction: column; justify-content: space-between; padding: 6rem 2rem 2rem 2rem;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
}
.footer-interface {
    width: 100%; max-width: 1200px; 
    display: grid; grid-template-columns: 1.2fr 0.8fr 1.2fr; /* 3 Spalten */
    gap: 4rem; align-items: start; margin-bottom: auto; padding-top: 5vh;
}

/* Brand Column */
.brand-block h2 { 
    font-size: 2.5rem; margin: 0 0 1.5rem 0; opacity: 1; letter-spacing: -1px;
    background: linear-gradient(90deg, #fff, var(--c-organic));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.mission-statement { font-size: 1.05rem; line-height: 1.8; opacity: 0.8; margin-bottom: 2.5rem; max-width: 450px; color: #e0e0e0; }
.local-signature { 
    font-family: monospace; font-size: 0.9rem; color: rgba(255,255,255,0.5); 
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 15px; display: inline-block; 
}
.local-signature .heart { color: #ff4d4d; font-size: 1.2rem; vertical-align: middle; }
.local-signature .coffee { font-size: 1.2rem; vertical-align: middle; }

/* Links Column */
.footer-block h4 {
    text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; opacity: 0.5;
    margin-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px;
}
.cmd-list, .legal-list { list-style: none; padding: 0; margin: 0; }
.cmd-list li, .legal-list li { margin-bottom: 0.8rem; }
.cmd-link {
    text-decoration: none; color: #fff; font-size: 1.1rem; display: flex; align-items: center;
    gap: 10px; opacity: 0.8; transition: all 0.2s;
}
.cmd-link:hover { opacity: 1; transform: translateX(10px); color: var(--c-organic); }
.cmd-idx { font-family: monospace; color: var(--c-organic); opacity: 0.4; font-size: 0.9rem; }

.legal-list a { text-decoration: none; color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color 0.2s; }
.legal-list a:hover { color: var(--c-organic); }

/* Newsletter Column */
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.nl-input { 
    width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); 
    padding: 12px 15px; border-radius: 8px; color: #fff; font-family: inherit; font-size: 0.9rem; transition: all 0.3s; 
}
.nl-input:focus { background: rgba(255,255,255,0.1); border-color: var(--c-organic); outline: none; }
.consent-check { 
    display: flex; gap: 10px; align-items: flex-start; font-size: 0.7rem; opacity: 0.7; 
    line-height: 1.4; margin: 5px 0 10px 0; 
}
.consent-check input { margin-top: 3px; accent-color: var(--c-organic); }
.nl-btn { 
    background: var(--c-organic); color: var(--c-core); border: none; padding: 12px; border-radius: 8px; 
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; 
    display: flex; justify-content: center; gap: 10px; transition: all 0.3s; 
}
.nl-btn:hover { background: #fff; transform: translateY(-2px); }
.nl-msg { font-size: 0.8rem; margin-top: 10px; min-height: 20px; }
.nl-msg.success { color: #0f0; } .nl-msg.error { color: #ff4d4d; }

/* Mega Button */
.action-bar { width: 100%; max-width: 1200px; margin: 4rem 0 8rem 0; display: flex; justify-content: center; padding: 0 20px; }
.mega-contact-btn {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 20px;
    background: var(--c-organic); border: 1px solid var(--c-organic); color: var(--c-core);
    text-decoration: none; padding: 25px; border-radius: 12px; text-transform: uppercase;
    letter-spacing: 3px; font-weight: 800; font-size: 1.2rem; position: relative; overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.mega-contact-btn:hover {
    background: #fff; color: #000; box-shadow: 0 0 60px rgba(244, 241, 234, 0.6);
    transform: scale(1.02) translateY(-5px);
}
.mega-contact-btn .arrow-icon { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform 0.3s; }
.mega-contact-btn:hover .arrow-icon { transform: translateX(10px); }
.pulse-dot {
    width: 10px; height: 10px; background: var(--c-core); border-radius: 50%; animation: blinkDark 2s infinite;
}
@keyframes blinkDark { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

/* System Bar */
.system-bar {
    width: 100%; max-width: 1200px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
    display: flex; flex-direction: column; align-items: center; gap: 15px; text-align: center;
}
.b2b-note { font-size: 0.75rem; opacity: 0.4; max-width: 800px; line-height: 1.4; }
.copyright-row { width: 100%; display: flex; justify-content: space-between; font-family: monospace; font-size: 0.8rem; opacity: 0.5; }

/* --- MOBILE OPTIMIERUNG: FOOTER --- */
@media (max-width: 900px) {
    #footer-screen {
        height: auto; 
        min-height: 100vh; 
        padding-top: 6rem;
        padding-bottom: 160px; /* Platz für Subnav */
        justify-content: flex-start;
    }

    .footer-interface { 
        grid-template-columns: 1fr; 
        gap: 4rem; 
        display: flex;
        flex-direction: column;
    }

    .brand-block, .newsletter-block, .link-block { 
        max-width: 100%; 
        text-align: center; 
        display: flex; flex-direction: column; align-items: center;
    }

    .cmd-list, .legal-list { display: flex; flex-direction: column; align-items: center; width: 100%; }
    .cmd-link, .legal-list a { justify-content: center; padding: 10px 0; }

    .newsletter-form { width: 100%; }
    .consent-check { text-align: center; justify-content: center; }

    .copyright-row { flex-direction: column; gap: 15px; margin-bottom: 20px; }
}

/* --- DOCK NAVIGATION (Bottom, Wide, Buttons, Fly-In) --- */
/* --- DOCK NAVIGATION REFINEMENT --- */
.dock-nav-container {
    position: fixed; bottom: 40px; left: 0; width: 100%;
    display: flex; justify-content: center; z-index: 100;
    pointer-events: none; padding: 0 20px;
    
    /* Startzustand: Versteckt unter dem Rand */
    opacity: 0; 
    transform: translateY(150px);
    visibility: hidden;
}

/* Wenn die Seite geladen ist, triggern wir die Animation */
body.page-loaded .dock-nav-container {
    visibility: visible;
    /* Wir nutzen eine Animation statt einer Transition für den Hop-Effekt */
    animation: flyInHop 1.2s var(--anim-elastic) forwards;
    /* Delay: Die Nav kommt 0.8s nachdem der Content-Einflug gestartet ist */
    animation-delay: 0.8s; 
}

@keyframes flyInHop {
    0% {
        opacity: 0;
        transform: translateY(150px);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px); /* Leicht über das Ziel hinaus (Hop 1) */
    }
    80% {
        transform: translateY(5px);   /* Kleiner Rückfall */
    }
    100% {
        opacity: 1;
        transform: translateY(0);    /* Zielposition */
    }
}

/* Hover-Effekt für die Buttons innerhalb der Nav noch lebendiger machen */
.nav-btn-circle {
    /* ... bestehende Stile ... */
    transition: all 0.4s var(--anim-elastic);
}

.dock-nav {
    pointer-events: auto; width: 100%; max-width: 900px;
    background: rgba(15, 15, 15, 0.85); backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 80px;
    padding: 10px 20px;
    display: flex; justify-content: space-between; align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dock-nav:hover {
    border-color: var(--c-organic); background: rgba(20, 20, 20, 0.95);
    transform: translateY(-2px); box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.nav-side { flex: 1; display: flex; align-items: center; }
.nav-side.left { justify-content: flex-start; }
.nav-side.right { justify-content: flex-end; text-align: right; }

.dock-link {
    text-decoration: none; display: flex; align-items: center; gap: 15px;
    color: #fff; transition: opacity 0.2s;
}
.dock-link:hover { opacity: 1; }

.link-info { display: flex; flex-direction: column; font-family: 'Manrope', sans-serif; }
.link-sub { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--c-organic); opacity: 0.6; }
.link-title { font-size: 0.9rem; font-weight: 700; color: #fff; white-space: nowrap; }

.nav-btn-circle {
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%; display: flex; justify-content: center; align-items: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chevron {
    width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s;
}

.dock-link:hover .nav-btn-circle {
    background: var(--c-organic); border-color: var(--c-organic);
    transform: scale(1.1); box-shadow: 0 0 20px rgba(232, 218, 188, 0.3);
}
.dock-link:hover .chevron { stroke: var(--c-core); }
.prev-link:hover .chevron { transform: translateX(-2px); }
.next-link:hover .chevron { transform: translateX(2px); }

.nav-center { flex: 0 0 60px; display: flex; justify-content: center; }
.dock-home-btn {
    width: 12px; height: 12px; background: rgba(255,255,255,0.2);
    border-radius: 50%; transition: all 0.3s; cursor: pointer; position: relative;
}
.dock-home-btn::after { content: ''; position: absolute; top: -15px; left: -15px; right: -15px; bottom: -15px; }
.dock-home-btn:hover { background: var(--c-organic); transform: scale(1.5); box-shadow: 0 0 10px var(--c-organic); }

/* --- SCROLL DOWN INDICATOR --- */
.scroll-next-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px; height: 40px;
    border: 1px solid var(--c-organic);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--c-organic);
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(5px);
    cursor: pointer;
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s;
    animation: floatDown 2s infinite ease-in-out;
}

.scroll-next-btn:hover {
    background: var(--c-organic);
    color: var(--c-core);
    box-shadow: 0 0 15px rgba(232, 218, 188, 0.4);
}

.scroll-next-btn svg {
    width: 24px; height: 24px;
    fill: none; stroke: currentColor; stroke-width: 2;
    stroke-linecap: round; stroke-linejoin: round;
}

@keyframes floatDown {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* --- MOBILE OPTIMIERUNG: DOCK NAV --- */
@media (max-width: 768px) {
    .dock-nav-container { bottom: 20px; padding: 0 15px; }
    .dock-nav { padding: 8px 10px; bottom: 0; width: 100%; justify-content: space-between; }
    .mobile-hide { display: none; }
    .nav-btn-circle { width: 55px; height: 55px; background: rgba(255,255,255,0.1); }
    .chevron { width: 28px; height: 28px; }
}

/* Page Transitions */
body { transition: opacity 0.5s ease; opacity: 1; }
body.fade-out { opacity: 0; }

/* --- INTERNAL PAGE ANIMATIONS --- */
.anim-fade-up {
    opacity: 0; transform: translateY(40px);
    will-change: opacity, transform; backface-visibility: hidden; transform-style: preserve-3d;
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.anim-pop-in {
    opacity: 0; transform: scale(0.9) translateY(20px);
    will-change: opacity, transform; backface-visibility: hidden;
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-visible { opacity: 1 !important; transform: translateY(0) scale(1) !important; }

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* --- BLOG READ MODE (Typography for Single Posts) --- */
.read-mode {
    max-width: 800px;
    margin: 0 auto;
    color: var(--c-organic);
}

.read-mode h1.post-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.post-meta {
    font-family: monospace;
    color: var(--c-accent);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1.5rem;
}

.read-mode .lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 300;
    margin-bottom: 2rem;
}

.read-mode p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.read-mode h2 {
    font-size: 2rem;
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.read-mode ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.read-mode li {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.9);
}

.read-mode li::marker {
    color: var(--c-accent); /* Grüne Bulletpoints */
}

.read-mode hr {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(140, 163, 138, 0.3), transparent);
    margin: 3rem 0;
}

.read-mode img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 2rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.disclaimer-box {
    background: rgba(140, 163, 138, 0.1);
    border-left: 4px solid var(--c-accent);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1rem;
    border-radius: 0 12px 12px 0;
}

/* Back Button oben im Post */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--c-accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}
.back-btn:hover { opacity: 1; text-decoration: none; color: #fff; }

/* --- BLOG GRID & CARDS (Overview) --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Die Karte selbst */
.blog-card-new {
    display: flex;
    flex-direction: column;
    background: rgba(30, 25, 23, 0.6); /* Dunkles Glas */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    position: relative;
    height: 100%;
    color: #fff;
    
    /* Wichtig für die Smoothness beim Hover */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), 
                background 0.4s ease, 
                border-color 0.4s ease, 
                box-shadow 0.4s ease;
}

/* Image Wrapper (Bild-Container) */
.bc-img-wrap {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.bc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.9;
    filter: saturate(0.8);
}

/* Content Bereich */
.bc-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bc-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-family: monospace;
    font-size: 0.8rem;
    opacity: 0.8;
    color: #ccc;
}

.bc-date {
    color: var(--c-accent); /* Dein Grün */
    font-weight: 700;
    letter-spacing: 1px;
}

.bc-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

.bc-excerpt {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1; /* Drückt den Button nach unten */
}

/* Button */
.bc-btn {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
    margin-top: auto; /* Immer ganz unten */
}

.bc-btn svg { width: 18px; height: 18px; fill: currentColor; }

/* --- HOVER STATES (Smooth & Green) --- */
.blog-card-new:hover {
    transform: translateY(-10px) scale(1.02); /* Anheben & Zoom */
    background: rgba(40, 35, 33, 0.9);
    border-color: var(--c-accent); /* Grüner Rand */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(140, 163, 138, 0.15); /* Grüner Glow */
}

.blog-card-new:hover .bc-img-wrap img {
    transform: scale(1.1); /* Bild Zoom */
    opacity: 1;
    filter: saturate(1.1);
}

.blog-card-new:hover .bc-btn {
    color: var(--c-accent); /* Button wird grün */
    opacity: 1;
    gap: 15px; /* Pfeil wandert */
}

/* Mobile Anpassung */
@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .bc-img-wrap { height: 200px; }
    .content-page {padding:0 !important;}
}