Spaces:
Running
Running
| @import "tailwindcss"; | |
| /* ============================================ | |
| DESIGN SYSTEM | |
| ============================================ */ | |
| *,*::before,*::after{margin:0;padding:0;box-sizing:border-box} | |
| :root{ | |
| /* Palette — warm light with electric indigo accent */ | |
| --bg:#FAFAF9; | |
| --bg-warm:#F5F5F0; | |
| --bg-card:#FFFFFF; | |
| --bg-elevated:#FFFFFF; | |
| --surface:rgba(0,0,0,0.02); | |
| --border:rgba(0,0,0,0.06); | |
| --border-strong:rgba(0,0,0,0.1); | |
| --text:#1A1A1A; | |
| --text-secondary:#6B6B6B; | |
| --text-tertiary:#9A9A9A; | |
| /* Accent: electric indigo → not generic purple */ | |
| --accent:#4F46E5; | |
| --accent-light:#EEF2FF; | |
| --accent-glow:rgba(79,70,229,0.12); | |
| --accent-hover:#4338CA; | |
| /* Secondary accents */ | |
| --teal:#0D9488; | |
| --teal-light:#F0FDFA; | |
| --amber:#D97706; | |
| --amber-light:#FFFBEB; | |
| --rose:#E11D48; | |
| --rose-light:#FFF1F2; | |
| /* System */ | |
| --radius-sm:8px; | |
| --radius:12px; | |
| --radius-lg:16px; | |
| --radius-xl:24px; | |
| --shadow-sm:0 1px 2px rgba(0,0,0,0.04); | |
| --shadow:0 4px 24px rgba(0,0,0,0.06); | |
| --shadow-lg:0 12px 48px rgba(0,0,0,0.08); | |
| --shadow-xl:0 24px 80px rgba(0,0,0,0.1); | |
| --shadow-glow:0 0 60px rgba(79,70,229,0.08); | |
| --transition:0.3s cubic-bezier(0.16,1,0.3,1); | |
| --transition-slow:0.6s cubic-bezier(0.16,1,0.3,1); | |
| } | |
| html{scroll-behavior:smooth;font-size:16px} | |
| body{ | |
| background:var(--bg);color:var(--text); | |
| font-family:'Instrument Sans',system-ui,sans-serif; | |
| -webkit-font-smoothing:antialiased; | |
| overflow-x:hidden;line-height:1.6; | |
| } | |
| ::selection{background:var(--accent-light);color:var(--accent)} | |
| /* ============================================ | |
| LAYOUT | |
| ============================================ */ | |
| .container{max-width:1200px;margin:0 auto;padding:0 32px} | |
| .container-sm{max-width:800px;margin:0 auto;padding:0 32px} | |
| .container-lg{max-width:1400px;margin:0 auto;padding:0 40px} | |
| section{padding:120px 0;position:relative} | |
| /* ============================================ | |
| TYPOGRAPHY | |
| ============================================ */ | |
| h1,h2,h3,h4{font-weight:600;letter-spacing:-0.02em;line-height:1.15} | |
| h1{font-size:clamp(2.75rem,6vw,4.5rem);letter-spacing:-0.035em} | |
| h2{font-size:clamp(2rem,4vw,3rem);letter-spacing:-0.03em} | |
| h3{font-size:1.25rem} | |
| .serif{font-family:'Newsreader',Georgia,serif;font-style:italic;font-weight:400} | |
| .mono{font-family:'DM Mono',monospace;font-size:0.8rem;letter-spacing:0.04em} | |
| /* ============================================ | |
| ANIMATED BACKGROUND — Hero mesh | |
| ============================================ */ | |
| .hero-bg{ | |
| position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0; | |
| } | |
| .hero-bg .mesh-orb{ | |
| position:absolute;border-radius:50%;filter:blur(100px); | |
| animation:meshFloat 20s ease-in-out infinite; | |
| } | |
| .hero-bg .mesh-orb:nth-child(1){ | |
| width:700px;height:700px; | |
| background:radial-gradient(circle,rgba(79,70,229,0.08),transparent 70%); | |
| top:-200px;right:-100px; | |
| animation-duration:22s; | |
| } | |
| .hero-bg .mesh-orb:nth-child(2){ | |
| width:500px;height:500px; | |
| background:radial-gradient(circle,rgba(13,148,136,0.06),transparent 70%); | |
| bottom:-100px;left:-100px; | |
| animation-duration:28s;animation-delay:-6s; | |
| } | |
| .hero-bg .mesh-orb:nth-child(3){ | |
| width:400px;height:400px; | |
| background:radial-gradient(circle,rgba(217,119,6,0.05),transparent 70%); | |
| top:40%;left:50%; | |
| animation-duration:25s;animation-delay:-12s; | |
| } | |
| @keyframes meshFloat{ | |
| 0%,100%{transform:translate(0,0) scale(1)} | |
| 33%{transform:translate(60px,-40px) scale(1.05)} | |
| 66%{transform:translate(-30px,50px) scale(0.97)} | |
| } | |
| /* Button shine animation */ | |
| @keyframes buttonShine{ | |
| 0%{transform:translateX(-100%) rotate(45deg)} | |
| 100%{transform:translateX(200%) rotate(45deg)} | |
| } | |
| /* Button glow pulse */ | |
| @keyframes glowPulse{ | |
| 0%,100%{opacity:0.6} | |
| 50%{opacity:1} | |
| } | |
| /* Dot grid background for sections */ | |
| .dot-grid{ | |
| position:absolute;inset:0;pointer-events:none; | |
| background-image:radial-gradient(rgba(0,0,0,0.06) 1px,transparent 1px); | |
| background-size:24px 24px; | |
| mask-image:radial-gradient(ellipse 60% 50% at 50% 50%,black,transparent); | |
| opacity:0.5; | |
| } | |
| /* ============================================ | |
| NAVIGATION | |
| ============================================ */ | |
| nav{ | |
| position:fixed;top:0;left:0;right:0;z-index:1000; | |
| background:rgba(250,250,249,0.75); | |
| backdrop-filter:blur(24px) saturate(1.8); | |
| border-bottom:1px solid rgba(102,126,234,0.1); | |
| box-shadow: | |
| 0 1px 3px rgba(0,0,0,0.04), | |
| 0 4px 16px rgba(102,126,234,0.08), | |
| 0 8px 32px rgba(0,0,0,0.04); | |
| padding:12px 0; | |
| } | |
| .nav-inner{ | |
| max-width:1200px;margin:0 auto;padding:0 32px; | |
| display:flex;align-items:center;justify-content:space-between; | |
| } | |
| .nav-logo{ | |
| display:flex;align-items:center;gap:11px; | |
| color:var(--text);text-decoration:none; | |
| padding:5px 10px 5px 5px; | |
| border-radius:14px; | |
| border:1px solid rgba(59,130,246,0.3); | |
| background:linear-gradient(135deg, rgba(255,255,255,0.92), rgba(239,246,255,0.74)); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255,255,255,0.92), | |
| 0 0 0 1px rgba(186,230,253,0.55), | |
| 0 8px 20px rgba(15,23,42,0.09); | |
| position:relative; | |
| transition: | |
| transform 0.25s cubic-bezier(0.22,1,0.36,1), | |
| box-shadow 0.25s cubic-bezier(0.22,1,0.36,1), | |
| border-color 0.25s ease; | |
| } | |
| .nav-logo-mark{ | |
| width:34px;height:34px;display:inline-flex; | |
| align-items:center;justify-content:center;flex-shrink:0; | |
| border-radius:10px;overflow:hidden; | |
| border:1px solid rgba(255,255,255,0.6); | |
| box-shadow: | |
| 0 2px 0 rgba(3,105,161,0.4), | |
| 0 10px 22px rgba(2,132,199,0.34); | |
| background:#fff; | |
| transition:transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s cubic-bezier(0.22,1,0.36,1); | |
| position:relative; | |
| } | |
| .nav-logo-mark::after{ | |
| content:'';position:absolute;inset:-8px;z-index:-1; | |
| background:radial-gradient(circle, rgba(14,165,233,0.38) 0%, rgba(14,165,233,0) 70%); | |
| opacity:0.55;filter:blur(8px); | |
| transition:opacity 0.25s ease; | |
| } | |
| .nav-logo-mark svg{ | |
| width:100%;height:100%;display:block; | |
| } | |
| .nav-logo-text{ | |
| font-family:'DM Mono',monospace; | |
| font-size:0.94rem; | |
| font-weight:600; | |
| letter-spacing:0.06em; | |
| text-transform:lowercase; | |
| background:linear-gradient(90deg, #020617 0%, #2563eb 42%, #06b6d4 100%); | |
| -webkit-background-clip:text; | |
| background-clip:text; | |
| color:transparent; | |
| text-shadow: | |
| 0 1px 0 rgba(255,255,255,0.7), | |
| 0 0 16px rgba(37,99,235,0.2); | |
| } | |
| .nav-logo:hover{ | |
| border-color:rgba(37,99,235,0.52); | |
| transform:translateY(-1px); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255,255,255,0.95), | |
| 0 0 0 1px rgba(125,211,252,0.68), | |
| 0 14px 30px rgba(37,99,235,0.2); | |
| } | |
| .nav-logo:hover .nav-logo-mark{ | |
| transform:translateY(-1px) scale(1.03); | |
| box-shadow: | |
| 0 3px 0 rgba(3,105,161,0.42), | |
| 0 14px 26px rgba(2,132,199,0.4); | |
| } | |
| .nav-logo:hover .nav-logo-mark::after{opacity:0.85} | |
| .nav-logo:hover .nav-logo-text{ | |
| background:linear-gradient(90deg, #0f172a 0%, #1d4ed8 45%, #06b6d4 100%); | |
| -webkit-background-clip:text; | |
| background-clip:text; | |
| } | |
| .nav-links{display:flex;gap:14px;align-items:center;perspective:900px} | |
| .nav-links a{ | |
| color:var(--text-secondary);text-decoration:none;font-size:0.88rem;font-weight:600; | |
| position:relative;display:inline-flex;align-items:center;justify-content:center; | |
| padding:9px 14px;border-radius:12px; | |
| border:1px solid rgba(148,163,184,0.24); | |
| background:linear-gradient(to bottom, rgba(255,255,255,0.94), rgba(248,250,252,0.86)); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255,255,255,0.95), | |
| inset 0 -1px 0 rgba(148,163,184,0.2), | |
| 0 2px 0 rgba(148,163,184,0.34), | |
| 0 10px 18px rgba(15,23,42,0.08); | |
| transform:translateY(0) rotateX(0deg); | |
| transition: | |
| transform 0.24s cubic-bezier(0.22,1,0.36,1), | |
| box-shadow 0.24s cubic-bezier(0.22,1,0.36,1), | |
| color 0.24s ease, | |
| border-color 0.24s ease; | |
| overflow:hidden; | |
| } | |
| .nav-links a::before{ | |
| content:'';position:absolute;left:8%;right:8%;top:2px;height:40%; | |
| border-radius:999px; | |
| background:linear-gradient(to bottom, rgba(255,255,255,0.95), rgba(255,255,255,0)); | |
| opacity:0.7;pointer-events:none; | |
| } | |
| .nav-links a::after{ | |
| content:'';position:absolute;inset:0;border-radius:inherit; | |
| background:linear-gradient(135deg, rgba(99,102,241,0.08), rgba(56,189,248,0.08)); | |
| opacity:0;transition:opacity 0.24s ease;pointer-events:none; | |
| } | |
| .nav-links a:hover{ | |
| color:var(--text); | |
| border-color:rgba(99,102,241,0.42); | |
| transform:translateY(-2px) rotateX(7deg); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255,255,255,0.95), | |
| inset 0 -1px 0 rgba(129,140,248,0.2), | |
| 0 4px 0 rgba(99,102,241,0.3), | |
| 0 14px 24px rgba(67,56,202,0.18); | |
| } | |
| .nav-links a:hover::after{opacity:1} | |
| .nav-links a:active{ | |
| transform:translateY(1px) rotateX(0deg); | |
| box-shadow: | |
| inset 0 1px 0 rgba(255,255,255,0.95), | |
| inset 0 -1px 0 rgba(148,163,184,0.2), | |
| 0 1px 0 rgba(99,102,241,0.28), | |
| 0 6px 12px rgba(15,23,42,0.12); | |
| } | |
| .nav-links a:focus-visible{ | |
| outline:none; | |
| box-shadow: | |
| 0 0 0 3px rgba(99,102,241,0.22), | |
| inset 0 1px 0 rgba(255,255,255,0.95), | |
| inset 0 -1px 0 rgba(148,163,184,0.2), | |
| 0 2px 0 rgba(99,102,241,0.32), | |
| 0 10px 18px rgba(67,56,202,0.16); | |
| } | |
| .btn{ | |
| display:inline-flex;align-items:center;gap:8px; | |
| padding:10px 22px;border-radius:var(--radius); | |
| font-weight:600;font-size:0.9rem;cursor:pointer; | |
| transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);border:none; | |
| font-family:inherit;text-decoration:none;position:relative; | |
| overflow:hidden; | |
| } | |
| /* 3D Primary Button — Silicon Valley Style */ | |
| .btn-primary { | |
| background: linear-gradient(to bottom, #6366f1, #4338ca); | |
| color: white; | |
| border: 1px solid #3730a3; | |
| box-shadow: | |
| 0 1px 2px rgba(0, 0, 0, 0.1), | |
| 0 4px 0 #312e81, | |
| 0 6px 12px rgba(67, 56, 202, 0.3), | |
| inset 0 1px 1px rgba(255, 255, 255, 0.4); | |
| transform: translateY(0); | |
| transition: transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.15s cubic-bezier(0.34, 1.56, 0.64, 1); | |
| text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); | |
| position: relative; | |
| overflow: visible; | |
| } | |
| .btn-primary::after { | |
| content: ''; | |
| position: absolute; | |
| inset: -6px; | |
| background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899); | |
| filter: blur(16px); | |
| z-index: -1; | |
| opacity: 0; | |
| border-radius: calc(var(--radius) + 6px); | |
| transition: opacity 0.3s ease; | |
| } | |
| .btn-primary:hover { | |
| background: linear-gradient(to bottom, #6b6eff, #4f46e5); | |
| transform: translateY(-2px); | |
| box-shadow: | |
| 0 1px 2px rgba(0, 0, 0, 0.1), | |
| 0 6px 0 #312e81, | |
| 0 10px 20px rgba(67, 56, 202, 0.4), | |
| inset 0 1px 1px rgba(255, 255, 255, 0.5); | |
| } | |
| .btn-primary:hover::after { | |
| opacity: 0.6; | |
| } | |
| .btn-primary:active { | |
| transform: translateY(4px); | |
| box-shadow: | |
| 0 0 0 rgba(0, 0, 0, 0.1), | |
| 0 0 0 #312e81, | |
| 0 2px 4px rgba(67, 56, 202, 0.2), | |
| inset 0 2px 4px rgba(0, 0, 0, 0.2); | |
| } | |
| /* 3D Ghost Button — Glassmorphism Style */ | |
| .btn-ghost{ | |
| background:rgba(255,255,255,0.8); | |
| backdrop-filter:blur(10px) saturate(1.2); | |
| color:var(--text); | |
| border:1px solid rgba(0,0,0,0.1); | |
| box-shadow: | |
| 0 1px 2px rgba(0,0,0,0.04), | |
| 0 4px 12px rgba(0,0,0,0.06), | |
| inset 0 1px 1px rgba(255,255,255,0.5); | |
| transform-style:preserve-3d; | |
| } | |
| .btn-ghost::before{ | |
| content:'';position:absolute;inset:0; | |
| background:linear-gradient(135deg, rgba(102,126,234,0.1) 0%, rgba(118,75,162,0.05) 100%); | |
| opacity:0;transition:opacity 0.4s ease; | |
| border-radius:var(--radius); | |
| } | |
| .btn-ghost:hover{ | |
| background:rgba(255,255,255,0.95); | |
| border-color:rgba(102,126,234,0.3); | |
| transform:translateY(-2px) scale(1.02); | |
| box-shadow: | |
| 0 2px 4px rgba(0,0,0,0.06), | |
| 0 8px 20px rgba(102,126,234,0.15), | |
| inset 0 1px 2px rgba(255,255,255,0.6); | |
| } | |
| .btn-ghost:hover::before{opacity:1} | |
| .btn-ghost:active{ | |
| transform:translateY(0px) scale(0.98); | |
| box-shadow: | |
| 0 1px 2px rgba(0,0,0,0.08), | |
| inset 0 2px 6px rgba(0,0,0,0.1); | |
| } | |
| /* Premium Button — Animated Gradient Border */ | |
| .btn-premium{ | |
| background:linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
| background-size:200% 200%; | |
| color:white; | |
| box-shadow: | |
| 0 2px 8px rgba(102,126,234,0.15), | |
| 0 6px 20px rgba(118,75,162,0.2), | |
| 0 12px 40px rgba(240,147,251,0.15), | |
| inset 0 -2px 10px rgba(0,0,0,0.2), | |
| inset 0 1px 2px rgba(255,255,255,0.25); | |
| border:2px solid transparent; | |
| position:relative; | |
| background-clip:padding-box; | |
| animation:gradientShift 4s ease infinite; | |
| } | |
| .btn-premium::before{ | |
| content:'';position:absolute;inset:-2px; | |
| background:linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea); | |
| background-size:300% 300%; | |
| border-radius:var(--radius);z-index:-1; | |
| animation:borderRotate 4s linear infinite; | |
| } | |
| .btn-premium::after{ | |
| content:'';position:absolute;inset:-4px; | |
| background:linear-gradient(45deg, #667eea, #764ba2, #f093fb, #667eea); | |
| background-size:300% 300%; | |
| border-radius:var(--radius);z-index:-2; | |
| filter:blur(20px);opacity:0.7; | |
| animation:borderRotate 4s linear infinite, glowPulse 2s ease-in-out infinite; | |
| } | |
| .btn-premium:hover{ | |
| transform:translateY(-3px) scale(1.03); | |
| box-shadow: | |
| 0 4px 12px rgba(102,126,234,0.25), | |
| 0 12px 30px rgba(118,75,162,0.3), | |
| 0 20px 60px rgba(240,147,251,0.25), | |
| inset 0 -3px 12px rgba(0,0,0,0.25), | |
| inset 0 2px 3px rgba(255,255,255,0.3); | |
| animation:gradientShift 2s ease infinite; | |
| } | |
| .btn-premium:active{ | |
| transform:translateY(-1px) scale(1); | |
| box-shadow: | |
| 0 2px 8px rgba(102,126,234,0.25), | |
| 0 6px 20px rgba(118,75,162,0.3), | |
| inset 0 2px 10px rgba(0,0,0,0.3); | |
| } | |
| @keyframes borderRotate{ | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } | |
| @keyframes gradientShift{ | |
| 0%{background-position:0% 50%} | |
| 50%{background-position:100% 50%} | |
| 100%{background-position:0% 50%} | |
| } | |
| .btn-lg{padding:14px 32px;font-size:1rem;border-radius:var(--radius-lg)} | |
| .btn-icon{width:20px;height:20px;transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1)} | |
| .btn:hover .btn-icon{transform:translateX(4px) scale(1.1)} | |
| /* ============================================ | |
| 1. HERO SECTION | |
| ============================================ */ | |
| .hero{ | |
| min-height:100vh;display:flex;align-items:center; | |
| padding-top:100px;padding-bottom:80px;position:relative; | |
| } | |
| .hero-content{position:relative;z-index:2;max-width:1200px;margin:0 auto;padding:0 32px} | |
| .hero-top{ | |
| display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center; | |
| } | |
| .hero-badge{ | |
| display:inline-flex;align-items:center;gap:8px; | |
| padding:6px 16px 6px 8px;border-radius:100px; | |
| background:var(--bg-card);border:1px solid var(--border); | |
| box-shadow:var(--shadow-sm); | |
| font-size:0.85rem;color:var(--text-secondary);font-weight:500; | |
| margin-bottom:24px; | |
| animation:fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.1s both; | |
| } | |
| .badge-dot{ | |
| width:8px;height:8px;border-radius:50%; | |
| background:var(--teal); | |
| box-shadow:0 0 8px rgba(13,148,136,0.4); | |
| animation:badgePulse 2.5s ease-in-out infinite; | |
| } | |
| @keyframes badgePulse{0%,100%{opacity:1}50%{opacity:0.4}} | |
| .hero h1{ | |
| margin-bottom:20px; | |
| animation:fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s both; | |
| } | |
| .hero h1 em{ | |
| font-family:'Newsreader',Georgia,serif;font-style:italic;font-weight:400; | |
| background:linear-gradient(135deg,var(--accent),var(--teal)); | |
| background-size:200% 200%; | |
| -webkit-background-clip:text;-webkit-text-fill-color:transparent; | |
| animation:gradientShift 5s ease-in-out infinite; | |
| } | |
| @keyframes gradientShift{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}} | |
| .hero-desc{ | |
| font-size:1.15rem;color:var(--text-secondary);max-width:500px;line-height:1.7; | |
| margin-bottom:36px; | |
| animation:fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.35s both; | |
| } | |
| .hero-actions{ | |
| display:flex;gap:12px;flex-wrap:wrap; | |
| animation:fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.5s both; | |
| } | |
| @keyframes fadeUp{ | |
| from{opacity:0;transform:translateY(24px)} | |
| to{opacity:1;transform:translateY(0)} | |
| } | |
| /* Hero Right — Floating OS-like UI */ | |
| .hero-visual{ | |
| position:relative; | |
| animation:fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both; | |
| } | |
| /* OS-style chat window */ | |
| .chat-window{ | |
| background:var(--bg-card);border:1px solid var(--border); | |
| border-radius:var(--radius-xl);box-shadow:var(--shadow-xl); | |
| overflow:hidden;position:relative; | |
| } | |
| .chat-titlebar{ | |
| display:flex;align-items:center;gap:8px; | |
| padding:16px 20px;border-bottom:1px solid var(--border); | |
| background:rgba(0,0,0,0.01); | |
| } | |
| .chat-dots{display:flex;gap:6px} | |
| .chat-dots span{width:10px;height:10px;border-radius:50%} | |
| .chat-dots span:nth-child(1){background:#FF5F57} | |
| .chat-dots span:nth-child(2){background:#FEBC2E} | |
| .chat-dots span:nth-child(3){background:#28C840} | |
| .chat-title{ | |
| flex:1;text-align:center;font-size:0.8rem;color:var(--text-tertiary);font-weight:500; | |
| } | |
| .chat-body{padding:24px;display:flex;flex-direction:column;gap:16px} | |
| .chat-msg{ | |
| max-width:80%;padding:12px 16px;border-radius:16px; | |
| font-size:0.9rem;line-height:1.5; | |
| opacity:0;animation:msgAppear 0.5s ease forwards; | |
| } | |
| .chat-msg.user{ | |
| align-self:flex-end; | |
| background:var(--accent);color:white; | |
| border-bottom-right-radius:4px; | |
| } | |
| .chat-msg.bot{ | |
| align-self:flex-start; | |
| background:var(--bg-warm);color:var(--text); | |
| border-bottom-left-radius:4px; | |
| } | |
| .chat-msg:nth-child(1){animation-delay:0.8s} | |
| .chat-msg:nth-child(2){animation-delay:1.5s} | |
| .chat-msg:nth-child(3){animation-delay:2.4s} | |
| .chat-msg:nth-child(4){animation-delay:3.2s} | |
| .chat-msg:nth-child(5){animation-delay:4s} | |
| @keyframes msgAppear{ | |
| from{opacity:0;transform:translateY(10px) scale(0.95)} | |
| to{opacity:1;transform:translateY(0) scale(1)} | |
| } | |
| .chat-input{ | |
| display:flex;align-items:center;gap:12px; | |
| padding:16px 20px;border-top:1px solid var(--border); | |
| } | |
| .chat-input-field{ | |
| flex:1;padding:10px 16px;border-radius:12px; | |
| background:var(--bg-warm);border:1px solid var(--border); | |
| font-size:0.85rem;color:var(--text-tertiary); | |
| font-family:inherit; | |
| } | |
| .chat-send{ | |
| width:36px;height:36px;border-radius:10px; | |
| background:var(--accent);border:none;cursor:pointer; | |
| display:flex;align-items:center;justify-content:center; | |
| transition:all var(--transition); | |
| } | |
| .chat-send:hover{background:var(--accent-hover);transform:scale(1.05)} | |
| .chat-send svg{width:16px;height:16px;color:white} | |
| /* Floating stat cards around chat window */ | |
| .float-stat{ | |
| position:absolute; | |
| background:var(--bg-card);border:1px solid var(--border); | |
| border-radius:var(--radius);padding:14px 18px; | |
| box-shadow:var(--shadow-lg); | |
| display:flex;align-items:center;gap:10px; | |
| font-size:0.85rem;font-weight:500; | |
| animation:floatCard 5s ease-in-out infinite; | |
| z-index:10; | |
| transition:transform var(--transition); | |
| } | |
| .float-stat:hover{transform:translateY(-4px) } | |
| .float-stat .stat-icon{ | |
| width:36px;height:36px;border-radius:10px; | |
| display:flex;align-items:center;justify-content:center; | |
| font-size:1rem; | |
| } | |
| .float-stat.s1{top:-20px;right:-20px;animation-delay:0s} | |
| .float-stat.s1 .stat-icon{background:var(--teal-light);color:var(--teal)} | |
| .float-stat.s2{bottom:60px;left:-30px;animation-delay:-2s} | |
| .float-stat.s2 .stat-icon{background:var(--amber-light);color:var(--amber)} | |
| .float-stat.s3{bottom:-10px;right:40px;animation-delay:-4s} | |
| .float-stat.s3 .stat-icon{background:var(--accent-light);color:var(--accent)} | |
| @keyframes floatCard{ | |
| 0%,100%{transform:translateY(0)} | |
| 50%{transform:translateY(-8px)} | |
| } | |
| .float-stat .stat-val{font-weight:700;color:var(--text)} | |
| .float-stat .stat-lbl{color:var(--text-tertiary);font-size:0.75rem} | |
| /* ============================================ | |
| 2. TRUST BAR | |
| ============================================ */ | |
| .trust{ | |
| padding:60px 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border); | |
| background:var(--bg-warm); | |
| } | |
| .trust-inner{ | |
| display:flex;align-items:center;justify-content:center;gap:48px;flex-wrap:wrap; | |
| } | |
| .trust-item{ | |
| display:flex;align-items:center;gap:8px; | |
| color:var(--text-tertiary);font-size:0.9rem;font-weight:500; | |
| transition:color var(--transition); | |
| } | |
| .trust-item:hover{color:var(--text-secondary)} | |
| .trust-icon{font-size:1.2rem} | |
| .trust-divider{width:1px;height:24px;background:var(--border);flex-shrink:0} | |
| /* ============================================ | |
| SECTION HEADERS | |
| ============================================ */ | |
| .s-header{text-align:center;margin-bottom:64px} | |
| .s-label{ | |
| display:inline-flex;align-items:center;gap:8px; | |
| font-family:'DM Mono',monospace;font-size:0.78rem; | |
| color:var(--accent);text-transform:uppercase;letter-spacing:0.12em; | |
| margin-bottom:16px;font-weight:500; | |
| } | |
| .s-label::before,.s-label::after{content:'';width:16px;height:1px;background:var(--accent);opacity:0.3} | |
| .s-desc{ | |
| font-size:1.1rem;color:var(--text-secondary);max-width:560px; | |
| margin:16px auto 0;line-height:1.7; | |
| } | |
| /* ============================================ | |
| 3. CAPABILITIES (VK Bot features) | |
| ============================================ */ | |
| .capabilities{background:var(--bg)} | |
| .cap-grid{ | |
| display:grid;grid-template-columns:repeat(3,1fr);gap:20px; | |
| } | |
| .cap-card{ | |
| background:var(--bg-card);border:1px solid var(--border); | |
| border-radius:var(--radius-lg);padding:36px; | |
| position:relative;overflow:hidden; | |
| transition:all 0.5s cubic-bezier(0.16,1,0.3,1); | |
| } | |
| .cap-card::before{ | |
| content:'';position:absolute;top:0;left:0;right:0;height:3px; | |
| background:linear-gradient(90deg,var(--accent),var(--teal)); | |
| opacity:0;transition:opacity 0.4s; | |
| } | |
| .cap-card:hover{ | |
| transform:translateY(-6px); | |
| box-shadow:var(--shadow-lg); | |
| border-color:rgba(79,70,229,0.15); | |
| } | |
| .cap-card:hover::before{opacity:1} | |
| .cap-icon{ | |
| width:48px;height:48px;border-radius:var(--radius); | |
| display:flex;align-items:center;justify-content:center; | |
| font-size:1.35rem;margin-bottom:20px; | |
| } | |
| .cap-icon.c1{background:var(--accent-light)} | |
| .cap-icon.c2{background:var(--teal-light)} | |
| .cap-icon.c3{background:var(--amber-light)} | |
| .cap-icon.c4{background:var(--rose-light)} | |
| .cap-icon.c5{background:#F0F9FF} | |
| .cap-icon.c6{background:#FDF4FF} | |
| .cap-card h3{margin-bottom:10px} | |
| .cap-card p{color:var(--text-secondary);font-size:0.92rem;line-height:1.65} | |
| /* Glow effect on hover */ | |
| .cap-card .card-glow{ | |
| position:absolute;width:200px;height:200px;border-radius:50%; | |
| background:radial-gradient(circle,var(--accent-glow),transparent 70%); | |
| pointer-events:none;opacity:0;transition:opacity 0.4s; | |
| top:var(--gy,-50px);left:var(--gx,-50px);transform:translate(-50%,-50%); | |
| } | |
| .cap-card:hover .card-glow{opacity:1} | |
| /* ============================================ | |
| 4. AI BOTS ADVANTAGES | |
| ============================================ */ | |
| .ai-section{background:var(--bg-warm);overflow:hidden} | |
| .ai-layout{ | |
| display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center; | |
| } | |
| .ai-features{display:flex;flex-direction:column;gap:24px} | |
| .ai-feat{ | |
| display:flex;gap:16px;padding:20px; | |
| border-radius:var(--radius); | |
| transition:all var(--transition);cursor:default; | |
| } | |
| .ai-feat:hover{background:rgba(79,70,229,0.03)} | |
| .ai-feat-num{ | |
| width:36px;height:36px;border-radius:10px; | |
| background:var(--accent-light);color:var(--accent); | |
| display:flex;align-items:center;justify-content:center; | |
| font-family:'DM Mono',monospace;font-size:0.8rem;font-weight:600; | |
| flex-shrink:0; | |
| } | |
| .ai-feat h3{margin-bottom:6px;font-size:1.05rem} | |
| .ai-feat p{color:var(--text-secondary);font-size:0.9rem;line-height:1.6} | |
| /* AI Visual — Terminal-like */ | |
| .ai-visual{position:relative} | |
| .ai-terminal{ | |
| background:var(--text);border-radius:var(--radius-xl); | |
| overflow:hidden;box-shadow:var(--shadow-xl); | |
| } | |
| .ai-terminal-bar{ | |
| display:flex;align-items:center;gap:8px; | |
| padding:14px 18px;background:rgba(255,255,255,0.05); | |
| } | |
| .ai-terminal-bar .td{width:10px;height:10px;border-radius:50%} | |
| .ai-terminal-bar .td:nth-child(1){background:#FF5F57} | |
| .ai-terminal-bar .td:nth-child(2){background:#FEBC2E} | |
| .ai-terminal-bar .td:nth-child(3){background:#28C840} | |
| .ai-terminal-bar span{flex:1;text-align:center;font-size:0.72rem;color:rgba(255,255,255,0.3);font-family:'DM Mono',monospace} | |
| .ai-terminal-body{ | |
| padding:28px;font-family:'DM Mono',monospace;font-size:0.82rem;line-height:2;color:rgba(255,255,255,0.7); | |
| } | |
| .t-prompt{color:#34D399} | |
| .t-cmd{color:#818CF8} | |
| .t-out{color:rgba(255,255,255,0.5)} | |
| .t-hl{color:#FCD34D} | |
| .t-success{color:#34D399} | |
| .t-cursor{ | |
| display:inline-block;width:7px;height:14px;background:#818CF8; | |
| vertical-align:middle;animation:blink 1s step-end infinite;margin-left:3px; | |
| } | |
| @keyframes blink{50%{opacity:0}} | |
| .ai-term-line{opacity:0;animation:termLine 0.4s ease forwards} | |
| .ai-term-line:nth-child(1){animation-delay:0.3s} | |
| .ai-term-line:nth-child(2){animation-delay:0.9s} | |
| .ai-term-line:nth-child(3){animation-delay:1.5s} | |
| .ai-term-line:nth-child(4){animation-delay:2.1s} | |
| .ai-term-line:nth-child(5){animation-delay:2.7s} | |
| .ai-term-line:nth-child(6){animation-delay:3.3s} | |
| .ai-term-line:nth-child(7){animation-delay:3.9s} | |
| @keyframes termLine{to{opacity:1}} | |
| /* ============================================ | |
| 5. INTEGRATIONS | |
| ============================================ */ | |
| .integrations{background:var(--bg);position:relative} | |
| .int-grid{ | |
| display:flex;flex-wrap:wrap;justify-content:center;gap:16px; | |
| max-width:900px;margin:0 auto; | |
| } | |
| .int-chip{ | |
| display:flex;align-items:center;gap:10px; | |
| padding:14px 24px;border-radius:100px; | |
| background:var(--bg-card);border:1px solid var(--border); | |
| font-size:0.9rem;font-weight:500; | |
| box-shadow:var(--shadow-sm); | |
| transition:all 0.4s cubic-bezier(0.16,1,0.3,1); | |
| cursor:default; | |
| } | |
| .int-chip:hover{ | |
| transform:translateY(-4px); | |
| box-shadow:var(--shadow-lg); | |
| border-color:rgba(79,70,229,0.2); | |
| } | |
| .int-chip .int-icon{ | |
| width:28px;height:28px;border-radius:8px; | |
| display:flex;align-items:center;justify-content:center; | |
| font-size:0.9rem; | |
| } | |
| .int-chip:nth-child(1) .int-icon{background:#EDE9FE} | |
| .int-chip:nth-child(2) .int-icon{background:#DBEAFE} | |
| .int-chip:nth-child(3) .int-icon{background:#D1FAE5} | |
| .int-chip:nth-child(4) .int-icon{background:#FEF3C7} | |
| .int-chip:nth-child(5) .int-icon{background:#FCE7F3} | |
| .int-chip:nth-child(6) .int-icon{background:#E0E7FF} | |
| .int-chip:nth-child(7) .int-icon{background:#F0FDF4} | |
| /* Connection lines — decorative */ | |
| .int-center{ | |
| text-align:center;margin-top:48px; | |
| color:var(--text-tertiary);font-size:0.9rem; | |
| } | |
| /* ============================================ | |
| 6. PROCESS (How it works) | |
| ============================================ */ | |
| .process{background:var(--bg-warm)} | |
| .proc-steps{ | |
| display:grid;grid-template-columns:repeat(4,1fr);gap:32px; | |
| position:relative; | |
| } | |
| .proc-steps::before{ | |
| content:'';position:absolute;top:40px;left:60px;right:60px;height:2px; | |
| background:linear-gradient(90deg,var(--accent),var(--teal),var(--amber),var(--accent)); | |
| background-size:300% 100%;animation:lineGlow 4s linear infinite; | |
| border-radius:2px;opacity:0.2; | |
| } | |
| @keyframes lineGlow{0%{background-position:0% 0}100%{background-position:300% 0}} | |
| .proc-step{ | |
| text-align:center;position:relative;z-index:2; | |
| padding:0 8px; | |
| } | |
| .proc-num{ | |
| width:56px;height:56px;border-radius:16px; | |
| background:var(--bg-card);border:2px solid var(--border); | |
| display:flex;align-items:center;justify-content:center; | |
| margin:0 auto 20px; | |
| font-family:'DM Mono',monospace;font-weight:600;font-size:0.95rem; | |
| color:var(--accent); | |
| box-shadow:var(--shadow); | |
| transition:all var(--transition); | |
| } | |
| .proc-step:hover .proc-num{ | |
| border-color:var(--accent); | |
| box-shadow:var(--shadow-glow); | |
| transform:scale(1.08); | |
| } | |
| .proc-step h3{margin-bottom:10px;font-size:1.05rem} | |
| .proc-step p{color:var(--text-secondary);font-size:0.88rem;line-height:1.6} | |
| /* ============================================ | |
| 7. CASES | |
| ============================================ */ | |
| .cases{background:var(--bg)} | |
| .case-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px} | |
| .case-card{ | |
| background:var(--bg-card);border:1px solid var(--border); | |
| border-radius:var(--radius-xl);overflow:hidden; | |
| transition:all 0.5s cubic-bezier(0.16,1,0.3,1); | |
| } | |
| .case-card:hover{ | |
| transform:translateY(-8px); | |
| box-shadow:var(--shadow-xl); | |
| } | |
| .case-visual{ | |
| height:180px;display:flex;align-items:center;justify-content:center; | |
| font-size:3rem;position:relative;overflow:hidden; | |
| } | |
| .case-visual::before{ | |
| content:'';position:absolute;inset:0;opacity:0.08; | |
| background:linear-gradient(135deg,var(--accent),var(--teal)); | |
| } | |
| .case-card:nth-child(1) .case-visual{background:#F5F3FF} | |
| .case-card:nth-child(2) .case-visual{background:#F0FDFA} | |
| .case-card:nth-child(3) .case-visual{background:#FFFBEB} | |
| .case-body{padding:28px} | |
| .case-tag{ | |
| display:inline-block;padding:4px 12px;border-radius:100px; | |
| font-size:0.75rem;font-weight:600;margin-bottom:12px; | |
| text-transform:uppercase;letter-spacing:0.06em; | |
| } | |
| .case-card:nth-child(1) .case-tag{background:var(--accent-light);color:var(--accent)} | |
| .case-card:nth-child(2) .case-tag{background:var(--teal-light);color:var(--teal)} | |
| .case-card:nth-child(3) .case-tag{background:var(--amber-light);color:var(--amber)} | |
| .case-body h3{margin-bottom:10px;font-size:1.1rem} | |
| .case-body p{color:var(--text-secondary);font-size:0.9rem;line-height:1.6;margin-bottom:16px} | |
| .case-metrics{display:flex;gap:20px} | |
| .case-metric{ | |
| display:flex;flex-direction:column; | |
| } | |
| .case-metric-val{font-weight:700;font-size:1.1rem;color:var(--accent)} | |
| .case-metric-lbl{font-size:0.75rem;color:var(--text-tertiary)} | |
| /* ============================================ | |
| 8. CTA + FORM | |
| ============================================ */ | |
| .cta-section{ | |
| background:var(--text);color:white;position:relative;overflow:hidden; | |
| } | |
| .cta-section .dot-grid{ | |
| background-image:radial-gradient(rgba(255,255,255,0.04) 1px,transparent 1px); | |
| background-size:24px 24px; | |
| mask-image:radial-gradient(ellipse 50% 50% at 50% 50%,black,transparent); | |
| } | |
| .cta-mesh{ | |
| position:absolute;inset:0;pointer-events:none; | |
| } | |
| .cta-mesh .cm{ | |
| position:absolute;border-radius:50%;filter:blur(100px); | |
| animation:meshFloat 20s ease-in-out infinite; | |
| } | |
| .cta-mesh .cm:nth-child(1){ | |
| width:500px;height:500px; | |
| background:radial-gradient(circle,rgba(79,70,229,0.2),transparent 70%); | |
| top:-100px;right:-100px; | |
| } | |
| .cta-mesh .cm:nth-child(2){ | |
| width:400px;height:400px; | |
| background:radial-gradient(circle,rgba(13,148,136,0.15),transparent 70%); | |
| bottom:-100px;left:-100px;animation-delay:-8s; | |
| } | |
| .cta-layout{ | |
| display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center; | |
| position:relative;z-index:2; | |
| } | |
| .cta-text h2{color:white;margin-bottom:20px} | |
| .cta-text p{color:rgba(255,255,255,0.6);font-size:1.05rem;line-height:1.7;margin-bottom:32px} | |
| .cta-features{display:flex;flex-direction:column;gap:16px} | |
| .cta-feat{display:flex;align-items:center;gap:12px;color:rgba(255,255,255,0.7);font-size:0.92rem} | |
| .cta-feat-check{ | |
| width:24px;height:24px;border-radius:8px; | |
| background:rgba(52,211,153,0.15);color:#34D399; | |
| display:flex;align-items:center;justify-content:center; | |
| font-size:0.85rem;flex-shrink:0; | |
| } | |
| /* FORM */ | |
| .cta-form{ | |
| background:rgba(255,255,255,0.05); | |
| backdrop-filter:blur(20px); | |
| border:1px solid rgba(255,255,255,0.08); | |
| border-radius:var(--radius-xl); | |
| padding:40px; | |
| } | |
| .cta-form h3{color:white;font-size:1.3rem;margin-bottom:24px} | |
| .form-group{margin-bottom:18px} | |
| .form-group label{ | |
| display:block;font-size:0.82rem;font-weight:500; | |
| color:rgba(255,255,255,0.5);margin-bottom:6px; | |
| } | |
| .form-group input,.form-group textarea,.form-group select{ | |
| width:100%;padding:12px 16px;border-radius:var(--radius); | |
| background:rgba(255,255,255,0.06); | |
| border:1px solid rgba(255,255,255,0.1); | |
| color:white;font-family:inherit;font-size:0.9rem; | |
| transition:all var(--transition); | |
| outline:none; | |
| } | |
| .form-group input::placeholder,.form-group textarea::placeholder{color:rgba(255,255,255,0.25)} | |
| .form-group input:focus,.form-group textarea:focus{ | |
| border-color:var(--accent); | |
| background:rgba(79,70,229,0.06); | |
| box-shadow:0 0 0 3px rgba(79,70,229,0.15); | |
| } | |
| .form-group textarea{resize:vertical;min-height:80px} | |
| .form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px} | |
| .form-submit{ | |
| width:100%;padding:14px;border-radius:var(--radius); | |
| background:var(--accent);color:white;border:none; | |
| font-family:inherit;font-weight:600;font-size:1rem; | |
| cursor:pointer;transition:all var(--transition); | |
| margin-top:8px; | |
| box-shadow:0 4px 20px rgba(79,70,229,0.3); | |
| } | |
| .form-submit:hover{ | |
| background:var(--accent-hover); | |
| box-shadow:0 8px 32px rgba(79,70,229,0.4); | |
| transform:translateY(-2px); | |
| } | |
| /* ============================================ | |
| 9. FOOTER | |
| ============================================ */ | |
| footer{ | |
| padding:48px 0;border-top:1px solid var(--border);background:var(--bg); | |
| } | |
| .footer-inner{ | |
| display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:20px; | |
| } | |
| .footer-left{ | |
| display:flex;align-items:center;gap:12px; | |
| font-weight:600;font-size:0.95rem; | |
| } | |
| .footer-logo{ | |
| width:28px;height:28px;border-radius:8px;background:var(--accent); | |
| display:flex;align-items:center;justify-content:center; | |
| color:white;font-size:0.65rem;font-weight:700; | |
| } | |
| .footer-copy{color:var(--text-tertiary);font-size:0.85rem} | |
| .footer-links{display:flex;gap:24px} | |
| .footer-links a{color:var(--text-secondary);text-decoration:none;font-size:0.85rem;transition:color var(--transition)} | |
| .footer-links a:hover{color:var(--text)} | |
| /* ============================================ | |
| SCROLL REVEALS | |
| ============================================ */ | |
| .reveal{ | |
| opacity:0;transform:translateY(32px); | |
| transition:all 0.7s cubic-bezier(0.16,1,0.3,1); | |
| } | |
| .reveal.visible{opacity:1;transform:translateY(0)} | |
| .reveal-delay-1{transition-delay:0.1s} | |
| .reveal-delay-2{transition-delay:0.2s} | |
| .reveal-delay-3{transition-delay:0.3s} | |
| .reveal-delay-4{transition-delay:0.4s} | |
| .reveal-delay-5{transition-delay:0.5s} | |
| /* ============================================ | |
| RESPONSIVE | |
| ============================================ */ | |
| @media(max-width:1024px){ | |
| .hero-top{grid-template-columns:1fr;gap:48px} | |
| .hero-visual{max-width:500px;margin:0 auto} | |
| .cap-grid{grid-template-columns:repeat(2,1fr)} | |
| .ai-layout{grid-template-columns:1fr;gap:48px} | |
| .proc-steps{grid-template-columns:repeat(2,1fr);gap:24px} | |
| .proc-steps::before{display:none} | |
| .case-grid{grid-template-columns:repeat(2,1fr)} | |
| .cta-layout{grid-template-columns:1fr} | |
| } | |
| @media(max-width:768px){ | |
| section{padding:80px 0} | |
| .container,.container-sm,.container-lg{padding:0 20px} | |
| .nav-links{display:none} | |
| h1{font-size:2.5rem} | |
| h2{font-size:2rem} | |
| .cap-grid{grid-template-columns:1fr} | |
| .proc-steps{grid-template-columns:1fr} | |
| .case-grid{grid-template-columns:1fr} | |
| .hero-metrics{flex-direction:column;gap:24px} | |
| .trust-inner{gap:24px} | |
| .trust-divider{display:none} | |
| .form-row{grid-template-columns:1fr} | |
| .float-stat{display:none} | |
| .footer-inner{flex-direction:column;text-align:center} | |
| } | |
| /* ============================================ | |
| SEPARATOR | |
| ============================================ */ | |
| .sep{ | |
| height:1px;border:none;margin:0; | |
| background:linear-gradient(90deg,transparent,var(--border-strong),transparent); | |
| } | |