        :root {
            /* Farben & Branding */
            --gradient-main: linear-gradient(135deg, #00c4cc 0%, #009bcc 30%, #5931fa 70%, #7d2be8 100%);
            --neon-lime: #d3fb03;
            --neon-purple: #6e03fb;
            --neon-cyan: #25ffff;
            --neon-pink: #e552ff;
            --text-white: #FFFFFF;
            --text-soft: rgba(255, 255, 255, 0.85);
            --bg-glass: rgba(255, 255, 255, 0.08);
            --bg-glass-heavy: rgba(255, 255, 255, 0.12);
            --border-radius: 28px;
            --transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scrollbar-width: thin;
            scrollbar-color: var(--neon-lime) transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--gradient-main);
            background-attachment: fixed;
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        img {
            border-radius: 28px;
        }

        html {
    scroll-behavior: smooth;
}

        /* --- TYPOGRAFIE --- */
        h1, h2, h3, h4 { font-weight: 900; text-transform: uppercase; line-height: 0.9; }
        h1 { font-size: clamp(3.5rem, 12vw, 8.5rem); margin-bottom: 2rem;letter-spacing: -0.05em;  }
        h2 { font-size: clamp(2.5rem, 7vw, 5rem); margin-bottom: 1rem; }
        
        .section-intro {
            font-size: 1.15rem;
            max-width: 650px;
            color: var(--text-soft);
            margin-bottom: 3.5rem;
            border-left: 3px solid var(--neon-lime);
            padding-left: 2rem;
        }
        .intro2 {
                    border-left: 3px solid var(--neon-cyan);
        }


        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1.3rem 3.8rem;
            background: var(--neon-lime);
            color: #2A125E;
            text-decoration: none;
            font-weight: 900;
            border-radius: 50px;
            text-transform: uppercase;
            transition: var(--transition);
            border: 2px solid var(--neon-lime);
            cursor: pointer;
            box-shadow: 0 12px 35px rgba(211, 251, 3, 0.25);
        }

        .btn:hover {
            background: transparent;
            color: var(--neon-lime);
            box-shadow: 0 0 50px rgba(211, 251, 3, 0.5);
            transform: translateY(-5px);
        }

        /* --- ICONS (CSS MASKS) --- */
        .icon {
            display: block;
            width: 50px;
            height: 50px;
            background-color: var(--neon-cyan);
            margin-bottom: 2rem;
            mask-size: contain;
            mask-repeat: no-repeat;
            -webkit-mask-size: contain;
            -webkit-mask-repeat: no-repeat;
        }
      

        /* --- LAYOUT --- */
        header {
            padding: 1.5rem 5%;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.15);
            backdrop-filter: blur(25px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        nav { display: flex; justify-content: space-between; align-items: center; max-width: 1600px; margin: 0 auto; }
        .logo { font-weight: 900; font-size: 2.2rem; color: var(--neon-lime); }

        section { padding: 140px 5% 100px; max-width: 1600px; margin: 0 auto; }

        section.hero2 { padding: 0px 5% 100px; max-width: 1600px; margin: 0 auto; }

        section.hero { padding: 190px 0 0 10%; max-width: 1600px; margin: 0 auto; }
        .hero { display: flex; align-items: center; }

        /* --- THE GAP --- */
        .gap-grid0 { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 2rem; margin-top: 3rem; }
        
        .gap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }

        .gap-box {
            padding: 5rem 4rem;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            background: rgba(0, 0, 0, 0.2);
        }
        .gap-box.tomorrow { border: 2px solid var(--neon-lime); background: var(--bg-glass-heavy); box-shadow: 0 0 30px rgba(211, 251, 3, 0.1); }
         .gap-box.cyanstroke { border: 2px solid var(--neon-cyan); background: var(--bg-glass-heavy); box-shadow: 0 0 30px rgba(211, 251, 3, 0.1); }

        /* --- HORIZONTAL TRACKS --- */
        .h-container { position: relative; margin: 4rem 0; }
        .h-wrapper {
            display: flex;
            gap: 2.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 2.5rem 0;
            scroll-behavior: smooth;
        }
        .h-wrapper::-webkit-scrollbar { display: none; }

        .card {
            min-width: 480px;
            background: var(--bg-glass);
            border-radius: var(--border-radius);
            padding: 4rem;
            scroll-snap-align: start;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }
         .card2 {
           background: var(--bg-glass);
            border-radius: var(--border-radius);
            padding: 2rem;
            scroll-snap-align: start;
            position: relative;
            cursor: pointer;
            transition: var(--transition);
        }

        .card:hover { border-color: var(--neon-lime); background: var(--bg-glass-heavy); transform: translateY(-10px); }

 



        .badge {
            position: absolute;
            top: 2.5rem;
            right: 2.5rem;
            padding: 0.6rem 1.2rem;
            background: var(--neon-lime);
            color: #2A125E;
            font-weight: 900;
            font-size: 0.75rem;
            border-radius: 10px;
        }

        .badge.cyan {
            background: var(--neon-cyan);
        }
        .badge.purple {
            background: var(--neon-purple);
        }

        .hint { display: block; margin-top: 2.5rem; font-size: 0.85rem; color: var(--neon-lime); font-weight: 800; opacity: 0.8; }

        /* --- MODAL --- */
        .modal {
            position: fixed;
            inset: 0;
            background: rgba(12, 5, 28, 0.1);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            backdrop-filter: blur(25px);
        }

        .modal-inner {
            background: rgba(255, 255, 255, 0.05);
            padding: 6rem;
            max-width: 900px;
            width: 100%;
            border-radius: var(--border-radius);
            border: 2px solid var(--neon-lime);
            position: relative;
            text-align: center;
            animation: modalIn 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        }

        @keyframes modalIn { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .modal-nav {
            position: absolute;
            top: 50%; width: 100%; left: 0;
            display: flex; justify-content: space-between;
            padding: 0 1.5rem; transform: translateY(-50%);
            pointer-events: none;
        }

        .m-nav-btn {
            width: 65px; height: 65px; border-radius: 50%;
            border: 2px solid var(--neon-lime); background: transparent; color: var(--neon-lime);
            cursor: pointer; display: flex; align-items: center; justify-content: center;
            pointer-events: auto; transition: var(--transition); font-size: 1.5rem;
        }
        .m-nav-btn:hover { background: var(--neon-lime); color: #2A125E; box-shadow: 0 0 20px var(--neon-lime); }

        .close { position: absolute; top: 2rem; right: 2.5rem; font-size: 3.5rem; color: var(--neon-lime); cursor: pointer; line-height: 1; }

        /* --- PAST JOURNEY SLIDER --- */
        .slider-container { width: 100%; overflow: hidden; padding: 4rem 0; position: relative; }
       .slider-track { display: flex; gap: 2rem; width: max-content; animation: slide-scroll 50s linear infinite; }
       .slide { 
            width: auto; height: 240px; 
            background: var(--bg-glass); 
            border-radius: var(--border-radius); 
            flex-shrink: 0; 
            display: flex; align-items: center; justify-content: center; 
            border: 1px solid rgba(255,255,255,0.1);
            color: var(--text-soft); font-weight: 700;
        }
        @keyframes slide-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

        /* --- FOOTER --- */
        footer { background: rgba(0, 0, 0, 0.3); padding: 8rem 5% 4rem; border-top: 1px solid rgba(255, 255, 255, 0.1); }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 5rem; max-width: 1600px; margin: 0 auto; }
        .footer-links a { color: var(--text-soft); text-decoration: none; display: block; margin-bottom: 1rem; transition: var(--transition); }
        .footer-links a:hover { color: var(--neon-lime); padding-left: 5px; }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .footer-grid { grid-template-columns: 1fr; gap: 4rem; }
            .card { min-width: 400px; }
        }
        @media (max-width: 768px) {
            .card { min-width: 85vw; padding: 3rem 2rem; }
            .modal-inner { padding: 4rem 1.5rem; }
            .m-nav-btn { width: 50px; height: 50px; font-size: 1.2rem; }
            h1 { font-size: 3.5rem; }
        }

        .reveal { opacity: 0; transform: translateY(40px); transition: var(--transition); }
        .reveal.active { opacity: 1; transform: translateY(0); }


