:root { --bg-primary: #111111; --bg-card: #1C1C1E; --bg-card-hover: #252528; --text-primary: #F8FAFC; --text-secondary: #94A3B8; --text-muted: #64748B; --accent: #7C5CFC; --accent-glow: rgba(124, 92, 252, 0.35); --gradient-start: #FF6B6B; --gradient-mid-1: #EC4899; --gradient-mid-2: #7C5CFC; --gradient-end: #06B6D4; --success: #10B981; --danger: #EF4444; --border: rgba(255, 255, 255, 0.06); --glass-bg: rgba(28, 28, 30, 0.6); --glass-border: rgba(255, 255, 255, 0.08); --max-width: 1120px; --header-height: 72px; } *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; overflow-x: hidden; } a { color: inherit; text-decoration: none; } img { max-width: 100%; height: auto; display: block; } .container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; } .brand-gradient-text { background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid-1), var(--gradient-mid-2), var(--gradient-end)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } .ambient-glow { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; } .ambient-glow::before { content: ''; position: absolute; top: -20%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(124, 92, 252, 0.08) 0%, transparent 70%); animation: drift1 12s ease-in-out infinite alternate; } .ambient-glow::after { content: ''; position: absolute; bottom: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%); animation: drift2 10s ease-in-out infinite alternate; } @keyframes drift1 { to { transform: translate(80px, 60px); } } @keyframes drift2 { to { transform: translate(-60px, -40px); } } .site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); background: rgba(17, 17, 17, 0.8); border-bottom: 1px solid var(--border); height: var(--header-height); } .site-header .container { display: flex; align-items: center; justify-content: space-between; height: 100%; } .site-header__brand { display: flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; } .site-header__brand img { width: 36px; height: 36px; border-radius: 8px; } .site-header__nav { display: flex; align-items: center; gap: 32px; } .site-header__nav a { font-size: 14px; font-weight: 500; color: var(--text-secondary); transition: color 0.2s; } .site-header__nav a:hover { color: var(--text-primary); } .btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; border: none; text-decoration: none; } .btn--primary { background: linear-gradient(135deg, var(--gradient-mid-1), var(--accent)); color: #ffffff !important; box-shadow: 0 4px 20px var(--accent-glow); } .btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--accent-glow); } .btn--ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--glass-border); } .btn--ghost:hover { background: rgba(255, 255, 255, 0.04); color: var(--text-primary); } .hero { padding: 160px 0 100px; text-align: center; position: relative; z-index: 1; } .hero__logo { width: 100px; height: 100px; margin: 0 auto 40px; animation: logoEntrance 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards; opacity: 0; } @keyframes logoEntrance { from { opacity: 0; transform: scale(0.6) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } } .hero__title { font-size: clamp(36px, 6vw, 64px); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; animation: fadeUp 0.8s ease 0.2s forwards; opacity: 0; } .hero__subtitle { font-size: clamp(16px, 2.5vw, 20px); color: var(--text-secondary); max-width: 520px; margin: 0 auto 40px; line-height: 1.6; animation: fadeUp 0.8s ease 0.4s forwards; opacity: 0; } .hero__cta { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s ease 0.6s forwards; opacity: 0; } .hero__badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 32px; padding: 8px 18px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--glass-border); border-radius: 100px; font-size: 13px; color: var(--text-muted); animation: fadeUp 0.8s ease 0.8s forwards; opacity: 0; } .hero__badge svg { width: 14px; height: 14px; fill: #A78BFA; } @keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .section { padding: 100px 0; position: relative; z-index: 1; } .section__label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 12px; } .section__title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; } .section__desc { font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.7; } .section--centered { text-align: center; } .section--centered .section__desc { margin: 0 auto; } .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } .why-section { padding: 80px 0; } .why-card { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 24px; padding: 48px; display: flex; align-items: center; gap: 48px; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); } .why-card__number { font-size: 120px; font-weight: 900; line-height: 1; flex-shrink: 0; } .why-card__content h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; } .why-card__content p { font-size: 16px; color: var(--text-secondary); line-height: 1.7; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 48px; } .feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; text-align: center; transition: all 0.3s ease; } .feature-card:hover { background: var(--bg-card-hover); border-color: var(--glass-border); transform: translateY(-4px); } .feature-card__icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; line-height: 1; margin: 0 auto 20px; flex-shrink: 0; } .feature-card__icon--violet { background: rgba(124, 92, 252, 0.12); } .feature-card__icon--teal { background: rgba(6, 182, 212, 0.12); } .feature-card__icon--pink { background: rgba(236, 72, 153, 0.12); } .feature-card__icon--green { background: rgba(16, 185, 129, 0.12); } .feature-card__icon--orange { background: rgba(249, 115, 22, 0.12); } .feature-card__icon--blue { background: rgba(59, 130, 246, 0.12); } .feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; } .feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; } .screenshots { padding: 100px 0; } .screenshots__gallery { display: flex; gap: 24px; justify-content: center; align-items: center; margin-top: 48px; flex-wrap: wrap; } .screenshots__item { width: 280px; border-radius: 24px; overflow: hidden; border: 1px solid var(--border); transition: transform 0.4s ease, box-shadow 0.4s ease; box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3); } .screenshots__item:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 16px 60px rgba(124, 92, 252, 0.15); } .screenshots__item img { width: 100%; height: auto; } .cta-banner { text-align: center; padding: 100px 0; } .cta-banner__inner { background: linear-gradient(135deg, rgba(124, 92, 252, 0.1), rgba(6, 182, 212, 0.08)); border: 1px solid var(--glass-border); border-radius: 32px; padding: 64px 40px; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); } .cta-banner__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; } .cta-banner__desc { font-size: 16px; color: var(--text-secondary); max-width: 480px; margin: 0 auto 32px; line-height: 1.7; } .site-footer { border-top: 1px solid var(--border); padding: 40px 0; position: relative; z-index: 1; } .site-footer .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; } .site-footer__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; } .site-footer__brand img { width: 24px; height: 24px; border-radius: 6px; } .site-footer__links { display: flex; gap: 24px; } .site-footer__links a { font-size: 13px; color: var(--text-muted); transition: color 0.2s; } .site-footer__links a:hover { color: var(--text-primary); } .site-footer__copy { font-size: 13px; color: var(--text-muted); width: 100%; text-align: center; margin-top: 16px; } .legal { padding: 120px 0 80px; position: relative; z-index: 1; } .legal__back { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--text-muted); margin-bottom: 32px; transition: color 0.2s; } .legal__back:hover { color: var(--accent); } .legal__back svg { width: 16px; height: 16px; fill: currentColor; } .legal__title { font-size: clamp(32px, 5vw, 48px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; } .legal__updated { font-size: 14px; color: var(--text-muted); margin-bottom: 48px; } .legal__content { max-width: 720px; } .legal__content h2 { font-size: 22px; font-weight: 700; margin-top: 40px; margin-bottom: 12px; color: var(--text-primary); } .legal__content h3 { font-size: 17px; font-weight: 600; margin-top: 24px; margin-bottom: 8px; color: var(--text-primary); } .legal__content p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; } .legal__content ul { list-style: none; padding: 0; margin-bottom: 16px; } .legal__content ul li { font-size: 15px; color: var(--text-secondary); line-height: 1.8; padding-left: 20px; position: relative; } .legal__content ul li::before { content: '•'; position: absolute; left: 0; color: var(--accent); font-weight: bold; } .legal__content strong { color: var(--text-primary); font-weight: 600; } .legal__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; } .legal__content a:hover { color: var(--text-primary); } @media (max-width: 768px) { .why-card { flex-direction: column; text-align: center; padding: 32px 24px; gap: 24px; } .why-card__number { font-size: 80px; } .hero { padding: 130px 0 60px; } .section { padding: 60px 0; } .screenshots__gallery { gap: 16px; } .screenshots__item { width: 220px; } .site-header__nav { gap: 16px; } .site-header__nav a.nav-link--desktop { display: none; } .cta-banner__inner { padding: 40px 24px; } .features-grid { grid-template-columns: 1fr; } } @media (max-width: 480px) { .screenshots__item { width: 160px; } .site-footer .container { flex-direction: column; text-align: center; } .site-footer__links { justify-content: center; } }