diff --git a/src/components/AnimatedLogo.tsx b/src/components/AnimatedLogo.tsx
index dfbb78a..9ec29d8 100644
--- a/src/components/AnimatedLogo.tsx
+++ b/src/components/AnimatedLogo.tsx
@@ -57,8 +57,11 @@ export default function AnimatedLogo({
const tileGradId = `al-tile-${uid}`;
const sheenGradId = `al-sheen-${uid}`;
const wordmarkColor = variant === 'onDark' ? '#FFFFFF' : '#0F172A';
- const taglineColor = variant === 'onDark' ? '#CBD5E1' : '#475569';
- const accentColor = '#1D4ED8';
+ const taglineColor = variant === 'onDark' ? '#E2E8F0' : '#475569';
+ // On a dark/blue header the tile's own gradient (#2563EB→#1E3A8A) reads
+ // as the same shade as the bar behind it, so we paint a faint white ring
+ // around the rounded edge to separate the mark from the background.
+ const accentColor = variant === 'onDark' ? '#7DD3FC' : '#1D4ED8';
return (
+ {variant === 'onDark' && (
+
+ )}
{/* Sheen sweep — a tall skewed band that travels left→right. */}
diff --git a/src/components/Header.tsx b/src/components/Header.tsx
index 6f8c66b..2252fd2 100644
--- a/src/components/Header.tsx
+++ b/src/components/Header.tsx
@@ -269,9 +269,9 @@ export default function Header() {
aria-label="AV Beat — homepage"
className="flex-shrink-0 focus:outline-none focus-visible:ring-2 focus-visible:ring-[var(--brand-blue)] focus-visible:ring-offset-2 focus-visible:ring-offset-[var(--brand-bg)] rounded-md"
>
-
-
-
+
+
+
{/* Header 728x90 banner — centered between logo and right side */}