Startup Champions Seed Night 2026
2026-05-07T15:00:00+00:00
2026-05-07T18:30:00+00:00
https://epflalumni.ch//medias/image/thumbnail_30754447169e9c4f1140bd.jpg
5th Startup Champions Seed Night – May 7, 2026
:root {
--color-bg: #ffffff;
--color-text: #1a1a1a;
--color-text-muted: #555;
--color-accent: #e2001a;
--color-accent-dark: #b80015;
--color-section-bg: #f7f7f7;
--color-border: #e0e0e0;
--color-card-bg: #ffffff;
--font-body: Arial, Helvetica, sans-serif;
--font-display: Arial, Helvetica, sans-serif;
--max-width: 900px;
--spacing-xs: 0.5rem;
--spacing-sm: 1rem;
--spacing-md: 1.5rem;
--spacing-lg: 2.5rem;
--spacing-xl: 3.5rem;
--radius: 10px;
}
*,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: var(--font-body);
color: var(--color-text);
background: var(--color-bg);
font-size: 15px;
line-height: 1.65;
-webkit-font-smoothing: antialiased;
}
.page-wrapper {
max-width: var(--max-width);
margin: 0 auto;
padding: var(--spacing-lg) var(--spacing-md);
}
/* ── Hero ── */
.hero {
text-align: center;
padding-bottom: var(--spacing-lg);
border-bottom: 2px solid var(--color-accent);
margin-bottom: var(--spacing-lg);
}
.hero-partners {
display: flex;
justify-content: center;
align-items: center;
gap: var(--spacing-sm);
flex-wrap: wrap;
margin-bottom: var(--spacing-md);
font-size: 14px;
color: var(--color-text-muted);
}
.hero-partners a {
color: var(--color-accent);
text-decoration: none;
font-weight: 600;
}
.hero-partners a:hover {
text-decoration: underline;
}
.hero-partners .sep {
color: var(--color-border);
}
.hero .event-meta {
font-size: 1.05rem;
font-weight: 500;
margin-top: var(--spacing-xs);
color: var(--color-text-muted);
}
.hero .event-meta strong {
color: var(--color-text);
}
/* ── Intro ── */
.intro {
margin-bottom: var(--spacing-lg);
}
.intro p {
margin-bottom: var(--spacing-sm);
}
.intro .cta-line {
font-weight: 700;
font-size: 1.05rem;
}
.intro .closing-note {
font-style: italic;
color: var(--color-text-muted);
font-size: 0.92rem;
}
/* ── Program ── */
.section-title {
font-family: var(--font-display);
font-size: clamp(1.25rem, 3vw, 1.6rem);
margin-bottom: var(--spacing-md);
padding-bottom: var(--spacing-xs);
border-bottom: 2px solid var(--color-accent);
display: inline-block;
color: #1a1a1a !important;
}
.program {
margin-bottom: var(--spacing-xl);
}
.program-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 2px;
}
.program-list li {
display: flex;
align-items: baseline;
gap: var(--spacing-sm);
padding: 0.6rem 0.8rem;
border-radius: 6px;
transition: background 0.15s;
}
.program-list li:nth-child(odd) {}
.program-list .time {
flex-shrink: 0;
width: 70px;
font-weight: 700;
font-size: 0.88rem;
color: var(--color-accent);
font-variant-numeric: tabular-nums;
}
.program-list .label {
flex: 1;
}
/* ── Speakers ── */
.speakers {
margin-bottom: var(--spacing-xl);
}
.speaker-card {
display: flex;
gap: var(--spacing-md);
align-items: flex-start;
padding: var(--spacing-md);
border: 1px solid var(--color-border);
border-radius: var(--radius);
margin-bottom: var(--spacing-sm);
}
.speaker-card img {
width: 110px;
height: 110px;
object-fit: cover;
border-radius: 50%;
flex-shrink: 0;
border: 3px solid var(--color-accent);
}
.speaker-info h3 {
font-size: 1.05rem;
margin-bottom: 0.15rem;
}
.speaker-info h3 a {
color: var(--color-accent);
text-decoration: none;
}
.speaker-info h3 a:hover {
text-decoration: underline;
}
.speaker-info .speaker-role {
font-size: 0.85rem;
font-weight: 600;
color: var(--color-text-muted);
text-transform: uppercase;
letter-spacing: 0.06em;
margin-bottom: 0.5rem;
}
.speaker-info p {
font-size: 0.93rem;
color: var(--color-text-muted);
}
/* ── Startups ── */
.startups {
margin-bottom: var(--spacing-xl);
}
.startup-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: var(--spacing-sm);
}
.startup-card {
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: var(--spacing-md);
display: flex;
flex-direction: column;
transition: box-shadow 0.2s;
}
.startup-card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}
.startup-card-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 0.75rem;
}
.startup-card-header .startup-logo {
width: 48px;
height: 48px;
border-radius: 8px;
background: #fff;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid var(--color-border);
flex-shrink: 0;
text-decoration: none;
overflow: hidden;
}
.startup-card-header .startup-logo img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 4px;
}
.startup-card-header h3 {
font-size: 0.98rem;
line-height: 1.3;
}
.startup-card-header h3 a {
color: var(--color-text);
text-decoration: none;
}
.startup-card-header h3 a:hover {
color: var(--color-accent);
}
.startup-card-header h3 .founder {
display: block;
font-weight: 400;
font-size: 0.82rem;
color: var(--color-text-muted);
}
.startup-card p {
font-size: 0.88rem;
color: var(--color-text-muted);
line-height: 1.55;
flex: 1;
}
/* ── Supporters ── */
.supporters {
margin-bottom: var(--spacing-xl);
text-align: center;
}
.supporters .section-title {
display: inline-block;
}
.supporter-logos {
display: grid;
grid-template-columns: repeat(5, 1fr);
align-items: center;
gap: var(--spacing-sm);
margin-top: var(--spacing-sm);
}
.supporter-logos a {
display: flex;
align-items: center;
justify-content: center;
height: 70px;
padding: 10px;
opacity: 0.75;
transition: opacity 0.2s;
}
.supporter-logos a:hover {
opacity: 1;
}
.supporter-logos img {
max-width: 100%;
max-height: 100%;
object-fit: contain;
width: auto;
}
/* ── Conditions ── */
.conditions {
border: 1px solid var(--color-border);
border-radius: var(--radius);
padding: var(--spacing-md);
font-size: 0.9rem;
color: var(--color-text-muted);
line-height: 1.7;
margin-bottom: var(--spacing-lg);
}
.conditions h2 {
font-family: var(--font-body);
font-size: 0.85rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: #1a1a1a !important;
margin-bottom: var(--spacing-xs);
}
.conditions p {
margin-bottom: 0.6rem;
}
.conditions a {
color: var(--color-accent);
text-decoration: none;
}
.conditions a:hover {
text-decoration: underline;
}
.conditions strong {
color: var(--color-text);
}
/* ── Mobile ── */
@media (max-width: 600px) {
.page-wrapper {
padding: var(--spacing-md) var(--spacing-sm);
}
.speaker-card {
flex-direction: column;
align-items: center;
text-align: center;
}
.speaker-card img {
width: 90px;
height: 90px;
}
.startup-grid {
grid-template-columns: 1fr;
}
.program-list li {
flex-direction: column;
gap: 0.15rem;
padding: 0.55rem 0.7rem;
}
.program-list .time {
width: auto;
}
.supporter-logos {
grid-template-columns: repeat(3, 1fr);
}
.supporter-logos a {
height: 50px;
padding: 6px;
}
}
EPFL Alumni · EPFL Startup Launchpad · VenturelabThursday, May 7, 2026 — Forum Rolex, EPFL CampusCan't make it in person? The event will also be streamed online. Register here for free to attend remotely.This annual event brings together some of the most promising entrepreneurs from EPFL and beyond. Get ready for an engaging and dynamic evening, featuring live 90-second pitches from innovative startups and vote for your favorite ones! The event will be conducted in English.Before the pitch competition, you will have the chance to explore startup exhibitions and connect with the founders in an informal setting. After the pitches, continue the conversation over an aperitif, where you can exchange ideas with entrepreneurs, angel investors, mentors, and scientists, and engage in discussions about the latest innovations.Book your seat below and join us in voting for the best startup!Registrations will close on 7 May at 9:00 am or when the maximum of 500 attendees has been reached.Program5:00 pm — Doors opening & Startups exhibition6:30 pm — Welcome speech6:45 pm — Startup competition — Part 17:15 pm — Keynote — Pierre Baqué (CEO @ Neural Concept)7:30 pm — Startup competition — Part 28:00 pm — 4 finalists competition8:15 pm — Seed Night Story — Interview with Florent Héroguel (CEO @ Bloom Biorenewables)8:25 pm — Winner announcement & Closing words8:30 pm — Networking apéro & Startups exhibitionKindly supported by SpeakersKeynotePierre Baqué, Neural ConceptPierre Baqué, an EPFL alumnus, is the co-founder and CEO of Neural Concept, a Swiss company specialising in artificial intelligence applied to engineering. Its platform enables engineering teams to design and optimise industrial products much more quickly thanks to AI co-pilots integrated directly into their simulation and CAD workflows.Seed Night StoryFlorent Héroguel, Bloom BiorenewablesFlorent Héroguel is the Co-Founder and co-CEO of Bloom Biorenewables, a company that converts plant biomass into sustainable alternatives to petroleum-based products. Its proprietary technology was developed at EPFL's Laboratory of Sustainable and Catalytic Processes. Bloom Biorenewables won the 2022 edition of the Seed Night.Startups pitching at the eventApionaEugénie DemeureAI care navigation platform guiding patients through complex pathways, matching them to the right specialists, helping them prepare for appointments, and making sure they feel safe and understood.Carina PowerWillem LambrichtsCloud-based control and trading service that optimizes utility-scale BESS across day-ahead, intraday and ancillary service markets, combining advanced forecasting with learning-based optimization.coprod LLCLoïc DelineauBuilding the communication standard for robotics components to enable all robots to speak the same language, decreasing development time by 10x and cost by 100x.DéployaJan PetrsFast-deployable robotic grid for ventilated façade installation. Replaces scaffolding, improving safety, speed, and quality by enabling precise positioning of workers, tools, and materials.Dexterous EndoscopesYegor PiscarevVariable stiffness endoscopes that let surgeons reach hard-to-access anatomy and lock shape for stable, precise treatment. Faster, safer, and more effective minimally invasive procedures.FusionalityFederico FeliciProduction-ready plasma control, data acquisition, and ML-workflow systems spun out from EPFL's Swiss Plasma Center — giving fusion companies immediate access to battle-tested technology.Larmor SystemsMassimo CarpitaHighly efficient, MW-class microwave sources addressing unmet demand from next-gen clean tech like nuclear fusion and deep geothermal, enabling low-carbon industrial heating.MoleclAndrey ChernevRevolutionizing biomolecule processing, from diagnostics to production, by unlocking scalable diagnostics and biopharma innovation through precise molecular signature capture.CaptuREEEmma CastelliCaptuREE designs protein-based filters that recover rare earth elements directly from existing e-waste recycling pipelines — turning residues into strategic resources instead of waste.Obstetrical Care SolutionsSandra Maria Marcadent & Johann Hêches3D rendering of the maternal pelvis and fetal head in the delivery room, improving decisions, reducing complications, and enhancing training for obstetricians.OptiZoneMina BaniasadOn-field solutions to predict muscle and joint injury risks, enabling personalized mitigation strategies for athletes.OrthoSensGwenael HannemaMaking orthopedic recovery objective and measurable. Battery-free, ultra-thin sensors transform standard implants into smart devices with real-time recovery insights.Raven Intelligent SystemsKağan ErünsalEnd-to-end automated work-safety monitoring for high-risk industrial sites, integrating robotic data collection with regulation-compliant processing for actionable hazard reports.REMASteven SchenkEnabling small and medium industrial hydrogen users to replace delivered grey hydrogen with low-cost on-site green hydrogen through modular AEM electrolysers.REONMaria SiversA Bloomberg-like terminal for circular construction, helping asset managers, cities, and developers turn demolition stock into reusable assets with CHF, CO₂ and feasibility predictions.RhonexumVicente CarbonMicroelectronics that operate below −270 °C to miniaturize quantum and space systems, making cryogenic electronics smaller, cheaper, and scalable.Sixteen44William RamsaySwiss climate tech developing scalable systems to destroy atmospheric methane, helping industries and governments rapidly reduce warming impacts and meet climate commitments.TUUS SolutionsTiziano CaldaraPatent-pending hydrogel platform delivering nutrients and drugs at a constant, predictable rate. Initially focused on sports nutrition, addressing GI distress, sugar crashes, and flavor fatigue.WindLensMatteo PedutoSite-specific, AI-assisted wind-power forecasts reducing uncertainty and costly imbalance penalties. Paired with bidding and risk tools for improved returns.Zigzag NetworksMustafa YildirimReducing AI data-center network bottlenecks by adding optical "express lanes" between servers. Software detects large transfers and routes them over light-based circuit switches.Registration conditionsFor paid tickets, there will be no refund in case of cancellation. To avoid an important quantity of food waste, please make sure to register only if you are sure to come or cancel your ticket if you cannot come anymore.EPFL Alumni contributing members benefit from a special discount (CHF 30.– instead of CHF 50.– — make sure to log into your account to buy your tickets). Your contributor status will be carefully checked upon registration. More information about EPFL Alumni benefits.EPFL students, PhD candidates and postdocs: the event is free. Please mention the SCIPER number that matches your name to benefit from a free ticket below. Your number will be verified by the organizers.
https://epflalumni.ch/fr/event/startup-champions-seed-night-2026/2026/05/07/1146