/* Reset und Basis-Styles */ * { margin: 0; padding: 0; box-sizing: border-box; } :root { --primary-color: #3b82f6; --primary-dark: #2563eb; --secondary-color: #8b5cf6; --background: #0f172a; --surface: #1e293b; --surface-light: #334155; --text-primary: #f1f5f9; --text-secondary: #cbd5e1; --text-muted: #94a3b8; --accent: #06b6d4; --success: #22c55e; --warning: #eab308; --error: #ef4444; --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%); } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(--background); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; } /* Navigation */ .navbar { background-color: rgba(15, 23, 42, 0.95); backdrop-filter: blur(10px); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; border-bottom: 1px solid var(--surface-light); } .navbar .container { display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; } .nav-brand h1 { font-size: 1.5rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .nav-menu { display: flex; list-style: none; gap: 2rem; } .nav-menu a { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: color 0.3s; } .nav-menu a:hover { color: var(--primary-color); } /* Hero Section */ .hero { margin-top: 80px; padding: 6rem 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%); } .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; } .hero-title { font-size: 3.5rem; font-weight: 700; line-height: 1.2; margin-bottom: 1.5rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.8; } .hero-buttons { display: flex; gap: 1rem; } .btn { padding: 0.875rem 2rem; border-radius: 0.5rem; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-block; cursor: pointer; } .btn-primary { background: var(--gradient); color: white; border: none; } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); } .btn-secondary { background: transparent; color: var(--text-primary); border: 2px solid var(--primary-color); } .btn-secondary:hover { background: var(--primary-color); transform: translateY(-2px); } .screenshot-placeholder { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5); overflow: hidden; animation: float 6s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } } /* Features Section */ .features { padding: 6rem 0; background-color: var(--background); } .section-title { font-size: 2.5rem; text-align: center; margin-bottom: 1rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .section-subtitle { text-align: center; color: var(--text-secondary); font-size: 1.125rem; margin-bottom: 4rem; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background: var(--surface); padding: 2rem; border-radius: 1rem; border: 1px solid var(--surface-light); transition: all 0.3s; } .feature-card:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2); } .feature-icon { width: 3rem; height: 3rem; margin-bottom: 1.5rem; color: var(--primary-color); } .feature-icon svg { width: 100%; height: 100%; } .feature-card h3 { font-size: 1.25rem; margin-bottom: 1rem; color: var(--text-primary); } .feature-card p { color: var(--text-secondary); line-height: 1.7; } /* Workflow Section */ .workflow { padding: 6rem 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%); } .workflow-steps { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 3rem; } .workflow-step { flex: 1; background: var(--surface); padding: 2rem; border-radius: 1rem; text-align: center; border: 1px solid var(--surface-light); transition: all 0.3s; } .workflow-step:hover { transform: translateY(-5px); border-color: var(--primary-color); } .step-number { width: 3rem; height: 3rem; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 1.5rem; font-weight: 700; } .workflow-arrow { font-size: 2rem; color: var(--primary-color); flex-shrink: 0; } .workflow-step h3 { margin-bottom: 1rem; font-size: 1.25rem; } .workflow-step p { color: var(--text-secondary); } /* Technology Section */ .technology { padding: 6rem 0; background-color: var(--background); } .tech-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; } .tech-item { background: var(--surface); padding: 2rem; border-radius: 1rem; border-left: 4px solid var(--primary-color); transition: all 0.3s; } .tech-item:hover { border-left-color: var(--secondary-color); transform: translateX(5px); } .tech-item h3 { color: var(--primary-color); margin-bottom: 0.75rem; font-size: 1.25rem; } .tech-item p { color: var(--text-secondary); } /* Benefits Section */ .benefits { padding: 6rem 0; background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%); } .benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; } .benefit-item { text-align: center; padding: 2rem; } .benefit-number { font-size: 4rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1rem; } .benefit-item p { font-size: 1.125rem; color: var(--text-secondary); } /* Download Section */ .download { padding: 6rem 0; background-color: var(--background); } .download-buttons { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 3rem 0; } .download-card { background: var(--surface); padding: 2rem; border-radius: 1rem; text-align: center; border: 1px solid var(--surface-light); transition: all 0.3s; } .download-card:hover { border-color: var(--primary-color); transform: translateY(-5px); } .download-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; } .download-card p { color: var(--text-muted); margin-bottom: 1.5rem; } .btn-download { background: var(--gradient); color: white; border: none; width: 100%; } .btn-download:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3); } .installation-note { background: var(--surface); padding: 2rem; border-radius: 1rem; margin-top: 3rem; border: 1px solid var(--surface-light); } .installation-note h3 { margin-bottom: 1.5rem; color: var(--primary-color); } .code-block { background: var(--background); padding: 1.5rem; border-radius: 0.5rem; border: 1px solid var(--surface-light); overflow-x: auto; } .code-block code { color: var(--accent); font-family: 'Courier New', monospace; font-size: 0.875rem; line-height: 1.8; } /* Footer */ .footer { background-color: var(--surface); padding: 4rem 0 2rem; border-top: 1px solid var(--surface-light); } .footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; } .footer-section h3 { margin-bottom: 1rem; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .footer-section h4 { margin-bottom: 1rem; color: var(--text-primary); } .footer-section p { color: var(--text-secondary); } .footer-section ul { list-style: none; } .footer-section ul li { margin-bottom: 0.5rem; } .footer-section ul li a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s; } .footer-section ul li a:hover { color: var(--primary-color); } .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid var(--surface-light); color: var(--text-muted); } /* Responsive Design */ @media (max-width: 768px) { .hero .container { grid-template-columns: 1fr; gap: 2rem; } .hero-title { font-size: 2.5rem; } .workflow-steps { flex-direction: column; } .workflow-arrow { transform: rotate(90deg); } .nav-menu { display: none; } .features-grid { grid-template-columns: 1fr; } .download-buttons { grid-template-columns: 1fr; } } /* Scroll Animations */ .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s, transform 0.6s; } .fade-in.visible { opacity: 1; transform: translateY(0); } /* Smooth Scrolling */ html { scroll-behavior: smooth; } /* Selection */ ::selection { background-color: var(--primary-color); color: white; }