<style>
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            background: #000000;
            color: #ffffff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
           /*  font-size: 20px;  /* 25% bigger than default */

        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 24px 0px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(20px);
            z-index: 1000;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: #ffffff;
        }

        .logo svg {
            width: 36px;
            height: 28px;
        }

        .logo-text {
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.02em;
        }

        .nav-menu {
            display: flex;
            gap: 32px;
            align-items: center;
            list-style: none;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 20px;
            font-weight: 500;
            transition: color 0.2s;
            position: relative;
        }

        .nav-link:hover {
            color: #ffffff;
        }

        .nav-cta {
            background: #00D9E0;
            color: #000000;
            padding: 10px 20px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s;
        }

        .nav-cta:hover {
            background: #00c5d0;
            transform: translateY(-1px);
        }

        .logo-img {
            height: 55px;
            width: auto;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            /* padding: 120px 48px 80px;*/
            text-align: center;
        

        /* Add these background properties */
            background-image: url('images/chip-background.png');
            background-size: cover;
            background-position: center -20%;
            background-repeat: no-repeat;
            position: relative;
        }

        .hero-tagline {
            font-size: 18px;
            letter-spacing: 0.2em;
            color: #00D9E0;
            margin-bottom: 32px;
            font-weight: 600;
        }

        .hero h1 {
            font-size: 72px;
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 24px;
            letter-spacing: -0.03em;
        }

        .hero-subtitle {
            font-size: 22px;
            color: rgba(255, 255, 255, 1);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 48px;
        }

        .hero-cta {
            background: #00D9E0;
            color: #000000;
            padding: 14px 32px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
        }

        .hero-cta:hover {
            background: #00c5d0;
            transform: translateY(-1px);
        }

        /* Partners */
        .partners {
            margin-top: 120px;
            display: flex;
            gap: 60px;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 0.3s ease;
            flex-wrap: wrap;
        }
        
        .partners:hover {
            opacity: 1;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s ease, transform 0.3s ease;
            padding: 0px;
        }
        
        .partner-logo img {
            height: 100px;
            width: auto;
            object-fit: contain;
        }
        
        
        
        .partner-logo:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        /* Main Section */
        .main-section {
            padding: 120px 0px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            font-size: 48px;
            font-weight: 600;
            line-height: 1.2;
            margin-bottom: 24px;
            max-width: 800px;
        }

        .section-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
            max-width: 800px;
            margin-bottom: 60px;
        }

        /* Visual Section */
        .visual-section {
            position: relative;
            width: 100%;
            height: 800px;
             /*background: 
                radial-gradient(ellipse at center , rgba(0, 217, 224, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at center bottom, rgba(199, 255, 0, 0.05) 0%, transparent 50%);*/
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 120px 0;
            overflow: hidden;
        }

        .visual-content {
            position: relative;
            z-index: 10;
            text-align: center;
            max-width: 800px;
            padding: 0 48px;
        }

        .visual-title {
            font-size: 32px;
            font-weight: 600;
            margin-bottom: 24px;
            color: #00D9E0;
        }

        .visual-text {
            font-size: 32px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Light rays effect 
        .light-rays {
            position: absolute;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at center, transparent 20%, rgba(0, 217, 224, 0.03) 50%, transparent 70%),
                conic-gradient(from 0deg at 50% 50%, 
                    transparent 0deg,
                    rgba(0, 217, 224, 0.1) 10deg,
                    transparent 20deg,
                    transparent 40deg,
                    rgba(199, 255, 0, 0.05) 50deg,
                    transparent 60deg,
                    transparent 80deg,
                    rgba(0, 217, 224, 0.08) 90deg,
                    transparent 100deg,
                    transparent 120deg,
                    rgba(0, 217, 224, 0.06) 130deg,
                    transparent 140deg,
                    transparent 160deg,
                    rgba(199, 255, 0, 0.04) 170deg,
                    transparent 180deg,
                    transparent 200deg,
                    rgba(0, 217, 224, 0.1) 210deg,
                    transparent 220deg,
                    transparent 240deg,
                    rgba(0, 217, 224, 0.05) 250deg,
                    transparent 260deg,
                    transparent 280deg,
                    rgba(199, 255, 0, 0.06) 290deg,
                    transparent 300deg,
                    transparent 320deg,
                    rgba(0, 217, 224, 0.08) 330deg,
                    transparent 340deg,
                    transparent 360deg
                );
            animation: rotate 30s linear infinite;

        } */

        /* Product Section */
        .product-section {
            padding: 120px 0px;
            text-align: center;
        }

        .product-header {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 60px;
        }

        .product-showcase {
            max-width: 1000px;
            margin: 0 auto;
        }

        .product-image {
	    width: 100%;
            max-width: 400px;
            max-height: 400px;
            background: #0a0a0a;
            border-radius: 24px;
            margin: 0 auto 0px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .product-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 217, 224, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .light-center {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(0, 217, 224, 0.8) 0%, rgba(0, 217, 224, 0.4) 30%, transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.2); opacity: 1; }
        }

        .product-logo {
            font-size: 48px;
            font-weight: 700;
            color: #00D9E0;
            z-index: 1;
            position: relative;
            text-shadow: 0 0 40px rgba(0, 217, 224, 0.5);
        }

        .product-metrics {
            display: flex;
            justify-content: center;
            gap: 80px;
            margin-top: 60px;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 48px;
            font-weight: 700;
            color: #00D9E0;
            margin-bottom: 8px;
        }

        .metric-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Team Section */
        .team-section {
            padding: 120px 0px;
            background: #050505;
        }
        
        .team-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .team-header {
            font-size: 48px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        
        .team-subtitle {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 60px;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .team-member {
            text-align: center;
        }
        
        .member-placeholder {
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            margin: 0 auto 20px;
            border: 2px solid rgba(0, 217, 224, 0.3);
        }
        
        .team-member h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .member-photo {
            width: 150px;
            height: 150px;
            border-radius: 50%;  /* Macht es rund */
            object-fit: cover;   /* Schneidet Bild passend zu */
            margin: 0 auto 20px;
            display: block;
            border: 2px solid rgba(0, 217, 224, 0.3);
        }
        
        .member-role {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }
       
       

        /* CTA Section */
        .cta-section {
            padding: 200px 48px;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 56px;
            font-weight: 600;
            margin-bottom: 48px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.2;
        }

        .cta-button {
            background: #00D9E0;
            color: #000000;
            padding: 16px 40px;
            border-radius: 100px;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.2s;
            display: inline-block;
        }

        .cta-button:hover {
            background: #00c5d0;
            transform: translateY(-1px);
        }

        /* Footer */
        footer {
            padding: 60px 48px;
            text-align: center;
            color: rgba(255, 255, 255, 0.3);
            font-size: 14px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Mobile */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hero h1 {
                font-size: 48px;
            }

            .section-header {
                font-size: 32px;
            }

            .product-metrics {
                flex-direction: column;
                gap: 40px;
            }

            .partners {
                gap: 20px;
                margin-top: 80px;
            }
            
            .partner-logo img {
                height: 40px;
            }
            
            .partner-logo:nth-child(3) img {
                padding: 8px;
            }
            
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .member-placeholder {
                width: 120px;
                height: 120px;
            }
        }


        /* VIDEO */
        
        .video-header {

            font-size:40px;
        }
        
        .video-subtitle{
            font-size:20px;
        }


        .video-section {
            padding: 120px 0;  /* Kein seitliches Padding */
            background: #050505;
        }

        .video-text-container {
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            padding: 0 48px;  /* Padding nur für Text */
            margin-bottom: 60px;
        }

        .video-wrapper {
            width: 100%;  /* Volle Breite */
        }

        .video-wrapper video {
            display: block;
            width: 100%;
            height: auto;
        }

        /* Impressum Section */
        .impressum-section {
            padding: 120px 48px;
            background: #0a0a0a;
        }

        .impressum-container {
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        .impressum-section h2 {
            font-size: 48px;
            margin-bottom: 40px;
            text-align: center;
        }

        .impressum-section h3 {
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
            color: #00D9E0;
        }

        .impressum-section p {
            margin-bottom: 15px;
            line-height: 1.8;
        }



    </style>
