/* Motion concept lab. Shared by three isolated prototypes; not loaded by the canonical page. */
:root{
  --motion-gold:#d8b85d;
  --motion-gold-bright:#f0d67d;
  --motion-ink:#090a09;
  --motion-ease:cubic-bezier(.22,1,.36,1);
}

.motion-lab-nav{
  position:fixed;
  z-index:1300;
  left:50%;
  bottom:18px;
  display:flex;
  align-items:center;
  gap:5px;
  padding:6px;
  border:1px solid rgba(216,184,93,.28);
  border-radius:999px;
  background:rgba(8,9,8,.9);
  color:#b8b1a5;
  box-shadow:0 18px 50px rgba(0,0,0,.38);
  backdrop-filter:blur(16px);
  transform:translateX(-50%);
}
.motion-lab-nav>span{
  padding:0 12px;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.motion-lab-nav a{
  min-height:36px;
  display:flex;
  align-items:center;
  gap:7px;
  padding:0 13px;
  border-radius:999px;
  color:#aaa397;
  font-size:11px;
  font-weight:800;
}
.motion-lab-nav a:hover{color:#fff}
.motion-lab-nav a.is-current{
  background:linear-gradient(180deg,#eed47a,#b99335);
  color:#171208;
}
.motion-lab-nav b{font:700 9px/1 "IBM Plex Mono",monospace}

.motion-hero{position:relative;isolation:isolate}
.motion-hero>.hero-grid{position:relative;z-index:3}
.motion-atmosphere{
  position:absolute;
  z-index:2;
  inset:0;
  overflow:hidden;
  pointer-events:none;
}
.motion-network{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  overflow:visible;
}
.motion-network path{
  fill:none;
  vector-effect:non-scaling-stroke;
}
.motion-network-ghost{
  stroke:rgba(216,184,93,.1);
  stroke-width:1;
}
.motion-network-live{
  stroke:url("#motion-gradient");
  stroke:var(--motion-gold);
  stroke-width:1.35;
  stroke-linecap:round;
  opacity:0;
  filter:drop-shadow(0 0 8px rgba(216,184,93,.38));
}
.motion-network-dot{
  fill:#f4dc83;
  opacity:0;
  filter:drop-shadow(0 0 8px rgba(244,220,131,.9));
}
.motion-fragment{
  position:absolute;
  min-width:175px;
  padding:13px 15px;
  border:1px solid rgba(216,184,93,.28);
  border-radius:12px;
  background:rgba(15,16,14,.92);
  color:#f3eee3;
  box-shadow:0 16px 42px rgba(0,0,0,.34);
  opacity:0;
  backdrop-filter:blur(12px);
}
.motion-fragment small,
.motion-fragment strong,
.motion-fragment span{display:block}
.motion-fragment small{
  color:#c8aa51;
  font-size:8px;
  font-weight:900;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.motion-fragment strong{
  margin-top:7px;
  font:400 17px/1.05 "DM Serif Display",Georgia,serif;
}
.motion-fragment span{
  margin-top:8px;
  color:#888278;
  font-size:8px;
  font-weight:700;
}
.motion-fragment-a{left:48%;top:10%;--motion-tx:250px;--motion-ty:235px}
.motion-fragment-b{right:3%;top:16%;--motion-tx:-190px;--motion-ty:190px}
.motion-fragment-c{right:1%;bottom:10%;--motion-tx:-225px;--motion-ty:-145px}
.motion-fragment-d{left:42%;bottom:8%;--motion-tx:275px;--motion-ty:-125px}

.motion-layers{
  position:absolute;
  right:2.5%;
  top:50%;
  width:min(47vw,720px);
  height:520px;
  transform:translateY(-47%);
  perspective:1500px;
  opacity:0;
}
.motion-layer{
  position:absolute;
  inset:70px 45px;
  padding:22px 24px;
  border:1px solid rgba(216,184,93,.34);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(22,22,19,.96),rgba(10,11,10,.9));
  color:#f4efe4;
  box-shadow:0 28px 80px rgba(0,0,0,.42);
  transform-style:preserve-3d;
  transition:transform .45s var(--motion-ease),border-color .3s;
}
.motion-layer small,
.motion-layer strong{display:block}
.motion-layer small{
  color:#d6b558;
  font:800 9px/1.2 "IBM Plex Mono",monospace;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.motion-layer strong{
  max-width:340px;
  margin-top:12px;
  font:400 27px/1.04 "DM Serif Display",Georgia,serif;
}
.motion-layer::after{
  content:"";
  position:absolute;
  right:24px;
  bottom:24px;
  width:96px;
  height:54px;
  background:
    linear-gradient(90deg,transparent 49%,rgba(216,184,93,.16) 50%) 0 0/24px 100%,
    linear-gradient(rgba(216,184,93,.16) 49%,transparent 50%) 0 0/100% 18px;
}
.motion-layer-client{transform:translate3d(var(--layer-client-x,0px),calc(-74px + var(--layer-client-y,0px)),-120px) rotateX(57deg) rotateZ(-4deg)}
.motion-layer-team{transform:translate3d(var(--layer-team-x,0px),var(--layer-team-y,0px),-20px) rotateX(57deg) rotateZ(-4deg)}
.motion-layer-owner{transform:translate3d(var(--layer-owner-x,0px),calc(76px + var(--layer-owner-y,0px)),80px) rotateX(57deg) rotateZ(-4deg)}

/* Concept 01: fragments converge into the working screen. */
[data-motion-concept="assemble"] .motion-network-live,
[data-motion-concept="assemble"] .motion-network-dot{opacity:1}
[data-motion-concept="assemble"].motion-intro-complete .motion-atmosphere{opacity:.42;transition:opacity .8s ease}

/* Concept 02: one promise travels across the business. */
[data-motion-concept="line"] .motion-network-ghost{stroke:rgba(216,184,93,.18)}
[data-motion-concept="line"] .motion-network-live,
[data-motion-concept="line"] .motion-network-dot{opacity:1}
[data-motion-concept="line"] .motion-network{mix-blend-mode:screen}
[data-motion-concept="line"] .wow-hero-demo{
  box-shadow:0 38px 120px rgba(0,0,0,.52),0 0 0 1px rgba(216,184,93,.08);
}
[data-motion-concept="line"] .wow-demo-tab{
  overflow:hidden;
}
[data-motion-concept="line"] .wow-demo-tab::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:0;
  height:2px;
  background:var(--motion-gold-bright);
  box-shadow:0 0 12px rgba(240,214,125,.85);
  transition:left .28s var(--motion-ease),width .28s var(--motion-ease);
}
[data-motion-concept="line"] .wow-demo-tab[aria-selected="true"]::after{left:0;width:100%}
[data-motion-concept="line"] .wow-panel.active .wow-panel-route span{
  transition:background .32s,color .32s,transform .32s var(--motion-ease);
}
[data-motion-concept="line"] .wow-panel.active .wow-panel-route span.current{
  transform:translateY(-3px);
}

/* Concept 03: a spatial section through client, team, and owner views. */
[data-motion-concept="layers"] .motion-layers{opacity:1}
[data-motion-concept="layers"] .wow-hero-demo{
  transform:perspective(1500px) translate3d(var(--demo-shift-x,0px),var(--demo-shift-y,0px),120px) rotateX(var(--demo-rx,0deg)) rotateY(var(--demo-ry,0deg)) scale(.9);
  transform-origin:center;
  box-shadow:0 55px 150px rgba(0,0,0,.58);
}
[data-motion-concept="layers"] .motion-layer{border-color:rgba(216,184,93,.28)}
[data-motion-concept="layers"] .motion-layer-client{opacity:.62}
[data-motion-concept="layers"] .motion-layer-team{opacity:.78}
[data-motion-concept="layers"] .motion-layer-owner{opacity:.94}

/* A single supporting motion language through the rest of the page. */
.motion-enhanced .technology-case,
.motion-enhanced .technology-route,
.motion-enhanced .stage-map,
.motion-enhanced .owner-gallery,
.motion-enhanced .final-box{position:relative}

.motion-enhanced .technology-route::before{
  content:"";
  position:absolute;
  z-index:3;
  left:50%;
  top:17%;
  bottom:17%;
  width:1px;
  background:linear-gradient(transparent,var(--motion-gold),transparent);
  box-shadow:0 0 18px rgba(216,184,93,.36);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .9s .1s var(--motion-ease);
  pointer-events:none;
}
.motion-enhanced .technology-route.motion-seen::before{transform:scaleY(1)}
.motion-enhanced .technology-route article{
  transition:transform .75s var(--motion-ease),border-color .5s;
}
.motion-enhanced .technology-route article:first-child{transform:translateX(18px)}
.motion-enhanced .technology-route article:last-child{transform:translateX(-18px)}
.motion-enhanced .technology-route.motion-seen article{transform:none}

.motion-enhanced .stage-map::before{
  content:"";
  position:absolute;
  z-index:0;
  left:50%;
  top:4%;
  bottom:4%;
  width:1px;
  background:linear-gradient(transparent,rgba(216,184,93,.72) 15%,rgba(216,184,93,.72) 85%,transparent);
  box-shadow:0 0 20px rgba(216,184,93,.28);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform 1.35s var(--motion-ease);
}
.motion-enhanced .stage-map.motion-seen::before{transform:scaleY(1)}
.motion-enhanced .stage-map>.stage{z-index:1}
.motion-enhanced .stage-map>.stage::after{
  content:"";
  position:absolute;
  z-index:0;
  left:86px;
  right:34px;
  top:54px;
  height:1px;
  background:linear-gradient(90deg,rgba(216,184,93,.72),rgba(216,184,93,.08));
  box-shadow:0 0 14px rgba(216,184,93,.24);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .72s var(--motion-ease);
  pointer-events:none;
}
.motion-enhanced .stage-map .stage-num{
  position:relative;
  z-index:2;
  transition:color .35s,background .35s,box-shadow .55s,transform .55s var(--motion-ease);
}
.motion-enhanced .stage-map.motion-seen>.stage::after{transform:scaleX(1)}
.motion-enhanced .stage-map.motion-seen>.stage .stage-num{
  color:#171208;
  background:linear-gradient(180deg,#efd982,#c4a13f);
  box-shadow:0 0 0 8px rgba(216,184,93,.07),0 0 24px rgba(216,184,93,.3);
  transform:scale(1.04);
}
.motion-enhanced .stage-map>.stage:nth-child(1)::after,
.motion-enhanced .stage-map>.stage:nth-child(1) .stage-num{transition-delay:.08s}
.motion-enhanced .stage-map>.stage:nth-child(2)::after,
.motion-enhanced .stage-map>.stage:nth-child(2) .stage-num{transition-delay:.28s}
.motion-enhanced .stage-map>.stage:nth-child(3)::after,
.motion-enhanced .stage-map>.stage:nth-child(3) .stage-num{transition-delay:.48s}
.motion-enhanced .stage-map>.stage:nth-child(4)::after,
.motion-enhanced .stage-map>.stage:nth-child(4) .stage-num{transition-delay:.68s}

.motion-enhanced .example-panel.active .example-explain{
  animation:motion-example-copy .52s var(--motion-ease) both;
}
.motion-enhanced .example-panel.active .mock-window{
  animation:motion-example-screen .62s var(--motion-ease) both;
}
@keyframes motion-example-copy{
  from{opacity:0;transform:translateX(-14px)}
  to{opacity:1;transform:none}
}
@keyframes motion-example-screen{
  from{opacity:.25;clip-path:inset(0 0 0 12% round 16px);transform:translateX(18px)}
  to{opacity:1;clip-path:inset(0 0 0 0 round 16px);transform:none}
}

.motion-enhanced .diagnosis-steps{
  position:relative;
  isolation:isolate;
}
.motion-enhanced .diagnosis-steps::before{
  content:"";
  position:absolute;
  z-index:-1;
  left:15px;
  top:18px;
  bottom:18px;
  width:1px;
  background:linear-gradient(var(--motion-gold),rgba(216,184,93,.12));
  box-shadow:0 0 14px rgba(216,184,93,.28);
  transform:scaleY(0);
  transform-origin:top;
  transition:transform .85s var(--motion-ease);
}
.motion-enhanced .diagnosis-steps .diagnosis-step{
  opacity:.58;
  transform:translateX(10px);
  transition:opacity .48s,transform .58s var(--motion-ease);
}
.motion-enhanced .diagnosis-steps.motion-seen::before{transform:scaleY(1)}
.motion-enhanced .diagnosis-steps.motion-seen .diagnosis-step{opacity:1;transform:none}
.motion-enhanced .diagnosis-steps .diagnosis-step:nth-child(1){transition-delay:.08s}
.motion-enhanced .diagnosis-steps .diagnosis-step:nth-child(2){transition-delay:.23s}
.motion-enhanced .diagnosis-steps .diagnosis-step:nth-child(3){transition-delay:.38s}

.motion-enhanced .owner-gallery .owner-photo{
  clip-path:inset(0 0 100% 0 round 24px);
  transform:translateY(16px);
  transition:clip-path .9s var(--motion-ease),transform .9s var(--motion-ease);
}
.motion-enhanced .owner-gallery .owner-photo:nth-child(2){transition-delay:.12s}
.motion-enhanced .owner-gallery .owner-photo:nth-child(3){transition-delay:.22s}
.motion-enhanced .owner-gallery.motion-seen .owner-photo{
  clip-path:inset(0 0 0 0 round 24px);
  transform:none;
}

.motion-enhanced .final-box::after{
  content:"";
  position:absolute;
  right:22px;
  top:22px;
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--motion-gold-bright);
  box-shadow:0 0 0 0 rgba(216,184,93,.24),0 0 24px rgba(240,214,125,.72);
  opacity:0;
  transform:scale(.3);
  transition:opacity .35s,transform .6s var(--motion-ease),box-shadow .8s .35s;
}
.motion-enhanced .final-box::before{
  content:"";
  position:absolute;
  right:26px;
  top:26px;
  width:min(42%,430px);
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(216,184,93,.75));
  transform:scaleX(0);
  transform-origin:right;
  transition:transform .9s var(--motion-ease);
}
.motion-enhanced .final-box.motion-seen::before{transform:scaleX(1)}
.motion-enhanced .final-box.motion-seen::after{
  opacity:1;
  transform:scale(1);
  box-shadow:0 0 0 11px rgba(216,184,93,.08),0 0 24px rgba(240,214,125,.72);
}

@media(max-width:1050px){
  .motion-fragment-a{left:4%;top:20%;--motion-tx:140px;--motion-ty:330px}
  .motion-fragment-b{right:4%;top:24%;--motion-tx:-140px;--motion-ty:300px}
  .motion-fragment-c{right:3%;bottom:15%;--motion-tx:-120px;--motion-ty:-130px}
  .motion-fragment-d{left:3%;bottom:13%;--motion-tx:120px;--motion-ty:-120px}
  .motion-layers{right:4%;top:58%;width:92%;height:500px;opacity:.62}
  [data-motion-concept="layers"] .wow-hero-demo{transform:perspective(1500px) translateZ(120px) scale(.95)}
}

@media(max-width:760px){
  .motion-lab-nav{
    left:14px;
    right:14px;
    bottom:72px;
    justify-content:center;
    transform:none;
  }
  .motion-lab-nav>span{display:none}
  .motion-lab-nav a{min-height:40px;padding:0 12px}
  .motion-atmosphere{inset:0 -10%}
  .motion-network{height:58%;top:36%}
  .motion-fragment{
    min-width:126px;
    padding:10px 11px;
    border-radius:9px;
  }
  .motion-fragment strong{font-size:14px}
  .motion-fragment span{display:none}
  .motion-fragment-a{left:8%;top:43%;--motion-tx:80px;--motion-ty:150px}
  .motion-fragment-b{right:6%;top:48%;--motion-tx:-70px;--motion-ty:120px}
  .motion-fragment-c{right:8%;bottom:14%;--motion-tx:-60px;--motion-ty:-60px}
  .motion-fragment-d{display:none}
  .motion-layers{
    right:7%;
    top:65%;
    width:86%;
    height:360px;
    opacity:.46;
  }
  .motion-layer{inset:70px 10px;padding:15px;border-radius:16px}
  .motion-layer strong{font-size:19px}
  .motion-layer::after{width:60px;height:40px}
  .motion-layer-client{transform:translate3d(0,-42px,-80px) rotateX(57deg) rotateZ(-3deg)}
  .motion-layer-team{transform:translate3d(0,0,-10px) rotateX(57deg) rotateZ(-3deg)}
  .motion-layer-owner{transform:translate3d(0,42px,60px) rotateX(57deg) rotateZ(-3deg)}
  [data-motion-concept="layers"] .wow-hero-demo{transform:none!important}
  .motion-enhanced .technology-route::before{left:18px;top:10%;bottom:10%}
  .motion-enhanced .stage-map::before{left:21px;top:3%;bottom:3%}
  .motion-enhanced .stage-map>.stage::after{display:none}
  .motion-enhanced .owner-gallery .owner-photo{clip-path:inset(0 0 100% 0 round 18px)}
}

@media(prefers-reduced-motion:reduce){
  .motion-atmosphere{display:none!important}
  .motion-lab-nav{backdrop-filter:none}
  [data-motion-concept="layers"] .wow-hero-demo{transform:none!important}
  .motion-enhanced .technology-route::before,
  .motion-enhanced .stage-map::before{transform:none;transition:none}
  .motion-enhanced .technology-route article{transform:none;transition:none}
  .motion-enhanced .stage-map>.stage::after{display:none}
  .motion-enhanced .stage-map .stage-num{transform:none;transition:none}
  .motion-enhanced .example-panel.active .example-explain,
  .motion-enhanced .example-panel.active .mock-window{animation:none}
  .motion-enhanced .diagnosis-steps::before{transform:none;transition:none}
  .motion-enhanced .diagnosis-steps .diagnosis-step{opacity:1;transform:none;transition:none}
  .motion-enhanced .owner-gallery .owner-photo{clip-path:none;transform:none;transition:none}
  .motion-enhanced .final-box::before{transform:none;transition:none}
  .motion-enhanced .final-box::after{opacity:1;transform:none;transition:none}
}
