Market research that
uncovers real advantage.
From consumer insights to competitive intelligence — we deliver actionable data that fuels growth.
Start a project250+
Studies delivered94%
Client retention12h
Avg. insight turnReal-time market intelligence
Research solutions for every stage
Consumer insights
Deep dive into buying behavior, brand perception, and customer journey mapping.
Learn more →Competitor analysis
Track market share, positioning, and emerging threats with real-time dashboards.
Learn more →Product testing
Concept validation, pricing strategy, and UX research before the launch.
Learn more →Global market entry
Cross-cultural research, localization strategy, and opportunity sizing.
Learn more →From data to direction
Proprietary AI-assisted panels, rigorous sampling, and expert analysis — delivering insights you can act on.
Trusted by market leaders
"Elixir Insights provided the most comprehensive competitor landscape we've ever seen. Their strategic recommendations reshaped our Q3 roadmap."
CPG Strategy Lead
"Fast turnaround, crisp data visualization, and a team that truly understands research design. The ROI from their consumer segmentation was immediate."
Founder, OmniRetail
"We used their product testing panel before launch and avoided a costly misstep. Best market research partner we've had."
Product Director
Request a custom research brief
Tell us about your objectives and we'll design a methodology that fits your budget and timeline.
import { useState, useEffect, useRef } from "react";
import { LineChart, Line, AreaChart, Area, BarChart, Bar, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, PieChart, Pie, Cell } from "recharts";
// ─── DATA ────────────────────────────────────────────────────────────────────
const NAV_LINKS = ["Services", "Insights", "Case Studies", "Data Lab", "About"];
const SERVICES = [
{ icon: "🔬", title: "Market Research", desc: "Deep-dive qualitative and quantitative research methodologies that uncover hidden market dynamics and competitive positioning opportunities.", tag: "Research" },
{ icon: "📊", title: "Data Analytics", desc: "Advanced analytics pipelines transforming raw business data into structured intelligence that drives measurable outcomes.", tag: "Analytics" },
{ icon: "🧭", title: "Business Strategy", desc: "Evidence-based strategic frameworks built on proprietary datasets, enabling leadership teams to make decisions with confidence.", tag: "Strategy" },
{ icon: "👥", title: "Consumer Insights", desc: "Behavioral analytics and sentiment modelling that decode consumer motivations before they surface in conventional surveys.", tag: "Insights" },
{ icon: "🌐", title: "Competitive Intelligence", desc: "Real-time monitoring and structured analysis of competitor moves, market signals, and emerging industry disruptions.", tag: "Intelligence" },
{ icon: "📈", title: "Growth Advisory", desc: "From market entry to portfolio expansion — we build the data infrastructure and strategic roadmaps your growth demands.", tag: "Advisory" },
];
const INSIGHTS = [
{ category: "Market Report", title: "The Future of B2B SaaS: 2025–2030 Outlook", date: "May 2025", read: "12 min", img: "https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&q=80", featured: true },
{ category: "Consumer Study", title: "Post-Pandemic Purchasing Behavior Shifts", date: "Apr 2025", read: "8 min", img: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=600&q=80", featured: false },
{ category: "Industry Analysis", title: "Emerging Markets: Southeast Asia Tech Boom", date: "Mar 2025", read: "15 min", img: "https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=600&q=80", featured: false },
{ category: "Data Deep Dive", title: "AI Adoption Curves Across Enterprise Segments", date: "Mar 2025", read: "10 min", img: "https://images.unsplash.com/photo-1518770660439-4636190af475?w=600&q=80", featured: false },
];
const CASE_STUDIES = [
{ client: "Global Fintech Scale-up", sector: "Financial Services", metric: "+340%", metricLabel: "Revenue Growth", desc: "Restructured go-to-market using segment-level behavioral data; identified three untapped verticals worth $2.4B combined.", color: "#0A2463" },
{ client: "FMCG Conglomerate", sector: "Consumer Goods", metric: "−28%", metricLabel: "Customer Churn", desc: "Deployed predictive churn modelling across 14 product lines, enabling proactive retention campaigns at scale.", color: "#1B4FE4" },
{ client: "Healthcare Network", sector: "Health & Life Sciences", metric: "4.2×", metricLabel: "Market Share Gain", desc: "Entry strategy backed by regional demand mapping; outpaced three incumbents within 18 months of launch.", color: "#0A2463" },
];
const TESTIMONIALS = [
{ name: "Sarah Chen", title: "Chief Strategy Officer, NovaTech", text: "Elixir Insights didn't just give us data — they gave us clarity. Their analysis reshaped our entire product roadmap for 2025.", avatar: "SC" },
{ name: "Marcus Webb", title: "CEO, Orion Capital Partners", text: "The depth of consumer research they delivered was unlike anything we'd seen from traditional consultancies. Genuinely transformative.", avatar: "MW" },
{ name: "Priya Nair", title: "VP Growth, HealthFirst", text: "We entered three new regional markets backed by Elixir's intelligence. Every single one hit profitability ahead of schedule.", avatar: "PN" },
];
const REVENUE_DATA = [
{ q: "Q1'23", value: 42 }, { q: "Q2'23", value: 58 }, { q: "Q3'23", value: 51 },
{ q: "Q4'23", value: 74 }, { q: "Q1'24", value: 82 }, { q: "Q2'24", value: 95 },
{ q: "Q3'24", value: 110 }, { q: "Q4'24", value: 138 },
];
const SEGMENT_DATA = [
{ name: "Financial Services", value: 34, color: "#1B4FE4" },
{ name: "Consumer Goods", value: 26, color: "#0A2463" },
{ name: "Healthcare", value: 22, color: "#3B82F6" },
{ name: "Technology", value: 18, color: "#93C5FD" },
];
const MARKET_DATA = [
{ month: "Jan", research: 65, analytics: 40 }, { month: "Feb", research: 72, analytics: 52 },
{ month: "Mar", research: 68, analytics: 61 }, { month: "Apr", research: 85, analytics: 74 },
{ month: "May", research: 91, analytics: 82 }, { month: "Jun", research: 88, analytics: 79 },
];
const STATS = [
{ value: "12+", label: "Years of Excellence" },
{ value: "340+", label: "Global Clients" },
{ value: "98%", label: "Client Retention" },
{ value: "$4.2B", label: "Value Generated" },
];
// ─── HOOKS ───────────────────────────────────────────────────────────────────
function useInView(threshold = 0.15) {
const ref = useRef(null);
const [inView, setInView] = useState(false);
useEffect(() => {
const obs = new IntersectionObserver(([e]) => { if (e.isIntersecting) setInView(true); }, { threshold });
if (ref.current) obs.observe(ref.current);
return () => obs.disconnect();
}, []);
return [ref, inView];
}
// ─── MICRO COMPONENTS ────────────────────────────────────────────────────────
function FadeIn({ children, delay = 0, className = "" }) {
const [ref, inView] = useInView();
return (
{children}
);
}
function Tag({ children, light }) {
return (
{children}
);
}
function GlowBtn({ children, primary, onClick, href }) {
const [hov, setHov] = useState(false);
const base = {
display: "inline-flex", alignItems: "center", gap: 8, padding: "13px 28px",
borderRadius: 6, fontFamily: "'DM Sans', sans-serif", fontWeight: 600,
fontSize: 15, cursor: "pointer", border: "none", textDecoration: "none",
transition: "all 0.25s ease", userSelect: "none",
};
const styles = primary
? { ...base, background: hov ? "#1340cc" : "#1B4FE4", color: "#fff", boxShadow: hov ? "0 8px 30px rgba(27,79,228,0.45)" : "0 4px 16px rgba(27,79,228,0.3)" }
: { ...base, background: "transparent", color: hov ? "#fff" : "#0A2463", border: "1.5px solid #0A2463", boxShadow: hov ? "inset 0 0 0 100px #0A2463" : "none" };
const El = href ? "a" : "button";
return setHov(true)} onMouseLeave={() => setHov(false)} onClick={onClick} href={href}>{children} ;
}
// ─── SECTIONS ────────────────────────────────────────────────────────────────
function Navbar({ dark }) {
const [scrolled, setScrolled] = useState(false);
const [menuOpen, setMenuOpen] = useState(false);
useEffect(() => {
const fn = () => setScrolled(window.scrollY > 40);
window.addEventListener("scroll", fn);
return () => window.removeEventListener("scroll", fn);
}, []);
const bg = scrolled ? "rgba(255,255,255,0.97)" : "transparent";
const textCol = scrolled ? "#0A2463" : (dark ? "#fff" : "#0A2463");
return (
);
}
function Hero() {
const [t, setT] = useState(0);
useEffect(() => {
const id = setInterval(() => setT(p => p + 0.016), 16);
return () => clearInterval(id);
}, []);
return (
{/* animated bg circles */}
{[...Array(6)].map((_, i) => (
))}
{/* floating data points */}
{[
{ x: "15%", y: "25%", v: "+24.3%" }, { x: "78%", y: "18%", v: "8.2B" },
{ x: "82%", y: "72%", v: "340+" }, { x: "12%", y: "70%", v: "98%" },
].map((d, i) => (
{d.v}
))}
Intelligence that moves markets
Data-Driven Decisions
Start Here.
Elixir Insights transforms complex market signals into strategic clarity. We equip the world's most ambitious organizations with the intelligence they need to lead.
Explore Services →
Talk to an Expert
{STATS.map((s, i) => (
{s.value}
{s.label}
))}
{/* bottom gradient blend */}
);
}
function About() {
const pillars = [
{ icon: "🎯", title: "Precision Research", desc: "Every engagement starts with a rigorous research design — no assumptions, no shortcuts." },
{ icon: "⚡", title: "Speed to Insight", desc: "Our proprietary data infrastructure cuts delivery timelines by 60% vs. traditional consultancies." },
{ icon: "🔐", title: "Trusted by Leaders", desc: "Fortune 500 boards and high-growth scale-ups alike rely on our intelligence for critical decisions." },
{ icon: "🌍", title: "Global Coverage", desc: "84 country datasets, 12 proprietary panels, and real-time web intelligence — we don't miss markets." },
];
return (
About Us
We don't just report data.
We interpret it.
Founded by strategy consultants and data scientists, Elixir Insights bridges the gap between raw intelligence and boardroom decisions. We've built proprietary research infrastructure across 84 markets — giving our clients an information advantage that's simply unavailable elsewhere.
Our methodology fuses traditional qualitative depth with modern machine learning pipelines — so you get both the story and the statistical confidence behind it.
Our Services →
{pillars.map((p, i) => (
{ e.currentTarget.style.transform = "translateY(-4px)"; e.currentTarget.style.boxShadow = "0 12px 36px rgba(27,79,228,0.12)"; }}
onMouseLeave={e => { e.currentTarget.style.transform = "translateY(0)"; e.currentTarget.style.boxShadow = "0 2px 12px rgba(10,36,99,0.04)"; }}
>
{p.icon}
{p.title}
{p.desc}
))}
);
}
function Services() {
return (
What We Do
Intelligence Services
From raw data collection to boardroom strategy — our service suite covers every layer of the intelligence value chain.
{SERVICES.map((s, i) => (
{
e.currentTarget.style.background = "#0A2463";
e.currentTarget.style.transform = "translateY(-6px)";
e.currentTarget.style.boxShadow = "0 20px 48px rgba(10,36,99,0.22)";
e.currentTarget.querySelectorAll("[data-text]").forEach(el => el.style.color = "#fff");
e.currentTarget.querySelectorAll("[data-sub]").forEach(el => el.style.color = "rgba(255,255,255,0.65)");
e.currentTarget.querySelectorAll("[data-tag]").forEach(el => { el.style.background = "rgba(255,255,255,0.12)"; el.style.color = "#93C5FD"; el.style.borderColor = "rgba(255,255,255,0.2)"; });
}}
onMouseLeave={e => {
e.currentTarget.style.background = "#f8f9fc";
e.currentTarget.style.transform = "translateY(0)";
e.currentTarget.style.boxShadow = "none";
e.currentTarget.querySelectorAll("[data-text]").forEach(el => el.style.color = "#0A2463");
e.currentTarget.querySelectorAll("[data-sub]").forEach(el => el.style.color = "#556");
e.currentTarget.querySelectorAll("[data-tag]").forEach(el => { el.style.background = "rgba(27,79,228,0.08)"; el.style.color = "#1B4FE4"; el.style.borderColor = "rgba(27,79,228,0.18)"; });
}}
>
{s.icon}
{s.tag}
{s.title}
{s.desc}
))}
);
}
function DataViz() {
const CustomTooltip = ({ active, payload, label }) => {
if (!active || !payload?.length) return null;
return (
{label}
{payload.map((p, i) => {p.name}: {p.value}
)}
);
};
return (
Data Lab
Intelligence, Visualized
Real-time data visualization drawn from our proprietary market intelligence panels.
{[
{
title: "Client Revenue Index", subtitle: "Cumulative Q-over-Q growth across portfolio",
chart: (
} />
)
},
{
title: "Market Research Activity", subtitle: "Research vs Analytics output (indexed)",
chart: (
} />
)
},
{
title: "Client Sector Distribution", subtitle: "% breakdown by industry vertical",
chart: (
{SEGMENT_DATA.map((e, i) => | )}
} />
{SEGMENT_DATA.map((d, i) => (
{d.name}
{d.value}%
))}
)
}
].map((c, i) => (
{c.title}
{c.subtitle}
{c.chart}
))}
);
}
function InsightsSection() {
const [featured, ...rest] = INSIGHTS;
return (
Research & Reports
Latest Insights
View All Reports →
{ e.currentTarget.style.transform = "translateY(-4px)"; e.currentTarget.style.boxShadow = "0 20px 48px rgba(10,36,99,0.14)"; }}
onMouseLeave={e => { e.currentTarget.style.transform = "none"; e.currentTarget.style.boxShadow = "none"; }}
>
{rest.map((r, i) => (
{ e.currentTarget.style.transform = "translateX(4px)"; e.currentTarget.style.background = "#f8f9fc"; }}
onMouseLeave={e => { e.currentTarget.style.transform = "none"; e.currentTarget.style.background = "#fff"; }}
>
{r.category}
{r.title}
{r.date} · {r.read}
))}
);
}
function CaseStudies() {
return (
Case Studies
Outcomes That Speak
We measure our success by the outcomes we create — not the reports we deliver.
{CASE_STUDIES.map((c, i) => (
{ e.currentTarget.style.transform = "translateY(-6px)"; e.currentTarget.style.boxShadow = "0 20px 48px rgba(10,36,99,0.14)"; }}
onMouseLeave={e => { e.currentTarget.style.transform = "none"; e.currentTarget.style.boxShadow = "0 2px 12px rgba(10,36,99,0.04)"; }}
>
{c.sector}
{c.client}
{c.metric}
{c.metricLabel}
{c.desc}
Read Full Story →
))}
);
}
function Testimonials() {
const [active, setActive] = useState(0);
useEffect(() => {
const id = setInterval(() => setActive(p => (p + 1) % TESTIMONIALS.length), 5000);
return () => clearInterval(id);
}, []);
const t = TESTIMONIALS[active];
return (
Testimonials
What Our Clients Say
"{t.text}"
{t.avatar}
{t.name}
{t.title}
{TESTIMONIALS.map((_, i) => (
);
}
function CTABanner() {
return (
Ready to unlock insights
for your business?
Join 340+ organizations that trust Elixir Insights to power their most critical decisions.
{ e.target.style.transform = "translateY(-2px)"; e.target.style.boxShadow = "0 8px 32px rgba(0,0,0,0.3)"; }}
onMouseLeave={e => { e.target.style.transform = "none"; e.target.style.boxShadow = "0 4px 20px rgba(0,0,0,0.2)"; }}
>
Schedule a Consultation →
e.target.style.borderColor = "rgba(255,255,255,0.8)"}
onMouseLeave={e => e.target.style.borderColor = "rgba(255,255,255,0.35)"}
>
Explore Reports
);
}
function ContactSection() {
const [form, setForm] = useState({ name: "", email: "", company: "", message: "" });
const [sent, setSent] = useState(false);
const submit = () => { if (form.name && form.email) setSent(true); };
return (
Get In Touch
Start the conversation
Whether you're exploring a specific research question or need a comprehensive market intelligence partner, our team is ready to help.
{[
{ icon: "📧", label: "Email", value: "hello@elixirinsights.com" },
{ icon: "📍", label: "Headquarters", value: "London · New York · Singapore" },
{ icon: "⏱", label: "Response Time", value: "Within 24 business hours" },
].map((c, i) => (
{c.icon}
{c.label}
{c.value}
))}
{sent ? (
✅
Message Received!
We'll be in touch within 24 hours.
) : (
{[
{ key: "name", label: "Full Name", ph: "Jane Smith" },
{ key: "email", label: "Work Email", ph: "jane@company.com" },
{ key: "company", label: "Company", ph: "Acme Corp" },
].map(f => (
setForm(p => ({ ...p, [f.key]: e.target.value }))}
style={{ width: "100%", padding: "12px 16px", borderRadius: 8, border: "1.5px solid #dde", fontFamily: "'DM Sans',sans-serif", fontSize: 14, outline: "none", boxSizing: "border-box", transition: "border 0.2s", background: "#fafbfc" }}
onFocus={e => e.target.style.borderColor = "#1B4FE4"}
onBlur={e => e.target.style.borderColor = "#dde"}
/>
))}
)}
);
}
function Footer() {
const cols = [
{ title: "Services", links: ["Market Research", "Data Analytics", "Business Strategy", "Consumer Insights", "Competitive Intelligence"] },
{ title: "Company", links: ["About Us", "Our Team", "Careers", "Press & Media", "ESG Report"] },
{ title: "Resources", links: ["Insights Blog", "Research Reports", "Case Studies", "Webinars", "API Docs"] },
];
return (
);
}
// ─── APP ─────────────────────────────────────────────────────────────────────
export default function App() {
useEffect(() => {
document.title = "Elixir Insights — Market Intelligence & Strategy";
// Load Google Fonts
const link = document.createElement("link");
link.rel = "stylesheet";
link.href = "https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:ital@0;1&display=swap";
document.head.appendChild(link);
// Smooth scroll
document.documentElement.style.scrollBehavior = "smooth";
}, []);
return (
);
}