diff --git a/src/lib/components/AIScore.svelte b/src/lib/components/AIScore.svelte
index 841b4098..a42533e6 100644
--- a/src/lib/components/AIScore.svelte
+++ b/src/lib/components/AIScore.svelte
@@ -1,8 +1,14 @@
@@ -34,23 +40,42 @@
class="stroke-current {score >= 7 ? 'text-[#37C97D]' : score >=4 ? 'text-[#FF9E21]' : 'text-[#FF2F1F]'}"
stroke-width="3"
stroke-dasharray="100.48"
- stroke-dashoffset="{100.48 - (score / 10) * 100.48}">
+ stroke-dashoffset="{100.48 - ((tier === 'Pro' ? score : 0) / 10) * 100.48}">
-