tailwind.config = {
important: ‘#prescient-landing-wrapper’,
theme: {
extend: {
fontFamily: {
sans: [‘Inter’, ‘sans-serif’],
mono: [‘JetBrains Mono’, ‘monospace’],
},
colors: {
‘brand-dark’: ‘#0f172a’,
‘brand-accent’: ‘#06b6d4’,
‘brand-secondary’: ‘#3b82f6’,
‘brand-surface’: ‘#1e293b’,
}
}
}
}
#prescient-landing-wrapper {
box-sizing: border-box;
line-height: 1.5;
margin: 0;
padding: 0;
background-color: #0f172a;
color: #cbd5e1;
}
#prescient-landing-wrapper *,
#prescient-landing-wrapper *::before,
#prescient-landing-wrapper *::after {
box-sizing: border-box;
}
#prescient-landing-wrapper h1,
#prescient-landing-wrapper h2,
#prescient-landing-wrapper h3,
#prescient-landing-wrapper h4,
#prescient-landing-wrapper h5,
#prescient-landing-wrapper h6 {
margin-top: 0;
margin-bottom: 0;
line-height: 1.1;
color: inherit;
}
#prescient-landing-wrapper p,
#prescient-landing-wrapper ul,
#prescient-landing-wrapper li {
margin-bottom: 0;
padding: 0;
list-style: none;
color: inherit;
}
#prescient-landing-wrapper canvas {
max-width: 100%;
}
#prescient-landing-wrapper .chart-container {
position: relative;
width: 100%;
max-width: 800px;
margin: 0 auto;
height: 300px;
max-height: 400px;
}
#prescient-landing-wrapper ::selection {
background-color: #06b6d4;
color: #0f172a;
}
@keyframes pulse-accent {
0%, 100% { opacity: 1; }
50% { opacity: .5; }
}
.animate-pulse-fast {
animation: pulse-accent 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
Classified: Executive Search
Build the Unified Causal Intelligence engine that doesn’t just predict the future—it simulates it.
Remote / Hybrid
Co-Founder Equity
The Technical Challenge
Traditional AI hits a confidence plateau. We need an Architect to build the Inference Layer that breaks through using Causal AI & Simulation.
SYSTEM STATUS
AWAITING ARCHITECT
MISSION OBJECTIVES
Build the Core
Architect and code the “Inference Layer” for scenario modeling. Move beyond correlation to true causal inference.
Define the Stack
Select optimal tools (Python/Rust, TF/PyTorch, GCP/AWS). Balance immediate MVP speed with 10x scale architecture.
Secure the Platform
Design “boardroom-grade” security and governance protocols. Essential for our Fortune 500 design partners.
Establish MACH
Design a Microservices, API-first, Cloud-native, Headless infrastructure for agility and autonomous scaling.
OPERATOR PROFILE
-
▹
A Full-Stack Visionary
Comfortable deep in backend Causal AI logic AND high up in the API layer.
-
▹
A Pragmatic Scaler
You know when to ship an MVP and when to engineer for massive scale. You manage technical debt proactively.
-
▹
A “Special Forces” Mindset
High agency. You own the outcome, not just the task. You are a builder, not just a manager.
COMPENSATION
BASE SALARY (SEED/SERIES A)
$130k – $160k
EQUITY (CO-FOUNDER)
15% – 25%
+ Complete Autonomy
+ Remote / Hybrid Flexibility
+ High-Impact Mission
Initialize Sequence
Ready to build the future? The mission starts here.
(function() {
function initChart() {
const canvas = document.getElementById(‘missionChart’);
if (!canvas) return;
const ctx = canvas.getContext(‘2d’);
const gradientTrad = ctx.createLinearGradient(0, 0, 0, 400);
gradientTrad.addColorStop(0, ‘rgba(148, 163, 184, 0.2)’);
gradientTrad.addColorStop(1, ‘rgba(148, 163, 184, 0)’);
const gradientNew = ctx.createLinearGradient(0, 0, 0, 400);
gradientNew.addColorStop(0, ‘rgba(6, 182, 212, 0.5)’);
gradientNew.addColorStop(1, ‘rgba(6, 182, 212, 0)’);
if (window.Chart) {
new Chart(ctx, {
type: ‘line’,
data: {
labels: [‘Seed’, ‘Launch’, ‘Scale’, ‘Maturity’, ‘Future’],
datasets: [
{
label: ‘Traditional AI (Correlation)’,
data: [20, 45, 60, 65, 66],
borderColor: ‘#94a3b8’,
backgroundColor: gradientTrad,
borderWidth: 2,
borderDash: [5, 5],
pointRadius: 0,
tension: 0.4,
fill: true
},
{
label: ‘PrescientIQ (Causal Simulation)’,
data: [20, 50, 85, 95, 100],
borderColor: ‘#06b6d4’,
backgroundColor: gradientNew,
borderWidth: 3,
pointBackgroundColor: ‘#0f172a’,
pointBorderColor: ‘#06b6d4’,
pointBorderWidth: 2,
pointRadius: 4,
pointHoverRadius: 6,
tension: 0.4,
fill: true
}
]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: ‘bottom’,
labels: { color: ‘#cbd5e1’, font: { family: ‘Inter’, size: 12 } }
},
tooltip: {
mode: ‘index’,
intersect: false,
backgroundColor: ‘rgba(15, 23, 42, 0.9)’,
titleColor: ‘#fff’,
bodyColor: ‘#cbd5e1’,
borderColor: ‘#334155’,
borderWidth: 1
}
},
scales: {
y: {
grid: { color: ‘#334155’, drawBorder: false },
ticks: { color: ‘#64748b’, display: false },
title: { display: true, text: ‘Decision Confidence’, color: ‘#64748b’ },
beginAtZero: true
},
x: {
grid: { display: false },
ticks: { color: ‘#64748b’ }
}
},
interaction: {
mode: ‘nearest’,
axis: ‘x’,
intersect: false
}
}
});
}
}
if (document.readyState === ‘loading’) {
document.addEventListener(‘DOMContentLoaded’, initChart);
} else {
initChart();
}
})();