Most owners aren't ready to list. They're ready to be told a number.
Buyside was founded in 2025 to fix a specific problem: the gap between "curious about selling" and "publicly listed." For most lower-middle-market owners, the only way to learn what their business is worth was to commit to a process they weren't sure they wanted.
{/* The origin */}
Chapter 01
The origin
From the sell-side desk
Our founder spent nine years on the sell-side at a regional advisory practice in Austin. The pattern was always the same: a great owner with a real business would walk in, ready to "explore options," and within sixty days find themselves in a CIM, on a teaser, with twenty buyers reading their financials.
Most of those owners were not ready for that. They wanted one thing: is anyone interested at the price I'd accept? If yes, they'd think about it. If no, they'd keep running the business. The advisory engagement was answering a question they hadn't asked yet.
Chapter 02
The thesis
Inverting the listing model
Buyers in the LMM already publish their mandates — to brokers, to intermediaries, to other PE firms in their networks. The supply of institutional buyer demand is structured, documented, and (importantly) re-verifiable. The supply of willing-but-private sellers is the bottleneck.
So we flipped it. Instead of asking sellers to expose themselves to find buyers, we ask buyers to commit their criteria first, and let sellers query that pool privately. Match counts and valuation ranges, computed in 90 seconds, with no listing required.
Chapter 03
Today
Where we are now
1,000+ verified institutional buyers. $8.2B in active mandate volume. Sellers in 47 states. 62 deals routed to advisory partners over the trailing twelve months. Headquartered in Austin with senior advisors across industrials, tech-enabled services, and healthcare.
When a seller is ready to move forward, we route the deal to a vetted sell-side advisory partner. We are not a broker. We are a way to find out — quietly, accurately, with no commitment — whether the next conversation is worth having.
);
};
// ═══════════════════════════════════════════════════════════
// TEAM
// ═══════════════════════════════════════════════════════════
const TeamPage = ({ bp, navigate, accent }) => {
const isMobile = bp === 'mobile';
const isTablet = bp === 'tablet';
const padX = isMobile ? 24 : isTablet ? 56 : 80;
const TEAM = [
{ name: 'Kevin Mitchell', role: 'Founder', bio: "Former lower-middle-market investment banker. Spent 9 years on the sell-side at a regional advisory practice. Built Buyside after watching dozens of owners get cornered by public listings they didn't need.", initials: 'KM', highlight: true, location: 'Austin, TX', photo: 'team/Kevin Mitchell.jpg' },
{ name: 'Rachel Alvarado', role: 'Partner · Industrials', bio: '14 years sell-side M&A. Closed 60+ transactions in HVAC, manufacturing, and industrial services. Licensed broker in TX, FL, GA.', initials: 'RA', location: 'Houston, TX', photo: 'team/Rachel Alvarado.png' },
{ name: 'Daniel Mensah', role: 'Partner · Tech-enabled services', bio: 'Former search funder turned advisor. Specialty: IT services, MSPs, and SaaS-light platforms in the $2M–$10M EBITDA range.', initials: 'DM', location: 'Atlanta, GA', photo: 'team/Daniel Mensah.jpg' },
{ name: 'Margaret Thorne', role: 'Senior Advisor · Healthcare', bio: 'Former CFO of a regional dental DSO. 20+ years operating before moving to advisory. Specialty in services and roll-ups.', initials: 'MT', location: 'Nashville, TN', photo: 'team/Margaret Thorne.jpg' },
];
return (
Team
Former bankers and operators. No marketers, no PMs.
Every advisor on Buyside has personally closed transactions in the industry they cover. When you book a call, you'll speak to one of the four people below — not a coordinator, not an SDR.
For seller inquiries, the fastest path is the match wizard. For everything else — partnerships, press, advisor recruiting, or general questions — use the form below.
Monday – Friday, 8am – 6pm CT.
We aim to respond to every email within 48 hours.
{/* Right: form */}
{sent ? (
Message received.
Thanks, {name.split(' ')[0]}. We'll respond from a real person, at the email above, within 48 hours. No marketing, no follow-ups beyond what's needed to answer your question.
{isMobile && setDrawerOpen(false)} navigate={navigate} currentScreen="data-handling" />}
What happens after you submit
Plain English. No legalese.
We wrote this page because we'd want it before typing our own EBITDA into a website. Here's exactly what we do — and don't do — with what you tell us.
What we do
{['Store your answers encrypted at rest (AES-256) and in transit (TLS 1.3).','Run them through buyer mandates and return your match count and valuation range.','Email your results to the address you provided.','Assign one Buyside advisor (a real human) who may follow up by email or phone — once.','Allow you to delete everything, anytime, with one click.'].map((t, i) => (
{t}
))}
What we never do
{['Sell, share, or transfer your contact information to any third party.','Reveal your name, business name, or any identifying detail to a buyer without your written consent.','Publish anything about you, anywhere, ever.','Use third-party trackers, retargeting pixels, or behavioral ad networks.','Auto-enroll you in marketing — every email is opt-in, including Market Watch.'].map((t, i) => (
{t}
))}
);
};
const VerificationPage = ({ bp, navigate, accent }) => {
const isMobile = bp === 'mobile';
const isTablet = bp === 'tablet';
const padX = isMobile ? 24 : isTablet ? 56 : 80;
const [drawerOpen, setDrawerOpen] = useState(false);
const STANDARDS = [
{ type: 'PE Firms', items: ['Form ADV or fund formation documents','Most recent capital account statement','Proof of one closed transaction in last 36 months','Background check on signing partner'] },
{ type: 'Search Funders', items: ['Search-fund letter or sponsor accelerator confirmation','Committed-capital evidence ($2M+ minimum)','MBA verification or equivalent operating background','Two professional references'] },
{ type: 'Family Offices', items: ['Accredited investor verification (Reg D)','Letter on family-office letterhead from principal','Proof of $25M+ in deployable capital','Declared deal-decision authority'] },
{ type: 'Strategic Acquirers', items: ['Most recent audited financials or 10-K','M&A team contact verification','One closed acquisition in last 24 months','Board-approved buy-box documentation'] },
{ type: 'HNW Individuals', items: ['Proof of $5M+ liquid net worth','Bank or wirehouse letter of capability','Verified LinkedIn + two references','Personal background check'] },
];
return (
One fake buyer ends the platform. So we don't allow them.
Every buyer on Buyside passes one of five documented verification paths below. Every active mandate is re-verified quarterly. Every code-of-conduct violation is a permanent ban with no appeal.
{STANDARDS.map((s, i) => (
Path 0{i+1}
{s.type}
{s.items.map((it, j) => (
{it}
))}
))}
);
};
// ═══════════════════════════════════════════════════════════
// PRIVACY POLICY
// ═══════════════════════════════════════════════════════════
const PrivacyPage = ({ bp, navigate, accent }) => {
const isMobile = bp === 'mobile';
const isTablet = bp === 'tablet';
const padX = isMobile ? 24 : isTablet ? 56 : 80;
const sections = [
{ title: 'Information we collect', body: "When you use the Buyside match flow, we collect the answers you provide: industry, revenue range, EBITDA range, years owned, state, transition preference, intent level, email address, and optionally your phone number. We also collect basic technical data (IP address, browser type, device type) for security and fraud prevention. We do not use cookies for advertising or behavioral tracking." },
{ title: 'How we use your information', body: "Your match flow answers are used exclusively to calculate your buyer match count and estimated valuation range. Your email is used to deliver your results and, if you opt in, periodic Market Watch updates. Your phone number, if provided, is used only for direct outreach by your assigned Buyside advisor. We never sell, rent, or share your personal information with third parties for marketing purposes." },
{ title: 'Data storage and security', body: "All data is encrypted at rest using AES-256 and in transit using TLS 1.3. Our infrastructure is hosted on SOC 2 Type II compliant providers. Access to seller data is restricted to your assigned Buyside advisor and platform administrators, with all access logged and auditable." },
{ title: 'Buyer data separation', body: "Seller and buyer data are architecturally segregated. Buyers can only ever see anonymized, aggregated seller data (industry, size band, geography, intent level). No buyer can access your name, email, phone number, or business name without your explicit written consent, facilitated through a Buyside advisor." },
{ title: 'Third-party services', body: "We use a limited set of third-party services to operate the platform: email delivery (Resend), scheduling (Calendly/Cal.com), and privacy-respecting analytics (PostHog). We do not use Google Analytics, Facebook Pixel, retargeting networks, or any third-party advertising trackers on seller-facing pages." },
{ title: 'Data retention and deletion', body: "Your match data is retained for 30 months to support annual valuation refreshes and Market Watch delivery. You may request complete deletion of all your data at any time by emailing privacy@buyside.market or clicking the deletion link in any Buyside email. Deletion requests are processed within 5 business days." },
{ title: 'Your rights', body: "Under CCPA, VCDPA, CPA, and GDPR (where applicable), you have the right to: access all data we hold about you, request correction of inaccurate data, request deletion of your data, opt out of any marketing communications, and request a portable copy of your data. To exercise any of these rights, contact privacy@buyside.market." },
{ title: 'Changes to this policy', body: "We may update this policy from time to time. Material changes will be communicated via email to all users with active accounts. The date of the most recent revision is noted at the top of this page." },
];
return (
Legal
Privacy Policy
Last updated: January 15, 2026
{sections.map((s, i) => (
{s.title}
{s.body}
))}
);
};
// ═══════════════════════════════════════════════════════════
// TERMS OF SERVICE
// ═══════════════════════════════════════════════════════════
const TermsPage = ({ bp, navigate, accent }) => {
const isMobile = bp === 'mobile';
const isTablet = bp === 'tablet';
const padX = isMobile ? 24 : isTablet ? 56 : 80;
const sections = [
{ title: '1. Service description', body: "Buyside is a confidential matching service operated by Buyside, Inc. The platform connects mid-market business owners with vetted acquirers through an anonymous, double-blind matching process. Buyside is not a broker, marketplace, or exchange. All advisory services and deal facilitation are provided by Capex Advisory, a licensed sell-side M&A advisory firm." },
{ title: '2. Eligibility', body: "The seller match flow is available to any US-based business owner or authorized representative. The buyer dashboard and mandate submission are restricted to verified institutional buyers (PE firms, search funds, family offices, strategic acquirers, and qualified high-net-worth individuals). Buyside reserves the right to reject or revoke buyer access at any time." },
{ title: '3. No public listings', body: "Buyside does not publish, list, or publicly expose any seller information. Seller data is used exclusively for internal matching calculations and is only shared with a buyer upon the seller's explicit written consent, facilitated by a Buyside advisor." },
{ title: '4. Accuracy of information', body: "Sellers represent that the information provided in the match flow is materially accurate to the best of their knowledge. Buyside does not independently verify seller-provided data in the match flow. Formal verification occurs during the advisory engagement with Capex Advisory." },
{ title: '5. Match results disclaimer', body: "Match counts, valuation ranges, and buyer breakdowns provided by Buyside are estimates based on current buyer mandate data and comparable deal databases. They do not constitute a formal valuation, appraisal, or offer to purchase. Actual transaction terms may differ materially from estimates shown." },
{ title: '6. Buyer verification', body: "All buyers must complete a verification process before accessing live matches. Verification includes proof of capital, track record documentation, and background checks on signing principals. Verified status is valid for 12 months and must be renewed annually." },
{ title: '7. Confidentiality', body: "Both sellers and buyers agree to treat all information received through the Buyside platform as confidential. Unauthorized disclosure of match data, seller profiles, buyer mandates, or any other platform information is grounds for immediate termination of access and may result in legal action." },
{ title: '8. Limitation of liability', body: "Buyside provides the matching service on an as-is basis. Buyside is not liable for the outcome of any introduction, negotiation, or transaction facilitated through the platform or through Capex Advisory. Maximum liability is limited to fees paid to Buyside in the 12 months preceding any claim." },
{ title: '9. Governing law', body: "These terms are governed by the laws of the State of Texas, without regard to conflict of law principles. Any disputes shall be resolved through binding arbitration in Austin, Texas, under the rules of the American Arbitration Association." },
{ title: '10. Modifications', body: "Buyside reserves the right to modify these terms at any time. Material changes will be communicated via email to all registered users at least 30 days before taking effect. Continued use of the platform after changes take effect constitutes acceptance of the modified terms." },
];
return (