diff --git a/index.html b/index.html
index 4c318e4..8525851 100644
--- a/index.html
+++ b/index.html
@@ -2374,20 +2374,6 @@ function renderIdeas() {
}).join('');
}
-// ── INIT ──────────────────────────────────────────────────────────────────
-if (window.location.protocol === 'file:') {
- document.getElementById('proto-banner').style.display = 'flex';
-}
-loadGroups();
-loadBoardOrder();
-seedCards();
-loadState();
-renderSidebar();
-loadIdeas();
-renderIdeas();
-show('doener');
-setView('overview');
-
// ── CARD SEEDER ──────────────────────────────────────────────────────────────
const CARD_SEED_VERSION = '2026-05-20-b';
function seedCards() {
@@ -2438,6 +2424,20 @@ function importState(input) {
};
reader.readAsText(file);
}
+
+// ── INIT ──────────────────────────────────────────────────────────────────
+if (window.location.protocol === 'file:') {
+ document.getElementById('proto-banner').style.display = 'flex';
+}
+loadGroups();
+loadBoardOrder();
+seedCards();
+loadState();
+renderSidebar();
+loadIdeas();
+renderIdeas();
+show('doener');
+setView('overview');