/* Container für den Glass-Effekt um das gesamte Grid */
.glass-container {
    background: var(--bg-glass);
    border-radius: 28px;
    padding: 80px 5%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Das 2x3 Grid Layout */
.grid-2x3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;

}
.grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;

}

/* Einzelne Grid Items */
.grid-item {
    height: 302px;
    border-radius: 28px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Stellt sicher, dass das Bild den Bereich füllt */
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Hover-Effekte */
.grid-item:hover {
    border-color: var(--bg-glass);
    box-shadow: 0 0 30px rgba(211, 251, 3, 0.2);
    transform: translateY(-5px);
}

.grid-item:hover img {
    transform: scale(1.01);
}

/* Responsive Anpassungen */
@media (max-width: 1024px) {
    .grid-2x3 {
        grid-template-columns: repeat(2, 1fr); /* 2 Spalten auf Tablets */
    }
}

@media (max-width: 768px) {
    .grid-2x3 {
        grid-template-columns: 1fr; /* 1 Spalte auf Mobile */
    }
    .grid-item {
        height: 250px; /* Etwas niedriger auf Mobile für bessere Proportionen */
    }
}


/* --- Navigation Pfeile Styling --- */
.h-navigation-wrapper {
    position: relative;
    width: 100%;
}

.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(12, 5, 28, 0.6);
    border: 2px solid var(--neon-lime);
    border-radius: 50%;
    color: var(--neon-lime);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-arrow:hover {
    background: var(--neon-lime);
    color: #2A125E;
    box-shadow: 0 0 25px var(--neon-lime);
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.prev { left: -28px; }
.nav-arrow.next { right: -28px; }

/* Verstecke Pfeile auf Mobile, wenn Wischen bevorzugt wird */
@media (max-width: 768px) {
    .nav-arrow { display: none; }
    .grid-2x3 { grid-template-columns: 1fr; }
    .grid-item { height: 250px; }
}

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


/* --- ZITAT SEKTION --- */
        .quote-wrapper {
            background: var(--bg-glass);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 5rem;
            display: flex;
            align-items: center;
            gap: 4rem;
            position: relative;
            overflow: hidden;
        }

        .quote-image-container {
            flex-shrink: 0;
            position: relative;
        }

        .quote-image-container img {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--neon-lime);
            box-shadow: 0 0 30px rgba(211, 251, 3, 0.2);
        }

        .quote-content {
            position: relative;
            z-index: 1;
        }

        .quote-mark {
            position: absolute;
            top: -40px;
            left: -30px;
            font-size: 10rem;
            color: var(--neon-lime);
            opacity: 0.15;
            font-family: Georgia, serif;
            line-height: 1;
        }

        blockquote {
            font-size: clamp(1.4rem, 3vw, 2.1rem);
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 2rem;
            color: var(--text-white);
        }

        cite {
            display: block;
            font-style: normal;
            font-weight: 900;
            text-transform: uppercase;
            color: var(--neon-lime);
            letter-spacing: 0.15em;
            font-size: 0.9rem;
        }
/* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .quote-wrapper { flex-direction: column; text-align: center; padding: 4rem 2rem; gap: 2.5rem; }
            .quote-mark { left: 50%; transform: translateX(-50%); top: -20px; }
        }
        @media (max-width: 768px) {
            .card { min-width: 85vw; padding: 3rem 2rem; }
            h1 { font-size: 3.5rem; }
            .section-intro { padding-left: 1rem; margin-bottom: 2rem; }
        }