/* ============================================================
   Panis & Fonteyne — Studio Website
   Branding: dark space-canvas · groen #7dffc4 → blauw #2ea6f0
   Type: Clash Display (display) · Satoshi (body) · JetBrains Mono (tech)
   ============================================================ */

:root {
  --bg:        #050a14;
  --bg-2:      #04101c;
  --panel:     rgba(255, 255, 255, 0.035);
  --panel-2:   rgba(255, 255, 255, 0.05);
  --stroke:    rgba(255, 255, 255, 0.09);
  --stroke-2:  rgba(255, 255, 255, 0.15);

  --green:     #7dffc4;
  --blue:      #2ea6f0;
  --grad:      linear-gradient(120deg, #7dffc4 0%, #2ea6f0 100%);

  --text:      #eaf2ff;
  --muted:     #9fb2c9;
  --faint:     #5d7088;

  --r:         18px;
  --r-sm:      12px;
  --maxw:      1240px;

  --f-display: 'Sora', 'Satoshi', system-ui, sans-serif;
  --f-body:    'Satoshi', system-ui, -apple-system, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ---------- Achtergrondsfeer ---------- */
#starfield { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.bg-aura {
  position: fixed; z-index: 0; pointer-events: none;
  border-radius: 50%; filter: blur(120px); opacity: 0.5;
}
.bg-aura.a1 { width: 620px; height: 620px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(46,166,240,0.45), transparent 70%); }
.bg-aura.a2 { width: 560px; height: 560px; bottom: -180px; left: -140px;
  background: radial-gradient(circle, rgba(125,255,196,0.30), transparent 70%); }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(130% 90% at 60% 0%, transparent 52%, rgba(0,0,0,0.5) 100%);
}

/* ---------- App layout ---------- */
.app { position: relative; z-index: 2; display: grid; grid-template-columns: 264px minmax(0, 1fr); min-height: 100vh; }

/* ---------- Sidebar ---------- */
.sidebar {
  position: sticky; top: 0; align-self: start; height: 100vh;
  display: flex; flex-direction: column;
  padding: 26px 22px;
  border-right: 1px solid var(--stroke);
  background: linear-gradient(180deg, rgba(7,16,28,0.6), rgba(5,10,20,0.2));
  backdrop-filter: blur(10px);
}
.side-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--text); }
.side-logo .mark { width: 34px; height: 34px; filter: drop-shadow(0 0 10px rgba(125,255,196,0.35)); }
.side-logo .txt { font-family: var(--f-display); font-weight: 600; font-size: 14px; letter-spacing: 0.04em; line-height: 1.1; display: flex; flex-direction: column; }
.side-logo .txt small { font-size: 10px; letter-spacing: 0.32em; color: var(--blue); font-weight: 500; }

.nav { display: flex; flex-direction: column; gap: 3px; margin-top: 42px; }
.nav a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: var(--r-sm);
  color: var(--muted); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: background .2s, color .2s; position: relative;
}
.nav a:hover { color: var(--text); background: var(--panel); }
.nav a.active { color: var(--text); background: var(--panel-2); }
.nav a.active::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 3px; border-radius: 3px; background: var(--grad); }
.ni { width: 18px; height: 18px; flex: none; border-radius: 5px; background: var(--grad); opacity: 0.55; mask-size: contain; }
.nav a:hover .ni, .nav a.active .ni { opacity: 1; }

