graph TD
%% Entry Point
Start(("Am I IN or CURIOUS?"))
%% Main Paths
In{I'm IN}
Curious{I'm CURIOUS}
%% IN Branch (4 Boxes)
In1[Online Course]
In2[Support Level]
In3[Resource Library]
In4[Community Access]
%% CURIOUS Branch (3 Boxes)
Cur1[Living Room Experience]
Cur2[Email List]
Cur3[Free Tools Preview]
%% Logic Connections
Start --> In
Start --> Curious
In --> In1
In --> In2
In --> In3
In --> In4
Curious --> Cur1
Curious --> Cur2
Curious --> Cur3
%% Hyperlinks
click In1 "https://yoursite.com/course" "Start the course" _blank
click In2 "https://yoursite.com/support" "Choose support" _blank
click Cur1 "https://yoursite.com/living-room" "Book experience" _blank
click Cur2 "https://yoursite.com/email" "Join list" _blank
%% Custom Styling for a Professional Look
style Start fill:#3498db,stroke:#2980b9,color:#fff,stroke-width:4px
style In fill:#f8fbfe,stroke:#3498db,stroke-width:2px
style Curious fill:#f8fbfe,stroke:#3498db,stroke-width:2px
classDef stepBox fill:#fff,stroke:#3498db,stroke-width:1px,width:200px
class In1,In2,In3,In4,Cur1,Cur2,Cur3 stepBox