diff --git a/components/landing/stats-strip.tsx b/components/landing/stats-strip.tsx
index 6e54c3a..add7818 100644
--- a/components/landing/stats-strip.tsx
+++ b/components/landing/stats-strip.tsx
@@ -79,10 +79,7 @@ export function StatsStrip() {
if (items.length === 0) return null;
return (
-
+
);
diff --git a/components/marketing/hero-background.tsx b/components/marketing/hero-background.tsx
index 15f68a4..3426ef8 100644
--- a/components/marketing/hero-background.tsx
+++ b/components/marketing/hero-background.tsx
@@ -43,10 +43,11 @@ export function HeroBackground({
children?: ReactNode;
fieldHeight?: number;
/**
- * For heroes stretched to the footer: resolve the teal tint back to ink at
- * the very bottom within this one gradient, so the page meets the next
- * section with no seam (instead of clipping at the teal peak). Default heroes
- * keep the tint peaking at the bottom edge.
+ * Peak the teal tint just above the bottom, then resolve it back to ink at
+ * the very bottom within this one gradient, so the hero meets whatever
+ * follows with no seam (instead of clipping at the teal peak). Default heroes
+ * keep the tint peaking at the bottom edge, which only reads clean when the
+ * next section starts on the same teal.
*/
fadeBottom?: boolean;
}) {
diff --git a/components/marketing/hero-section.tsx b/components/marketing/hero-section.tsx
index 8835740..7390039 100644
--- a/components/marketing/hero-section.tsx
+++ b/components/marketing/hero-section.tsx
@@ -22,8 +22,8 @@ interface HeroSectionProps {
showMedia?: boolean;
/**
* Resolve the teal tint back to ink at the very bottom so the hero meets the
- * next section (or the footer) with no seam. Use when the hero sits directly
- * above the footer.
+ * next section (or the footer) with no seam. Leave off only when the section
+ * below starts on the same teal tint.
*/
fadeBottom?: boolean;
className?: string;