2026-03-21 23:57:58 +01:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "UTF-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< title > NISPS Playground< / title >
< style >
2026-03-22 00:36:00 +01:00
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;700&display=swap');
2026-03-21 23:57:58 +01:00
* { box-sizing: border-box; margin: 0; padding: 0; }
2026-03-22 00:36:00 +01:00
:root {
--bg: #0a0a0a;
--surface: #111;
--border: #1e1e1e;
--accent: #ff6a00;
--accent-dim: rgba(255, 106, 0, 0.12);
--text: #c8c8c8;
--text-dim: #606060;
--mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}
2026-03-21 23:57:58 +01:00
html, body {
2026-03-22 00:36:00 +01:00
background: var(--bg);
color: var(--text);
font-family: var(--mono);
2026-03-21 23:57:58 +01:00
min-height: 100vh;
}
2026-03-22 00:36:00 +01:00
/* Faint grid background */
body::before {
content: '';
position: fixed;
inset: 0;
background-image:
linear-gradient(rgba(255,106,0,0.02) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,106,0,0.02) 1px, transparent 1px);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
2026-03-21 23:57:58 +01:00
.page {
2026-03-22 00:36:00 +01:00
position: relative;
z-index: 1;
max-width: 900px;
2026-03-21 23:57:58 +01:00
margin: 0 auto;
2026-03-22 00:36:00 +01:00
padding: 56px 24px 80px;
}
/* Header */
.header {
margin-bottom: 48px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
h1 {
2026-03-22 00:36:00 +01:00
font-family: var(--mono);
font-size: 28px;
2026-03-21 23:57:58 +01:00
font-weight: 700;
2026-03-22 00:36:00 +01:00
color: var(--accent);
2026-03-21 23:57:58 +01:00
letter-spacing: -0.5px;
2026-03-22 00:36:00 +01:00
line-height: 1.2;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
h1 span {
color: var(--text-dim);
font-weight: 400;
font-size: 13px;
display: block;
margin-top: 6px;
letter-spacing: 1px;
text-transform: uppercase;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.intro {
2026-03-22 00:36:00 +01:00
margin-top: 20px;
font-size: 13px;
color: var(--text-dim);
line-height: 1.7;
max-width: 560px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
/* Cards */
2026-03-21 23:57:58 +01:00
.cards {
display: flex;
flex-direction: column;
2026-03-22 00:36:00 +01:00
gap: 16px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.card {
2026-03-22 00:36:00 +01:00
display: grid;
grid-template-columns: 1fr;
background: var(--surface);
border: 1px solid var(--border);
border-radius: 8px;
2026-03-21 23:57:58 +01:00
overflow: hidden;
2026-03-22 00:36:00 +01:00
text-decoration: none;
color: inherit;
transition: border-color 0.2s, box-shadow 0.2s;
cursor: pointer;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.card:hover {
2026-03-22 00:36:00 +01:00
border-color: var(--accent);
box-shadow: 0 0 20px rgba(255, 106, 0, 0.06), inset 0 0 20px rgba(255, 106, 0, 0.02);
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.preview {
width: 100%;
2026-03-22 00:36:00 +01:00
height: 220px;
2026-03-21 23:57:58 +01:00
overflow: hidden;
position: relative;
2026-03-22 00:36:00 +01:00
background: #080808;
border-bottom: 1px solid var(--border);
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.preview iframe {
width: 200%;
height: 200%;
transform: scale(0.5);
transform-origin: top left;
border: none;
pointer-events: none;
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.card-body {
2026-03-22 00:36:00 +01:00
padding: 16px 20px 20px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.card-body h2 {
2026-03-22 00:36:00 +01:00
font-family: var(--mono);
font-size: 16px;
font-weight: 700;
color: #e0e0e0;
margin-bottom: 6px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
2026-03-21 23:57:58 +01:00
.card-body p {
2026-03-22 00:36:00 +01:00
font-size: 12px;
color: var(--text-dim);
2026-03-21 23:57:58 +01:00
line-height: 1.6;
}
2026-03-22 00:36:00 +01:00
.card:hover .card-body h2 {
color: var(--accent);
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
/* Desktop: horizontal row */
@media (min-width: 860px) {
2026-03-21 23:57:58 +01:00
.cards {
flex-direction: row;
2026-03-22 00:36:00 +01:00
gap: 12px;
}
.card {
flex: 1;
}
.preview {
height: 240px;
2026-03-21 23:57:58 +01:00
}
2026-03-22 00:36:00 +01:00
}
/* Large: more breathing room */
@media (min-width: 1100px) {
.page { max-width: 1100px; }
.preview { height: 280px; }
2026-03-21 23:57:58 +01:00
}
< / style >
< / head >
< body >
< div class = "page" >
2026-03-22 00:36:00 +01:00
< div class = "header" >
< h1 > NISPS Playground
< span > Neural Interactive Shaping of Parameter Spaces< / span >
< / h1 >
< p class = "intro" > Map a 2D joystick to 126 synthesizer parameters through a neural network. Two learning modes: show examples of what you want, or give thumbs up/down feedback. The network learns to interpolate the space between them.< / p >
< / div >
2026-03-21 23:57:58 +01:00
< div class = "cards" >
2026-03-22 00:36:00 +01:00
< a class = "card" href = "a-immersive.html" >
2026-03-21 23:57:58 +01:00
< div class = "preview" >
2026-03-22 00:36:00 +01:00
< iframe src = "a-immersive.html" loading = "lazy" tabindex = "-1" > < / iframe >
2026-03-21 23:57:58 +01:00
< / div >
< div class = "card-body" >
< h2 > Immersive< / h2 >
2026-03-22 00:36:00 +01:00
< p > Full-screen canvas with floating controls. The visualization is the interface.< / p >
2026-03-21 23:57:58 +01:00
< / div >
2026-03-22 00:36:00 +01:00
< / a >
2026-03-21 23:57:58 +01:00
2026-03-22 00:36:00 +01:00
< a class = "card" href = "b-workbench.html" >
2026-03-21 23:57:58 +01:00
< div class = "preview" >
2026-03-22 00:36:00 +01:00
< iframe src = "b-workbench.html" loading = "lazy" tabindex = "-1" > < / iframe >
2026-03-21 23:57:58 +01:00
< / div >
< div class = "card-body" >
< h2 > Workbench< / h2 >
2026-03-22 00:36:00 +01:00
< p > Dashboard layout with a 2D heatmap. Built for understanding the mapping.< / p >
2026-03-21 23:57:58 +01:00
< / div >
2026-03-22 00:36:00 +01:00
< / a >
2026-03-21 23:57:58 +01:00
2026-03-22 00:36:00 +01:00
< a class = "card" href = "c-journey.html" >
2026-03-21 23:57:58 +01:00
< div class = "preview" >
2026-03-22 00:36:00 +01:00
< iframe src = "c-journey.html" loading = "lazy" tabindex = "-1" > < / iframe >
2026-03-21 23:57:58 +01:00
< / div >
< div class = "card-body" >
< h2 > Journey< / h2 >
2026-03-22 00:36:00 +01:00
< p > Three phases that dissolve as you master the mapping. The UI fades away.< / p >
2026-03-21 23:57:58 +01:00
< / div >
2026-03-22 00:36:00 +01:00
< / a >
2026-03-21 23:57:58 +01:00
< / div >
< / div >
< / body >
< / html >