Companies
We’ve Invested In

Companies We’ve Invested In

Our portfolio includes companies building foundational products across software, infrastructure, and global platforms. We invest with a long-term perspective, partnering with founders who value strong product thinking, disciplined execution, and enduring impact as they scale from early momentum to lasting businesses.

Joining our mailing list

Get the best stories from the Sea community.

Sea Foundation

380 Brannan St, San Francisco, CA

© 2026 All rights reserved.

Designed by Himanshu Kaneriya

Reach out for design and Framer dev at Hover Studio (One person Studio)

for design and Framer dev at Hover Design Studio (One person Studio)

Create a free website with Framer, the website builder loved by startups, designers and agencies.

import { Data } from "framer" const store = Data({ selectedIndustry: null, }) export function IndustryButton(props) { return { onTap() { store.selectedIndustry = props.item } } } export function CompaniesList() { return { filter(company) { if (!store.selectedIndustry) return true return company.industry?.slug === store.selectedIndustry.slug } } }