Changed around line 1
+ :root {
+ --primary: #4361ee;
+ --secondary: #3f37c9;
+ --accent: #4895ef;
+ --light: #f8f9fa;
+ --dark: #212529;
+ --success: #4cc9f0;
+ --gradient-start: #4361ee;
+ --gradient-end: #3a0ca3;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ html {
+ scroll-behavior: smooth;
+ font-size: 16px;
+ }
+
+ body {
+ font-family: 'Segoe UI', system-ui, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background: #fff;
+ overflow-x: hidden;
+ }
+
+ .container {
+ width: 90%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ /* Hero Section */
+ .hero {
+ background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
+ color: white;
+ padding: 1rem 0 8rem;
+ clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1.5rem 0;
+ }
+
+ .logo {
+ font-size: 2.2rem;
+ font-weight: 800;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ font-weight: 500;
+ transition: all 0.3s ease;
+ position: relative;
+ }
+
+ .nav-links a:after {
+ content: '';
+ position: absolute;
+ bottom: -5px;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: white;
+ transition: width 0.3s;
+ }
+
+ .nav-links a:hover:after {
+ width: 100%;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.6rem 1.5rem;
+ border-radius: 50px;
+ font-weight: 600;
+ transition: transform 0.3s, box-shadow 0.3s;
+ }
+
+ .cta-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 10px 20px rgba(0,0,0,0.1);
+ }
+
+ .hero-content {
+ text-align: center;
+ padding: 5rem 0 3rem;
+ max-width: 800px;
+ margin: 0 auto;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ font-weight: 800;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ letter-spacing: -1px;
+ }
+
+ .hero-content p {
+ font-size: 1.5rem;
+ opacity: 0.9;
+ margin-bottom: 2.5rem;
+ max-width: 600px;
+ margin-left: auto;
+ margin-right: auto;
+ }
+
+ .primary-button, .secondary-button {
+ display: inline-block;
+ padding: 0.9rem 2.2rem;
+ border-radius: 50px;
+ font-weight: 600;
+ font-size: 1.1rem;
+ margin: 0.5rem;
+ transition: all 0.3s ease;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ box-shadow: 0 4px 14px rgba(0,0,0,0.15);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-3px);
+ box-shadow: 0 12px 20px rgba(0,0,0,0.15);
+ }
+
+ .secondary-button {
+ background: transparent;
+ color: white;
+ border: 2px solid rgba(255,255,255,0.5);
+ }
+
+ .secondary-button:hover {
+ background: rgba(255,255,255,0.1);
+ transform: translateY(-3px);
+ }
+
+ /* Features */
+ .features {
+ padding: 6rem 0;
+ }
+
+ .features h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 4rem;
+ color: var(--secondary);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2.5rem;
+ }
+
+ .feature-card {
+ text-align: center;
+ padding: 2.5rem 1.5rem;
+ border-radius: 16px;
+ transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
+ background: white;
+ box-shadow: 0 5px 15px rgba(0,0,0,0.05);
+ border: 1px solid rgba(67, 97, 238, 0.1);
+ }
+
+ .feature-card:hover {
+ transform: translateY(-10px);
+ box-shadow: 0 15px 30px rgba(67, 97, 238, 0.15);
+ }
+
+ .feature-icon {
+ font-size: 3.5rem;
+ margin-bottom: 1.5rem;
+ display: block;
+ }
+
+ .feature-card h3 {
+ font-size: 1.5rem;
+ margin-bottom: 1rem;
+ color: var(--secondary);
+ }
+
+ .feature-card p {
+ color: #666;
+ }
+
+ /* Code Demo */
+ .code-demo {
+ padding: 6rem 0;
+ background: var(--light);
+ }
+
+ .code-demo h2 {
+ text-align: center;
+ font-size: 2.5rem;
+ margin-bottom: 3rem;
+ color: var(--secondary);
+ }
+
+ .code-container {
+ background: white;
+ border-radius: 12px;
+ overflow: hidden;
+ box-shadow: 0 10px 30px rgba(0,0,0,0.08);
+ max-width: 900px;
+ margin: 0 auto;
+ }
+
+ .code-tabs {
+ display: flex;
+ background: #f0f4ff;
+ padding: 0.5rem;
+ }
+
+ .tab-btn {
+ flex: 1;
+ padding: 1rem;
+ background: none;
+ border: none;
+ font-weight: 600;
+ color: #666;
+ cursor: pointer;
+ transition: all 0.3s;
+ border-radius: 8px;
+ }
+
+ .tab-btn.active {
+ background: white;
+ color: var(--primary);
+ box-shadow: 0 3px 10px rgba(0,0,0,0.05);
+ }
+
+ .code-example {
+ display: none;
+ padding: 2rem;
+ }
+
+ .code-example.active {
+ display: block;
+ }
+
+ .language-simoji {
+ background: #2d2d2d;
+ color: #f8f8f2;
+ padding: 1.5rem;
+ border-radius: 8px;
+ font-family: 'Fira Code', monospace;
+ font-size: 1.1rem;
+ line-height: 1.6;
+ margin-bottom: 1.5rem;
+ overflow-x: auto;
+ }
+
+ .code-output {
+ background: #f8f9fa;
+ padding: 1.5rem;
+ border-radius: 8px;
+ border-left: 4px solid var(--primary);
+ }
+
+ /* CTA Section */
+ .cta {
+ padding: 6rem 0;
+ text-align: center;
+ background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
+ color: white;
+ clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
+ margin-top: -5%;
+ padding-top: 8rem;
+ }
+
+ .cta h2 {
+ font-size: 2.8rem;
+ margin-bottom: 1.5rem;
+ }
+
+ .cta p {
+ font-size: 1.3rem;
+ max-width: 600px;
+ margin: 0 auto 2.5rem;
+ opacity: 0.9;
+ }
+
+ /* Footer */
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 4rem 0 2rem;
+ }
+
+ .footer-content {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ flex-wrap: wrap;
+ justify-content: center;
+ }
+
+ .footer-links a {
+ transition: all 0.3s;
+ font-weight: 500;
+ }
+
+ .footer-links a:hover {
+ color: var(--accent);
+ }
+
+ /* Responsive */
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero-content p {
+ font-size: 1.2rem;
+ }
+
+ .nav-links {
+ display: none;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .code-tabs {
+ flex-direction: column;
+ }
+
+ .hero {
+ clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
+ padding-bottom: 6rem;
+ }
+
+ .cta {
+ clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
+ padding-top: 6rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .primary-button, .secondary-button {
+ display: block;
+ margin: 0.8rem auto;
+ width: 80%;
+ }
+ }