Changed around line 1
+ :root {
+ --primary: #4f46e5;
+ --primary-light: #6366f1;
+ --primary-dark: #4338ca;
+ --text: #1e293b;
+ --text-light: #64748b;
+ --bg: #ffffff;
+ --bg-alt: #f8fafc;
+ --border: #e2e8f0;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ --radius: 0.5rem;
+ --transition: all 0.2s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
+ line-height: 1.6;
+ color: var(--text);
+ background: var(--bg);
+ overflow-x: hidden;
+ }
+
+ a {
+ color: var(--primary);
+ text-decoration: none;
+ transition: var(--transition);
+ }
+
+ a:hover {
+ color: var(--primary-dark);
+ }
+
+ .container {
+ width: 100%;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ }
+
+ /* Header */
+ .hero {
+ background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
+ color: white;
+ padding: 2rem 0;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ left: -50%;
+ width: 200%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
+ transform: rotate(30deg);
+ z-index: 1;
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 0;
+ position: relative;
+ z-index: 2;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: rgba(255,255,255,0.9);
+ font-weight: 500;
+ }
+
+ .nav-links a:hover {
+ color: white;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ }
+
+ .cta-button:hover {
+ background: rgba(255,255,255,0.9);
+ color: var(--primary-dark);
+ }
+
+ .hero-content {
+ padding: 5rem 0;
+ max-width: 600px;
+ position: relative;
+ z-index: 2;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ line-height: 1.2;
+ margin-bottom: 1.5rem;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ margin-bottom: 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ font-size: 1rem;
+ display: inline-block;
+ }
+
+ .primary-button:hover {
+ background: rgba(255,255,255,0.9);
+ transform: translateY(-2px);
+ box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ }
+
+ /* Features */
+ .features {
+ padding: 5rem 0;
+ background: var(--bg-alt);
+ }
+
+ .features h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2rem;
+ color: var(--text);
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ background: var(--bg);
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ transition: var(--transition);
+ text-align: center;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ width: 3rem;
+ height: 3rem;
+ margin: 0 auto 1rem;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ background: rgba(79, 70, 229, 0.1);
+ border-radius: 50%;
+ color: var(--primary);
+ }
+
+ .feature-icon svg {
+ width: 1.5rem;
+ height: 1.5rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ font-size: 1.25rem;
+ }
+
+ .feature-card p {
+ color: var(--text-light);
+ font-size: 0.9rem;
+ }
+
+ /* Code Demo */
+ .code-demo {
+ padding: 5rem 0;
+ }
+
+ .code-demo h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2rem;
+ }
+
+ .code-container {
+ display: grid;
+ grid-template-columns: 1fr;
+ gap: 2rem;
+ max-width: 900px;
+ margin: 0 auto;
+ }
+
+ @media (min-width: 768px) {
+ .code-container {
+ grid-template-columns: 1fr 1fr;
+ }
+ }
+
+ .code-example {
+ background: #1e293b;
+ color: #f8fafc;
+ padding: 1.5rem;
+ border-radius: var(--radius);
+ overflow-x: auto;
+ font-family: 'SF Mono', 'Roboto Mono', monospace;
+ font-size: 0.9rem;
+ line-height: 1.5;
+ }
+
+ .code-example code {
+ display: block;
+ white-space: pre;
+ }
+
+ .rendered-output {
+ background: white;
+ padding: 1.5rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ border: 1px solid var(--border);
+ }
+
+ /* Footer */
+ footer {
+ background: var(--bg-alt);
+ padding: 3rem 0;
+ border-top: 1px solid var(--border);
+ }
+
+ .footer-content {
+ display: flex;
+ flex-direction: column;
+ gap: 2rem;
+ align-items: center;
+ text-align: center;
+ }
+
+ .footer-links {
+ display: flex;
+ gap: 1.5rem;
+ }
+
+ .footer-links a {
+ color: var(--text-light);
+ }
+
+ .footer-links a:hover {
+ color: var(--primary);
+ }
+
+ footer p {
+ color: var(--text-light);
+ font-size: 0.9rem;
+ }
+
+ /* Responsive */
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.25rem;
+ }
+
+ .hero-content p {
+ font-size: 1rem;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content {
+ padding: 3rem 0;
+ }
+
+ .hero-content h1 {
+ font-size: 2rem;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 0.5rem;
+ }
+ }