.side-foot { margin-top: auto; display: flex; flex-direction: column; gap: 16px; }
.lang { display: inline-flex; gap: 4px; padding: 4px; border: 1px solid var(--stroke); border-radius: 999px; width: max-content; }
.lang-btn { background: none; border: none; color: var(--faint); font-family: var(--f-mono); font-size: 12px; padding: 5px 12px; border-radius: 999px; cursor: pointer; transition: .2s; }
.lang-btn.active { background: var(--grad); color: #04101c; font-weight: 500; }
.side-status { display: flex; flex-direction: column; gap: 7px; font-size: 12.5px; color: var(--muted); }
.side-status .row { display: flex; align-items: center; gap: 8px; }
.side-status .row i { width: 7px; height: 7px; border-radius: 50%; background: var(--faint); }
.side-status .row.pulse i { background: var(--green); box-shadow: 0 0 0 0 rgba(125,255,196,0.6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(125,255,196,0.5);} 70%{ box-shadow: 0 0 0 7px rgba(125,255,196,0);} 100%{ box-shadow:0 0 0 0 rgba(125,255,196,0);} }

/* ---------- Main ---------- */
.main { min-width: 0; padding: 40px clamp(20px, 4vw, 56px) 60px; max-width: min(var(--maxw), 100%); width: 100%; }

/* ---------- Hero ---------- */
.hero { display: grid; grid-template-columns: 1.05fr 1fr; gap: 40px; align-items: center; min-height: 84vh; padding: 30px 0 60px; }
.kicker { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--muted); padding: 6px 13px; border: 1px solid var(--stroke); border-radius: 999px; }
.kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.hero h1 { font-family: var(--f-display); font-weight: 600; font-size: clamp(40px, 6vw, 76px); line-height: 1.02; letter-spacing: -0.02em; margin: 22px 0 0; }
.hero h1 .grad { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .sub { font-size: clamp(16px, 1.5vw, 19px); color: var(--muted); max-width: 30em; margin-top: 22px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.tech-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.tech { font-family: var(--f-mono); font-size: 12px; color: var(--muted); padding: 6px 12px; border: 1px solid var(--stroke); border-radius: 8px; background: var(--panel); }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-body); font-weight: 500; font-size: 15px; padding: 13px 22px; border-radius: 12px; text-decoration: none; cursor: pointer; border: 1px solid transparent; transition: transform .15s, box-shadow .25s, background .2s; }
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #04101c; font-weight: 700; box-shadow: 0 8px 30px rgba(46,166,240,0.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(46,166,240,0.4); }
.btn-ghost { background: var(--panel); color: var(--text); border-color: var(--stroke-2); }
.btn-ghost:hover { background: var(--panel-2); border-color: var(--green); }

/* ---------- Universe ---------- */
.universe-wrap { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 18px; }
.universe { position: relative; width: min(540px, 100%); max-width: 100%; aspect-ratio: 1; display: grid; place-items: center; }
.universe::before { content: ""; position: absolute; inset: -8%; border-radius: 50%; z-index: 0;
  background: radial-gradient(circle at 50% 50%, rgba(46,166,240,0.28), rgba(125,255,196,0.12) 38%, transparent 68%);
  filter: blur(34px); }

.orbit { position: absolute; border-radius: 50%; inset: 50% auto auto 50%; transform: translate(-50%,-50%); z-index: 1; }
.orbit.o1 { width: 50%;  height: 50%;  border: 1px solid rgba(125,255,196,0.22); box-shadow: inset 0 0 40px rgba(125,255,196,0.05); }
.orbit.o2 { width: 76%;  height: 76%;  border: 1px dashed rgba(255,255,255,0.20); animation: spin 90s linear infinite; }
.orbit.o3 { width: 104%; height: 104%; border: 1px solid rgba(46,166,240,0.18); }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.u-center { position: relative; display: grid; place-items: center; z-index: 3; }
.ring { position: absolute; width: 150px; height: 150px; border-radius: 50%; border: 1px solid rgba(125,255,196,0.32); }
.pulse-ring { animation: ringpulse 3.6s ease-out infinite; }
@keyframes ringpulse { 0%{ transform: scale(.55); opacity: .85;} 100%{ transform: scale(1.7); opacity: 0;} }
.core { width: 108px; height: 108px; border-radius: 50%; display: grid; place-items: center;
  background: radial-gradient(circle at 35% 28%, rgba(125,255,196,0.5), rgba(46,166,240,0.18) 60%, rgba(7,16,28,0.6) 100%);
  border: 1px solid rgba(125,255,196,0.4);
  box-shadow: 0 0 70px rgba(46,166,240,0.55), 0 0 130px rgba(125,255,196,0.25), inset 0 0 30px rgba(125,255,196,0.25); }
.core svg { width: 50px; height: 50px; filter: drop-shadow(0 0 8px rgba(125,255,196,0.6)); }

.planet { position: absolute; background: none; border: none; cursor: pointer; padding: 0; z-index: 4; --sz: 32px; }
.planet .dotcore { display: block; width: var(--sz); height: var(--sz); border-radius: 50%; position: relative;
  background: radial-gradient(circle at 32% 28%, #e8fff5, #7dffc4 46%, #2ea6f0 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 24px rgba(125,255,196,0.7), 0 0 60px rgba(46,166,240,0.4);
  transition: transform .25s, box-shadow .25s; }
.planet.p-orion .dotcore { background: radial-gradient(circle at 32% 28%, #d6f0ff, #2ea6f0 52%, #14538f 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 24px rgba(46,166,240,0.7), 0 0 60px rgba(46,166,240,0.4); }
.planet.p-cascade .dotcore { background: radial-gradient(circle at 32% 28%, #effffb, #43e0bf 48%, #0b6971 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 26px rgba(67,224,191,0.72), 0 0 62px rgba(30,142,151,0.42); }
.planet.p-dueback .dotcore { background: radial-gradient(circle at 32% 28%, #fff2ef, #ef403a 50%, #7a1717 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 26px rgba(239,64,58,0.72), 0 0 62px rgba(239,64,58,0.38); }
.planet.planet-faint { --sz: 15px; }
.planet.planet-faint .dotcore { background: radial-gradient(circle at 32% 28%, #cdd8e8, #66788f 72%); box-shadow: 0 0 14px rgba(160,180,210,0.4); opacity: .75; }
.planet .plabel { position: absolute; left: 50%; top: calc(var(--sz) + 9px); transform: translateX(-50%); white-space: nowrap;
  font-family: var(--f-mono); font-size: 11px; color: var(--text); background: rgba(7,16,28,0.72); border: 1px solid var(--stroke);
  padding: 3px 9px; border-radius: 999px; backdrop-filter: blur(6px); }
.planet.planet-faint .plabel { opacity: 0; color: var(--muted); transition: opacity .2s; }
.planet:hover .dotcore, .planet:focus-visible .dotcore { transform: scale(1.16); }
.planet.planet-faint:hover .plabel, .planet.planet-faint:focus-visible .plabel { opacity: 1; }
/* fallback-startposities (universe.js berekent de echte baan) */
.p-pol { top: 22%; left: 78%; } .p-orion { top: 66%; left: 30%; }
.p-cascade { top: 16%; left: 10%; } .p-dueback { top: 72%; left: 74%; } .p-future { top: 88%; left: 80%; }

/* ---------- Live card ---------- */
.live-card { position: relative; width: min(340px, 100%); padding: 16px 20px; border-radius: var(--r); border: 1px solid var(--stroke); background: rgba(7,16,28,0.66); backdrop-filter: blur(14px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); display: grid; grid-template-columns: 1fr auto; gap: 6px 18px; align-items: center; }
.live-card .lc-head { grid-column: 1 / -1; }
.lc-head { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); }
.lc-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); }
.live-card .big { margin: 8px 0 12px; font-family: var(--f-display); font-weight: 600; font-size: 40px; line-height: 1; display: flex; align-items: baseline; gap: 8px; }
.live-card .big small { font-size: 11px; color: var(--muted); font-weight: 400; font-family: var(--f-body); }
.lc-row { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--stroke); font-size: 13px; }
.lc-row .v { font-family: var(--f-mono); color: var(--green); }

/* ---------- Panels ---------- */
.panel-card { position: relative; overflow: hidden; border: 1px solid var(--stroke); border-radius: var(--r); background: var(--panel); backdrop-filter: blur(8px); padding: 34px; margin-top: 44px; }
.panel-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(125,255,196,0.45), rgba(46,166,240,0.35), transparent); opacity: .55; }
.pc-h { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.two-col { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; margin-top: 44px; }
.two-col .panel-card { margin-top: 0; }

/* ---------- Producten ---------- */
.prods { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.prod { position: relative; border: 1px solid var(--stroke); border-radius: var(--r); padding: 24px; background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); overflow: hidden; transition: transform .2s, border-color .25s; }
.prod:hover { transform: translateY(-5px); border-color: var(--stroke-2); }
.prod.green:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(125,255,196,0.13); }
.prod.blue:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(46,166,240,0.14); }
.prod.amber:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(255,178,26,0.14); }
.prod.cascade:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(67,224,191,0.15); }
.prod.dueback:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(239,64,58,0.15); }
.prod::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; opacity: .8; }
.prod.green::after { background: var(--grad); }
.prod.blue::after  { background: linear-gradient(120deg, #8fd2ff, #2ea6f0); }
.prod.amber::after { background: linear-gradient(120deg, #ffcf69, #ff9d00); }
.prod.cascade::after { background: linear-gradient(120deg, #43e0bf, #168f9b); }
.prod.dueback::after { background: linear-gradient(120deg, #ff756f, #ef403a); }
.picon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px; }
.prod.green .picon { color: var(--green); background: rgba(125,255,196,0.12); }
.prod.blue .picon  { color: var(--blue); background: rgba(46,166,240,0.14); }
.prod.amber .picon { color: #ffb21a; background: rgba(255,178,26,0.12); }
.prod.cascade .picon { color: #43e0bf; background: rgba(67,224,191,0.12); }
.prod.dueback .picon { color: #ff756f; background: rgba(239,64,58,0.12); }
.picon svg { width: 24px; height: 24px; }
.ptop { display: flex; align-items: center; gap: 10px; }
.pttl { font-family: var(--f-display); font-weight: 600; font-size: 24px; }
.pbadge { font-family: var(--f-mono); font-size: 10.5px; padding: 3px 9px; border-radius: 999px; background: rgba(125,255,196,0.16); color: var(--green); letter-spacing: 0.04em; }
.pbadge.faint { background: rgba(255,255,255,0.08); color: var(--muted); }
.psb { color: var(--muted); font-size: 13.5px; margin-top: 3px; }
.pdesc { color: var(--muted); font-size: 14px; margin-top: 12px; }
.ptags { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 18px; }
.ptag { font-family: var(--f-mono); font-size: 11px; color: var(--muted); padding: 4px 10px; border: 1px solid var(--stroke); border-radius: 7px; }
.popen { display: inline-flex; align-items: center; gap: 7px; color: var(--text); text-decoration: none; font-weight: 500; font-size: 14px; }
.popen svg { width: 17px; height: 17px; transition: transform .2s; }
.popen:hover svg { transform: translateX(4px); }

/* ---------- Constellatie-lijnen kern → planeten ---------- */
.u-links { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2; pointer-events: none; overflow: visible; }
.u-links line { stroke: rgba(125,255,196,0.22); stroke-width: 0.35; stroke-linecap: round; }
.u-links line[data-link="orion"] { stroke: rgba(46,166,240,0.24); }
.u-links line[data-link="dueback"] { stroke: rgba(239,64,58,0.24); }
.u-links line.faint { stroke: rgba(255,255,255,0.07); }

/* ---------- App-mockups in productkaarten ---------- */
.pmock { border: 1px solid var(--stroke); border-radius: 12px; overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(0,0,0,0.18)); }
.pmock-bar { display: flex; align-items: center; gap: 5px; padding: 8px 11px; border-bottom: 1px solid var(--stroke); }
.pmock-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.16); }
.pmock-bar span { margin-left: auto; font-family: var(--f-mono); font-size: 10px; color: var(--muted); letter-spacing: .04em; }
.pmock-body { padding: 13px; display: grid; gap: 9px; }
.pmock-row { display: flex; align-items: center; gap: 9px; }
.pmock-pill { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); flex: none; }
.pmock-pill.on { background: var(--green); box-shadow: 0 0 8px var(--green); }
.pmock-line { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.13); }
.pmock-line.w70 { width: 70%; } .pmock-line.w60 { width: 60%; } .pmock-line.w50 { width: 50%; }
.pmock-tag { margin-left: auto; font-family: var(--f-mono); font-size: 10px; color: var(--muted); }
.pmock-voice { align-content: center; min-height: 92px; }
.pmock-wave { display: flex; align-items: center; gap: 4px; height: 40px; }
.pmock-wave b { flex: 1; height: 30%; border-radius: 3px; background: linear-gradient(180deg, #8fd2ff, #2ea6f0); opacity: .85; animation: wave 1.3s ease-in-out infinite; }
.pmock-wave b:nth-child(2n) { animation-delay: .15s; } .pmock-wave b:nth-child(3n) { animation-delay: .3s; }
.pmock-wave b:nth-child(4n) { animation-delay: .45s; } .pmock-wave b:nth-child(5n) { animation-delay: .6s; }
@keyframes wave { 0%,100% { height: 22%; } 50% { height: 100%; } }
.pmock-bubble { height: 9px; width: 58%; border-radius: 5px; background: rgba(46,166,240,0.28); margin-top: 12px; }
.pmock-wind { min-height: 92px; align-content: center; }
.pmock-cascade { background: radial-gradient(circle at 50% 50%, rgba(67,224,191,.08), rgba(0,0,0,.2)); }
.pmock-dueback { background: radial-gradient(circle at 72% 0, rgba(239,64,58,.12), rgba(0,0,0,.2)); }
.dueback-ledger { gap: 7px; }
.dueback-value { display: flex; align-items: baseline; gap: 7px; margin-bottom: 3px; }
.dueback-value strong { color: #ff756f; font-family: var(--f-display); font-size: 24px; line-height: 1; }
.dueback-value span { color: var(--text); font-size: 12px; font-weight: 700; }
.dueback-row { display: grid; grid-template-columns: 7px 1fr auto; gap: 7px; align-items: center; color: var(--muted); font-size: 10px; }
.dueback-row i { width: 7px; height: 7px; border-radius: 50%; background: #43e0bf; box-shadow: 0 0 7px rgba(67,224,191,.45); }
.dueback-row.hot i { background: #ff756f; box-shadow: 0 0 7px rgba(239,64,58,.55); }
.dueback-row b { color: var(--text); font-family: var(--f-mono); font-weight: 500; }
.cascade-map { position: relative; min-height: 92px; display: block; }
.cascade-map span { position: absolute; z-index: 2; width: 14px; height: 14px; border: 1px solid #43e0bf; border-radius: 50%; background: #09252a; box-shadow: 0 0 10px rgba(67,224,191,.35); }
.cascade-map span:nth-child(1) { left: 12%; top: 20%; }
.cascade-map span:nth-child(2) { left: 43%; top: 8%; }
.cascade-map span:nth-child(3) { right: 12%; top: 24%; border-color: #ffb21a; }
.cascade-map span:nth-child(4) { left: 25%; bottom: 10%; border-color: #ff6b5f; }
.cascade-map span:nth-child(5) { right: 27%; bottom: 12%; }
.cascade-map i { position: absolute; height: 1px; background: rgba(67,224,191,.32); transform-origin: left; }
.cascade-map i:nth-of-type(1) { left: 18%; top: 28%; width: 31%; transform: rotate(-16deg); }
.cascade-map i:nth-of-type(2) { left: 49%; top: 18%; width: 34%; transform: rotate(17deg); }
.cascade-map i:nth-of-type(3) { left: 30%; top: 72%; width: 31%; transform: rotate(-23deg); }
.cascade-map i:nth-of-type(4) { left: 47%; top: 25%; width: 38%; transform: rotate(72deg); }
.wind-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.wind-kpis b { height: 24px; border: 1px solid rgba(54,198,244,.28); background: linear-gradient(180deg, rgba(54,198,244,.2), transparent); }
.wind-lines { height: 35px; display: grid; align-items: end; position: relative; overflow: hidden; }
.wind-lines::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, transparent 0 8px, rgba(255,255,255,.05) 8px 9px); }
.wind-lines i { position: absolute; left: 0; right: 0; height: 1px; transform-origin: left; }
.wind-lines i:nth-child(1) { top: 23px; background: #36c6f4; transform: rotate(-5deg); }
.wind-lines i:nth-child(2) { top: 17px; background: #ffb21a; transform: rotate(3deg); }
.wind-lines i:nth-child(3) { top: 27px; border-top: 1px dashed rgba(255,255,255,.35); }
.pbadge.free { color: #ffcf69; border-color: rgba(255,178,26,.4); background: rgba(255,178,26,.08); }
.pbadge.demo { color: #ff9d97; border-color: rgba(239,64,58,.42); background: rgba(239,64,58,.09); }

/* ---------- Throughline (experiment, violet) ---------- */
.planet.p-throughline .dotcore { background: radial-gradient(circle at 32% 28%, #efeaff, #8b7bf0 50%, #43308f 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 26px rgba(139,123,240,0.7), 0 0 60px rgba(110,168,254,0.4); }
.p-throughline { top: 30%; left: 86%; }
.planet.p-werfstrom .dotcore { background: radial-gradient(circle at 32% 28%, #fff3d6, #ffb21a 50%, #8a5a00 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 26px rgba(255,178,26,0.7), 0 0 60px rgba(255,178,26,0.4); }
.p-werfstrom { top: 58%; left: 22%; }
.prod.violet:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(139,123,240,0.16); }
.prod.violet::after { background: linear-gradient(120deg, #a99bff, #6ea8fe); }
.prod.violet .picon { color: #b9a9ff; background: rgba(139,123,240,0.13); }
.pbadge.exp { color: #c3b6ff; border-color: rgba(139,123,240,.45); background: rgba(139,123,240,.1); }
.pmock-throughline { background: radial-gradient(circle at 50% 40%, rgba(139,123,240,.10), rgba(0,0,0,.2)); }
.thr-list { gap: 8px; }
.thr-row { display: flex; align-items: center; gap: 8px; }
.thr-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; background: linear-gradient(135deg, #8b7bf0, #6ea8fe); box-shadow: 0 0 8px rgba(139,123,240,.6); }
.thr-line { height: 7px; border-radius: 999px; background: rgba(255,255,255,.12); }
.thr-line.w70 { width: 70%; } .thr-line.w60 { width: 60%; } .thr-line.w50 { width: 50%; }
.thr-tag { margin-left: auto; font-family: var(--f-mono); font-size: 10.5px; color: #c3b6ff; }

/* ---------- GLASSBOX (free tool, cyan/mint) ---------- */
.planet.p-glassbox .dotcore { background: radial-gradient(circle at 32% 28%, #e8fff6, #4cc2ff 48%, #0b5a6e 120%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3), 0 0 26px rgba(76,194,255,0.7), 0 0 60px rgba(125,255,196,0.4); }
.p-glassbox { top: 44%; left: 12%; }
.prod.glass:hover { box-shadow: 0 22px 50px rgba(0,0,0,0.45), 0 0 44px rgba(76,194,255,0.16); }
.prod.glass::after { background: linear-gradient(120deg, #7dffc4, #4cc2ff); }
.prod.glass .picon { color: #7dffc4; background: rgba(76,194,255,0.12); }
.pmock-glassbox { background: radial-gradient(circle at 50% 40%, rgba(76,194,255,.10), rgba(0,0,0,.2)); }
.glass-graph { position: relative; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding: 8px 4px; }
.gnode { width: 26px; height: 12px; border-radius: 3px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); }
.gnode.crit { border-color: #4cc2ff; box-shadow: 0 0 8px rgba(76,194,255,.5); }
.gnode.cyc { border-color: #ff5c6c; box-shadow: 0 0 8px rgba(255,92,108,.5); }
.gedge { width: 12px; height: 2px; background: rgba(255,255,255,.2); }
.gedge.crit { background: #4cc2ff; }
.gedge.cyc { background: #ff5c6c; }
.gcyc { margin-left: auto; font-family: var(--f-mono); font-size: 10px; color: #ff9aa3; border: 1px solid rgba(255,92,108,.4); border-radius: 4px; padding: 1px 5px; }
.blog-item.v .bdot { background: #8b7bf0; box-shadow: 0 0 10px rgba(139,123,240,.7); }

.blog-item.a .bdot { background: #ffb21a; box-shadow: 0 0 9px rgba(255,178,26,.7); }
.blog-item.c .bdot { background: #43e0bf; box-shadow: 0 0 9px rgba(67,224,191,.7); }
.blog-item.d .bdot { background: #ef403a; box-shadow: 0 0 9px rgba(239,64,58,.72); }
@media (prefers-reduced-motion: reduce) { .pmock-wave b { animation: none; height: 60%; } }

/* ---------- Build log ---------- */
.blog { display: flex; flex-direction: column; gap: 4px; }
.blog-item { display: grid; grid-template-columns: 22px 1fr auto; gap: 12px; align-items: start; padding: 13px 0; border-bottom: 1px solid var(--stroke); }
.blog-item:last-child { border-bottom: none; }
.bdot { width: 9px; height: 9px; border-radius: 50%; margin-top: 6px; }
.blog-item.g .bdot { background: var(--green); box-shadow: 0 0 10px var(--green); }
.blog-item.b .bdot { background: var(--blue); box-shadow: 0 0 10px var(--blue); }
.blog-item.n .bdot { background: var(--faint); }
.bt { font-weight: 500; font-size: 14.5px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.tagnew { font-family: var(--f-mono); font-size: 10px; padding: 2px 7px; border-radius: 6px; background: var(--grad); color: #04101c; }
.bdesc { color: var(--muted); font-size: 13px; margin-top: 3px; }
.bdate { font-family: var(--f-mono); font-size: 12px; color: var(--faint); white-space: nowrap; }
.blog-foot { display: flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 13px; color: var(--green); }
.blog-foot svg { width: 17px; height: 17px; }

/* ---------- Manifesto ---------- */
.mani { display: flex; flex-direction: column; }
.mani .quote { font-family: var(--f-display); font-size: 70px; line-height: 0.6; color: var(--blue); opacity: 0.5; height: 34px; }
.mani p { font-size: 17px; margin-top: 14px; max-width: 32ch; }
.mani p.dim { color: var(--muted); font-size: 14.5px; }

/* ---------- Pitch ---------- */
.pitch-q { font-family: var(--f-display); font-weight: 500; font-size: 22px; margin-bottom: 18px; }
.pf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 560px) { .pf-row { grid-template-columns: 1fr; } }
.pf-field { width: 100%; background: rgba(0,0,0,0.25); border: 1px solid var(--stroke); border-radius: 12px; padding: 13px 15px; color: var(--text); font-family: var(--f-body); font-size: 15px; margin-bottom: 12px; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.pf-field::placeholder { color: var(--faint); }
.pf-field:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(125,255,196,0.12); }
.pitch-done { text-align: center; padding: 20px 10px; }
.pitch-done .ck { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; background: rgba(125,255,196,0.14); color: var(--green); }
.pitch-done .ck svg { width: 26px; height: 26px; }
.pitch-done h4 { font-family: var(--f-display); font-weight: 600; font-size: 22px; }
.pitch-done p { color: var(--muted); margin-top: 8px; max-width: 34ch; margin-inline: auto; }

/* ---------- Footer ---------- */
.foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--stroke); font-size: 13px; color: var(--muted); }
.foot .l { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.foot .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }
.foot .r { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.foot .r a { color: var(--muted); text-decoration: none; transition: color .2s; }
.foot .r a:hover { color: var(--text); }
.foot-status { display: inline-flex; align-items: center; gap: 7px; }
.foot-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ---------- Reveals ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero { grid-template-columns: 1fr; }
  .universe-wrap { order: -1; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .app { grid-template-columns: 1fr; }
  .sidebar { position: relative; height: auto; flex-direction: row; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 16px 18px; }
  .nav { flex-direction: row; flex-wrap: wrap; margin-top: 0; gap: 2px; }
  .nav a { padding: 8px 11px; font-size: 13.5px; }
  .nav a.active::before { display: none; }
  .side-foot { margin-top: 0; flex-direction: row; align-items: center; gap: 14px; }
  .side-status { display: none; }
  .prods { grid-template-columns: 1fr; }
  .live-card { position: relative; bottom: auto; right: auto; margin: 22px auto 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 40px; }
  .panel-card { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit, .pulse-ring, .planet, .side-status .row.pulse i { animation: none !important; }
  .reveal { transition: none; opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ===== Subpagina's (gids, educatie) ===== */
body.subpage { display: block; }
.sub-top { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px clamp(16px,4vw,40px); background: rgba(7,16,28,.72); backdrop-filter: blur(12px); border-bottom: 1px solid var(--stroke); }
.sub-top .side-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.sub-top-r { display: flex; align-items: center; gap: 14px; }
.back-link { color: var(--muted); text-decoration: none; font-size: 14px; white-space: nowrap; }
.back-link:hover { color: var(--text); }
.sub-main { max-width: 920px; margin: 0 auto; padding: clamp(28px,5vw,52px) clamp(16px,4vw,40px) 40px; }
.sub-foot { max-width: 920px; margin-left: auto; margin-right: auto; }

.g-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-mono); font-size: 12.5px; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.g-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); }
.g-head { margin-bottom: 30px; }
.g-title { font-family: var(--f-display); font-weight: 600; font-size: clamp(30px,5vw,46px); margin: 12px 0 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.g-allsub { color: var(--muted); font-size: 16px; margin-top: 14px; max-width: 62ch; line-height: 1.6; }
.back-link2 { display: inline-block; color: var(--muted); text-decoration: none; font-size: 13.5px; margin-bottom: 20px; }
.back-link2:hover { color: var(--text); }

.g-grid { display: grid; gap: 14px; margin-bottom: 28px; }
.g-block { background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--r); padding: 22px 24px; }
.g-block h2 { font-family: var(--f-display); font-weight: 600; font-size: 18px; margin: 0 0 8px; color: var(--green); }
.g-block p { color: var(--text); font-size: 15.5px; line-height: 1.65; margin: 0; }
.g-cta { margin-bottom: 38px; }

.g-fb-sub { color: var(--muted); font-size: 14.5px; margin: -6px 0 18px; }
.fb-done { color: var(--green); font-size: 15px; padding: 12px 0; }
.g-other { margin-top: 26px; color: var(--faint); font-size: 14px; display: flex; gap: 10px 14px; flex-wrap: wrap; align-items: center; }
.g-other a { color: var(--blue); text-decoration: none; }
.g-other a:hover { text-decoration: underline; }

.g-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.g-card { display: flex; flex-direction: column; gap: 9px; padding: 22px; border: 1px solid var(--stroke); border-radius: var(--r); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); text-decoration: none; transition: transform .2s, border-color .25s; }
.g-card:hover { transform: translateY(-4px); border-color: var(--stroke-2); }
.gc-name { font-family: var(--f-display); font-weight: 600; font-size: 21px; color: var(--text); }
.gc-what { color: var(--muted); font-size: 13.8px; line-height: 1.55; }
.gc-go { color: var(--blue); font-family: var(--f-mono); font-size: 12.5px; margin-top: auto; }

.edu-ladder { display: flex; flex-direction: column; gap: 16px; }
.edu-level { display: grid; grid-template-columns: 64px 1fr; gap: 18px; background: var(--panel); border: 1px solid var(--stroke); border-radius: var(--r); padding: 22px 24px; }
.edu-num { font-family: var(--f-display); font-weight: 700; font-size: 40px; line-height: 1; color: transparent; background: var(--grad); -webkit-background-clip: text; background-clip: text; }
.edu-body h2 { font-family: var(--f-display); font-weight: 600; font-size: 21px; margin: 0 0 8px; }
.edu-sum { color: var(--text); font-size: 15px; margin: 0 0 8px; }
.edu-sum b { color: var(--green); }
.edu-text { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; }
.edu-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.edu-soon { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-mono); font-size: 12.5px; color: var(--faint); border: 1px dashed var(--stroke); border-radius: 999px; padding: 8px 14px; }

.pacts { display: flex; gap: 10px 16px; flex-wrap: wrap; align-items: center; }
.popen-ghost { color: var(--muted) !important; opacity: .92; }
.popen-ghost:hover { color: var(--text) !important; }
.popen-ghost svg { width: 16px; height: 16px; }

@media (max-width: 620px) { .g-cards { grid-template-columns: 1fr; } .edu-level { grid-template-columns: 44px 1fr; gap: 12px; } }
