:root { --primary-color: #09BC8A; --secondary-color: #09BC8A; --accent-color: #ec4899; --bg-primary: #ffffff; --bg-secondary: #f8fafc; --text-primary: #0f172a; --text-secondary: #64748b; --text-muted: #94a3b8; --border-color: #e2e8f0; --shadow-light: 0 1px 3px 0 rgb(0 0 0 / 0.1); --shadow-medium: 0 4px 6px -1px rgb(0 0 0 / 0.1); --shadow-large: 0 20px 25px -5px rgb(0 0 0 / 0.1); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Figtree', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; } /* Navigation */ .navbar { position: fixed; top: 0; width: 100%; background: rgba(248, 250, 252, 0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); z-index: 1000; transition: all 0.3s ease; } .nav-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1rem 2rem; } .logo { display: flex; align-items: center; gap: 0.75rem; font-size: 2rem; font-weight: 700; color: var(--text-primary); text-decoration: none; } .logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; } .nav-links { display: flex; gap: 2rem; list-style: none; } .nav-links a { color: var(--text-secondary); text-decoration: none; font-weight: 500; transition: color 0.3s ease; } .nav-links a:hover { color: var(--primary-color); } .nav-actions { display: flex; gap: 1rem; align-items: center; } .btn { padding: 0.5rem 1.5rem; border-radius: 0.5rem; text-decoration: none; font-weight: 600; font-size: 0.875rem; transition: all 0.3s ease; border: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; } .btn-primary { background: var(--primary-color); color: white; } .btn-primary:hover { background: #5856eb; transform: translateY(-1px); } .btn-secondary { background: transparent; color: var(--text-secondary); border: 1px solid var(--border-color); } .btn-secondary:hover { background: var(--bg-secondary); color: var(--text-primary); } /* Hero Section */ .hero { padding: 8rem 2rem 4rem; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; min-height: 100vh; } .hero-content h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--text-primary), var(--text-secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-content .gradient-text { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .hero-content p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; } .hero-actions { display: flex; gap: 1rem; margin-bottom: 3rem; } .btn-large { padding: 1rem 2rem; font-size: 1rem; } .stats { display: flex; gap: 2rem; } .stat { text-align: left; } .stat-number { font-size: 2rem; font-weight: 800; color: var(--primary-color); margin-bottom: 0.25rem; } .stat-label { font-size: 0.875rem; color: var(--text-muted); } /* Phone Mockup */ .hero-visual { display: flex; justify-content: center; align-items: center; } .phone-container { position: relative; width: 300px; height: 600px; } .phone-frame { width: 100%; height: 100%; background: #1a1a1a; border-radius: 2.5rem; padding: 0.75rem; box-shadow: var(--shadow-large); } .phone-screen { width: 100%; height: 100%; background: #000; border-radius: 2rem; overflow: hidden; } .phone-content { background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%); height: 100%; padding: 3rem 1.5rem 1.5rem; color: white; } .app-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; } .app-logo { font-size: 1.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .add-btn { width: 36px; height: 36px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; color: white; } .moment-card { background: rgba(255, 255, 255, 0.05); border-radius: 1rem; padding: 1rem; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, 0.1); } .moment-type { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 0.5rem; } .flash { color: #ef4444; } .memory { color: #22c55e; } .forever { color: #3b82f6; } .moment-text { font-size: 0.875rem; color: #e2e8f0; margin-bottom: 0.75rem; } .moment-stats { display: flex; gap: 1rem; font-size: 0.75rem; color: #94a3b8; } /* Features Section */ .features { padding: 6rem 2rem; background: var(--bg-secondary); } .features-container { max-width: 1200px; margin: 0 auto; text-align: center; } .section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-primary); } .section-subtitle { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 4rem; max-width: 600px; margin-left: auto; margin-right: auto; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; } .feature-card { background: white; border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-light); transition: all 0.3s ease; border: 1px solid var(--border-color); } .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); } .feature-icon { width: 60px; height: 60px; border-radius: 1rem; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; margin: 0 auto 1.5rem; } .feature-icon.flash { background: linear-gradient(135deg, #ef4444, #dc2626); } .feature-icon.memory { background: linear-gradient(135deg, #22c55e, #16a34a); } .feature-icon.forever { background: linear-gradient(135deg, #3b82f6, #2563eb); } .feature-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; } .feature-description { color: var(--text-secondary); margin-bottom: 1rem; } .feature-limit { display: inline-block; background: var(--bg-secondary); color: var(--primary-color); padding: 0.25rem 0.75rem; border-radius: 1rem; font-size: 0.75rem; font-weight: 600; } /* CTA Section */ .cta { padding: 6rem 2rem; text-align: center; background: white; } .cta-container { max-width: 800px; margin: 0 auto; } .cta h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; } .cta p { font-size: 1.25rem; color: var(--text-secondary); margin-bottom: 2rem; } .download-buttons { display: flex; justify-content: center; gap: 1rem; margin-bottom: 2rem; } .download-btn { display: flex; align-items: center; gap: 0.75rem; background: var(--text-primary); color: white; padding: 0.75rem 1.5rem; border-radius: 0.75rem; text-decoration: none; transition: all 0.3s ease; } .download-btn:hover { background: #334155; transform: translateY(-2px); } .download-icon { font-size: 1.5rem; } .download-text small { display: block; font-size: 0.75rem; opacity: 0.8; } .download-text strong { font-size: 1rem; font-weight: 600; } .disabled-btn { opacity: 0.5; } /* Footer */ .footer { background: var(--text-primary); color: white; padding: 3rem 2rem 2rem; } .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; } .footer-brand { display: flex; align-items: center; gap: 0.75rem; font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; } .footer-description { color: #94a3b8; margin-bottom: 1.5rem; } .social-links { display: flex; gap: 0.75rem; } .social-link { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; color: white; text-decoration: none; transition: all 0.3s ease; } .social-link:hover { background: var(--primary-color); } .footer-section h4 { font-weight: 600; margin-bottom: 1rem; } .footer-links { list-style: none; } .footer-links li { margin-bottom: 0.5rem; } .footer-links a { color: #94a3b8; text-decoration: none; transition: color 0.3s ease; } .footer-links a:hover { color: white; } .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #334155; color: #94a3b8; } /* Responsive */ @media (max-width: 768px) { .nav-links { display: none; } .hero { grid-template-columns: 1fr; gap: 2rem; padding: 6rem 1rem 2rem; text-align: center; } .hero-content h1 { font-size: 2.5rem; } .stats { justify-content: center; } .features-grid { grid-template-columns: 1fr; } .download-buttons { flex-direction: column; align-items: center; } .footer-content { grid-template-columns: 1fr; text-align: center; } } /* Animations */ .fade-in { opacity: 0; transform: translateY(20px); animation: fadeIn 0.6s ease forwards; } @keyframes fadeIn { to { opacity: 1; transform: translateY(0); } } .phone-container { animation: float 3s ease-in-out infinite; } @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }