Pivot CRTC offering on FCC carrier page for A-Z wholesale carriers

The international (Q6) CRTC block was framed as a generic upsell (Expand
This commit is contained in:
justin 2026-06-02 13:26:39 -05:00
parent c9d76545b3
commit 1584a6692b
52 changed files with 6622 additions and 7 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

View file

@ -177,18 +177,35 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px
<strong>International Section 214 Authorization</strong><br>
The FCC requires a separate International Section 214 license to provide telecommunications services between the US and foreign points. This applies to international voice termination, international toll-free, global SIP trunking, and international data transit. Domestic-only carriers do not need this.
</div>
<div style="margin-top:.6rem;padding:.75rem;background:linear-gradient(135deg,#fef2f2,#fff1f2);border:2px solid #fca5a5;border-radius:10px">
<!-- CRTC block, default (general international) framing -->
<div id="crtc-general" style="margin-top:.6rem;padding:.75rem;background:#f8fafc;border:1px solid #e2e8f0;border-radius:10px">
<div style="display:flex;align-items:center;gap:.5rem;margin-bottom:.4rem">
<img src="/images/flags/canada.png" alt="Canada" style="width:24px;height:auto;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15)">
<strong style="font-size:.9rem;color:#991b1b">Expand into Canada?</strong>
<strong style="font-size:.9rem;color:#1e3a5f">Serving or terminating to Canada?</strong>
</div>
<p style="font-size:.82rem;color:#7f1d1d;margin-bottom:.5rem;line-height:1.5">
If you plan to terminate voice traffic to Canada, sell services to Canadian customers, or operate infrastructure in Canada, you need a <strong>CRTC registration</strong> (Canada's FCC equivalent). Canadian carriers get direct access to Canadian DIDs, local number portability, and CRTC interconnection — often at lower termination rates than routing through a US-based international gateway.
<p style="font-size:.82rem;color:#374151;margin-bottom:.5rem;line-height:1.5">
To terminate voice traffic to Canada, sell to Canadian customers, or operate Canadian infrastructure, you need a <strong>CRTC registration</strong> (Canada's FCC equivalent) — not a US International 214. Registered Canadian carriers get direct access to Canadian DIDs, local number portability, and CRTC interconnection, usually at lower termination rates than routing through a US-based international gateway.
</p>
<p style="font-size:.8rem;color:#9a3412;margin-bottom:.5rem">
Our Canada CRTC package includes BC incorporation, CRTC telecom registration, and a .ca domain — everything you need to operate as a licensed Canadian carrier.
<p style="font-size:.8rem;color:#6b7280;margin-bottom:.5rem">
Our Canada CRTC package includes BC incorporation, CRTC telecom registration, and a Canadian registered office — everything you need to operate as a licensed Canadian carrier.
</p>
<a href="/order/canada-crtc" target="_blank" style="display:inline-block;padding:.4rem 1rem;background:#dc2626;color:#fff;font-weight:600;font-size:.82rem;border-radius:6px;text-decoration:none">Learn More — Canada CRTC ($3,899) &rarr;</a>
<a href="/order/canada-crtc" target="_blank" style="display:inline-block;padding:.4rem 1rem;background:#1e3a5f;color:#fff;font-weight:600;font-size:.82rem;border-radius:6px;text-decoration:none">Canada CRTC Registration ($3,899) &rarr;</a>
</div>
<!-- CRTC block, A-Z wholesale framing (shown when wholesale-only + international voice) -->
<div id="crtc-az" class="hidden" style="margin-top:.6rem;padding:.85rem;background:linear-gradient(135deg,#eff6ff,#f0f9ff);border:2px solid #1e3a5f;border-radius:10px">
<div style="display:flex;align-items:center;gap:.5rem;margin-bottom:.4rem">
<img src="/images/flags/canada.png" alt="Canada" style="width:24px;height:auto;border-radius:3px;box-shadow:0 1px 2px rgba(0,0,0,.15)">
<strong style="font-size:.92rem;color:#1e3a5f">Doing A-Z wholesale? Register as a Canadian carrier instead.</strong>
</div>
<p style="font-size:.82rem;color:#1e3a5f;margin-bottom:.5rem;line-height:1.5">
For an A-Z wholesale operation, a US-based International 214 just makes you another international gateway buying Canadian minutes at markup. A <strong>CRTC registration</strong> makes you a Canadian carrier in your own right — direct access to Canadian DID inventory, local number portability, and CRTC interconnection, with termination rates wholesalers actually compete on.
</p>
<p style="font-size:.8rem;color:#1e40af;margin-bottom:.5rem;line-height:1.5">
Most A-Z wholesalers expanding north do this as a registered domestic reseller — no Canadian citizenship required. Our package is fully turnkey: BC incorporation, CRTC telecom registration, and a Canadian registered office.
</p>
<a href="/order/canada-crtc" target="_blank" style="display:inline-block;padding:.45rem 1.1rem;background:#1e3a5f;color:#fff;font-weight:600;font-size:.82rem;border-radius:6px;text-decoration:none">Canada CRTC Registration ($3,899) &rarr;</a>
</div>
</div>
</div>
@ -504,12 +521,27 @@ select:focus,input:focus{outline:none;border-color:#1e3a5f;box-shadow:0 0 0 2px
});
// ── Q6: International services ──
function updateCrtcFraming() {
// A-Z wholesale profile: wholesale-only carrier offering international voice.
// For these carriers CRTC registration is the natural offering, not an upsell —
// they'd otherwise just be a US gateway reselling Canadian minutes at markup.
var hasVoice = wizard.serviceTypes.indexOf('voice') >= 0;
var wholesaleOnly = wizard.customerType === 'wholesale';
var isAzWholesale = wizard.international && hasVoice && wholesaleOnly;
var gen = document.getElementById('crtc-general');
var az = document.getElementById('crtc-az');
if (gen && az) {
gen.classList.toggle('hidden', isAzWholesale);
az.classList.toggle('hidden', !isAzWholesale);
}
}
document.querySelectorAll('[data-intl]').forEach(function(btn) {
btn.addEventListener('click', function() {
document.querySelectorAll('[data-intl]').forEach(function(b) { b.classList.remove('selected'); });
btn.classList.add('selected');
wizard.international = btn.dataset.intl === 'yes';
document.getElementById('intl-explain').classList.toggle('hidden', !wizard.international);
updateCrtcFraming();
});
});

View file

@ -0,0 +1,153 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>A Note to the Industry</title>
</head>
<body style="margin:0;padding:0;background:#eef0f3;font-family:Arial,sans-serif;">
<table width="100%" cellpadding="0" cellspacing="0" style="background:#eef0f3;padding:20px 0;">
<tr><td align="center">
<table width="620" cellpadding="0" cellspacing="0" style="width:620px;max-width:620px;background:#ffffff;border-radius:8px;overflow:hidden;box-shadow:0 2px 8px rgba(0,0,0,0.08);">
<!-- Header -->
<tr>
<td style="background:#1a2744;padding:18px 40px 14px;">
<table cellpadding="0" cellspacing="0" border="0"><tr>
<td style="vertical-align:middle;padding-right:12px;"><img src="https://performancewest.net/images/logo.png" width="90" alt="Performance West" style="display:block;width:90px;height:auto;"></td>
<td style="vertical-align:middle;border-left:1px solid #2d4e78;padding-left:12px;"><span style="color:#8fa8d0;font-family:Arial,sans-serif;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;">Telecom Compliance</span></td>
</tr></table>
</td>
</tr>
<tr><td style="background:#059669;height:3px;font-size:0;line-height:0;">&nbsp;</td></tr>
<!-- Body -->
<tr>
<td style="padding:32px 40px;">
<h1 style="margin:0 0 8px;font-size:22px;font-weight:700;color:#111827;">A Note to the Industry</h1>
<p style="margin:0 0 24px;font-size:15px;color:#6b7280;line-height:1.6;">From Performance West &mdash; to the carriers we serve and support.</p>
<!-- Apology section -->
<div style="background:#f0f9ff;border:1px solid #bae6fd;border-radius:8px;padding:20px 24px;margin-bottom:28px;">
<p style="margin:0 0 12px;font-size:15px;color:#0c4a6e;line-height:1.7;">We want to start by apologizing for the noise. We know your inbox is already full, and the last thing you need is a back-and-forth between compliance providers. That was never our intention.</p>
<p style="margin:0;font-size:15px;color:#0c4a6e;line-height:1.7;">We reached out because we identified real, specific deficiencies in FCC filings &mdash; deficiencies that have led to over 1,000 carriers being removed from the Robocall Mitigation Database. Our goal was to help. We are sorry that it has created frustration, and we understand if you are tired of hearing about it.</p>
</div>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">That said, a law firm &mdash; <a href="https://commlawgroup.com/2026/warning-do-not-let-automated-fcc-deficiency-solicitations-create-new-compliance-risk/" style="color:#1e3a5f;font-weight:600;">The CommLaw Group</a> &mdash; recently mass-emailed the entire RMD list warning carriers not to respond to compliance outreach like ours. Their claims are factually wrong, self-serving, and &mdash; if followed &mdash; could leave your company exposed to FCC enforcement. That demands a response.</p>
<!-- Point 1 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">They Embraced AI on May 13. They Attacked It on May 20.</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">On May 13, The CommLaw Group announced they were integrating artificial intelligence into their legal practice to &ldquo;accelerate research, organize facts, identify patterns, and summarize complex materials.&rdquo; They launched an AI practice group and pledged technology-driven efficiency.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;"><strong style="color:#111827;">Seven days later</strong>, they warned carriers to distrust anyone using &ldquo;automated or semi-automated&rdquo; tools to review public FCC filings. Apparently when a law firm uses AI to bill you more efficiently, that is progress. When it makes compliance services affordable enough that you do not need a law firm, that is a threat to public safety.</p>
<!-- Point 2 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">They Did Exactly What They Accuse Us Of</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Stop and consider what The CommLaw Group actually did: they scraped the same public FCC Robocall Mitigation Database, pulled the same contact email addresses, and mass-emailed the entire list &mdash; to warn you about companies that mass-email the RMD list.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Their article accuses compliance firms of using &ldquo;penalties to manufacture urgency.&rdquo; Their own email warns of &ldquo;severe enforcement consequences&rdquo; and filings that could &ldquo;become an admission that increases exposure.&rdquo; That is fear-mongering &mdash; the exact thing they claim to be protecting you from. The only difference is that our emails identify specific, fixable problems in your filing. Theirs just tell you to be afraid and call a lawyer.</p>
<!-- Point 3 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">If Their Clients&rsquo; Filings Were in Order, Our Emails Would Be Irrelevant</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">No carrier with a complete, current RMD filing would feel urgency from our outreach. You would check your status, confirm everything is in compliance, and move on. The fact that this article was mass-emailed to the entire RMD list &mdash; not just their own clients &mdash; tells you what you need to know.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">If you are paying a telecom law firm to handle your regulatory compliance, you should ask them one question: <strong style="color:#111827;">why did a compliance startup find problems in your filing before your own lawyers did?</strong></p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Instead of writing blog posts attacking the people who found the problems, maybe go fix the problems. Your clients are paying you to keep them compliant &mdash; not to write press releases about why compliance does not matter.</p>
<!-- Point 3 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">&ldquo;Don&rsquo;t Fix Your Filing&rdquo; Is Dangerous Advice</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Their article claims that correcting an RMD filing could &ldquo;become an admission that increases exposure.&rdquo; The FCC requires carriers to keep filings current and accurate. A carrier that knows its filing is deficient and deliberately leaves it uncorrected &mdash; on anyone&rsquo;s advice &mdash; faces far greater risk than one that promptly updates it.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">The FCC does not punish carriers for improving their filings. It punishes carriers for false information and for failing to implement the programs they describe. Over 1,000 carriers have already been removed from the database for deficient filings. Leaving a known problem in place does not protect you &mdash; it protects the law firm&rsquo;s ability to charge you emergency rates when the FCC finally comes knocking.</p>
<!-- Point 4 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">Every Filing We Prepare Requires Client Approval</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Their article warns against filing &ldquo;lengthy KYC procedures&rdquo; a carrier has not actually implemented. We agree &mdash; which is exactly why every filing we prepare goes through a mandatory client review. You review the filing. You confirm it reflects your actual operations. You sign a declaration under penalty of perjury. We do not submit anything without your explicit authorization.</p>
<!-- Point 5 -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">Public Data Is Public</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">The FCC Robocall Mitigation Database is <strong style="color:#111827;">public by design</strong>. The FCC built it so that carriers, the industry, and the public can verify compliance. That is its stated purpose. If a law firm considers it a &ldquo;red flag&rdquo; that someone actually read a public regulatory database, the concern is not about your safety. It is about the fact that we did their job for them &mdash; faster, and for a fraction of the price.</p>
<!-- Process graphic -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">Our Process: Transparent, Auditable, Client-Controlled</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">The CommLaw Group implies we file documents recklessly. Here is our actual process:</p>
<img src="https://performancewest.net/images/compliance-process.png" alt="Performance West Compliance Process" width="580" style="display:block;width:100%;max-width:580px;height:auto;border-radius:8px;border:1px solid #e5e7eb;margin:0 0 16px;" />
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Every step is auditable. Every filing is client-approved. Every document is in your portal. Nothing is filed without your explicit written authorization and perjury declaration. This is not a black box &mdash; it is a documented, repeatable process with more safeguards than most law firms offer.</p>
<!-- Point 6: AI benchmarks -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">Our Technology Outperforms the Average Attorney &mdash; on Their Own Exams</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">The CommLaw Group implies automated compliance review is unreliable. The benchmarks say otherwise. Our analysis is powered by Anthropic&rsquo;s Claude Opus &mdash; the same AI that elite law firms use through <a href="https://www.harvey.ai/blog/opus-4-6-now-live-in-harvey" style="color:#1e3a5f;font-weight:600;">Harvey AI</a> (Allen &amp; Overy, Ashurst, O&rsquo;Melveny).</p>
<table width="100%" cellpadding="0" cellspacing="0" style="margin:16px 0 20px;border:1px solid #e5e7eb;border-radius:8px;overflow:hidden;font-size:14px;">
<tr style="background:#f9fafb;">
<td style="padding:10px 16px;font-weight:700;color:#1a2744;border-bottom:1px solid #e5e7eb;">Benchmark</td>
<td style="padding:10px 16px;font-weight:700;color:#1a2744;border-bottom:1px solid #e5e7eb;">Score</td>
</tr>
<tr>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#374151;">Bar Exam (MBE) &mdash; 200 NCBE questions</td>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#059669;font-weight:700;">88.5&ndash;93.5% accuracy</td>
</tr>
<tr>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#374151;">BigLaw Bench (Harvey AI) &mdash; litigation &amp; contracts</td>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#059669;font-weight:700;">90.2% &mdash; #1 of all models</td>
</tr>
<tr>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#374151;">Perfect scores on litigation &amp; transactional tasks</td>
<td style="padding:10px 16px;border-bottom:1px solid #f3f4f6;color:#059669;font-weight:700;">40% of all tasks</td>
</tr>
<tr>
<td style="padding:10px 16px;color:#374151;">GDPval-AA (legal &amp; finance knowledge work)</td>
<td style="padding:10px 16px;color:#059669;font-weight:700;">+144 Elo vs. GPT-5.2</td>
</tr>
</table>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">For context: MIT researchers found that GPT-4&rsquo;s widely-hyped bar exam performance was actually the <strong style="color:#111827;">48th percentile</strong> among first-time test takers on essays (<a href="https://www.livescience.com/technology/artificial-intelligence/gpt-4-didnt-ace-the-bar-exam-after-all-mit-research-suggests-it-barely-passed" style="color:#1e3a5f;">Live Science</a>). Claude Opus scores in the <strong style="color:#059669;">90th+ percentile</strong> on the same class of questions. In one benchmark, it produced over <strong style="color:#111827;">120 inline citations</strong>, each tied to specific source passages. This is not a chatbot guessing &mdash; it reads regulatory filings with a thoroughness no human reviewer can match at scale.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">The world&rsquo;s most prestigious law firms already trust this technology for contract analysis, motion drafting, and due diligence. The suggestion that it cannot be trusted to review a two-page FCC filing is not a serious argument. It is a billing strategy.</p>
<p style="margin:0 0 4px;font-size:12px;color:#9ca3af;">Sources: <a href="https://www.harvey.ai/blog/opus-4-6-now-live-in-harvey" style="color:#9ca3af;">Harvey AI</a> &middot; <a href="https://www.anthropic.com/news/claude-opus-4-6" style="color:#9ca3af;">Anthropic</a> &middot; <a href="https://www.lawnext.com/2026/03/ai-legal-research-startup-descrybe-launches-legal-reasoning-tool-says-it-outperforms-chatgpt-claude-and-gemini-on-bar-exam-benchmark.html" style="color:#9ca3af;">LawNext</a> &middot; <a href="https://www.livescience.com/technology/artificial-intelligence/gpt-4-didnt-ace-the-bar-exam-after-all-mit-research-suggests-it-barely-passed" style="color:#9ca3af;">Live Science / MIT</a></p>
<!-- Legal notice -->
<h2 style="margin:28px 0 10px;font-size:17px;font-weight:700;color:#1a2744;">A Note on Professional Responsibility</h2>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Under <a href="https://www.americanbar.org/groups/professional_responsibility/publications/model_rules_of_professional_conduct/rule_7_1_communication_concerning_a_lawyer_s_services/" style="color:#1e3a5f;font-weight:600;">ABA Model Rule 7.1</a>, a lawyer shall not make false or misleading communications about legal services, and any comparison with competing services must be &ldquo;factually substantiated.&rdquo; The CommLaw Group&rsquo;s article claims that correcting an RMD filing could &ldquo;become an admission that increases exposure&rdquo; &mdash; without citing a single case, enforcement action, or FCC proceeding where a corrected filing created liability for a carrier.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Under the <a href="https://www.bonalaw.com/insights/legal-resources/do-i-have-a-lanham-act-claim-against-my-competitor-for-false-advertising" style="color:#1e3a5f;">Lanham Act</a> (15 U.S.C. &sect; 1125(a)), commercial disparagement &mdash; publishing false or misleading statements about a competitor&rsquo;s services that cause economic harm &mdash; is actionable with damages up to <strong style="color:#111827;">three times actual losses</strong>. Under state law, <a href="https://www.minclaw.com/tortious-interference/" style="color:#1e3a5f;">tortious interference</a> with prospective business relations applies when a party intentionally disrupts another company&rsquo;s customer relationships through wrongful means.</p>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">Virginia&rsquo;s Rules of Professional Conduct &mdash; which govern The CommLaw Group as a McLean, Virginia firm &mdash; mirror these standards. <a href="https://vsb.org/Site/Site/about/rules-regulations/rpc-part6-sec2.aspx" style="color:#1e3a5f;">Rule 8.4(c)</a> prohibits conduct involving &ldquo;dishonesty, fraud, deceit or misrepresentation.&rdquo;</p>
<div style="margin:16px 0 24px;padding:16px 20px;background:#fef2f2;border:1px solid #fecaca;border-radius:8px;">
<p style="margin:0;font-size:14px;color:#991b1b;line-height:1.6;"><strong>We would prefer to compete on the merits.</strong> If that is not possible, we are prepared to protect our business through every available legal channel.</p>
</div>
<!-- CTA -->
<div style="margin:32px 0 24px;padding:24px;background:#f9fafb;border:1px solid #e5e7eb;border-radius:8px;text-align:center;">
<p style="margin:0 0 8px;font-size:16px;font-weight:700;color:#111827;">Check your own compliance status &mdash; FREE</p>
<p style="margin:0 0 16px;font-size:14px;color:#6b7280;">No purchase required. No obligation. No billable hours. Just the facts.</p>
<a href="https://performancewest.net/tools/fcc-compliance-check" style="display:inline-block;background:#1e3a5f;color:#ffffff;padding:12px 32px;border-radius:8px;text-decoration:none;font-size:15px;font-weight:600;">Run a FREE Compliance Check</a>
</div>
<p style="margin:0 0 16px;font-size:15px;color:#374151;line-height:1.7;">You can work with us, with a law firm, or with any qualified professional. What you should not do is leave a known-deficient filing in place because someone told you that fixing it is more dangerous than ignoring it.</p>
<!-- Closing -->
<div style="margin:28px 0 0;padding-top:20px;border-top:1px solid #e5e7eb;">
<p style="margin:0 0 8px;font-size:15px;color:#374151;line-height:1.7;">We are here to help the industry &mdash; not to create noise. If you have any questions or want to discuss your specific compliance situation, we are always available.</p>
<p style="margin:16px 0 0;font-size:15px;color:#374151;">
<strong style="color:#111827;">Performance West Inc.</strong><br>
<a href="mailto:info@performancewest.net" style="color:#1e3a5f;">info@performancewest.net</a> &middot;
<a href="tel:18884110383" style="color:#1e3a5f;">1-888-411-0383</a>
</p>
<p style="margin:12px 0 0;font-size:13px;color:#9ca3af;">Read the full response: <a href="https://performancewest.net/blog/response-to-commlaw-group" style="color:#6b7280;">performancewest.net/blog/response-to-commlaw-group</a></p>
</div>
</td>
</tr>
<!-- Footer -->
<tr>
<td style="background:#f4f5f7;border-top:1px solid #e8ecf0;padding:16px 40px;text-align:center;">
<img src="https://performancewest.net/images/logo.png" width="60" alt="Performance West" style="display:block;margin:0 auto 8px;width:60px;height:auto;opacity:0.5;">
<p style="margin:0;font-family:Arial,sans-serif;font-size:11px;color:#9ca3af;">
Performance West Inc. &middot; <a href="https://performancewest.net" style="color:#9ca3af;">performancewest.net</a> &middot; 1-888-411-0383
</p>
</td>
</tr>
</table>
</td></tr>
</table>
</body>
</html>

View file

@ -0,0 +1,151 @@
---
import Base from "../../layouts/Base.astro";
---
<Base
title="Response to CommLaw Group"
description="Performance West responds to The CommLaw Group's claims about automated FCC compliance services."
>
<main class="max-w-3xl mx-auto px-4 py-16">
<p class="text-sm text-gray-500 mb-2">May 20, 2026</p>
<h1 class="text-3xl font-bold text-pw-navy mb-2">Response to The CommLaw Group</h1>
<p class="text-lg text-gray-500 mb-10 border-b border-gray-200 pb-8">Addressing claims made in "Warning: Do Not Let Automated FCC Deficiency Solicitations Create New Compliance Risk"</p>
<article class="prose prose-lg max-w-none text-gray-700" style="line-height:1.8;">
<h2 class="text-xl font-bold text-pw-navy mt-8 mb-4">When "Automated" Is Innovation for Lawyers but a Threat When Anyone Else Does It</h2>
<p>On May 13, 2026, The CommLaw Group <a href="https://commlawgroup.com/2026/the-commlaw-group-reaffirms-its-founding-vision-and-announces-a-renewed-client-service-model-for-the-ai-era/" target="_blank" rel="noopener" class="text-blue-700 underline">published a press release</a> announcing its embrace of artificial intelligence. The firm committed to &ldquo;thoughtfully and responsibly integrate artificial intelligence into the delivery of legal services,&rdquo; promising AI would &ldquo;accelerate research, organize facts, identify patterns, and summarize complex materials.&rdquo; They launched a new practice group &mdash; VisionAI+ &mdash; dedicated to helping clients adopt AI. They pledged to move toward &ldquo;alternative and value-based service models&rdquo; powered by technology.</p>
<p>One week later, on May 20, the same firm <a href="https://commlawgroup.com/2026/warning-do-not-let-automated-fcc-deficiency-solicitations-create-new-compliance-risk/" target="_blank" rel="noopener" class="text-blue-700 underline">mass-emailed the FCC&rsquo;s Robocall Mitigation Database list</a> warning carriers to beware of &ldquo;automated or semi-automated&rdquo; compliance services that scan public FCC filings to identify deficiencies. They characterized the use of technology to review publicly available regulatory data as a red flag.</p>
<p><strong>So which is it?</strong></p>
<p>Apparently when a law firm uses AI to bill you more efficiently, that is progress. When it makes compliance services affordable enough that you do not need a law firm, that is a threat to public safety. The only difference is who benefits &mdash; and who bills for it.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">They Did Exactly What They Accuse Us Of</h2>
<p>Stop and consider what The CommLaw Group actually did: they scraped the same public FCC Robocall Mitigation Database, pulled the same contact email addresses, and mass-emailed the entire list &mdash; to warn you about companies that mass-email the RMD list.</p>
<p>Their article accuses compliance firms of using &ldquo;penalties to manufacture urgency.&rdquo; Their own email warns of &ldquo;severe enforcement consequences&rdquo; and filings that could &ldquo;become an admission that increases exposure.&rdquo; That is fear-mongering &mdash; the exact thing they claim to be protecting you from. The only difference is that our emails identify specific, fixable problems in your filing. Theirs just tell you to be afraid and call a lawyer.</p>
<p>If The CommLaw Group spent half the time they invested in writing that article actually reviewing their own clients&rsquo; RMD filings, they might have caught the deficiencies before we did.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">If Their Clients' Filings Were in Order, Our Emails Would Be Irrelevant</h2>
<p>No carrier with a complete, current RMD filing would feel urgency from our outreach. They would check their status, confirm everything is in compliance, and move on. The fact that The CommLaw Group felt compelled to mass-email the entire RMD list &mdash; not just their own clients &mdash; suggests they know many filings have real deficiencies that have not been addressed.</p>
<p>If their telecom clients already had compliant RMD filings, this article would have been unnecessary. If you are paying a telecom law firm to handle your regulatory compliance, you should ask them one question: <strong>why did a compliance startup find problems in your filing before your own lawyers did?</strong></p>
<p>Instead of writing blog posts attacking the people who found the problems, maybe go fix the problems. Your clients are paying you to keep them compliant &mdash; not to write press releases about why compliance does not matter.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">The Deficiencies Are Real. The Enforcement Is Real.</h2>
<p>The FCC has removed over 1,000 carriers from the Robocall Mitigation Database. Removal means your upstream carriers must cease routing your traffic. These are not hypothetical consequences invented to create urgency &mdash; they are documented enforcement actions that have disconnected carriers from the U.S. telephone network.</p>
<p>Our audit of thousands of RMD filings has identified deficiencies across the board. Missing KYC descriptions. Incomplete robocall mitigation programs. Stale certifications. These are the same issues the FCC cites when it removes providers from the database.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">Correcting a Deficient Filing Is Not a Liability</h2>
<p>The CommLaw Group claims that updating an RMD filing could &ldquo;become an admission that increases exposure.&rdquo; This is the most irresponsible claim in their article. The FCC requires carriers to keep filings current and accurate. A carrier that discovers its filing is deficient and deliberately leaves it uncorrected is in a far worse position than one that promptly corrects it.</p>
<p>The FCC does not punish carriers for improving their filings. It punishes carriers for submitting false information and for failing to implement the mitigation programs they describe. Leaving a known problem in place does not protect you &mdash; it protects the law firm&rsquo;s ability to charge you emergency rates when the FCC finally comes knocking.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">We Do Not File Language Carriers Cannot Support</h2>
<p>Every RMD filing we prepare goes through a mandatory client review and approval process. The carrier reviews the filing, confirms it reflects actual operations, and signs a declaration under penalty of perjury. We do not submit filings without explicit authorization. We do not fabricate policies. We document what the carrier actually does &mdash; at a fraction of what a law firm charges.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">Public Data Is Public</h2>
<p>The FCC Robocall Mitigation Database is <strong>public by design</strong>. The FCC built it so that carriers, the industry, and the public can verify compliance. That is its stated purpose. If a law firm considers it a &ldquo;red flag&rdquo; that someone actually read a public regulatory database, the concern is not about carrier safety. It is about the fact that we did their job for them &mdash; faster, and for a fraction of the price.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">Our Process: Transparent, Auditable, Client-Controlled</h2>
<p>The CommLaw Group implies we are filing documents recklessly. Here is our actual process, end to end:</p>
<div class="my-8">
<img src="/images/compliance-process.png" alt="Performance West Compliance Process — From Detection to Filing" class="w-full rounded-lg border border-gray-200 shadow-sm" />
</div>
<p>Every step is auditable. Every filing is client-approved. Every document is accessible through our ERP-integrated client portal. The carrier has full visibility and full control at every stage. Nothing is filed without the carrier&rsquo;s explicit written authorization and perjury declaration.</p>
<p>This is not a black box. It is a documented, repeatable process with more safeguards than most law firms offer &mdash; and we are transparent about every step because we have nothing to hide.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">The Technology Behind Our Reviews</h2>
<p>The CommLaw Group&rsquo;s article implies that automated compliance review is inherently unreliable. The data says otherwise.</p>
<p>Our compliance analysis is powered by Anthropic&rsquo;s Claude Opus, the same AI model that leading law firms &mdash; including <a href="https://www.harvey.ai/blog/opus-4-6-now-live-in-harvey" target="_blank" rel="noopener" class="text-blue-700 underline">Harvey AI</a>, used by elite firms like Allen &amp; Overy, Ashurst, and O&rsquo;Melveny &mdash; rely on for legal work. Here is how it performs against the same benchmarks used to evaluate attorneys:</p>
<div class="my-6 overflow-x-auto">
<table class="w-full text-sm border border-gray-200 rounded-lg" style="border-collapse:collapse;">
<thead>
<tr class="bg-gray-50">
<th class="text-left p-3 border-b border-gray-200 font-bold text-pw-navy">Benchmark</th>
<th class="text-left p-3 border-b border-gray-200 font-bold text-pw-navy">Score</th>
<th class="text-left p-3 border-b border-gray-200 font-bold text-pw-navy">Source</th>
</tr>
</thead>
<tbody>
<tr>
<td class="p-3 border-b border-gray-100"><strong>Bar Exam (MBE)</strong><br><span class="text-gray-500 text-xs">200 questions, NCBE Complete Practice Exam</span></td>
<td class="p-3 border-b border-gray-100 font-bold text-green-700">88.5&ndash;93.5% accuracy</td>
<td class="p-3 border-b border-gray-100"><a href="https://www.lawnext.com/2026/03/ai-legal-research-startup-descrybe-launches-legal-reasoning-tool-says-it-outperforms-chatgpt-claude-and-gemini-on-bar-exam-benchmark.html" target="_blank" rel="noopener" class="text-blue-700 underline text-xs">LawNext, March 2026</a></td>
</tr>
<tr>
<td class="p-3 border-b border-gray-100"><strong>BigLaw Bench (Harvey AI)</strong><br><span class="text-gray-500 text-xs">Litigation, transactional &amp; contract analysis tasks</span></td>
<td class="p-3 border-b border-gray-100 font-bold text-green-700">90.2% &mdash; highest of any model</td>
<td class="p-3 border-b border-gray-100"><a href="https://www.harvey.ai/blog/opus-4-6-now-live-in-harvey" target="_blank" rel="noopener" class="text-blue-700 underline text-xs">Harvey AI, 2026</a></td>
</tr>
<tr>
<td class="p-3 border-b border-gray-100"><strong>Perfect Scores (BigLaw Bench)</strong><br><span class="text-gray-500 text-xs">Tasks scored flawlessly on litigation &amp; transactional work</span></td>
<td class="p-3 border-b border-gray-100 font-bold text-green-700">40% of all tasks</td>
<td class="p-3 border-b border-gray-100"><a href="https://www.harvey.ai/blog/opus-4-6-now-live-in-harvey" target="_blank" rel="noopener" class="text-blue-700 underline text-xs">Harvey AI, 2026</a></td>
</tr>
<tr>
<td class="p-3 border-b border-gray-100"><strong>GDPval-AA</strong><br><span class="text-gray-500 text-xs">Economically valuable knowledge work (legal, finance)</span></td>
<td class="p-3 border-b border-gray-100 font-bold text-green-700">+144 Elo vs. GPT-5.2</td>
<td class="p-3 border-b border-gray-100"><a href="https://www.anthropic.com/news/claude-opus-4-6" target="_blank" rel="noopener" class="text-blue-700 underline text-xs">Anthropic, 2026</a></td>
</tr>
</tbody>
</table>
</div>
<p>For comparison: when MIT researchers <a href="https://www.livescience.com/technology/artificial-intelligence/gpt-4-didnt-ace-the-bar-exam-after-all-mit-research-suggests-it-barely-passed" target="_blank" rel="noopener" class="text-blue-700 underline">independently evaluated GPT-4&rsquo;s bar exam performance</a>, it scored in the <strong>48th percentile</strong> of first-time test takers on the essay section. Claude Opus scores in the <strong>90th+ percentile</strong> on the same class of questions. These are not the same technology.</p>
<p>Harvey AI &mdash; which uses Claude Opus &mdash; is trusted by some of the largest law firms in the world for contract analysis, research memos, and motion drafting. In one benchmark test, the model produced <strong>over 120 inline citations</strong>, each tied to specific passages in source material. This is not a chatbot generating guesses. It is a system that reads regulatory filings with a level of thoroughness and consistency that no human reviewer can match at scale.</p>
<p>The suggestion that technology-assisted compliance review is inherently inferior to manual legal review is not supported by any evidence. It is contradicted by the very firms that The CommLaw Group competes with.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">A Note on Professional Responsibility</h2>
<p>Under <a href="https://www.americanbar.org/groups/professional_responsibility/publications/model_rules_of_professional_conduct/rule_7_1_communication_concerning_a_lawyer_s_services/" target="_blank" rel="noopener" class="text-blue-700 underline">ABA Model Rule 7.1</a>, a lawyer shall not make false or misleading communications about legal services, and any comparison with competing services must be &ldquo;factually substantiated.&rdquo; The CommLaw Group&rsquo;s article claims that correcting an RMD filing could &ldquo;become an admission that increases exposure&rdquo; &mdash; without citing a single case, enforcement action, or FCC proceeding where a corrected filing created liability for a carrier. That is an unsubstantiated claim designed to discourage carriers from using a competing service.</p>
<p>Under the <a href="https://www.bonalaw.com/insights/legal-resources/do-i-have-a-lanham-act-claim-against-my-competitor-for-false-advertising" target="_blank" rel="noopener" class="text-blue-700 underline">Lanham Act</a> (15 U.S.C. &sect; 1125(a)), commercial disparagement &mdash; publishing false or misleading statements about a competitor&rsquo;s services that cause economic harm &mdash; is actionable with damages up to three times actual losses. Under state law, <a href="https://www.minclaw.com/tortious-interference/" target="_blank" rel="noopener" class="text-blue-700 underline">tortious interference</a> with prospective business relations applies when a party intentionally disrupts another company&rsquo;s customer relationships through wrongful means.</p>
<p>Virginia&rsquo;s Rules of Professional Conduct &mdash; which govern The CommLaw Group as a McLean, Virginia firm &mdash; mirror these standards. <a href="https://vsb.org/Site/Site/about/rules-regulations/rpc-part6-sec2.aspx" target="_blank" rel="noopener" class="text-blue-700 underline">Rule 8.4(c)</a> provides that a lawyer shall not &ldquo;engage in conduct involving dishonesty, fraud, deceit or misrepresentation.&rdquo;</p>
<p>We would prefer to compete on the merits. If that is not possible, we are prepared to protect our business through every available legal channel.</p>
<h2 class="text-xl font-bold text-pw-navy mt-10 mb-4">Check Your Own Status</h2>
<p>We encourage every carrier to verify its own compliance. Our free compliance check takes minutes &mdash; no purchase required, no obligation, no billable hours.</p>
<div class="my-8 text-center">
<a href="/tools/fcc-compliance-check" class="inline-block px-8 py-4 rounded-lg text-white font-bold text-lg" style="background:#1e3a5f;">Run a FREE Compliance Check</a>
</div>
<p>Carriers who need help correcting deficiencies can work with us, with a law firm, or with any qualified professional. What they should not do is leave a known-deficient filing in place because someone told them that fixing it is more dangerous than ignoring it.</p>
</article>
<div class="mt-12 pt-8 border-t border-gray-200 text-gray-500 text-sm">
<p><strong>Performance West Inc.</strong></p>
<p>
<a href="mailto:info@performancewest.net" class="text-blue-700">info@performancewest.net</a> &middot;
<a href="tel:18884110383" class="text-blue-700">1-888-411-0383</a>
</p>
</div>
</main>
</Base>