From d70a50f47a196c5f7d4a180084a3c41b4a92a2e7 Mon Sep 17 00:00:00 2001 From: Timo Knuth Date: Mon, 1 Jun 2026 20:18:48 +0200 Subject: [PATCH] product Hunt --- docker-compose.yml | 200 +- greenlens-promo/assets/favicon.svg | 8 +- greenlns-landing/components/Hero.tsx | 80 +- ...with_prompts.backup-before-avatar-rules.md | 4 +- ...ktok_30_day_slideshow_plan_with_prompts.md | 1062 +-- ...-greenlenspro-com-2026-05-27T12-40-33.json | 6071 +++++++++++++++++ ...ps-greenlenspro-com-2026-05-27T12-40-33.md | 22 + 7 files changed, 6785 insertions(+), 662 deletions(-) create mode 100644 output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.json create mode 100644 output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.md diff --git a/docker-compose.yml b/docker-compose.yml index 5b14813..68e6c24 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,101 +1,101 @@ -services: - landing: - build: - context: ./greenlns-landing - dockerfile: Dockerfile - restart: unless-stopped - environment: - NODE_ENV: production - PORT: 3000 - NEXT_PUBLIC_SITE_URL: ${SITE_URL:-https://greenlenspro.com} - networks: - - greenlens_net - healthcheck: - test: ["CMD", "node", "-e", "fetch('http://127.0.0.1:3000').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"] - interval: 15s - timeout: 5s - retries: 5 - - api: - build: - context: . - dockerfile: server/Dockerfile - restart: unless-stopped - environment: - NODE_ENV: production - PORT: 3000 - DATABASE_URL: postgresql://${POSTGRES_USER:-greenlns}:${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required}@postgres:5432/${POSTGRES_DB:-greenlns} - POSTGRES_HOST: postgres - POSTGRES_PORT: 5432 - POSTGRES_DB: ${POSTGRES_DB:-greenlns} - POSTGRES_USER: ${POSTGRES_USER:-greenlns} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required} - MINIO_ENDPOINT: minio - MINIO_PORT: 9000 - MINIO_USE_SSL: "false" - MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-greenlns-minio} - MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:?MINIO_SECRET_KEY is required} - MINIO_BUCKET: ${MINIO_BUCKET:-plant-images} - MINIO_PUBLIC_URL: ${MINIO_PUBLIC_URL:-https://greenlenspro.com/storage} - OPENAI_API_KEY: ${OPENAI_API_KEY:-} - OPENAI_SCAN_MODEL: ${OPENAI_SCAN_MODEL:-gpt-5-mini} - OPENAI_HEALTH_MODEL: ${OPENAI_HEALTH_MODEL:-gpt-5-mini} - REVENUECAT_WEBHOOK_SECRET: ${REVENUECAT_WEBHOOK_SECRET:-} - REVENUECAT_PRO_ENTITLEMENT_ID: ${REVENUECAT_PRO_ENTITLEMENT_ID:-pro} - JWT_SECRET: ${JWT_SECRET:?JWT_SECRET is required} - PLANT_IMPORT_ADMIN_KEY: ${PLANT_IMPORT_ADMIN_KEY:-} - depends_on: - postgres: - condition: service_healthy - minio: - condition: service_healthy - networks: - - greenlens_net - healthcheck: - test: ["CMD", "node", "-e", "fetch('http://127.0.0.1:3000/health').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"] - interval: 15s - timeout: 5s - retries: 5 - - postgres: - image: postgres:16-alpine - restart: unless-stopped - environment: - POSTGRES_DB: ${POSTGRES_DB:-greenlns} - POSTGRES_USER: ${POSTGRES_USER:-greenlns} - POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required} - ports: - - "5434:5432" - volumes: - - postgres_data:/var/lib/postgresql/data - networks: - - greenlens_net - healthcheck: - test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"] - interval: 10s - timeout: 5s - retries: 5 - - minio: - image: minio/minio:latest - restart: unless-stopped - environment: - MINIO_ROOT_USER: ${MINIO_ACCESS_KEY:-greenlns-minio} - MINIO_ROOT_PASSWORD: ${MINIO_SECRET_KEY:?MINIO_SECRET_KEY is required} - command: server /data --console-address ":9001" - volumes: - - ./minio_data:/data # <-- NEU: Lokaler Ordner statt benanntes Volume! - networks: - - greenlens_net - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] - interval: 10s - timeout: 5s - retries: 5 - -volumes: - postgres_data: - -networks: - greenlens_net: +services: + landing: + build: + context: ./greenlns-landing + dockerfile: Dockerfile + restart: unless-stopped + environment: + NODE_ENV: production + PORT: 3000 + NEXT_PUBLIC_SITE_URL: ${SITE_URL:-https://greenlenspro.com} + networks: + - greenlens_net + healthcheck: + test: ["CMD", "node", "-e", "fetch('http://127.0.0.1:3000').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"] + interval: 15s + timeout: 5s + retries: 5 + + api: + build: + context: . + dockerfile: server/Dockerfile + restart: unless-stopped + environment: + NODE_ENV: production + PORT: 3000 + DATABASE_URL: postgresql://${POSTGRES_USER:-greenlns}:${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required}@postgres:5432/${POSTGRES_DB:-greenlns} + POSTGRES_HOST: postgres + POSTGRES_PORT: 5432 + POSTGRES_DB: ${POSTGRES_DB:-greenlns} + POSTGRES_USER: ${POSTGRES_USER:-greenlns} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required} + MINIO_ENDPOINT: minio + MINIO_PORT: 9000 + MINIO_USE_SSL: "false" + MINIO_ACCESS_KEY: ${MINIO_ACCESS_KEY:-greenlns-minio} + MINIO_SECRET_KEY: ${MINIO_SECRET_KEY:?MINIO_SECRET_KEY is required} + MINIO_BUCKET: ${MINIO_BUCKET:-plant-images} + MINIO_PUBLIC_URL: ${MINIO_PUBLIC_URL:-https://greenlenspro.com/storage} + OPENAI_API_KEY: ${OPENAI_API_KEY:-} + OPENAI_SCAN_MODEL: ${OPENAI_SCAN_MODEL:-gpt-5-mini} + OPENAI_HEALTH_MODEL: ${OPENAI_HEALTH_MODEL:-gpt-5-mini} + REVENUECAT_WEBHOOK_SECRET: ${REVENUECAT_WEBHOOK_SECRET:-} + REVENUECAT_PRO_ENTITLEMENT_ID: ${REVENUECAT_PRO_ENTITLEMENT_ID:-pro} + JWT_SECRET: ${JWT_SECRET:?JWT_SECRET is required} + PLANT_IMPORT_ADMIN_KEY: ${PLANT_IMPORT_ADMIN_KEY:-} + depends_on: + postgres: + condition: service_healthy + minio: + condition: service_healthy + networks: + - greenlens_net + healthcheck: + test: ["CMD", "node", "-e", "fetch('http://127.0.0.1:3000/health').then((r)=>process.exit(r.ok?0:1)).catch(()=>process.exit(1))"] + interval: 15s + timeout: 5s + retries: 5 + + postgres: + image: postgres:16-alpine + restart: unless-stopped + environment: + POSTGRES_DB: ${POSTGRES_DB:-greenlns} + POSTGRES_USER: ${POSTGRES_USER:-greenlns} + POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:?POSTGRES_PASSWORD is required} + ports: + - "5434:5432" + volumes: + - postgres_data:/var/lib/postgresql/data + networks: + - greenlens_net + healthcheck: + test: ["CMD-SHELL", "pg_isready -U $$POSTGRES_USER -d $$POSTGRES_DB"] + interval: 10s + timeout: 5s + retries: 5 + + minio: + image: minio/minio:latest + restart: unless-stopped + environment: + MINIO_ROOT_USER: ${MINIO_ACCESS_KEY:-greenlns-minio} + MINIO_ROOT_PASSWORD: ${MINIO_SECRET_KEY:?MINIO_SECRET_KEY is required} + command: server /data --console-address ":9001" + volumes: + - ./minio_data:/data # <-- NEU: Lokaler Ordner statt benanntes Volume! + networks: + - greenlens_net + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:9000/minio/health/live"] + interval: 10s + timeout: 5s + retries: 5 + +volumes: + postgres_data: + +networks: + greenlens_net: external: true \ No newline at end of file diff --git a/greenlens-promo/assets/favicon.svg b/greenlens-promo/assets/favicon.svg index 33b3e70..f47ecaa 100644 --- a/greenlens-promo/assets/favicon.svg +++ b/greenlens-promo/assets/favicon.svg @@ -1,4 +1,4 @@ - - - - + + + + diff --git a/greenlns-landing/components/Hero.tsx b/greenlns-landing/components/Hero.tsx index 6659556..2a2b47c 100644 --- a/greenlns-landing/components/Hero.tsx +++ b/greenlns-landing/components/Hero.tsx @@ -68,23 +68,38 @@ export default function Hero() { {t.hero.desc}

-
- -
+ +  {t.hero.primary} - - {t.hero.secondary} - -
- - {/* Segmentation widget */} -
-

{t.hero.segTitle}

-
+ + {t.hero.secondary} + +
+ + + GreenLens - Scan plants, understand care, and grow smarter | Product Hunt + + + {/* Segmentation widget */} +
+

{t.hero.segTitle}

+
- + .hero-seg-btn--active .hero-seg-radio { + border-color: var(--green-light); + background: var(--green-light); + box-shadow: 0 0 0 3px rgba(86,160,116,0.2); + } + @media (max-width: 1024px) { + .product-hunt-badge { + margin-left: auto; + margin-right: auto; + } + } + `} ) } diff --git a/marketing/tiktok_30_day_slideshow_plan_with_prompts.backup-before-avatar-rules.md b/marketing/tiktok_30_day_slideshow_plan_with_prompts.backup-before-avatar-rules.md index ef7cfaf..33214c5 100644 --- a/marketing/tiktok_30_day_slideshow_plan_with_prompts.backup-before-avatar-rules.md +++ b/marketing/tiktok_30_day_slideshow_plan_with_prompts.backup-before-avatar-rules.md @@ -528,5 +528,5 @@ Keep the visual language consistent across all slides in the slideshow. - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brown leaf-tip macro with refined editorial detail. Add large clean overlay text: "3. Brown tips" Add smaller subtext: "Not always dryness." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: wilted leaf or soft leaf specimen card in clean layout. Add large clean overlay text: "4. Wilting or softness" Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with five refined specimen cards in premium hierarchy. Add large clean overlay text: "5. Sudden decline" Add smaller subtext: "It usually starts earlier than you think." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: final month-close CTA in polished GreenLens style. Add large clean overlay text: "Follow and scan with GreenLens next time." Add smaller subtext: "Month two starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. - + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: final month-close CTA in polished GreenLens style. Add large clean overlay text: "Follow and scan with GreenLens next time." Add smaller subtext: "Month two starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. + diff --git a/marketing/tiktok_30_day_slideshow_plan_with_prompts.md b/marketing/tiktok_30_day_slideshow_plan_with_prompts.md index 55520ce..254a51e 100644 --- a/marketing/tiktok_30_day_slideshow_plan_with_prompts.md +++ b/marketing/tiktok_30_day_slideshow_plan_with_prompts.md @@ -1,538 +1,538 @@ -# GreenLens TikTok 30-Day Slideshow Plan With Prompts - -## Global Prompt Base - -Use this base on every slide prompt unless the day says otherwise: - -```text -Create a premium botanical editorial slide in vertical 9:16. -Use the exact GreenLens design language from "The Botanical Archive" and "The Digital Herbarium". -Overall art direction: high-end editorial archive, premium botanical encyclopedia translated into a modern digital layout, tactile paper feeling, expert lithography mood, elegant whitespace, calm premium atmosphere, intentional asymmetry balanced with centered text. -Color system: soft sand surface #fbfaf0, layered stone papers #f5f4ea and #e4e3d9, deep forest green #204e2b, richer botanical green #386641, tertiary earth accent #603d16 used sparingly for warning moments. -Composition rules: no 1px borders, no harsh dividers, no generic UI boxes, no clutter, no drop shadows from old SaaS design, use tonal layering, negative space, paper-stack depth, and soft botanical overlap instead. -Typography direction: bold editorial headline energy inspired by Plus Jakarta Sans, refined readable supporting text inspired by Manrope, tight hierarchy, high contrast, modern minimal presentation. -Texture and lighting: subtle paper grain, soft daylight, gentle botanical shadows, premium matte print feeling, polished magazine styling. -Text style: bold, modern, minimal, high contrast, polished editorial layout. -Text placement: centered, never top-heavy, always with generous safe margins and strong visual hierarchy. +# GreenLens TikTok 30-Day Slideshow Plan With Prompts + +## Global Prompt Base + +Use this base on every slide prompt unless the day says otherwise: + +```text +Create a premium botanical editorial slide in vertical 9:16. +Use the exact GreenLens design language from "The Botanical Archive" and "The Digital Herbarium". +Overall art direction: high-end editorial archive, premium botanical encyclopedia translated into a modern digital layout, tactile paper feeling, expert lithography mood, elegant whitespace, calm premium atmosphere, intentional asymmetry balanced with centered text. +Color system: soft sand surface #fbfaf0, layered stone papers #f5f4ea and #e4e3d9, deep forest green #204e2b, richer botanical green #386641, tertiary earth accent #603d16 used sparingly for warning moments. +Composition rules: no 1px borders, no harsh dividers, no generic UI boxes, no clutter, no drop shadows from old SaaS design, use tonal layering, negative space, paper-stack depth, and soft botanical overlap instead. +Typography direction: bold editorial headline energy inspired by Plus Jakarta Sans, refined readable supporting text inspired by Manrope, tight hierarchy, high contrast, modern minimal presentation. +Texture and lighting: subtle paper grain, soft daylight, gentle botanical shadows, premium matte print feeling, polished magazine styling. +Text style: bold, modern, minimal, high contrast, polished editorial layout. +Text placement: centered, never top-heavy, always with generous safe margins and strong visual hierarchy. Keep the visual language consistent across all slides in the slideshow. Reference the provided GreenLens avatar design images in every prompt: use the unbranded avatar from "ChatGPT Image 19. Apr. 2026, 21_54_17.png" and the branded GreenLens Pro avatar from "ChatGPT Image 19. Apr. 2026, 21_53_06.png" as the exact design references for mascot style, glossy camera body, leaf detail, black-to-olive vignette glow, chunky polished cartoon rendering, and premium GreenLens brand energy. Text rule: all overlay text must always sit exactly in the center of the image canvas, horizontally and vertically, with no top-heavy composition and no text near the edges. Avatar rule: Slide 1 must include the unbranded avatar only, the final slide must include the branded GreenLens Pro avatar only, and middle slides must not use either avatar unless explicitly stated. ``` - -## Day 1 - -- **Title:** Your Plant Is Not Dying Suddenly -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Your plant is not dying suddenly. -- **CTA:** Save this before you water again. -- **Caption:** Most houseplants do not crash overnight. The early signs are usually there, but people misread them and react too fast. This slideshow reframes the problem so beginners stop guessing and start observing with more clarity. -- **Hashtags:** `#planttok #houseplants #plantcare #plantdiagnosis #urbanjungle #greenlens #planthelp` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm hero slide with elegant leaf shadows and premium paper textures. Add large clean overlay text: "Your plant is not dying suddenly." Add smaller subtext: "You are missing the early warning signs." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed indoor plant with soft yellowing leaves in natural window light. Add large clean overlay text: "The signs usually start small." Add smaller subtext: "A few leaves change before the whole plant declines." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close crop of drooping leaves and slightly wet soil in a clean editorial frame. Add large clean overlay text: "Most people react too fast." Add smaller subtext: "They treat the symptom, not the cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual botanical layout showing symptom cards versus root-cause cards. Add large clean overlay text: "Symptom is not the diagnosis." Add smaller subtext: "Yellow, drooping, or brown does not mean one answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: refined checklist composition with leaf, pot, soil, and light cues. Add large clean overlay text: "Check this first." Add smaller subtext: "Light. Water. Soil. Pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm, premium plant triage mood with elegant negative space. Add large clean overlay text: "Do not guess." Add smaller subtext: "Observe before you react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end closing frame with strong editorial balance and subtle GreenLens energy. Add large clean overlay text: "Save this before you water again." Add smaller subtext: "You will need it the next time a plant looks off." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 2 - -- **Title:** Drooping Does Not Always Mean Thirst -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Drooping does not always mean thirst. -- **CTA:** Follow for more plant ER myths. -- **Caption:** Drooping leaves trigger panic, and panic usually leads to the wrong fix. This slideshow teaches people that overwatering, root stress, and poor drainage can look like thirst at first glance. -- **Hashtags:** `#planttok #plantmyths #houseplanthelp #wateringplants #plantcaretips #greenlens #plantrescue` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant centered in a minimalist herbarium composition. Add large clean overlay text: "Drooping does not always mean thirst." Add smaller subtext: "That is the trap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: sad-looking plant beside a watering can, clean editorial tension. Add large clean overlay text: "It looks dry." Add smaller subtext: "But looks can be misleading." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: rich dark soil and stressed roots suggested through elegant macro details. Add large clean overlay text: "Too much water can look the same." Add smaller subtext: "Root stress can mimic thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: split concept of underwatering versus overwatering with subtle botanical imagery. Add large clean overlay text: "Same symptom. Different cause." Add smaller subtext: "That is why guessing fails." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: bright, clean checklist slide with leaf, soil, and pot drainage cues. Add large clean overlay text: "Check before you water." Add smaller subtext: "Soil moisture. Pot drainage. Root smell." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority slide with elegant paper textures. Add large clean overlay text: "More water is not always help." Add smaller subtext: "Sometimes it makes the problem worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with subtle botanical forms. Add large clean overlay text: "Follow for more plant ER myths." Add smaller subtext: "Learn the warning signs before you react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 3 - -- **Title:** I Almost Killed This Plant By Trying To Help It -- **Pillar:** Storytelling -- **Slides:** 9 -- **Hook:** I almost killed this plant by trying to help it. -- **CTA:** Comment "help" for more rescue stories. -- **Caption:** This is a rescue story about reacting too fast, trusting the wrong assumption, and learning why symptoms are not enough. It humanizes the brand while still teaching the diagnostic mindset behind GreenLens. -- **Hashtags:** `#planttok #plantstory #plantrescue #houseplants #beginnerplants #greenlens #plantmistakes` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but clean editorial opener with a struggling plant in soft natural light. Add large clean overlay text: "I almost killed this plant by trying to help it." Add smaller subtext: "And I thought I was doing the right thing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant starting to droop with a few damaged leaves, high-end magazine framing. Add large clean overlay text: "It started with a small warning sign." Add smaller subtext: "Nothing looked urgent yet." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: closer view of the same plant looking more stressed. Add large clean overlay text: "I assumed it was thirsty." Add smaller subtext: "That was my first mistake." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: watering action shown in a tasteful editorial way, not busy. Add large clean overlay text: "So I watered it more." Add smaller subtext: "And the plant got worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual shift toward tension and decline with darker soil detail. Add large clean overlay text: "The symptom was real." Add smaller subtext: "The diagnosis was wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual root-cause slide with botanical cards and layered paper textures. Add large clean overlay text: "It was root stress, not thirst." Add smaller subtext: "I treated the wrong problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm recovery mood with restored balance and elegant whitespace. Add large clean overlay text: "That changed how I look at plants." Add smaller subtext: "Now I diagnose before I react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium educational summary slide with clean botanical cues. Add large clean overlay text: "This is the real lesson." Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished close with strong editorial hierarchy. Add large clean overlay text: "Comment 'help' for more rescue stories." Add smaller subtext: "I will break down more real plant mistakes." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 4 - -- **Title:** Check This First -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Check this first: light, water, soil, pests. -- **CTA:** Save this checklist. -- **Caption:** This is the core triage flow for people in a dying-plant moment. It turns panic into a usable order of operations and trains your audience to think in the same sequence GreenLens uses. -- **Hashtags:** `#planttok #plantchecklist #houseplantcare #planttriage #planttips #greenlens #plantclinic` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean hero slide with subtle leaf collage and premium paper layering. Add large clean overlay text: "Check this first." Add smaller subtext: "Light. Water. Soil. Pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant plant near window with soft directional light. Add large clean overlay text: "Step 1: Light." Add smaller subtext: "Has anything changed recently?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: moist soil and pot shown with calm, premium framing. Add large clean overlay text: "Step 2: Water." Add smaller subtext: "Do not assume. Check the soil." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of soil texture and pot drainage. Add large clean overlay text: "Step 3: Soil." Add smaller subtext: "Compaction and drainage matter." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tasteful macro view of leaf underside and pest inspection. Add large clean overlay text: "Step 4: Pests." Add smaller subtext: "Always inspect the hidden areas." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with four elegant specimen cards. Add large clean overlay text: "This order saves time." Add smaller subtext: "And prevents bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium closing frame with calm call-to-action. Add large clean overlay text: "Save this checklist." Add smaller subtext: "Use it next time a plant looks wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 5 - -- **Title:** Yellow Leaves Are Not The Diagnosis -- **Pillar:** Educational -- **Slides:** 5 -- **Hook:** Yellow leaves are not the diagnosis. -- **CTA:** Save this for later. -- **Caption:** Yellow leaves can mean several different things depending on pattern, age, soil, light, and timing. This post is designed to stop the audience from treating one symptom like a full answer. -- **Hashtags:** `#yellowleaves #planttok #planthelp #houseplants #plantdiagnosis #greenlens #plantcare` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: framed yellow leaf specimen on textured cream paper. Add large clean overlay text: "Yellow leaves are not the diagnosis." Add smaller subtext: "They are just the signal." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant layout of one yellow leaf among healthy foliage. Add large clean overlay text: "One symptom can mean many things." Add smaller subtext: "Water, roots, light, age, or stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual comparison of different yellowing patterns. Add large clean overlay text: "Pattern matters." Add smaller subtext: "Where and how the yellowing appears changes the story." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm checklist scene with leaves, soil, and window light. Add large clean overlay text: "Look at context first." Add smaller subtext: "Do not fix color. Find the cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end closing frame with clean typography. Add large clean overlay text: "Save this for later." Add smaller subtext: "You will need it when yellow leaves show up." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 6 - -- **Title:** The Most Common Plant Mistake -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** The most common plant mistake? Panic watering. -- **CTA:** Follow for mistake #2. -- **Caption:** This post turns a common beginner reflex into a memorable warning. It should feel slightly sharp, highly relatable, and useful enough that viewers follow for the next mistake in the series. -- **Hashtags:** `#planttok #plantmistake #wateringplants #houseplanttips #beginnerplants #greenlens #plantcaretips` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean, premium opener with watering can and stressed plant in elegant tension. Add large clean overlay text: "The most common plant mistake?" Add smaller subtext: "Panic watering." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant that appears thirsty at first glance. Add large clean overlay text: "It feels helpful." Add smaller subtext: "That is why people do it fast." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: deep dark soil and heavy pot shown in editorial close-up. Add large clean overlay text: "But the guess is often wrong." Add smaller subtext: "And the extra water adds stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual mistake slide with minimal botanical iconography. Add large clean overlay text: "Care without diagnosis is risk." Add smaller subtext: "Good intentions can still harm the plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: simple checklist composition with soil and roots cues. Add large clean overlay text: "Pause and check first." Add smaller subtext: "Soil moisture. Drainage. Roots." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority slide with refined paper textures. Add large clean overlay text: "Plant care should feel calmer." Add smaller subtext: "Not more reactive." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong closing frame with subtle series energy. Add large clean overlay text: "Follow for mistake #2." Add smaller subtext: "There are more ways beginners make it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 7 - -- **Title:** When Your Plant Looks Worse Overnight -- **Pillar:** Selling -- **Slides:** 7 -- **Hook:** When your plant looks worse overnight: -- **CTA:** Scan your plant with GreenLens. -- **Caption:** This is the first product-oriented post, but it still starts from a real pain moment. The point is not to sell an app out of nowhere. The point is to present GreenLens as relief when guessing is no longer good enough. -- **Hashtags:** `#planttok #plantapp #plantdiagnosis #greenlens #houseplants #planthelp #urbanjungle` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but clean plant decline moment in soft natural light. Add large clean overlay text: "When your plant looks worse overnight:" Add smaller subtext: "That is when people start guessing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant close-up of visible stress signs on a houseplant. Add large clean overlay text: "Yellow leaves." Add smaller subtext: "Drooping stems. Soft tissue." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual confusion slide with multiple conflicting care cues. Add large clean overlay text: "The internet gives 4 different answers." Add smaller subtext: "That does not create clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium diagnosis mood with clean modern framing and subtle tech undertone. Add large clean overlay text: "You need the cause first." Add smaller subtext: "Not another random tip." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm problem-solution slide with elegant negative space. Add large clean overlay text: "That is the Plant ER moment." Add smaller subtext: "Fast clarity matters most here." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium botanical app-ad atmosphere without cluttered UI. Add large clean overlay text: "Use GreenLens to check the cause." Add smaller subtext: "Before you treat the wrong problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean closing frame with strong typography and subtle brand energy. Add large clean overlay text: "Scan your plant with GreenLens." Add smaller subtext: "Get clarity before you guess again." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 8 - -- **Title:** Brown Tips Do Not Always Mean Dryness -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Brown tips do not always mean dryness. -- **CTA:** Save this before trimming anything. -- **Caption:** Brown tips are easy to oversimplify. This slideshow teaches that water quality, humidity, fertilizer buildup, and root issues can all show up in similar ways. -- **Hashtags:** `#browntips #planttok #plantcare #houseplanthelp #plantproblems #greenlens #planttips` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium specimen-style leaf with brown tips framed on textured paper. Add large clean overlay text: "Brown tips do not always mean dryness." Add smaller subtext: "The usual guess is too simple." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant macro of a leaf edge with dry browning. Add large clean overlay text: "Yes, dryness can cause it." Add smaller subtext: "But it is not the only reason." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: subtle water glass, mineral hint, and plant leaf in editorial balance. Add large clean overlay text: "Water quality matters too." Add smaller subtext: "Mineral buildup can show up on the leaf." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: low-humidity mood with soft dry atmosphere around the plant. Add large clean overlay text: "Humidity can be part of it." Add smaller subtext: "Environment changes the pattern." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil and pot close-up with elegant composition. Add large clean overlay text: "Roots and soil matter too." Add smaller subtext: "The leaf is only where the signal appears." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm summary slide with multiple cause cards. Add large clean overlay text: "Same symptom. Multiple causes." Add smaller subtext: "That is why trimming is not the fix." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing frame with refined hierarchy. Add large clean overlay text: "Save this before trimming anything." Add smaller subtext: "Find the cause first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 9 - -- **Title:** Why I Stopped Trusting Random Plant Tips -- **Pillar:** Storytelling -- **Slides:** 9 -- **Hook:** Why I stopped trusting random plant tips. -- **CTA:** Follow for the full plant ER system. -- **Caption:** This story sharpens the brand's position. It explains why generic plant hacks break down without context and why diagnosis is the real value. -- **Hashtags:** `#planttok #plantstory #planttips #houseplantcare #plantadvice #greenlens #plantclinic` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant opener with layered paper textures and a stressed plant in soft natural light. Add large clean overlay text: "Why I stopped trusting random plant tips." Add smaller subtext: "They sounded helpful. They were not enough." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant phone-search mood with clean, minimal editorial composition. Add large clean overlay text: "The advice was always confident." Add smaller subtext: "But the answers never matched." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide with conflicting care cards floating in elegant layout. Add large clean overlay text: "Water more. Water less. Repot. Wait." Add smaller subtext: "Too many tips. No real diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant shown with premium documentary feel. Add large clean overlay text: "The plant still got worse." Add smaller subtext: "Because symptoms are not enough." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause concept slide with specimen cards and paper layers. Add large clean overlay text: "Context changes everything." Add smaller subtext: "Light, roots, soil, timing, pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm editorial transition toward clarity and order. Add large clean overlay text: "That changed the whole approach." Add smaller subtext: "I stopped collecting tips." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium system slide with botanical diagnostics mood. Add large clean overlay text: "I started looking for causes." Add smaller subtext: "That is what actually helps." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant brand-positioning slide with generous whitespace. Add large clean overlay text: "That is why GreenLens exists." Add smaller subtext: "For the Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with strong follow CTA. Add large clean overlay text: "Follow for the full plant ER system." Add smaller subtext: "I will keep breaking it down." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 10 - -- **Title:** The First 3 Things To Check On A Sick Plant -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** The first 3 things to check on a sick plant. -- **CTA:** Save this triage flow. -- **Caption:** Fast frameworks perform because they reduce anxiety. This one gives beginners a short triage system they can remember in a stressful moment. -- **Hashtags:** `#planttok #planttriage #sickplant #houseplants #plantcaretips #greenlens #planthelp` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant triage opener with a struggling plant centered on cream paper textures. Add large clean overlay text: "The first 3 things to check on a sick plant." Add smaller subtext: "Before you do anything else." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: window light and plant placement shown in a premium editorial frame. Add large clean overlay text: "1. Light" Add smaller subtext: "Did the environment change first?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of soil surface and finger moisture check. Add large clean overlay text: "2. Soil moisture" Add smaller subtext: "Do not guess from the leaves alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant view of pot base and drainage details. Add large clean overlay text: "3. Pot and drainage" Add smaller subtext: "Stagnant roots change everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with three refined specimen cards. Add large clean overlay text: "These 3 checks catch a lot." Add smaller subtext: "Before you escalate the situation." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority frame with subtle leaf overlays. Add large clean overlay text: "A system beats panic." Add smaller subtext: "Especially with a stressed plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished save CTA slide. Add large clean overlay text: "Save this triage flow." Add smaller subtext: "You will not remember it under stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 11 - -- **Title:** More Care Is Not Always Better -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** More care is not always better. -- **CTA:** Comment if you have done this too. -- **Caption:** This post challenges a very common beginner instinct: if a plant looks stressed, do more. That belief feels caring, but it often creates even more stress for the plant. -- **Hashtags:** `#planttok #plantcare #houseplanthelp #plantmistakes #urbanjungle #greenlens #beginnerplants` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant opener with stressed plant and layered paper textures. Add large clean overlay text: "More care is not always better." Add smaller subtext: "That is the uncomfortable truth." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple plant-care tools arranged in an editorial still life. Add large clean overlay text: "People react by doing more." Add smaller subtext: "More water. More movement. More changes." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant looking overwhelmed after multiple interventions. Add large clean overlay text: "The plant gets more stressed." Add smaller subtext: "Because the root issue stays the same." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual care-versus-diagnosis slide with calm, minimal structure. Add large clean overlay text: "Attention is not diagnosis." Add smaller subtext: "Action without clarity can backfire." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: quiet observation mood with leaf inspection and soil check. Add large clean overlay text: "Sometimes the best move is pause." Add smaller subtext: "Observe first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: authority slide with soft green tones and botanical overlays. Add large clean overlay text: "Good plant care feels calmer." Add smaller subtext: "Not more chaotic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean comment CTA close. Add large clean overlay text: "Comment if you have done this too." Add smaller subtext: "Most beginners have." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 12 - -- **Title:** Overwatering Often Looks Like Underwatering -- **Pillar:** Educational -- **Slides:** 5 -- **Hook:** Overwatering often looks like underwatering. -- **CTA:** Save this before your next watering. -- **Caption:** This is one of the strongest fast educational ideas in the whole plan. It is surprising, practical, and tightly aligned with the GreenLens diagnosis-first positioning. -- **Hashtags:** `#overwatering #underwatering #planttok #plantcaretips #houseplants #greenlens #plantdiagnosis` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium opener with drooping plant and dark rich soil. Add large clean overlay text: "Overwatering often looks like underwatering." Add smaller subtext: "That is why people get trapped." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping leaves shown in a clean editorial crop. Add large clean overlay text: "The symptom looks similar." Add smaller subtext: "So the instinct feels logical." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual root stress scene with soft macro detail. Add large clean overlay text: "But stressed roots can mimic thirst." Add smaller subtext: "And extra water makes it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: checklist slide with soil, drainage, and pot cues. Add large clean overlay text: "Check the soil before you react." Add smaller subtext: "Never diagnose from drooping alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with strong save CTA. Add large clean overlay text: "Save this before your next watering." Add smaller subtext: "It will save you a bad guess." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 13 - -- **Title:** This Plant Looked Thirsty. It Was Not. -- **Pillar:** Storytelling -- **Slides:** 7 -- **Hook:** This plant looked thirsty. It was not. -- **CTA:** Comment "part 2" for the recovery. -- **Caption:** This is a compact case-study story. It keeps the emotional tension high while still teaching the audience to separate the symptom from the actual cause. -- **Hashtags:** `#planttok #plantstory #houseplants #plantrescue #plantcare #greenlens #plantcase` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant in soft natural light with premium herbarium styling. Add large clean overlay text: "This plant looked thirsty." Add smaller subtext: "It was not." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping leaf silhouette and sad posture in elegant composition. Add large clean overlay text: "Everything pointed to water." Add smaller subtext: "At least at first glance." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tasteful watering motion with soft shadows. Add large clean overlay text: "That guess made sense." Add smaller subtext: "And it was still wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide with symptom card and hidden cause card. Add large clean overlay text: "The symptom was real." Add smaller subtext: "The cause was different." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-zone cue and pot detail in editorial macro style. Add large clean overlay text: "The problem was below the surface." Add smaller subtext: "Not on the leaf." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm lesson slide with strong hierarchy. Add large clean overlay text: "This is why diagnosis matters." Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished story CTA close. Add large clean overlay text: "Comment 'part 2' for the recovery." Add smaller subtext: "I will break down what changed." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 14 - -- **Title:** If Your Plant Suddenly Looks Worse -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** If your plant suddenly looks worse, check in this order. -- **CTA:** Save this order. -- **Caption:** This is another high-value save post. It gives a simple order of operations for stressful moments and helps train the audience to think with a clearer system. -- **Hashtags:** `#planttok #houseplanthelp #plantchecklist #plantcaretips #plantproblem #greenlens #plantrescue` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic clean opener with plant showing sudden decline. Add large clean overlay text: "If your plant suddenly looks worse," Add smaller subtext: "check in this order." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant near light source in airy editorial frame. Add large clean overlay text: "1. Environment change" Add smaller subtext: "What shifted around the plant?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil and moisture check shown elegantly. Add large clean overlay text: "2. Soil condition" Add smaller subtext: "Wet, dry, compact, or sour?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf underside inspection with magnifying lens. Add large clean overlay text: "3. Leaf inspection" Add smaller subtext: "Look for pattern and pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: pot base and drainage holes in premium macro detail. Add large clean overlay text: "4. Root and pot clues" Add smaller subtext: "Drainage changes the whole diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm summary layout with numbered botanical cards. Add large clean overlay text: "Order matters." Add smaller subtext: "It prevents bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA slide with elegant whitespace. Add large clean overlay text: "Save this order." Add smaller subtext: "Use it the next time panic starts." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 15 - -- **Title:** Before You Water Again -- **Pillar:** Selling -- **Slides:** 7 -- **Hook:** Before you water again: -- **CTA:** Use GreenLens to check the cause first. -- **Caption:** This is a direct product post built around a useful warning. The product should feel like the logical next step after uncertainty, not a random interruption. -- **Hashtags:** `#planttok #plantapp #greenlens #plantdiagnosis #houseplants #planthelp #plantcare` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean, high-stakes plant-care opener with watering can and stressed plant. Add large clean overlay text: "Before you water again:" Add smaller subtext: "Pause here first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant with moist soil implied through subtle visual cues. Add large clean overlay text: "The leaves may be misleading." Add smaller subtext: "The root cause may not be thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice concept in editorial layout. Add large clean overlay text: "Random tips create noise." Add smaller subtext: "You need clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: sleek diagnostic atmosphere with botanical-modern tension. Add large clean overlay text: "Check the cause first." Add smaller subtext: "That changes the next move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: refined problem-solution frame with generous negative space. Add large clean overlay text: "That is where GreenLens helps." Add smaller subtext: "It is built for the Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium closing lead-in with subtle brand energy. Add large clean overlay text: "Do not water on instinct." Add smaller subtext: "Diagnose first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: direct app CTA close in polished editorial style. Add large clean overlay text: "Use GreenLens to check the cause first." Add smaller subtext: "Then treat the right problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 16 - -- **Title:** 5 Mistakes That Make Plant Problems Worse -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** 5 mistakes that make plant problems worse. -- **CTA:** Follow for the fix list. -- **Caption:** Mistake-based posts are strong because they trigger self-recognition and correction at the same time. This one should feel practical, slightly sharp, and easy to share. -- **Hashtags:** `#planttok #plantmistakes #houseplantcare #plantcaretips #urbanjungle #greenlens #plantrescue` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium list-style opener with struggling plant and elegant paper texture. Add large clean overlay text: "5 mistakes that make plant problems worse." Add smaller subtext: "Most beginners do at least one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant with watering cue. Add large clean overlay text: "Mistake 1" Add smaller subtext: "Watering from panic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant being moved or rotated in a tasteful editorial frame. Add large clean overlay text: "Mistake 2" Add smaller subtext: "Changing too much at once." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: fertilizer, repotting, or tool cue shown minimally. Add large clean overlay text: "Mistake 3" Add smaller subtext: "Treating before diagnosing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf-only focus that ignores roots in conceptual composition. Add large clean overlay text: "Mistake 4" Add smaller subtext: "Reading the leaf without context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice cards in refined layout. Add large clean overlay text: "Mistake 5" Add smaller subtext: "Trusting random tips over observation." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong closing series CTA. Add large clean overlay text: "Follow for the fix list." Add smaller subtext: "I will break down what to do instead." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 17 - -- **Title:** Soft Leaves Can Mean More Than One Thing -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Soft leaves can mean more than one thing. -- **CTA:** Save this symptom guide. -- **Caption:** This post reinforces a deeper diagnostic principle: one visible symptom can map to multiple causes. That is exactly the kind of mindset shift GreenLens wants to build. -- **Hashtags:** `#softleaves #planttok #planthelp #houseplants #plantdiagnosis #greenlens #plantcaretips` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant macro of soft, stressed leaves with premium herbarium framing. Add large clean overlay text: "Soft leaves can mean more than one thing." Add smaller subtext: "That is why guessing fails." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf tissue detail in soft natural light. Add large clean overlay text: "Sometimes it is water stress." Add smaller subtext: "But not always." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: warm window light and heat-stress mood with minimal composition. Add large clean overlay text: "Sometimes it is heat or light stress." Add smaller subtext: "Environment changes the meaning." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: pot and root cue in clean editorial macro. Add large clean overlay text: "Sometimes it starts at the roots." Add smaller subtext: "The leaf only shows the signal." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: specimen-card layout with multiple possible causes. Add large clean overlay text: "Same symptom. Different paths." Add smaller subtext: "Context decides the answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm diagnostic authority slide. Add large clean overlay text: "Read the pattern, not just the leaf." Add smaller subtext: "That is the shift." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with refined hierarchy. Add large clean overlay text: "Save this symptom guide." Add smaller subtext: "You will need it later." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 18 - -- **Title:** What A Failing Rescue Taught Me -- **Pillar:** Storytelling -- **Slides:** 9 -- **Hook:** What a failing rescue taught me about guessing. -- **CTA:** Tell me your worst plant mistake. -- **Caption:** This story is less about one plant and more about the pattern behind bad rescue attempts. It should feel honest, slightly painful, and useful. -- **Hashtags:** `#planttok #plantstory #plantmistakes #houseplants #plantrescue #greenlens #learnedthehardway` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: moody editorial opener with a declining plant and textured cream paper background. Add large clean overlay text: "What a failing rescue taught me about guessing." Add smaller subtext: "It changed how I approach every sick plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant in early distress shown in soft, premium light. Add large clean overlay text: "At first it looked manageable." Add smaller subtext: "Then I reacted too fast." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple care actions implied through elegant still-life tools. Add large clean overlay text: "I did what felt helpful." Add smaller subtext: "More water. More changes. More movement." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual decline becoming more obvious. Add large clean overlay text: "The plant did not improve." Add smaller subtext: "It got worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual turning-point slide with root-cause card emerging. Add large clean overlay text: "That was the real lesson." Add smaller subtext: "I was treating the wrong issue." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root stress and environmental context suggested in a clean editorial composition. Add large clean overlay text: "Symptoms need context." Add smaller subtext: "Without that, treatment is just guessing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm recovery framework slide with elegant numbered cards. Add large clean overlay text: "Now I use a triage flow." Add smaller subtext: "Observe. Narrow down. Then act." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand philosophy slide with subtle GreenLens tone. Add large clean overlay text: "That is the Plant ER mindset." Add smaller subtext: "Calm clarity beats panic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong comment CTA close. Add large clean overlay text: "Tell me your worst plant mistake." Add smaller subtext: "Most people have one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 19 - -- **Title:** How To Triage A Sick Plant In 5 Minutes -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** How to triage a sick plant in 5 minutes. -- **CTA:** Save this 5-minute flow. -- **Caption:** Specific promises often outperform generic advice. This one gives a short, repeatable system for plant emergencies and is one of the strongest candidates for a recurring content series. -- **Hashtags:** `#planttok #planttriage #houseplants #planthelp #plantcaretips #greenlens #plantclinic` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium triage opener with stopwatch mood and stressed plant in elegant balance. Add large clean overlay text: "How to triage a sick plant in 5 minutes." Add smaller subtext: "A calm system for a stressful moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: quick visual scan of the plant in clean editorial framing. Add large clean overlay text: "Minute 1" Add smaller subtext: "Look at the whole plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: finger checking soil moisture and pot condition. Add large clean overlay text: "Minute 2" Add smaller subtext: "Check soil and drainage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close inspection of leaves and undersides for pattern and pests. Add large clean overlay text: "Minute 3" Add smaller subtext: "Inspect the leaves." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: light and environment cues around the plant. Add large clean overlay text: "Minute 4" Add smaller subtext: "Check the environment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary decision slide with elegant numbered cards. Add large clean overlay text: "Minute 5" Add smaller subtext: "Narrow down the most likely cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA close with strong hierarchy. Add large clean overlay text: "Save this 5-minute flow." Add smaller subtext: "Use it before you guess." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 20 - -- **Title:** A Watering Schedule Will Not Save A Stressed Plant -- **Pillar:** Educational -- **Slides:** 5 -- **Hook:** A watering schedule will not save a stressed plant. -- **CTA:** Follow for smarter plant care. -- **Caption:** This post challenges one of the most common beginner systems. It is short, sharp, and built to provoke comments from people who have been told to stick to a schedule. -- **Hashtags:** `#planttok #plantmyths #wateringplants #houseplantcare #planttips #greenlens #planthelp` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant calendar and stressed plant composition with soft cream paper texture. Add large clean overlay text: "A watering schedule will not save a stressed plant." Add smaller subtext: "Context matters more than routine." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: neat calendar cue beside a drooping plant. Add large clean overlay text: "Schedules feel organized." Add smaller subtext: "That is why people trust them." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual contrast between calendar logic and plant signals. Add large clean overlay text: "But plants do not read calendars." Add smaller subtext: "They respond to conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: environment and soil cues shown with calm clarity. Add large clean overlay text: "Read the plant, not the date." Add smaller subtext: "That is smarter care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished follow CTA close. Add large clean overlay text: "Follow for smarter plant care." Add smaller subtext: "And fewer bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 21 - -- **Title:** Stop Doing This When Leaves Turn Yellow -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Stop doing this when leaves turn yellow. -- **CTA:** Save this before you act. -- **Caption:** Warning-style posts work because they create urgency without needing clickbait. This one tells people that their next move may make the plant worse. -- **Hashtags:** `#yellowleaves #planttok #houseplants #plantcaretips #plantmistakes #greenlens #plantdiagnosis` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: framed yellow-leaf hero slide with elegant paper layering. Add large clean overlay text: "Stop doing this when leaves turn yellow." Add smaller subtext: "It makes the problem worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: yellow leaf pattern shown in a clean editorial crop. Add large clean overlay text: "Do not assume thirst." Add smaller subtext: "That is the first trap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: repotting or overreacting cue shown minimally. Add large clean overlay text: "Do not change everything at once." Add smaller subtext: "More action creates more stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual symptom-versus-cause frame with specimen cards. Add large clean overlay text: "Yellow is the signal." Add smaller subtext: "Not the diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: checklist mood with light, soil, and root cues. Add large clean overlay text: "Check context first." Add smaller subtext: "Pattern. Soil. Light. Timing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority summary slide. Add large clean overlay text: "Good diagnosis slows you down." Add smaller subtext: "That is how you avoid damage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with polished hierarchy. Add large clean overlay text: "Save this before you act." Add smaller subtext: "You will need it when yellowing starts." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 22 - -- **Title:** I Thought This Plant Was Gone -- **Pillar:** Storytelling -- **Slides:** 9 -- **Hook:** I thought this plant was gone. I was wrong. -- **CTA:** Comment if you want the recovery steps. -- **Caption:** This is a rescue story with emotional tension and a hopeful turn. It should feel grounded, not exaggerated, and it should end with a lesson that reinforces diagnosis over panic. -- **Hashtags:** `#planttok #plantrescue #houseplants #plantstory #urbanjungle #greenlens #plantrecovery` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but elegant opener with a severely stressed plant in soft natural light. Add large clean overlay text: "I thought this plant was gone." Add smaller subtext: "I was wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of drooping leaves and visible decline, premium documentary feel. Add large clean overlay text: "It looked beyond saving." Add smaller subtext: "That was the emotional moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tense care-decision still life with watering can and tools. Add large clean overlay text: "The temptation was panic." Add smaller subtext: "Water, move, repot, do anything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual pause slide with elegant negative space. Add large clean overlay text: "Instead, I slowed down." Add smaller subtext: "That changed everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: inspection of roots, soil, and light cues in refined layout. Add large clean overlay text: "The clues were there." Add smaller subtext: "The problem was not what it looked like." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause reveal slide with botanical cards and paper textures. Add large clean overlay text: "The diagnosis changed the plan." Add smaller subtext: "That is the turning point." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calmer recovery mood with more balanced plant posture. Add large clean overlay text: "Recovery started with clarity." Add smaller subtext: "Not with more random care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: lesson summary slide with premium hierarchy. Add large clean overlay text: "This is why symptoms are not enough." Add smaller subtext: "Context saves plants." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: story CTA close. Add large clean overlay text: "Comment if you want the recovery steps." Add smaller subtext: "I can break them down next." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 23 - -- **Title:** Wilting Is A Symptom, Not A Diagnosis -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** Wilting is a symptom, not a diagnosis. -- **CTA:** Save this distinction. -- **Caption:** This is one of the clearest diagnostic-identity posts in the whole plan. It teaches the audience how to think, not just what to do in one situation. -- **Hashtags:** `#wiltingplant #planttok #plantcare #houseplanthelp #plantdiagnosis #greenlens #planttips` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: wilted plant framed like a modern herbarium specimen. Add large clean overlay text: "Wilting is a symptom, not a diagnosis." Add smaller subtext: "That distinction matters." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant close-up of wilted foliage. Add large clean overlay text: "It tells you something is wrong." Add smaller subtext: "It does not tell you what." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual multiple-cause slide with balanced editorial cards. Add large clean overlay text: "Water stress is one option." Add smaller subtext: "But not the only one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: heat, roots, and environment cues suggested in a minimal layout. Add large clean overlay text: "Roots, heat, light, and shock matter too." Add smaller subtext: "Context changes the meaning." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm observation mood with leaf and soil inspection. Add large clean overlay text: "Read the pattern around the wilt." Add smaller subtext: "Do not react to the posture alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: authority slide with subtle botanical overlays and paper depth. Add large clean overlay text: "This is the Plant ER mindset." Add smaller subtext: "Find the cause first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA close. Add large clean overlay text: "Save this distinction." Add smaller subtext: "It will change how you diagnose." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 24 - -- **Title:** Before You Repot A Stressed Plant -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** What to inspect before repotting a stressed plant. -- **CTA:** Save this repot checklist. -- **Caption:** Repotting feels like action, which is why stressed-plant owners reach for it fast. This slideshow should interrupt that reflex and add a better decision layer first. -- **Hashtags:** `#repotting #planttok #houseplants #plantcaretips #planthelp #greenlens #plantstress` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant repotting opener with plant, pot, and soil in premium still life. Add large clean overlay text: "Before you repot a stressed plant:" Add smaller subtext: "Inspect these things first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-bound cue shown subtly in macro composition. Add large clean overlay text: "Check the roots." Add smaller subtext: "Are they crowded, rotten, or fine?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil structure and compaction shown in editorial close-up. Add large clean overlay text: "Check the soil." Add smaller subtext: "Compaction and drainage change everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: environment context around the plant with airy natural light. Add large clean overlay text: "Check the environment." Add smaller subtext: "Repotting does not fix bad conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: timing cue with stressed plant and calm pause mood. Add large clean overlay text: "Check the timing." Add smaller subtext: "A stressed plant may not need more shock." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with elegant specimen cards. Add large clean overlay text: "Repotting is not the default rescue." Add smaller subtext: "Diagnosis comes first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with strong editorial hierarchy. Add large clean overlay text: "Save this repot checklist." Add smaller subtext: "Use it before you escalate stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 25 - -- **Title:** If You Are Still Guessing, Do This First -- **Pillar:** Selling -- **Slides:** 7 -- **Hook:** If you are still guessing, do this first. -- **CTA:** Scan your plant with GreenLens. -- **Caption:** By this point in the month, the audience should understand the value of diagnosis enough for a clearer direct-response post. The CTA should feel earned, not abrupt. -- **Hashtags:** `#greenlens #plantapp #planttok #plantdiagnosis #houseplants #planthelp #plantcare` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium problem-state opener with stressed plant and subtle tension. Add large clean overlay text: "If you are still guessing, do this first." Add smaller subtext: "Stop reacting on instinct." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice cards in elegant editorial layout. Add large clean overlay text: "Most people get stuck here." Add smaller subtext: "Too many symptoms. Too many tips." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of stressed plant details with clean framing. Add large clean overlay text: "The symptom is visible." Add smaller subtext: "The cause usually is not." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium diagnosis mood with calm, modern botanical atmosphere. Add large clean overlay text: "That is why cause comes first." Add smaller subtext: "Everything after that gets easier." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand bridge slide with elegant negative space and subtle tech undertone. Add large clean overlay text: "GreenLens is built for that moment." Add smaller subtext: "The Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end app-ad mood without cluttered UI. Add large clean overlay text: "Use clarity before treatment." Add smaller subtext: "That is the whole shift." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: direct brand CTA close with strong hierarchy. Add large clean overlay text: "Scan your plant with GreenLens." Add smaller subtext: "Find the cause before you guess again." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 26 - -- **Title:** Healthy Plants Are Not Cared For By Calendar -- **Pillar:** Educational -- **Slides:** 5 -- **Hook:** Healthy plants are not cared for by calendar. -- **CTA:** Follow for more plant ER rules. -- **Caption:** This is a short, clean rule post. It is designed to feel memorable, slightly provocative, and easy to repeat as part of a GreenLens "Plant ER Rules" series. -- **Hashtags:** `#planttok #plantcaretips #houseplants #wateringplants #plantmyths #greenlens #urbanjungle` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant calendar-and-plant composition on cream paper texture. Add large clean overlay text: "Healthy plants are not cared for by calendar." Add smaller subtext: "They respond to conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tidy schedule cue beside a plant in soft light. Add large clean overlay text: "Schedules feel safe." Add smaller subtext: "That is why beginners love them." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide comparing schedule to real plant signals. Add large clean overlay text: "But the plant lives in context." Add smaller subtext: "Light, heat, roots, soil, season." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm observation scene with plant and environmental cues. Add large clean overlay text: "Read the plant." Add smaller subtext: "Not the date." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: follow CTA close with polished minimal style. Add large clean overlay text: "Follow for more plant ER rules." Add smaller subtext: "Smarter care starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 27 - -- **Title:** Why GreenLens Focuses On Sick Plants -- **Pillar:** Storytelling -- **Slides:** 9 -- **Hook:** Why GreenLens focuses on sick plants, not generic care. -- **CTA:** Follow for more plant ER content. -- **Caption:** This is a positioning post. It should explain why the content feels different from aesthetic plant accounts and why the brand is built around high-stress, high-uncertainty moments. -- **Hashtags:** `#greenlens #planttok #brandstory #houseplants #planthelp #plantdiagnosis #plantcare` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong brand-story opener with elegant botanical paper collage. Add large clean overlay text: "Why GreenLens focuses on sick plants." Add smaller subtext: "Not generic care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: beautiful healthy plant imagery contrasted with subtle distance. Add large clean overlay text: "Pretty plant content is everywhere." Add smaller subtext: "That is not the real gap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant in soft natural light with a premium documentary feel. Add large clean overlay text: "The real pain starts here." Add smaller subtext: "When a plant suddenly looks wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: confusion slide with conflicting advice cards. Add large clean overlay text: "That moment creates panic." Add smaller subtext: "And panic creates bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause and triage concept slide with layered paper textures. Add large clean overlay text: "That is where diagnosis matters most." Add smaller subtext: "Not in calm moments. In urgent ones." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium system slide with botanical-modern clarity. Add large clean overlay text: "So GreenLens became Plant ER." Add smaller subtext: "Clarity for the dying-plant moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: educational bridge slide with elegant whitespace. Add large clean overlay text: "That changes the content too." Add smaller subtext: "Less aesthetic. More useful." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand conviction slide with calm authority and strong hierarchy. Add large clean overlay text: "The mission is simple." Add smaller subtext: "Less guessing. Faster clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished follow CTA close. Add large clean overlay text: "Follow for more plant ER content." Add smaller subtext: "That is the lane." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 28 - -- **Title:** 3 Things Never To Do In Plant Panic Mode -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** 3 things never to do in plant panic mode. -- **CTA:** Save this for emergencies. -- **Caption:** Emergency framing fits GreenLens especially well because it matches the Plant ER angle. This post should feel urgent but still calm and premium. -- **Hashtags:** `#plantpanic #planttok #houseplants #plantmistakes #planthelp #greenlens #plantrescue` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: urgent but elegant opener with stressed plant and layered paper depth. Add large clean overlay text: "3 things never to do in plant panic mode." Add smaller subtext: "These make it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: watering can and stressed plant shown in clean editorial tension. Add large clean overlay text: "Never do this #1" Add smaller subtext: "Water before checking the soil." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple plant-care tools implying overreaction. Add large clean overlay text: "Never do this #2" Add smaller subtext: "Change everything at once." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: repotting or treatment cue in minimal premium layout. Add large clean overlay text: "Never do this #3" Add smaller subtext: "Treat before diagnosing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm conceptual slide with symptom and cause cards. Add large clean overlay text: "Panic rewards bad instincts." Add smaller subtext: "Systems prevent damage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant triage mood with strong editorial clarity. Add large clean overlay text: "Slow down. Narrow it down." Add smaller subtext: "That is the better move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished emergency save CTA close. Add large clean overlay text: "Save this for emergencies." Add smaller subtext: "You will think less clearly in panic mode." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 29 - -- **Title:** The Moment People Realize They Treated The Wrong Issue -- **Pillar:** Storytelling -- **Slides:** 7 -- **Hook:** The moment people realize they treated the wrong issue. -- **CTA:** Comment your biggest symptom confusion. -- **Caption:** This is an empathy post. It mirrors the internal shift people go through when they realize the symptom they treated was never the true cause. -- **Hashtags:** `#planttok #houseplants #plantstory #plantdiagnosis #planthelp #greenlens #plantcaretips` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: emotional but elegant opener with stressed plant and thoughtful negative space. Add large clean overlay text: "The moment people realize they treated the wrong issue." Add smaller subtext: "It is always the same feeling." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: care action shown in a refined documentary style. Add large clean overlay text: "At first, the fix feels logical." Add smaller subtext: "That is why the mistake happens." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant decline continuing despite intervention. Add large clean overlay text: "Then nothing improves." Add smaller subtext: "Or the plant gets worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual realization slide with symptom card fading and cause card appearing. Add large clean overlay text: "That is the turning point." Add smaller subtext: "The symptom was not the answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm diagnostic scene with soil, roots, and environment cues. Add large clean overlay text: "The real question changes." Add smaller subtext: "What is actually causing this?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: insight summary slide with premium editorial hierarchy. Add large clean overlay text: "That shift changes everything." Add smaller subtext: "Diagnosis becomes the first move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong comment CTA close with elegant whitespace. Add large clean overlay text: "Comment your biggest symptom confusion." Add smaller subtext: "That is where most mistakes begin." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. -## Day 30 - -- **Title:** The 5 Warning Signs Most Beginners Misread -- **Pillar:** Educational -- **Slides:** 7 -- **Hook:** The 5 warning signs most beginners misread. -- **CTA:** Follow and scan with GreenLens next time. -- **Caption:** This final post works as a recap and as a bridge into month two. It repackages the strongest diagnostic themes from the first 30 days into one strong entry-point post. -- **Hashtags:** `#planttok #houseplants #plantwarning #plantdiagnosis #greenlens #plantcare #urbanjungle` -- **Slide Prompt Sequence:** - - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant roundup opener with layered botanical paper textures and a stressed plant. Add large clean overlay text: "The 5 warning signs most beginners misread." Add smaller subtext: "These create most of the bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: yellow leaf specimen framed on cream paper. Add large clean overlay text: "1. Yellow leaves" Add smaller subtext: "A signal, not a diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant in soft, premium window light. Add large clean overlay text: "2. Drooping" Add smaller subtext: "Not always thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brown leaf-tip macro with refined editorial detail. Add large clean overlay text: "3. Brown tips" Add smaller subtext: "Not always dryness." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: wilted leaf or soft leaf specimen card in clean layout. Add large clean overlay text: "4. Wilting or softness" Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with five refined specimen cards in premium hierarchy. Add large clean overlay text: "5. Sudden decline" Add smaller subtext: "It usually starts earlier than you think." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: final month-close CTA in polished GreenLens style. Add large clean overlay text: "Follow and scan with GreenLens next time." Add smaller subtext: "Month two starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. - + +## Day 1 + +- **Title:** Your Plant Is Not Dying Suddenly +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Your plant is not dying suddenly. +- **CTA:** Save this before you water again. +- **Caption:** Most houseplants do not crash overnight. The early signs are usually there, but people misread them and react too fast. This slideshow reframes the problem so beginners stop guessing and start observing with more clarity. +- **Hashtags:** `#planttok #houseplants #plantcare #plantdiagnosis #urbanjungle #greenlens #planthelp` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm hero slide with elegant leaf shadows and premium paper textures. Add large clean overlay text: "Your plant is not dying suddenly." Add smaller subtext: "You are missing the early warning signs." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed indoor plant with soft yellowing leaves in natural window light. Add large clean overlay text: "The signs usually start small." Add smaller subtext: "A few leaves change before the whole plant declines." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close crop of drooping leaves and slightly wet soil in a clean editorial frame. Add large clean overlay text: "Most people react too fast." Add smaller subtext: "They treat the symptom, not the cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual botanical layout showing symptom cards versus root-cause cards. Add large clean overlay text: "Symptom is not the diagnosis." Add smaller subtext: "Yellow, drooping, or brown does not mean one answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: refined checklist composition with leaf, pot, soil, and light cues. Add large clean overlay text: "Check this first." Add smaller subtext: "Light. Water. Soil. Pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm, premium plant triage mood with elegant negative space. Add large clean overlay text: "Do not guess." Add smaller subtext: "Observe before you react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end closing frame with strong editorial balance and subtle GreenLens energy. Add large clean overlay text: "Save this before you water again." Add smaller subtext: "You will need it the next time a plant looks off." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 2 + +- **Title:** Drooping Does Not Always Mean Thirst +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Drooping does not always mean thirst. +- **CTA:** Follow for more plant ER myths. +- **Caption:** Drooping leaves trigger panic, and panic usually leads to the wrong fix. This slideshow teaches people that overwatering, root stress, and poor drainage can look like thirst at first glance. +- **Hashtags:** `#planttok #plantmyths #houseplanthelp #wateringplants #plantcaretips #greenlens #plantrescue` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant centered in a minimalist herbarium composition. Add large clean overlay text: "Drooping does not always mean thirst." Add smaller subtext: "That is the trap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: sad-looking plant beside a watering can, clean editorial tension. Add large clean overlay text: "It looks dry." Add smaller subtext: "But looks can be misleading." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: rich dark soil and stressed roots suggested through elegant macro details. Add large clean overlay text: "Too much water can look the same." Add smaller subtext: "Root stress can mimic thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: split concept of underwatering versus overwatering with subtle botanical imagery. Add large clean overlay text: "Same symptom. Different cause." Add smaller subtext: "That is why guessing fails." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: bright, clean checklist slide with leaf, soil, and pot drainage cues. Add large clean overlay text: "Check before you water." Add smaller subtext: "Soil moisture. Pot drainage. Root smell." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority slide with elegant paper textures. Add large clean overlay text: "More water is not always help." Add smaller subtext: "Sometimes it makes the problem worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with subtle botanical forms. Add large clean overlay text: "Follow for more plant ER myths." Add smaller subtext: "Learn the warning signs before you react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 3 + +- **Title:** I Almost Killed This Plant By Trying To Help It +- **Pillar:** Storytelling +- **Slides:** 9 +- **Hook:** I almost killed this plant by trying to help it. +- **CTA:** Comment "help" for more rescue stories. +- **Caption:** This is a rescue story about reacting too fast, trusting the wrong assumption, and learning why symptoms are not enough. It humanizes the brand while still teaching the diagnostic mindset behind GreenLens. +- **Hashtags:** `#planttok #plantstory #plantrescue #houseplants #beginnerplants #greenlens #plantmistakes` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but clean editorial opener with a struggling plant in soft natural light. Add large clean overlay text: "I almost killed this plant by trying to help it." Add smaller subtext: "And I thought I was doing the right thing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant starting to droop with a few damaged leaves, high-end magazine framing. Add large clean overlay text: "It started with a small warning sign." Add smaller subtext: "Nothing looked urgent yet." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: closer view of the same plant looking more stressed. Add large clean overlay text: "I assumed it was thirsty." Add smaller subtext: "That was my first mistake." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: watering action shown in a tasteful editorial way, not busy. Add large clean overlay text: "So I watered it more." Add smaller subtext: "And the plant got worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual shift toward tension and decline with darker soil detail. Add large clean overlay text: "The symptom was real." Add smaller subtext: "The diagnosis was wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual root-cause slide with botanical cards and layered paper textures. Add large clean overlay text: "It was root stress, not thirst." Add smaller subtext: "I treated the wrong problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm recovery mood with restored balance and elegant whitespace. Add large clean overlay text: "That changed how I look at plants." Add smaller subtext: "Now I diagnose before I react." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium educational summary slide with clean botanical cues. Add large clean overlay text: "This is the real lesson." Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished close with strong editorial hierarchy. Add large clean overlay text: "Comment 'help' for more rescue stories." Add smaller subtext: "I will break down more real plant mistakes." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 4 + +- **Title:** Check This First +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Check this first: light, water, soil, pests. +- **CTA:** Save this checklist. +- **Caption:** This is the core triage flow for people in a dying-plant moment. It turns panic into a usable order of operations and trains your audience to think in the same sequence GreenLens uses. +- **Hashtags:** `#planttok #plantchecklist #houseplantcare #planttriage #planttips #greenlens #plantclinic` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean hero slide with subtle leaf collage and premium paper layering. Add large clean overlay text: "Check this first." Add smaller subtext: "Light. Water. Soil. Pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant plant near window with soft directional light. Add large clean overlay text: "Step 1: Light." Add smaller subtext: "Has anything changed recently?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: moist soil and pot shown with calm, premium framing. Add large clean overlay text: "Step 2: Water." Add smaller subtext: "Do not assume. Check the soil." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of soil texture and pot drainage. Add large clean overlay text: "Step 3: Soil." Add smaller subtext: "Compaction and drainage matter." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tasteful macro view of leaf underside and pest inspection. Add large clean overlay text: "Step 4: Pests." Add smaller subtext: "Always inspect the hidden areas." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with four elegant specimen cards. Add large clean overlay text: "This order saves time." Add smaller subtext: "And prevents bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium closing frame with calm call-to-action. Add large clean overlay text: "Save this checklist." Add smaller subtext: "Use it next time a plant looks wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 5 + +- **Title:** Yellow Leaves Are Not The Diagnosis +- **Pillar:** Educational +- **Slides:** 5 +- **Hook:** Yellow leaves are not the diagnosis. +- **CTA:** Save this for later. +- **Caption:** Yellow leaves can mean several different things depending on pattern, age, soil, light, and timing. This post is designed to stop the audience from treating one symptom like a full answer. +- **Hashtags:** `#yellowleaves #planttok #planthelp #houseplants #plantdiagnosis #greenlens #plantcare` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: framed yellow leaf specimen on textured cream paper. Add large clean overlay text: "Yellow leaves are not the diagnosis." Add smaller subtext: "They are just the signal." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant layout of one yellow leaf among healthy foliage. Add large clean overlay text: "One symptom can mean many things." Add smaller subtext: "Water, roots, light, age, or stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual comparison of different yellowing patterns. Add large clean overlay text: "Pattern matters." Add smaller subtext: "Where and how the yellowing appears changes the story." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm checklist scene with leaves, soil, and window light. Add large clean overlay text: "Look at context first." Add smaller subtext: "Do not fix color. Find the cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end closing frame with clean typography. Add large clean overlay text: "Save this for later." Add smaller subtext: "You will need it when yellow leaves show up." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 6 + +- **Title:** The Most Common Plant Mistake +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** The most common plant mistake? Panic watering. +- **CTA:** Follow for mistake #2. +- **Caption:** This post turns a common beginner reflex into a memorable warning. It should feel slightly sharp, highly relatable, and useful enough that viewers follow for the next mistake in the series. +- **Hashtags:** `#planttok #plantmistake #wateringplants #houseplanttips #beginnerplants #greenlens #plantcaretips` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean, premium opener with watering can and stressed plant in elegant tension. Add large clean overlay text: "The most common plant mistake?" Add smaller subtext: "Panic watering." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant that appears thirsty at first glance. Add large clean overlay text: "It feels helpful." Add smaller subtext: "That is why people do it fast." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: deep dark soil and heavy pot shown in editorial close-up. Add large clean overlay text: "But the guess is often wrong." Add smaller subtext: "And the extra water adds stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual mistake slide with minimal botanical iconography. Add large clean overlay text: "Care without diagnosis is risk." Add smaller subtext: "Good intentions can still harm the plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: simple checklist composition with soil and roots cues. Add large clean overlay text: "Pause and check first." Add smaller subtext: "Soil moisture. Drainage. Roots." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority slide with refined paper textures. Add large clean overlay text: "Plant care should feel calmer." Add smaller subtext: "Not more reactive." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong closing frame with subtle series energy. Add large clean overlay text: "Follow for mistake #2." Add smaller subtext: "There are more ways beginners make it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 7 + +- **Title:** When Your Plant Looks Worse Overnight +- **Pillar:** Selling +- **Slides:** 7 +- **Hook:** When your plant looks worse overnight: +- **CTA:** Scan your plant with GreenLens. +- **Caption:** This is the first product-oriented post, but it still starts from a real pain moment. The point is not to sell an app out of nowhere. The point is to present GreenLens as relief when guessing is no longer good enough. +- **Hashtags:** `#planttok #plantapp #plantdiagnosis #greenlens #houseplants #planthelp #urbanjungle` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but clean plant decline moment in soft natural light. Add large clean overlay text: "When your plant looks worse overnight:" Add smaller subtext: "That is when people start guessing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant close-up of visible stress signs on a houseplant. Add large clean overlay text: "Yellow leaves." Add smaller subtext: "Drooping stems. Soft tissue." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual confusion slide with multiple conflicting care cues. Add large clean overlay text: "The internet gives 4 different answers." Add smaller subtext: "That does not create clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium diagnosis mood with clean modern framing and subtle tech undertone. Add large clean overlay text: "You need the cause first." Add smaller subtext: "Not another random tip." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm problem-solution slide with elegant negative space. Add large clean overlay text: "That is the Plant ER moment." Add smaller subtext: "Fast clarity matters most here." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium botanical app-ad atmosphere without cluttered UI. Add large clean overlay text: "Use GreenLens to check the cause." Add smaller subtext: "Before you treat the wrong problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean closing frame with strong typography and subtle brand energy. Add large clean overlay text: "Scan your plant with GreenLens." Add smaller subtext: "Get clarity before you guess again." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 8 + +- **Title:** Brown Tips Do Not Always Mean Dryness +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Brown tips do not always mean dryness. +- **CTA:** Save this before trimming anything. +- **Caption:** Brown tips are easy to oversimplify. This slideshow teaches that water quality, humidity, fertilizer buildup, and root issues can all show up in similar ways. +- **Hashtags:** `#browntips #planttok #plantcare #houseplanthelp #plantproblems #greenlens #planttips` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium specimen-style leaf with brown tips framed on textured paper. Add large clean overlay text: "Brown tips do not always mean dryness." Add smaller subtext: "The usual guess is too simple." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant macro of a leaf edge with dry browning. Add large clean overlay text: "Yes, dryness can cause it." Add smaller subtext: "But it is not the only reason." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: subtle water glass, mineral hint, and plant leaf in editorial balance. Add large clean overlay text: "Water quality matters too." Add smaller subtext: "Mineral buildup can show up on the leaf." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: low-humidity mood with soft dry atmosphere around the plant. Add large clean overlay text: "Humidity can be part of it." Add smaller subtext: "Environment changes the pattern." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil and pot close-up with elegant composition. Add large clean overlay text: "Roots and soil matter too." Add smaller subtext: "The leaf is only where the signal appears." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm summary slide with multiple cause cards. Add large clean overlay text: "Same symptom. Multiple causes." Add smaller subtext: "That is why trimming is not the fix." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing frame with refined hierarchy. Add large clean overlay text: "Save this before trimming anything." Add smaller subtext: "Find the cause first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 9 + +- **Title:** Why I Stopped Trusting Random Plant Tips +- **Pillar:** Storytelling +- **Slides:** 9 +- **Hook:** Why I stopped trusting random plant tips. +- **CTA:** Follow for the full plant ER system. +- **Caption:** This story sharpens the brand's position. It explains why generic plant hacks break down without context and why diagnosis is the real value. +- **Hashtags:** `#planttok #plantstory #planttips #houseplantcare #plantadvice #greenlens #plantclinic` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant opener with layered paper textures and a stressed plant in soft natural light. Add large clean overlay text: "Why I stopped trusting random plant tips." Add smaller subtext: "They sounded helpful. They were not enough." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant phone-search mood with clean, minimal editorial composition. Add large clean overlay text: "The advice was always confident." Add smaller subtext: "But the answers never matched." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide with conflicting care cards floating in elegant layout. Add large clean overlay text: "Water more. Water less. Repot. Wait." Add smaller subtext: "Too many tips. No real diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant shown with premium documentary feel. Add large clean overlay text: "The plant still got worse." Add smaller subtext: "Because symptoms are not enough." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause concept slide with specimen cards and paper layers. Add large clean overlay text: "Context changes everything." Add smaller subtext: "Light, roots, soil, timing, pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm editorial transition toward clarity and order. Add large clean overlay text: "That changed the whole approach." Add smaller subtext: "I stopped collecting tips." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium system slide with botanical diagnostics mood. Add large clean overlay text: "I started looking for causes." Add smaller subtext: "That is what actually helps." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant brand-positioning slide with generous whitespace. Add large clean overlay text: "That is why GreenLens exists." Add smaller subtext: "For the Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with strong follow CTA. Add large clean overlay text: "Follow for the full plant ER system." Add smaller subtext: "I will keep breaking it down." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 10 + +- **Title:** The First 3 Things To Check On A Sick Plant +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** The first 3 things to check on a sick plant. +- **CTA:** Save this triage flow. +- **Caption:** Fast frameworks perform because they reduce anxiety. This one gives beginners a short triage system they can remember in a stressful moment. +- **Hashtags:** `#planttok #planttriage #sickplant #houseplants #plantcaretips #greenlens #planthelp` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant triage opener with a struggling plant centered on cream paper textures. Add large clean overlay text: "The first 3 things to check on a sick plant." Add smaller subtext: "Before you do anything else." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: window light and plant placement shown in a premium editorial frame. Add large clean overlay text: "1. Light" Add smaller subtext: "Did the environment change first?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of soil surface and finger moisture check. Add large clean overlay text: "2. Soil moisture" Add smaller subtext: "Do not guess from the leaves alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant view of pot base and drainage details. Add large clean overlay text: "3. Pot and drainage" Add smaller subtext: "Stagnant roots change everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with three refined specimen cards. Add large clean overlay text: "These 3 checks catch a lot." Add smaller subtext: "Before you escalate the situation." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority frame with subtle leaf overlays. Add large clean overlay text: "A system beats panic." Add smaller subtext: "Especially with a stressed plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished save CTA slide. Add large clean overlay text: "Save this triage flow." Add smaller subtext: "You will not remember it under stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 11 + +- **Title:** More Care Is Not Always Better +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** More care is not always better. +- **CTA:** Comment if you have done this too. +- **Caption:** This post challenges a very common beginner instinct: if a plant looks stressed, do more. That belief feels caring, but it often creates even more stress for the plant. +- **Hashtags:** `#planttok #plantcare #houseplanthelp #plantmistakes #urbanjungle #greenlens #beginnerplants` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant opener with stressed plant and layered paper textures. Add large clean overlay text: "More care is not always better." Add smaller subtext: "That is the uncomfortable truth." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple plant-care tools arranged in an editorial still life. Add large clean overlay text: "People react by doing more." Add smaller subtext: "More water. More movement. More changes." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant looking overwhelmed after multiple interventions. Add large clean overlay text: "The plant gets more stressed." Add smaller subtext: "Because the root issue stays the same." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual care-versus-diagnosis slide with calm, minimal structure. Add large clean overlay text: "Attention is not diagnosis." Add smaller subtext: "Action without clarity can backfire." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: quiet observation mood with leaf inspection and soil check. Add large clean overlay text: "Sometimes the best move is pause." Add smaller subtext: "Observe first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: authority slide with soft green tones and botanical overlays. Add large clean overlay text: "Good plant care feels calmer." Add smaller subtext: "Not more chaotic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean comment CTA close. Add large clean overlay text: "Comment if you have done this too." Add smaller subtext: "Most beginners have." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 12 + +- **Title:** Overwatering Often Looks Like Underwatering +- **Pillar:** Educational +- **Slides:** 5 +- **Hook:** Overwatering often looks like underwatering. +- **CTA:** Save this before your next watering. +- **Caption:** This is one of the strongest fast educational ideas in the whole plan. It is surprising, practical, and tightly aligned with the GreenLens diagnosis-first positioning. +- **Hashtags:** `#overwatering #underwatering #planttok #plantcaretips #houseplants #greenlens #plantdiagnosis` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium opener with drooping plant and dark rich soil. Add large clean overlay text: "Overwatering often looks like underwatering." Add smaller subtext: "That is why people get trapped." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping leaves shown in a clean editorial crop. Add large clean overlay text: "The symptom looks similar." Add smaller subtext: "So the instinct feels logical." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual root stress scene with soft macro detail. Add large clean overlay text: "But stressed roots can mimic thirst." Add smaller subtext: "And extra water makes it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: checklist slide with soil, drainage, and pot cues. Add large clean overlay text: "Check the soil before you react." Add smaller subtext: "Never diagnose from drooping alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished closing slide with strong save CTA. Add large clean overlay text: "Save this before your next watering." Add smaller subtext: "It will save you a bad guess." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 13 + +- **Title:** This Plant Looked Thirsty. It Was Not. +- **Pillar:** Storytelling +- **Slides:** 7 +- **Hook:** This plant looked thirsty. It was not. +- **CTA:** Comment "part 2" for the recovery. +- **Caption:** This is a compact case-study story. It keeps the emotional tension high while still teaching the audience to separate the symptom from the actual cause. +- **Hashtags:** `#planttok #plantstory #houseplants #plantrescue #plantcare #greenlens #plantcase` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant in soft natural light with premium herbarium styling. Add large clean overlay text: "This plant looked thirsty." Add smaller subtext: "It was not." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping leaf silhouette and sad posture in elegant composition. Add large clean overlay text: "Everything pointed to water." Add smaller subtext: "At least at first glance." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tasteful watering motion with soft shadows. Add large clean overlay text: "That guess made sense." Add smaller subtext: "And it was still wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide with symptom card and hidden cause card. Add large clean overlay text: "The symptom was real." Add smaller subtext: "The cause was different." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-zone cue and pot detail in editorial macro style. Add large clean overlay text: "The problem was below the surface." Add smaller subtext: "Not on the leaf." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm lesson slide with strong hierarchy. Add large clean overlay text: "This is why diagnosis matters." Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished story CTA close. Add large clean overlay text: "Comment 'part 2' for the recovery." Add smaller subtext: "I will break down what changed." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 14 + +- **Title:** If Your Plant Suddenly Looks Worse +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** If your plant suddenly looks worse, check in this order. +- **CTA:** Save this order. +- **Caption:** This is another high-value save post. It gives a simple order of operations for stressful moments and helps train the audience to think with a clearer system. +- **Hashtags:** `#planttok #houseplanthelp #plantchecklist #plantcaretips #plantproblem #greenlens #plantrescue` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic clean opener with plant showing sudden decline. Add large clean overlay text: "If your plant suddenly looks worse," Add smaller subtext: "check in this order." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant near light source in airy editorial frame. Add large clean overlay text: "1. Environment change" Add smaller subtext: "What shifted around the plant?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil and moisture check shown elegantly. Add large clean overlay text: "2. Soil condition" Add smaller subtext: "Wet, dry, compact, or sour?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf underside inspection with magnifying lens. Add large clean overlay text: "3. Leaf inspection" Add smaller subtext: "Look for pattern and pests." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: pot base and drainage holes in premium macro detail. Add large clean overlay text: "4. Root and pot clues" Add smaller subtext: "Drainage changes the whole diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm summary layout with numbered botanical cards. Add large clean overlay text: "Order matters." Add smaller subtext: "It prevents bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA slide with elegant whitespace. Add large clean overlay text: "Save this order." Add smaller subtext: "Use it the next time panic starts." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 15 + +- **Title:** Before You Water Again +- **Pillar:** Selling +- **Slides:** 7 +- **Hook:** Before you water again: +- **CTA:** Use GreenLens to check the cause first. +- **Caption:** This is a direct product post built around a useful warning. The product should feel like the logical next step after uncertainty, not a random interruption. +- **Hashtags:** `#planttok #plantapp #greenlens #plantdiagnosis #houseplants #planthelp #plantcare` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean, high-stakes plant-care opener with watering can and stressed plant. Add large clean overlay text: "Before you water again:" Add smaller subtext: "Pause here first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant with moist soil implied through subtle visual cues. Add large clean overlay text: "The leaves may be misleading." Add smaller subtext: "The root cause may not be thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice concept in editorial layout. Add large clean overlay text: "Random tips create noise." Add smaller subtext: "You need clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: sleek diagnostic atmosphere with botanical-modern tension. Add large clean overlay text: "Check the cause first." Add smaller subtext: "That changes the next move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: refined problem-solution frame with generous negative space. Add large clean overlay text: "That is where GreenLens helps." Add smaller subtext: "It is built for the Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium closing lead-in with subtle brand energy. Add large clean overlay text: "Do not water on instinct." Add smaller subtext: "Diagnose first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: direct app CTA close in polished editorial style. Add large clean overlay text: "Use GreenLens to check the cause first." Add smaller subtext: "Then treat the right problem." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 16 + +- **Title:** 5 Mistakes That Make Plant Problems Worse +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** 5 mistakes that make plant problems worse. +- **CTA:** Follow for the fix list. +- **Caption:** Mistake-based posts are strong because they trigger self-recognition and correction at the same time. This one should feel practical, slightly sharp, and easy to share. +- **Hashtags:** `#planttok #plantmistakes #houseplantcare #plantcaretips #urbanjungle #greenlens #plantrescue` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium list-style opener with struggling plant and elegant paper texture. Add large clean overlay text: "5 mistakes that make plant problems worse." Add smaller subtext: "Most beginners do at least one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant with watering cue. Add large clean overlay text: "Mistake 1" Add smaller subtext: "Watering from panic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant being moved or rotated in a tasteful editorial frame. Add large clean overlay text: "Mistake 2" Add smaller subtext: "Changing too much at once." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: fertilizer, repotting, or tool cue shown minimally. Add large clean overlay text: "Mistake 3" Add smaller subtext: "Treating before diagnosing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf-only focus that ignores roots in conceptual composition. Add large clean overlay text: "Mistake 4" Add smaller subtext: "Reading the leaf without context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice cards in refined layout. Add large clean overlay text: "Mistake 5" Add smaller subtext: "Trusting random tips over observation." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong closing series CTA. Add large clean overlay text: "Follow for the fix list." Add smaller subtext: "I will break down what to do instead." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 17 + +- **Title:** Soft Leaves Can Mean More Than One Thing +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Soft leaves can mean more than one thing. +- **CTA:** Save this symptom guide. +- **Caption:** This post reinforces a deeper diagnostic principle: one visible symptom can map to multiple causes. That is exactly the kind of mindset shift GreenLens wants to build. +- **Hashtags:** `#softleaves #planttok #planthelp #houseplants #plantdiagnosis #greenlens #plantcaretips` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant macro of soft, stressed leaves with premium herbarium framing. Add large clean overlay text: "Soft leaves can mean more than one thing." Add smaller subtext: "That is why guessing fails." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: leaf tissue detail in soft natural light. Add large clean overlay text: "Sometimes it is water stress." Add smaller subtext: "But not always." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: warm window light and heat-stress mood with minimal composition. Add large clean overlay text: "Sometimes it is heat or light stress." Add smaller subtext: "Environment changes the meaning." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: pot and root cue in clean editorial macro. Add large clean overlay text: "Sometimes it starts at the roots." Add smaller subtext: "The leaf only shows the signal." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: specimen-card layout with multiple possible causes. Add large clean overlay text: "Same symptom. Different paths." Add smaller subtext: "Context decides the answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm diagnostic authority slide. Add large clean overlay text: "Read the pattern, not just the leaf." Add smaller subtext: "That is the shift." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with refined hierarchy. Add large clean overlay text: "Save this symptom guide." Add smaller subtext: "You will need it later." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 18 + +- **Title:** What A Failing Rescue Taught Me +- **Pillar:** Storytelling +- **Slides:** 9 +- **Hook:** What a failing rescue taught me about guessing. +- **CTA:** Tell me your worst plant mistake. +- **Caption:** This story is less about one plant and more about the pattern behind bad rescue attempts. It should feel honest, slightly painful, and useful. +- **Hashtags:** `#planttok #plantstory #plantmistakes #houseplants #plantrescue #greenlens #learnedthehardway` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: moody editorial opener with a declining plant and textured cream paper background. Add large clean overlay text: "What a failing rescue taught me about guessing." Add smaller subtext: "It changed how I approach every sick plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant in early distress shown in soft, premium light. Add large clean overlay text: "At first it looked manageable." Add smaller subtext: "Then I reacted too fast." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple care actions implied through elegant still-life tools. Add large clean overlay text: "I did what felt helpful." Add smaller subtext: "More water. More changes. More movement." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual decline becoming more obvious. Add large clean overlay text: "The plant did not improve." Add smaller subtext: "It got worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual turning-point slide with root-cause card emerging. Add large clean overlay text: "That was the real lesson." Add smaller subtext: "I was treating the wrong issue." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root stress and environmental context suggested in a clean editorial composition. Add large clean overlay text: "Symptoms need context." Add smaller subtext: "Without that, treatment is just guessing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm recovery framework slide with elegant numbered cards. Add large clean overlay text: "Now I use a triage flow." Add smaller subtext: "Observe. Narrow down. Then act." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand philosophy slide with subtle GreenLens tone. Add large clean overlay text: "That is the Plant ER mindset." Add smaller subtext: "Calm clarity beats panic." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong comment CTA close. Add large clean overlay text: "Tell me your worst plant mistake." Add smaller subtext: "Most people have one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 19 + +- **Title:** How To Triage A Sick Plant In 5 Minutes +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** How to triage a sick plant in 5 minutes. +- **CTA:** Save this 5-minute flow. +- **Caption:** Specific promises often outperform generic advice. This one gives a short, repeatable system for plant emergencies and is one of the strongest candidates for a recurring content series. +- **Hashtags:** `#planttok #planttriage #houseplants #planthelp #plantcaretips #greenlens #plantclinic` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium triage opener with stopwatch mood and stressed plant in elegant balance. Add large clean overlay text: "How to triage a sick plant in 5 minutes." Add smaller subtext: "A calm system for a stressful moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: quick visual scan of the plant in clean editorial framing. Add large clean overlay text: "Minute 1" Add smaller subtext: "Look at the whole plant." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: finger checking soil moisture and pot condition. Add large clean overlay text: "Minute 2" Add smaller subtext: "Check soil and drainage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close inspection of leaves and undersides for pattern and pests. Add large clean overlay text: "Minute 3" Add smaller subtext: "Inspect the leaves." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: light and environment cues around the plant. Add large clean overlay text: "Minute 4" Add smaller subtext: "Check the environment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary decision slide with elegant numbered cards. Add large clean overlay text: "Minute 5" Add smaller subtext: "Narrow down the most likely cause." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA close with strong hierarchy. Add large clean overlay text: "Save this 5-minute flow." Add smaller subtext: "Use it before you guess." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 20 + +- **Title:** A Watering Schedule Will Not Save A Stressed Plant +- **Pillar:** Educational +- **Slides:** 5 +- **Hook:** A watering schedule will not save a stressed plant. +- **CTA:** Follow for smarter plant care. +- **Caption:** This post challenges one of the most common beginner systems. It is short, sharp, and built to provoke comments from people who have been told to stick to a schedule. +- **Hashtags:** `#planttok #plantmyths #wateringplants #houseplantcare #planttips #greenlens #planthelp` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant calendar and stressed plant composition with soft cream paper texture. Add large clean overlay text: "A watering schedule will not save a stressed plant." Add smaller subtext: "Context matters more than routine." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: neat calendar cue beside a drooping plant. Add large clean overlay text: "Schedules feel organized." Add smaller subtext: "That is why people trust them." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: visual contrast between calendar logic and plant signals. Add large clean overlay text: "But plants do not read calendars." Add smaller subtext: "They respond to conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: environment and soil cues shown with calm clarity. Add large clean overlay text: "Read the plant, not the date." Add smaller subtext: "That is smarter care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished follow CTA close. Add large clean overlay text: "Follow for smarter plant care." Add smaller subtext: "And fewer bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 21 + +- **Title:** Stop Doing This When Leaves Turn Yellow +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Stop doing this when leaves turn yellow. +- **CTA:** Save this before you act. +- **Caption:** Warning-style posts work because they create urgency without needing clickbait. This one tells people that their next move may make the plant worse. +- **Hashtags:** `#yellowleaves #planttok #houseplants #plantcaretips #plantmistakes #greenlens #plantdiagnosis` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: framed yellow-leaf hero slide with elegant paper layering. Add large clean overlay text: "Stop doing this when leaves turn yellow." Add smaller subtext: "It makes the problem worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: yellow leaf pattern shown in a clean editorial crop. Add large clean overlay text: "Do not assume thirst." Add smaller subtext: "That is the first trap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: repotting or overreacting cue shown minimally. Add large clean overlay text: "Do not change everything at once." Add smaller subtext: "More action creates more stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual symptom-versus-cause frame with specimen cards. Add large clean overlay text: "Yellow is the signal." Add smaller subtext: "Not the diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: checklist mood with light, soil, and root cues. Add large clean overlay text: "Check context first." Add smaller subtext: "Pattern. Soil. Light. Timing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm authority summary slide. Add large clean overlay text: "Good diagnosis slows you down." Add smaller subtext: "That is how you avoid damage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with polished hierarchy. Add large clean overlay text: "Save this before you act." Add smaller subtext: "You will need it when yellowing starts." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 22 + +- **Title:** I Thought This Plant Was Gone +- **Pillar:** Storytelling +- **Slides:** 9 +- **Hook:** I thought this plant was gone. I was wrong. +- **CTA:** Comment if you want the recovery steps. +- **Caption:** This is a rescue story with emotional tension and a hopeful turn. It should feel grounded, not exaggerated, and it should end with a lesson that reinforces diagnosis over panic. +- **Hashtags:** `#planttok #plantrescue #houseplants #plantstory #urbanjungle #greenlens #plantrecovery` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: dramatic but elegant opener with a severely stressed plant in soft natural light. Add large clean overlay text: "I thought this plant was gone." Add smaller subtext: "I was wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of drooping leaves and visible decline, premium documentary feel. Add large clean overlay text: "It looked beyond saving." Add smaller subtext: "That was the emotional moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tense care-decision still life with watering can and tools. Add large clean overlay text: "The temptation was panic." Add smaller subtext: "Water, move, repot, do anything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual pause slide with elegant negative space. Add large clean overlay text: "Instead, I slowed down." Add smaller subtext: "That changed everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: inspection of roots, soil, and light cues in refined layout. Add large clean overlay text: "The clues were there." Add smaller subtext: "The problem was not what it looked like." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause reveal slide with botanical cards and paper textures. Add large clean overlay text: "The diagnosis changed the plan." Add smaller subtext: "That is the turning point." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calmer recovery mood with more balanced plant posture. Add large clean overlay text: "Recovery started with clarity." Add smaller subtext: "Not with more random care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: lesson summary slide with premium hierarchy. Add large clean overlay text: "This is why symptoms are not enough." Add smaller subtext: "Context saves plants." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: story CTA close. Add large clean overlay text: "Comment if you want the recovery steps." Add smaller subtext: "I can break them down next." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 23 + +- **Title:** Wilting Is A Symptom, Not A Diagnosis +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** Wilting is a symptom, not a diagnosis. +- **CTA:** Save this distinction. +- **Caption:** This is one of the clearest diagnostic-identity posts in the whole plan. It teaches the audience how to think, not just what to do in one situation. +- **Hashtags:** `#wiltingplant #planttok #plantcare #houseplanthelp #plantdiagnosis #greenlens #planttips` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: wilted plant framed like a modern herbarium specimen. Add large clean overlay text: "Wilting is a symptom, not a diagnosis." Add smaller subtext: "That distinction matters." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant close-up of wilted foliage. Add large clean overlay text: "It tells you something is wrong." Add smaller subtext: "It does not tell you what." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual multiple-cause slide with balanced editorial cards. Add large clean overlay text: "Water stress is one option." Add smaller subtext: "But not the only one." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: heat, roots, and environment cues suggested in a minimal layout. Add large clean overlay text: "Roots, heat, light, and shock matter too." Add smaller subtext: "Context changes the meaning." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm observation mood with leaf and soil inspection. Add large clean overlay text: "Read the pattern around the wilt." Add smaller subtext: "Do not react to the posture alone." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: authority slide with subtle botanical overlays and paper depth. Add large clean overlay text: "This is the Plant ER mindset." Add smaller subtext: "Find the cause first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: clean save CTA close. Add large clean overlay text: "Save this distinction." Add smaller subtext: "It will change how you diagnose." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 24 + +- **Title:** Before You Repot A Stressed Plant +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** What to inspect before repotting a stressed plant. +- **CTA:** Save this repot checklist. +- **Caption:** Repotting feels like action, which is why stressed-plant owners reach for it fast. This slideshow should interrupt that reflex and add a better decision layer first. +- **Hashtags:** `#repotting #planttok #houseplants #plantcaretips #planthelp #greenlens #plantstress` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant repotting opener with plant, pot, and soil in premium still life. Add large clean overlay text: "Before you repot a stressed plant:" Add smaller subtext: "Inspect these things first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-bound cue shown subtly in macro composition. Add large clean overlay text: "Check the roots." Add smaller subtext: "Are they crowded, rotten, or fine?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: soil structure and compaction shown in editorial close-up. Add large clean overlay text: "Check the soil." Add smaller subtext: "Compaction and drainage change everything." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: environment context around the plant with airy natural light. Add large clean overlay text: "Check the environment." Add smaller subtext: "Repotting does not fix bad conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: timing cue with stressed plant and calm pause mood. Add large clean overlay text: "Check the timing." Add smaller subtext: "A stressed plant may not need more shock." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with elegant specimen cards. Add large clean overlay text: "Repotting is not the default rescue." Add smaller subtext: "Diagnosis comes first." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: save CTA close with strong editorial hierarchy. Add large clean overlay text: "Save this repot checklist." Add smaller subtext: "Use it before you escalate stress." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 25 + +- **Title:** If You Are Still Guessing, Do This First +- **Pillar:** Selling +- **Slides:** 7 +- **Hook:** If you are still guessing, do this first. +- **CTA:** Scan your plant with GreenLens. +- **Caption:** By this point in the month, the audience should understand the value of diagnosis enough for a clearer direct-response post. The CTA should feel earned, not abrupt. +- **Hashtags:** `#greenlens #plantapp #planttok #plantdiagnosis #houseplants #planthelp #plantcare` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium problem-state opener with stressed plant and subtle tension. Add large clean overlay text: "If you are still guessing, do this first." Add smaller subtext: "Stop reacting on instinct." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conflicting advice cards in elegant editorial layout. Add large clean overlay text: "Most people get stuck here." Add smaller subtext: "Too many symptoms. Too many tips." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: close-up of stressed plant details with clean framing. Add large clean overlay text: "The symptom is visible." Add smaller subtext: "The cause usually is not." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium diagnosis mood with calm, modern botanical atmosphere. Add large clean overlay text: "That is why cause comes first." Add smaller subtext: "Everything after that gets easier." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand bridge slide with elegant negative space and subtle tech undertone. Add large clean overlay text: "GreenLens is built for that moment." Add smaller subtext: "The Plant ER moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: high-end app-ad mood without cluttered UI. Add large clean overlay text: "Use clarity before treatment." Add smaller subtext: "That is the whole shift." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: direct brand CTA close with strong hierarchy. Add large clean overlay text: "Scan your plant with GreenLens." Add smaller subtext: "Find the cause before you guess again." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 26 + +- **Title:** Healthy Plants Are Not Cared For By Calendar +- **Pillar:** Educational +- **Slides:** 5 +- **Hook:** Healthy plants are not cared for by calendar. +- **CTA:** Follow for more plant ER rules. +- **Caption:** This is a short, clean rule post. It is designed to feel memorable, slightly provocative, and easy to repeat as part of a GreenLens "Plant ER Rules" series. +- **Hashtags:** `#planttok #plantcaretips #houseplants #wateringplants #plantmyths #greenlens #urbanjungle` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant calendar-and-plant composition on cream paper texture. Add large clean overlay text: "Healthy plants are not cared for by calendar." Add smaller subtext: "They respond to conditions." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: tidy schedule cue beside a plant in soft light. Add large clean overlay text: "Schedules feel safe." Add smaller subtext: "That is why beginners love them." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual slide comparing schedule to real plant signals. Add large clean overlay text: "But the plant lives in context." Add smaller subtext: "Light, heat, roots, soil, season." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm observation scene with plant and environmental cues. Add large clean overlay text: "Read the plant." Add smaller subtext: "Not the date." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: follow CTA close with polished minimal style. Add large clean overlay text: "Follow for more plant ER rules." Add smaller subtext: "Smarter care starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 27 + +- **Title:** Why GreenLens Focuses On Sick Plants +- **Pillar:** Storytelling +- **Slides:** 9 +- **Hook:** Why GreenLens focuses on sick plants, not generic care. +- **CTA:** Follow for more plant ER content. +- **Caption:** This is a positioning post. It should explain why the content feels different from aesthetic plant accounts and why the brand is built around high-stress, high-uncertainty moments. +- **Hashtags:** `#greenlens #planttok #brandstory #houseplants #planthelp #plantdiagnosis #plantcare` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong brand-story opener with elegant botanical paper collage. Add large clean overlay text: "Why GreenLens focuses on sick plants." Add smaller subtext: "Not generic care." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: beautiful healthy plant imagery contrasted with subtle distance. Add large clean overlay text: "Pretty plant content is everywhere." Add smaller subtext: "That is not the real gap." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: stressed plant in soft natural light with a premium documentary feel. Add large clean overlay text: "The real pain starts here." Add smaller subtext: "When a plant suddenly looks wrong." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: confusion slide with conflicting advice cards. Add large clean overlay text: "That moment creates panic." Add smaller subtext: "And panic creates bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: root-cause and triage concept slide with layered paper textures. Add large clean overlay text: "That is where diagnosis matters most." Add smaller subtext: "Not in calm moments. In urgent ones." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: premium system slide with botanical-modern clarity. Add large clean overlay text: "So GreenLens became Plant ER." Add smaller subtext: "Clarity for the dying-plant moment." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: educational bridge slide with elegant whitespace. Add large clean overlay text: "That changes the content too." Add smaller subtext: "Less aesthetic. More useful." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 8:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brand conviction slide with calm authority and strong hierarchy. Add large clean overlay text: "The mission is simple." Add smaller subtext: "Less guessing. Faster clarity." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 9:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished follow CTA close. Add large clean overlay text: "Follow for more plant ER content." Add smaller subtext: "That is the lane." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 28 + +- **Title:** 3 Things Never To Do In Plant Panic Mode +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** 3 things never to do in plant panic mode. +- **CTA:** Save this for emergencies. +- **Caption:** Emergency framing fits GreenLens especially well because it matches the Plant ER angle. This post should feel urgent but still calm and premium. +- **Hashtags:** `#plantpanic #planttok #houseplants #plantmistakes #planthelp #greenlens #plantrescue` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: urgent but elegant opener with stressed plant and layered paper depth. Add large clean overlay text: "3 things never to do in plant panic mode." Add smaller subtext: "These make it worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: watering can and stressed plant shown in clean editorial tension. Add large clean overlay text: "Never do this #1" Add smaller subtext: "Water before checking the soil." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: multiple plant-care tools implying overreaction. Add large clean overlay text: "Never do this #2" Add smaller subtext: "Change everything at once." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: repotting or treatment cue in minimal premium layout. Add large clean overlay text: "Never do this #3" Add smaller subtext: "Treat before diagnosing." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm conceptual slide with symptom and cause cards. Add large clean overlay text: "Panic rewards bad instincts." Add smaller subtext: "Systems prevent damage." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant triage mood with strong editorial clarity. Add large clean overlay text: "Slow down. Narrow it down." Add smaller subtext: "That is the better move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: polished emergency save CTA close. Add large clean overlay text: "Save this for emergencies." Add smaller subtext: "You will think less clearly in panic mode." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 29 + +- **Title:** The Moment People Realize They Treated The Wrong Issue +- **Pillar:** Storytelling +- **Slides:** 7 +- **Hook:** The moment people realize they treated the wrong issue. +- **CTA:** Comment your biggest symptom confusion. +- **Caption:** This is an empathy post. It mirrors the internal shift people go through when they realize the symptom they treated was never the true cause. +- **Hashtags:** `#planttok #houseplants #plantstory #plantdiagnosis #planthelp #greenlens #plantcaretips` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: emotional but elegant opener with stressed plant and thoughtful negative space. Add large clean overlay text: "The moment people realize they treated the wrong issue." Add smaller subtext: "It is always the same feeling." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: care action shown in a refined documentary style. Add large clean overlay text: "At first, the fix feels logical." Add smaller subtext: "That is why the mistake happens." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: plant decline continuing despite intervention. Add large clean overlay text: "Then nothing improves." Add smaller subtext: "Or the plant gets worse." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: conceptual realization slide with symptom card fading and cause card appearing. Add large clean overlay text: "That is the turning point." Add smaller subtext: "The symptom was not the answer." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: calm diagnostic scene with soil, roots, and environment cues. Add large clean overlay text: "The real question changes." Add smaller subtext: "What is actually causing this?" Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: insight summary slide with premium editorial hierarchy. Add large clean overlay text: "That shift changes everything." Add smaller subtext: "Diagnosis becomes the first move." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: strong comment CTA close with elegant whitespace. Add large clean overlay text: "Comment your biggest symptom confusion." Add smaller subtext: "That is where most mistakes begin." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. +## Day 30 + +- **Title:** The 5 Warning Signs Most Beginners Misread +- **Pillar:** Educational +- **Slides:** 7 +- **Hook:** The 5 warning signs most beginners misread. +- **CTA:** Follow and scan with GreenLens next time. +- **Caption:** This final post works as a recap and as a bridge into month two. It repackages the strongest diagnostic themes from the first 30 days into one strong entry-point post. +- **Hashtags:** `#planttok #houseplants #plantwarning #plantdiagnosis #greenlens #plantcare #urbanjungle` +- **Slide Prompt Sequence:** + - `Slide 1:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: elegant roundup opener with layered botanical paper textures and a stressed plant. Add large clean overlay text: "The 5 warning signs most beginners misread." Add smaller subtext: "These create most of the bad guesses." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is Slide 1, so include the unbranded GreenLens avatar from the unbranded reference image as a visible supporting character; do not include the GreenLens Pro wordmark on this first slide; reserve the branded avatar for the final slide only. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 2:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: yellow leaf specimen framed on cream paper. Add large clean overlay text: "1. Yellow leaves" Add smaller subtext: "A signal, not a diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 3:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: drooping plant in soft, premium window light. Add large clean overlay text: "2. Drooping" Add smaller subtext: "Not always thirst." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 4:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: brown leaf-tip macro with refined editorial detail. Add large clean overlay text: "3. Brown tips" Add smaller subtext: "Not always dryness." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 5:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: wilted leaf or soft leaf specimen card in clean layout. Add large clean overlay text: "4. Wilting or softness" Add smaller subtext: "Symptoms need context." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 6:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: summary slide with five refined specimen cards in premium hierarchy. Add large clean overlay text: "5. Sudden decline" Add smaller subtext: "It usually starts earlier than you think." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: do not place an avatar on this middle slide; keep the unbranded avatar only on Slide 1 and the branded GreenLens Pro avatar only on the final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + - `Slide 7:` Create a premium botanical editorial slide in vertical 9:16. Reference the provided GreenLens avatar design images in this prompt: match the glossy green camera mascot, big friendly eyes, leaf on the camera body, black-to-olive vignette glow, chunky polished cartoon rendering, premium GreenLens character style, and clean high-contrast brand energy from the two supplied references. Use the exact GreenLens Botanical Archive design system: digital herbarium aesthetic, high-end editorial archive mood, soft sand background #fbfaf0, layered stone-paper surfaces #f5f4ea and #e4e3d9, deep forest green accents #204e2b and #386641, tertiary earth details only when useful, tactile paper texture, subtle lithography feel, natural daylight, tonal depth instead of borders, no hard divider lines, no clutter, no generic app UI, no harsh shadows, premium magazine composition with centered text and generous whitespace. Scene: final month-close CTA in polished GreenLens style. Add large clean overlay text: "Follow and scan with GreenLens next time." Add smaller subtext: "Month two starts with better diagnosis." Text style: bold, modern, minimal, high contrast, polished editorial layout with strong editorial hierarchy inspired by Plus Jakarta Sans headlines and Manrope body copy. Text placement: centered, never top-heavy, with balanced spacing, generous safe margins, and a consistent premium botanical magazine feel. Final requirement: the text must stay exactly in the middle. Avatar placement rule for this slideshow: this is the final slide, so include the branded GreenLens Pro avatar from the branded reference image with the GreenLens Pro wordmark clearly present; do not use the unbranded avatar on this final slide. Absolute text rule: all overlay text must be centered exactly in the middle of the image canvas, horizontally and vertically, with no top-heavy layout and no text placed near the edges. + --- @@ -819,4 +819,4 @@ Use this section after or alongside the 30-day slideshow plan. These are not AI - **CTA overlay:** “GreenLens Pro: scan before you guess.” - **Caption:** Your plant is giving signals. GreenLens helps you understand where to start. - **Hashtags:** `#greenlens #plantapp #plantparent #plantcare #planttok #houseplants` -- **Length:** 20-30 sec +- **Length:** 20-30 sec diff --git a/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.json b/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.json new file mode 100644 index 0000000..f726b50 --- /dev/null +++ b/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.json @@ -0,0 +1,6071 @@ +{ + "generatedAt": "2026-05-27T12:40:33.615Z", + "siteUrl": "https://greenlenspro.com/", + "currentRange": { + "startDate": "2026-04-27", + "endDate": "2026-05-24" + }, + "previousRange": { + "startDate": "2026-03-30", + "endDate": "2026-04-26" + }, + "rows": { + "queries": [ + { + "keys": [ + "blumenscanner" + ], + "dimension": "query", + "clicks": 2, + "impressions": 12, + "ctr": 0.16666666666666666, + "position": 3.3333333333333335 + }, + { + "keys": [ + "blumen scannen" + ], + "dimension": "query", + "clicks": 1, + "impressions": 26, + "ctr": 0.038461538461538464, + "position": 10.153846153846153 + }, + { + "keys": [ + "flower scanner" + ], + "dimension": "query", + "clicks": 1, + "impressions": 30, + "ctr": 0.03333333333333333, + "position": 10.333333333333334 + }, + { + "keys": [ + "pflanzen scan" + ], + "dimension": "query", + "clicks": 1, + "impressions": 2, + "ctr": 0.5, + "position": 10.5 + }, + { + "keys": [ + "app erinnerung pflanzen gießen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 15.166666666666666 + }, + { + "keys": [ + "app für pflanzenkrankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "app für pflanzenpflege" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 47.6 + }, + { + "keys": [ + "app pflanzen gießen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "app pflanzen krankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 55 + }, + { + "keys": [ + "app pflanzen pflege" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 48.5 + }, + { + "keys": [ + "app pflanzenkrankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "app zur erkennung von pflanzenkrankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 56 + }, + { + "keys": [ + "baum erkennen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 36 + }, + { + "keys": [ + "bestimmung pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "bestimmung von zimmerpflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "bestimmung zimmerpflanze" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 20 + }, + { + "keys": [ + "bilderkennung pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 36.666666666666664 + }, + { + "keys": [ + "blattkrankheiten bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "blume erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 85.5 + }, + { + "keys": [ + "blume erkennen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "blume erkennen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 22 + }, + { + "keys": [ + "blume identifizieren" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 100 + }, + { + "keys": [ + "blume per foto identifizieren" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 14 + }, + { + "keys": [ + "blume scannen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 9.25 + }, + { + "keys": [ + "blumen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 93.5 + }, + { + "keys": [ + "blumen bestimmen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 44.666666666666664 + }, + { + "keys": [ + "blumen bestimmen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 28.5 + }, + { + "keys": [ + "blumen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "blumen erkennen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 20.75 + }, + { + "keys": [ + "blumen erkennen kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 83 + }, + { + "keys": [ + "blumen erkenner" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 47 + }, + { + "keys": [ + "blumen fotografieren und erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 4 + }, + { + "keys": [ + "blumen gießen app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 68 + }, + { + "keys": [ + "blumen identifizieren" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "blumen scannen und erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 19 + }, + { + "keys": [ + "blumen scanner" + ], + "dimension": "query", + "clicks": 0, + "impressions": 77, + "ctr": 0, + "position": 7.51948051948052 + }, + { + "keys": [ + "blumen suche" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "blumenerkennung per foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "bush identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 71 + }, + { + "keys": [ + "can google identify a plant from a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 34.333333333333336 + }, + { + "keys": [ + "can i identify a plant from a photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "diagnose von pflanzenkrankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 24 + }, + { + "keys": [ + "die inurl:photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 29.5 + }, + { + "keys": [ + "erkennen von pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 73 + }, + { + "keys": [ + "find a plant by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 52 + }, + { + "keys": [ + "find flower by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 63 + }, + { + "keys": [ + "find flowers by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 62 + }, + { + "keys": [ + "find plant by image" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 72 + }, + { + "keys": [ + "find plant by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "find plants by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 87 + }, + { + "keys": [ + "flower detector" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 50 + }, + { + "keys": [ + "flower finder by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "flower id from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "flower identification by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "flower identification by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "flower identification from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 81 + }, + { + "keys": [ + "flower identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 81 + }, + { + "keys": [ + "flower lookup by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 65 + }, + { + "keys": [ + "flower photo identifier" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "flower picture search" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 83 + }, + { + "keys": [ + "flower recognizer" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "flower scan app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 38 + }, + { + "keys": [ + "flower scanner app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 6 + }, + { + "keys": [ + "flower search by image" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 62 + }, + { + "keys": [ + "flower search by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "flower search by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 71.8 + }, + { + "keys": [ + "free plant identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 88 + }, + { + "keys": [ + "free plant identifier online by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 91 + }, + { + "keys": [ + "gieß erinnerung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 8 + }, + { + "keys": [ + "gieß erinnerung app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "gießerinnerung app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 22.6 + }, + { + "keys": [ + "google blumen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 25 + }, + { + "keys": [ + "google identify plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "google lens app plant identification" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "google lens for identifying plants" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "google lens for plant identification" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "google lens pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 35 + }, + { + "keys": [ + "google lens pflanzen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 28 + }, + { + "keys": [ + "google lens plant health" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 15.333333333333334 + }, + { + "keys": [ + "google lens plant identification app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 38.5 + }, + { + "keys": [ + "google lens plant identifier free" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 29 + }, + { + "keys": [ + "google pflanze" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 34 + }, + { + "keys": [ + "google pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 20 + }, + { + "keys": [ + "google pflanzen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 13, + "ctr": 0, + "position": 34.61538461538461 + }, + { + "keys": [ + "google pflanzen erkennen kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 28.333333333333332 + }, + { + "keys": [ + "google pflanzenerkennung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 22.7 + }, + { + "keys": [ + "google plant" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 30.75 + }, + { + "keys": [ + "google plant care" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 25 + }, + { + "keys": [ + "google plant identifier" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 48.666666666666664 + }, + { + "keys": [ + "google plant identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 34.5 + }, + { + "keys": [ + "google plants" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "google plants identification" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 36 + }, + { + "keys": [ + "google tell me what plant this is" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 69 + }, + { + "keys": [ + "google tree identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 84 + }, + { + "keys": [ + "großblättrige zimmerpflanzen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 80 + }, + { + "keys": [ + "grüne zimmerpflanzen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 84.75 + }, + { + "keys": [ + "grünpflanze bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 78 + }, + { + "keys": [ + "herb identification by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "house plant identification by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "house plant identifier by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "house plants identify by pic" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 63 + }, + { + "keys": [ + "how can i identify a plant from a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "how to find a plant name by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "how to identify a plant by a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 58 + }, + { + "keys": [ + "how to identify a plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 62.8 + }, + { + "keys": [ + "how to identify a plant from a photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 55.2 + }, + { + "keys": [ + "how to identify a plant from a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 63.333333333333336 + }, + { + "keys": [ + "how to identify plant from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "how to identify plants by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 66.66666666666667 + }, + { + "keys": [ + "how to identify plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 72 + }, + { + "keys": [ + "how to identify plants from photos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "id plant by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 61.5 + }, + { + "keys": [ + "id plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 61.25 + }, + { + "keys": [ + "id plant from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 55.5 + }, + { + "keys": [ + "id plants by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "identify a flower by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "identify a flower by picture online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "identify a plant by a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 68.5 + }, + { + "keys": [ + "identify a plant by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 52 + }, + { + "keys": [ + "identify a plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 64.5 + }, + { + "keys": [ + "identify a plant from a photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "identify a plant from a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify a plant with a photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify a plant with a picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 77.5 + }, + { + "keys": [ + "identify a shrub by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 88.5 + }, + { + "keys": [ + "identify bush by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 51 + }, + { + "keys": [ + "identify bushes by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 92 + }, + { + "keys": [ + "identify flower by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 69.25 + }, + { + "keys": [ + "identify flower by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 76 + }, + { + "keys": [ + "identify flower from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 55.5 + }, + { + "keys": [ + "identify flower from picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "identify flowers by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 72.5 + }, + { + "keys": [ + "identify flowers by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 79.25 + }, + { + "keys": [ + "identify house plants by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 73.66666666666667 + }, + { + "keys": [ + "identify house plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 76 + }, + { + "keys": [ + "identify leaf by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify leaf by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 71.5 + }, + { + "keys": [ + "identify leaf from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 71.5 + }, + { + "keys": [ + "identify plan" + ], + "dimension": "query", + "clicks": 0, + "impressions": 7, + "ctr": 0, + "position": 9.428571428571429 + }, + { + "keys": [ + "identify plant by image" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 64.66666666666666 + }, + { + "keys": [ + "identify plant by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 14, + "ctr": 0, + "position": 58 + }, + { + "keys": [ + "identify plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 62.625 + }, + { + "keys": [ + "identify plant disease by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "identify plant from photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 53.125 + }, + { + "keys": [ + "identify plant from picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 54.5 + }, + { + "keys": [ + "identify plant in picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 54.5 + }, + { + "keys": [ + "identify plant picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 64 + }, + { + "keys": [ + "identify plant upload photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59.5 + }, + { + "keys": [ + "identify plant with photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 64.33333333333334 + }, + { + "keys": [ + "identify plant with picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "identify plants by photo" + ], + "dimension": "query", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 64.1 + }, + { + "keys": [ + "identify plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 49.666666666666664 + }, + { + "keys": [ + "identify plants by picture free" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "identify plants by picture online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 9, + "ctr": 0, + "position": 69.55555555555556 + }, + { + "keys": [ + "identify plants by picture online free" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "identify shrubs by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 74.4 + }, + { + "keys": [ + "identify this plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "identify vegetable by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 73 + }, + { + "keys": [ + "identify vegetable plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 64.66666666666666 + }, + { + "keys": [ + "identifying house plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 61 + }, + { + "keys": [ + "image search plant" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 57.333333333333336 + }, + { + "keys": [ + "image search plants" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 62.333333333333336 + }, + { + "keys": [ + "kostenlose pflanzen pflege app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 45.2 + }, + { + "keys": [ + "kostenlose pflanzenerkennung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 43 + }, + { + "keys": [ + "krankheiten von pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 77 + }, + { + "keys": [ + "lens app pflanzen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 9.333333333333334 + }, + { + "keys": [ + "lens blumen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 10.5 + }, + { + "keys": [ + "lens pflanzen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "lens pflanzen app kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 11.666666666666666 + }, + { + "keys": [ + "lens pflanzenerkennung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 15 + }, + { + "keys": [ + "look up plant by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "look up plants by picture" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 62.5 + }, + { + "keys": [ + "mit google pflanzen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 7, + "ctr": 0, + "position": 32.285714285714285 + }, + { + "keys": [ + "name that plant pictures" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 61 + }, + { + "keys": [ + "online pflanzen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "pflanze anhand von foto bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 9, + "ctr": 0, + "position": 37.22222222222222 + }, + { + "keys": [ + "pflanze bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 81.66666666666667 + }, + { + "keys": [ + "pflanze bestimmen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 50.5 + }, + { + "keys": [ + "pflanze bestimmen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 36.2 + }, + { + "keys": [ + "pflanze bestimmen mit foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 28 + }, + { + "keys": [ + "pflanze bestimmen online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 68 + }, + { + "keys": [ + "pflanze bild erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 36.666666666666664 + }, + { + "keys": [ + "pflanze erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "pflanze erkennen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "pflanze erkennen kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "pflanze erkennen online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 47 + }, + { + "keys": [ + "pflanze finden" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "pflanze foto erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "pflanze identifizieren" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 71.5 + }, + { + "keys": [ + "pflanze identifizieren app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 62 + }, + { + "keys": [ + "pflanze online bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 50 + }, + { + "keys": [ + "pflanze per foto erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 53.2 + }, + { + "keys": [ + "pflanze scannen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 18.5 + }, + { + "keys": [ + "pflanze suchen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 49 + }, + { + "keys": [ + "pflanzen app krankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 44.333333333333336 + }, + { + "keys": [ + "pflanzen app pflege" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 44 + }, + { + "keys": [ + "pflanzen app pflege krankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 46 + }, + { + "keys": [ + "pflanzen bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 19, + "ctr": 0, + "position": 62.36842105263158 + }, + { + "keys": [ + "pflanzen bestimmen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 51.5 + }, + { + "keys": [ + "pflanzen bestimmen foto hochladen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "pflanzen bestimmen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 27.2 + }, + { + "keys": [ + "pflanzen bestimmen mit foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 49.666666666666664 + }, + { + "keys": [ + "pflanzen bestimmen mit google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 27.5 + }, + { + "keys": [ + "pflanzen bestimmen nach bildern" + ], + "dimension": "query", + "clicks": 0, + "impressions": 11, + "ctr": 0, + "position": 51 + }, + { + "keys": [ + "pflanzen bestimmen online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 65.5 + }, + { + "keys": [ + "pflanzen bestimmen per foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "pflanzen diagnose" + ], + "dimension": "query", + "clicks": 0, + "impressions": 26, + "ctr": 0, + "position": 44.53846153846154 + }, + { + "keys": [ + "pflanzen diagnose app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 40 + }, + { + "keys": [ + "pflanzen erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 17, + "ctr": 0, + "position": 65.47058823529412 + }, + { + "keys": [ + "pflanzen erkennen foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 53.333333333333336 + }, + { + "keys": [ + "pflanzen erkennen google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 16, + "ctr": 0, + "position": 28.5625 + }, + { + "keys": [ + "pflanzen erkennen mit foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 47.333333333333336 + }, + { + "keys": [ + "pflanzen erkennen ohne app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 67.66666666666667 + }, + { + "keys": [ + "pflanzen erkennen online" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "pflanzen erkennen online kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 51.2 + }, + { + "keys": [ + "pflanzen erkennen online kostenlos ohne app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 50.5 + }, + { + "keys": [ + "pflanzen erkennen per foto" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 51.333333333333336 + }, + { + "keys": [ + "pflanzen erkennungs" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "pflanzen foto erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 27.5 + }, + { + "keys": [ + "pflanzen fotografieren und erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 48.5 + }, + { + "keys": [ + "pflanzen gieß app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 38 + }, + { + "keys": [ + "pflanzen gießen app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 37.6 + }, + { + "keys": [ + "pflanzen gießen app kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 40 + }, + { + "keys": [ + "pflanzen gießen erinnerung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 71, + "ctr": 0, + "position": 36.88732394366197 + }, + { + "keys": [ + "pflanzen identifizieren" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 75.33333333333333 + }, + { + "keys": [ + "pflanzen krankheiten app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "pflanzen krankheiten erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 35 + }, + { + "keys": [ + "pflanzen krankheiten erkennen app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "pflanzen krankheiten erkennen kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "pflanzen mit foto bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 41 + }, + { + "keys": [ + "pflanzen mit foto erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 49 + }, + { + "keys": [ + "pflanzen mit kamera bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 42.666666666666664 + }, + { + "keys": [ + "pflanzen online bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59.5 + }, + { + "keys": [ + "pflanzen per foto erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 28.5 + }, + { + "keys": [ + "pflanzen pflege app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 36.6 + }, + { + "keys": [ + "pflanzen pflege app gratis" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 40.333333333333336 + }, + { + "keys": [ + "pflanzen pflege app kostenlos" + ], + "dimension": "query", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 58.333333333333336 + }, + { + "keys": [ + "pflanzen pflege app kostenlos deutsch" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 43 + }, + { + "keys": [ + "pflanzen pflegen app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 51.25 + }, + { + "keys": [ + "pflanzen scan app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 29.5 + }, + { + "keys": [ + "pflanzen scannen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 27 + }, + { + "keys": [ + "pflanzen scannen und krankheit erkennen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 12 + }, + { + "keys": [ + "pflanzen scanner" + ], + "dimension": "query", + "clicks": 0, + "impressions": 11, + "ctr": 0, + "position": 33.09090909090909 + }, + { + "keys": [ + "pflanzen scanner app" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "pflanzen scanner krankheiten" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "pflanzen suche" + ], + "dimension": "query", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 62.5 + }, + { + "keys": [ + "pflanzen suchen mit bild" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 33 + }, + { + "keys": [ + "pflanzenart bestimmen" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 61 + }, + { + "keys": [ + "pflanzenbestimmung" + ], + "dimension": "query", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 80 + }, + { + "keys": [ + "pflanzenbestimmung google" + ], + "dimension": "query", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 30 + } + ], + "pages": [ + { + "keys": [ + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "page", + "clicks": 4, + "impressions": 396, + "ctr": 0.010101010101010102, + "position": 15.396464646464647 + }, + { + "keys": [ + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "page", + "clicks": 2, + "impressions": 173, + "ctr": 0.011560693641618497, + "position": 20.84393063583815 + }, + { + "keys": [ + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "page", + "clicks": 2, + "impressions": 259, + "ctr": 0.007722007722007722, + "position": 33.3011583011583 + }, + { + "keys": [ + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "page", + "clicks": 1, + "impressions": 353, + "ctr": 0.0028328611898017, + "position": 44.37110481586402 + }, + { + "keys": [ + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "page", + "clicks": 1, + "impressions": 127, + "ctr": 0.007874015748031496, + "position": 36.110236220472444 + }, + { + "keys": [ + "https://greenlenspro.com/" + ], + "dimension": "page", + "clicks": 0, + "impressions": 88, + "ctr": 0, + "position": 25.761363636363637 + }, + { + "keys": [ + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "page", + "clicks": 0, + "impressions": 513, + "ctr": 0, + "position": 58.10526315789474 + }, + { + "keys": [ + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "page", + "clicks": 0, + "impressions": 194, + "ctr": 0, + "position": 32.43814432989691 + }, + { + "keys": [ + "https://greenlenspro.com/plant-care-app" + ], + "dimension": "page", + "clicks": 0, + "impressions": 19, + "ctr": 0, + "position": 17.63157894736842 + }, + { + "keys": [ + "https://greenlenspro.com/plant-disease-identifier" + ], + "dimension": "page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 34.8 + }, + { + "keys": [ + "https://greenlenspro.com/plant-identifier-app" + ], + "dimension": "page", + "clicks": 0, + "impressions": 51, + "ctr": 0, + "position": 23.45098039215686 + }, + { + "keys": [ + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "page", + "clicks": 0, + "impressions": 101, + "ctr": 0, + "position": 20.435643564356436 + }, + { + "keys": [ + "https://greenlenspro.com/vs/inaturalist" + ], + "dimension": "page", + "clicks": 0, + "impressions": 17, + "ctr": 0, + "position": 10.764705882352942 + }, + { + "keys": [ + "https://greenlenspro.com/vs/picturethis" + ], + "dimension": "page", + "clicks": 0, + "impressions": 21, + "ctr": 0, + "position": 9.857142857142858 + }, + { + "keys": [ + "https://greenlenspro.com/vs/plantum" + ], + "dimension": "page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 8.75 + }, + { + "keys": [ + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "page", + "clicks": 0, + "impressions": 134, + "ctr": 0, + "position": 34.04477611940298 + } + ], + "queryPages": [ + { + "keys": [ + "blumen scannen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 1, + "impressions": 25, + "ctr": 0.04, + "position": 9.2 + }, + { + "keys": [ + "blumenscanner", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 1, + "impressions": 12, + "ctr": 0.08333333333333333, + "position": 3.5833333333333335 + }, + { + "keys": [ + "blumenscanner", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 1, + "impressions": 11, + "ctr": 0.09090909090909091, + "position": 7.909090909090909 + }, + { + "keys": [ + "flower scanner", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 1, + "impressions": 30, + "ctr": 0.03333333333333333, + "position": 10.333333333333334 + }, + { + "keys": [ + "pflanzen scan", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 1, + "impressions": 2, + "ctr": 0.5, + "position": 10.5 + }, + { + "keys": [ + "app erinnerung pflanzen gießen", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 15.166666666666666 + }, + { + "keys": [ + "app für pflanzenkrankheiten", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "app für pflanzenpflege", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 47.6 + }, + { + "keys": [ + "app pflanzen gießen", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "app pflanzen krankheiten", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 55 + }, + { + "keys": [ + "app pflanzen pflege", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 48.5 + }, + { + "keys": [ + "app pflanzenkrankheiten", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "app zur erkennung von pflanzenkrankheiten", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 56 + }, + { + "keys": [ + "baum erkennen google", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 36 + }, + { + "keys": [ + "bestimmung pflanzen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "bestimmung von zimmerpflanzen", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "bestimmung zimmerpflanze", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 20 + }, + { + "keys": [ + "bilderkennung pflanzen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 29 + }, + { + "keys": [ + "bilderkennung pflanzen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 49 + }, + { + "keys": [ + "bilderkennung pflanzen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 40.5 + }, + { + "keys": [ + "blattkrankheiten bestimmen", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "blume erkennen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 77 + }, + { + "keys": [ + "blume erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 94 + }, + { + "keys": [ + "blume erkennen foto", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "blume erkennen google", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 22 + }, + { + "keys": [ + "blume identifizieren", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 100 + }, + { + "keys": [ + "blume per foto identifizieren", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 14 + }, + { + "keys": [ + "blume scannen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 9.25 + }, + { + "keys": [ + "blumen bestimmen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 93.5 + }, + { + "keys": [ + "blumen bestimmen foto", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 63.5 + }, + { + "keys": [ + "blumen bestimmen foto", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 50 + }, + { + "keys": [ + "blumen bestimmen foto", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 77 + }, + { + "keys": [ + "blumen bestimmen google", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 27 + }, + { + "keys": [ + "blumen bestimmen google", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "blumen bestimmen google", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 35 + }, + { + "keys": [ + "blumen erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "blumen erkennen google", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 40 + }, + { + "keys": [ + "blumen erkennen google", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "blumen erkennen google", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 21.5 + }, + { + "keys": [ + "blumen erkennen google", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 38 + }, + { + "keys": [ + "blumen erkennen google", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 41 + }, + { + "keys": [ + "blumen erkennen kostenlos", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 83 + }, + { + "keys": [ + "blumen erkenner", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 47 + }, + { + "keys": [ + "blumen fotografieren und erkennen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 4 + }, + { + "keys": [ + "blumen gießen app", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 68 + }, + { + "keys": [ + "blumen identifizieren", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "blumen scannen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "blumen scannen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 34 + }, + { + "keys": [ + "blumen scannen und erkennen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 9, + "ctr": 0, + "position": 18.77777777777778 + }, + { + "keys": [ + "blumen scannen und erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "blumen scannen und erkennen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "blumen scanner", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 64 + }, + { + "keys": [ + "blumen scanner", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 77, + "ctr": 0, + "position": 7.51948051948052 + }, + { + "keys": [ + "blumen scanner", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 38.25 + }, + { + "keys": [ + "blumen scanner", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 26 + }, + { + "keys": [ + "blumen suche", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "blumenerkennung per foto", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 72 + }, + { + "keys": [ + "blumenerkennung per foto", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "blumenscanner", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 11, + "ctr": 0, + "position": 6.909090909090909 + }, + { + "keys": [ + "blumenscanner", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 9.333333333333334 + }, + { + "keys": [ + "bush identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 71 + }, + { + "keys": [ + "can google identify a plant from a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 34.333333333333336 + }, + { + "keys": [ + "can i identify a plant from a photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "diagnose von pflanzenkrankheiten", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 24 + }, + { + "keys": [ + "die inurl:photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 29.5 + }, + { + "keys": [ + "erkennen von pflanzen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 73 + }, + { + "keys": [ + "find a plant by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 52 + }, + { + "keys": [ + "find flower by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 63 + }, + { + "keys": [ + "find flowers by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 62 + }, + { + "keys": [ + "find plant by image", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 72 + }, + { + "keys": [ + "find plant by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "find plants by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 87 + }, + { + "keys": [ + "flower detector", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 50 + }, + { + "keys": [ + "flower finder by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "flower id from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "flower identification by photo", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "flower identification by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 84 + }, + { + "keys": [ + "flower identification by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "flower identification from photo", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 81 + }, + { + "keys": [ + "flower identification from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 87 + }, + { + "keys": [ + "flower identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 81 + }, + { + "keys": [ + "flower lookup by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "flower lookup by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "flower photo identifier", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "flower picture search", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 83 + }, + { + "keys": [ + "flower recognizer", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "flower scan app", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 38 + }, + { + "keys": [ + "flower scanner app", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 6 + }, + { + "keys": [ + "flower search by image", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "flower search by image", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 62 + }, + { + "keys": [ + "flower search by photo", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "flower search by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 76.2 + }, + { + "keys": [ + "flower search by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 73.66666666666667 + }, + { + "keys": [ + "free plant identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 88 + }, + { + "keys": [ + "free plant identifier online by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 91 + }, + { + "keys": [ + "gieß erinnerung", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 8 + }, + { + "keys": [ + "gieß erinnerung app", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 30 + }, + { + "keys": [ + "gießerinnerung app", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 22.6 + }, + { + "keys": [ + "google blumen erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 25 + }, + { + "keys": [ + "google identify plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 54 + }, + { + "keys": [ + "google lens app plant identification", + "https://greenlenspro.com/plant-identifier-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "google lens for identifying plants", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 53 + }, + { + "keys": [ + "google lens for plant identification", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "google lens pflanzen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 85 + }, + { + "keys": [ + "google lens pflanzen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "google lens pflanzen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "google lens pflanzen", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 35 + }, + { + "keys": [ + "google lens pflanzen erkennen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 66.5 + }, + { + "keys": [ + "google lens pflanzen erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 44.666666666666664 + }, + { + "keys": [ + "google lens pflanzen erkennen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 47.333333333333336 + }, + { + "keys": [ + "google lens pflanzen erkennen", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 29 + }, + { + "keys": [ + "google lens plant health", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 15.333333333333334 + }, + { + "keys": [ + "google lens plant identification app", + "https://greenlenspro.com/plant-identifier-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 38.5 + }, + { + "keys": [ + "google lens plant identifier free", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 29 + }, + { + "keys": [ + "google lens plant identifier free", + "https://greenlenspro.com/plant-identifier-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 41 + }, + { + "keys": [ + "google pflanze", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 34 + }, + { + "keys": [ + "google pflanze", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 80 + }, + { + "keys": [ + "google pflanzen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 58 + }, + { + "keys": [ + "google pflanzen", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 20 + }, + { + "keys": [ + "google pflanzen erkennen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 47.8 + }, + { + "keys": [ + "google pflanzen erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 32.75 + }, + { + "keys": [ + "google pflanzen erkennen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 38.6 + }, + { + "keys": [ + "google pflanzen erkennen", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 20.8 + }, + { + "keys": [ + "google pflanzen erkennen kostenlos", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 46.25 + }, + { + "keys": [ + "google pflanzen erkennen kostenlos", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 32.83333333333333 + }, + { + "keys": [ + "google pflanzen erkennen kostenlos", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 46.833333333333336 + }, + { + "keys": [ + "google pflanzen erkennen kostenlos", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 28 + }, + { + "keys": [ + "google pflanzenerkennung", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 20.8 + }, + { + "keys": [ + "google pflanzenerkennung", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 39.25 + }, + { + "keys": [ + "google pflanzenerkennung", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 17.8 + }, + { + "keys": [ + "google plant", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 36.5 + }, + { + "keys": [ + "google plant", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 25 + }, + { + "keys": [ + "google plant care", + "https://greenlenspro.com/plant-care-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 25 + }, + { + "keys": [ + "google plant identifier", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 48.666666666666664 + }, + { + "keys": [ + "google plant identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 34.5 + }, + { + "keys": [ + "google plants", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 39 + }, + { + "keys": [ + "google plants", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "google plants identification", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 36 + }, + { + "keys": [ + "google tell me what plant this is", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 69 + }, + { + "keys": [ + "google tree identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 84 + }, + { + "keys": [ + "großblättrige zimmerpflanzen bestimmen", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 80 + }, + { + "keys": [ + "grüne zimmerpflanzen bestimmen", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 84.75 + }, + { + "keys": [ + "grünpflanze bestimmen", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 78 + }, + { + "keys": [ + "herb identification by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "house plant identification by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "house plant identifier by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "house plants identify by pic", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 63 + }, + { + "keys": [ + "how can i identify a plant from a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 60 + }, + { + "keys": [ + "how to find a plant name by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "how to identify a plant by a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 58 + }, + { + "keys": [ + "how to identify a plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 62.8 + }, + { + "keys": [ + "how to identify a plant from a photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 55.2 + }, + { + "keys": [ + "how to identify a plant from a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 63.333333333333336 + }, + { + "keys": [ + "how to identify plant from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 79 + }, + { + "keys": [ + "how to identify plants by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 66.66666666666667 + }, + { + "keys": [ + "how to identify plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 72 + }, + { + "keys": [ + "how to identify plants from photos", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "id plant by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 61.5 + }, + { + "keys": [ + "id plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 61.25 + }, + { + "keys": [ + "id plant from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 55.5 + }, + { + "keys": [ + "id plants by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 48 + }, + { + "keys": [ + "identify a flower by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "identify a flower by picture online", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 66 + }, + { + "keys": [ + "identify a plant by a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 68.5 + }, + { + "keys": [ + "identify a plant by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 52 + }, + { + "keys": [ + "identify a plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 64.5 + }, + { + "keys": [ + "identify a plant from a photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "identify a plant from a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify a plant with a photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify a plant with a picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 77.5 + }, + { + "keys": [ + "identify a shrub by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 88.5 + }, + { + "keys": [ + "identify bush by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 51 + }, + { + "keys": [ + "identify bushes by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 92 + }, + { + "keys": [ + "identify flower by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 69.25 + }, + { + "keys": [ + "identify flower by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 76 + }, + { + "keys": [ + "identify flower from photo", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "identify flower from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 55.5 + }, + { + "keys": [ + "identify flower from picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 67 + }, + { + "keys": [ + "identify flowers by photo", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 90 + }, + { + "keys": [ + "identify flowers by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 55 + }, + { + "keys": [ + "identify flowers by picture", + "https://greenlenspro.com/flower-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 81.5 + }, + { + "keys": [ + "identify flowers by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 77 + }, + { + "keys": [ + "identify house plants by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 73.66666666666667 + }, + { + "keys": [ + "identify house plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 76 + }, + { + "keys": [ + "identify leaf by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 75 + }, + { + "keys": [ + "identify leaf by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 71.5 + }, + { + "keys": [ + "identify leaf from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 71.5 + }, + { + "keys": [ + "identify plan", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 9.166666666666666 + }, + { + "keys": [ + "identify plan", + "https://greenlenspro.com/plant-identifier-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "identify plant by image", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 64.66666666666666 + }, + { + "keys": [ + "identify plant by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 14, + "ctr": 0, + "position": 58 + }, + { + "keys": [ + "identify plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 62.625 + }, + { + "keys": [ + "identify plant disease by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "identify plant from photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 53.125 + }, + { + "keys": [ + "identify plant from picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 54.5 + }, + { + "keys": [ + "identify plant in picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 54.5 + }, + { + "keys": [ + "identify plant picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 64 + }, + { + "keys": [ + "identify plant upload photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59.5 + }, + { + "keys": [ + "identify plant with photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 64.33333333333334 + }, + { + "keys": [ + "identify plant with picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "identify plants by photo", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 64.1 + }, + { + "keys": [ + "identify plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 49.666666666666664 + }, + { + "keys": [ + "identify plants by picture free", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "identify plants by picture online", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 9, + "ctr": 0, + "position": 69.55555555555556 + }, + { + "keys": [ + "identify plants by picture online free", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "identify shrubs by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 74.4 + }, + { + "keys": [ + "identify this plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 74 + }, + { + "keys": [ + "identify vegetable by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 73 + }, + { + "keys": [ + "identify vegetable plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 64.66666666666666 + }, + { + "keys": [ + "identifying house plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 61 + }, + { + "keys": [ + "image search plant", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 57.333333333333336 + }, + { + "keys": [ + "image search plants", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 62.333333333333336 + }, + { + "keys": [ + "kostenlose pflanzen pflege app", + "https://greenlenspro.com/pflanzen-pflege-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 45.2 + }, + { + "keys": [ + "kostenlose pflanzenerkennung", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 43 + }, + { + "keys": [ + "krankheiten von pflanzen", + "https://greenlenspro.com/pflanzen-krankheiten-erkennen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 77 + }, + { + "keys": [ + "lens app pflanzen erkennen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 9.333333333333334 + }, + { + "keys": [ + "lens blumen bestimmen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "lens blumen bestimmen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "lens pflanzen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "lens pflanzen app kostenlos", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 11.666666666666666 + }, + { + "keys": [ + "lens pflanzenerkennung", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 57 + }, + { + "keys": [ + "lens pflanzenerkennung", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "lens pflanzenerkennung", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 27 + }, + { + "keys": [ + "lens pflanzenerkennung", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 15 + }, + { + "keys": [ + "look up plant by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 82 + }, + { + "keys": [ + "look up plants by picture", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 62.5 + }, + { + "keys": [ + "mit google pflanzen erkennen", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 44.666666666666664 + }, + { + "keys": [ + "mit google pflanzen erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 31 + }, + { + "keys": [ + "mit google pflanzen erkennen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 40.5 + }, + { + "keys": [ + "mit google pflanzen erkennen", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 21.666666666666668 + }, + { + "keys": [ + "name that plant pictures", + "https://greenlenspro.com/identify-plant-photo" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 61 + }, + { + "keys": [ + "online pflanzen bestimmen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 59 + }, + { + "keys": [ + "pflanze anhand von foto bestimmen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 34 + }, + { + "keys": [ + "pflanze anhand von foto bestimmen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 43.5 + }, + { + "keys": [ + "pflanze anhand von foto bestimmen", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 27.666666666666668 + }, + { + "keys": [ + "pflanze anhand von foto bestimmen", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 52 + }, + { + "keys": [ + "pflanze bestimmen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 81.66666666666667 + }, + { + "keys": [ + "pflanze bestimmen foto", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 68 + }, + { + "keys": [ + "pflanze bestimmen foto", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 50.5 + }, + { + "keys": [ + "pflanze bestimmen foto", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 70 + }, + { + "keys": [ + "pflanze bestimmen foto", + "https://greenlenspro.com/zimmerpflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 65 + }, + { + "keys": [ + "pflanze bestimmen google", + "https://greenlenspro.com/" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 63 + }, + { + "keys": [ + "pflanze bestimmen google", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 23.25 + }, + { + "keys": [ + "pflanze bestimmen google", + "https://greenlenspro.com/pflanzen-erkennen-app" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 46.25 + }, + { + "keys": [ + "pflanze bestimmen google", + "https://greenlenspro.com/vs/google-lens" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 34 + }, + { + "keys": [ + "pflanze bestimmen mit foto", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 73 + }, + { + "keys": [ + "pflanze bestimmen mit foto", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 28 + }, + { + "keys": [ + "pflanze bestimmen online", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 68 + }, + { + "keys": [ + "pflanze bild erkennen", + "https://greenlenspro.com/blumen-scanner" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 24 + }, + { + "keys": [ + "pflanze bild erkennen", + "https://greenlenspro.com/pflanzen-bestimmen" + ], + "dimension": "query,page", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 50 + } + ], + "countries": [ + { + "keys": [ + "deu" + ], + "dimension": "country", + "clicks": 7, + "impressions": 1069, + "ctr": 0.006548175865294668, + "position": 26.666978484565014 + }, + { + "keys": [ + "bgd" + ], + "dimension": "country", + "clicks": 1, + "impressions": 3, + "ctr": 0.3333333333333333, + "position": 7 + }, + { + "keys": [ + "che" + ], + "dimension": "country", + "clicks": 1, + "impressions": 110, + "ctr": 0.00909090909090909, + "position": 43.5 + }, + { + "keys": [ + "usa" + ], + "dimension": "country", + "clicks": 1, + "impressions": 453, + "ctr": 0.002207505518763797, + "position": 48.29359823399559 + }, + { + "keys": [ + "abw" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 8 + }, + { + "keys": [ + "alb" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 35 + }, + { + "keys": [ + "arg" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 29.5 + }, + { + "keys": [ + "arm" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 50.5 + }, + { + "keys": [ + "aus" + ], + "dimension": "country", + "clicks": 0, + "impressions": 24, + "ctr": 0, + "position": 56.75 + }, + { + "keys": [ + "aut" + ], + "dimension": "country", + "clicks": 0, + "impressions": 94, + "ctr": 0, + "position": 27.138297872340427 + }, + { + "keys": [ + "bel" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 7.5 + }, + { + "keys": [ + "bra" + ], + "dimension": "country", + "clicks": 0, + "impressions": 8, + "ctr": 0, + "position": 14.875 + }, + { + "keys": [ + "can" + ], + "dimension": "country", + "clicks": 0, + "impressions": 48, + "ctr": 0, + "position": 46.020833333333336 + }, + { + "keys": [ + "chl" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 36 + }, + { + "keys": [ + "chn" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 17 + }, + { + "keys": [ + "col" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 7 + }, + { + "keys": [ + "cyp" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 7 + }, + { + "keys": [ + "dnk" + ], + "dimension": "country", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 8.833333333333332 + }, + { + "keys": [ + "dom" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 19.5 + }, + { + "keys": [ + "dza" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 13 + }, + { + "keys": [ + "ecu" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "esp" + ], + "dimension": "country", + "clicks": 0, + "impressions": 11, + "ctr": 0, + "position": 11.545454545454545 + }, + { + "keys": [ + "fin" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 7 + }, + { + "keys": [ + "fra" + ], + "dimension": "country", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 23.666666666666668 + }, + { + "keys": [ + "gbr" + ], + "dimension": "country", + "clicks": 0, + "impressions": 92, + "ctr": 0, + "position": 42.97826086956522 + }, + { + "keys": [ + "gha" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 14 + }, + { + "keys": [ + "grc" + ], + "dimension": "country", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "idn" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "ind" + ], + "dimension": "country", + "clicks": 0, + "impressions": 39, + "ctr": 0, + "position": 33.1025641025641 + }, + { + "keys": [ + "irl" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 53.5 + }, + { + "keys": [ + "irq" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 20 + }, + { + "keys": [ + "isr" + ], + "dimension": "country", + "clicks": 0, + "impressions": 9, + "ctr": 0, + "position": 64 + }, + { + "keys": [ + "ita" + ], + "dimension": "country", + "clicks": 0, + "impressions": 22, + "ctr": 0, + "position": 18.772727272727273 + }, + { + "keys": [ + "lka" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 5 + }, + { + "keys": [ + "lux" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 6 + }, + { + "keys": [ + "mar" + ], + "dimension": "country", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 13 + }, + { + "keys": [ + "mex" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 6.5 + }, + { + "keys": [ + "mus" + ], + "dimension": "country", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 8.333333333333332 + }, + { + "keys": [ + "mys" + ], + "dimension": "country", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 8.666666666666668 + }, + { + "keys": [ + "nld" + ], + "dimension": "country", + "clicks": 0, + "impressions": 10, + "ctr": 0, + "position": 7.3 + }, + { + "keys": [ + "nor" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "npl" + ], + "dimension": "country", + "clicks": 0, + "impressions": 3, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "nzl" + ], + "dimension": "country", + "clicks": 0, + "impressions": 14, + "ctr": 0, + "position": 50.57142857142857 + }, + { + "keys": [ + "pak" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 15.75 + }, + { + "keys": [ + "per" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 10 + }, + { + "keys": [ + "phl" + ], + "dimension": "country", + "clicks": 0, + "impressions": 23, + "ctr": 0, + "position": 33.608695652173914 + }, + { + "keys": [ + "pol" + ], + "dimension": "country", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 11.2 + }, + { + "keys": [ + "prt" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 7.5 + }, + { + "keys": [ + "pse" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 42 + }, + { + "keys": [ + "rou" + ], + "dimension": "country", + "clicks": 0, + "impressions": 4, + "ctr": 0, + "position": 8.25 + }, + { + "keys": [ + "rus" + ], + "dimension": "country", + "clicks": 0, + "impressions": 6, + "ctr": 0, + "position": 37.5 + }, + { + "keys": [ + "sgp" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "srb" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 7 + }, + { + "keys": [ + "svn" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 8 + }, + { + "keys": [ + "swe" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 8.5 + }, + { + "keys": [ + "tha" + ], + "dimension": "country", + "clicks": 0, + "impressions": 2, + "ctr": 0, + "position": 43.5 + }, + { + "keys": [ + "tza" + ], + "dimension": "country", + "clicks": 0, + "impressions": 1, + "ctr": 0, + "position": 11 + }, + { + "keys": [ + "vnm" + ], + "dimension": "country", + "clicks": 0, + "impressions": 5, + "ctr": 0, + "position": 14.6 + }, + { + "keys": [ + "zaf" + ], + "dimension": "country", + "clicks": 0, + "impressions": 15, + "ctr": 0, + "position": 58.93333333333333 + } + ], + "devices": [ + { + "keys": [ + "MOBILE" + ], + "dimension": "device", + "clicks": 8, + "impressions": 878, + "ctr": 0.009111617312072893, + "position": 17.970387243735765 + }, + { + "keys": [ + "DESKTOP" + ], + "dimension": "device", + "clicks": 2, + "impressions": 1258, + "ctr": 0.001589825119236884, + "position": 44.61764705882353 + }, + { + "keys": [ + "TABLET" + ], + "dimension": "device", + "clicks": 0, + "impressions": 14, + "ctr": 0, + "position": 10.785714285714286 + } + ] + }, + "insights": { + "lowCtr": [], + "strikingDistance": [ + { + "key": "blumen scanner", + "clicks": 0, + "impressions": 77, + "ctr": 0, + "position": 7.51948051948052, + "previousClicks": 0, + "previousImpressions": 1, + "clickDelta": 0, + "impressionDelta": 76 + } + ], + "declining": [] + } +} \ No newline at end of file diff --git a/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.md b/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.md new file mode 100644 index 0000000..1b40219 --- /dev/null +++ b/output/gsc-seo-report-https-greenlenspro-com-2026-05-27T12-40-33.md @@ -0,0 +1,22 @@ +# Google Search Console SEO Report + +Property: https://greenlenspro.com/ +Current period: 2026-04-27 to 2026-05-24 +Previous period: 2026-03-30 to 2026-04-26 + +## High-Impression Low-CTR Opportunities + +_No rows matched this rule._ + + +## Striking-Distance Queries + +| Item | Clicks | Impressions | CTR | Position | Click Delta | Impression Delta | +| --- | ---: | ---: | ---: | ---: | ---: | ---: | +| blumen scanner | 0 | 77 | 0.00% | 7.5 | 0 | 76 | + + +## Declining Queries + +_No rows matched this rule._ +