/* --- VARIABLEN & RESET --- */
        :root {
            --bg-dark: #050505;
            --bg-gradient: linear-gradient(180deg, #050505 0%, #121212 100%);
            --accent-gradient: linear-gradient(135deg, #ffd27a 0%, #ffb86b 100%);
            --glass-bg: rgba(255, 255, 255, 0.03);
            --glass-border: rgba(255, 255, 255, 0.06);
            --glass-highlight: rgba(255, 255, 255, 0.1);
            --text-main: #eaeaea;
            --text-muted: #a0a0a0;
            --font-main: 'Inter', sans-serif;
            --container-width: 1100px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            scroll-behavior: smooth;
        }
        
        html::-webkit-scrollbar {
            display: none; /* Chrome/Safari */
        }

        body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            font-family: var(--font-main);
            background: var(--bg-gradient);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- LAYOUT UTILITIES --- */
        .container {
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        ul {
            list-style: none;
        }

        /* --- HEADER --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--glass-border);
            background: rgba(5, 5, 5, 0.7); /* Transparenter für mehr Effekt */
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .header-inner {
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 800;
            font-size: 1.25rem;
            letter-spacing: -0.02em;
        }
        
        .brand .logo {
            height: 32px;
            width: auto;
            filter: drop-shadow(0 0 8px rgba(255, 210, 122, 0.2));
        }

        /* Navigation */
        .nav {
            display: flex;
            gap: 4px;
        }

        .nav a {
            position: relative;
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 16px;
            border-radius: 99px; /* Pill shape */
            transition: color 0.3s ease, background 0.3s ease;
        }

        .nav a:hover {
            color: #fff;
            background: var(--glass-bg);
        }

        /* Aktiver Link Indikator (optional) */
        .nav a.active {
            color: #fff;
            background: var(--glass-bg);
        }

        /* --- HERO SECTION --- */
        .hero {
            padding: 140px 0 80px; /* Mehr Platz oben wegen fixed Header */
            text-align: center;
            position: relative;
        }

        /* Make page content stretch so footer stays at the bottom */
        main { flex: 1 1 auto; }

        /* Hintergrund "Glow" Effekt */
        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60%;
            height: 60%;
            background: radial-gradient(circle, rgba(255, 184, 107, 0.08) 0%, transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 16px;
            letter-spacing: -0.03em;
            background: linear-gradient(to bottom right, #ffffff, #b0b0b0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* --- FOOTER --- */
        .site-footer {
            margin-top: 80px;
            border-top: 1px solid var(--glass-border);
            padding: 40px 0;
            background: rgba(0,0,0,0.2);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .hero .lead {
            color: var(--text-muted);
            font-size: 1.125rem;
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .hero strong {
            color: #fff;
            font-weight: 600;
        }

        .cta {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 24px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
            border: 1px solid transparent;
        }

        .btn:active {
            transform: scale(0.96);
        }

        .btn.primary {
            background: var(--accent-gradient);
            color: #101010;
            box-shadow: 0 4px 12px rgba(255, 184, 107, 0.2);
        }

        .btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 184, 107, 0.3);
        }

        .btn.secondary {
            background: var(--glass-bg);
            border-color: var(--glass-border);
            color: #fff;
        }

        .btn.secondary:hover {
            background: var(--glass-highlight);
            transform: translateY(-2px);
        }

        /* --- INFO SECTION & CARDS --- */
        .info {
            padding: 60px 24px;
        }

        .info h2 {
            font-size: 2rem;
            margin-bottom: 16px;
            color: #fff;
        }

        .info > p {
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: 48px;
            font-size: 1.05rem;
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .card {
            background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
            border: 1px solid var(--glass-border);
            padding: 32px;
            border-radius: 16px;
            transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .card:hover {
            transform: translateY(-4px);
            border-color: rgba(255, 210, 122, 0.3);
            box-shadow: 0 12px 30px -10px rgba(0,0,0,0.5);
        }

        .card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .card h3::before {
            content: '';
            display: block;
            width: 8px;
            height: 8px;
            background: var(--accent-gradient);
            border-radius: 50%;
        }

        .card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* --- FOOTER --- */
         .site-footer {
            margin-top: 80px;
            border-top: 1px solid var(--glass-border);
            padding: 40px 0;
            background: rgba(0,0,0,0.2);
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .header-inner {
                flex-direction: column;
                height: auto;
                padding: 16px 0;
                gap: 16px;
            }
            
            .nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 8px;
            }

            .nav a {
                padding: 6px 12px;
                font-size: 0.85rem;
            }

            .hero h1 {
                font-size: 2.5rem;
                margin-top: 50px;
            }
            
            .hero {
                padding-top: 160px; /* Header ist höher */
            }
            
        }