@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&display=swap'); * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'JetBrains Mono', monospace; background: #0a0a0a; color: #e0e0e0; line-height: 1.6; overflow-x: hidden; } .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; } /* Header */ header { background: rgba(10, 10, 10, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid #333; position: fixed; width: 100%; top: 0; z-index: 1000; padding: 15px 0; } nav { display: flex; justify-content: space-between; align-items: center; } .logo { font-size: 1.5rem; font-weight: 700; color: #00ff88; text-shadow: 0 0 10px rgba(0, 255, 136, 0.5); } .nav-links { display: flex; gap: 30px; list-style: none; } .nav-links a { color: #e0e0e0; text-decoration: none; transition: color 0.3s ease; } .nav-links a:hover { color: #00ff88; } .beta-badge { background: linear-gradient(45deg, #ff6b35, #f7931e); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; } /* Hero Section */ .hero { min-height: 100vh; display: flex; align-items: center; background: radial-gradient(circle at 30% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%); position: relative; padding-top: 80px; } .hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .hero-text h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 20px; background: linear-gradient(135deg, #00ff88, #00cc6a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; } .hero-text .subtitle { font-size: 1.3rem; color: #b0b0b0; margin-bottom: 30px; line-height: 1.4; } .hero-text .description { font-size: 1.1rem; color: #888; margin-bottom: 40px; line-height: 1.6; } .cta-form { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 30px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); } .cta-form h3 { color: #00ff88; margin-bottom: 20px; font-size: 1.3rem; } .email-input { width: 100%; padding: 15px; background: rgba(0, 0, 0, 0.5); border: 1px solid #333; border-radius: 8px; color: #e0e0e0; font-family: inherit; font-size: 1rem; margin-bottom: 15px; transition: border-color 0.3s ease; } .email-input:focus { outline: none; border-color: #00ff88; box-shadow: 0 0 0 2px rgba(0, 255, 136, 0.2); } .cta-button { width: 100%; padding: 15px; background: linear-gradient(135deg, #00ff88, #00cc6a); color: #000; border: none; border-radius: 8px; font-family: inherit; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 1px; } .cta-button:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3); } .beta-info { font-size: 0.9rem; color: #666; margin-top: 15px; text-align: center; } /* Browser Demo */ .browser-demo { background: #161b22; border-radius: 12px; overflow: hidden; box-shadow: 0 0 30px rgba(0, 255, 136, 0.2); border: 1px solid #30363d; } .browser-header { background: #0d1117; padding: 12px 20px; display: flex; align-items: center; border-bottom: 1px solid #30363d; } .browser-dots { display: flex; gap: 8px; margin-right: 15px; } .browser-dot { width: 12px; height: 12px; border-radius: 50%; } .dot-red { background: #ff5f56; } .dot-yellow { background: #ffbd2e; } .dot-green { background: #27ca3f; } .browser-address { background: #0d1117; border: 1px solid #30363d; border-radius: 8px; padding: 6px 12px; color: #8b949e; font-size: 0.8rem; flex: 1; } .browser-content { padding: 20px; height: 350px; position: relative; overflow: hidden; } /* Game Interface */ .game-interface { display: grid; grid-template-columns: 200px 1fr; gap: 15px; height: 100%; } .game-sidebar { background: #0d1117; border: 1px solid #30363d; border-radius: 8px; padding: 15px; } .sidebar-title { color: #00ff88; font-size: 0.9rem; margin-bottom: 15px; padding-bottom: 8px; border-bottom: 1px solid #30363d; } .challenge-list { list-style: none; } .challenge-item { padding: 8px 10px; margin: 5px 0; background: #161b22; border-radius: 4px; font-size: 0.8rem; cursor: pointer; border-left: 3px solid transparent; } .challenge-item.active { border-left-color: #00ff88; background: #1a3d2a; } .difficulty { font-size: 0.7rem; color: #8b949e; } .difficulty.easy { color: #3fb950; } .difficulty.medium { color: #d29922; } .difficulty.hard { color: #f85149; } .game-main { background: #0d1117; border: 1px solid #30363d; border-radius: 8px; padding: 15px; position: relative; } .game-tabs { display: flex; gap: 5px; margin-bottom: 15px; border-bottom: 1px solid #30363d; padding-bottom: 10px; } .game-tab { padding: 5px 12px; background: #161b22; border-radius: 4px; font-size: 0.8rem; color: #8b949e; cursor: pointer; } .game-tab.active { background: #1a3d2a; color: #00ff88; } .design-canvas { background: #0d1117; border: 2px dashed #30363d; border-radius: 8px; height: 200px; position: relative; display: flex; align-items: center; justify-content: center; margin-top: 15px; } .component { position: absolute; background: #161b22; border: 2px solid #00ff88; border-radius: 6px; padding: 8px 12px; font-size: 0.8rem; cursor: move; } .component.database { top: 120px; left: 50px; border-color: #3fb950; } .component.api { top: 50px; left: 150px; border-color: #00ff88; } .component.cache { top: 120px; left: 250px; border-color: #d29922; } .connection-line { position: absolute; height: 2px; background: #00ff88; transform-origin: 0 0; z-index: -1; } .line1 { width: 120px; top: 65px; left: 200px; transform: rotate(45deg); } .line2 { width: 120px; top: 65px; left: 200px; transform: rotate(-45deg); } .metrics-panel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 15px; } .metric-box { background: #161b22; border: 1px solid #30363d; border-radius: 6px; padding: 10px; text-align: center; } .metric-value { font-size: 1.2rem; font-weight: 700; color: #00ff88; } .metric-label { font-size: 0.7rem; color: #8b949e; } /* Problem Section */ .problem { padding: 100px 0; background: rgba(255, 255, 255, 0.02); } .problem h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; color: #ff6b35; } .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; } .problem-card { background: rgba(0, 0, 0, 0.3); border: 1px solid #333; border-radius: 12px; padding: 30px; text-align: center; transition: all 0.3s ease; } .problem-card:hover { border-color: #ff6b35; transform: translateY(-5px); } .problem-icon { font-size: 3rem; margin-bottom: 20px; } .problem-card h3 { color: #ff6b35; margin-bottom: 15px; font-size: 1.3rem; } /* Solution Section */ .solution { padding: 100px 0; } .solution h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; color: #00ff88; } .solution-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .feature-list { list-style: none; } .feature-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; padding: 20px; background: rgba(0, 255, 136, 0.05); border-radius: 8px; border-left: 4px solid #00ff88; } .feature-icon { font-size: 1.5rem; color: #00ff88; margin-top: 5px; } .feature-text h4 { color: #00ff88; margin-bottom: 8px; font-size: 1.1rem; } .feature-text p { color: #b0b0b0; line-height: 1.5; } /* How It Works */ .how-it-works { padding: 100px 0; background: rgba(255, 255, 255, 0.02); } .how-it-works h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; color: #00ff88; } .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .step { background: rgba(0, 0, 0, 0.3); border: 1px solid #333; border-radius: 12px; padding: 30px; text-align: center; position: relative; } .step-number { position: absolute; top: -20px; left: 50%; transform: translateX(-50%); background: #00ff88; color: #000; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; } .step-icon { font-size: 2.5rem; margin-bottom: 20px; color: #00ff88; } .step h3 { color: #00ff88; margin-bottom: 15px; font-size: 1.3rem; } .step p { color: #b0b0b0; } /* FAQ Section */ .faq { padding: 100px 0; } .faq h2 { font-size: 2.5rem; text-align: center; margin-bottom: 60px; color: #00ff88; } .faq-list { max-width: 800px; margin: 0 auto; } .faq-item { background: rgba(0, 0, 0, 0.3); border: 1px solid #333; border-radius: 12px; padding: 25px; margin-bottom: 20px; } .faq-question { font-size: 1.2rem; color: #00ff88; margin-bottom: 15px; font-weight: 500; } .faq-answer { color: #b0b0b0; line-height: 1.6; } /* Final CTA */ .final-cta { padding: 100px 0; text-align: center; background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(255, 107, 53, 0.1)); } .final-cta h2 { font-size: 2.8rem; margin-bottom: 20px; color: #e0e0e0; } .final-cta p { font-size: 1.2rem; color: #888; margin-bottom: 40px; } .final-cta-form { max-width: 500px; margin: 0 auto; display: flex; gap: 15px; } .final-cta-form input { flex: 1; padding: 15px; background: rgba(0, 0, 0, 0.5); border: 1px solid #333; border-radius: 8px; color: #e0e0e0; font-family: inherit; font-size: 1rem; } .final-cta-form button { padding: 15px 30px; background: linear-gradient(135deg, #00ff88, #00cc6a); color: #000; border: none; border-radius: 8px; font-family: inherit; font-weight: 600; cursor: pointer; white-space: nowrap; } /* Footer */ footer { background: #000; padding: 40px 0; text-align: center; border-top: 1px solid #333; } .footer-content { color: #666; } /* Responsive */ @media (max-width: 768px) { .hero-content { grid-template-columns: 1fr; gap: 40px; } .hero-text h1 { font-size: 2.5rem; } .solution-content { grid-template-columns: 1fr; gap: 40px; } .final-cta-form { flex-direction: column; } .nav-links { display: none; } } .success-message { background: rgba(0, 255, 136, 0.1); border: 1px solid #00ff88; border-radius: 8px; padding: 15px; margin-top: 15px; color: #00ff88; text-align: center; display: none; } /* Browser UI Elements */ .component-palette { display: flex; gap: 10px; margin-bottom: 15px; } .palette-item { background: #161b22; border: 1px solid #30363d; border-radius: 4px; padding: 5px 10px; font-size: 0.7rem; cursor: grab; } .palette-item:hover { border-color: #00ff88; } .game-controls { position: absolute; bottom: 15px; right: 15px; display: flex; gap: 10px; } .game-button { background: #161b22; border: 1px solid #30363d; border-radius: 4px; padding: 5px 10px; font-size: 0.7rem; color: #e0e0e0; cursor: pointer; } .game-button.primary { background: #1a3d2a; border-color: #00ff88; color: #00ff88; } /* Coming Soon Badge */ .coming-soon { position: absolute; top: 10px; right: 10px; background: linear-gradient(45deg, #ff6b35, #f7931e); color: white; padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; z-index: 10; } @media (max-width: 400px) { .hero { padding-top: 120px; } }