Changed around line 1
+ :root {
+ --primary-color: #2563eb;
+ --secondary-color: #1e40af;
+ --background-color: #f8fafc;
+ --text-color: #1e293b;
+ --card-background: #ffffff;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ background: var(--background-color);
+ }
+
+ header {
+ background: var(--card-background);
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 100;
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--text-color);
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ .hero {
+ text-align: center;
+ padding: 4rem 1rem;
+ background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
+ color: white;
+ }
+
+ .hero h1 {
+ font-size: 3rem;
+ margin-bottom: 1rem;
+ }
+
+ .cta-button {
+ background: white;
+ color: var(--primary-color);
+ border: none;
+ padding: 1rem 2rem;
+ border-radius: 2rem;
+ font-size: 1.1rem;
+ cursor: pointer;
+ margin-top: 2rem;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ }
+
+ .features {
+ padding: 4rem 1rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 2rem;
+ }
+
+ .feature-card {
+ background: var(--card-background);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ display: block;
+ }
+
+ .demo {
+ padding: 4rem 1rem;
+ background: #f1f5f9;
+ }
+
+ .stats-container {
+ max-width: 1000px;
+ margin: 2rem auto;
+ }
+
+ .stats-panel {
+ background: var(--card-background);
+ padding: 2rem;
+ border-radius: 1rem;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .folder-path {
+ font-family: monospace;
+ padding: 0.5rem;
+ background: #f1f5f9;
+ border-radius: 0.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .stats-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
+ gap: 1rem;
+ margin-bottom: 2rem;
+ }
+
+ .stat-item {
+ text-align: center;
+ padding: 1rem;
+ background: #f8fafc;
+ border-radius: 0.5rem;
+ }
+
+ .stat-label {
+ font-size: 0.9rem;
+ color: #64748b;
+ display: block;
+ }
+
+ .stat-value {
+ font-size: 1.5rem;
+ font-weight: bold;
+ color: var(--primary-color);
+ }
+
+ .visualization {
+ height: 300px;
+ background: #f1f5f9;
+ border-radius: 0.5rem;
+ margin-top: 1rem;
+ }
+
+ footer {
+ text-align: center;
+ padding: 2rem;
+ background: var(--card-background);
+ margin-top: 4rem;
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .hero h1 {
+ font-size: 2rem;
+ }
+
+ .feature-grid {
+ grid-template-columns: 1fr;
+ }
+ }