diff --git a/src/components/moderation/ReportDialog/const.ts b/src/components/moderation/ReportDialog/const.ts
index 30c9aff88d..9638767d3c 100644
--- a/src/components/moderation/ReportDialog/const.ts
+++ b/src/components/moderation/ReportDialog/const.ts
@@ -1 +1,3 @@
export const DMCA_LINK = 'https://bsky.social/about/support/copyright'
+export const COMPLIANCE_OVERVIEW =
+ 'https://bsky.social/about/support/regulatory-compliance-report'
diff --git a/src/components/moderation/ReportDialog/index.tsx b/src/components/moderation/ReportDialog/index.tsx
index 797ff533f2..9e893ae1b4 100644
--- a/src/components/moderation/ReportDialog/index.tsx
+++ b/src/components/moderation/ReportDialog/index.tsx
@@ -30,7 +30,7 @@ import {createStaticClick, InlineLinkText, Link} from '#/components/Link'
import {Loader} from '#/components/Loader'
import {Text} from '#/components/Typography'
import {useSubmitReportMutation} from './action'
-import {DMCA_LINK} from './const'
+import {COMPLIANCE_OVERVIEW} from './const'
import {useCopyForSubject} from './copy'
import {initialState, reducer} from './state'
import {type ReportDialogProps, type ReportSubject} from './types'
@@ -266,9 +266,9 @@ function Inner(props: ReportDialogProps) {
{['post', 'account'].includes(props.subject.type) && (
{({hovered, pressed}) => (
- Need to report a copyright violation?
+
+ Need to report a copyright violation, legal
+ request, or regulatory compliance issue?
+
{completed ? (
@@ -533,8 +536,8 @@ function StepTitle({
color: active
? 'white'
: completed
- ? t.palette.primary_700
- : t.atoms.text_contrast_medium.color,
+ ? t.palette.primary_700
+ : t.atoms.text_contrast_medium.color,
fontVariant: ['tabular-nums'],
width: 24,
height: 24,