{"title":"Courses","description":null,"products":[{"product_id":"f925-maarket-structure","title":"F925 Market Structure","description":"\u003cstyle\u003e\n  .f925-course {\n    --gold: #c99b3d;\n    --dark: #171717;\n    --cream: #fffaf0;\n    max-width: 900px;\n    margin: 30px auto;\n    padding: 38px 28px;\n    overflow: hidden;\n    position: relative;\n    color: var(--dark);\n    background: linear-gradient(135deg, #ffffff, var(--cream));\n    border: 1px solid rgba(201, 155, 61, 0.35);\n    border-radius: 22px;\n    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);\n    font-family: inherit;\n  }\n\n  .f925-course::before {\n    content: \"\";\n    position: absolute;\n    width: 220px;\n    height: 220px;\n    top: -120px;\n    right: -80px;\n    border-radius: 50%;\n    background: rgba(201, 155, 61, 0.16);\n    filter: blur(10px);\n    animation: f925-float 5s ease-in-out infinite;\n  }\n\n  .f925-badge {\n    display: table;\n    margin: 0 auto 16px;\n    padding: 8px 16px;\n    color: #fff;\n    background: var(--dark);\n    border: 1px solid var(--gold);\n    border-radius: 100px;\n    font-size: 12px;\n    font-weight: 700;\n    letter-spacing: 2px;\n    animation: f925-fade-down 0.7s ease both;\n  }\n\n  .f925-title {\n    margin: 0;\n    text-align: center;\n    color: var(--dark);\n    font-size: clamp(28px, 5vw, 48px);\n    line-height: 1.1;\n    animation: f925-fade-up 0.8s 0.1s ease both;\n  }\n\n  .f925-title span {\n    color: var(--gold);\n    background: linear-gradient(\n      90deg,\n      #9e6f19,\n      #e3bd69,\n      #9e6f19\n    );\n    background-size: 200% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: f925-shimmer 3s linear infinite;\n  }\n\n  .f925-intro {\n    max-width: 700px;\n    margin: 20px auto 28px;\n    text-align: center;\n    font-size: 17px;\n    line-height: 1.7;\n    animation: f925-fade-up 0.8s 0.25s ease both;\n  }\n\n  .f925-grid {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin-top: 25px;\n  }\n\n  .f925-item {\n    display: flex;\n    align-items: flex-start;\n    gap: 12px;\n    padding: 17px;\n    background: rgba(255, 255, 255, 0.85);\n    border: 1px solid rgba(201, 155, 61, 0.25);\n    border-radius: 14px;\n    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.05);\n    opacity: 0;\n    animation: f925-fade-up 0.7s ease forwards;\n    transition: transform 0.3s ease, box-shadow 0.3s ease;\n  }\n\n  .f925-item:nth-child(1) { animation-delay: 0.35s; }\n  .f925-item:nth-child(2) { animation-delay: 0.45s; }\n  .f925-item:nth-child(3) { animation-delay: 0.55s; }\n  .f925-item:nth-child(4) { animation-delay: 0.65s; }\n  .f925-item:nth-child(5) { animation-delay: 0.75s; }\n  .f925-item:nth-child(6) { animation-delay: 0.85s; }\n\n  .f925-item:hover {\n    transform: translateY(-5px);\n    box-shadow: 0 12px 28px rgba(201, 155, 61, 0.18);\n  }\n\n  .f925-icon {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    min-width: 42px;\n    height: 42px;\n    font-size: 22px;\n    background: #fff8e9;\n    border-radius: 50%;\n    animation: f925-pulse 2.3s ease-in-out infinite;\n  }\n\n  .f925-item strong {\n    display: block;\n    margin-bottom: 4px;\n  }\n\n  .f925-item p {\n    margin: 0;\n    font-size: 14px;\n    line-height: 1.55;\n  }\n\n  .f925-message {\n    margin-top: 28px;\n    padding: 22px;\n    text-align: center;\n    color: #fff;\n    background: var(--dark);\n    border-radius: 16px;\n    animation: f925-fade-up 0.8s 1s ease both;\n  }\n\n  .f925-message strong {\n    color: #e5bd65;\n  }\n\n  .f925-tagline {\n    margin: 20px 0 0;\n    text-align: center;\n    color: var(--gold);\n    font-size: 18px;\n    font-weight: 800;\n    letter-spacing: 0.5px;\n    animation: f925-pulse-text 2.5s ease-in-out infinite;\n  }\n\n  .f925-warning {\n    margin: 22px 0 0;\n    text-align: center;\n    color: #6e6e6e;\n    font-size: 12px;\n    line-height: 1.5;\n  }\n\n  @keyframes f925-fade-up {\n    from { opacity: 0; transform: translateY(25px); }\n    to { opacity: 1; transform: translateY(0); }\n  }\n\n  @keyframes f925-fade-down {\n    from { opacity: 0; transform: translateY(-18px); }\n    to { opacity: 1; transform: translateY(0); }\n  }\n\n  @keyframes f925-shimmer {\n    to { background-position: 200% center; }\n  }\n\n  @keyframes f925-pulse {\n    0%, 100% { transform: scale(1); }\n    50% { transform: scale(1.08); }\n  }\n\n  @keyframes f925-pulse-text {\n    0%, 100% { opacity: 0.75; }\n    50% { opacity: 1; }\n  }\n\n  @keyframes f925-float {\n    0%, 100% { transform: translateY(0); }\n    50% { transform: translateY(20px); }\n  }\n\n  @media (max-width: 650px) {\n    .f925-course {\n      padding: 30px 18px;\n    }\n\n    .f925-grid {\n      grid-template-columns: 1fr;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-course *,\n    .f925-course::before {\n      animation: none !important;\n      opacity: 1 !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-course\"\u003e\n  \u003cdiv class=\"f925-badge\"\u003eF925 TRADING\u003c\/div\u003e\n\n  \u003ch2 class=\"f925-title\"\u003e\n    Master \u003cspan\u003eMarket Structure\u003c\/span\u003e 📈\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-intro\"\u003e\n    Stop staring at random candles and start understanding what price is\n    actually telling you. Learn to analyse market direction with greater\n    clarity, structure and confidence. 🧠⚡\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-grid\"\u003e\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e📈\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBullish Structure\u003c\/strong\u003e\n        \u003cp\u003eLearn how to recognise when buyers are controlling the market.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e📉\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBearish Structure\u003c\/strong\u003e\n        \u003cp\u003eUnderstand when sellers are influencing price direction.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e🔍\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eHighs and Lows\u003c\/strong\u003e\n        \u003cp\u003eIdentify higher highs, higher lows, lower highs and lower lows.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e🔄\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eDirection Changes\u003c\/strong\u003e\n        \u003cp\u003eRecognise signs that the market may be changing direction.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e🧩\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eRead Price Clearly\u003c\/strong\u003e\n        \u003cp\u003eUnderstand the story developing behind market movement.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-item\"\u003e\n      \u003cspan class=\"f925-icon\"\u003e🎯\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBuild Your Bias\u003c\/strong\u003e\n        \u003cp\u003ePrepare a structured market view before searching for entries.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-message\"\u003e\n    No more looking at price as random movement. ❌🕯️\n    \u003cbr\u003e\u003cbr\u003e\n    \u003cstrong\u003eUnderstand the structure, follow the story and approach every chart with purpose.\u003c\/strong\u003e\n  \u003c\/div\u003e\n\n  \u003cp class=\"f925-tagline\"\u003e\n    Learn the structure • Read the market • Trade with purpose 🏆\n  \u003c\/p\u003e\n\n  \u003cp class=\"f925-warning\"\u003e\n    ⚠️ Educational purposes only. Trading involves risk, and results are\n    never guaranteed.\n  \u003c\/p\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44480603226200,"sku":null,"price":299.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/ChatGPTImageJul30_2026at09_34_23PM.png?v=1785440095"},{"product_id":"f925-zone-of-interest","title":"F925 Zone Of Interest","description":"\u003cstyle\u003e\n  .f925-zoi {\n    --gold: #c99a35;\n    --dark: #181818;\n    --cream: #fffaf0;\n    position: relative;\n    max-width: 920px;\n    margin: 30px auto;\n    padding: 42px 28px;\n    overflow: hidden;\n    color: var(--dark);\n    background: linear-gradient(135deg, #ffffff, var(--cream));\n    border: 1px solid rgba(201, 154, 53, 0.35);\n    border-radius: 22px;\n    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);\n    font-family: inherit;\n  }\n\n  .f925-zoi::before,\n  .f925-zoi::after {\n    content: \"\";\n    position: absolute;\n    width: 230px;\n    height: 230px;\n    border-radius: 50%;\n    background: rgba(201, 154, 53, 0.14);\n    filter: blur(15px);\n    pointer-events: none;\n    animation: zoi-float 6s ease-in-out infinite;\n  }\n\n  .f925-zoi::before {\n    top: -130px;\n    right: -80px;\n  }\n\n  .f925-zoi::after {\n    bottom: -150px;\n    left: -100px;\n    animation-delay: -3s;\n  }\n\n  .zoi-badge {\n    display: table;\n    margin: 0 auto 16px;\n    padding: 8px 17px;\n    color: #fff;\n    background: var(--dark);\n    border: 1px solid var(--gold);\n    border-radius: 100px;\n    font-size: 12px;\n    font-weight: 800;\n    letter-spacing: 2px;\n    animation: zoi-drop 0.7s ease both;\n  }\n\n  .zoi-title {\n    margin: 0;\n    text-align: center;\n    font-size: clamp(30px, 5vw, 50px);\n    line-height: 1.1;\n    animation: zoi-rise 0.8s 0.1s ease both;\n  }\n\n  .zoi-title span {\n    color: transparent;\n    background: linear-gradient(\n      90deg,\n      #9c6b15,\n      #e8c56f,\n      #9c6b15\n    );\n    background-size: 200% auto;\n    background-clip: text;\n    -webkit-background-clip: text;\n    animation: zoi-shimmer 3s linear infinite;\n  }\n\n  .zoi-intro {\n    max-width: 720px;\n    margin: 20px auto 28px;\n    text-align: center;\n    font-size: 17px;\n    line-height: 1.7;\n    animation: zoi-rise 0.8s 0.25s ease both;\n  }\n\n  .zoi-highlight {\n    margin: 28px auto;\n    padding: 21px;\n    text-align: center;\n    color: #fff;\n    background: var(--dark);\n    border-left: 4px solid var(--gold);\n    border-radius: 15px;\n    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);\n    animation: zoi-rise 0.8s 0.35s ease both;\n  }\n\n  .zoi-grid {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin-top: 28px;\n  }\n\n  .zoi-card {\n    display: flex;\n    align-items: flex-start;\n    gap: 13px;\n    padding: 18px;\n    opacity: 0;\n    background: rgba(255, 255, 255, 0.88);\n    border: 1px solid rgba(201, 154, 53, 0.26);\n    border-radius: 15px;\n    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);\n    animation: zoi-rise 0.7s ease forwards;\n    transition:\n      transform 0.3s ease,\n      border-color 0.3s ease,\n      box-shadow 0.3s ease;\n  }\n\n  .zoi-card:nth-child(1) { animation-delay: 0.45s; }\n  .zoi-card:nth-child(2) { animation-delay: 0.55s; }\n  .zoi-card:nth-child(3) { animation-delay: 0.65s; }\n  .zoi-card:nth-child(4) { animation-delay: 0.75s; }\n  .zoi-card:nth-child(5) { animation-delay: 0.85s; }\n  .zoi-card:nth-child(6) { animation-delay: 0.95s; }\n  .zoi-card:nth-child(7) { animation-delay: 1.05s; }\n\n  .zoi-card:hover {\n    transform: translateY(-6px);\n    border-color: var(--gold);\n    box-shadow: 0 14px 30px rgba(201, 154, 53, 0.18);\n  }\n\n  .zoi-icon {\n    display: inline-flex;\n    align-items: center;\n    justify-content: center;\n    flex: 0 0 44px;\n    height: 44px;\n    font-size: 23px;\n    background: #fff6e1;\n    border-radius: 50%;\n    animation: zoi-pulse 2.4s ease-in-out infinite;\n  }\n\n  .zoi-card strong {\n    display: block;\n    margin-bottom: 5px;\n    font-size: 16px;\n  }\n\n  .zoi-card p {\n    margin: 0;\n    color: #555;\n    font-size: 14px;\n    line-height: 1.55;\n  }\n\n  .zoi-message {\n    margin-top: 30px;\n    padding: 24px;\n    text-align: center;\n    background: #fff;\n    border: 1px solid rgba(201, 154, 53, 0.4);\n    border-radius: 16px;\n    animation: zoi-rise 0.8s 1.1s ease both;\n  }\n\n  .zoi-message strong {\n    color: #a9781f;\n  }\n\n  .zoi-steps {\n    margin: 24px 0 0;\n    text-align: center;\n    color: var(--gold);\n    font-size: clamp(16px, 3vw, 20px);\n    font-weight: 800;\n    line-height: 1.8;\n    animation: zoi-glow 2.5s ease-in-out infinite;\n  }\n\n  .zoi-warning {\n    margin: 24px 0 0;\n    text-align: center;\n    color: #777;\n    font-size: 12px;\n    line-height: 1.5;\n  }\n\n  @keyframes zoi-rise {\n    from {\n      opacity: 0;\n      transform: translateY(26px);\n    }\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes zoi-drop {\n    from {\n      opacity: 0;\n      transform: translateY(-18px);\n    }\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes zoi-shimmer {\n    to {\n      background-position: 200% center;\n    }\n  }\n\n  @keyframes zoi-pulse {\n    0%,\n    100% {\n      transform: scale(1);\n    }\n    50% {\n      transform: scale(1.09);\n    }\n  }\n\n  @keyframes zoi-glow {\n    0%,\n    100% {\n      opacity: 0.7;\n    }\n    50% {\n      opacity: 1;\n      text-shadow: 0 0 18px rgba(201, 154, 53, 0.35);\n    }\n  }\n\n  @keyframes zoi-float {\n    0%,\n    100% {\n      transform: translateY(0);\n    }\n    50% {\n      transform: translateY(22px);\n    }\n  }\n\n  @media (max-width: 650px) {\n    .f925-zoi {\n      padding: 32px 18px;\n    }\n\n    .zoi-grid {\n      grid-template-columns: 1fr;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-zoi *,\n    .f925-zoi::before,\n    .f925-zoi::after {\n      animation: none !important;\n      opacity: 1 !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-zoi\"\u003e\n  \u003cdiv class=\"zoi-badge\"\u003eF925 TRADING\u003c\/div\u003e\n\n  \u003ch2 class=\"zoi-title\"\u003e\n    Master Your \u003cspan\u003eZone of Interest\u003c\/span\u003e 🎯\n  \u003c\/h2\u003e\n\n  \u003cp class=\"zoi-intro\"\u003e\n    Stop entering trades at random and start understanding where price may\n    react. Learn how to identify and refine meaningful areas with greater\n    structure, clarity and confidence. 📊🔥\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"zoi-highlight\"\u003e\n    💎 Learn to focus on the areas that matter—and remove unnecessary noise\n    from your charts.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"zoi-grid\"\u003e\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e🟡\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eUnderstand the Zone\u003c\/strong\u003e\n        \u003cp\u003eDiscover what a Zone of Interest represents within the market.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e📈\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBullish Zones\u003c\/strong\u003e\n        \u003cp\u003eLearn how to identify areas where buying pressure may appear.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e📉\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBearish Zones\u003c\/strong\u003e\n        \u003cp\u003eRecognise areas where selling pressure may influence price.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e🔍\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eImportant Areas\u003c\/strong\u003e\n        \u003cp\u003eConnect meaningful zones with the surrounding market structure.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e🎯\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eRefine Your Zones\u003c\/strong\u003e\n        \u003cp\u003eCreate cleaner charts and develop more focused analysis.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e🧩\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eBuild Confluence\u003c\/strong\u003e\n        \u003cp\u003eCombine your zones with your overall directional market view.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"zoi-card\"\u003e\n      \u003cspan class=\"zoi-icon\"\u003e⏳\u003c\/span\u003e\n      \u003cdiv\u003e\n        \u003cstrong\u003eDevelop Patience\u003c\/strong\u003e\n        \u003cp\u003eAllow price to approach your area instead of chasing the market.\u003c\/p\u003e\n      \u003c\/div\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"zoi-message\"\u003e\n    Stop chasing price and forcing entries. ❌\n    \u003cbr\u003e\u003cbr\u003e\n    \u003cstrong\u003e\n      Prepare your chart, identify meaningful areas and allow the market to\n      come to you.\n    \u003c\/strong\u003e\n  \u003c\/div\u003e\n\n  \u003cp class=\"zoi-steps\"\u003e\n    🔥 Identify the zone\u003cbr\u003e\n    🧠 Understand the reaction\u003cbr\u003e\n    🎯 Execute with purpose\n  \u003c\/p\u003e\n\n  \u003cp class=\"zoi-warning\"\u003e\n    ⚠️ This course is for educational purposes only. Trading involves risk,\n    and no profits or results are guaranteed.\n  \u003c\/p\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44480660799576,"sku":null,"price":299.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/56dc57ce-a065-4a55-8083-3b5fe37fbe88.png?v=1785415310"},{"product_id":"f925-entry-signals-patterns","title":"F925 Entry Signals \u0026 Patterns","description":"\u003cstyle\u003e\n  .f925-premium-course,\n  .f925-premium-course * {\n    box-sizing: border-box;\n  }\n\n  .f925-premium-course {\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 940px;\n    margin: 30px auto;\n    padding: 58px 46px;\n    border: 1px solid rgba(181, 137, 47, 0.28);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(218, 180, 92, 0.18),\n        transparent 30%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(198, 151, 55, 0.1),\n        transparent 28%\n      ),\n      linear-gradient(145deg, #ffffff 0%, #fffdf8 55%, #f8f2e7 100%);\n    color: #191919;\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 25px 70px rgba(79, 54, 10, 0.12),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    animation: f925PremiumReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-premium-course::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -2;\n    opacity: 0.4;\n    background-image:\n      linear-gradient(\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-premium-course::after {\n    content: \"\";\n    position: absolute;\n    top: -180px;\n    right: -160px;\n    z-index: -1;\n    width: 430px;\n    height: 430px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(210, 165, 63, 0.23),\n      rgba(210, 165, 63, 0.06) 45%,\n      transparent 70%\n    );\n    filter: blur(5px);\n    animation: f925PremiumGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-premium-topline {\n    width: 76px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #9a6b17,\n      #e8c46f,\n      #ad7d25\n    );\n    animation: f925LineExpand 0.9s ease-out 0.15s both;\n  }\n\n  .f925-premium-badge {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    margin-bottom: 20px;\n    padding: 9px 15px;\n    border: 1px solid rgba(180, 134, 43, 0.32);\n    border-radius: 50px;\n    background: rgba(214, 172, 78, 0.1);\n    color: #8d641b;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925FadeUp 0.8s ease-out 0.2s both;\n  }\n\n  .f925-premium-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #c59431;\n    box-shadow: 0 0 14px rgba(197, 148, 49, 0.55);\n  }\n\n  .f925-premium-title {\n    max-width: 760px;\n    margin: 0 0 16px;\n    color: #171717;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(34px, 6vw, 58px);\n    font-weight: 500;\n    line-height: 1.06;\n    letter-spacing: -1.8px;\n    animation: f925FadeUp 0.8s ease-out 0.3s both;\n  }\n\n  .f925-premium-title span {\n    background: linear-gradient(\n      90deg,\n      #8f6215,\n      #d2a442,\n      #a27320,\n      #e2c16f\n    );\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n  }\n\n  .f925-premium-subtitle {\n    max-width: 680px;\n    margin: 0 0 32px;\n    color: #4e4e4e;\n    font-size: 18px;\n    line-height: 1.7;\n    animation: f925FadeUp 0.8s ease-out 0.4s both;\n  }\n\n  .f925-premium-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(186, 139, 44, 0.75),\n      rgba(186, 139, 44, 0.15),\n      transparent\n    );\n    animation: f925FadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-premium-description {\n    max-width: 790px;\n    color: #555555;\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925FadeUp 0.8s ease-out 0.5s both;\n  }\n\n  .f925-premium-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-premium-description strong {\n    color: #171717;\n    font-weight: 700;\n  }\n\n  .f925-premium-section-title {\n    margin: 38px 0 18px;\n    color: #9b6d18;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 25px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925FadeUp 0.8s ease-out 0.65s both;\n  }\n\n  .f925-premium-benefits {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-premium-benefits li {\n    position: relative;\n    overflow: hidden;\n    min-height: 92px;\n    padding: 20px 18px 20px 58px;\n    border: 1px solid rgba(184, 137, 42, 0.18);\n    border-radius: 17px;\n    background:\n      linear-gradient(\n        135deg,\n        rgba(255, 255, 255, 0.96),\n        rgba(248, 240, 221, 0.7)\n      );\n    color: #353535;\n    font-size: 14px;\n    line-height: 1.55;\n    backdrop-filter: blur(12px);\n    box-shadow:\n      0 10px 26px rgba(92, 64, 12, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925FadeUp 0.75s ease-out both;\n  }\n\n  .f925-premium-benefits li:nth-child(1) {\n    animation-delay: 0.7s;\n  }\n\n  .f925-premium-benefits li:nth-child(2) {\n    animation-delay: 0.8s;\n  }\n\n  .f925-premium-benefits li:nth-child(3) {\n    animation-delay: 0.9s;\n  }\n\n  .f925-premium-benefits li:nth-child(4) {\n    animation-delay: 1s;\n  }\n\n  .f925-premium-benefits li:nth-child(5) {\n    grid-column: 1 \/ -1;\n    animation-delay: 1.1s;\n  }\n\n  .f925-premium-benefits li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(181, 132, 34, 0.48);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #f8edcf\n    );\n    box-shadow: 0 18px 34px rgba(96, 67, 12, 0.12);\n  }\n\n  .f925-premium-benefits li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 27px;\n    height: 27px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(156, 107, 18, 0.35);\n    border-radius: 50%;\n    background: linear-gradient(145deg, #efd58e, #b98423);\n    color: #2c1a00;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 5px 16px rgba(170, 121, 27, 0.2);\n  }\n\n  .f925-premium-closing {\n    margin: 32px 0 0;\n    padding: 23px 24px;\n    border-left: 3px solid #b78222;\n    background: linear-gradient(\n      90deg,\n      rgba(213, 170, 74, 0.14),\n      rgba(255, 255, 255, 0.4)\n    );\n    color: #454545;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925FadeUp 0.8s ease-out 1.15s both;\n  }\n\n  .f925-premium-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(176, 127, 30, 0.2);\n    color: #737373;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925FadeUp 0.8s ease-out 1.25s both;\n  }\n\n  .f925-premium-disclaimer strong {\n    color: #93671c;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925PremiumReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925FadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925FadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925LineExpand {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 76px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925PremiumGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @media (max-width: 680px) {\n    .f925-premium-course {\n      margin: 18px auto;\n      padding: 40px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-premium-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-premium-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-premium-benefits {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-premium-benefits li:nth-child(5) {\n      grid-column: auto;\n    }\n\n    .f925-premium-closing {\n      padding: 19px 18px;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-premium-course,\n    .f925-premium-course::after,\n    .f925-premium-course * {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-premium-course\"\u003e\n  \u003cdiv class=\"f925-premium-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-premium-badge\"\u003e\n    F925 Premium Trading Education\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-premium-title\"\u003e\n    F925 \u003cspan\u003eEntry Signals \u0026amp; Patterns\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-premium-subtitle\"\u003e\n    Develop a more structured and confident approach to identifying potential\n    market entries.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-premium-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-premium-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 Entry Signals \u0026amp; Patterns\u003c\/strong\u003e course is designed\n      to help you recognise quality opportunities that align with the F925\n      trading methodology.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Rather than chasing every market movement, you will learn how to approach\n      potential setups with greater patience, structure and discipline.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Inside the course, you will be introduced to the concepts and techniques\n      that form part of my personal execution process. Each lesson is designed\n      to help you build a more consistent and repeatable approach to the market.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-premium-section-title\"\u003e\n    What You’ll Gain\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-premium-benefits\"\u003e\n    \u003cli\u003eA more professional approach to trade execution\u003c\/li\u003e\n\n    \u003cli\u003eGreater confidence when assessing opportunities\u003c\/li\u003e\n\n    \u003cli\u003eA structured and repeatable execution process\u003c\/li\u003e\n\n    \u003cli\u003eA deeper understanding of market behaviour\u003c\/li\u003e\n\n    \u003cli\u003e\n      Insight into the F925 methodology for recognising quality trade setups\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-premium-closing\"\u003e\n    Whether you are refining your execution or developing a more disciplined\n    trading process, this course provides the next essential component of the\n    F925 trading system.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-premium-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This course is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and profits or results are not\n    guaranteed. You remain responsible for your own trading decisions.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44481607270488,"sku":null,"price":299.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/8ac955a2-e342-4fec-a089-25a747557c5d.png?v=1785437346"},{"product_id":"f925-risk-management","title":"F925 Risk Management","description":"\u003cstyle\u003e\n  .f925-risk-course,\n  .f925-risk-course * {\n    box-sizing: border-box;\n  }\n\n  .f925-risk-course {\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 940px;\n    margin: 30px auto;\n    padding: 58px 46px;\n    border: 1px solid rgba(181, 137, 47, 0.28);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(218, 180, 92, 0.18),\n        transparent 30%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(198, 151, 55, 0.1),\n        transparent 28%\n      ),\n      linear-gradient(\n        145deg,\n        #ffffff 0%,\n        #fffdf8 55%,\n        #f8f2e7 100%\n      );\n    color: #191919;\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 25px 70px rgba(79, 54, 10, 0.12),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    animation: f925RiskReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-risk-course::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -2;\n    opacity: 0.4;\n    background-image:\n      linear-gradient(\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-risk-course::after {\n    content: \"\";\n    position: absolute;\n    top: -180px;\n    right: -160px;\n    z-index: -1;\n    width: 430px;\n    height: 430px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(210, 165, 63, 0.23),\n      rgba(210, 165, 63, 0.06) 45%,\n      transparent 70%\n    );\n    filter: blur(5px);\n    animation: f925RiskGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-risk-topline {\n    width: 76px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #9a6b17,\n      #e8c46f,\n      #ad7d25\n    );\n    animation: f925RiskLine 0.9s ease-out 0.15s both;\n  }\n\n  .f925-risk-badge {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    margin-bottom: 20px;\n    padding: 9px 15px;\n    border: 1px solid rgba(180, 134, 43, 0.32);\n    border-radius: 50px;\n    background: rgba(214, 172, 78, 0.1);\n    color: #8d641b;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925RiskFadeUp 0.8s ease-out 0.2s both;\n  }\n\n  .f925-risk-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #c59431;\n    box-shadow: 0 0 14px rgba(197, 148, 49, 0.55);\n    animation: f925RiskPulse 2.4s ease-in-out infinite;\n  }\n\n  .f925-risk-title {\n    max-width: 760px;\n    margin: 0 0 16px;\n    color: #171717;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(36px, 6vw, 60px);\n    font-weight: 500;\n    line-height: 1.06;\n    letter-spacing: -1.8px;\n    animation: f925RiskFadeUp 0.8s ease-out 0.3s both;\n  }\n\n  .f925-risk-title span {\n    background: linear-gradient(\n      90deg,\n      #8f6215,\n      #d2a442,\n      #a27320,\n      #e2c16f\n    );\n    background-size: 200% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation:\n      f925RiskGoldMove 5s linear infinite,\n      f925RiskFadeUp 0.8s ease-out 0.3s both;\n  }\n\n  .f925-risk-subtitle {\n    max-width: 680px;\n    margin: 0 0 32px;\n    color: #4e4e4e;\n    font-size: 18px;\n    font-weight: 600;\n    line-height: 1.7;\n    animation: f925RiskFadeUp 0.8s ease-out 0.4s both;\n  }\n\n  .f925-risk-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(186, 139, 44, 0.75),\n      rgba(186, 139, 44, 0.15),\n      transparent\n    );\n    animation: f925RiskFadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-risk-description {\n    max-width: 790px;\n    color: #555555;\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925RiskFadeUp 0.8s ease-out 0.5s both;\n  }\n\n  .f925-risk-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-risk-description strong {\n    color: #171717;\n    font-weight: 700;\n  }\n\n  .f925-risk-section-title {\n    margin: 38px 0 18px;\n    color: #9b6d18;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 25px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925RiskFadeUp 0.8s ease-out 0.65s both;\n  }\n\n  .f925-risk-benefits {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-risk-benefits li {\n    position: relative;\n    overflow: hidden;\n    min-height: 92px;\n    padding: 20px 18px 20px 58px;\n    border: 1px solid rgba(184, 137, 42, 0.18);\n    border-radius: 17px;\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.96),\n      rgba(248, 240, 221, 0.7)\n    );\n    color: #353535;\n    font-size: 14px;\n    line-height: 1.55;\n    backdrop-filter: blur(12px);\n    box-shadow:\n      0 10px 26px rgba(92, 64, 12, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925RiskFadeUp 0.75s ease-out both;\n  }\n\n  .f925-risk-benefits li:nth-child(1) {\n    animation-delay: 0.7s;\n  }\n\n  .f925-risk-benefits li:nth-child(2) {\n    animation-delay: 0.8s;\n  }\n\n  .f925-risk-benefits li:nth-child(3) {\n    animation-delay: 0.9s;\n  }\n\n  .f925-risk-benefits li:nth-child(4) {\n    animation-delay: 1s;\n  }\n\n  .f925-risk-benefits li:nth-child(5) {\n    grid-column: 1 \/ -1;\n    animation-delay: 1.1s;\n  }\n\n  .f925-risk-benefits li::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 70%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.75),\n      transparent\n    );\n    transform: skewX(-20deg);\n    transition: left 0.7s ease;\n    pointer-events: none;\n  }\n\n  .f925-risk-benefits li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(181, 132, 34, 0.48);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #f8edcf\n    );\n    box-shadow: 0 18px 34px rgba(96, 67, 12, 0.12);\n  }\n\n  .f925-risk-benefits li:hover::after {\n    left: 140%;\n  }\n\n  .f925-risk-benefits li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 27px;\n    height: 27px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(156, 107, 18, 0.35);\n    border-radius: 50%;\n    background: linear-gradient(\n      145deg,\n      #efd58e,\n      #b98423\n    );\n    color: #2c1a00;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 5px 16px rgba(170, 121, 27, 0.2);\n  }\n\n  .f925-risk-closing {\n    margin: 32px 0 0;\n    padding: 23px 24px;\n    border-left: 3px solid #b78222;\n    border-radius: 0 14px 14px 0;\n    background: linear-gradient(\n      90deg,\n      rgba(213, 170, 74, 0.14),\n      rgba(255, 255, 255, 0.4)\n    );\n    color: #454545;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925RiskFadeUp 0.8s ease-out 1.15s both;\n  }\n\n  .f925-risk-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(176, 127, 30, 0.2);\n    color: #737373;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925RiskFadeUp 0.8s ease-out 1.25s both;\n  }\n\n  .f925-risk-disclaimer strong {\n    color: #93671c;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925RiskReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925RiskFadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925RiskFadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925RiskLine {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 76px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925RiskGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925RiskPulse {\n    0%,\n    100% {\n      transform: scale(1);\n      box-shadow: 0 0 10px rgba(197, 148, 49, 0.4);\n    }\n\n    50% {\n      transform: scale(1.25);\n      box-shadow: 0 0 18px rgba(197, 148, 49, 0.8);\n    }\n  }\n\n  @keyframes f925RiskGoldMove {\n    from {\n      background-position: 0% center;\n    }\n\n    to {\n      background-position: 200% center;\n    }\n  }\n\n  @media (max-width: 680px) {\n    .f925-risk-course {\n      margin: 18px auto;\n      padding: 40px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-risk-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-risk-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-risk-benefits {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-risk-benefits li:nth-child(5) {\n      grid-column: auto;\n    }\n\n    .f925-risk-closing {\n      padding: 19px 18px;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-risk-course,\n    .f925-risk-course::after,\n    .f925-risk-course * {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-risk-course\"\u003e\n  \u003cdiv class=\"f925-risk-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-risk-badge\"\u003e\n    F925 Premium Trading Education\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-risk-title\"\u003e\n    F925 \u003cspan\u003eRisk Management\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-risk-subtitle\"\u003e\n    Protect your capital. Trade with discipline. Build long-term consistency.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-risk-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-risk-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 Risk Management\u003c\/strong\u003e course is designed to help you\n      develop a structured approach to protecting your trading capital while\n      maintaining consistency in the markets.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      A strong trading strategy is only one part of the equation. How you\n      manage risk can play a critical role in your overall trading journey.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Throughout this course, you will be introduced to the principles and\n      methodologies that form part of the F925 approach to risk management.\n      Each lesson is designed to encourage more informed decision-making,\n      improved discipline and a sustainable trading mindset.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Rather than focusing solely on short-term outcomes, this course\n      highlights the importance of consistency, preparation and effective\n      capital management within a structured trading framework.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-risk-section-title\"\u003e\n    What You’ll Gain\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-risk-benefits\"\u003e\n    \u003cli\u003e\n      A more disciplined approach to managing risk\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Greater confidence when planning and managing trades\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Improved consistency through structured decision-making\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      A stronger understanding of capital preservation principles\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Insight into the F925 methodology for building long-term trading\n      discipline\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-risk-closing\"\u003e\n    Whether you are new to trading or looking to strengthen your existing\n    approach, this course will help you develop greater structure and\n    discipline when managing risk.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-risk-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This course is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and profits or results are not\n    guaranteed. You remain responsible for your own trading decisions.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44481720942680,"sku":null,"price":299.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/66fbf9a2-00f3-431b-b15c-3cd7c14dafa2.png?v=1785438108"},{"product_id":"f925-managing-the-trade","title":"F925 Managing the Trade","description":"\u003cstyle\u003e\n  .f925-manage-course,\n  .f925-manage-course * {\n    box-sizing: border-box;\n  }\n\n  .f925-manage-course {\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 940px;\n    margin: 30px auto;\n    padding: 58px 46px;\n    border: 1px solid rgba(181, 137, 47, 0.28);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(218, 180, 92, 0.18),\n        transparent 30%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(198, 151, 55, 0.1),\n        transparent 28%\n      ),\n      linear-gradient(\n        145deg,\n        #ffffff 0%,\n        #fffdf8 55%,\n        #f8f2e7 100%\n      );\n    color: #191919;\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 25px 70px rgba(79, 54, 10, 0.12),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    animation: f925ManageReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-manage-course::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -2;\n    opacity: 0.4;\n    background-image:\n      linear-gradient(\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(166, 124, 40, 0.04) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-manage-course::after {\n    content: \"\";\n    position: absolute;\n    top: -180px;\n    right: -160px;\n    z-index: -1;\n    width: 430px;\n    height: 430px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(210, 165, 63, 0.23),\n      rgba(210, 165, 63, 0.06) 45%,\n      transparent 70%\n    );\n    filter: blur(5px);\n    animation: f925ManageGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-manage-topline {\n    width: 76px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #9a6b17,\n      #e8c46f,\n      #ad7d25\n    );\n    animation: f925ManageLine 0.9s ease-out 0.15s both;\n  }\n\n  .f925-manage-badge {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    margin-bottom: 20px;\n    padding: 9px 15px;\n    border: 1px solid rgba(180, 134, 43, 0.32);\n    border-radius: 50px;\n    background: rgba(214, 172, 78, 0.1);\n    color: #8d641b;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925ManageFadeUp 0.8s ease-out 0.2s both;\n  }\n\n  .f925-manage-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #c59431;\n    box-shadow: 0 0 14px rgba(197, 148, 49, 0.55);\n    animation: f925ManagePulse 2.4s ease-in-out infinite;\n  }\n\n  .f925-manage-title {\n    max-width: 780px;\n    margin: 0 0 16px;\n    color: #171717;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(36px, 6vw, 60px);\n    font-weight: 500;\n    line-height: 1.06;\n    letter-spacing: -1.8px;\n    animation: f925ManageFadeUp 0.8s ease-out 0.3s both;\n  }\n\n  .f925-manage-title span {\n    background: linear-gradient(\n      90deg,\n      #8f6215,\n      #d2a442,\n      #a27320,\n      #e2c16f\n    );\n    background-size: 200% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: f925ManageGoldMove 5s linear infinite;\n  }\n\n  .f925-manage-subtitle {\n    max-width: 700px;\n    margin: 0 0 32px;\n    color: #4e4e4e;\n    font-size: 18px;\n    font-weight: 600;\n    line-height: 1.7;\n    animation: f925ManageFadeUp 0.8s ease-out 0.4s both;\n  }\n\n  .f925-manage-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(186, 139, 44, 0.75),\n      rgba(186, 139, 44, 0.15),\n      transparent\n    );\n    animation: f925ManageFadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-manage-description {\n    max-width: 790px;\n    color: #555555;\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925ManageFadeUp 0.8s ease-out 0.5s both;\n  }\n\n  .f925-manage-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-manage-description strong {\n    color: #171717;\n    font-weight: 700;\n  }\n\n  .f925-manage-section-title {\n    margin: 38px 0 18px;\n    color: #9b6d18;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 25px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925ManageFadeUp 0.8s ease-out 0.65s both;\n  }\n\n  .f925-manage-benefits {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-manage-benefits li {\n    position: relative;\n    overflow: hidden;\n    min-height: 92px;\n    padding: 20px 18px 20px 58px;\n    border: 1px solid rgba(184, 137, 42, 0.18);\n    border-radius: 17px;\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.96),\n      rgba(248, 240, 221, 0.7)\n    );\n    color: #353535;\n    font-size: 14px;\n    line-height: 1.55;\n    backdrop-filter: blur(12px);\n    box-shadow:\n      0 10px 26px rgba(92, 64, 12, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.9);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925ManageFadeUp 0.75s ease-out both;\n  }\n\n  .f925-manage-benefits li:nth-child(1) {\n    animation-delay: 0.7s;\n  }\n\n  .f925-manage-benefits li:nth-child(2) {\n    animation-delay: 0.8s;\n  }\n\n  .f925-manage-benefits li:nth-child(3) {\n    animation-delay: 0.9s;\n  }\n\n  .f925-manage-benefits li:nth-child(4) {\n    animation-delay: 1s;\n  }\n\n  .f925-manage-benefits li:nth-child(5) {\n    grid-column: 1 \/ -1;\n    animation-delay: 1.1s;\n  }\n\n  .f925-manage-benefits li::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 70%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.75),\n      transparent\n    );\n    transform: skewX(-20deg);\n    transition: left 0.7s ease;\n    pointer-events: none;\n  }\n\n  .f925-manage-benefits li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(181, 132, 34, 0.48);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #f8edcf\n    );\n    box-shadow: 0 18px 34px rgba(96, 67, 12, 0.12);\n  }\n\n  .f925-manage-benefits li:hover::after {\n    left: 140%;\n  }\n\n  .f925-manage-benefits li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 27px;\n    height: 27px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(156, 107, 18, 0.35);\n    border-radius: 50%;\n    background: linear-gradient(\n      145deg,\n      #efd58e,\n      #b98423\n    );\n    color: #2c1a00;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 5px 16px rgba(170, 121, 27, 0.2);\n  }\n\n  .f925-manage-closing {\n    margin: 32px 0 0;\n    padding: 23px 24px;\n    border-left: 3px solid #b78222;\n    border-radius: 0 14px 14px 0;\n    background: linear-gradient(\n      90deg,\n      rgba(213, 170, 74, 0.14),\n      rgba(255, 255, 255, 0.4)\n    );\n    color: #454545;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925ManageFadeUp 0.8s ease-out 1.15s both;\n  }\n\n  .f925-manage-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(176, 127, 30, 0.2);\n    color: #737373;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925ManageFadeUp 0.8s ease-out 1.25s both;\n  }\n\n  .f925-manage-disclaimer strong {\n    color: #93671c;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925ManageReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925ManageFadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925ManageFadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ManageLine {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 76px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ManageGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ManagePulse {\n    0%,\n    100% {\n      transform: scale(1);\n      box-shadow: 0 0 10px rgba(197, 148, 49, 0.4);\n    }\n\n    50% {\n      transform: scale(1.25);\n      box-shadow: 0 0 18px rgba(197, 148, 49, 0.8);\n    }\n  }\n\n  @keyframes f925ManageGoldMove {\n    from {\n      background-position: 0% center;\n    }\n\n    to {\n      background-position: 200% center;\n    }\n  }\n\n  @media (max-width: 680px) {\n    .f925-manage-course {\n      margin: 18px auto;\n      padding: 40px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-manage-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-manage-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-manage-benefits {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-manage-benefits li:nth-child(5) {\n      grid-column: auto;\n    }\n\n    .f925-manage-closing {\n      padding: 19px 18px;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-manage-course,\n    .f925-manage-course::after,\n    .f925-manage-course * {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-manage-course\"\u003e\n  \u003cdiv class=\"f925-manage-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-manage-badge\"\u003e\n    F925 Premium Trading Education\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-manage-title\"\u003e\n    F925 \u003cspan\u003eManaging the Trade\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-manage-subtitle\"\u003e\n    Approach every trade with greater structure, patience and confidence.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-manage-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-manage-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 Managing the Trade\u003c\/strong\u003e course is designed to help\n      you develop a disciplined approach to managing positions after entering\n      the market.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Successful trading is not only about identifying opportunities. It is\n      also about maintaining structure and making consistent decisions\n      throughout the life of a trade.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Throughout this course, you will be introduced to the principles and\n      methodologies that form part of the F925 approach to trade management.\n      Each lesson is designed to help you improve discipline, build confidence\n      and develop a more structured decision-making process.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Rather than reacting emotionally to market movements, this course focuses\n      on maintaining consistency through a repeatable framework that supports\n      your long-term development as a trader.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-manage-section-title\"\u003e\n    What You’ll Gain\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-manage-benefits\"\u003e\n    \u003cli\u003e\n      A more structured approach to managing trades\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Greater confidence throughout the trading process\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Improved consistency through disciplined decision-making\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      A stronger understanding of trade management principles\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      Insight into the F925 methodology for developing long-term trading\n      discipline\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-manage-closing\"\u003e\n    Whether you are refining your current approach or building a more\n    consistent trading process, this course provides the next step in the F925\n    trading system.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-manage-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This course is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and results are not guaranteed.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44482013560920,"sku":null,"price":299.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/ChatGPTImageJul30_2026at09_13_19PM.png?v=1785438831"},{"product_id":"f925-mentorship-1-month","title":"F925 Mentorship (1 Month)","description":"\u003cstyle\u003e\n  .f925-mentorship,\n  .f925-mentorship * {\n    box-sizing: border-box;\n  }\n\n  .f925-mentorship {\n    --mentor-navy: #0b1d3a;\n    --mentor-navy-light: #17365f;\n    --mentor-blue: #315f91;\n    --mentor-platinum: #b8c3d1;\n    --mentor-silver: #dce3eb;\n    --mentor-ice: #f3f7fb;\n    --mentor-text: #17202d;\n    --mentor-muted: #5e6877;\n\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 960px;\n    margin: 30px auto;\n    padding: 60px 46px;\n    border: 1px solid rgba(49, 95, 145, 0.22);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(49, 95, 145, 0.14),\n        transparent 32%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(184, 195, 209, 0.2),\n        transparent 30%\n      ),\n      linear-gradient(\n        145deg,\n        #ffffff 0%,\n        #fbfdff 52%,\n        #edf3f8 100%\n      );\n    color: var(--mentor-text);\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 28px 75px rgba(11, 29, 58, 0.14),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925MentorReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-mentorship::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -3;\n    opacity: 0.5;\n    background-image:\n      linear-gradient(\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-mentorship::after {\n    content: \"\";\n    position: absolute;\n    top: -190px;\n    right: -160px;\n    z-index: -2;\n    width: 450px;\n    height: 450px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(49, 95, 145, 0.2),\n      rgba(184, 195, 209, 0.1) 46%,\n      transparent 72%\n    );\n    filter: blur(7px);\n    animation: f925MentorGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-mentor-orb {\n    position: absolute;\n    bottom: -170px;\n    left: -140px;\n    z-index: -2;\n    width: 370px;\n    height: 370px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(23, 54, 95, 0.13),\n      rgba(184, 195, 209, 0.06) 52%,\n      transparent 73%\n    );\n    animation: f925MentorOrb 8s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-mentor-topline {\n    width: 82px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #7893b1,\n      #dce3eb,\n      #315f91\n    );\n    background-size: 220% auto;\n    animation:\n      f925MentorLine 0.9s ease-out 0.15s both,\n      f925MentorMetal 5s linear infinite;\n  }\n\n  .f925-mentor-badges {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 10px;\n    margin-bottom: 20px;\n  }\n\n  .f925-mentor-badge,\n  .f925-mentor-duration {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    padding: 9px 15px;\n    border-radius: 50px;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 1.7px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925MentorFadeUp 0.8s ease-out both;\n  }\n\n  .f925-mentor-badge {\n    border: 1px solid rgba(49, 95, 145, 0.3);\n    background: rgba(49, 95, 145, 0.08);\n    color: #17365f;\n    animation-delay: 0.2s;\n  }\n\n  .f925-mentor-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #315f91;\n    box-shadow: 0 0 14px rgba(49, 95, 145, 0.6);\n    animation: f925MentorPulse 2.4s ease-in-out infinite;\n  }\n\n  .f925-mentor-duration {\n    border: 1px solid rgba(184, 195, 209, 0.65);\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(220, 227, 235, 0.52)\n    );\n    color: #34465d;\n    animation-delay: 0.27s;\n  }\n\n  .f925-mentor-title {\n    max-width: 820px;\n    margin: 0 0 17px;\n    color: #101a29;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(38px, 6vw, 62px);\n    font-weight: 500;\n    line-height: 1.05;\n    letter-spacing: -1.8px;\n    animation: f925MentorFadeUp 0.8s ease-out 0.32s both;\n  }\n\n  .f925-mentor-title span {\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #9eafc1,\n      #17365f,\n      #0b1d3a\n    );\n    background-size: 220% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: f925MentorMetal 5s linear infinite;\n  }\n\n  .f925-mentor-subtitle {\n    max-width: 730px;\n    margin: 0 0 32px;\n    color: #4f5d6e;\n    font-size: 18px;\n    font-weight: 600;\n    line-height: 1.7;\n    animation: f925MentorFadeUp 0.8s ease-out 0.42s both;\n  }\n\n  .f925-mentor-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(23, 54, 95, 0.8),\n      rgba(184, 195, 209, 0.45),\n      transparent\n    );\n    animation: f925MentorFadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-mentor-description {\n    max-width: 820px;\n    color: var(--mentor-muted);\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925MentorFadeUp 0.8s ease-out 0.52s both;\n  }\n\n  .f925-mentor-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-mentor-description strong {\n    color: var(--mentor-navy);\n    font-weight: 700;\n  }\n\n  .f925-mentor-highlight {\n    display: grid;\n    grid-template-columns: repeat(3, minmax(0, 1fr));\n    gap: 14px;\n    margin: 34px 0 0;\n  }\n\n  .f925-mentor-stat {\n    position: relative;\n    overflow: hidden;\n    padding: 22px 18px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      145deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.86)\n    );\n    text-align: center;\n    box-shadow:\n      0 12px 28px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.98);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease;\n    animation: f925MentorFadeUp 0.75s ease-out both;\n  }\n\n  .f925-mentor-stat:nth-child(1) {\n    animation-delay: 0.65s;\n  }\n\n  .f925-mentor-stat:nth-child(2) {\n    animation-delay: 0.75s;\n  }\n\n  .f925-mentor-stat:nth-child(3) {\n    animation-delay: 0.85s;\n  }\n\n  .f925-mentor-stat:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.38);\n    box-shadow: 0 18px 36px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-mentor-stat strong {\n    display: block;\n    margin-bottom: 7px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #758ca7\n    );\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n  }\n\n  .f925-mentor-stat span {\n    color: #566376;\n    font-size: 12px;\n    font-weight: 700;\n    line-height: 1.5;\n    letter-spacing: 0.5px;\n    text-transform: uppercase;\n  }\n\n  .f925-mentor-section-title {\n    margin: 40px 0 18px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925MentorFadeUp 0.8s ease-out 0.9s both;\n  }\n\n  .f925-mentor-included {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-mentor-included li {\n    position: relative;\n    overflow: hidden;\n    min-height: 94px;\n    padding: 20px 18px 20px 59px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.78)\n    );\n    color: #465467;\n    font-size: 14px;\n    line-height: 1.55;\n    box-shadow:\n      0 10px 26px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.94);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925MentorFadeUp 0.75s ease-out both;\n  }\n\n  .f925-mentor-included li:nth-child(1) {\n    animation-delay: 0.95s;\n  }\n\n  .f925-mentor-included li:nth-child(2) {\n    animation-delay: 1.03s;\n  }\n\n  .f925-mentor-included li:nth-child(3) {\n    animation-delay: 1.11s;\n  }\n\n  .f925-mentor-included li:nth-child(4) {\n    animation-delay: 1.19s;\n  }\n\n  .f925-mentor-included li:nth-child(5) {\n    animation-delay: 1.27s;\n  }\n\n  .f925-mentor-included li:nth-child(6) {\n    animation-delay: 1.35s;\n  }\n\n  .f925-mentor-included li:nth-child(7) {\n    animation-delay: 1.43s;\n  }\n\n  .f925-mentor-included li:nth-child(8) {\n    animation-delay: 1.51s;\n  }\n\n  .f925-mentor-included li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 28px;\n    height: 28px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(49, 95, 145, 0.34);\n    border-radius: 50%;\n    background: linear-gradient(\n      145deg,\n      #e6edf4,\n      #7893b1\n    );\n    color: #0b1d3a;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 6px 16px rgba(49, 95, 145, 0.18);\n  }\n\n  .f925-mentor-included li::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 70%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.85),\n      transparent\n    );\n    transform: skewX(-20deg);\n    transition: left 0.75s ease;\n    pointer-events: none;\n  }\n\n  .f925-mentor-included li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.42);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #e8f0f7\n    );\n    box-shadow: 0 18px 34px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-mentor-included li:hover::after {\n    left: 140%;\n  }\n\n  .f925-mentor-included strong {\n    display: block;\n    margin-bottom: 4px;\n    color: var(--mentor-navy);\n    font-size: 14px;\n  }\n\n  .f925-mentor-premiers {\n    position: relative;\n    overflow: hidden;\n    margin-top: 34px;\n    padding: 27px;\n    border: 1px solid rgba(49, 95, 145, 0.24);\n    border-radius: 18px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(184, 195, 209, 0.28),\n        transparent 48%\n      ),\n      linear-gradient(\n        135deg,\n        rgba(255, 255, 255, 0.97),\n        rgba(226, 235, 244, 0.72)\n      );\n    box-shadow:\n      0 14px 34px rgba(11, 29, 58, 0.09),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925MentorFadeUp 0.8s ease-out 1.58s both;\n  }\n\n  .f925-mentor-premiers::before {\n    content: \"PREMIERS\";\n    position: absolute;\n    top: 17px;\n    right: 20px;\n    color: rgba(11, 29, 58, 0.07);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(28px, 6vw, 58px);\n    font-weight: 700;\n    letter-spacing: 3px;\n    pointer-events: none;\n  }\n\n  .f925-mentor-premiers::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 55%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.82),\n      transparent\n    );\n    transform: skewX(-20deg);\n    animation: f925MentorSweep 5.5s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-mentor-premiers-title {\n    position: relative;\n    z-index: 1;\n    margin: 0 0 9px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 22px;\n    font-weight: 500;\n  }\n\n  .f925-mentor-premiers p {\n    position: relative;\n    z-index: 1;\n    max-width: 710px;\n    margin: 0;\n    color: #4f5d6e;\n    font-size: 15px;\n    line-height: 1.75;\n  }\n\n  .f925-mentor-premiers strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-mentor-closing {\n    margin: 30px 0 0;\n    padding: 24px 25px;\n    border-left: 3px solid #315f91;\n    border-radius: 0 15px 15px 0;\n    background: linear-gradient(\n      90deg,\n      rgba(49, 95, 145, 0.1),\n      rgba(255, 255, 255, 0.55)\n    );\n    color: #465467;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925MentorFadeUp 0.8s ease-out 1.68s both;\n  }\n\n  .f925-mentor-closing strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-mentor-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(49, 95, 145, 0.18);\n    color: #737f8f;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925MentorFadeUp 0.8s ease-out 1.78s both;\n  }\n\n  .f925-mentor-disclaimer strong {\n    color: #315f91;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925MentorReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925MentorFadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925MentorFadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925MentorLine {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 82px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925MentorGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925MentorOrb {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n    }\n\n    50% {\n      transform: translate(32px, -28px) scale(1.12);\n    }\n  }\n\n  @keyframes f925MentorPulse {\n    0%,\n    100% {\n      transform: scale(1);\n      box-shadow: 0 0 10px rgba(49, 95, 145, 0.4);\n    }\n\n    50% {\n      transform: scale(1.25);\n      box-shadow: 0 0 19px rgba(49, 95, 145, 0.78);\n    }\n  }\n\n  @keyframes f925MentorMetal {\n    from {\n      background-position: 0% center;\n    }\n\n    to {\n      background-position: 220% center;\n    }\n  }\n\n  @keyframes f925MentorSweep {\n    0%,\n    55% {\n      left: -120%;\n    }\n\n    85%,\n    100% {\n      left: 150%;\n    }\n  }\n\n  @media (max-width: 760px) {\n    .f925-mentorship {\n      margin: 18px auto;\n      padding: 42px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-mentor-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-mentor-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-mentor-highlight,\n    .f925-mentor-included {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-mentor-premiers::before {\n      display: none;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-mentorship,\n    .f925-mentorship::after,\n    .f925-mentorship *,\n    .f925-mentor-orb {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-mentorship\"\u003e\n  \u003cdiv class=\"f925-mentor-orb\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-badges\"\u003e\n    \u003cdiv class=\"f925-mentor-badge\"\u003e\n      F925 Exclusive Mentorship\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-mentor-duration\"\u003e\n      One-Month Programme\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-mentor-title\"\u003e\n    F925 \u003cspan\u003eMentorship\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-mentor-subtitle\"\u003e\n    A more personal trading education experience built around live interaction,\n    direct guidance and real-time support.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-mentor-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 1 Month Mentorship\u003c\/strong\u003e is designed for traders who\n      want more than pre-recorded lessons. Throughout the month, you will have\n      the opportunity to learn within a live and interactive environment where\n      you can ask questions, gain clarity and receive guidance throughout your\n      trading journey.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      We will host \u003cstrong\u003etwo live mentorship sessions every week\u003c\/strong\u003e,\n      giving you the opportunity to engage directly with me and interact with\n      other mentorship members.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      These sessions are designed to create a more personal learning\n      experience where questions can be answered in real time and trading\n      concepts can be discussed in greater detail.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Rather than learning alone, you will become part of an exclusive\n      environment focused on education, interaction, discipline and continued\n      development.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-highlight\"\u003e\n    \u003cdiv class=\"f925-mentor-stat\"\u003e\n      \u003cstrong\u003e1 Month\u003c\/strong\u003e\n      \u003cspan\u003eMentorship Access\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-mentor-stat\"\u003e\n      \u003cstrong\u003e2× Weekly\u003c\/strong\u003e\n      \u003cspan\u003eLive Sessions\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-mentor-stat\"\u003e\n      \u003cstrong\u003eFull Access\u003c\/strong\u003e\n      \u003cspan\u003eComplete F925 Course\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-mentor-section-title\"\u003e\n    What’s Included\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-mentor-included\"\u003e\n    \u003cli\u003e\n      \u003cstrong\u003eOne Month of F925 Mentorship Access\u003c\/strong\u003e\n      Full access to the mentorship environment for the complete month.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eTwo Live Sessions Every Week\u003c\/strong\u003e\n      Join eight scheduled live mentorship sessions across the month.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eReal-Time Questions and Answers\u003c\/strong\u003e\n      Ask questions and receive answers during the live sessions.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003ePersonal, Interactive Learning\u003c\/strong\u003e\n      Experience a more direct and personal style of trading education.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eExclusive F925 Premiers Discord\u003c\/strong\u003e\n      Access a private Discord community created specifically for mentorship\n      members.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eLive Trading Discussions\u003c\/strong\u003e\n      Take part in interactive discussions around trading concepts and the F925\n      methodology.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eF925 Complete Trading System\u003c\/strong\u003e\n      Receive access to the entire F925 course collection as part of the\n      mentorship.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eSupportive Trading Community\u003c\/strong\u003e\n      Learn alongside other traders focused on developing their knowledge and\n      discipline.\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-mentor-premiers\"\u003e\n    \u003ch3 class=\"f925-mentor-premiers-title\"\u003e\n      👑 Exclusive F925 Premiers Access\n    \u003c\/h3\u003e\n\n    \u003cp\u003e\n      Your mentorship includes access to the private\n      \u003cstrong\u003eF925 Premiers Discord\u003c\/strong\u003e, where mentorship members can\n      interact, stay connected and continue the learning experience throughout\n      the month.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-closing\"\u003e\n    Whether you are looking to strengthen your understanding, gain additional\n    clarity or learn in a more interactive environment, the\n    \u003cstrong\u003eF925 1 Month Mentorship\u003c\/strong\u003e provides a structured and personal\n    experience designed to support your development as a trader.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-mentor-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This mentorship is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and profits or results are not\n    guaranteed.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44482304671832,"sku":null,"price":1999.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/ChatGPTImageJul30_2026at09_59_45PM.png?v=1785441609"},{"product_id":"f925-mentorship-2months","title":"F925 Mentorship (2Months)","description":"\u003cstyle\u003e\n  .f925-mentorship-two,\n  .f925-mentorship-two * {\n    box-sizing: border-box;\n  }\n\n  .f925-mentorship-two {\n    --mentor-navy: #0b1d3a;\n    --mentor-navy-light: #17365f;\n    --mentor-blue: #315f91;\n    --mentor-platinum: #b8c3d1;\n    --mentor-silver: #dce3eb;\n    --mentor-text: #17202d;\n    --mentor-muted: #5e6877;\n\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 960px;\n    margin: 30px auto;\n    padding: 60px 46px;\n    border: 1px solid rgba(49, 95, 145, 0.22);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(49, 95, 145, 0.14),\n        transparent 32%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(184, 195, 209, 0.2),\n        transparent 30%\n      ),\n      linear-gradient(\n        145deg,\n        #ffffff 0%,\n        #fbfdff 52%,\n        #edf3f8 100%\n      );\n    color: var(--mentor-text);\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 28px 75px rgba(11, 29, 58, 0.14),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925TwoReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-mentorship-two::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -3;\n    opacity: 0.5;\n    background-image:\n      linear-gradient(\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-mentorship-two::after {\n    content: \"\";\n    position: absolute;\n    top: -190px;\n    right: -160px;\n    z-index: -2;\n    width: 450px;\n    height: 450px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(49, 95, 145, 0.2),\n      rgba(184, 195, 209, 0.1) 46%,\n      transparent 72%\n    );\n    filter: blur(7px);\n    animation: f925TwoGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-two-orb {\n    position: absolute;\n    bottom: -170px;\n    left: -140px;\n    z-index: -2;\n    width: 370px;\n    height: 370px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(23, 54, 95, 0.13),\n      rgba(184, 195, 209, 0.06) 52%,\n      transparent 73%\n    );\n    animation: f925TwoOrb 8s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-two-topline {\n    width: 82px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #7893b1,\n      #dce3eb,\n      #315f91\n    );\n    background-size: 220% auto;\n    animation:\n      f925TwoLine 0.9s ease-out 0.15s both,\n      f925TwoMetal 5s linear infinite;\n  }\n\n  .f925-two-badges {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 10px;\n    margin-bottom: 20px;\n  }\n\n  .f925-two-badge,\n  .f925-two-duration {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    padding: 9px 15px;\n    border-radius: 50px;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 1.7px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925TwoFadeUp 0.8s ease-out both;\n  }\n\n  .f925-two-badge {\n    border: 1px solid rgba(49, 95, 145, 0.3);\n    background: rgba(49, 95, 145, 0.08);\n    color: #17365f;\n    animation-delay: 0.2s;\n  }\n\n  .f925-two-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #315f91;\n    box-shadow: 0 0 14px rgba(49, 95, 145, 0.6);\n    animation: f925TwoPulse 2.4s ease-in-out infinite;\n  }\n\n  .f925-two-duration {\n    border: 1px solid rgba(184, 195, 209, 0.65);\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(220, 227, 235, 0.52)\n    );\n    color: #34465d;\n    animation-delay: 0.27s;\n  }\n\n  .f925-two-title {\n    max-width: 820px;\n    margin: 0 0 17px;\n    color: #101a29;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(38px, 6vw, 62px);\n    font-weight: 500;\n    line-height: 1.05;\n    letter-spacing: -1.8px;\n    animation: f925TwoFadeUp 0.8s ease-out 0.32s both;\n  }\n\n  .f925-two-title span {\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #9eafc1,\n      #17365f,\n      #0b1d3a\n    );\n    background-size: 220% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: f925TwoMetal 5s linear infinite;\n  }\n\n  .f925-two-subtitle {\n    max-width: 730px;\n    margin: 0 0 32px;\n    color: #4f5d6e;\n    font-size: 18px;\n    font-weight: 600;\n    line-height: 1.7;\n    animation: f925TwoFadeUp 0.8s ease-out 0.42s both;\n  }\n\n  .f925-two-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(23, 54, 95, 0.8),\n      rgba(184, 195, 209, 0.45),\n      transparent\n    );\n    animation: f925TwoFadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-two-description {\n    max-width: 820px;\n    color: var(--mentor-muted);\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925TwoFadeUp 0.8s ease-out 0.52s both;\n  }\n\n  .f925-two-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-two-description strong {\n    color: var(--mentor-navy);\n    font-weight: 700;\n  }\n\n  .f925-two-highlights {\n    display: grid;\n    grid-template-columns: repeat(3, minmax(0, 1fr));\n    gap: 14px;\n    margin: 34px 0 0;\n  }\n\n  .f925-two-stat {\n    position: relative;\n    overflow: hidden;\n    padding: 22px 18px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      145deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.86)\n    );\n    text-align: center;\n    box-shadow:\n      0 12px 28px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.98);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease;\n    animation: f925TwoFadeUp 0.75s ease-out both;\n  }\n\n  .f925-two-stat:nth-child(1) {\n    animation-delay: 0.65s;\n  }\n\n  .f925-two-stat:nth-child(2) {\n    animation-delay: 0.75s;\n  }\n\n  .f925-two-stat:nth-child(3) {\n    animation-delay: 0.85s;\n  }\n\n  .f925-two-stat:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.38);\n    box-shadow: 0 18px 36px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-two-stat strong {\n    display: block;\n    margin-bottom: 7px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #758ca7\n    );\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n  }\n\n  .f925-two-stat span {\n    color: #566376;\n    font-size: 12px;\n    font-weight: 700;\n    line-height: 1.5;\n    letter-spacing: 0.5px;\n    text-transform: uppercase;\n  }\n\n  .f925-two-section-title {\n    margin: 40px 0 18px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925TwoFadeUp 0.8s ease-out 0.9s both;\n  }\n\n  .f925-two-included {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-two-included li {\n    position: relative;\n    overflow: hidden;\n    min-height: 94px;\n    padding: 20px 18px 20px 59px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.78)\n    );\n    color: #465467;\n    font-size: 14px;\n    line-height: 1.55;\n    box-shadow:\n      0 10px 26px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.94);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925TwoFadeUp 0.75s ease-out both;\n  }\n\n  .f925-two-included li:nth-child(1) {\n    animation-delay: 0.95s;\n  }\n\n  .f925-two-included li:nth-child(2) {\n    animation-delay: 1.03s;\n  }\n\n  .f925-two-included li:nth-child(3) {\n    animation-delay: 1.11s;\n  }\n\n  .f925-two-included li:nth-child(4) {\n    animation-delay: 1.19s;\n  }\n\n  .f925-two-included li:nth-child(5) {\n    animation-delay: 1.27s;\n  }\n\n  .f925-two-included li:nth-child(6) {\n    animation-delay: 1.35s;\n  }\n\n  .f925-two-included li:nth-child(7) {\n    animation-delay: 1.43s;\n  }\n\n  .f925-two-included li:nth-child(8) {\n    animation-delay: 1.51s;\n  }\n\n  .f925-two-included li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 28px;\n    height: 28px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(49, 95, 145, 0.34);\n    border-radius: 50%;\n    background: linear-gradient(\n      145deg,\n      #e6edf4,\n      #7893b1\n    );\n    color: #0b1d3a;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 6px 16px rgba(49, 95, 145, 0.18);\n  }\n\n  .f925-two-included li::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 70%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.85),\n      transparent\n    );\n    transform: skewX(-20deg);\n    transition: left 0.75s ease;\n    pointer-events: none;\n  }\n\n  .f925-two-included li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.42);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #e8f0f7\n    );\n    box-shadow: 0 18px 34px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-two-included li:hover::after {\n    left: 140%;\n  }\n\n  .f925-two-included strong {\n    display: block;\n    margin-bottom: 4px;\n    color: var(--mentor-navy);\n    font-size: 14px;\n  }\n\n  .f925-two-premiers {\n    position: relative;\n    overflow: hidden;\n    margin-top: 34px;\n    padding: 27px;\n    border: 1px solid rgba(49, 95, 145, 0.24);\n    border-radius: 18px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(184, 195, 209, 0.28),\n        transparent 48%\n      ),\n      linear-gradient(\n        135deg,\n        rgba(255, 255, 255, 0.97),\n        rgba(226, 235, 244, 0.72)\n      );\n    box-shadow:\n      0 14px 34px rgba(11, 29, 58, 0.09),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925TwoFadeUp 0.8s ease-out 1.58s both;\n  }\n\n  .f925-two-premiers::before {\n    content: \"PREMIERS\";\n    position: absolute;\n    top: 17px;\n    right: 20px;\n    color: rgba(11, 29, 58, 0.07);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(28px, 6vw, 58px);\n    font-weight: 700;\n    letter-spacing: 3px;\n    pointer-events: none;\n  }\n\n  .f925-two-premiers::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 55%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.82),\n      transparent\n    );\n    transform: skewX(-20deg);\n    animation: f925TwoSweep 5.5s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-two-premiers-title {\n    position: relative;\n    z-index: 1;\n    margin: 0 0 9px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 22px;\n    font-weight: 500;\n  }\n\n  .f925-two-premiers p {\n    position: relative;\n    z-index: 1;\n    max-width: 710px;\n    margin: 0;\n    color: #4f5d6e;\n    font-size: 15px;\n    line-height: 1.75;\n  }\n\n  .f925-two-premiers strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-two-closing {\n    margin: 30px 0 0;\n    padding: 24px 25px;\n    border-left: 3px solid #315f91;\n    border-radius: 0 15px 15px 0;\n    background: linear-gradient(\n      90deg,\n      rgba(49, 95, 145, 0.1),\n      rgba(255, 255, 255, 0.55)\n    );\n    color: #465467;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925TwoFadeUp 0.8s ease-out 1.68s both;\n  }\n\n  .f925-two-closing strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-two-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(49, 95, 145, 0.18);\n    color: #737f8f;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925TwoFadeUp 0.8s ease-out 1.78s both;\n  }\n\n  .f925-two-disclaimer strong {\n    color: #315f91;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925TwoReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925TwoFadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925TwoFadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925TwoLine {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 82px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925TwoGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925TwoOrb {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n    }\n\n    50% {\n      transform: translate(32px, -28px) scale(1.12);\n    }\n  }\n\n  @keyframes f925TwoPulse {\n    0%,\n    100% {\n      transform: scale(1);\n      box-shadow: 0 0 10px rgba(49, 95, 145, 0.4);\n    }\n\n    50% {\n      transform: scale(1.25);\n      box-shadow: 0 0 19px rgba(49, 95, 145, 0.78);\n    }\n  }\n\n  @keyframes f925TwoMetal {\n    from {\n      background-position: 0% center;\n    }\n\n    to {\n      background-position: 220% center;\n    }\n  }\n\n  @keyframes f925TwoSweep {\n    0%,\n    55% {\n      left: -120%;\n    }\n\n    85%,\n    100% {\n      left: 150%;\n    }\n  }\n\n  @media (max-width: 760px) {\n    .f925-mentorship-two {\n      margin: 18px auto;\n      padding: 42px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-two-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-two-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-two-highlights,\n    .f925-two-included {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-two-premiers::before {\n      display: none;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-mentorship-two,\n    .f925-mentorship-two::after,\n    .f925-mentorship-two *,\n    .f925-two-orb {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-mentorship-two\"\u003e\n  \u003cdiv class=\"f925-two-orb\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-badges\"\u003e\n    \u003cdiv class=\"f925-two-badge\"\u003e\n      F925 Exclusive Mentorship\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-two-duration\"\u003e\n      Two-Month Programme\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-two-title\"\u003e\n    F925 \u003cspan\u003eMentorship — 2 Months\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-two-subtitle\"\u003e\n    An extended and more personal trading education experience built around\n    live interaction, direct guidance and continued support.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-two-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 2 Month Mentorship\u003c\/strong\u003e is designed for traders who\n      want a longer and more immersive learning experience with direct guidance\n      throughout their journey.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Over the course of two months, you will have the opportunity to learn\n      within a live and interactive environment where you can ask questions,\n      gain clarity and continue developing your understanding of the F925\n      methodology.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      We will host \u003cstrong\u003etwo live mentorship sessions every week\u003c\/strong\u003e,\n      giving you regular opportunities to engage directly with me and interact\n      with other mentorship members.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      With two months of continued support, you will have more time to absorb\n      the material, take part in live discussions and strengthen your trading\n      knowledge within a structured environment.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-highlights\"\u003e\n    \u003cdiv class=\"f925-two-stat\"\u003e\n      \u003cstrong\u003e2 Months\u003c\/strong\u003e\n      \u003cspan\u003eMentorship Access\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-two-stat\"\u003e\n      \u003cstrong\u003e2× Weekly\u003c\/strong\u003e\n      \u003cspan\u003eLive Sessions\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-two-stat\"\u003e\n      \u003cstrong\u003eFull Access\u003c\/strong\u003e\n      \u003cspan\u003eComplete F925 Course\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-two-section-title\"\u003e\n    What’s Included\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-two-included\"\u003e\n    \u003cli\u003e\n      \u003cstrong\u003eTwo Months of F925 Mentorship\u003c\/strong\u003e\n      Full access to the mentorship environment throughout the complete\n      two-month programme.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eTwo Live Sessions Every Week\u003c\/strong\u003e\n      Join approximately 16 live mentorship sessions across the two months.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eReal-Time Questions and Answers\u003c\/strong\u003e\n      Ask questions and receive answers during every live mentorship session.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003ePersonal, Interactive Learning\u003c\/strong\u003e\n      Experience a more direct and personal style of trading education.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eExclusive F925 Premiers Discord\u003c\/strong\u003e\n      Access the private Discord community created specifically for mentorship\n      members.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eLive Trading Discussions\u003c\/strong\u003e\n      Take part in interactive discussions around trading concepts and the F925\n      methodology.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eF925 Complete Trading System\u003c\/strong\u003e\n      Receive access to the entire F925 course collection as part of the\n      mentorship.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eContinued Community Support\u003c\/strong\u003e\n      Learn alongside other traders and stay connected throughout the full two\n      months.\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-two-premiers\"\u003e\n    \u003ch3 class=\"f925-two-premiers-title\"\u003e\n      👑 Exclusive F925 Premiers Access\n    \u003c\/h3\u003e\n\n    \u003cp\u003e\n      Your mentorship includes two months of access to the private\n      \u003cstrong\u003eF925 Premiers Discord\u003c\/strong\u003e, where mentorship members can\n      interact, stay connected and continue the learning experience between\n      live sessions.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-closing\"\u003e\n    Whether you are looking to deepen your understanding, receive continued\n    guidance or learn within a more interactive environment, the\n    \u003cstrong\u003eF925 2 Month Mentorship\u003c\/strong\u003e provides the time, structure and\n    support to continue developing your trading knowledge.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-two-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This mentorship is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and profits or results are not\n    guaranteed.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44482310406232,"sku":null,"price":2999.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/ChatGPTImageJul30_2026at10_13_07PM.png?v=1785442409"},{"product_id":"f925-mentorship-3-months","title":"F925 Mentorship (3 Months)","description":"\u003cstyle\u003e\n  .f925-mentorship-three,\n  .f925-mentorship-three * {\n    box-sizing: border-box;\n  }\n\n  .f925-mentorship-three {\n    --mentor-navy: #0b1d3a;\n    --mentor-navy-light: #17365f;\n    --mentor-blue: #315f91;\n    --mentor-platinum: #b8c3d1;\n    --mentor-silver: #dce3eb;\n    --mentor-text: #17202d;\n    --mentor-muted: #5e6877;\n\n    position: relative;\n    isolation: isolate;\n    overflow: hidden;\n    max-width: 960px;\n    margin: 30px auto;\n    padding: 60px 46px;\n    border: 1px solid rgba(49, 95, 145, 0.22);\n    border-radius: 28px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(49, 95, 145, 0.14),\n        transparent 32%\n      ),\n      radial-gradient(\n        circle at bottom left,\n        rgba(184, 195, 209, 0.2),\n        transparent 30%\n      ),\n      linear-gradient(\n        145deg,\n        #ffffff 0%,\n        #fbfdff 52%,\n        #edf3f8 100%\n      );\n    color: var(--mentor-text);\n    font-family: Arial, Helvetica, sans-serif;\n    box-shadow:\n      0 28px 75px rgba(11, 29, 58, 0.14),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925ThreeReveal 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;\n  }\n\n  .f925-mentorship-three::before {\n    content: \"\";\n    position: absolute;\n    inset: 0;\n    z-index: -3;\n    opacity: 0.5;\n    background-image:\n      linear-gradient(\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      ),\n      linear-gradient(\n        90deg,\n        rgba(49, 95, 145, 0.035) 1px,\n        transparent 1px\n      );\n    background-size: 38px 38px;\n    pointer-events: none;\n  }\n\n  .f925-mentorship-three::after {\n    content: \"\";\n    position: absolute;\n    top: -190px;\n    right: -160px;\n    z-index: -2;\n    width: 450px;\n    height: 450px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(49, 95, 145, 0.2),\n      rgba(184, 195, 209, 0.1) 46%,\n      transparent 72%\n    );\n    filter: blur(7px);\n    animation: f925ThreeGlow 7s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-three-orb {\n    position: absolute;\n    bottom: -170px;\n    left: -140px;\n    z-index: -2;\n    width: 370px;\n    height: 370px;\n    border-radius: 50%;\n    background: radial-gradient(\n      circle,\n      rgba(23, 54, 95, 0.13),\n      rgba(184, 195, 209, 0.06) 52%,\n      transparent 73%\n    );\n    animation: f925ThreeOrb 8s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-three-topline {\n    width: 82px;\n    height: 3px;\n    margin-bottom: 22px;\n    border-radius: 50px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #7893b1,\n      #dce3eb,\n      #315f91\n    );\n    background-size: 220% auto;\n    animation:\n      f925ThreeLine 0.9s ease-out 0.15s both,\n      f925ThreeMetal 5s linear infinite;\n  }\n\n  .f925-three-badges {\n    display: flex;\n    flex-wrap: wrap;\n    gap: 10px;\n    margin-bottom: 20px;\n  }\n\n  .f925-three-badge,\n  .f925-three-duration {\n    display: inline-flex;\n    align-items: center;\n    gap: 8px;\n    padding: 9px 15px;\n    border-radius: 50px;\n    font-size: 11px;\n    font-weight: 700;\n    letter-spacing: 1.7px;\n    text-transform: uppercase;\n    backdrop-filter: blur(10px);\n    animation: f925ThreeFadeUp 0.8s ease-out both;\n  }\n\n  .f925-three-badge {\n    border: 1px solid rgba(49, 95, 145, 0.3);\n    background: rgba(49, 95, 145, 0.08);\n    color: #17365f;\n    animation-delay: 0.2s;\n  }\n\n  .f925-three-badge::before {\n    content: \"\";\n    width: 7px;\n    height: 7px;\n    border-radius: 50%;\n    background: #315f91;\n    box-shadow: 0 0 14px rgba(49, 95, 145, 0.6);\n    animation: f925ThreePulse 2.4s ease-in-out infinite;\n  }\n\n  .f925-three-duration {\n    border: 1px solid rgba(184, 195, 209, 0.65);\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(220, 227, 235, 0.52)\n    );\n    color: #34465d;\n    animation-delay: 0.27s;\n  }\n\n  .f925-three-title {\n    max-width: 820px;\n    margin: 0 0 17px;\n    color: #101a29;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(38px, 6vw, 62px);\n    font-weight: 500;\n    line-height: 1.05;\n    letter-spacing: -1.8px;\n    animation: f925ThreeFadeUp 0.8s ease-out 0.32s both;\n  }\n\n  .f925-three-title span {\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #9eafc1,\n      #17365f,\n      #0b1d3a\n    );\n    background-size: 220% auto;\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    animation: f925ThreeMetal 5s linear infinite;\n  }\n\n  .f925-three-subtitle {\n    max-width: 730px;\n    margin: 0 0 32px;\n    color: #4f5d6e;\n    font-size: 18px;\n    font-weight: 600;\n    line-height: 1.7;\n    animation: f925ThreeFadeUp 0.8s ease-out 0.42s both;\n  }\n\n  .f925-three-divider {\n    width: 100%;\n    height: 1px;\n    margin: 0 0 32px;\n    background: linear-gradient(\n      90deg,\n      rgba(23, 54, 95, 0.8),\n      rgba(184, 195, 209, 0.45),\n      transparent\n    );\n    animation: f925ThreeFadeIn 0.9s ease-out 0.5s both;\n  }\n\n  .f925-three-description {\n    max-width: 820px;\n    color: var(--mentor-muted);\n    font-size: 16px;\n    line-height: 1.9;\n    animation: f925ThreeFadeUp 0.8s ease-out 0.52s both;\n  }\n\n  .f925-three-description p {\n    margin: 0 0 18px;\n  }\n\n  .f925-three-description strong {\n    color: var(--mentor-navy);\n    font-weight: 700;\n  }\n\n  .f925-three-highlights {\n    display: grid;\n    grid-template-columns: repeat(3, minmax(0, 1fr));\n    gap: 14px;\n    margin: 34px 0 0;\n  }\n\n  .f925-three-stat {\n    position: relative;\n    overflow: hidden;\n    padding: 22px 18px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      145deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.86)\n    );\n    text-align: center;\n    box-shadow:\n      0 12px 28px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.98);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease;\n    animation: f925ThreeFadeUp 0.75s ease-out both;\n  }\n\n  .f925-three-stat:nth-child(1) {\n    animation-delay: 0.65s;\n  }\n\n  .f925-three-stat:nth-child(2) {\n    animation-delay: 0.75s;\n  }\n\n  .f925-three-stat:nth-child(3) {\n    animation-delay: 0.85s;\n  }\n\n  .f925-three-stat:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.38);\n    box-shadow: 0 18px 36px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-three-stat strong {\n    display: block;\n    margin-bottom: 7px;\n    background: linear-gradient(\n      90deg,\n      #0b1d3a,\n      #315f91,\n      #758ca7\n    );\n    -webkit-background-clip: text;\n    background-clip: text;\n    color: transparent;\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n  }\n\n  .f925-three-stat span {\n    color: #566376;\n    font-size: 12px;\n    font-weight: 700;\n    line-height: 1.5;\n    letter-spacing: 0.5px;\n    text-transform: uppercase;\n  }\n\n  .f925-three-section-title {\n    margin: 40px 0 18px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 26px;\n    font-weight: 500;\n    letter-spacing: -0.4px;\n    animation: f925ThreeFadeUp 0.8s ease-out 0.9s both;\n  }\n\n  .f925-three-included {\n    display: grid;\n    grid-template-columns: repeat(2, minmax(0, 1fr));\n    gap: 14px;\n    margin: 0;\n    padding: 0;\n    list-style: none;\n  }\n\n  .f925-three-included li {\n    position: relative;\n    overflow: hidden;\n    min-height: 94px;\n    padding: 20px 18px 20px 59px;\n    border: 1px solid rgba(49, 95, 145, 0.16);\n    border-radius: 17px;\n    background: linear-gradient(\n      135deg,\n      rgba(255, 255, 255, 0.98),\n      rgba(237, 243, 248, 0.78)\n    );\n    color: #465467;\n    font-size: 14px;\n    line-height: 1.55;\n    box-shadow:\n      0 10px 26px rgba(11, 29, 58, 0.07),\n      inset 0 1px 0 rgba(255, 255, 255, 0.94);\n    transition:\n      transform 0.35s ease,\n      border-color 0.35s ease,\n      box-shadow 0.35s ease,\n      background 0.35s ease;\n    animation: f925ThreeFadeUp 0.75s ease-out both;\n  }\n\n  .f925-three-included li:nth-child(1) {\n    animation-delay: 0.95s;\n  }\n\n  .f925-three-included li:nth-child(2) {\n    animation-delay: 1.03s;\n  }\n\n  .f925-three-included li:nth-child(3) {\n    animation-delay: 1.11s;\n  }\n\n  .f925-three-included li:nth-child(4) {\n    animation-delay: 1.19s;\n  }\n\n  .f925-three-included li:nth-child(5) {\n    animation-delay: 1.27s;\n  }\n\n  .f925-three-included li:nth-child(6) {\n    animation-delay: 1.35s;\n  }\n\n  .f925-three-included li:nth-child(7) {\n    animation-delay: 1.43s;\n  }\n\n  .f925-three-included li:nth-child(8) {\n    animation-delay: 1.51s;\n  }\n\n  .f925-three-included li::before {\n    content: \"✓\";\n    position: absolute;\n    top: 21px;\n    left: 18px;\n    display: flex;\n    width: 28px;\n    height: 28px;\n    align-items: center;\n    justify-content: center;\n    border: 1px solid rgba(49, 95, 145, 0.34);\n    border-radius: 50%;\n    background: linear-gradient(\n      145deg,\n      #e6edf4,\n      #7893b1\n    );\n    color: #0b1d3a;\n    font-size: 13px;\n    font-weight: 900;\n    box-shadow: 0 6px 16px rgba(49, 95, 145, 0.18);\n  }\n\n  .f925-three-included li::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 70%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.85),\n      transparent\n    );\n    transform: skewX(-20deg);\n    transition: left 0.75s ease;\n    pointer-events: none;\n  }\n\n  .f925-three-included li:hover {\n    transform: translateY(-5px);\n    border-color: rgba(49, 95, 145, 0.42);\n    background: linear-gradient(\n      135deg,\n      #ffffff,\n      #e8f0f7\n    );\n    box-shadow: 0 18px 34px rgba(11, 29, 58, 0.12);\n  }\n\n  .f925-three-included li:hover::after {\n    left: 140%;\n  }\n\n  .f925-three-included strong {\n    display: block;\n    margin-bottom: 4px;\n    color: var(--mentor-navy);\n    font-size: 14px;\n  }\n\n  .f925-three-premiers {\n    position: relative;\n    overflow: hidden;\n    margin-top: 34px;\n    padding: 27px;\n    border: 1px solid rgba(49, 95, 145, 0.24);\n    border-radius: 18px;\n    background:\n      radial-gradient(\n        circle at top right,\n        rgba(184, 195, 209, 0.28),\n        transparent 48%\n      ),\n      linear-gradient(\n        135deg,\n        rgba(255, 255, 255, 0.97),\n        rgba(226, 235, 244, 0.72)\n      );\n    box-shadow:\n      0 14px 34px rgba(11, 29, 58, 0.09),\n      inset 0 1px 0 rgba(255, 255, 255, 0.96);\n    animation: f925ThreeFadeUp 0.8s ease-out 1.58s both;\n  }\n\n  .f925-three-premiers::before {\n    content: \"PREMIERS\";\n    position: absolute;\n    top: 17px;\n    right: 20px;\n    color: rgba(11, 29, 58, 0.07);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: clamp(28px, 6vw, 58px);\n    font-weight: 700;\n    letter-spacing: 3px;\n    pointer-events: none;\n  }\n\n  .f925-three-premiers::after {\n    content: \"\";\n    position: absolute;\n    top: 0;\n    left: -120%;\n    width: 55%;\n    height: 100%;\n    background: linear-gradient(\n      90deg,\n      transparent,\n      rgba(255, 255, 255, 0.82),\n      transparent\n    );\n    transform: skewX(-20deg);\n    animation: f925ThreeSweep 5.5s ease-in-out infinite;\n    pointer-events: none;\n  }\n\n  .f925-three-premiers-title {\n    position: relative;\n    z-index: 1;\n    margin: 0 0 9px;\n    color: var(--mentor-navy);\n    font-family: Georgia, \"Times New Roman\", serif;\n    font-size: 22px;\n    font-weight: 500;\n  }\n\n  .f925-three-premiers p {\n    position: relative;\n    z-index: 1;\n    max-width: 710px;\n    margin: 0;\n    color: #4f5d6e;\n    font-size: 15px;\n    line-height: 1.75;\n  }\n\n  .f925-three-premiers strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-three-closing {\n    margin: 30px 0 0;\n    padding: 24px 25px;\n    border-left: 3px solid #315f91;\n    border-radius: 0 15px 15px 0;\n    background: linear-gradient(\n      90deg,\n      rgba(49, 95, 145, 0.1),\n      rgba(255, 255, 255, 0.55)\n    );\n    color: #465467;\n    font-size: 16px;\n    line-height: 1.8;\n    animation: f925ThreeFadeUp 0.8s ease-out 1.68s both;\n  }\n\n  .f925-three-closing strong {\n    color: var(--mentor-navy);\n  }\n\n  .f925-three-disclaimer {\n    margin-top: 28px;\n    padding-top: 20px;\n    border-top: 1px solid rgba(49, 95, 145, 0.18);\n    color: #737f8f;\n    font-size: 11px;\n    line-height: 1.7;\n    animation: f925ThreeFadeUp 0.8s ease-out 1.78s both;\n  }\n\n  .f925-three-disclaimer strong {\n    color: #315f91;\n    letter-spacing: 0.4px;\n  }\n\n  @keyframes f925ThreeReveal {\n    from {\n      opacity: 0;\n      transform: translateY(26px) scale(0.985);\n      filter: blur(6px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0) scale(1);\n      filter: blur(0);\n    }\n  }\n\n  @keyframes f925ThreeFadeUp {\n    from {\n      opacity: 0;\n      transform: translateY(22px);\n    }\n\n    to {\n      opacity: 1;\n      transform: translateY(0);\n    }\n  }\n\n  @keyframes f925ThreeFadeIn {\n    from {\n      opacity: 0;\n    }\n\n    to {\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ThreeLine {\n    from {\n      width: 0;\n      opacity: 0;\n    }\n\n    to {\n      width: 82px;\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ThreeGlow {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n      opacity: 0.7;\n    }\n\n    50% {\n      transform: translate(-35px, 35px) scale(1.15);\n      opacity: 1;\n    }\n  }\n\n  @keyframes f925ThreeOrb {\n    0%,\n    100% {\n      transform: translate(0, 0) scale(1);\n    }\n\n    50% {\n      transform: translate(32px, -28px) scale(1.12);\n    }\n  }\n\n  @keyframes f925ThreePulse {\n    0%,\n    100% {\n      transform: scale(1);\n      box-shadow: 0 0 10px rgba(49, 95, 145, 0.4);\n    }\n\n    50% {\n      transform: scale(1.25);\n      box-shadow: 0 0 19px rgba(49, 95, 145, 0.78);\n    }\n  }\n\n  @keyframes f925ThreeMetal {\n    from {\n      background-position: 0% center;\n    }\n\n    to {\n      background-position: 220% center;\n    }\n  }\n\n  @keyframes f925ThreeSweep {\n    0%,\n    55% {\n      left: -120%;\n    }\n\n    85%,\n    100% {\n      left: 150%;\n    }\n  }\n\n  @media (max-width: 760px) {\n    .f925-mentorship-three {\n      margin: 18px auto;\n      padding: 42px 22px;\n      border-radius: 22px;\n    }\n\n    .f925-three-title {\n      letter-spacing: -1px;\n    }\n\n    .f925-three-subtitle {\n      font-size: 16px;\n    }\n\n    .f925-three-highlights,\n    .f925-three-included {\n      grid-template-columns: 1fr;\n    }\n\n    .f925-three-premiers::before {\n      display: none;\n    }\n  }\n\n  @media (prefers-reduced-motion: reduce) {\n    .f925-mentorship-three,\n    .f925-mentorship-three::after,\n    .f925-mentorship-three *,\n    .f925-three-orb {\n      animation: none !important;\n      transition: none !important;\n    }\n  }\n\u003c\/style\u003e\n\n\u003csection class=\"f925-mentorship-three\"\u003e\n  \u003cdiv class=\"f925-three-orb\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-topline\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-badges\"\u003e\n    \u003cdiv class=\"f925-three-badge\"\u003e\n      F925 Exclusive Mentorship\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-three-duration\"\u003e\n      Three-Month Programme\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch2 class=\"f925-three-title\"\u003e\n    F925 \u003cspan\u003eMentorship — 3 Months\u003c\/span\u003e\n  \u003c\/h2\u003e\n\n  \u003cp class=\"f925-three-subtitle\"\u003e\n    Our most complete mentorship experience, created for traders seeking\n    long-term guidance, live interaction and continuous development.\n  \u003c\/p\u003e\n\n  \u003cdiv class=\"f925-three-divider\"\u003e\u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-description\"\u003e\n    \u003cp\u003e\n      The \u003cstrong\u003eF925 3 Month Mentorship\u003c\/strong\u003e is designed for traders who\n      are committed to taking their trading education further through\n      consistent guidance, structured learning and ongoing mentorship.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Over the course of three months, you will have the opportunity to build\n      a deeper understanding of the F925 methodology while learning within a\n      live and interactive environment.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      We will host \u003cstrong\u003etwo live mentorship sessions every week\u003c\/strong\u003e,\n      allowing you to ask questions in real time, receive direct feedback and\n      continue developing alongside other dedicated mentorship members.\n    \u003c\/p\u003e\n\n    \u003cp\u003e\n      Three months provides additional time to reinforce concepts, strengthen\n      discipline, improve consistency and continue developing your confidence\n      through regular interaction and support.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-highlights\"\u003e\n    \u003cdiv class=\"f925-three-stat\"\u003e\n      \u003cstrong\u003e3 Months\u003c\/strong\u003e\n      \u003cspan\u003eMentorship Access\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-three-stat\"\u003e\n      \u003cstrong\u003e2× Weekly\u003c\/strong\u003e\n      \u003cspan\u003eLive Sessions\u003c\/span\u003e\n    \u003c\/div\u003e\n\n    \u003cdiv class=\"f925-three-stat\"\u003e\n      \u003cstrong\u003eFull Access\u003c\/strong\u003e\n      \u003cspan\u003eComplete F925 Course\u003c\/span\u003e\n    \u003c\/div\u003e\n  \u003c\/div\u003e\n\n  \u003ch3 class=\"f925-three-section-title\"\u003e\n    What’s Included\n  \u003c\/h3\u003e\n\n  \u003cul class=\"f925-three-included\"\u003e\n    \u003cli\u003e\n      \u003cstrong\u003eThree Months of F925 Mentorship\u003c\/strong\u003e\n      Full access to the mentorship environment throughout the complete\n      three-month programme.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eTwo Live Sessions Every Week\u003c\/strong\u003e\n      Join approximately 24 live mentorship sessions across the three months.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eReal-Time Questions and Answers\u003c\/strong\u003e\n      Ask questions and receive direct answers during every live mentorship\n      session.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003ePersonal, Interactive Learning\u003c\/strong\u003e\n      Experience an extended and more personal style of trading education.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eExclusive F925 Premiers Discord\u003c\/strong\u003e\n      Access the private Discord community created specifically for mentorship\n      members.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eLive Trading Discussions\u003c\/strong\u003e\n      Take part in ongoing discussions around trading concepts and the F925\n      methodology.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eF925 Complete Trading System\u003c\/strong\u003e\n      Receive access to the entire F925 course collection as part of the\n      mentorship.\n    \u003c\/li\u003e\n\n    \u003cli\u003e\n      \u003cstrong\u003eLong-Term Community Support\u003c\/strong\u003e\n      Learn alongside like-minded traders and stay connected throughout the\n      full three months.\n    \u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cdiv class=\"f925-three-premiers\"\u003e\n    \u003ch3 class=\"f925-three-premiers-title\"\u003e\n      👑 Exclusive F925 Premiers Access\n    \u003c\/h3\u003e\n\n    \u003cp\u003e\n      Your mentorship includes three months of access to the private\n      \u003cstrong\u003eF925 Premiers Discord\u003c\/strong\u003e, where members can interact, ask\n      questions, share ideas and continue learning between every live session.\n    \u003c\/p\u003e\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-closing\"\u003e\n    Whether you are looking to strengthen your understanding, develop greater\n    consistency or receive long-term guidance, the\n    \u003cstrong\u003eF925 3 Month Mentorship\u003c\/strong\u003e provides the time, structure and\n    support to continue building confidence within a premium learning\n    environment.\n  \u003c\/div\u003e\n\n  \u003cdiv class=\"f925-three-disclaimer\"\u003e\n    \u003cstrong\u003eEDUCATIONAL DISCLAIMER:\u003c\/strong\u003e\n    This mentorship is for educational purposes only and does not constitute\n    financial advice. Trading involves risk, and profits or results are not\n    guaranteed.\n  \u003c\/div\u003e\n\u003c\/section\u003e","brand":"F925 Trading","offers":[{"title":"Default Title","offer_id":44482326233176,"sku":null,"price":3999.99,"currency_code":"ZAR","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0738\/2014\/3704\/files\/ChatGPTImageJul30_2026at10_25_38PM.png?v=1785443159"}],"url":"https:\/\/f925trading.co.za\/collections\/courses.oembed","provider":"F925 Trading","version":"1.0","type":"link"}