
/* Stitchize homepage v2 — fast, focused and responsive */
.st-home-main{
  background:var(--canvas);
  overflow:hidden;
}
.st-home-hero{
  margin:0;
  padding:0;
  position:relative;
}
.st-hero-slider{
  position:relative;
  width:100%;
  min-height:clamp(470px,42vw,610px);
  overflow:hidden;
  background:var(--navy);
  isolation:isolate;
}
.st-hero-slides,
.st-hero-slide,
.st-hero-picture{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.st-hero-slide{
  opacity:0;
  visibility:hidden;
  transform:scale(1.015);
  transition:opacity .7s ease,visibility .7s ease,transform 1.1s ease;
}
.st-hero-slide.is-active{
  opacity:1;
  visibility:visible;
  transform:scale(1);
  z-index:2;
}
.st-hero-picture{
  display:block;
  overflow:hidden;
}
.st-hero-picture img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:center;
  transform:scale(1.025);
  transition:transform 7s ease;
}
.st-hero-slide.is-active .st-hero-picture img{
  transform:scale(1);
}
.st-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(22,29,50,.92) 0%,rgba(22,29,50,.78) 34%,rgba(22,29,50,.24) 66%,rgba(22,29,50,.08) 100%),
    linear-gradient(0deg,rgba(22,29,50,.18),rgba(22,29,50,.02));
}
.st-hero-copy-wrap{
  position:relative;
  z-index:3;
  min-height:clamp(470px,42vw,610px);
  display:flex;
  align-items:center;
}
.st-hero-copy{
  width:min(620px,58%);
  padding:42px 0;
  color:#fff;
}
.st-hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  color:#f4c46d;
  font:600 12px/1.4 var(--mono);
  letter-spacing:.12em;
  text-transform:uppercase;
}
.st-hero-kicker::before{
  content:"";
  width:24px;
  height:2px;
  background:var(--coral);
}
.st-hero-copy h1{
  color:#fff!important;
  font-size:clamp(46px,5vw,76px)!important;
  line-height:1.02!important;
  margin:0 0 18px!important;
  max-width:760px;
}
.st-hero-copy h1 em{
  color:var(--coral);
  font-weight:600;
}
.st-hero-copy p{
  max-width:585px;
  margin:0 0 13px;
  color:rgba(255,255,255,.84);
  font-size:clamp(15px,1.35vw,19px);
  line-height:1.62;
}
.st-hero-price{
  margin-top:12px;
  color:#fff;
  font:500 14px/1.5 var(--mono);
}
.st-hero-price strong{
  color:#f4c46d;
  font-size:1.35em;
}
.st-hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:25px;
}
.st-btn-ghost-light{
  background:rgba(255,255,255,.06)!important;
  border-color:rgba(255,255,255,.62)!important;
  color:#fff!important;
}
.st-btn-ghost-light:hover{
  background:#fff!important;
  border-color:#fff!important;
  color:var(--navy)!important;
}
.st-hero-copy>*{
  opacity:0;
  transform:translateY(22px);
}
.st-hero-slide.is-active .st-hero-copy>*{
  animation:stHeroReveal .68s both cubic-bezier(.22,.8,.3,1);
}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(1){animation-delay:.08s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(2){animation-delay:.16s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(3){animation-delay:.25s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(4){animation-delay:.34s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(5){animation-delay:.43s}
@keyframes stHeroReveal{
  to{opacity:1;transform:translateY(0)}
}
.st-hero-arrow{
  position:absolute;
  z-index:5;
  top:50%;
  width:48px;
  height:48px;
  margin-top:-24px;
  border:1px solid rgba(255,255,255,.38);
  border-radius:50%;
  background:rgba(22,29,50,.35);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  cursor:pointer;
  opacity:.75;
  transition:.2s ease;
  backdrop-filter:blur(6px);
}
.st-hero-arrow:hover{
  opacity:1;
  background:var(--coral);
  border-color:var(--coral);
}
.st-hero-prev{left:24px}
.st-hero-next{right:24px}
.st-hero-controls{
  position:absolute;
  z-index:5;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.st-hero-controls button{
  width:10px;
  height:10px;
  min-height:0!important;
  padding:0!important;
  border:0!important;
  border-radius:999px!important;
  background:rgba(255,255,255,.5)!important;
  cursor:pointer;
  transition:.25s ease;
}
.st-hero-controls button.is-active{
  width:30px;
  background:var(--coral)!important;
}
.st-hero-progress{
  position:absolute;
  z-index:5;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:rgba(255,255,255,.16);
}
.st-hero-progress span{
  display:block;
  width:0;
  height:100%;
  background:var(--coral);
}
.st-hero-slider.is-running .st-hero-progress span{
  animation:stHeroProgress 4s linear forwards;
}
@keyframes stHeroProgress{to{width:100%}}

.st-quick-paths{
  padding:70px 0 12px;
}
.st-quick-paths .st-fork{
  max-width:890px;
}

.st-section-compact{padding-top:26px}
.st-reviews-section{padding-bottom:84px}

.st-carousel-shell{
  position:relative;
}
.st-carousel-viewport{
  overflow-x:auto;
  overflow-y:hidden;
  scrollbar-width:none;
  scroll-behavior:smooth;
  scroll-snap-type:x mandatory;
  overscroll-behavior-inline:contain;
}
.st-carousel-viewport::-webkit-scrollbar{display:none}
.st-carousel-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:calc((100% - 44px)/3);
  gap:22px;
  align-items:stretch;
}
.st-carousel-track>*{
  min-width:0;
  scroll-snap-align:start;
}
.st-carousel-arrow{
  position:absolute;
  top:50%;
  z-index:6;
  width:44px;
  height:44px;
  margin-top:-22px;
  border:1px solid var(--line);
  border-radius:50%;
  background:#fff;
  color:var(--navy);
  box-shadow:0 8px 22px rgba(32,38,59,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  transition:.2s ease;
}
.st-carousel-arrow:hover{
  background:var(--navy);
  border-color:var(--navy);
  color:#fff;
  transform:scale(1.05);
}
.st-carousel-prev{left:-22px}
.st-carousel-next{right:-22px}
.st-carousel-arrow[disabled]{
  opacity:.35;
  cursor:default;
  transform:none;
}
.st-product-card{
  height:100%;
  display:flex;
  flex-direction:column;
  transform:translateZ(0);
}
.st-product-image{
  overflow:hidden;
}
.st-product-image img{
  transition:transform .45s cubic-bezier(.2,.8,.2,1);
}
.st-product-card:hover .st-product-image img{
  transform:scale(1.045);
}
.st-product-body{
  display:flex;
  flex-direction:column;
  flex:1;
}
.st-product-body h3{min-height:42px}
.st-add-link{margin-top:auto;align-self:flex-start;padding-top:14px}
.st-product-rating{
  color:#c78b26;
  opacity:1;
}
.st-product-badge{
  background:var(--coral);
}

.st-review-carousel .st-carousel-track{
  grid-auto-columns:calc((100% - 44px)/3);
}
.st-testimonial{
  display:flex;
  flex-direction:column;
  min-height:245px;
  background:#fff!important;
  border-top:3px solid var(--coral)!important;
  transition:transform .22s ease,box-shadow .22s ease;
}
.st-testimonial:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 30px rgba(32,38,59,.1)!important;
}
.st-testimonial p{flex:1}
.st-review-image{
  width:100%;
  max-height:150px;
  object-fit:cover;
  border-radius:3px;
  margin:0 0 14px;
}

.st-reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease,transform .7s cubic-bezier(.22,.8,.3,1);
}
.st-reveal.is-visible{
  opacity:1;
  transform:none;
}
.st-step,.price-card,.st-footer-benefit{
  transition:transform .25s ease,box-shadow .25s ease;
}
.st-step:hover,.price-card:hover,.st-footer-benefit:hover{
  transform:translateY(-4px);
}

@media(max-width:1100px){
  .st-hero-copy{width:min(640px,66%)}
  .st-carousel-prev{left:8px}
  .st-carousel-next{right:8px}
}
@media(max-width:991px){
  .st-hero-slider,.st-hero-copy-wrap{
    min-height:535px;
  }
  .st-hero-copy{width:70%}
  .st-carousel-track,
  .st-review-carousel .st-carousel-track{
    grid-auto-columns:calc((100% - 18px)/2);
    gap:18px;
  }
}
@media(max-width:767px){
  .st-hero-slider,.st-hero-copy-wrap{
    min-height:525px;
  }
  .st-hero-picture img{
    object-position:88% center;
  }
  .st-hero-overlay{
    background:
      linear-gradient(0deg,rgba(20,27,47,.96) 0%,rgba(20,27,47,.82) 46%,rgba(20,27,47,.14) 78%,rgba(20,27,47,.04) 100%),
      linear-gradient(90deg,rgba(20,27,47,.38),rgba(20,27,47,.02));
  }
  .st-hero-copy-wrap{
    align-items:flex-end;
  }
  .st-hero-copy{
    width:100%;
    padding:34px 0 56px;
  }
  .st-hero-copy h1{
    font-size:clamp(36px,10vw,50px)!important;
    max-width:560px;
  }
  .st-hero-copy p{
    max-width:530px;
    font-size:15px;
  }
  .st-hero-kicker{font-size:10px}
  .st-hero-actions{gap:9px}
  .st-hero-actions .st-btn{
    min-height:40px!important;
    padding:0 15px!important;
    font-size:11px!important;
  }
  .st-hero-arrow{
    width:40px;
    height:40px;
    top:44%;
    margin-top:-20px;
  }
  .st-hero-prev{left:10px}
  .st-hero-next{right:10px}
  .st-hero-controls{bottom:18px}
  .st-quick-paths{padding-top:54px}
  .st-carousel-track,
  .st-review-carousel .st-carousel-track{
    grid-auto-columns:88%;
    gap:14px;
  }
  .st-carousel-prev{left:5px}
  .st-carousel-next{right:5px}
  .st-carousel-arrow{
    width:39px;
    height:39px;
    margin-top:-20px;
  }
}
@media(max-width:520px){
  .st-hero-slider,.st-hero-copy-wrap{
    min-height:540px;
  }
  .st-hero-picture img{
    object-position:86% center;
  }
  .st-hero-copy{padding-bottom:62px}
  .st-hero-copy h1{
    font-size:37px!important;
    line-height:1.04!important;
  }
  .st-hero-price{font-size:12px}
  .st-carousel-track,
  .st-review-carousel .st-carousel-track{
    grid-auto-columns:92%;
  }
}
@media(prefers-reduced-motion:reduce){
  .st-hero-slide,
  .st-hero-picture img,
  .st-reveal,
  .st-product-image img,
  .st-testimonial,
  .st-carousel-viewport{
    transition:none!important;
    animation:none!important;
    scroll-behavior:auto!important;
  }
  .st-hero-copy>*{opacity:1!important;transform:none!important;animation:none!important}
}


/* 2026 slider polish: shorter hero, 4-second rhythm and richer motion */
.st-hero-slider,
.st-hero-copy-wrap{
  min-height:clamp(470px,42vw,610px);
}
.st-hero-slide{
  transition:opacity .72s ease,visibility .72s ease,transform 1s cubic-bezier(.22,.8,.3,1);
}
.st-hero-picture img{
  transform:scale(1.075) translate3d(1.2%,0,0);
  transition:none;
  will-change:transform;
}
.st-hero-slide.is-active .st-hero-picture img{
  animation:stHeroCinematic 4s ease-out both;
}
@keyframes stHeroCinematic{
  from{transform:scale(1.075) translate3d(1.2%,0,0)}
  to{transform:scale(1.015) translate3d(0,0,0)}
}
.st-hero-copy>*{
  opacity:0;
  transform:translate3d(-30px,18px,0);
  filter:blur(3px);
}
.st-hero-slide.is-active .st-hero-copy>*{
  animation:stHeroRevealPlus .7s both cubic-bezier(.16,1,.3,1);
}
@keyframes stHeroRevealPlus{
  0%{opacity:0;transform:translate3d(-30px,18px,0);filter:blur(3px)}
  100%{opacity:1;transform:translate3d(0,0,0);filter:blur(0)}
}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(1){animation-delay:.07s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(2){animation-delay:.15s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(3){animation-delay:.24s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(4){animation-delay:.33s}
.st-hero-slide.is-active .st-hero-copy>*:nth-child(5){animation-delay:.42s}
.st-hero-actions .st-btn{
  position:relative;
  overflow:hidden;
  transform:translateZ(0);
}
.st-hero-actions .st-btn::after{
  content:"";
  position:absolute;
  inset:-40% auto -40% -60%;
  width:38%;
  transform:skewX(-20deg);
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.42),transparent);
  transition:left .55s ease;
}
.st-hero-actions .st-btn:hover::after{left:125%}
.st-hero-progress span{background:var(--coral)}
.st-hero-slider.is-running .st-hero-progress span{animation:stHeroProgress 4s linear forwards}

/* Continuous dark service ticker directly under the hero. */
.st-motion-ticker{
  position:relative;
  z-index:4;
  width:100%;
  overflow:hidden;
  background:#0e1322;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 8px 18px rgba(14,19,34,.12);
}
.st-motion-ticker-track{
  display:flex;
  align-items:center;
  width:max-content;
  min-width:200%;
  gap:24px;
  padding:13px 0;
  animation:stTickerMove 38s linear infinite;
  will-change:transform;
}
.st-motion-ticker span{
  white-space:nowrap;
  font:600 11px/1.2 var(--mono);
  letter-spacing:.13em;
  text-transform:uppercase;
}
.st-motion-ticker b{
  color:var(--coral);
  font-size:16px;
  line-height:1;
}
@keyframes stTickerMove{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}

/* Extra restrained animation on key homepage components. */
.st-product-card,.st-testimonial,.st-step,.price-card,.st-footer-benefit{
  will-change:transform;
}
.st-product-card:hover,.st-testimonial:hover,.st-step:hover,.price-card:hover,.st-footer-benefit:hover{
  transform:translateY(-6px);
}
.st-product-card::after,.st-testimonial::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  border-radius:inherit;
  box-shadow:inset 0 0 0 1px transparent;
  transition:box-shadow .25s ease;
}
.st-product-card:hover::after,.st-testimonial:hover::after{
  box-shadow:inset 0 0 0 1px rgba(233,87,47,.28);
}

@media(max-width:991px){
  .st-hero-slider,.st-hero-copy-wrap{min-height:535px}
}
@media(max-width:767px){
  .st-hero-slider,.st-hero-copy-wrap{min-height:525px}
  .st-hero-copy{padding:30px 0 52px}
  .st-motion-ticker-track{gap:18px;padding:11px 0;animation-duration:32s}
  .st-motion-ticker span{font-size:10px}
}
@media(max-width:520px){
  .st-hero-slider,.st-hero-copy-wrap{min-height:540px}
  .st-hero-copy{padding-bottom:58px}
}
@media(prefers-reduced-motion:reduce){
  .st-motion-ticker-track{animation:none}
  .st-hero-slide.is-active .st-hero-picture img{animation:none;transform:scale(1.015)}
}


/* Seamless, no-empty-space ticker loop. */
.st-motion-ticker-track{
  display:flex!important;
  align-items:center!important;
  width:max-content!important;
  min-width:0!important;
  gap:0!important;
  padding:0!important;
  animation:stTickerSeamless 58s linear infinite!important;
  will-change:transform;
}
.st-motion-ticker-group{
  display:flex;
  flex:0 0 auto;
  align-items:center;
  gap:24px;
  min-width:max-content;
  padding:13px 24px 13px 0;
}
@keyframes stTickerSeamless{
  from{transform:translate3d(0,0,0)}
  to{transform:translate3d(-50%,0,0)}
}
@media(max-width:767px){
  .st-motion-ticker-track{animation-duration:44s!important}
  .st-motion-ticker-group{gap:18px;padding:11px 18px 11px 0}
}
@media(prefers-reduced-motion:reduce){
  .st-motion-ticker-track{animation:stTickerSeamless 90s linear infinite!important}
}
