From 3273a7020e6789084cabd4d4f233b0094ca7b5d7 Mon Sep 17 00:00:00 2001 From: justin Date: Wed, 29 Apr 2026 09:44:41 -0500 Subject: [PATCH] Rewrite Q5 to ask where customers are located, explain state PUC nexus State PUC registration is triggered by customer location, not incorporation state. Telecom services use local infrastructure (switches, numbers, towers) creating attributional nexus. Rewritten Q5 explains this and provides guidance: ~27 states need full certification, ~9 registration only, ~5 minimal. Shows PUC info box for multi-state/nationwide selections. Co-Authored-By: Claude Opus 4.6 (1M context) --- .../order/fcc-carrier-registration/index.html | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/site/public/order/fcc-carrier-registration/index.html b/site/public/order/fcc-carrier-registration/index.html index 3f1e250..8d90d63 100644 --- a/site/public/order/fcc-carrier-registration/index.html +++ b/site/public/order/fcc-carrier-registration/index.html @@ -134,12 +134,19 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px - + @@ -440,12 +447,14 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px }); }); - // ── Q5: Operating states ── + // ── Q5: Customer geography ── document.querySelectorAll('[data-states]').forEach(function(btn) { btn.addEventListener('click', function() { document.querySelectorAll('[data-states]').forEach(function(b) { b.classList.remove('selected'); }); btn.classList.add('selected'); wizard.operatingStates = btn.dataset.states; + // Show PUC info for multi-state or nationwide + document.getElementById('state-puc-explain').classList.toggle('hidden', btn.dataset.states === '1'); document.getElementById('q6').classList.remove('hidden'); }); });