Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --secondary: #1e40af;
+ --text: #1f2937;
+ --background: #ffffff;
+ --accent: #dbeafe;
+ --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ }
+
+ .navbar {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ background: var(--background);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .cta-button {
+ background: var(--gradient);
+ color: white;
+ padding: 0.8rem 1.5rem;
+ border-radius: 50px;
+ text-decoration: none;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ .hero {
+ padding: 8rem 5% 5rem;
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ align-items: center;
+ background: linear-gradient(170deg, var(--background) 60%, var(--accent));
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ background: var(--gradient);
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ margin-bottom: 2rem;
+ }
+
+ .abstract-shape {
+ width: 100%;
+ height: 400px;
+ background: var(--gradient);
+ border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
+ animation: morphing 15s ease-in-out infinite;
+ }
+
+ @keyframes morphing {
+ 0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ 50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
+ 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ }
+
+ .features, .benefits, .demo {
+ padding: 5rem 5%;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: 1rem;
+ background: white;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon-wrapper {
+ width: 60px;
+ height: 60px;
+ border-radius: 50%;
+ background: var(--accent);
+ margin-bottom: 1rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ }
+
+ .benefits-container {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .benefit {
+ text-align: center;
+ padding: 2rem;
+ }
+
+ .benefit h3 {
+ font-size: 2rem;
+ color: var(--primary);
+ margin-bottom: 1rem;
+ }
+
+ .demo-container {
+ max-width: 500px;
+ margin: 0 auto;
+ }
+
+ .demo-form {
+ background: white;
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ form {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input {
+ padding: 1rem;
+ border: 1px solid #e5e7eb;
+ border-radius: 0.5rem;
+ font-size: 1rem;
+ }
+
+ footer {
+ background: var(--gradient);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-section ul {
+ list-style: none;
+ }
+
+ .footer-section a {
+ color: white;
+ text-decoration: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero {
+ grid-template-columns: 1fr;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+ }