<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 80">
<defs>
<!-- Watermelon rind gradient (green outer) -->
<linearGradient id="rind-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#689B8A"/>
<stop offset="100%" style="stop-color:#4A7D6D"/>
</linearGradient>
<!-- Watermelon flesh gradient (pink/coral inner) -->
<linearGradient id="flesh-grad" x1="0%" y1="0%" x2="100%" y2="100%">
<stop offset="0%" style="stop-color:#FF6B7A"/>
<stop offset="100%" style="stop-color:#E85566"/>
</linearGradient>
</defs>
<!-- Outer circle - watermelon rind (green) -->
<circle cx="40" cy="40" r="36" fill="url(#rind-grad)"/>
<!-- Inner circle - watermelon flesh (pink/coral) -->
<circle cx="40" cy="40" r="29" fill="url(#flesh-grad)"/>
<!-- White rind edge -->
<circle cx="40" cy="40" r="31" fill="none" stroke="#F2EDD1" stroke-width="2" opacity="0.6"/>
<!-- Stylized D -->
<path d="M30 20
L30 60
M30 20
C52 20, 62 28, 62 40
C62 52, 52 60, 30 60"
fill="none"
stroke="#F2EDD1"
stroke-width="4"
stroke-linecap="round"
stroke-linejoin="round"/>
<!-- Seeds -->
<ellipse cx="43" cy="31" rx="2" ry="3.5" fill="#2D2D2D" transform="rotate(-20 43 31)"/>
<ellipse cx="49" cy="40" rx="2" ry="3.5" fill="#2D2D2D" transform="rotate(10 49 40)"/>
<ellipse cx="43" cy="49" rx="2" ry="3.5" fill="#2D2D2D" transform="rotate(25 43 49)"/>
<!-- Text -->
<text x="90" y="48" font-family="system-ui, -apple-system, sans-serif" font-size="36" font-weight="600" fill="#2D3B35">Delia</text>
<!-- Tagline -->
<text x="90" y="66" font-family="system-ui, -apple-system, sans-serif" font-size="12" fill="#689B8A">Deliciously Simple LLM Delegation</text>
</svg>