 @font-face { font-family: 'Cascadia Code'; src: url('CascadiaCode.woff2') format('woff2'), url('CascadiaCode.ttf') format('truetype'); font-weight: 300; font-style: normal; font-display: swap; } :root { --c-human: #9b66ff; --c-machine: #2c22ff; --c-white: #ffffff; --c-dark: #1d1d1b; --c-cobalt: #050520; --c-gray-trans: rgba(255,255,255,0.05); --c-border: rgba(255,255,255,0.2); --font-main: 'Cascadia Code', monospace; --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275); --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1); --bg-current: var(--c-dark); } * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: var(--font-main); color: var(--c-white); background-color: var(--bg-current); line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; } a { text-decoration: none; color: inherit; transition: 0.3s; } .bg-base { position: fixed; inset: 0; background-color: var(--c-machine); z-index: -5; } .bg-fixed { position: fixed; inset: 0; z-index: -5; background: radial-gradient(circle at 80% 20%, #2a2a40 0%, var(--bg-current) 70%); } .global-grid { position: fixed; inset: 0; z-index: -4; background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px); background-size: 64px 64px; pointer-events: none; } .global-grid.grid-home { background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px); } .side-nav { position: fixed; top: 50%; right: 30px; transform: translateY(-50%); z-index: 9999; display: flex; flex-direction: column; gap: 20px; } .nav-dot { display: block; width: 12px; height: 12px; border: 1px solid rgba(255,255,255,0.6); background: transparent; cursor: pointer; transition: all 0.3s; position: relative; outline: none; color: transparent; } .nav-dot:hover { background: rgba(255,255,255,0.3); border-color: white; } .nav-dot.active { background: white; border-color: white; box-shadow: 0 0 10px rgba(255,255,255,0.5); opacity: 1; } .nav-dot::after { content: attr(data-label); position: absolute; right: 25px; top: 50%; transform: translateY(-50%) translateX(10px); color: white; font-family: var(--font-main); font-size: 0.75rem; text-transform: uppercase; background: rgba(0,0,0,0.6); padding: 4px 8px; backdrop-filter: blur(4px); opacity: 0; pointer-events: none; white-space: nowrap; transition: opacity 0.3s, transform 0.3s; } .nav-dot:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); } .container { max-width: 1000px; margin: 0 auto; padding: 0 20px; } header { padding: 44px 0 40px 0; display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; } .logo-mini { display: flex; align-items: center; } .logo-mini a { display: block; border: none; } .logo-mini img { height: 28px; width: auto; display: block; } .logo-mini a:hover img { opacity: 0.8; transition: opacity 0.3s; } .back-link { border: 1px solid var(--c-border); padding: 8px 20px; font-size: 0.8rem; text-transform: uppercase; } .back-link:hover { background: var(--c-white); color: var(--bg-current); border-color: var(--c-white); } .hero { padding: 0 0 40px 0; border-bottom: 0px solid var(--c-border); } .hero h1 { font-size: 4rem; font-weight: 300; line-height: 1.1; margin-bottom: 30px; letter-spacing: -2px; } .hero .subtitle { font-size: 1.5rem; color: #a0a0ff; margin-bottom: 60px; max-width: 600px; } .inner-visual { display: flex; gap: 0; margin-top: 0; overflow: hidden; align-items: center; } .w-node { width: 14px; height: 14px; background: white; border-radius: 50%; z-index: 2; position: relative; } .w-line { height: 2px; flex: 1; background: var(--c-border); position: relative; } .w-line::after { content: ''; position: absolute; left: 0; top: 0; height: 100%; width: 100%; background: white; transform: translateX(-100%); animation: flowLine 2s infinite ease-in-out; } .w-line:nth-child(2)::after { animation-delay: 0s; } .w-line:nth-child(4)::after { animation-delay: 1s; } @keyframes flowLine { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } } .content-section { padding: 20px 0 80px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .content-section h2 { font-size: 2rem; margin-bottom: 16px; border-left: 3px solid var(--c-human); padding-left: 20px; } .content-section p { font-size: 1.1rem; opacity: 0.8; text-align: left; } .features-section h2 { font-size: 2rem; text-align: center; margin-bottom: 20px; } .features-section h3 { font-size: 1.5rem; text-align: center; margin-bottom: 20px; } .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; } .feature-card { background: var(--c-gray-trans); padding: 30px; border: 1px solid var(--c-border); transition: 0.3s; } .feature-card:hover { border-color: var(--c-human); transform: translateY(-5px); } .f-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--c-white); } .f-desc { font-size: 0.9rem; opacity: 0.7; } .terminal { background: #0f0f0f; border: 1px solid #333; padding: 20px; font-size: 0.85rem; color: #ccc; border-radius: 4px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); } .cmd { color: var(--c-human); } .str { color: #a5d6ff; } .comment { color: #666; font-style: italic; } .typewriter-text { display: inline-block; overflow: hidden; white-space: nowrap; border-right: 2px solid var(--c-human); width: 0; animation: typing 2s steps(30, end) forwards, blinkCursor 0.8s step-end infinite; vertical-align: bottom; } @keyframes typing { from { width: 0; } to { width: 100%; } } .pipeline-wrapper { padding: 0; position: relative; } .pipeline-tree { border-left: 1px solid rgba(255,255,255,0.15); margin-left: 10px; padding-left: 50px; } .pipeline-step { position: relative; margin-bottom: 80px; } .pipeline-step:last-child { margin-bottom: 0; } .pipeline-step::before { content: ''; position: absolute; left: -57px; top: 3px; width: 11px; height: 11px; background: var(--bg-current); border: 2px solid var(--c-machine); border-radius: 50%; z-index: 2; } .pipeline-step h2 { font-size: 2rem; margin-bottom: 20px; color: white; border: none; padding-left: 0; } .step-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--c-human); margin-bottom: 10px; display: block; } .pipeline-step p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 20px; text-align: left; max-width: 700px; } .logic-block { background: rgba(0,0,0,0.3); border-left: 3px solid var(--c-machine); padding: 20px; font-size: 0.9rem; font-family: var(--font-main); color: #ccc; max-width: 600px; margin-top: 25px; } .var { color: #a0a0ff; } .val { color: #fff; } .func { color: var(--c-human); } .page-footer { padding: 40px 0; margin-top: 40px; text-align: center; font-size: 0.8rem; opacity: 0.6; } .page-footer a { margin: 0 10px; } .page-footer a:hover { color: var(--c-human); } main.home-scroll { height: 100vh; width: 100vw; overflow-y: scroll; overflow-x: hidden; scroll-snap-type: y mandatory; scroll-behavior: smooth; scrollbar-width: none; } main.home-scroll::-webkit-scrollbar { display: none; } .section-home { height: 100vh; width: 100vw; scroll-snap-align: start; scroll-snap-stop: normal; position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 20px; overflow: hidden; } .section-home h2 { font-size: 6rem; margin: 0 0 60px 0; font-weight: 300; letter-spacing: -2px; line-height: 1; z-index: 10; text-align: center; } .section-home p { font-size: 1.6rem; max-width: 800px; text-align: center; opacity: 0.9; line-height: 1.6; z-index: 10; margin-top: 20px; } .lavender-blob { position: fixed; width: 280vh; height: 250vh; background: radial-gradient(circle, var(--c-human) 30%, rgba(155,102,255,0) 90%); border-radius: 50%; filter: blur(100px); opacity: 0.7; z-index: -4; transform: translate(-50%, -50%); transition: top 1s var(--ease-smooth), left 3s var(--ease-smooth); animation: cloudFloat 120s ease-in-out infinite alternate; pointer-events: none; will-change: top, left; } @keyframes cloudFloat { 0% { transform: translate(-50%, -50%) scale(1) rotate(0deg); } 100% { transform: translate(-40%, -60%) scale(1.3) rotate(10deg); } } .discover-link { position: absolute; bottom: 80px; right: 80px; font-size: 1.2rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--c-white); z-index: 20; opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease, color 0.3s; border-bottom: 1px solid transparent; } .discover-link:hover { color: var(--c-human); border-bottom-color: var(--c-human); } .section-home.active .discover-link { opacity: 1; transform: translateY(0); transition-delay: 0.3s; } .logo-intro { margin-bottom: 2rem; z-index: 10; line-height: 1; text-align: center; } .logo-intro img { width: 450px; max-width: 80vw; height: auto; display: block; } .tagline-container { font-size: 2rem; min-height: 1.6em; font-weight: 300; z-index: 10; display: inline-block; text-align: center; max-width: 90vw; } .cursor { display: inline-block; width: 8px; height: 1.8rem; background-color: var(--c-white); margin-left: 5px; margin-bottom: 4px; animation: blinkCursor 1s step-end infinite; vertical-align: sub; } @keyframes blinkCursor { 50% { opacity: 0; } } .scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 10; opacity: 0; animation: fadeInScroll 1s ease forwards 1s; } .scroll-text { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; opacity: 0.7; } .scroll-arrow { width: 12px; height: 12px; border-right: 2px solid white; border-bottom: 2px solid white; transform: rotate(45deg); animation: bounceArrow 2s infinite; } @keyframes fadeInScroll { to { opacity: 1; } } @keyframes bounceArrow { 0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(45deg); } 40% { transform: translateY(10px) rotate(45deg); } 60% { transform: translateY(5px) rotate(45deg); } } .mobile-menu-btn { display: none !important; position: fixed !important; top: 8px !important; right: 15px !important; z-index: 100000 !important; background: transparent !important; padding: 10px !important; border: none !important; } .hamburger-line { background-color: #ffffff !important; display: block; width: 30px; height: 2px; margin: 6px 0; transition: 0.4s; } .mobile-menu-btn.open .hamburger-line:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); } .mobile-menu-btn.open .hamburger-line:nth-child(2) { opacity: 0; } .mobile-menu-btn.open .hamburger-line:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); } .mobile-menu-overlay { padding: 70px 0 40px 0 !important; position: fixed; inset: 0; background-color: rgba(44, 34, 255); backdrop-filter: blur(15px); z-index: 10000; display: flex; flex-direction: column; justify-content: space-between; align-items: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; } .mobile-menu-overlay.active { opacity: 1; pointer-events: all; } .mobile-menu-content { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 8px !important; width: 100%; overflow-y: auto; } .mobile-link { font-family: var(--font-main); font-size: 1rem !important; text-transform: uppercase; color: white; letter-spacing: 2px; text-decoration: none; transform: translateY(20px); opacity: 0; transition: 0.4s; } .mobile-menu-overlay.active .mobile-link { transform: translateY(0); opacity: 1; } .mobile-sep { width: 30px; height: 1px; background-color: rgba(255, 255, 255, 0.5); margin: 10px 0; transform: scaleX(0); transition: transform 0.5s ease 0.2s; } .mobile-menu-overlay.active .mobile-sep { transform: scaleX(1); } .mobile-menu-logo { width: 160px; opacity: 0; transition: opacity 0.5s ease 0.5s; margin-top: 12px; } .mobile-menu-logo img { width: 100%; height: auto; display: block; } .mobile-menu-overlay.active .mobile-menu-logo { opacity: 0.9; } .mobile-menu-overlay.active .mobile-link:nth-of-type(1) { transition-delay: 0.1s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(2) { transition-delay: 0.15s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(3) { transition-delay: 0.2s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(4) { transition-delay: 0.25s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(5) { transition-delay: 0.3s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(6) { transition-delay: 0.35s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(7) { transition-delay: 0.4s; } .mobile-menu-overlay.active .mobile-link:nth-of-type(8) { transition-delay: 0.45s; } .vertical-flow { display: flex; flex-direction: column; align-items: center; width: 100%; gap: 3vh; } .v-sq { width: 52px; height: 52px; background: white; opacity: 0; transform: scale(0); } .section-home.active .v-sq { animation: popInSequence 0.1s var(--ease-elastic) forwards; } .section-home.active .v-sq:nth-child(1) { animation-delay: 0.15s; } .section-home.active .v-sq:nth-child(2) { animation-delay: 0.3s; } .section-home.active .v-sq:nth-child(3) { animation-delay: 0.45s; } .section-home.active .v-sq:nth-child(4) { animation-delay: 0.6s; } .section-home.active .v-sq:nth-child(5) { animation-delay: 0.75s; } .section-home.active .v-sq:nth-child(6) { animation-delay: 0.9s; } .section-home.active .v-sq:nth-child(7) { animation-delay: 1.05s; } .section-home.active .v-sq:nth-child(8) { animation-delay: 1.2s; } @keyframes popInSequence { 0% { opacity: 0; transform: scale(0); } 100% { opacity: 1; transform: scale(1); } } .wf-stage { position: relative; width: 600px; height: 350px; margin-top: 60px; transform: scale(1.2); transform-origin: center; } .wf-line { position: absolute; background-color: white; opacity: 1; z-index: 1; } .wf-node, .wf-node-sm { position: absolute; background-color: white; border: 3px solid white; z-index: 2; } .wf-node { width: 45px; height: 45px; } .wf-node-sm { width: 25px; height: 25px; border-width: 2px; } .n-start { top: 120px; left: 0; } .n-center { top: 113px; left: 200px; width: 55px; height: 55px; } .n-split { top: 120px; left: 400px; } .n-end-top { top: 40px; right: 0; } .n-end-bot { top: 200px; right: 0; } .ns-1 { top: 220px; left: 180px; } .ns-2 { top: 220px; left: 215px; } .ns-3 { top: 220px; left: 250px; } .l-main-1 { top: 141px; left: 45px; width: 155px; height: 2px; } .l-main-2 { top: 141px; left: 255px; width: 145px; height: 2px; } .l-split-v-top { top: 62px; left: 421px; width: 2px; height: 58px; } .l-split-v-bot { top: 165px; left: 421px; width: 2px; height: 58px; } .l-split-h-top { top: 62px; left: 421px; width: 135px; height: 2px; } .l-split-h-bot { top: 222px; left: 421px; width: 135px; height: 2px; } .l-sub-v { top: 166px; left: 226px; width: 2px; height: 35px; } .l-sub-h { top: 200px; left: 192px; width: 72px; height: 2px; } .l-sub-drop-1 { top: 200px; left: 192px; width: 2px; height: 20px; } .l-sub-drop-2 { top: 200px; left: 226px; width: 2px; height: 20px; } .l-sub-drop-3 { top: 200px; left: 262px; width: 2px; height: 20px; } @keyframes singlePulse { 0% { background-color: white; } 10% { background-color: transparent; } 20%, 100% { background-color: white; } } .section-home.active .n-start { animation: singlePulse 4s infinite 0s; } .section-home.active .n-center { animation: singlePulse 4s infinite 0.5s; } .section-home.active .ns-1, .section-home.active .ns-3 { animation: singlePulse 4s infinite 1.0s; } .section-home.active .n-split { animation: singlePulse 4s infinite 1.5s; } .section-home.active .n-end-top { animation: singlePulse 4s infinite 2.0s; } .smart-assistants-row { display: flex; flex-direction: row !important; gap: 40px; align-items: flex-end; height: 120px; margin-bottom: 80px; justify-content: center; overflow: visible; } .agent { width: 60px; height: 60px; background: white; position: relative; opacity: 0; flex-shrink: 0; } .agent::before { content: ''; position: absolute; top: -38px; left: 15px; width: 30px; height: 30px; background: white; } .agent.agent-live::after { content: ''; position: absolute; top: -30px; left: 18px; width: 8px; height: 8px; background: var(--c-machine); box-shadow: 16px 0 0 var(--c-machine); opacity: 1; } .arm { position: absolute; right: -25px; top: 15px; width: 30px; height: 2px; background: white; transform-origin: left center; transform: rotate(-10deg) scale(0); opacity: 0; } .arm::after { content: ''; position: absolute; right: -8px; top: -3px; width: 8px; height: 8px; background: white; } .section-home.active .agent:not(.agent-live) { animation: appear 0.3s forwards; } .agent:nth-child(1) { animation-delay: 0.1s; } .agent:nth-child(2) { animation-delay: 0.15s; } .agent:nth-child(3) { animation-delay: 0.2s; } .section-home.active .agent-live { animation: appear 1s ease-out 0.5s forwards, bodyTilt 2s ease-in-out 2.0s infinite alternate; } .section-home.active .agent-live::after { animation: blink 3s infinite 1.5s; } .section-home.active .agent-live .arm { animation: growArm 0.5s var(--ease-elastic) 1.5s forwards, waveHello 1s ease-in-out 2.0s infinite alternate; } @keyframes appear { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes blink { 0%, 45%, 55%, 100% { opacity: 1; height: 8px; } 50% { opacity: 0.5; height: 1px; transform: translateY(1px); } } @keyframes growArm { 0% { transform: rotate(-10deg) scale(0); opacity: 0; } 100% { transform: rotate(-10deg) scale(1); opacity: 1; } } @keyframes waveHello { 0% { transform: rotate(-10deg); } 100% { transform: rotate(-40deg); } } @keyframes bodyTilt { 0% { transform: rotate(-1deg); } 100% { transform: rotate(1deg); } } .lock-container { width: 100px; height: 140px; position: relative; transform: scale(1.4); margin-bottom: 80px; margin-top: 20px; } .lock-body { position: absolute; bottom: 0; width: 100%; height: 80px; background: white; } .lock-shackle { position: absolute; top: 10px; left: 15px; width: 70px; height: 70px; border: 12px solid white; border-bottom: none; border-radius: 35px 35px 0 0; transform-origin: 100% 100%; transform: rotate(45deg); transition: transform 0.8s var(--ease-elastic); } .section-home.active .lock-shackle { transform: rotate(0deg); transition-delay: 0.3s; } .security-badge { position: absolute; bottom: 80px; left: 80px; width: 150px; height: auto; z-index: 20; } .p-big { position: absolute; bottom: 0; left: 0; width: 50vw; height: 50vh; background: white; transform: scale(0); transform-origin: bottom left; } .section-home.active .p-big { animation: growPrecise 1s cubic-bezier(0.65, 0, 0.35, 1) forwards; } .p-small { position: absolute; bottom: 50vh; left: 50vw; width: 15px; height: 15px; background: white; opacity: 0; z-index: 5; } .section-home.active .p-small { animation: pulsePixel 0.5s steps(2) infinite 1.2s; } .accuracy-text { position: absolute; top: 25%; right: 15%; text-align: right; } @keyframes growPrecise { to { transform: scale(1); } } @keyframes pulsePixel { 0%, 100% { opacity: 0; } 50% { opacity: 1; } } .spinner-container { position: relative; width: 450px; height: 450px; display: flex; justify-content: center; align-items: center; margin-bottom: 40px; } .opt-sq { position: absolute; width: 40px; height: 40px; background: transparent; border: 2px solid rgba(255, 255, 255, 1); transform: rotate(var(--deg)) translateY(-180px) scale(1); opacity: 0; transition: opacity 5s; } .section-home.active .opt-sq { animation-duration: 6s; animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1); animation-fill-mode: forwards; } .section-home.active .core { animation-name: optimizeCore; z-index: 2; } .section-home.active .excess { animation-name: optimizeExcess; } @keyframes optimizeCore { 0% { opacity: 0.5; border-color: rgba(255, 255, 255, 0.3); background: transparent; transform: rotate(var(--deg)) translateY(-180px) scale(1) rotate(0deg); } 20% { opacity: 0.9; transform: rotate(calc(var(--deg) + 45deg)) translateY(-180px) scale(1) rotate(45deg); } 100% { opacity: 1; border-color: white; background: white; box-shadow: 0 0 30px rgba(255,255,255,0.4); transform: rotate(calc(var(--deg) + 360deg)) translateY(-90px) scale(1.6) rotate(270deg); } } @keyframes optimizeExcess { 0% { opacity: 0; transform: rotate(var(--deg)) translateY(-180px) scale(1) rotate(0deg); } 20% { opacity: 0.6; transform: rotate(calc(var(--deg) + 45deg)) translateY(-180px) scale(1) rotate(45deg); } 100% { opacity: 0; transform: rotate(calc(var(--deg) + 180deg)) translateY(-235px) scale(0) rotate(195deg); } } .contact-wrap { display: flex; width: 100%; max-width: 1200px; gap: 50px; } .c-left { flex: 1; text-align: left; } .c-right { flex: 1; } form { display: flex; flex-direction: column; gap: 15px; } input, textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.3); padding: 15px; color: white; font-family: inherit; outline: none; } input:focus, textarea:focus { background: rgba(255,255,255,0.2); border-color: white; } button { padding: 15px; background: white; color: var(--c-machine); border: none; font-weight: bold; text-transform: uppercase; cursor: pointer; transition: background 0.3s; } button:hover { background: var(--c-human); color: white; } input::placeholder, textarea::placeholder { color: rgba(255, 255, 255, 0.65); opacity: 1; } .site-footer-home { position: absolute; bottom: 20px; left: 0; width: 100%; text-align: center; font-size: 0.75rem; color: rgba(255, 255, 255, 0.4); z-index: 20; display: flex; flex-direction: column; gap: 8px; pointer-events: all; } .footer-links { display: flex; justify-content: center; gap: 32px; margin-bottom: 28px; margin-top: 16px; } .site-footer-home a { color: rgba(255, 255, 255, 0.6); text-decoration: none; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; } .site-footer-home a:hover { color: var(--c-white); text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); } .mobile-acc-visual { display: none; } section#automations { justify-content: flex-start !important; padding-top: 0 !important; padding-bottom: 0 !important; } #automations .vertical-flow { margin-top: 0 !important; padding-top: 0 !important; width: 100%; display: flex; } #automations .automation-text { margin-top: 60px; position: relative; z-index: 10; } @media (max-width: 768px) { .container { padding-top: 88px !important; } .side-nav { display: none !important; } header { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 64px !important; padding: 0 20px !important; background-color: rgba(29, 29, 27, 0.5) !important; backdrop-filter: blur(10px) !important; z-index: 9999 !important; margin-bottom: 0 !important; display: flex !important; align-items: center !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; } .logo-mini img { height: 24px !important; width: auto !important; } .mobile-menu-btn { display: block !important; position: fixed !important; top: 8px !important; right: 15px !important; z-index: 100000 !important; background: transparent !important; padding: 10px !important; border: none !important; } .hamburger-line { background-color: #ffffff !important; } .hero h1 { font-size: 2.5rem !important; line-height: 1.1 !important; word-wrap: break-word; } .hero h2 { font-size: 1.5rem !important; line-height: 1.1 !important; word-wrap: break-word; } .hero .subtitle { font-size: 1.2rem !important; margin-bottom: 40px !important; } .content-section h2, .features-section h2, .pipeline-step h2 { font-size: 1.8rem !important; line-height: 1.2 !important; margin-bottom: 25px !important; } .section-home h2 { font-size: 3.2rem !important; line-height: 1.1 !important; margin-bottom: 15px !important; } .section-home p { font-size: 1.1rem !important; padding: 0; max-width: 220px; margin: 0 auto !important; line-height: 1.4; } .lavender-blob { width: 800px !important; height: 800px !important; top: 85%; left: 85%; transform: translate(-50%, -50%) !important; opacity: 0.7 !important; filter: blur(60px) !important; } .lavender-blob.blob-ready { transition: top 1.5s ease-in-out, left 1.5s ease-in-out !important; } .logo-intro img { width: 200px !important; margin: 0 auto; } .tagline-container { display: block !important; text-align: center; font-size: 1.5rem !important; line-height: 1.4; margin-bottom: 5rem !important; } .cursor { display: inline-block; vertical-align: middle; height: 1.5rem !important; } .discover-link { position: absolute !important; bottom: 100px !important; right: auto !important; left: 50%; transform: translateX(-50%) !important; opacity: 1 !important; font-size: 0.9rem; padding-bottom: 5px; border-bottom: 1px solid var(--c-human); z-index: 30; white-space: nowrap; margin: 0 !important; } section#automations { justify-content: flex-start !important; padding-top: 0 !important; padding-bottom: 0 !important; } .vertical-flow { gap: 2vh; margin-top: 0 !important; padding-top: 0 !important; width: 100%; } .section-home#automations .v-sq:nth-child(n+5) { display: none; } .section-home.active .v-sq { animation-duration: 0.5s !important; } #automations .automation-text { margin-top: 5vh !important; position: relative; z-index: 10; } .section-home#workflows { justify-content: flex-start !important; padding-top: 25vh !important; display: flex !important; flex-direction: column !important; } #workflows .automation-text { margin-bottom: 20px !important; flex-shrink: 0 !important; } .section-home#workflows .wf-stage { transform: scale(0.45) !important; margin-top: 0px !important; margin-bottom: 0px !important; width: 600px !important; transform-origin: top center !important; } section#smart-assistants { justify-content: center !important; } .section-home#smart-assistants .agent:nth-child(1) { display: none !important; } .section-home#smart-assistants .smart-assistants-row { margin-bottom: 30px !important; margin-top: 0 !important; transform: scale(0.8) !important; transform-origin: bottom center !important; height: auto !important; align-items: flex-end !important; width: 100%; display: flex !important; justify-content: center !important; } #smart-assistants .automation-text { margin-top: 0 !important; } .section-home#smart-assistants h2 { word-spacing: 100vw; } .section-home#security { justify-content: flex-start !important; padding-top: 12vh !important; gap: 10px !important; } .section-home#security .lock-container { display: none !important; } .section-home#security .desktop-only { display: none !important; } .section-home#security h2 { margin-bottom: 20px !important; } .section-home#security p:not(.desktop-only) { max-width: 85% !important; font-size: 0.85rem !important; line-height: 1.4 !important; margin-bottom: 5px !important; } .section-home#security .security-badge { position: static !important; transform: scale(1) !important; width: 100px !important; margin: 0 auto 10px auto !important; display: block !important; } .section-home#accuracy { display: block !important; overflow: hidden !important; position: relative; } .section-home#accuracy .p-big, .section-home#accuracy .p-small { display: none !important; } .mobile-acc-visual { display: block !important; position: absolute; top: 55%; left: 50%; width: 200px; height: 200px; transform: translate(-50%, -50%) scale(0.75) !important; z-index: 10; pointer-events: none; } .section-home#accuracy .accuracy-text { position: absolute !important; top: 12% !important; left: 0; width: 100%; text-align: center !important; right: auto !important; z-index: 20; } .acc-ring { position: absolute; top: 50%; left: 50%; background: transparent; border: 2px solid white; transform: translate(-50%, -50%); opacity: 0; } .acc-ring.outer { width: 160px; height: 160px; border-width: 1px; } .acc-ring.mid { width: 100px; height: 100px; border-width: 2px; } .acc-core { position: absolute; top: 50%; left: 50%; width: 40px; height: 40px; background: white; transform: translate(-50%, -50%) rotate(45deg) scale(0); opacity: 0; box-shadow: 0 0 20px rgba(255,255,255,0.5); } .section-home.active .acc-ring.outer { animation: imploseOuter 1.2s cubic-bezier(0.1, 0.9, 0.2, 1) forwards; } .section-home.active .acc-ring.mid { animation: imploseMid 1.2s cubic-bezier(0.1, 0.9, 0.2, 1) 0.1s forwards; } .section-home.active .acc-core { animation: lockCore 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s forwards, pulseCore 2s infinite 1.2s; } @keyframes imploseOuter { 0% { transform: translate(-50%, -50%) scale(2.5) rotate(90deg); opacity: 0; } 100% { transform: translate(-50%, -50%) scale(1) rotate(45deg); opacity: 0.5; } } @keyframes imploseMid { 0% { transform: translate(-50%, -50%) scale(3) rotate(-90deg); opacity: 0; } 100% { transform: translate(-50%, -50%) scale(1) rotate(45deg); opacity: 0.8; } } @keyframes lockCore { 0% { transform: translate(-50%, -50%) rotate(45deg) scale(0); opacity: 0; } 70% { transform: translate(-50%, -50%) rotate(45deg) scale(1.2); opacity: 1; } 100% { transform: translate(-50%, -50%) rotate(45deg) scale(1); opacity: 1; } } @keyframes pulseCore { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); } 70% { box-shadow: 0 0 0 20px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } } .section-home#optimization { justify-content: flex-start !important; padding-top: 0vh !important; gap: 0; } .section-home#optimization .spinner-container { transform: scale(0.4) !important; margin-top: -80px !important; margin-bottom: -70px !important; } .section-home#optimization h2 { font-size: 2.5rem !important; } .section-home#optimization .optimization-text { position: relative; z-index: 10; margin-top: -30px !important; padding: 0 20px; } .section-home#contact { justify-content: flex-end !important; padding: 0 0 !important; position: relative; } .contact-wrap { flex-direction: column !important; gap: 30px !important; width: 90% !important; position: absolute; top: 45%; left: 50%; transform: translate(-50%, -50%); } .c-left { text-align: center !important; } .c-left p { margin: 20px 0 0 0 !important; max-width: 100% !important; } .site-footer-home { position: absolute !important; bottom: 24px !important; left: 0; width: 100%; margin-top: 0 !important; } #intro .scroll-indicator { display: flex !important; bottom: 40px !important; } .section-home:not(#intro) .scroll-indicator { display: none !important; } .mobile-next-arrow { display: block !important; position: absolute; bottom: 20px; left: 50%; width: 15px; height: 15px; border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5); z-index: 20; transform: translateX(-50%) rotate(45deg); animation: bounceArrowMobile 2s infinite; } #intro .mobile-next-arrow { display: none !important; } @keyframes bounceArrowMobile { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0) rotate(45deg); } 40% { transform: translateX(-50%) translateY(-10px) rotate(45deg); } 60% { transform: translateX(-50%) translateY(-5px) rotate(45deg); } } .hero { padding-top: 0 !important; } .content-section { grid-template-columns: 1fr !important; gap: 20px !important; padding-bottom: 40px !important; display: grid !important; } .terminal { width: 100% !important; box-sizing: border-box !important; overflow-x: auto !important; } .process-visual { gap: 10px !important; flex-wrap: nowrap !important; justify-content: center !important; width: 100% !important; margin-left: auto !important; margin-right: auto !important; overflow-x: visible !important; } .p-block { width: 35px !important; height: 35px !important; flex-shrink: 0 !important; } .terminal { width: 100% !important; box-sizing: border-box !important; font-size: 0.75rem !important; padding: 15px !important; overflow-x: auto !important; margin-right: 0 !important; } .process-visual { gap: 8px !important; justify-content: center !important; width: 100% !important; overflow-x: hidden !important; } .p-block { width: 40px !important; height: 40px !important; flex-shrink: 0 !important; } .bar-ai { position: relative; color: transparent !important; overflow: visible !important; } .bar-ai::after { content: '4 Min'; position: absolute; left: 130%; top: 50%; transform: translateY(-50%); color: var(--c-success); font-weight: bold; white-space: nowrap; font-size: 0.7rem; } }