diff --git a/README.md b/README.md
index 02ace073..bb40ee8e 100644
--- a/README.md
+++ b/README.md
@@ -87,9 +87,9 @@ Fresh Android captures from the current emulator build.
Visual system
Closer Couples uses paired light and dark illustration assets so the product can stay warm without fighting
-the selected theme. The home daily-question card is intentionally people-forward: the ready-to-answer
-and reveal-ready moments use the couple/cards artwork, while quieter waiting states can fall back to
-the answer-card ritual art.
+the selected theme. The home daily-question card is intentionally people-forward: ready-to-answer uses
+the partner-prompt couple artwork, reveal-ready uses the card reveal artwork, and quieter waiting states
+can fall back to the answer-card ritual art.
What makes it different
diff --git a/app/src/main/java/app/closer/ui/home/HomeScreen.kt b/app/src/main/java/app/closer/ui/home/HomeScreen.kt
index a52c5d80..e3759211 100644
--- a/app/src/main/java/app/closer/ui/home/HomeScreen.kt
+++ b/app/src/main/java/app/closer/ui/home/HomeScreen.kt
@@ -1014,11 +1014,10 @@ private fun PrimaryHomeActionCard(
) {
val colors = action.tone.actionColors()
val isDark = isCloserDarkTheme()
- // Daily-question art stays people-forward on the home card: the ready-to-answer
- // and reveal-ready moments both use the couple/cards illustration.
+ // Daily-question art stays people-forward while keeping the two states distinct.
val artRes = if (action.target == HomeActionTarget.DailyQuestion) {
when (dailyQuestionState) {
- DailyQuestionState.UNANSWERED -> R.drawable.illustration_daily_reveal_ready
+ DailyQuestionState.UNANSWERED -> R.drawable.illustration_tonight_partner_prompt
DailyQuestionState.BOTH_ANSWERED -> R.drawable.illustration_daily_reveal_ready
else -> homePrimaryArt(action.target)
}
diff --git a/app/src/main/res/drawable-nodpi/illustration_tonight_partner_prompt.png b/app/src/main/res/drawable-nodpi/illustration_tonight_partner_prompt.png
index 6626deb8..9fb9972d 100644
Binary files a/app/src/main/res/drawable-nodpi/illustration_tonight_partner_prompt.png and b/app/src/main/res/drawable-nodpi/illustration_tonight_partner_prompt.png differ
diff --git a/docs/brand/generated-art/illustration_tonight_partner_prompt.png b/docs/brand/generated-art/illustration_tonight_partner_prompt.png
new file mode 100644
index 00000000..9fb9972d
Binary files /dev/null and b/docs/brand/generated-art/illustration_tonight_partner_prompt.png differ
diff --git a/docs/screenshots/readme/home-daily-ready-dark.png b/docs/screenshots/readme/home-daily-ready-dark.png
index be11e8bb..0beb62f2 100644
Binary files a/docs/screenshots/readme/home-daily-ready-dark.png and b/docs/screenshots/readme/home-daily-ready-dark.png differ
diff --git a/docs/screenshots/readme/home-daily-ready-light.png b/docs/screenshots/readme/home-daily-ready-light.png
index c94788e4..3cebb67b 100644
Binary files a/docs/screenshots/readme/home-daily-ready-light.png and b/docs/screenshots/readme/home-daily-ready-light.png differ