:root{--divider-secondary: rgba(205, 214, 218, .25);--text-primary: #000;--text-secondary: rgba(60, 60, 67, .85);--accent-green: #B8EB21;--border-gray: #E5E7EB;--gray-900: #111827;--gray-700: #374151;--gray-600: #4B5563;--gray-500: #6B7280;--gray-100: #F3F4F6;--white: #FFF;--black: #000}*{margin:0;padding:0;box-sizing:border-box}body{font-family:Inter,-apple-system,Roboto,Helvetica,sans-serif;line-height:1.5;color:var(--text-primary);background:var(--white)}.landing-page{width:100%;max-width:1400px;min-height:100vh;margin:0 auto;position:relative}.nav-bar{position:fixed;top:0;left:0;width:100%;height:72px;background:#fffc;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid rgba(0,0,0,.08);z-index:1000;transition:all .3s cubic-bezier(.16,1,.3,1)}.nav-bar.scrolled{background:#fffffff2;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);box-shadow:0 4px 24px #0000000f;height:64px;border-bottom:1px solid rgba(0,0,0,.1)}.nav-container{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;width:100%;max-width:1400px;height:100%;margin:0 auto;padding:0 40px;gap:32px;position:relative}.nav-brand{display:flex;align-items:center;justify-content:flex-start}.nav-logo{display:flex;align-items:center}.nav-logo:hover{opacity:.8}.logo-image{height:20px;width:auto;object-fit:contain}.logo-image.footer{height:24px;max-width:100px;width:auto;object-fit:contain}.logo-text{font-size:22px;font-weight:700;color:var(--black);letter-spacing:-.02em}.nav-center{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:18px}.nav-menu{display:flex;align-items:center;gap:18px}.nav-item{position:relative}.nav-link{display:inline-flex;align-items:center;padding:10px 16px;border-radius:10px;font-size:15px;font-weight:500;color:#374151;text-decoration:none;transition:all .25s cubic-bezier(.16,1,.3,1);position:relative}.nav-link-button{background:none;border:none;font:inherit;cursor:pointer;display:inline-flex;align-items:center}.nav-link:after{content:"";position:absolute;bottom:6px;left:50%;transform:translate(-50%) scaleX(0);width:20px;height:2px;background:#b8eb21;border-radius:2px;transition:transform .3s cubic-bezier(.16,1,.3,1)}.nav-link:hover{color:#111827;background:#b8eb2114}.nav-link:hover:after{transform:translate(-50%) scaleX(1)}.external-icon{width:12px;height:12px}.nav-actions{display:flex;align-items:center;justify-content:flex-end;gap:12px}.nav-actions-desktop{display:flex;align-items:center;gap:12px}.hamburger-btn{display:flex;flex-direction:column;justify-content:center;align-items:center;width:32px;height:32px;background:none;border:none;cursor:pointer;padding:4px;border-radius:4px;transition:background-color .2s}.hamburger-btn:hover{background-color:var(--gray-100)}.hamburger-line{width:20px;height:2px;background-color:var(--gray-700);transition:all .3s ease;transform-origin:center}.hamburger-line:not(:last-child){margin-bottom:4px}.hamburger-line.open:nth-child(1){transform:rotate(45deg) translate(3px,3px)}.hamburger-line.open:nth-child(2){opacity:0}.hamburger-line.open:nth-child(3){transform:rotate(-45deg) translate(3px,-3px)}.mobile-menu{position:absolute;top:100%;left:0;right:0;background:var(--white);border-bottom:1px solid var(--border-gray);border-left:1px solid var(--border-gray);border-right:1px solid var(--border-gray);box-shadow:0 4px 6px -1px #0000001a;z-index:999;animation:slideDown .2s ease-out}@keyframes slideDown{0%{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}.mobile-menu-items{display:flex;flex-direction:column;padding:16px 20px;border-bottom:1px solid var(--border-gray)}.mobile-menu-item{display:flex;align-items:center;gap:4px;padding:12px 0;color:#404040;text-decoration:none;font-size:16px;font-weight:500;border-bottom:1px solid transparent;transition:all .2s}.mobile-menu-item:hover{color:var(--gray-900);background-color:var(--gray-100);margin:0 -8px;padding-left:8px;padding-right:8px;border-radius:6px}.mobile-menu-item:not(:last-child){border-bottom:1px solid var(--divider-secondary)}.mobile-menu-actions{display:flex;flex-direction:column;gap:12px;padding:16px 20px}.btn-secondary.mobile,.btn-primary.mobile{width:100%;justify-content:center}.page-content{margin-top:56px;padding:0 20px;background:var(--white);max-width:1400px;margin-left:auto;margin-right:auto}.hero-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding:140px 40px 80px;flex-direction:column;justify-content:flex-end;align-items:stretch;gap:72px;border:none;position:relative;background:radial-gradient(at 20% 10%,rgba(184,235,33,.08) 0px,transparent 40%),radial-gradient(at 80% 20%,rgba(103,126,234,.05) 0px,transparent 50%),radial-gradient(at 50% 90%,rgba(184,235,33,.06) 0px,transparent 50%)}.hero-main{width:100%;max-width:960px;position:relative;margin:0 auto}.hero-heading{display:flex;flex-direction:column;align-items:flex-start;gap:16px}.hero-title-container{display:flex;flex-direction:column;align-items:flex-start;gap:8px;width:100%;padding:0}.hero-title{font-size:clamp(44px,6vw,66px);font-weight:700;line-height:1.08;letter-spacing:-1.5px;text-align:left;color:var(--gray-900);margin:0}.hero-title-accent{font-size:inherit;font-weight:600;line-height:1.08;letter-spacing:-1.2px;text-align:left;color:var(--accent-green);margin:0}.hero-typing-cursor{display:inline-block;width:3px;margin-left:2px;animation:heroCursorBlink 1s steps(2) infinite;color:#0f172a}@keyframes heroCursorBlink{0%,49%{opacity:1}50%,to{opacity:0}}.hero-animated-dots{display:inline-flex;gap:2px;margin-left:4px}.hero-animated-dots span{animation:heroDotBounce 1.4s ease-in-out infinite;opacity:.4;font-weight:700}.hero-animated-dots span:nth-child(1){animation-delay:0s}.hero-animated-dots span:nth-child(2){animation-delay:.2s}.hero-animated-dots span:nth-child(3){animation-delay:.4s}@keyframes heroDotBounce{0%,60%,to{opacity:.4;transform:translateY(0)}30%{opacity:1;transform:translateY(-6px)}}.hero-description{width:100%;max-width:900px;color:var(--gray-700);text-align:left;font-size:18px;font-weight:400;line-height:32px;margin:12px 0 0;padding:0}.hero-mockup{width:100%;max-width:1400px;margin:0 auto;position:relative;border-bottom:1px solid var(--border-gray)}.mockup-main{width:100%;height:auto;display:block}.btn-shopify{display:flex;padding:13px 33px;align-items:center;gap:8px;border-radius:8px;background:var(--black);border:none;color:var(--white);font-size:15px;font-weight:500;cursor:pointer}.btn-beta{display:flex;padding:13px 28px 13px 27px;justify-content:center;align-items:center;border-radius:8px;border:1px solid var(--border-gray);background:var(--white);color:var(--gray-900);font-size:15px;font-weight:500;cursor:pointer}.btn-demo{display:flex;padding:13px 28px 13px 27px;justify-content:center;align-items:center;gap:8px;border-radius:8px;border:2px solid var(--black);background:var(--white);color:var(--black);font-size:15px;font-weight:600;cursor:pointer;transition:all .2s ease}.btn-demo:hover{background:var(--black);color:var(--white)}.btn-demo svg{width:20px;height:20px}.btn-demo-primary{display:flex;width:100%;max-width:320px;padding:16px 36px;justify-content:center;align-items:center;gap:10px;border-radius:8px;border:2px solid var(--black);background:var(--black);color:var(--white);font-size:16px;font-weight:600;cursor:pointer;transition:all .3s cubic-bezier(.16,1,.3,1);box-shadow:0 4px 12px #00000026}.btn-demo-primary:hover{transform:translateY(-2px);box-shadow:0 8px 20px #0003;border-color:var(--accent-green)}.btn-demo-primary svg{width:20px;height:20px}.btn-primary{display:flex;padding:10px 17px 11px;justify-content:center;align-items:center;border-radius:8px;background:var(--black);color:var(--white);font-size:13px;font-weight:700;border:none;cursor:pointer}.btn-secondary{display:flex;padding:10px 17px 11px;justify-content:center;align-items:center;border-radius:8px;border:1px solid var(--border-gray);background:var(--white);color:var(--gray-900);font-size:13px;font-weight:700;cursor:pointer}.btn-cta{display:flex;padding:13px 33px;align-items:center;gap:8px;border-radius:8px;border:2px solid var(--accent-green);background:var(--black);color:#f0f0f0;font-family:Helvetica,-apple-system,Roboto,Helvetica,sans-serif;font-size:18px;font-weight:400;cursor:pointer}.btn-contact{display:flex;padding:8px 11px 9px;justify-content:center;align-items:center;gap:8px;border-radius:8px;border:1px solid var(--border-gray);background:var(--white);color:var(--gray-900);font-size:13px;width:fit-content;white-space:nowrap;font-weight:700;cursor:pointer}.shopify-icon,.arrow-icon,.email-icon{width:20px;height:20px}.section-header{display:flex;flex-direction:column;align-items:center;gap:30px;margin-bottom:50px}.section-title{color:#171717;text-align:center;font-size:30px;font-style:italic;font-weight:500;line-height:normal}.section-description{width:100%;max-width:701px;color:var(--gray-600);text-align:center;font-size:15px;font-weight:400;line-height:28px;padding:0 20px}.problem-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding-top:100px;flex-direction:column;align-items:center;gap:50px;border-right:1px solid var(--border-gray);border-left:1px solid var(--border-gray)}.features-grid{display:grid;grid-template-columns:repeat(3,1fr);width:100%;gap:32px;padding:0}.feature-card{display:flex;padding:48px 40px;flex-direction:column;align-items:flex-start;gap:24px;border-radius:24px;border:1px solid rgba(0,0,0,.06);background:linear-gradient(135deg,#fff,#fafbf9);box-shadow:0 4px 12px #0000000a,0 1px 3px #00000008;transition:all .4s cubic-bezier(.16,1,.3,1);position:relative;overflow:hidden}.feature-card:before{content:"";position:absolute;top:0;left:0;width:100%;height:4px;background:linear-gradient(90deg,#b8eb21,#a3d119);transform:scaleX(0);transform-origin:left;transition:transform .6s cubic-bezier(.16,1,.3,1)}.feature-card:hover:before{transform:scaleX(1)}.feature-card:hover{transform:translateY(-8px);box-shadow:0 20px 40px -12px #b8eb2126,0 40px 80px -20px #0000001a;background:linear-gradient(135deg,#fff,#f5ffef)}.feature-icon-container{display:flex;width:80px;height:80px;justify-content:center;align-items:center;border-radius:20px;background:linear-gradient(135deg,#f5ffef,#e8f9d5);box-shadow:0 4px 12px #b8eb2126,inset 0 1px #ffffff80;transition:all .4s cubic-bezier(.16,1,.3,1);position:relative}.feature-card:hover .feature-icon-container{transform:scale(1.1) rotate(5deg);box-shadow:0 8px 24px #b8eb2140,inset 0 1px #ffffffb3}.feature-icon{display:flex;width:100%;height:100%;justify-content:center;align-items:center}.feature-icon svg{width:40px;height:40px;transition:transform .4s cubic-bezier(.16,1,.3,1)}.feature-card:hover .feature-icon svg{transform:scale(1.15)}.feature-title{color:#111827;font-size:22px;font-weight:600;line-height:32px;letter-spacing:-.02em;transition:color .3s ease}.feature-card:hover .feature-title{color:#000}.feature-description{color:#6b7280;font-size:16px;font-weight:400;line-height:26px;letter-spacing:-.01em}.product-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding:150px 20px 100px;flex-direction:column;align-items:center;gap:50px;border-right:1px solid var(--border-gray);border-left:1px solid var(--border-gray)}.product-header{display:flex;justify-content:center;align-items:center;align-self:stretch;gap:50px}.product-text{display:flex;flex-direction:column;gap:20px}.product-title{color:#1d1d1b;font-size:36px;font-weight:500;line-height:48px;width:100%;max-width:719px}.product-subtitle{color:#1d1d1b;font-size:18px;font-weight:400;line-height:27px;width:100%;max-width:577px}.product-features{display:flex;justify-content:center;align-items:center;width:100%;margin:50px 0}.product-feature{display:flex;width:100%;max-width:400px;flex-direction:column;align-items:center;gap:20px;text-align:center}.product-image{width:100%;height:400px;object-fit:cover;border-radius:4px}.product-feature-content{display:flex;flex-direction:column;align-items:center;gap:10px;width:100%}.product-feature-title{color:#1d1d1b;font-family:Helvetica,-apple-system,Roboto,Helvetica,sans-serif;font-size:18px;font-weight:400;line-height:28px}.product-feature-description{align-self:stretch;color:var(--black);font-family:Helvetica,-apple-system,Roboto,Helvetica,sans-serif;font-size:13px;font-weight:400;line-height:20px}.product-navigation{display:flex;justify-content:center;align-items:center;gap:50px;margin-top:30px}.nav-dots{display:flex;gap:10px;align-items:center}.nav-dot{width:8px;height:8px;border-radius:50%;background-color:#d1d5db;cursor:pointer;transition:background-color .3s ease}.nav-dot.active{background-color:#b8eb21}.nav-btn{display:flex;align-items:center;justify-content:center;width:40px;height:40px;border:1px solid #D1D5DB;border-radius:50%;background:#fff;cursor:pointer;transition:all .3s ease}.nav-btn:hover{border-color:#b8eb21;background-color:#f8fff4}.solution-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding-top:100px;flex-direction:column;align-items:center;gap:50px;border:1px solid var(--border-gray)}.how-to-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding:150px 20px 100px;flex-direction:column;align-items:center;gap:33px;border:1px solid var(--border-gray)}.steps-container{display:flex;flex-direction:column;align-items:flex-start;gap:72px}.step-item{display:flex;align-items:center;gap:1px;border:.6px solid var(--border-gray);flex-direction:row}.step-item.reverse{flex-direction:row-reverse!important}.step-image{width:382px;height:301px}.step-content{display:flex;padding:0 30px;flex-direction:column;justify-content:center;align-items:flex-start;gap:19px;border-radius:2px}.step-label{color:#1d1d1b;font-size:10px;font-weight:400;line-height:14px}.step-title{color:var(--gray-900);font-size:17px;font-weight:500;line-height:28px}.step-description{width:322px;color:var(--gray-600);font-size:13px;font-weight:400;line-height:20px}.why-section{display:flex;width:100%;max-width:1400px;margin:0 auto;padding-top:100px;flex-direction:column;align-items:center;gap:50px;border-top:1px solid var(--border-gray);border-right:1px solid var(--border-gray);border-left:1px solid var(--border-gray)}.benefits-grid{display:grid;height:598px;align-self:stretch;grid-template-rows:repeat(2,minmax(0,1fr));grid-template-columns:repeat(3,minmax(0,1fr))}.benefit-card{display:flex;width:383px;height:300px;padding:32px 40px;flex-direction:column;justify-content:center;align-items:center;gap:19px;border:1px solid var(--border-gray);background:var(--white)}.benefit-icon{display:flex;width:64px;height:64px;padding:16px;justify-content:center;align-items:center;border-radius:16px;border:1px solid var(--border-gray);background:linear-gradient(180deg,#fff,#f3f4f6);box-shadow:0 1px 2px #0000000d}.benefit-title{color:var(--gray-900);text-align:center;font-size:17px;font-weight:500;line-height:28px}.benefit-description{color:var(--gray-600);text-align:center;font-size:13px;font-weight:400;line-height:20px}.video-section{display:none;width:100%;max-width:1400px;margin:0 auto;padding-top:100px;flex-direction:column;align-items:center;gap:50px;border-top:1px solid var(--border-gray);border-right:1px solid var(--border-gray);border-left:1px solid var(--border-gray)}.video-placeholder{display:none;width:100%;max-width:1400px;margin:0 auto;height:auto;border-right:1px solid var(--border-gray);border-left:1px solid var(--border-gray)}.tablet-mockup{position:relative;width:100%;height:auto}.tablet-frame{width:100%;height:auto;display:block}.tablet-video{position:absolute;top:12%;left:8.5%;width:83%;height:76%;object-fit:cover;border-radius:4px;opacity:0;transition:opacity .3s ease;z-index:2}.tablet-video.playing{opacity:1}.video-play-overlay{position:absolute;top:12%;left:8.5%;width:83%;height:76%;display:flex;flex-direction:column;align-items:center;justify-content:center;cursor:pointer;z-index:3;transition:opacity .3s ease}.video-play-overlay:hover{opacity:.9}.play-button{margin-bottom:16px;transform:scale(1);transition:transform .2s ease}.video-play-overlay:hover .play-button{transform:scale(1.1)}.play-text{color:#fff;font-size:18px;font-weight:600;text-shadow:0 2px 4px rgba(0,0,0,.5);margin:0}.cta-section{display:flex;padding:81px 20px 53px;flex-direction:column;justify-content:flex-end;align-items:center;gap:45px;background:var(--accent-green);position:relative;overflow:hidden}.cta-video-bg{position:absolute;inset:0;z-index:0;overflow:hidden}.cta-video{width:100%;height:100%;object-fit:cover;filter:saturate(1.2)}.cta-video-overlay{position:absolute;inset:0;background:radial-gradient(circle at top,#0f172a99,#0f172ae6)}.cta-content{display:flex;width:100%;max-width:751px;flex-direction:column;align-items:center;gap:10px;position:relative;z-index:1;color:#fff}.cta-title{color:inherit;text-align:center;font-size:31px;font-weight:400;line-height:36px;letter-spacing:-.9px}.cta-description{width:100%;max-width:598px;color:#ffffffd9;text-align:center;font-size:15px;font-weight:400;line-height:28px}.cta-action{display:flex;justify-content:center;align-items:center;gap:20px;width:248px;height:50px;position:relative;z-index:1}.faq-section{width:100%;max-width:1400px;margin:0 auto;padding:80px 40px 120px}.faq-header{text-align:center;max-width:700px;margin:0 auto 48px}.faq-eyebrow{font-size:12px;letter-spacing:.2em;text-transform:uppercase;color:#6b7280;margin-bottom:10px}.faq-header h2{margin:0 0 12px;font-size:32px;color:#0f172a}.faq-header p{margin:0;color:#4b5563;font-size:16px}.faq-items{display:flex;flex-direction:column;gap:16px;max-width:760px;margin:0 auto}.faq-item-card{border-radius:18px;border:1px solid rgba(15,23,42,.08);background:#fff;box-shadow:0 10px 30px #0f172a14;overflow:hidden}.faq-item-trigger{width:100%;padding:20px 24px;background:transparent;border:none;display:flex;align-items:center;justify-content:space-between;gap:16px;cursor:pointer}.faq-item-trigger h3{margin:0;font-size:18px;text-align:left;color:#0f172a}.faq-toggle{width:20px;height:20px;position:relative}.faq-toggle:before,.faq-toggle:after{content:"";position:absolute;top:50%;left:50%;width:12px;height:2px;background:#0f172a;transform:translate(-50%,-50%);transition:transform .3s ease}.faq-toggle:after{transform:translate(-50%,-50%) rotate(90deg)}.faq-toggle.open:after{transform:translate(-50%,-50%) rotate(0)}.faq-item-content{padding:0 24px 24px}.faq-item-content p{margin:0;color:#4b5563;font-size:15px;line-height:1.6}.footer{width:100%;max-width:1400px;margin:0 auto;background:var(--white);position:relative}.footer-content{display:flex;justify-content:space-between;align-items:flex-start;padding:60px 124px 0}.footer-brand{display:flex;flex-direction:column;gap:16px;align-items:flex-start;align-self:flex-start;min-width:180px}.footer-logo{display:flex;align-items:center}.footer-links{display:flex;gap:50px;align-items:flex-start}.footer-section{display:flex;flex-direction:column;gap:16px}.footer-section-title{color:var(--gray-900);font-size:14px;font-weight:500;line-height:20px;margin:0;padding:0}.footer-list{display:flex;flex-direction:column;gap:8px;list-style:none}.footer-link{color:var(--gray-600);font-size:13px;font-weight:400;line-height:20px;text-decoration:none;padding:4px 0;border-radius:6px;display:block}.footer-link:hover{background:var(--gray-100)}.footer-bottom{position:relative;margin-top:30px;margin-left:124px;margin-bottom:40px}.footer-copyright{color:var(--gray-500);font-size:13px;font-weight:400;line-height:20px}@media(min-width:769px){.hamburger-btn{display:none}.nav-actions-desktop{display:flex}.mobile-menu{display:none!important}}@media(max-width:1024px){.page-content{padding:0 40px}.nav-center{display:none}.nav-container{padding:0 40px}.hero-section{gap:60px;padding-top:60px}.hero-title{font-size:42px;line-height:46px}.hero-title-accent{font-size:44px;line-height:46px}.features-grid{grid-template-columns:repeat(2,1fr);gap:24px}.feature-card{padding:40px 32px}}@media(max-width:768px){.nav-menu,.nav-actions-desktop{display:none}.hamburger-btn{display:flex}.nav-container{grid-template-columns:auto 1fr;padding:0 20px;gap:16px}.nav-brand{justify-content:flex-start}.nav-actions{gap:12px;justify-content:flex-end;margin-left:auto}.logo-image.footer{height:20px;max-width:80px;width:auto;object-fit:contain}.mobile-menu-item{padding:16px 12px;font-size:17px;background:#fff;border:none;width:100%;text-align:left;color:var(--gray-900)}.mobile-menu-item:active{background-color:var(--gray-100)}.page-content{padding:0}.footer-content{flex-direction:column!important;padding:40px 20px 0!important;gap:32px!important;align-items:center!important;text-align:center!important}.footer-brand{min-width:100%!important;margin-bottom:12px;align-items:center!important}.footer-links{width:100%!important;flex-direction:column!important;gap:28px!important;align-items:center!important}.footer-section{width:100%!important;text-align:center!important}.footer-list{align-items:center!important}.footer-bottom{text-align:center!important;margin-top:32px!important}.footer-links{flex-direction:column!important;gap:28px!important;width:100%!important}.footer-section{gap:12px!important;width:100%}.footer-section-title{font-size:15px;margin-bottom:8px}.footer-list{gap:10px!important}.footer-link{font-size:14px;padding:6px 0}.footer-bottom{margin:32px 20px!important;text-align:center}.footer-copyright{font-size:13px;text-align:center}.hero-section{gap:40px;padding-top:40px}.hero-heading,.hero-title-container{align-items:flex-start;text-align:left}.hero-title{font-size:48px!important;line-height:52px!important;text-align:left}.hero-title-accent{font-size:50px!important;line-height:52px!important;text-align:left}.hero-description{font-size:17px;line-height:28px;text-align:left;margin-top:16px}.hero-video-overlay{align-items:flex-start;text-align:left}.hero-video-microcopy{text-align:left}.hero-video-container{max-height:320px}.hero-video{max-height:320px;object-fit:cover}.features-grid{grid-template-columns:1fr;gap:20px}.feature-card{padding:36px 28px}.product-header{flex-direction:column;gap:30px;text-align:center}.product-title{font-size:30px;line-height:38px;width:100%}.product-subtitle{font-size:16px;line-height:24px;width:100%}.benefits-grid{grid-template-columns:1fr;gap:20px;height:auto}.benefit-card{width:100%;max-width:100%;height:auto;padding:24px 20px}.how-to-section{padding:75px 20px 50px}.step-item,.step-item.reverse{flex-direction:column!important}.step-image{width:100%;height:auto}.step-content{padding:30px 20px}.step-description{width:100%}.section-title{font-size:26px}.faq-section{padding:60px 20px 80px}.footer-content{flex-direction:column;gap:30px;padding:40px 20px 0}.footer-links{justify-content:space-between}.footer-brand{gap:16px;min-width:unset}.footer-bottom{position:static;margin-top:40px;text-align:center}.product-image{height:300px}.product-navigation{gap:30px}.nav-btn{width:35px;height:35px}}@media(max-width:480px){.nav-container{padding:0 15px}.page-content{padding:0}.logo-image.footer{height:20px;max-width:80px;width:auto;object-fit:contain}.hero-title{font-size:36px!important;line-height:40px!important}.hero-title-accent{font-size:38px!important;line-height:40px!important}.hero-description{font-size:15px;line-height:24px}.section-title{font-size:20px}.section-description{font-size:14px;line-height:22px}.product-title{font-size:22px;line-height:28px}.product-subtitle{font-size:15px;line-height:22px}.feature-card{padding:32px 24px;border-radius:20px}.feature-icon-container{width:64px;height:64px;border-radius:16px}.feature-icon svg{width:32px;height:32px}.feature-title{font-size:19px;line-height:28px}.feature-description{font-size:15px;line-height:24px}.benefit-card{padding:20px 15px}.cta-section{padding:60px 15px 40px}.cta-title{font-size:26px;line-height:32px}.cta-description{font-size:15px;line-height:24px}.footer-content{padding:25px 15px 0}.footer-links{flex-direction:column;gap:20px}}.modal-overlay{position:fixed;top:0;left:0;width:100vw;height:100vh;background:#00000080;display:flex;align-items:center;justify-content:center;z-index:10000;padding:20px}.modal-content{background:#fff;border-radius:12px;width:100%;max-width:500px;max-height:90vh;overflow-y:auto;box-shadow:0 20px 25px -5px #0000001a,0 10px 10px -5px #0000000a}.modal-header{display:flex;justify-content:space-between;align-items:center;padding:24px 24px 0;border-bottom:1px solid #e5e7eb;margin-bottom:24px}.modal-title{font-size:20px;font-weight:600;color:#111827;margin:0}.modal-close{background:none;border:none;padding:8px;border-radius:6px;cursor:pointer;color:#6b7280;transition:all .2s ease}.modal-close:hover{background:#f3f4f6;color:#374151}.partnership-form{padding:0 24px 24px}.form-group{margin-bottom:20px}.form-group label{display:block;font-size:14px;font-weight:500;color:#374151;margin-bottom:6px}.form-group input,.form-group select,.form-group textarea{width:100%;padding:10px 12px;border:1px solid #d1d5db;border-radius:6px;font-size:14px;color:#111827;background:#fff;transition:border-color .2s ease;box-sizing:border-box}.form-group input:focus,.form-group select:focus,.form-group textarea:focus{outline:none;border-color:#b8eb21;box-shadow:0 0 0 3px #b8eb211a}.form-group textarea{resize:vertical;min-height:80px}.form-actions{display:flex;gap:12px;justify-content:flex-end;margin-top:32px}.btn-primary{background:#b8eb21;color:#000;border:none;padding:12px 20px;border-radius:6px;font-size:14px;font-weight:500;cursor:pointer;transition:background .2s ease}.btn-primary:hover{background:#a3d119}@media(max-width:768px){.play-button svg{width:60px;height:60px}.play-text{font-size:16px}.tablet-video,.video-play-overlay{border-radius:4px}}@media(max-width:480px){.play-button svg{width:50px;height:50px}.play-text{font-size:14px}.tablet-video,.video-play-overlay{top:11%;left:7%;width:86%;height:78%}}@media(max-width:768px){.modal-overlay{padding:16px}.modal-content{border-radius:8px}.modal-header{padding:20px 20px 0;margin-bottom:20px}.partnership-form{padding:0 20px 20px}.form-actions{flex-direction:column;gap:8px}.btn-primary,.btn-secondary{width:100%;justify-content:center}}@media(max-width:320px){.logo-image.footer{height:20px;max-width:80px;width:auto;object-fit:contain}.hero-title{font-size:24px;line-height:30px}.hero-title-accent{font-size:26px;line-height:30px}.section-title{font-size:22px}.product-title,.cta-title{font-size:22px;line-height:28px}.product-image{height:250px}.product-navigation{gap:20px}.nav-btn{width:32px;height:32px}}.hero-video-teaser{width:100%;margin-top:48px;opacity:0;transform:translateY(40px) scale(.95);transition:opacity 1s cubic-bezier(.16,1,.3,1),transform 1s cubic-bezier(.16,1,.3,1)}.hero-video-teaser.visible{opacity:1;transform:translateY(0) scale(1)}.hero-video-container{position:relative;width:100%;border-radius:32px;overflow:hidden;box-shadow:0 30px 90px -16px #0f172a59,0 50px 120px -32px #00000073;min-height:420px}.hero-video{width:100%;height:100%;display:block;object-fit:cover;aspect-ratio:16 / 9}.hero-video-overlay{position:absolute;bottom:0;left:0;width:100%;padding:clamp(24px,5vw,48px);background:linear-gradient(to top,#000000d9,#0000008c 45%,#0000);display:flex;flex-direction:column;justify-content:flex-end;align-items:flex-start;gap:12px}.btn-hero-video-cta{display:inline-flex;align-items:center;gap:12px;padding:18px 36px;font-size:18px;font-weight:600;color:#000;background:var(--accent-green);border:none;border-radius:12px;cursor:pointer;transition:all .3s cubic-bezier(.16,1,.3,1);box-shadow:0 4px 12px #b8eb214d,0 8px 24px #0003;position:relative;overflow:hidden}.btn-hero-video-cta:before{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:#fff3;transform:translate(-50%,-50%);transition:width .6s,height .6s}.btn-hero-video-cta:hover:before{width:300px;height:300px}.btn-hero-video-cta:hover{transform:translateY(-4px) scale(1.05);box-shadow:0 8px 24px #b8eb2166,0 16px 48px #0000004d}.btn-hero-video-cta:active{transform:translateY(-2px) scale(1.02)}.btn-hero-video-cta svg{width:20px;height:20px;stroke:currentColor;position:relative;z-index:1}.btn-hero-video-cta span{position:relative;z-index:1}.hero-video-microcopy{color:#ffffffd9;font-size:15px;text-align:left;margin:0;font-weight:500}@media(max-width:1024px){.hero-video-teaser{margin-top:32px}.hero-video-container{border-radius:16px}.hero-video-overlay{padding:32px}.btn-hero-video-cta{padding:16px 32px;font-size:17px}.hero-video-microcopy{font-size:13px}}@media(max-width:768px){.hero-video-teaser{margin-top:28px}.hero-video-container{border-radius:14px;box-shadow:0 10px 40px -8px #b8eb211f,0 20px 60px -12px #0000001f}.hero-video-overlay{padding:24px;gap:10px}.btn-hero-video-cta{padding:14px 28px;font-size:16px;gap:10px;border-radius:10px}.btn-hero-video-cta svg{width:18px;height:18px}.hero-video-microcopy{font-size:12px}}@media(max-width:480px){.hero-video-teaser{margin-top:24px}.hero-video-container{border-radius:12px;max-height:240px;overflow:hidden}.hero-video{height:240px;max-height:240px;object-fit:cover;aspect-ratio:unset}.hero-video-overlay{padding:20px}.btn-hero-video-cta{width:100%;justify-content:center;padding:14px 20px;font-size:14px}.hero-video-microcopy{font-size:11px}}.btn-nav-install{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:11px 20px;background:linear-gradient(135deg,#b8eb21,#9fd91f);color:#000;font-size:15px;font-weight:600;border:none;border-radius:12px;cursor:pointer;transition:all .3s cubic-bezier(.16,1,.3,1);box-shadow:0 2px 8px #b8eb2140,0 1px #ffffff80 inset;position:relative;overflow:hidden}.btn-nav-install:before{content:"";position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.3),transparent);transition:left .5s}.btn-nav-install:hover:before{left:100%}.btn-nav-install:hover{background:linear-gradient(135deg,#c5f52e,#b8eb21);transform:translateY(-2px) scale(1.02);box-shadow:0 6px 20px #b8eb2159,0 1px #fff9 inset}.btn-nav-install:active{transform:translateY(0) scale(.98)}.btn-nav-install .shopify-icon{flex-shrink:0;width:18px;height:18px;filter:drop-shadow(0 1px 2px rgba(0,0,0,.1))}.btn-nav-install span{white-space:nowrap}.btn-nav-install.mobile{width:100%;padding:14px 24px;font-size:16px}.hero-description{color:#1f2937!important;font-size:18px!important;font-weight:500!important;line-height:32px!important;letter-spacing:-.01em;text-shadow:0 1px 2px rgba(0,0,0,.04)}.btn-hero-video-cta svg{animation:cursor-bounce 2s ease-in-out infinite}@keyframes cursor-bounce{0%,to{transform:translate(0)}50%{transform:translate(2px,-2px)}}.btn-hero-video-cta:hover svg{animation:cursor-click .6s ease-in-out infinite}@keyframes cursor-click{0%,to{transform:scale(1)}50%{transform:scale(1.15)}}.sticky-cta-mobile{display:none}@media(max-width:768px){.sticky-cta-mobile{display:flex;position:fixed;bottom:0;left:0;right:0;z-index:998;align-items:center;justify-content:center;gap:10px;padding:16px 24px;background:linear-gradient(135deg,#b8eb21,#9fd91f);color:#000;font-size:16px;font-weight:700;border:none;border-top:1px solid rgba(0,0,0,.1);box-shadow:0 -4px 24px #0000001f,0 -2px 8px #b8eb2140;cursor:pointer;transition:all .3s ease}.sticky-cta-mobile:active{transform:scale(.98);background:linear-gradient(135deg,#9fd91f,#8dc71d)}.sticky-cta-mobile svg{width:20px;height:20px;flex-shrink:0}.sticky-cta-mobile span{white-space:nowrap}body{padding-bottom:70px}}@media(max-width:768px){.hero-description{font-size:16px!important;line-height:28px!important}.btn-nav-install{padding:12px 18px;font-size:13px}}@keyframes fadeIn{0%{opacity:0}to{opacity:1}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeInDown{0%{opacity:0;transform:translateY(-30px)}to{opacity:1;transform:translateY(0)}}@keyframes fadeInLeft{0%{opacity:0;transform:translate(-30px)}to{opacity:1;transform:translate(0)}}@keyframes fadeInRight{0%{opacity:0;transform:translate(30px)}to{opacity:1;transform:translate(0)}}@keyframes scaleIn{0%{opacity:0;transform:scale(.9)}to{opacity:1;transform:scale(1)}}@keyframes scaleInBounce{0%{opacity:0;transform:scale(.8)}50%{transform:scale(1.05)}to{opacity:1;transform:scale(1)}}@keyframes slideInUp{0%{transform:translateY(50px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes slideInDown{0%{transform:translateY(-50px);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes rotateIn{0%{opacity:0;transform:rotate(-10deg) scale(.9)}to{opacity:1;transform:rotate(0) scale(1)}}@keyframes glowPulse{0%,to{box-shadow:0 0 20px #b8eb214d}50%{box-shadow:0 0 40px #b8eb2199}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-10px)}}@keyframes shimmer{0%{background-position:-1000px 0}to{background-position:1000px 0}}@keyframes countUp{0%{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}to{background-position:0% 50%}}.scroll-reveal:not(.revealed){opacity:0;transform:translateY(12px);transition:opacity .8s ease,transform .8s ease}.scroll-reveal.revealed{opacity:1;transform:translateY(0)}.scroll-fade-up:not(.revealed){opacity:0;transform:translateY(30px);transition:opacity .6s ease,transform .6s ease}.scroll-fade-up.revealed{opacity:1;transform:translateY(0)}.scroll-fade-down:not(.revealed){opacity:0;transform:translateY(-30px);transition:opacity .6s ease,transform .6s ease}.scroll-fade-down.revealed{opacity:1;transform:translateY(0)}.scroll-fade-left:not(.revealed){opacity:0;transform:translate(-30px);transition:opacity .6s ease,transform .6s ease}.scroll-fade-left.revealed{opacity:1;transform:translate(0)}.scroll-fade-right:not(.revealed){opacity:0;transform:translate(30px);transition:opacity .6s ease,transform .6s ease}.scroll-fade-right.revealed{opacity:1;transform:translate(0)}.scroll-scale:not(.revealed){opacity:0;transform:scale(.9);transition:opacity .7s ease,transform .7s ease}.scroll-scale.revealed{opacity:1;transform:scale(1)}.scroll-rotate:not(.revealed){opacity:0;transform:rotate(-5deg) scale(.95);transition:opacity .7s ease,transform .7s ease}.scroll-rotate.revealed{opacity:1;transform:rotate(0) scale(1)}.scroll-reveal-delay-1{transition-delay:.1s}.scroll-reveal-delay-2{transition-delay:.2s}.scroll-reveal-delay-3{transition-delay:.3s}.scroll-reveal-delay-4{transition-delay:.4s}.scroll-reveal-delay-5{transition-delay:.5s}.scroll-reveal-delay-6{transition-delay:.6s}.glass{background:#ffffffb3;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.18)}.glass-dark{background:#00000080;backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.1)}.gradient-primary{background:linear-gradient(135deg,#b8eb21,#8bc34a)}.gradient-secondary{background:linear-gradient(135deg,#667eea,#764ba2)}.gradient-mesh{background:radial-gradient(at 0% 0%,rgba(184,235,33,.1) 0px,transparent 50%),radial-gradient(at 100% 0%,rgba(103,126,234,.1) 0px,transparent 50%),radial-gradient(at 100% 100%,rgba(184,235,33,.1) 0px,transparent 50%),radial-gradient(at 0% 100%,rgba(118,75,162,.1) 0px,transparent 50%)}.tilt-card{transform-style:preserve-3d;transition:transform .3s ease;will-change:transform}.tilt-card:hover{transform:perspective(1000px) rotateX(2deg) rotateY(-2deg) scale(1.02)}.glow-green{box-shadow:0 0 20px #b8eb214d;transition:box-shadow .3s ease}.glow-green:hover{box-shadow:0 0 40px #b8eb2180}.glow-pulse{animation:glowPulse 2s ease-in-out infinite}.hover-lift{transition:transform .3s ease,box-shadow .3s ease}.hover-lift:hover{transform:translateY(-8px);box-shadow:0 12px 24px #00000026}.parallax-slow{will-change:transform;transform:translateZ(0);transition:transform .5s cubic-bezier(.25,.46,.45,.94)}.nav-bar.scrolled{background:#fffffff2;backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);box-shadow:0 2px 20px #00000014;padding:12px 0}html{scroll-behavior:smooth}.will-animate{will-change:transform,opacity}.gpu-accelerated{transform:translateZ(0);-webkit-transform:translateZ(0);backface-visibility:hidden;-webkit-backface-visibility:hidden}.stats-bar{display:flex;justify-content:center;align-items:center;gap:16px;flex-wrap:wrap;width:100%;max-width:680px;margin:32px auto 0;padding:0 20px}.stats-bar-pill{display:flex;align-items:center;gap:8px;padding:10px 18px;background:#b8eb2114;border:1px solid rgba(184,235,33,.2);border-radius:24px;transition:all .3s cubic-bezier(.16,1,.3,1);height:44px}.stats-bar-pill:hover{background:#b8eb211f;border-color:#b8eb2166;transform:translateY(-2px)}.stats-bar-icon{flex-shrink:0;width:20px;height:20px}.stats-bar-text{font-size:14px;font-weight:500;color:var(--gray-900);white-space:nowrap}@media(max-width:768px){.stats-bar{gap:12px;margin:28px auto 0}.stats-bar-pill{padding:8px 14px;height:40px}.stats-bar-icon{width:18px;height:18px}.stats-bar-text{font-size:13px}}@media(max-width:480px){.stats-bar{gap:10px;margin:24px auto 0;max-width:100%}.stats-bar-pill{flex:1 1 calc(50% - 5px);min-width:140px;justify-content:center;padding:10px 12px}.stats-bar-text{font-size:12px}}@media(max-width:360px){.stats-bar-pill{flex:1 1 100%;min-width:unset}}.outcome-tiles-section{width:100%;max-width:1400px;margin:80px auto;padding:0 40px;position:relative}.outcome-tiles-container{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin:0 auto}.outcome-tile{display:flex;flex-direction:column;align-items:flex-start;text-align:left;padding:48px 40px;background:linear-gradient(135deg,#ffffffe6,#ffffffb3);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);border:1px solid rgba(184,235,33,.15);border-radius:24px;transition:all .4s cubic-bezier(.16,1,.3,1);position:relative;overflow:hidden;box-shadow:0 4px 16px #0000000a,0 8px 32px #00000005}.outcome-tile:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#b8eb21,#95bf47);transform:scaleX(0);transform-origin:left;transition:transform .5s cubic-bezier(.16,1,.3,1)}.outcome-tile:hover:before{transform:scaleX(1)}.outcome-tile:after{content:"";position:absolute;inset:0;background:radial-gradient(circle at top left,rgba(184,235,33,.05) 0%,transparent 60%);opacity:0;transition:opacity .4s ease;pointer-events:none}.outcome-tile:hover:after{opacity:1}.outcome-tile:hover{transform:translateY(-12px) scale(1.02);border-color:#b8eb214d;box-shadow:0 12px 32px #00000014,0 24px 64px #b8eb211f}.outcome-tile-icon{display:flex;align-items:center;justify-content:center;width:80px;height:80px;margin-bottom:32px;border-radius:20px;background:linear-gradient(135deg,#b8eb211f,#b8eb210f);border:1.5px solid rgba(184,235,33,.2);position:relative;overflow:hidden;transition:all .4s cubic-bezier(.16,1,.3,1);box-shadow:0 4px 12px #b8eb2114,inset 0 1px #ffffff80}.outcome-tile-icon:before{content:"";position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(184,235,33,.3) 0%,transparent 70%);opacity:0;transition:opacity .4s ease}.outcome-tile:hover .outcome-tile-icon:before{opacity:1}.outcome-tile:hover .outcome-tile-icon{background:linear-gradient(135deg,#b8eb2133,#b8eb211a);border-color:#b8eb2166;transform:scale(1.08) rotate(-3deg);box-shadow:0 8px 24px #b8eb2133,inset 0 1px #fff9}.outcome-tile-icon svg{width:40px;height:40px;position:relative;z-index:1;transition:all .4s cubic-bezier(.16,1,.3,1)}.outcome-tile:hover .outcome-tile-icon svg{transform:scale(1.12) rotate(3deg);filter:drop-shadow(0 2px 4px rgba(184,235,33,.3))}.outcome-tile-title{font-size:22px;font-weight:700;color:#111827;margin:0 0 16px;line-height:1.3;letter-spacing:-.02em;position:relative;z-index:1;transition:color .3s ease}.outcome-tile:hover .outcome-tile-title{color:#000}.outcome-tile-description{font-size:15px;font-weight:400;color:#4b5563;line-height:1.6;margin:0;letter-spacing:-.01em;position:relative;z-index:1;transition:color .3s ease}.outcome-tile:hover .outcome-tile-description{color:#374151}@keyframes shimmer-outcome{0%{transform:translate(-100%) rotate(45deg)}to{transform:translate(200%) rotate(45deg)}}.outcome-tile:hover{animation:none}.outcome-tile-icon:after{content:"";position:absolute;bottom:0;left:50%;transform:translate(-50%);width:40%;height:2px;background:linear-gradient(90deg,transparent,#B8EB21,transparent);opacity:0;transition:opacity .4s ease}.outcome-tile:hover .outcome-tile-icon:after{opacity:1}@media(min-width:1920px){.outcome-tiles-section{margin:100px auto;padding:0 60px}.outcome-tiles-container{gap:40px}.outcome-tile{padding:56px 48px}.outcome-tile-icon{width:96px;height:96px;margin-bottom:40px}.outcome-tile-icon svg{width:48px;height:48px}.outcome-tile-title{font-size:26px;margin-bottom:20px}.outcome-tile-description{font-size:17px}}@media(max-width:1440px){.outcome-tiles-section{padding:0 32px;margin:70px auto}.outcome-tiles-container{gap:28px}.outcome-tile{padding:42px 36px}}@media(max-width:1024px){.outcome-tiles-section{margin:60px auto;padding:0 24px}.outcome-tiles-container{gap:24px}.outcome-tile{padding:36px 28px}.outcome-tile-icon{width:72px;height:72px;margin-bottom:28px}.outcome-tile-icon svg{width:36px;height:36px}.outcome-tile-title{font-size:20px;margin-bottom:14px}.outcome-tile-description{font-size:14px}}@media(max-width:768px){.outcome-tiles-section{margin:50px auto;padding:0 20px}.outcome-tiles-container{grid-template-columns:1fr;gap:20px}.outcome-tile{padding:32px 28px;border-radius:20px}.outcome-tile:hover{transform:translateY(-6px) scale(1.01)}.outcome-tile-icon{width:68px;height:68px;margin-bottom:24px;border-radius:16px}.outcome-tile-icon svg{width:34px;height:34px}.outcome-tile-title{font-size:19px;margin-bottom:12px}.outcome-tile-description{font-size:14px;line-height:1.5}}@media(max-width:480px){.outcome-tiles-section{margin:40px auto;padding:0 16px}.outcome-tiles-container{gap:16px}.outcome-tile{padding:28px 24px;border-radius:18px}.outcome-tile:hover{transform:translateY(-4px)}.outcome-tile-icon{width:64px;height:64px;margin-bottom:20px;border-radius:14px}.outcome-tile-icon svg{width:32px;height:32px}.outcome-tile-title{font-size:18px;margin-bottom:10px}.outcome-tile-description{font-size:13px}}@media(max-width:360px){.outcome-tiles-section{margin:32px auto;padding:0 12px}.outcome-tile{padding:24px 20px}.outcome-tile-icon{width:56px;height:56px;margin-bottom:18px}.outcome-tile-icon svg{width:28px;height:28px}.outcome-tile-title{font-size:17px}.outcome-tile-description{font-size:13px}}.problem-section{background:linear-gradient(180deg,#fff9f9,#fff);padding:80px 20px}.problem-section .section-header{margin-bottom:64px}.problem-card{background:linear-gradient(135deg,#fff,#fff5f5)!important;border:1.5px solid rgba(255,107,107,.15)!important;box-shadow:0 8px 24px #ff6b6b14,0 2px 6px #ff6b6b0a!important;position:relative;overflow:hidden}.problem-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#ff6b6b,#ff8787);opacity:0;transition:opacity .4s cubic-bezier(.16,1,.3,1)}.problem-card:hover:before{opacity:1}.problem-card:hover{transform:translateY(-10px)!important;border-color:#ff6b6b40!important;box-shadow:0 20px 48px #ff6b6b26,0 8px 16px #ff6b6b14!important}.problem-icon{background:linear-gradient(135deg,#fff0f0,#ffe5e5)!important;border:1px solid rgba(255,107,107,.1);box-shadow:0 4px 16px #ff6b6b1f,inset 0 1px #fffc!important}.problem-card:hover .problem-icon{transform:scale(1.12) rotate(-5deg)!important;box-shadow:0 8px 24px #ff6b6b33,inset 0 1px #ffffffe6!important}.problem-card .feature-icon svg{filter:drop-shadow(0 2px 4px rgba(255,107,107,.15))}.problem-card:hover .feature-icon svg{transform:scale(1.15);filter:drop-shadow(0 4px 8px rgba(255,107,107,.25))}.problem-card .feature-title{color:#1f2937!important;background:linear-gradient(135deg,#1f2937,#374151);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.problem-card:hover .feature-title{background:linear-gradient(135deg,#000,#1f2937);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.problem-card .feature-description{color:#4b5563!important}.ps-section{position:relative;width:100%;max-width:1400px;margin:80px auto;padding:0 40px}.ps-video-bg{position:absolute;inset:0;overflow:hidden;z-index:0}.ps-video{width:100%;height:100%;object-fit:cover;filter:saturate(1.15)}.ps-video-overlay{position:absolute;inset:0;background:linear-gradient(135deg,#0f172ae0,#0f172a99)}.ps-inner{position:relative;z-index:1;border-radius:16px;padding:56px 48px 40px;color:#fff}.ps-header{text-align:center;margin-bottom:48px}.ps-eyebrow{display:inline-flex;padding:6px 16px;border-radius:999px;border:1px solid rgba(255,255,255,.2);font-size:12px;letter-spacing:.16em;text-transform:uppercase;margin-bottom:12px;color:#fffc}.ps-title{margin:0;font-size:36px;font-weight:700;letter-spacing:-.03em}.ps-columns{display:grid;grid-template-columns:repeat(2,1fr);gap:32px}.ps-column{border-radius:12px;padding:32px;background:#ffffff0a;border:none}.ps-column-header span{font-size:13px;font-weight:600;letter-spacing:.12em;text-transform:uppercase}.ps-column.problem{border-left:3px solid rgba(255,107,107,.8)}.ps-column.solution{border-left:3px solid rgba(52,211,153,.8)}.ps-card-grid{display:flex;flex-direction:column;gap:18px;margin-top:16px}.ps-card{display:flex;gap:16px;padding:18px;border-radius:16px;background:#0003;border:none}.ps-card h3{margin:0 0 6px;font-size:18px}.ps-card p{margin:0;font-size:15px;color:#fffc;line-height:1.5}.ps-icon{width:48px;height:48px;border-radius:16px;display:flex;align-items:center;justify-content:center}.ps-icon-problem{background:#ff6b6b26}.ps-icon-solution{background:#34d39926}.ps-compare{display:grid;grid-template-columns:1fr auto 1fr;gap:32px;margin-top:48px;align-items:start}.compare-divider{display:flex;align-items:center;justify-content:center;padding-top:80px}.compare-divider span{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border-radius:50%;background:#ffffff14;border:2px solid rgba(255,255,255,.15);color:#ffffffe6;font-size:16px;font-weight:700;letter-spacing:.05em}.compare-card{border-radius:20px;padding:32px 28px;border:2px solid;background:#00000059;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);text-align:center;transition:all .3s ease}.compare-card:hover{transform:translateY(-4px)}.compare-card.without{border-color:#ef444466}.compare-card.without:hover{border-color:#ef444499;box-shadow:0 12px 40px #ef444426}.compare-card.with{border-color:#b8eb2166}.compare-card.with:hover{border-color:#b8eb2199;box-shadow:0 12px 40px #b8eb2126}.compare-icon{display:flex;justify-content:center;margin-bottom:20px}.compare-label{margin:0 0 20px;font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:#fff9;font-weight:600}.compare-stats{display:flex;gap:16px;justify-content:center;margin-bottom:24px;padding-bottom:24px;border-bottom:1px solid rgba(255,255,255,.1)}.stat-item{display:flex;flex-direction:column;align-items:center;gap:6px}.stat-value{font-size:32px;font-weight:700;line-height:1}.stat-value.negative{color:#ef4444}.stat-value.positive{color:#b8eb21}.stat-label{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:#ffffff80;font-weight:600}.compare-list{margin:0;padding:0;list-style:none;display:flex;flex-direction:column;gap:12px;text-align:left}.compare-list li{display:flex;align-items:flex-start;gap:10px;color:#ffffffd9;font-size:14px;line-height:1.5}.compare-card.without .compare-list li svg{color:#ef4444;flex-shrink:0;margin-top:2px}.compare-card.with .compare-list li svg{color:#b8eb21;flex-shrink:0;margin-top:2px}@media(max-width:1200px){.ps-section{margin:60px auto;padding:0 32px}.ps-inner{padding:40px}}@media(max-width:1024px){.ps-columns{grid-template-columns:1fr}.ps-compare{grid-template-columns:1fr;gap:24px}.compare-divider{display:none}}@media(max-width:768px){.ps-section{margin:50px auto;padding:0 20px}.ps-inner{padding:32px 24px}.ps-title{font-size:28px}}@media(max-width:480px){.ps-section{margin:40px auto;padding:0 16px}.ps-card{flex-direction:column}.ps-icon{width:44px;height:44px}}.solution-section{background:linear-gradient(180deg,#f5ffef,#fff);padding:80px 20px}.solution-section .section-header{margin-bottom:64px}.solution-card{background:linear-gradient(135deg,#fff,#fafff5)!important;border:1.5px solid rgba(184,235,33,.2)!important;box-shadow:0 8px 24px #b8eb211f,0 2px 6px #b8eb210f!important;position:relative;overflow:hidden}.solution-card:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#b8eb21,#c8f841);opacity:0;transition:opacity .4s cubic-bezier(.16,1,.3,1)}.solution-card:hover:before{opacity:1}.solution-card:hover{transform:translateY(-10px) scale(1.02)!important;border-color:#b8eb2159!important;box-shadow:0 24px 56px #b8eb2133,0 12px 24px #b8eb211f!important}.solution-icon{background:linear-gradient(135deg,#f5ffef,#e8f9d5)!important;border:1px solid rgba(184,235,33,.15);box-shadow:0 4px 16px #b8eb2126,inset 0 1px #ffffffe6!important}.solution-card:hover .solution-icon{transform:scale(1.15) rotate(8deg)!important;box-shadow:0 12px 32px #b8eb2140,inset 0 2px #fffffff2!important;background:linear-gradient(135deg,#e8f9d5,#d5f5b0)!important}.solution-card .feature-icon svg{filter:drop-shadow(0 2px 6px rgba(184,235,33,.2))}.solution-card:hover .feature-icon svg{transform:scale(1.2);filter:drop-shadow(0 6px 12px rgba(184,235,33,.35))}.solution-card .feature-title{color:#059669!important;background:linear-gradient(135deg,#059669,#10b981);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;font-weight:700!important}.solution-card:hover .feature-title{background:linear-gradient(135deg,#047857,#059669);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.solution-card .feature-description{color:#065f46!important;font-weight:500}.how-to-section-v2{width:100%;max-width:1400px;margin:90px auto;padding:0 40px}.how-to-header{text-align:center;margin-bottom:64px}.how-to-eyebrow{display:inline-flex;padding:4px 12px;border-radius:999px;background:#b8eb211f;color:#3f6212;font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;margin-bottom:16px}.how-to-title{margin:0 0 12px;font-size:36px;line-height:1.2;font-weight:700;letter-spacing:-.02em;color:#111827}.how-to-subtitle{margin:0;font-size:18px;line-height:1.5;color:#6b7280}.how-to-layout{display:flex;gap:40px;align-items:stretch}.how-to-visual{flex:1;display:flex;align-items:center;justify-content:center}.how-to-window{width:100%;max-width:520px;border-radius:24px;background:radial-gradient(circle at top left,rgba(184,235,33,.25),transparent 55%),radial-gradient(circle at bottom right,#0f172ae6,#020617);box-shadow:0 20px 60px #0f172a73,0 0 0 1px #0f172a80;overflow:hidden;color:#e5e7eb}.how-to-window-header{display:flex;align-items:center;padding:14px 18px;gap:12px;background:#0f172ad9;border-bottom:1px solid rgba(148,163,184,.3)}.traffic-lights{display:flex;gap:6px}.traffic-lights .dot{width:10px;height:10px;border-radius:999px}.traffic-lights .red{background:#f97373}.traffic-lights .amber{background:#facc15}.traffic-lights .green{background:#4ade80}.how-to-url-bar{display:flex;align-items:center;gap:8px;padding:6px 10px;border-radius:999px;background:#0f172ae6;border:1px solid rgba(148,163,184,.4);flex:1}.lock-icon{font-size:10px;opacity:.9}.url-text{font-size:12px;color:#e5e7eb;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.url-text.typing:after{content:"|";animation:blink .7s infinite}@keyframes blink{0%,49%{opacity:1}50%,to{opacity:0}}.how-to-window-body{padding:22px 22px 24px}.how-to-flow{display:flex;flex-direction:column;gap:10px;margin-bottom:22px}.how-to-flow-pill{display:flex;align-items:center;gap:10px;padding:10px 12px;border-radius:999px;background:#0f172abf;border:1px solid rgba(148,163,184,.3);font-size:13px;color:#e5e7eb;opacity:.7;transition:all .5s cubic-bezier(.16,1,.3,1);transform:translate(-5px)}.how-to-flow-pill.active{background:linear-gradient(90deg,#b8eb21,#86c71d);border-color:transparent;color:#020617;opacity:1;transform:translate(0);animation:pill-activate .6s cubic-bezier(.16,1,.3,1)}@keyframes pill-activate{0%{transform:translate(-5px) scale(.98);opacity:.7}50%{transform:translate(2px) scale(1.02)}to{transform:translate(0) scale(1);opacity:1}}.pill-number{display:inline-flex;align-items:center;justify-content:center;width:22px;height:22px;border-radius:999px;background:#0f172ae6;border:1px solid rgba(15,23,42,.7);font-size:11px;font-weight:600}.how-to-flow-pill.active .pill-number{background:#020617;color:#b8eb21}.pill-label{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.how-to-graph{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;align-items:flex-end}.graph-bar{height:40px;border-radius:999px;background:linear-gradient(180deg,#94a3b899,#0f172ae6);transform:scaleY(0);transform-origin:bottom;transition:all .6s cubic-bezier(.16,1,.3,1)}.graph-bar.active{transform:scaleY(1);animation:bar-grow .8s cubic-bezier(.16,1,.3,1)}.graph-bar.long{height:70px;background:linear-gradient(180deg,#b8eb21,#3f6212)}.graph-bar.long.active{background:linear-gradient(180deg,#b8eb21,#3f6212);animation:bar-grow-green .8s cubic-bezier(.16,1,.3,1)}.graph-bar.medium{height:55px}@keyframes bar-grow{0%{transform:scaleY(0)}60%{transform:scaleY(1.08)}to{transform:scaleY(1)}}@keyframes bar-grow-green{0%{transform:scaleY(0);background:linear-gradient(180deg,#94a3b899,#0f172ae6)}40%{background:linear-gradient(180deg,#b8eb2180,#3f621280)}60%{transform:scaleY(1.08)}to{transform:scaleY(1);background:linear-gradient(180deg,#b8eb21,#3f6212)}}.how-to-steps{flex:1;display:flex;flex-direction:column;gap:18px}.how-to-step-card{display:flex;align-items:flex-start;gap:18px;padding:18px 18px 18px 16px;border-radius:18px;background:#fff;border:1px solid rgba(209,213,219,.9);box-shadow:0 6px 18px #0f172a0a;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease}.how-to-step-card:hover{transform:translateY(-4px);border-color:#b8eb2166;box-shadow:0 14px 32px #0f172a1f,0 0 0 1px #b8eb2126}.how-to-step-number{width:32px;height:32px;border-radius:999px;background:linear-gradient(135deg,#b8eb21,#86c71d);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;color:#020617;flex-shrink:0}.how-to-step-text{display:flex;flex-direction:column;gap:6px}.how-to-step-label{font-size:12px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#4b5563}.how-to-step-title{margin:0;font-size:20px;font-weight:600;color:#111827;letter-spacing:-.01em}.how-to-step-description{margin:0;font-size:15px;line-height:1.6;color:#4b5563}@media(max-width:1200px){.how-to-section-v2{margin:80px auto;padding:0 32px}.how-to-layout{gap:32px}}@media(max-width:1024px){.how-to-section-v2{margin:70px auto}.how-to-layout{flex-direction:column}.how-to-visual{order:2}.how-to-steps{order:1}.how-to-window{max-width:100%}}@media(max-width:768px){.how-to-section-v2{margin:60px auto;padding:0 20px}.how-to-header{margin-bottom:40px}.how-to-title{font-size:30px}.how-to-subtitle{font-size:16px}.how-to-step-card{padding:16px 14px}}@media(max-width:480px){.how-to-section-v2{margin:48px auto;padding:0 16px}.how-to-title{font-size:26px}.how-to-subtitle{font-size:15px}.how-to-window-body{padding:18px}.how-to-step-card{align-items:flex-start}.how-to-step-title{font-size:18px}.how-to-step-description{font-size:14px}}.how-to-section{width:100%;max-width:1400px;margin:100px auto;padding:0 40px;position:relative}.how-to-section .section-header{text-align:center;margin-bottom:80px}.how-to-section .section-title{font-size:48px;font-weight:700;color:#111827;margin:0 0 16px;letter-spacing:-.02em;line-height:1.2}.how-to-section .section-description{font-size:20px;font-weight:400;color:#6b7280;margin:0;line-height:1.5}.steps-container{position:relative;display:flex;flex-direction:column;gap:60px}.steps-container:before{content:"";position:absolute;left:60px;top:80px;bottom:80px;width:3px;background:linear-gradient(180deg,#b8eb2133,#b8eb2199,#b8eb2133);border-radius:2px;z-index:0}.step-item{display:grid;grid-template-columns:120px 1fr;gap:40px;align-items:center;position:relative;z-index:1}.step-item.reverse{grid-template-columns:120px 1fr}.step-item:before{content:attr(data-step);position:absolute;left:32px;top:50%;transform:translateY(-50%);width:56px;height:56px;display:flex;align-items:center;justify-content:center;background:linear-gradient(135deg,#b8eb21,#9fd91f);color:#000;font-size:24px;font-weight:700;border-radius:50%;box-shadow:0 4px 16px #b8eb214d,0 0 0 8px #b8eb211a;z-index:2}.step-image{width:100%;height:auto;border-radius:16px;box-shadow:0 8px 32px #00000014,0 2px 8px #0000000a;transition:all .4s cubic-bezier(.16,1,.3,1);opacity:.6;filter:grayscale(.3)}.step-item:hover .step-image{opacity:1;filter:grayscale(0);transform:translateY(-4px) scale(1.02);box-shadow:0 12px 48px #0000001f,0 4px 16px #0000000f}.step-content{display:flex;flex-direction:column;gap:12px;padding:32px;background:linear-gradient(135deg,#ffffffe6,#ffffffb3);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border:1px solid rgba(184,235,33,.15);border-radius:20px;box-shadow:0 4px 16px #0000000a;transition:all .4s cubic-bezier(.16,1,.3,1);position:relative}.step-content:before{content:"";position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#B8EB21 0%,transparent 100%);border-radius:20px 20px 0 0;opacity:0;transition:opacity .4s ease}.step-item:hover .step-content:before{opacity:1}.step-item:hover .step-content{border-color:#b8eb214d;box-shadow:0 8px 32px #b8eb211f,0 4px 16px #0000000f;transform:translate(8px)}.step-label{display:inline-flex;align-items:center;gap:8px;padding:6px 14px;background:#b8eb2126;color:#000;font-size:13px;font-weight:600;border-radius:20px;text-transform:uppercase;letter-spacing:.05em;width:fit-content;box-shadow:0 2px 8px #b8eb2126}.step-title{font-size:28px;font-weight:700;color:#111827;margin:0;line-height:1.3;letter-spacing:-.02em}.step-description{font-size:16px;font-weight:400;color:#4b5563;line-height:1.6;margin:0}@media(max-width:1024px){.how-to-section{margin:80px auto;padding:0 32px}.how-to-section .section-title{font-size:40px}.how-to-section .section-description{font-size:18px}.steps-container{gap:50px}.step-item{grid-template-columns:100px 1fr;gap:32px}.step-content{padding:28px}.step-title{font-size:24px}}@media(max-width:768px){.how-to-section{margin:60px auto;padding:0 20px}.how-to-section .section-header{margin-bottom:60px}.how-to-section .section-title{font-size:32px}.how-to-section .section-description{font-size:16px}.steps-container{gap:40px}.steps-container:before{display:none}.step-item{grid-template-columns:1fr;gap:20px}.step-item:before{position:static;transform:none;margin:0 auto 20px}.step-image{order:-1;margin-bottom:20px}.step-content{padding:24px}.step-title{font-size:22px}.step-description{font-size:15px}}@media(max-width:480px){.how-to-section{margin:48px auto;padding:0 16px}.how-to-section .section-title{font-size:28px}.how-to-section .section-description{font-size:15px}.steps-container{gap:32px}.step-item:before{width:48px;height:48px;font-size:20px}.step-content{padding:20px}.step-title{font-size:20px}.step-description{font-size:14px}}.why-section-v3{width:100%;max-width:1400px;margin:0 auto;padding:80px 40px}.why-wrapper{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:48px;align-items:center;padding:48px;border:1px solid rgba(184,235,33,.12);border-radius:32px;background:linear-gradient(180deg,#fff,#f8fff0);box-shadow:0 25px 60px #b8eb211f}.why-copy{display:flex;flex-direction:column;gap:18px}.why-eyebrow{font-size:12px;font-weight:600;letter-spacing:.2em;text-transform:uppercase;color:#3f6212;background:#b8eb211f;padding:4px 12px;border-radius:999px;display:inline-block;width:fit-content}.why-heading{margin:0;font-size:38px;font-weight:700;color:#0f172a;letter-spacing:-.02em}.why-subcopy{margin:0;font-size:18px;color:#4b5563;line-height:1.6}.why-benefits{display:flex;flex-direction:column;gap:16px;margin-top:8px}.why-benefit-card{display:flex;gap:16px;padding:16px 18px;border-radius:18px;border:1px solid rgba(15,23,42,.08);background:#fff;box-shadow:0 8px 24px #0f172a0d}.why-benefit-icon{width:46px;height:46px;border-radius:16px;background:transparent;display:flex;align-items:center;justify-content:center;color:#b8eb21;flex-shrink:0}.why-benefit-card h3{margin:0 0 6px;font-size:18px;color:#0f172a}.why-benefit-card p{margin:0;font-size:15px;color:#4b5563;line-height:1.5}.why-highlight{display:none}.why-highlight-card{border-radius:16px;padding:20px;background:#0f172a;color:#fff;text-align:center}.why-stat-chart{display:flex;flex-direction:column;gap:16px;align-items:center}.chart-line-graph{width:100%;max-width:140px;height:90px;margin:0 auto}.chart-line-base{opacity:1}.chart-line-improved{stroke-dasharray:1000;stroke-dashoffset:1000;opacity:0;transition:stroke-dashoffset 2s cubic-bezier(.16,1,.3,1),opacity .3s ease}.chart-start-dot{opacity:0;transform-origin:center;transition:opacity .3s ease,transform .6s cubic-bezier(.16,1,.3,1)}.chart-line-graph.animate .chart-line-improved{stroke-dashoffset:0;opacity:1}.chart-line-graph.animate .chart-start-dot{opacity:1;animation:dotPulse 2s ease-in-out infinite 2s}@keyframes dotPulse{0%,to{transform:scale(1);opacity:1}50%{transform:scale(1.5);opacity:.6}}.chart-metric{display:flex;flex-direction:column;gap:4px}.metric-value{display:block;font-size:32px;font-weight:700;color:#b8eb21;line-height:1}.metric-label{margin:0;font-size:13px;color:#ffffffbf;font-weight:500}.why-visual{position:relative}.why-visual img{width:100%;border-radius:28px;border:1px solid rgba(15,23,42,.08);box-shadow:0 35px 80px #0f172a33;display:block}.why-visual-glow{position:absolute;inset:-20px;background:radial-gradient(circle,rgba(184,235,33,.3),transparent 60%);filter:blur(40px);pointer-events:none}.why-metrics-overlay{position:absolute;top:50%;right:-80px;transform:translateY(-50%);display:flex;flex-direction:column;gap:24px;z-index:2}.metric-overlay-card{background:#000000d9;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);border-radius:16px;padding:16px 20px;border:1px solid rgba(184,235,33,.2);box-shadow:0 20px 40px #0006,0 0 30px #b8eb211a;min-width:180px;transition:transform .3s ease,box-shadow .3s ease}.metric-overlay-card:hover{transform:scale(1.05);box-shadow:0 25px 50px #00000080,0 0 40px #b8eb2133}.metric-info{margin-top:12px;text-align:center}.metric-value-overlay{display:block;font-size:28px;font-weight:700;color:#b8eb21;line-height:1;margin-bottom:4px}.metric-label-overlay{margin:0;font-size:12px;color:#ffffffbf;font-weight:500}@media(max-width:1200px){.why-wrapper{padding:40px}.why-heading{font-size:34px}}@media(max-width:1200px){.why-metrics-overlay{right:-40px;gap:16px}.metric-overlay-card{min-width:160px;padding:14px 16px}.metric-value-overlay{font-size:24px}}@media(max-width:992px){.why-wrapper{grid-template-columns:1fr;padding:36px}.why-visual{order:-1}.why-metrics-overlay{position:static;transform:none;flex-direction:row;justify-content:center;margin-top:24px;gap:16px}.metric-overlay-card{flex:1;min-width:0}.why-highlight{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:768px){.why-section-v3{padding:60px 16px}.why-wrapper{padding:32px 20px;gap:32px;border-radius:24px}.why-heading{font-size:26px;line-height:1.3}.why-subcopy{font-size:16px}.why-benefit-card{gap:14px;padding:14px 16px}.why-benefit-icon{width:40px;height:40px}.why-benefit-icon svg{width:24px;height:24px}.why-benefit-card h3{font-size:16px}.why-benefit-card p{font-size:14px}.why-metrics-overlay{flex-direction:column;gap:12px}.metric-overlay-card{padding:14px 16px}.metric-value-overlay{font-size:24px}.metric-label-overlay{font-size:11px}.why-highlight{grid-template-columns:1fr}}.trust-section{width:100%;max-width:1400px;margin:40px auto 0;padding:0 40px;background:transparent}.trust-inner{border-radius:28px;padding:18px 32px;background:transparent}.trust-logos-only{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:clamp(28px,3vw,64px);margin:0 auto}.trust-logo img{display:block;height:100px;width:auto;filter:grayscale(1);opacity:.75;transition:opacity .2s ease,transform .2s ease,filter .2s ease;max-width:180px}.trust-logo{flex:0 1 140px;justify-content:center}.trust-logo-openai img{height:84px}.trust-logo-google img{height:92px}.trust-logo-shopify img{height:96px}.trust-logo-clienta img{height:90px}.trust-logo-hocelot img{height:16px}.trust-logo img:hover{opacity:1;filter:grayscale(0);transform:translateY(-1px)}@media(max-width:1024px){.trust-section{margin:32px auto 0;padding:0 32px}.trust-inner{padding:16px 24px}.trust-logos-only{gap:40px}}@media(max-width:768px){.trust-section{margin:28px auto 0;padding:0 20px}.trust-inner{padding:20px 18px}.trust-logos-only{gap:28px;flex-wrap:wrap}.trust-logo img{height:70px}.trust-logo-openai img{height:56px}.trust-logo-google img{height:62px}.trust-logo-shopify img{height:68px}.trust-logo-clienta img{height:60px}.trust-logo-hocelot img{height:8px}}@media(max-width:480px){.trust-section{margin:24px auto 0;padding:0 20px}.trust-inner{padding:16px}.trust-logos-only{gap:20px;justify-content:space-around}.trust-logo{flex:0 1 auto}.trust-logo img{height:50px}.trust-logo-openai img{height:42px}.trust-logo-google img{height:46px}.trust-logo-shopify img{height:48px}.trust-logo-clienta img{height:44px}.trust-logo-hocelot img{height:8px}}.landing-island-demo{width:100%;max-width:1400px;margin:60px auto;padding:0 40px;min-height:150px;display:flex;align-items:center;justify-content:center}.landing-island-container{width:100%;display:flex;justify-content:center;position:relative}.island-bar-demo{transition:all .5s cubic-bezier(.16,1,.3,1);animation:slideDownFadeIn .6s cubic-bezier(.16,1,.3,1)}.island-collapsed{min-width:220px;height:48px;background:#000;-webkit-backdrop-filter:blur(30px);backdrop-filter:blur(30px);border-radius:24px;display:flex;align-items:center;justify-content:space-between;padding:0 18px;gap:14px;box-shadow:0 10px 40px #0006,0 0 35px #b8eb2140;border:1px solid rgba(255,255,255,.12)}.island-indicator{position:relative;width:28px;height:28px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.island-dot{width:10px;height:10px;border-radius:50%;background:#b8eb21;animation:breathePulse 2s ease-in-out infinite}.island-status{font-size:13px;color:#ffffffbf;font-family:-apple-system,BlinkMacSystemFont,SF Pro Display,sans-serif;font-weight:500;flex:1;text-align:center;display:flex;align-items:center;justify-content:center;gap:2px}.island-dots{display:inline-flex;gap:2px;margin-left:2px}.island-dots span{animation:dotBounce 1.4s ease-in-out infinite;opacity:.4}.island-dots span:nth-child(1){animation-delay:0s}.island-dots span:nth-child(2){animation-delay:.2s}.island-dots span:nth-child(3){animation-delay:.4s}.island-logo{width:65px;height:auto;opacity:1;flex-shrink:0;filter:brightness(1.2)}.island-expanded{max-width:420px;min-width:300px;background:#000;-webkit-backdrop-filter:blur(30px);backdrop-filter:blur(30px);border-radius:22px;padding:18px 20px;box-shadow:0 25px 70px #00000073,0 0 45px #b8eb214d;border:1px solid rgba(255,255,255,.18);animation:expandIslandDemo .6s cubic-bezier(.16,1,.3,1);position:relative}.island-close{position:absolute;top:14px;right:14px;background:#ffffff1a;border:none;border-radius:50%;width:26px;height:26px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:all .2s;padding:0;z-index:2}.island-close:hover{background:#fff3;transform:scale(1.1)}.island-message-container{display:flex;align-items:flex-start;gap:12px;margin-bottom:14px}.island-dot-large{width:10px;height:10px;border-radius:50%;background:#b8eb21;animation:livePulse 2s ease-in-out infinite;box-shadow:0 0 10px #b8eb21;margin-top:6px;flex-shrink:0}.island-message{display:block;color:#ffffffeb;font-size:14px;line-height:1.5;font-family:-apple-system,BlinkMacSystemFont,SF Pro Display,sans-serif;text-decoration:none;cursor:pointer;transition:color .2s;flex:1;padding-right:24px;font-weight:400}.island-message:hover{color:#b8eb21}.island-cursor{display:inline-block;width:2px;height:16px;background:#ffffffe6;margin-left:2px;animation:blink 1s steps(2) infinite;vertical-align:text-bottom}.island-footer{margin-top:10px;padding-top:12px;border-top:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justifyContent:center;gap:7px}.island-powered{font-size:11px;color:#ffffff73;font-family:-apple-system,BlinkMacSystemFont,SF Pro Display,sans-serif}.island-brand{font-size:11px;color:#b8eb21;font-family:-apple-system,BlinkMacSystemFont,SF Pro Display,sans-serif;font-weight:600}@keyframes slideDownFadeIn{0%{opacity:0;transform:translateY(-25px)}to{opacity:1;transform:translateY(0)}}@keyframes expandIslandDemo{0%{opacity:0;transform:scale(.85) translateY(-12px)}to{opacity:1;transform:scale(1) translateY(0)}}@keyframes breathePulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(1.25)}}@keyframes fadeInOut{0%,to{opacity:.55}50%{opacity:1}}@keyframes dotBounce{0%,60%,to{opacity:.4;transform:translateY(0)}30%{opacity:1;transform:translateY(-4px)}}@keyframes blink{0%,to{opacity:1}50%{opacity:0}}@keyframes livePulse{0%,to{opacity:1;transform:scale(1)}50%{opacity:.55;transform:scale(1.45)}}@media(max-width:768px){.landing-island-demo{margin:40px auto;padding:0 20px;min-height:120px}.island-collapsed{min-width:200px;height:44px;padding:0 16px;gap:12px}.island-logo{width:55px}.island-status{font-size:12px}.island-expanded{max-width:100%;min-width:280px;padding:16px 18px}.island-message{font-size:13px}}@media(max-width:480px){.island-collapsed{min-width:180px;height:42px;padding:0 14px;gap:10px}.island-logo{width:50px}.island-status{font-size:11px}.island-expanded{min-width:260px}.island-message{font-size:12px}}
