Changed around line 1
+ :root {
+ --primary: #0066ff;
+ --dark: #111827;
+ --light: #f3f4f6;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--dark);
+ line-height: 1.6;
+ background: #000;
+ color: #fff;
+ }
+
+ /* Navigation */
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 5%;
+ position: fixed;
+ width: 100%;
+ background: rgba(0, 0, 0, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ color: var(--primary);
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: #fff;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Buttons */
+ .cta-button {
+ background: var(--primary);
+ color: white;
+ border: none;
+ padding: 0.8rem 1.5rem;
+ border-radius: 5px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .cta-button:hover {
+ background: #0052cc;
+ transform: translateY(-2px);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 0 5%;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero-content {
+ flex: 1;
+ z-index: 2;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: linear-gradient(45deg, #fff, var(--primary));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-image {
+ flex: 1;
+ position: relative;
+ }
+
+ .abstract-shape {
+ width: 500px;
+ height: 500px;
+ background: linear-gradient(45deg, var(--primary), #00c6ff);
+ border-radius: 50%;
+ filter: blur(100px);
+ opacity: 0.3;
+ position: absolute;
+ right: -100px;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ /* Features Section */
+ .features {
+ padding: 5rem 5%;
+ background: #0a0a0a;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ background: rgba(255, 255, 255, 0.05);
+ padding: 2rem;
+ border-radius: 10px;
+ transition: var(--transition);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ background: rgba(255, 255, 255, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Benefits Section */
+ .benefits {
+ padding: 5rem 5%;
+ background: #000;
+ }
+
+ .benefits-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .benefit {
+ padding: 2rem;
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ border-radius: 10px;
+ }
+
+ /* Demo Section */
+ .demo {
+ padding: 5rem 5%;
+ background: #0a0a0a;
+ }
+
+ .demo-form {
+ max-width: 500px;
+ margin: 0 auto;
+ }
+
+ .demo-form form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .demo-form input {
+ padding: 1rem;
+ border: none;
+ border-radius: 5px;
+ background: rgba(255, 255, 255, 0.05);
+ color: #fff;
+ }
+
+ /* Footer */
+ footer {
+ padding: 3rem 5%;
+ background: #000;
+ border-top: 1px solid rgba(255, 255, 255, 0.1);
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ .footer-section a {
+ color: #fff;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-section a:hover {
+ color: var(--primary);
+ }
+
+ /* Animations */
+ @keyframes float {
+ 0%, 100% {
+ transform: translateY(0);
+ }
+ 50% {
+ transform: translateY(-20px);
+ }
+ }
+
+ /* Mobile Responsiveness */
+ .menu-toggle {
+ display: none;
+ flex-direction: column;
+ gap: 5px;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ width: 25px;
+ height: 3px;
+ background: #fff;
+ transition: var(--transition);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: flex;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .abstract-shape {
+ width: 300px;
+ height: 300px;
+ right: -50px;
+ }
+ }