:root { --bg: #050507; --bg-elevated: #0a0b0f; --panel: rgba(255, 255, 255, 0.04); --panel2: rgba(255, 255, 255, 0.06); --border: rgba(255, 255, 255, 0.08); --text: #f4f5f9; --text-muted: rgba(244, 245, 249, 0.7); --dim: rgba(244, 245, 249, 0.5); --primary: #5ba3ff; --primary-hover: #7bb5ff; --primary-glow: rgba(91, 163, 255, 0.35); --glass: rgba(10, 12, 18, 0.85); --radius: 12px; --shadow: 0 16px 40px rgba(0, 0, 0, 0.5); } * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; background: var(--bg); overflow-x: hidden; } body { font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; min-height: 100vh; color-scheme: dark; } img { max-width: 100%; height: auto; } body, .nav, .hero, section, footer, .feature-card, .pricing-card, .faq-item, .btn-secondary, .hero-screenshot-wrap, .workflow-screenshot { background-color: transparent; } ::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg); } ::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; } ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); } .skip-link { position: absolute; top: -100px; left: 24px; z-index: 1000; padding: 12px 20px; background: var(--primary); color: #fff; font-weight: 600; border-radius: var(--radius); text-decoration: none; transition: top 0.2s ease; } .skip-link:focus { top: 16px; outline: 2px solid var(--primary-hover); outline-offset: 2px; } body::before { content: ''; position: fixed; inset: 0; background: radial-gradient(1000px 700px at 20% 10%, rgba(91, 163, 255, 0.08), transparent 50%), radial-gradient(800px 600px at 80% 80%, rgba(91, 163, 255, 0.04), transparent 50%); pointer-events: none; z-index: 0; } .particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; } .particle { position: absolute; width: 3px; height: 3px; background: var(--primary); border-radius: 50%; opacity: 0.2; animation: float 18s infinite ease-in-out; } .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 14s; } .particle:nth-child(2) { left: 25%; top: 60%; animation-delay: -2s; animation-duration: 16s; } .particle:nth-child(3) { left: 45%; top: 30%; animation-delay: -4s; animation-duration: 15s; } .particle:nth-child(4) { left: 70%; top: 80%; animation-delay: -1s; animation-duration: 17s; } .particle:nth-child(5) { left: 85%; top: 40%; animation-delay: -3s; animation-duration: 13s; } .particle:nth-child(6) { left: 55%; top: 70%; animation-delay: -5s; animation-duration: 18s; } .particle:nth-child(7) { left: 15%; top: 85%; animation-delay: -2.5s; } .particle:nth-child(8) { left: 90%; top: 15%; animation-delay: -1.5s; } @keyframes float { 0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.2; } 50% { transform: translate(20px, -30px) scale(1.1); opacity: 0.35; } } @media (prefers-reduced-motion: reduce) { .particle { animation: none; opacity: 0.2; } .reveal { transition: none; } html { scroll-behavior: auto; } } .container { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; } @media (max-width: 600px) { .container { padding: 0 16px; } } .nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 16px 0; background: rgba(5, 5, 7, 0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); } .nav-inner { display: flex; align-items: center; justify-content: space-between; min-width: 0; gap: 12px; } .logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; background: transparent; } .logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 10px; flex-shrink: 0; background: transparent; mix-blend-mode: multiply; } .logo-wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; } .logo-text { font-weight: 800; letter-spacing: -0.02em; } .logo-tagline { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; line-height: 1.2; } .nav-links { display: flex; gap: 28px; align-items: center; } .nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; } .nav-links a:hover { color: var(--primary); } .nav-cta { background: var(--primary); color: #fff !important; padding: 10px 20px; border-radius: var(--radius); font-weight: 600; } .nav-cta:hover { background: var(--primary-hover); box-shadow: 0 0 24px var(--primary-glow); } .nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 0; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; color: var(--text); } .nav-toggle-bar { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 1px; margin: 0 auto; transition: transform 0.25s ease, opacity 0.25s ease; } .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); } .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; } .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); } @media (max-width: 768px) { .nav { padding: 12px 0; padding-left: env(safe-area-inset-left); padding-right: env(safe-area-inset-right); } .nav-inner { padding-left: 0; padding-right: 0; } .logo-text { font-size: 1.1rem; } .logo-tagline { font-size: 0.65rem; } .logo-img { width: 32px; height: 32px; } .nav-toggle { display: flex; min-width: 44px; min-height: 44px; flex-shrink: 0; } .nav-links { position: fixed; top: 0; left: 0; right: 0; bottom: 0; padding: 80px 24px 24px; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); padding-bottom: max(24px, env(safe-area-inset-bottom)); background: var(--bg); border-top: none; flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; transform: translateX(100%); opacity: 0; visibility: hidden; transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s; z-index: 99; overflow-y: auto; } .nav-links.open { transform: translateX(0); opacity: 1; visibility: visible; } .nav-links a { padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid var(--border); min-height: 48px; display: flex; align-items: center; } .nav-links .nav-cta { margin-top: 16px; justify-content: center; padding: 16px 24px; } } .hero { min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 100px 24px 80px; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); padding-bottom: max(80px, env(safe-area-inset-bottom)); position: relative; z-index: 1; } @media (max-width: 768px) { .hero { padding-top: 88px; padding-left: 20px; padding-right: 20px; padding-bottom: 48px; min-height: auto; } } @media (max-width: 480px) { .hero { padding-top: 80px; padding-left: 16px; padding-right: 16px; padding-bottom: 40px; } } .hero-content { position: relative; z-index: 1; width: 100%; } .hero-badge { display: inline-block; padding: 8px 16px; background: var(--panel); border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem; color: var(--primary); margin-bottom: 24px; backdrop-filter: blur(10px); animation: fadeInUp 0.6s ease; } .hero h1 { font-size: clamp(1.875rem, 6vw, 4rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: var(--text); letter-spacing: -0.03em; animation: fadeInUp 0.6s ease 0.1s both; } .hero-tagline { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text-muted); max-width: 520px; margin: 0 auto 32px; animation: fadeInUp 0.6s ease 0.15s both; } .hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; animation: fadeInUp 0.6s ease 0.2s both; } @media (max-width: 600px) { .hero-buttons { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 24px; } .hero-buttons .btn { width: 100%; justify-content: center; } } .hero-stats { font-size: 0.9rem; color: var(--text-muted); display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; animation: fadeInUp 0.6s ease 0.25s both; } @media (max-width: 600px) { .hero-stats { gap: 12px 20px; margin-bottom: 28px; padding: 0 8px; } } @media (max-width: 480px) { .hero-stats { gap: 10px 16px; margin-bottom: 24px; font-size: 0.85rem; } } .hero-stats strong { color: var(--text); } .hero-visual { animation: fadeInUp 0.6s ease 0.3s both; } .hero-screenshot-wrap { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: transparent; box-shadow: var(--shadow); max-width: 780px; margin: 0 auto; } .hero-screenshot { width: 100%; height: auto; display: block; } .hero-screenshot-float { display: none; } @media (max-width: 768px) { .hero-screenshot-wrap { margin-left: -4px; margin-right: -4px; max-width: none; border-radius: 12px; } .hero-screenshot { max-height: 42vh; min-height: 160px; object-fit: cover; object-position: top; } } @media (max-width: 480px) { .hero-screenshot { max-height: 36vh; min-height: 140px; } } @media (min-width: 900px) { .hero-screenshot-wrap { display: grid; } .hero-screenshot { grid-column: 1; grid-row: 1; object-fit: cover; object-position: top; max-height: 360px; } .hero-screenshot-float { display: block; position: absolute; width: 48%; max-width: 300px; right: 5%; bottom: 5%; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow); z-index: 2; } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } .btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 1rem; font-weight: 600; border-radius: var(--radius); text-decoration: none; transition: all 0.25s ease; cursor: pointer; border: none; font-family: inherit; } @media (max-width: 480px) { .btn { min-height: 48px; padding: 14px 20px; font-size: 0.9375rem; } } .btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 20px var(--primary-glow); } .btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 6px 28px var(--primary-glow); } .btn-secondary { background: var(--panel); color: var(--text); border: 1px solid var(--border); } .btn-secondary:hover { border-color: var(--primary); color: var(--primary); box-shadow: 0 0 20px var(--primary-glow); } section { padding: 80px 0; position: relative; z-index: 1; } @media (max-width: 768px) { section { padding: 56px 0; } } @media (max-width: 480px) { section { padding: 40px 0; } } .section-title { text-align: center; font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 12px; color: var(--text); letter-spacing: -0.02em; } .section-subtitle { text-align: center; color: var(--text-muted); max-width: 540px; margin: 0 auto 48px; font-size: 1.05rem; } @media (max-width: 600px) { .section-subtitle { margin-bottom: 32px; font-size: 1rem; } } .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; } .reveal.visible { opacity: 1; transform: translateY(0); } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; } @media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; gap: 16px; } } .feature-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.3s ease; position: relative; contain: layout style; } @media (max-width: 480px) { .feature-card { padding: 20px; } } .feature-card:hover { border-color: rgba(91, 163, 255, 0.35); box-shadow: 0 0 32px var(--primary-glow), inset 0 1px 0 rgba(255,255,255,0.04); transform: translateY(-2px); } .feature-card:hover .feature-icon { box-shadow: 0 0 20px var(--primary-glow); } .feature-icon { width: 48px; height: 48px; background: var(--primary); color: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; flex-shrink: 0; transition: box-shadow 0.25s ease; } .feature-icon img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; } .feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; color: var(--text); } .feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; } .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 960px; margin: 0 auto 40px; } .steps-three { grid-template-columns: repeat(3, 1fr); max-width: 900px; } @media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } .steps-three { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 500px) { .steps { grid-template-columns: 1fr; } .steps-three { grid-template-columns: 1fr; } } .step { text-align: center; } .step-num { width: 48px; height: 48px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; margin: 0 auto 14px; color: #fff; box-shadow: 0 0 24px var(--primary-glow); } .step h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--text); } .step p { color: var(--text-muted); font-size: 0.9rem; } .how-trust { text-align: center; color: var(--text-muted); font-size: 0.9rem; max-width: 520px; margin: 0 auto 32px; line-height: 1.5; } .workflow-screenshot { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); background: var(--bg-elevated); box-shadow: var(--shadow); max-width: 760px; margin: 0 auto; } .workflow-screenshot img { width: 100%; height: auto; display: block; } @media (max-width: 768px) { .workflow-screenshot { margin-left: -4px; margin-right: -4px; max-width: none; border-radius: 12px; } .workflow-screenshot img { max-height: 50vh; object-fit: cover; object-position: top; } } @media (max-width: 480px) { .workflow-screenshot img { max-height: 40vh; } } .section-alt { background: var(--bg-elevated); } .who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; } @media (max-width: 560px) { .who-grid { grid-template-columns: 1fr; gap: 16px; } } .who-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: all 0.3s ease; contain: layout style; } @media (max-width: 480px) { .who-card { padding: 20px; } } .who-card:hover { border-color: rgba(91, 163, 255, 0.35); box-shadow: 0 0 24px var(--primary-glow); transform: translateY(-2px); } .who-icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; margin-bottom: 16px; color: var(--primary); background: rgba(91, 163, 255, 0.12); border-radius: var(--radius); border: 1px solid rgba(91, 163, 255, 0.2); flex-shrink: 0; } .who-icon img { width: 24px; height: 24px; object-fit: contain; flex-shrink: 0; } .who-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--text); } .who-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; } .why-list { list-style: none; max-width: 620px; margin: 0 auto; padding: 0; } .why-list li { padding: 14px 18px; margin-bottom: 10px; background: var(--panel); border: 1px solid var(--border); border-radius: 12px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.55; transition: border-color 0.25s; } .why-list li:hover { border-color: rgba(91, 163, 255, 0.3); } .why-list li strong { color: var(--text); } .trust-strip { padding: 48px 24px; background: rgba(91, 163, 255, 0.06); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); } @media (max-width: 600px) { .trust-strip { padding: 32px 16px; } } .trust-text { text-align: center; color: var(--text-muted); font-size: 0.95rem; max-width: 640px; margin: 0 auto; line-height: 1.6; } #pricing { padding: 80px 0 100px; } .pricing-grid { max-width: 400px; margin: 0 auto; } .pricing-grid-dual { max-width: 820px; grid-template-columns: repeat(2, 1fr); gap: 24px; display: grid; } @media (max-width: 700px) { .pricing-grid-dual { grid-template-columns: 1fr; gap: 20px; } } @media (max-width: 480px) { .pricing-card { padding: 24px 20px; } .pricing-card .btn { padding: 14px 16px; font-size: 0.9rem; text-align: center; } #pricing { padding: 56px 0 64px; } } .pricing-card { background: var(--panel); border: 1px solid var(--border); border-radius: 20px; padding: 32px; position: relative; transition: all 0.3s ease; } .pricing-card:hover { border-color: rgba(91, 163, 255, 0.4); box-shadow: 0 0 40px var(--primary-glow); transform: translateY(-4px); } .pricing-card.popular { border-color: var(--primary); box-shadow: 0 0 32px var(--primary-glow); } .pricing-card.popular::before { content: 'Best value'; position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.7rem; font-weight: 700; padding: 5px 14px; border-radius: 100px; letter-spacing: 0.05em; } .pricing-badge { display: inline-block; margin-bottom: 8px; font-size: 0.8rem; font-weight: 600; color: var(--primary); } .pricing-period-note { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; } .pricing-trust { text-align: center; font-size: 0.9rem; color: var(--text-muted); margin-top: 24px; max-width: 560px; margin-left: auto; margin-right: auto; } .pricing-name { font-size: 0.9rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; } .pricing-price { font-size: 2.25rem; font-weight: 800; margin-bottom: 4px; color: var(--text); } .pricing-period { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 20px; } .pricing-features { list-style: none; flex: 1; } .pricing-features li { padding: 8px 0; color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 10px; } .pricing-features li::before { content: '✓'; color: var(--primary); font-weight: 700; } .pricing-card .btn { margin-top: 24px; width: 100%; } .pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 14px; } .faq-list { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; } .faq-item { background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; overflow: hidden; transition: border-color 0.2s ease, background 0.2s ease; } .faq-item:hover { background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.12); } .faq-item.open { background: rgba(255, 255, 255, 0.06); border-color: rgba(91, 163, 255, 0.25); } .faq-q { width: 100%; padding: 20px 24px; background: none; border: none; color: var(--text); font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: inherit; line-height: 1.4; transition: color 0.2s ease; -webkit-tap-highlight-color: transparent; min-height: 56px; } .faq-q-text { flex: 1 1 0%; min-width: 0; text-align: left; } .faq-q:hover .faq-q-text { color: var(--primary); } .faq-item.open .faq-q .faq-q-text { color: var(--primary); } .faq-q:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; border-radius: 12px; } .faq-q .faq-chevron { flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: transform 0.25s ease, color 0.2s ease; } .faq-q .faq-chevron svg { width: 20px; height: 20px; display: block; } .faq-item:hover .faq-q .faq-chevron { color: var(--primary); } .faq-item.open .faq-q .faq-chevron { transform: rotate(180deg); color: var(--primary); } .faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.25s ease-out; visibility: hidden; } .faq-item.open .faq-a { grid-template-rows: 1fr; visibility: visible; } .faq-a-inner { min-height: 0; overflow: hidden; padding: 0 24px 20px; color: rgba(244, 245, 249, 0.72); font-size: 0.9375rem; line-height: 1.65; font-weight: 400; } .faq-item.open .faq-a-inner { padding-top: 4px; margin-top: -4px; padding-bottom: 24px; } .faq-a-inner a { color: var(--primary); text-decoration: none; font-weight: 500; } .faq-a-inner a:hover { text-decoration: underline; color: var(--primary-hover); } @media (max-width: 600px) { .faq-list { gap: 14px; } .faq-item { border-radius: 12px; } .faq-q { padding: 18px 16px; font-size: 0.9375rem; min-height: 52px; } .faq-q .faq-chevron svg { width: 18px; height: 18px; } .faq-a-inner { padding: 0 16px 18px; font-size: 0.875rem; } .faq-item.open .faq-a-inner { padding-top: 4px; padding-bottom: 20px; } } .support-section { padding: 48px 0 32px; background: transparent; } .support-section .section-title, .support-section .section-subtitle { color: var(--text); } .support-section .section-subtitle { margin-bottom: 1.25rem; color: var(--text-muted); } .qk-support-dropdown-container { margin-top: 1rem; text-align: center; } .qk-contact-owner-wrap { margin-top: 1.5rem; text-align: center; } .cta-section { padding: 80px 0; text-align: center; } @media (max-width: 600px) { .cta-section { padding: 48px 0; } .cta-section .btn { width: 100%; justify-content: center; } } .cta-title { font-size: clamp(1.4rem, 2.5vw, 1.85rem); font-weight: 800; margin-bottom: 10px; color: var(--text); } .cta-tagline { font-size: 1.05rem; color: var(--text-muted); margin-bottom: 24px; } footer { padding: 48px 0 24px; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); padding-bottom: max(24px, env(safe-area-inset-bottom)); border-top: 1px solid var(--border); position: relative; z-index: 1; background: transparent; } @media (max-width: 600px) { footer { padding-top: 32px; padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); padding-bottom: max(24px, env(safe-area-inset-bottom)); } .footer-grid { text-align: center; } .footer-links { justify-content: center; } .footer-trust { text-align: center; font-size: 0.85rem; line-height: 1.5; word-break: break-word; } } .footer-trust { font-size: 0.85rem; margin-bottom: 16px; } .footer-trust a { color: var(--primary); text-decoration: none; } .footer-trust a:hover { text-decoration: underline; } .footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; } @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 20px; } } .footer-brand { font-size: 1.25rem; font-weight: 800; color: var(--text); margin-bottom: 6px; } .footer-copy { color: var(--text-muted); font-size: 0.9rem; } .footer-links { display: flex; gap: 20px; } .footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; } .footer-links a:hover { color: var(--primary); } .legal-page .legal { max-width: 720px; margin: 0 auto; padding: 100px 24px 80px; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); position: relative; z-index: 1; } @media (max-width: 768px) { .legal-page .legal { padding-top: 88px; padding-left: 20px; padding-right: 20px; padding-bottom: 56px; } } @media (max-width: 480px) { .legal-page .legal { padding-top: 80px; padding-left: 16px; padding-right: 16px; padding-bottom: 40px; } } .legal h1 { font-size: 1.75rem; margin-bottom: 24px; color: var(--text); } .legal h2 { font-size: 1.125rem; margin: 28px 0 12px; color: var(--text); } .legal p, .legal li { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 12px; } .legal ul { padding-left: 24px; margin-bottom: 16px; } .legal a { color: var(--primary); text-decoration: none; } .legal a:hover { text-decoration: underline; } .legal .back { display: inline-block; margin-bottom: 24px; color: var(--text-muted); text-decoration: none; font-size: 0.9375rem; } .legal .back:hover { color: var(--text); } a:focus-visible, button:focus-visible { outline: 2px solid var(--primary); outline-offset: 2px; } .success-page .success-main { min-height: 60vh; display: flex; align-items: center; justify-content: center; padding: 48px 0; padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); } .success-card { max-width: 480px; margin: 0 auto; text-align: center; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px 32px; box-shadow: var(--shadow); } @media (max-width: 600px) { .success-page .success-main { padding-top: 88px; padding-bottom: 32px; padding-left: max(16px, env(safe-area-inset-left)); padding-right: max(16px, env(safe-area-inset-right)); } .success-card { padding: 24px 20px; } .success-card h1 { font-size: 1.25rem; } .success-form { max-width: none; } } .success-card h1 { font-size: 1.5rem; margin-bottom: 12px; } .success-muted { color: var(--text-muted); margin-bottom: 24px; font-size: 0.9375rem; } .success-icon { width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%; background: rgba(34, 197, 94, 0.2); color: #22c55e; font-size: 1.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center; } .success-icon.error { background: rgba(239, 68, 68, 0.2); color: #ef4444; } .success-spinner { width: 40px; height: 40px; margin: 0 auto 20px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: success-spin 0.8s linear infinite; } @keyframes success-spin { to { transform: rotate(360deg); } } .success-download { margin-bottom: 16px; } .success-note { font-size: 0.875rem; color: var(--dim); margin-bottom: 16px; } .success-back { color: var(--primary); text-decoration: none; font-size: 0.9375rem; } .success-back:hover { text-decoration: underline; } .success-form { display: flex; flex-direction: column; gap: 12px; max-width: 320px; margin: 0 auto 20px; text-align: left; } .success-form input[type="email"] { width: 100%; padding: 12px 16px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--bg-elevated); color: var(--text); font-size: 1rem; } .success-form input:focus { outline: 2px solid var(--primary); outline-offset: 2px; } @media print { .particles, .nav-toggle, .hero-buttons .btn-secondary, .skip-link { display: none !important; } body { background: #fff; color: #111; } .nav { background: #fff; border-color: #ddd; } .hero, section { padding: 1.5rem 0; } .feature-card, .who-card, .pricing-card, .faq-item { border-color: #ddd; background: #f9f9f9; } .btn-primary { background: #2563eb; color: #fff; } a[href="#main-content"] { display: none; } }