{"id":10,"date":"2026-06-03T23:14:12","date_gmt":"2026-06-03T23:14:12","guid":{"rendered":"https:\/\/mosaiccapitalresearch.com\/?page_id=10"},"modified":"2026-06-04T00:18:08","modified_gmt":"2026-06-04T00:18:08","slug":"home","status":"publish","type":"page","link":"https:\/\/mosaiccapitalresearch.com\/","title":{"rendered":"Home"},"content":{"rendered":"\n<section class=\"hero\">\n  <canvas id=\"hero-canvas\" class=\"hero__canvas\" aria-hidden=\"true\"><\/canvas>\n  <div class=\"hero__veil\"><\/div>\n  <div class=\"hero__inner\">\n    <div class=\"wrap\">\n      <p class=\"hero__eyebrow\" data-reveal>Independent institutional research<\/p>\n      <h1 data-reveal data-reveal-d=\"1\">Multiple strategies.<span class=\"one\">One goal.<\/span><\/h1>\n      <p class=\"hero__sub\" data-reveal data-reveal-d=\"2\">Independent credit and equity research, institutional-grade reports, and market commentary designed to connect ideas, uncover opportunities, and complete the picture.<span class=\"hero__tag\">The missing piece to the puzzle.<\/span><\/p>\n      <div class=\"btn-row\" data-reveal data-reveal-d=\"3\">\n        <a class=\"btn btn--on-dark\" href=\"\/research\/\">Explore research<\/a>\n        <a class=\"btn btn--outline-dark\" href=\"\/insights\/\">Read the thesis<\/a>\n      <\/div>\n    <\/div>\n  <\/div>\n  <p class=\"hero__hint\">Move cursor to reveal <span class=\"dot\">\u00b7<\/span> scroll to disperse<\/p>\n<\/section>\n\n<script>\n(function () {\n  var canvas = document.getElementById('hero-canvas');\n  if (!canvas || canvas.dataset.init) return; canvas.dataset.init = 1;\n  var ctx = canvas.getContext('2d');\n  var DPR = Math.min(window.devicePixelRatio || 1, 2);\n  var BASE=[38,44,52], ACCENT=[57,78,106], LIGHT=[156,184,220];\n  var reduce = window.matchMedia('(prefers-reduced-motion: reduce)').matches;\n  var W,H,cols,rows,gap,size,step,originX,originY,tiles,mark;\n  var mouse={x:-9999,y:-9999,active:false}, disperse=0, t=0;\n  var M_MAP=[\"1000001\",\"1100011\",\"1010101\",\"1010101\",\"1001001\",\"1000001\",\"1000001\",\"1000001\",\"1000001\"];\n  function build(){\n    var r=canvas.getBoundingClientRect(); W=r.width; H=r.height;\n    canvas.width=W*DPR; canvas.height=H*DPR; ctx.setTransform(DPR,0,0,DPR,0,0);\n    step = W<640?30:W<1100?34:38; gap=Math.max(4,Math.round(step*0.16)); size=step-gap;\n    cols=Math.ceil(W\/step)+1; rows=Math.ceil(H\/step)+1;\n    originX=(W-cols*step)\/2+gap\/2; originY=(H-rows*step)\/2+gap\/2;\n    var mC=M_MAP[0].length, mR=M_MAP.length;\n    var mc=Math.round(cols*(W<760?0.50:0.66))-Math.floor(mC\/2), mr=Math.round(rows*0.5)-Math.floor(mR\/2);\n    mark={}; for(var a=0;a<mR;a++)for(var b=0;b<mC;b++)if(M_MAP[a][b]==='1')mark[(mc+b)+','+(mr+a)]=true;\n    tiles=[]; for(var y=0;y<rows;y++)for(var x=0;x<cols;x++)tiles.push({x:x,y:y,px:originX+x*step,py:originY+y*step,inMark:!!mark[x+','+y],ph:Math.sin(x*12.9898+y*78.233)*43758.5453%1,lit:0});\n  }\n  function L(a,b,t){return a+(b-a)*t;}\n  function rr(x,y,w,h,r){ctx.beginPath();ctx.moveTo(x+r,y);ctx.arcTo(x+w,y,x+w,y+h,r);ctx.arcTo(x+w,y+h,x,y+h,r);ctx.arcTo(x,y+h,x,y,r);ctx.arcTo(x,y,x+w,y,r);ctx.closePath();}\n  function draw(){\n    t+=0.016; ctx.clearRect(0,0,W,H);\n    var R=W<760?150:210;\n    for(var i=0;i<tiles.length;i++){var ti=tiles[i],tg=0;\n      if(ti.inMark)tg=0.52+0.12*Math.sin(t*0.9+ti.ph*6.28);\n      if(mouse.active){var dx=ti.px+size\/2-mouse.x,dy=ti.py+size\/2-mouse.y,d=Math.sqrt(dx*dx+dy*dy);if(d<R){var g=1-d\/R;tg=Math.max(tg,g*(2-g));}}\n      var ox=0,oy=0;\n      if(disperse>0.001){var cx=ti.x-cols\/2,cy=ti.y-rows\/2,m=0.6+(ti.ph+1)*0.4;ox=cx*disperse*14*m;oy=cy*disperse*14*m;tg*=(1-disperse*0.85);}\n      ti.lit+=(tg-ti.lit)*(reduce?1:0.14); var l=ti.lit,c;\n      if(l<0.5){var k=l\/0.5;c=[L(BASE[0],ACCENT[0],k),L(BASE[1],ACCENT[1],k),L(BASE[2],ACCENT[2],k)];}\n      else{var k2=(l-0.5)\/0.5;c=[L(ACCENT[0],LIGHT[0],k2),L(ACCENT[1],LIGHT[1],k2),L(ACCENT[2],LIGHT[2],k2)];}\n      var al=ti.inMark?0.9:(0.10+l*0.9);\n      rr(ti.px+ox,ti.py+oy,size,size,4); ctx.fillStyle='rgba('+(c[0]|0)+','+(c[1]|0)+','+(c[2]|0)+','+al+')'; ctx.fill();\n    }\n    requestAnimationFrame(draw);\n  }\n  function mv(e){var r=canvas.getBoundingClientRect(),p=e.touches?e.touches[0]:e;mouse.x=p.clientX-r.left;mouse.y=p.clientY-r.top;mouse.active=true;}\n  function lv(){mouse.active=false;mouse.x=-9999;mouse.y=-9999;}\n  function sc(){var hero=canvas.closest('.hero');if(!hero)return;var h=hero.offsetHeight||window.innerHeight;disperse=Math.min(1,Math.max(0,window.scrollY\/(h*0.9)));}\n  window.addEventListener('resize',build,{passive:true});\n  canvas.addEventListener('mousemove',mv,{passive:true});\n  canvas.addEventListener('mouseleave',lv,{passive:true});\n  canvas.addEventListener('touchmove',mv,{passive:true});\n  canvas.addEventListener('touchend',lv,{passive:true});\n  window.addEventListener('scroll',sc,{passive:true});\n  build(); sc(); requestAnimationFrame(draw);\n})();\n<\/script>\n\n\n\n\n<section class=\"trust\">\n  <div class=\"wrap\">\n    <span class=\"trust__label\">Across the capital structure<\/span>\n    <div class=\"trust__tags\">\n      <span>Credit<\/span><span>Equity<\/span><span>Distressed<\/span><span>High Yield<\/span><span>Private Credit<\/span><span>Commentary<\/span>\n    <\/div>\n  <\/div>\n<\/section>\n\n\n\n<section class=\"mission\" id=\"approach\">\n  <div class=\"mission__sticky\">\n    <div class=\"mission__particles\" aria-hidden=\"true\">\n      <i style=\"left:8%;top:30%\"><\/i><i style=\"left:18%;top:62%\"><\/i><i style=\"left:27%;top:22%\"><\/i>\n      <i style=\"left:34%;top:74%\"><\/i><i style=\"left:44%;top:40%\"><\/i><i style=\"left:52%;top:78%\"><\/i>\n      <i style=\"left:61%;top:26%\"><\/i><i style=\"left:69%;top:60%\"><\/i><i style=\"left:77%;top:34%\"><\/i>\n      <i style=\"left:86%;top:68%\"><\/i><i style=\"left:92%;top:44%\"><\/i><i style=\"left:14%;top:48%\"><\/i>\n    <\/div>\n    <div class=\"wrap\">\n      <p class=\"mission__eyebrow\">Multiple strategies<\/p>\n      <h2 class=\"mission__head\">Many lenses on the same market \u2014 assembled into a single, decisive view.<\/h2>\n      <div class=\"mission__stage\">\n        <span class=\"mission__word mw-credit\">Credit<\/span>\n        <div class=\"mission__one\"><span class=\"num\">1<\/span><span class=\"lbl\">One&nbsp;goal<\/span><\/div>\n        <span class=\"mission__word mw-equity\">Equity<\/span>\n      <\/div>\n      <p class=\"mission__foot lead\">Like the tiles of a mosaic, each strategy is a fragment. Read together, they resolve into conviction \u2014 the single picture an allocator can act on.<\/p>\n    <\/div>\n  <\/div>\n<\/section>\n\n\n\n<section class=\"section\">\n  <div class=\"wrap\">\n    <div class=\"grid cols-2\" style=\"align-items:end;margin-bottom:46px\">\n      <div data-reveal><p class=\"eyebrow\">Latest research<\/p><h2 class=\"h-xl mb-0\">Conviction, fully shown.<\/h2><\/div>\n      <div data-reveal style=\"text-align:right\"><a class=\"link-arrow\" href=\"\/research\/\">View the research library &rarr;<\/a><\/div>\n    <\/div>\n\n\n<p class=\"muted\">No publications yet. New reports will appear here automatically.<\/p>\n\n\n\n<section class=\"section section--soft\">\n  <div class=\"wrap\">\n    <div class=\"center\" data-reveal style=\"margin-bottom:50px\"><p class=\"eyebrow\" style=\"justify-content:center\">What we cover<\/p><h2 class=\"h-xl\">Two disciplines. One research language.<\/h2><\/div>\n    <div class=\"grid cols-3\">\n      <div class=\"coverage-card\" data-reveal><div class=\"ic\"><i><\/i><i><\/i><i><\/i><i><\/i><\/div><h3>Credit<\/h3><p class=\"muted\">Fundamental and structural analysis across the leveraged-finance market.<\/p><ul><li>Distressed debt<\/li><li>Capital-structure analysis<\/li><li>High yield &amp; private credit<\/li><li>Recovery &amp; downside<\/li><\/ul><a class=\"link-arrow mt-m\" href=\"\/credit\/\">Explore credit &rarr;<\/a><\/div>\n      <div class=\"coverage-card\" data-reveal data-reveal-d=\"1\"><div class=\"ic\"><i><\/i><i><\/i><i><\/i><i><\/i><\/div><h3>Equity<\/h3><p class=\"muted\">Deep, thesis-driven company and industry research built for conviction.<\/p><ul><li>Company deep dives<\/li><li>Industry analysis<\/li><li>Investment theses<\/li><li>Catalyst mapping<\/li><\/ul><a class=\"link-arrow mt-m\" href=\"\/equity\/\">Explore equity &rarr;<\/a><\/div>\n      <div class=\"coverage-card\" data-reveal data-reveal-d=\"2\"><div class=\"ic\"><i><\/i><i><\/i><i><\/i><i><\/i><\/div><h3>Insights<\/h3><p class=\"muted\">Market commentary that connects the reports \u2014 the context and the \"why\".<\/p><ul><li>Markets<\/li><li>Strategy<\/li><li>Commentary<\/li><li>Thesis explainers<\/li><\/ul><a class=\"link-arrow mt-m\" href=\"\/insights\/\">Explore insights &rarr;<\/a><\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n\n\n<section class=\"section section--dark\">\n  <div class=\"wrap\">\n    <div class=\"center\" data-reveal style=\"margin-bottom:50px\"><p class=\"eyebrow\" style=\"justify-content:center\">By the numbers<\/p><h2 class=\"h-xl\">Research with depth behind it.<\/h2><\/div>\n    <div class=\"stats\">\n      <div class=\"stat\" data-reveal><div class=\"num\"><span data-count=\"120\">0<\/span><span class=\"u\">+<\/span><\/div><div class=\"lbl\">Names under active coverage across credit &amp; equity<\/div><\/div>\n      <div class=\"stat\" data-reveal data-reveal-d=\"1\"><div class=\"num\"><span data-count=\"3\">0<\/span><\/div><div class=\"lbl\">Research desks \u2014 credit, equity, special situations<\/div><\/div>\n      <div class=\"stat\" data-reveal data-reveal-d=\"2\"><div class=\"num\"><span data-count=\"25\">0<\/span><span class=\"u\">+<\/span><\/div><div class=\"lbl\">Charts &amp; exhibits in a single flagship deep dive<\/div><\/div>\n      <div class=\"stat\" data-reveal data-reveal-d=\"3\"><div class=\"num\"><span data-count=\"100\">0<\/span><span class=\"u\">%<\/span><\/div><div class=\"lbl\">Independent \u2014 no banking, no mandate, no spin<\/div><\/div>\n    <\/div>\n  <\/div>\n<\/section>\n\n\n\n<section class=\"section\">\n  <div class=\"wrap\">\n    <div class=\"grid cols-2\" style=\"align-items:end;margin-bottom:46px\">\n      <div data-reveal><p class=\"eyebrow\">Insights<\/p><h2 class=\"h-xl mb-0\">The story behind the deck.<\/h2><\/div>\n      <div data-reveal style=\"text-align:right\"><a class=\"link-arrow\" href=\"\/insights\/\">All insights &rarr;<\/a><\/div>\n    <\/div>\n    <p class=\"muted\">No publications yet. New reports will appear here automatically.<\/p>\n  <\/div>\n<\/section>\n\n\n\n<section class=\"section cta-band\" id=\"subscribe\">\n  <div class=\"cta-band__grid\"><\/div>\n  <div class=\"wrap\">\n    <p class=\"eyebrow\" data-reveal style=\"justify-content:center\">Stay close to the research<\/p>\n    <h2 data-reveal data-reveal-d=\"1\">Get every report and thesis as it publishes.<\/h2>\n    <p class=\"lead\" data-reveal data-reveal-d=\"2\">No noise. Institutional-grade credit, equity and special-situations research, direct to your inbox.<\/p>\n    <!-- Replace the form below with your MailerLite \/ Fluent Forms embed for real signups -->\n    <form class=\"field\" style=\"max-width:520px;margin:0 auto\" data-reveal data-reveal-d=\"3\" onsubmit=\"return false\">\n      <input type=\"email\" placeholder=\"you@firm.com\" aria-label=\"Email address\" required>\n      <button class=\"btn btn--on-dark\" type=\"submit\">Request access<\/button>\n    <\/form>\n  <\/div>\n<\/section>\n","protected":false},"excerpt":{"rendered":"<p>Independent institutional research Multiple strategies.One goal. Independent credit and equity research, institutional-grade reports, and market commentary designed to connect ideas, uncover opportunities, and complete the picture.The missing piece to the puzzle. Explore research Read the thesis Move cursor to reveal \u00b7 scroll to disperse Across the capital structure CreditEquityDistressedHigh YieldPrivate CreditCommentary Multiple strategies Many lenses&#8230;<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_kad_post_transparent":"enable","_kad_post_title":"hide","_kad_post_layout":"fullwidth","_kad_post_sidebar_id":"","_kad_post_content_style":"unboxed","_kad_post_vertical_padding":"","_kad_post_feature":"","_kad_post_feature_position":"","_kad_post_header":false,"_kad_post_footer":false,"_kad_post_classname":"","footnotes":""},"class_list":["post-10","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/pages\/10","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/comments?post=10"}],"version-history":[{"count":4,"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/pages\/10\/revisions"}],"predecessor-version":[{"id":52,"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/pages\/10\/revisions\/52"}],"wp:attachment":[{"href":"https:\/\/mosaiccapitalresearch.com\/wp-json\/wp\/v2\/media?parent=10"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}