Changed around line 1
+ :root {
+ --primary: #4A90E2;
+ --secondary: #6C63FF;
+ --text: #2C3E50;
+ --background: #F8FAFC;
+ --white: #FFFFFF;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ color: var(--text);
+ line-height: 1.6;
+ background: var(--background);
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .nav-links a {
+ margin: 0 1rem;
+ text-decoration: none;
+ color: var(--text);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ /* Hero Section */
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 6rem 2rem 2rem;
+ background: linear-gradient(135deg, #EEF2F7 0%, #F8FAFC 100%);
+ }
+
+ .hero-content {
+ flex: 1;
+ max-width: 600px;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ -webkit-background-clip: text;
+ color: transparent;
+ }
+
+ .hero-image {
+ flex: 1;
+ position: relative;
+ }
+
+ .abstract-shape {
+ width: 400px;
+ height: 400px;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ 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%; }
+ 25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
+ 50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
+ 75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
+ 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
+ }
+
+ /* Features Section */
+ .features {
+ padding: 4rem 2rem;
+ background: var(--white);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ background: var(--background);
+ border-radius: 1rem;
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ /* Buttons */
+ .primary-button, .cta-button {
+ padding: 0.8rem 1.6rem;
+ border: none;
+ border-radius: 0.5rem;
+ background: linear-gradient(135deg, var(--primary), var(--secondary));
+ color: var(--white);
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .primary-button:hover, .cta-button:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Mobile Responsiveness */
+ .mobile-menu {
+ display: none;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .mobile-menu {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .mobile-menu span {
+ width: 25px;
+ height: 2px;
+ background: var(--text);
+ transition: 0.3s ease;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ .abstract-shape {
+ width: 250px;
+ height: 250px;
+ margin: 2rem auto;
+ }
+ }