Changed around line 1
+ :root {
+ --primary: #6366f1;
+ --primary-dark: #4f46e5;
+ --bg: #ffffff;
+ --text: #1f2937;
+ --text-light: #6b7280;
+ --border: #e5e7eb;
+ --radius: 8px;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ color: var(--text);
+ line-height: 1.5;
+ background: var(--bg);
+ }
+
+ .container {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 0 1.5rem;
+ }
+
+ /* Header & Navigation */
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ border-bottom: 1px solid var(--border);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ height: 70px;
+ padding: 0 1.5rem;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links {
+ display: flex;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ .nav-links a {
+ text-decoration: none;
+ color: var(--text);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ .nav-links a:hover {
+ color: var(--primary);
+ }
+
+ .btn-login {
+ background: var(--primary);
+ color: white !important;
+ padding: 0.5rem 1rem;
+ border-radius: var(--radius);
+ transition: background-color 0.3s;
+ }
+
+ .btn-login:hover {
+ background: var(--primary-dark);
+ }
+
+ /* Hero Section */
+ .hero {
+ padding: 8rem 0 4rem;
+ text-align: center;
+ background: linear-gradient(to bottom, #f9fafb, #ffffff);
+ }
+
+ h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(135deg, var(--primary), var(--primary-dark));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .subtitle {
+ font-size: 1.25rem;
+ color: var(--text-light);
+ max-width: 600px;
+ margin: 0 auto 2rem;
+ }
+
+ .cta-buttons {
+ display: flex;
+ gap: 1rem;
+ justify-content: center;
+ margin-bottom: 3rem;
+ }
+
+ .btn-primary, .btn-secondary {
+ padding: 0.75rem 1.5rem;
+ border-radius: var(--radius);
+ text-decoration: none;
+ font-weight: 500;
+ transition: transform 0.3s;
+ }
+
+ .btn-primary {
+ background: var(--primary);
+ color: white;
+ }
+
+ .btn-secondary {
+ background: white;
+ color: var(--primary);
+ border: 2px solid var(--primary);
+ }
+
+ .btn-primary:hover, .btn-secondary:hover {
+ transform: translateY(-2px);
+ }
+
+ /* Code Window */
+ .code-window {
+ background: #1e1e1e;
+ border-radius: var(--radius);
+ padding: 1rem;
+ max-width: 600px;
+ margin: 0 auto;
+ text-align: left;
+ box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
+ }
+
+ .window-controls {
+ display: flex;
+ gap: 0.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .window-controls span {
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ background: #ff5f56;
+ }
+
+ .window-controls span:nth-child(2) {
+ background: #ffbd2e;
+ }
+
+ .window-controls span:nth-child(3) {
+ background: #27c93f;
+ }
+
+ code {
+ color: #fff;
+ font-family: 'Monaco', monospace;
+ }
+
+ /* Features Section */
+ #features {
+ padding: 4rem 0;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ }
+
+ .feature-card {
+ padding: 2rem;
+ border-radius: var(--radius);
+ background: white;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
+ transition: transform 0.3s;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ /* Footer */
+ footer {
+ background: #f9fafb;
+ padding: 4rem 0;
+ margin-top: 4rem;
+ }
+
+ .footer-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ }
+
+ .footer-col h4 {
+ margin-bottom: 1rem;
+ }
+
+ .footer-col ul {
+ list-style: none;
+ }
+
+ .footer-col a {
+ color: var(--text-light);
+ text-decoration: none;
+ line-height: 2;
+ }
+
+ .footer-col a:hover {
+ color: var(--primary);
+ }
+
+ /* Mobile Menu */
+ .mobile-menu {
+ display: none;
+ flex-direction: column;
+ gap: 4px;
+ background: none;
+ border: none;
+ cursor: pointer;
+ padding: 4px;
+ }
+
+ .mobile-menu span {
+ width: 24px;
+ height: 2px;
+ background: var(--text);
+ transition: 0.3s;
+ }
+
+ /* Responsive Design */
+ @media (max-width: 768px) {
+ .mobile-menu {
+ display: flex;
+ }
+
+ .nav-links {
+ display: none;
+ position: absolute;
+ top: 70px;
+ left: 0;
+ right: 0;
+ background: white;
+ flex-direction: column;
+ padding: 1rem;
+ text-align: center;
+ border-bottom: 1px solid var(--border);
+ }
+
+ .nav-links.active {
+ display: flex;
+ }
+
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .subtitle {
+ font-size: 1.1rem;
+ }
+
+ .cta-buttons {
+ flex-direction: column;
+ padding: 0 1rem;
+ }
+ }