Intelligence Products

Practical policy intelligence products for professionals and institutions.

Explore the Institute's publications, tools, learning experiences, and institutional solutions designed to help individuals and organizations understand complex policy issues, design better options, and prepare for the future.

Scroll down
Product Ecosystem

From individual knowledge products to institutional intelligence solutions.

The Institute's product ecosystem is designed around two pathways: self-service products for individuals and professionals, and tailored intelligence solutions for institutions, government entities, and strategic partners.

Individual Intelligence Products

Practical policy intelligence for professionals, researchers, and future government practitioners.

The Institute's individual products are designed for people who want structured insight, practical tools, and applied learning in public policy, AI-era governance, foresight, and government innovation.

Coming Soon
Library

Policy Intelligence Library

A premium collection of curated briefing packs, executive explainers, outlooks, research notes, and issue-based intelligence products designed for professionals who need structured, decision-ready policy insight.

Coming Soon
Tools

Policy Tools & Templates

Structured frameworks, canvases, checklists, and templates that help users design, test, communicate, and evaluate better policy ideas.

Coming Soon
Learning

Learning & Masterclasses

Practical learning experiences that translate the Institute's policy intelligence model into skills, methods, and applied professional knowledge.

Free

Free, open-access research & public reports

Read the Institute's policy briefs, explainers, and research — no subscription required.

Explore Publications
Custom Intelligence Solutions

Tailored research and policy intelligence for specific questions, sectors, and institutional needs.

For institutions, teams, and selected individuals, the Institute develops custom research and intelligence outputs that help clarify complex policy issues, compare global approaches, identify emerging trends, and support better decision-making.

Request a Custom Intelligence Product

Custom Intelligence Solutions

Unlike the Institute's ready-to-use products, Custom Intelligence Solutions are developed around a specific policy question, sector, challenge, or audience. In this phase, the Institute focuses on research-based outputs such as briefs, scans, reports, explainers, and intelligence notes.

Custom Policy Briefs
Executive Intelligence Notes
Comparative Policy Scans
Issue Intelligence Reports
Policy Options Papers
Evidence & Literature Scans
Trend & Signal Briefs
Sector Intelligence Snapshots
Policy Explainers
Strategic Question Briefs
Who can request it?

Available for government entities, public institutions, universities, foundations, professional teams, research groups, and selected individuals working on policy, strategy, foresight, innovation, or public-sector transformation.

Who It Serves

Designed for the people and institutions shaping future policy.

The Institute's intelligence products serve individuals and organizations working at the intersection of public policy, government innovation, foresight, technology, and national development.

Government Leaders & Policy Teams

Brief faster and shape better options with decision-ready intelligence.

Public-Sector Professionals

Apply structured methods to everyday policy work.

Researchers & Analysts

Sharpen analysis with rigorous, reusable frameworks.

Students & Emerging Practitioners

Build strong foundations in policy intelligence.

Universities & Learning Institutions

Support teaching, training, and applied research.

Think Tanks & Research Centers

Extend capacity with shared methods and tools.

Foundations & Strategic Organizations

Strengthen programs with evidence-based intelligence.

Innovation, Foresight & Strategy Teams

Plan ahead with signals, scenarios, and option maps.

Request a Custom Intelligence Product

Request a custom intelligence product.

Have a specific policy question, sector, or issue you want to explore? Submit a request and the Institute will review the topic, identify the most suitable intelligence product format, and follow up with the proposed scope, timeline, and next steps.

Custom Intelligence Solutions are developed around specific questions, challenges, sectors, or audiences. Requests may include custom briefs, executive intelligence notes, comparative scans, evidence reviews, policy explainers, issue reports, and strategic question briefs.

Your details

Enter a valid email address.

Country
Request details
Product type

Example: AI governance, future government, family policy, education, labor market, sustainability, public services.

Please describe the question or challenge you would like the Institute to explore.

Intended audience

Example: internal discussion, decision support, research, presentation, strategy work, learning.

Practical preferences
Preferred timeline
Preferred language
'; function emit(logoSrc){ const finalDoc = doc.split('%%LOGO%%').join(logoSrc); const w = window.open('', '_blank'); if (!w){ alert('Please allow pop-ups to download your request copy.'); return; } w.document.open(); w.document.write(finalDoc); w.document.close(); } // Convert the (same-origin) logo to a data URI so it reliably // renders inside the print popup before the print dialog fires. const fallbackLogo = (function(){ try { return new URL('logo.png', window.location.href).href; } catch(e){ return 'logo.png'; } })(); const limg = new Image(); limg.onload = function(){ try { const c = document.createElement('canvas'); c.width = limg.naturalWidth; c.height = limg.naturalHeight; c.getContext('2d').drawImage(limg, 0, 0); emit(c.toDataURL('image/png')); } catch(e){ emit(fallbackLogo); } }; limg.onerror = function(){ emit(fallbackLogo); }; limg.src = 'logo.png?v=5'; }); } })(); // ── Hero scroll hint fade-out ──────────────────────────────── (function(){ const hint = document.getElementById('scroll-hint'); if (!hint) return; function onScroll(){ hint.classList.toggle('is-hidden', window.scrollY > 40); } onScroll(); window.addEventListener('scroll', onScroll, { passive: true }); })(); // ── Product Categories carousel (arrows + drag/swipe) ──────── (function(){ const track = document.getElementById('pc-track'); const prev = document.getElementById('pc-prev'); const next = document.getElementById('pc-next'); if (!track || !prev || !next) return; function step(){ const slide = track.querySelector('.pc-slide'); const gap = parseFloat(getComputedStyle(track).columnGap || getComputedStyle(track).gap || 20) || 20; return slide ? slide.getBoundingClientRect().width + gap : track.clientWidth * 0.8; } function updateButtons(){ const max = track.scrollWidth - track.clientWidth - 2; prev.disabled = track.scrollLeft <= 2; next.disabled = track.scrollLeft >= max; } prev.addEventListener('click', () => track.scrollBy({ left: -step(), behavior: 'smooth' })); next.addEventListener('click', () => track.scrollBy({ left: step(), behavior: 'smooth' })); track.addEventListener('scroll', updateButtons, { passive: true }); window.addEventListener('resize', updateButtons); // Pointer drag-to-scroll let down = false, startX = 0, startLeft = 0, moved = false; track.addEventListener('pointerdown', (e) => { down = true; moved = false; startX = e.clientX; startLeft = track.scrollLeft; track.setPointerCapture(e.pointerId); }); track.addEventListener('pointermove', (e) => { if (!down) return; const dx = e.clientX - startX; if (Math.abs(dx) > 4){ moved = true; track.classList.add('is-dragging'); } track.scrollLeft = startLeft - dx; }); function endDrag(e){ if (!down) return; down = false; track.classList.remove('is-dragging'); try { track.releasePointerCapture(e.pointerId); } catch(_){} } track.addEventListener('pointerup', endDrag); track.addEventListener('pointercancel', endDrag); track.addEventListener('click', (e) => { if (moved){ e.preventDefault(); e.stopPropagation(); } }, true); updateButtons(); })();