Changed around line 1
+ :root {
+ --primary: #4f46e5;
+ --primary-light: #6366f1;
+ --primary-dark: #4338ca;
+ --text: #1e293b;
+ --text-light: #64748b;
+ --bg: #f8fafc;
+ --card-bg: #ffffff;
+ --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
+ --radius: 0.5rem;
+ }
+
+ * {
+ 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.5;
+ color: var(--text);
+ background-color: var(--bg);
+ }
+
+ header.hero {
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ color: white;
+ padding: 2rem 1rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ header.hero::before {
+ content: '';
+ position: absolute;
+ top: -50%;
+ right: -50%;
+ width: 100%;
+ height: 200%;
+ background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
+ transform: rotate(30deg);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: white;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 1.5rem;
+ align-items: center;
+ }
+
+ .nav-links a {
+ color: white;
+ text-decoration: none;
+ font-weight: 500;
+ transition: opacity 0.2s;
+ }
+
+ .nav-links a:hover {
+ opacity: 0.8;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.5rem 1rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ }
+
+ .hero-content {
+ max-width: 1200px;
+ margin: 4rem auto;
+ padding: 0 1rem;
+ text-align: center;
+ position: relative;
+ }
+
+ .hero-content h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ line-height: 1.2;
+ }
+
+ .hero-content p {
+ font-size: 1.25rem;
+ max-width: 700px;
+ margin: 0 auto 2rem;
+ opacity: 0.9;
+ }
+
+ .primary-button {
+ background: white;
+ color: var(--primary);
+ padding: 0.75rem 2rem;
+ border-radius: var(--radius);
+ font-weight: 600;
+ font-size: 1.1rem;
+ text-decoration: none;
+ display: inline-block;
+ transition: transform 0.2s, box-shadow 0.2s;
+ box-shadow: var(--shadow);
+ }
+
+ .primary-button:hover {
+ transform: translateY(-2px);
+ box-shadow: var(--shadow-lg);
+ }
+
+ section {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ section 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(--card-bg);
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ transition: transform 0.2s;
+ text-align: center;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .feature-card h3 {
+ margin-bottom: 1rem;
+ font-size: 1.25rem;
+ }
+
+ .feature-card p {
+ color: var(--text-light);
+ }
+
+ .doc-cards {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ }
+
+ .doc-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ border-top: 4px solid var(--primary);
+ }
+
+ .doc-card h3 {
+ margin-bottom: 1rem;
+ }
+
+ .doc-card p {
+ color: var(--text-light);
+ margin-bottom: 1.5rem;
+ }
+
+ .doc-link {
+ color: var(--primary);
+ font-weight: 600;
+ text-decoration: none;
+ display: inline-flex;
+ align-items: center;
+ }
+
+ .doc-link::after {
+ content: '→';
+ margin-left: 0.5rem;
+ transition: transform 0.2s;
+ }
+
+ .doc-link:hover::after {
+ transform: translateX(3px);
+ }
+
+ .example-tabs {
+ display: flex;
+ justify-content: center;
+ gap: 1rem;
+ margin-bottom: 2rem;
+ }
+
+ .tab-button {
+ padding: 0.75rem 1.5rem;
+ background: none;
+ border: none;
+ border-radius: var(--radius);
+ font-weight: 600;
+ cursor: pointer;
+ transition: all 0.2s;
+ }
+
+ .tab-button.active {
+ background: var(--primary);
+ color: white;
+ }
+
+ .tab-button:not(.active):hover {
+ background: rgba(79, 70, 229, 0.1);
+ }
+
+ .code-example {
+ background: #1e293b;
+ color: #f8fafc;
+ padding: 2rem;
+ border-radius: var(--radius);
+ overflow-x: auto;
+ font-family: 'Courier New', Courier, monospace;
+ }
+
+ .try-container {
+ display: grid;
+ grid-template-columns: 1fr 1fr;
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .editor, .output {
+ background: var(--card-bg);
+ padding: 1.5rem;
+ border-radius: var(--radius);
+ box-shadow: var(--shadow);
+ height: 400px;
+ }
+
+ .run-button {
+ background: var(--primary);
+ color: white;
+ padding: 1rem 2rem;
+ border: none;
+ border-radius: var(--radius);
+ font-weight: 600;
+ font-size: 1.1rem;
+ margin: 2rem auto 0;
+ display: block;
+ cursor: pointer;
+ transition: background 0.2s;
+ }
+
+ .run-button:hover {
+ background: var(--primary-dark);
+ }
+
+ footer {
+ background: var(--card-bg);
+ padding: 3rem 1rem;
+ margin-top: 4rem;
+ }
+
+ .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: 1.5rem;
+ }
+
+ .footer-links a {
+ color: var(--primary);
+ text-decoration: none;
+ font-weight: 500;
+ }
+
+ .footer-links a:hover {
+ text-decoration: underline;
+ }
+
+ @media (max-width: 768px) {
+ .hero-content h1 {
+ font-size: 2.25rem;
+ }
+
+ .try-container {
+ grid-template-columns: 1fr;
+ }
+
+ .nav-links {
+ gap: 1rem;
+ }
+ }
+
+ @media (max-width: 480px) {
+ .hero-content h1 {
+ font-size: 1.75rem;
+ }
+
+ .feature-grid, .doc-cards {
+ grid-template-columns: 1fr;
+ }
+
+ .footer-links {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }