Changed around line 1
+ :root {
+ --primary: #2563eb;
+ --primary-light: #3b82f6;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ --gray: #94a3b8;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background: var(--light);
+ overflow-x: hidden;
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-light));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
+ animation: pulse 15s infinite linear;
+ }
+
+ @keyframes pulse {
+ 0% { transform: rotate(0deg); }
+ 100% { transform: rotate(360deg); }
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.8rem;
+ font-weight: 700;
+ letter-spacing: -0.5px;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: var(--transition);
+ position: relative;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.9;
+ }
+
+ .nav-links a::after {
+ content: '';
+ position: absolute;
+ bottom: -4px;
+ left: 0;
+ width: 0;
+ height: 2px;
+ background: white;
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover::after {
+ width: 100%;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: 0.5rem;
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto 0;
+ padding: 0 1rem;
+ text-align: center;
+ }
+
+ .hero-content h1 {
+ font-size: 3.5rem;
+ line-height: 1.1;
+ margin-bottom: 1.5rem;
+ font-weight: 800;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ display: inline-block;
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 2rem;
+ border-radius: 0.5rem;
+ font-weight: 600;
+ text-decoration: none;
+ transition: var(--transition);
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ main {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 4rem 1rem;
+ }
+
+ section {
+ margin-bottom: 6rem;
+ }
+
+ h2 {
+ font-size: 2.25rem;
+ margin-bottom: 3rem;
+ text-align: center;
+ position: relative;
+ }
+
+ h2::after {
+ content: '';
+ position: absolute;
+ bottom: -1rem;
+ left: 50%;
+ transform: translateX(-50%);
+ width: 80px;
+ height: 4px;
+ background: var(--primary);
+ border-radius: 2px;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: white;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
+ transition: var(--transition);
+ text-align: center;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ font-size: 1.25rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card p {
+ color: var(--gray);
+ }
+
+ .code-demo {
+ background: white;
+ border-radius: 1rem;
+ padding: 2rem;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
+ }
+
+ .code-container {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ @media (max-width: 768px) {
+ .code-container {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ .code-example {
+ background: #1e293b;
+ color: #f8fafc;
+ padding: 1.5rem;
+ border-radius: 0.5rem;
+ font-family: 'Fira Code', monospace;
+ overflow-x: auto;
+ white-space: pre;
+ }
+
+ .output-preview {
+ background: #f1f5f9;
+ padding: 1.5rem;
+ border-radius: 0.5rem;
+ min-height: 200px;
+ }
+
+ .output-preview h1 {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ .output-preview p {
+ margin-bottom: 1.5rem;
+ }
+
+ .output-preview .button {
+ display: inline-block;
+ background: var(--primary);
+ color: white;
+ padding: 0.5rem 1rem;
+ border-radius: 0.25rem;
+ text-decoration: none;
+ }
+
+ footer {
+ background: var(--dark);
+ color: white;
+ padding: 3rem 1rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 2rem;
+ margin-bottom: 2rem;
+ }
+
+ .footer-links a {
+ color: white;
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ .footer-links a:hover {
+ color: var(--primary-light);
+ }
+
+ footer p {
+ opacity: 0.8;
+ max-width: 600px;
+ margin: 0 auto;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.5rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }