diff --git a/src/deck/components/MyceliumNetwork.vue b/src/deck/components/MyceliumNetwork.vue
index f9a624b..b78771d 100644
--- a/src/deck/components/MyceliumNetwork.vue
+++ b/src/deck/components/MyceliumNetwork.vue
@@ -2,12 +2,12 @@
/**
* The core metaphor, as an animated SVG.
*
- * Underground → the mycelium = the shared core stack / custom software.
- * Unseen, always working, connects every entity.
- * Flowers → the three entities people actually experience:
- * • Archipelago (city center) — a permanent bloom
- * • SolLunar Society (pop-up fest.) — ephemeral cluster
- * • Chateau du Faune (farm center) — a permanent bloom
+ * Underground → Archipelago = the shared backbone / custom software.
+ * Unseen, always working, connects every entity (the mycelium).
+ * Flowers → the three experiences people actually engage with:
+ * • SolLunar Punk Society (city center) — a permanent bloom
+ * • Pop-up Festivals (travelling) — ephemeral cluster
+ * • Chateau du Faune (farm center) — a permanent bloom
* Ghost flowers→ once the mycelium runs, new locations & festivals sprout
* cheaply, anywhere in the world.
*
@@ -72,14 +72,15 @@ function thread([a, b]: [number, number], i: number) {
return `M ${ax} ${ay} Q ${mx} ${my} ${bx} ${by}`
}
-const arch = entityById('archipelago')
-const sol = entityById('solunar')
-const cha = entityById('chateau')
+const sol = entityById('sollunar') // city
+const fest = entityById('festivals') // travelling
+const cha = entityById('chateau') // farm
-// surface flowers: three entities + two faint "future" ones
+// surface flowers: the three experiences + two faint "future" ones.
+// (Archipelago is the mycelium itself — the network below, not a flower.)
const flowers = [
- { x: 230, kind: 'bloom', color: 'var(--color-pine-400)', name: arch.name, tag: arch.role },
- { x: 500, kind: 'festival', color: 'var(--color-indigo-400)', name: sol.name, tag: sol.role },
+ { x: 230, kind: 'bloom', color: 'var(--color-indigo-400)', name: sol.name, tag: sol.role },
+ { x: 500, kind: 'festival', color: 'var(--color-rose-400)', name: fest.name, tag: fest.role },
{ x: 770, kind: 'bloom', color: 'var(--color-clay-400)', name: cha.name, tag: cha.role },
{ x: 100, kind: 'ghost' },
{ x: 900, kind: 'ghost' },
@@ -274,15 +275,15 @@ const festivalCaps = [
- The mycelium is the product. - One core stack runs unseen beneath every entity — members feel it, they don’t see it. + Archipelago is the mycelium. + One shared backbone runs unseen beneath every entity — members feel it, they don’t see it.