<style>
    :root{
      --bg:#ffffff;
      --surface:#ffffff;
      --surface-2:#f8fafc;
      --border:rgba(15,23,42,.12);
      --text:#0f172a;
      --muted:#6b7280;
      --muted-2:#94a3b8;

      --green:#16a34a;
      --green-2:#15803d;

      --shadow:0 18px 40px rgba(15,23,42,.10);
      --shadow-2:0 10px 28px rgba(15,23,42,.08);

      --radius:18px;
      --max:1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.55;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;height:auto;display:block}

    .container{width:100%;max-width:var(--max);margin:0 auto;padding:0 18px}
    .section{padding:72px 0}
    .section.tight{padding:56px 0}
    .section-title{
      font-size:clamp(22px,2.5vw,30px);
      letter-spacing:-.02em;
      margin:0 0 10px 0;
    }
    .section-subtitle{
      margin:0 0 26px 0;
      color:var(--muted);
      max-width:820px;
      font-size:15px;
    }

    /* Header */
    .header{
      position:sticky;top:0;z-index:50;
      background:rgba(255,255,255,.85);
      backdrop-filter:blur(12px);
      border-bottom:1px solid var(--border);
    }
    .header-inner{
      display:flex;align-items:center;justify-content:space-between;
      height:74px;gap:12px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;
      flex:0 0 auto;
      min-width:220px;
    }
    .logo{
      height:40px;
      width:auto;
      display:block;
      flex:0 0 auto;
    }

    .nav{display:flex;align-items:center;gap:18px}
    .nav a{
      font-size:14px;
      color:rgba(15,23,42,.78);
      padding:10px 10px;
      border-radius:10px;
    }
    .nav a:hover{
      background:rgba(15,23,42,.04);
      color:rgba(15,23,42,.92);
    }

    .actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      padding:11px 14px;border-radius:14px;
      font-size:14px;border:1px solid transparent;
      cursor:pointer;
      transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
      white-space:nowrap;
    }
    .btn:active{transform:translateY(1px)}
    .btn-primary{
      background:var(--green);
      color:#fff;
      box-shadow:0 10px 22px rgba(22,163,74,.18);
      border-color:rgba(22,163,74,.25);
    }
    .btn-primary:hover{background:#139043}
    .btn-secondary{
      background:#fff;
      border-color:var(--border);
      color:rgba(15,23,42,.86);
    }
    .btn-secondary:hover{background:rgba(15,23,42,.03)}
    .mobile-toggle{display:none}

    /* Language dropdown */
    .lang-dd{position:relative}
    .lang-btn{
      display:flex;align-items:center;gap:8px;
      padding:10px 12px;
      border:1px solid var(--border);
      border-radius:12px;
      background:#fff;
      cursor:pointer;
      font-size:13px;
      color:rgba(15,23,42,.78);
    }
    .lang-btn .chev{opacity:.7;font-size:12px}
    .lang-menu{
      position:absolute;right:0;top:calc(100% + 8px);
      min-width:190px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:14px;
      box-shadow:var(--shadow);
      padding:6px;
      display:none;
      z-index:100;
    }
    .lang-menu.open{display:block}
    .lang-menu button{
      width:100%;
      text-align:left;
      padding:10px 10px;
      border:0;background:transparent;
      border-radius:10px;
      cursor:pointer;
      font-size:13px;
      color:rgba(15,23,42,.85);
      display:flex;gap:10px;align-items:center;
    }
    .lang-menu button:hover{background:rgba(15,23,42,.04)}
    .lang-dot{
      width:8px;height:8px;border-radius:999px;
      background:rgba(15,23,42,.16);
      margin-left:auto;
    }
    .lang-menu button.active .lang-dot{
      background:var(--green);
      box-shadow:0 0 0 3px rgba(22,163,74,.12);
    }

    /* Hero */
    .hero{padding:46px 0 10px}
    .hero-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:26px;
      align-items:stretch;
    }
    .badge{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 12px;
      border:1px solid rgba(22,163,74,.25);
      background:rgba(22,163,74,.08);
      border-radius:999px;
      font-size:12px;
      color:rgba(15,23,42,.85);
      margin-bottom:14px;
      width:fit-content;
    }
    .badge .dot{
      width:8px;height:8px;border-radius:999px;
      background:var(--green);
      box-shadow:0 0 0 3px rgba(22,163,74,.12);
    }
    .h1{
      font-size:clamp(30px,4.2vw,46px);
      letter-spacing:-.03em;
      line-height:1.08;
      margin:0 0 14px 0;
      font-weight:900;
    }
    .lead{
      font-size:16px;
      color:var(--muted);
      margin:0 0 18px 0;
      max-width:760px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 14px}

    /* Hero visual (no crop) */
    .hero-visual{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:linear-gradient(180deg,#ffffff,#f2fbf7);
      box-shadow:var(--shadow-2);
      overflow:hidden;

      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:18px;

      aspect-ratio: 3 / 4;
      min-height:520px;
    }
    .hero-visual img{
      width:100%;
      height:100%;
      object-fit:contain;
      object-position:center;
      display:block;
    }

    .overlay{
      position:absolute;
      left:14px; right:14px; bottom:14px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(10px);
      padding:10px 12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      z-index:2;
      max-width:calc(100% - 28px);
    }
    .overlay .left{display:flex;flex-direction:column;line-height:1.1;min-width:0}
    .overlay .left strong{font-size:13px;letter-spacing:-.01em}
    .overlay .left span{
      font-size:12px;color:var(--muted);margin-top:4px;line-height:1.25;
      display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    }
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:6px 10px;border-radius:999px;
      font-size:12px;border:1px solid var(--border);
      color:rgba(15,23,42,.8);background:#fff;
      z-index:2;flex:0 0 auto;
    }
    .pill.live{border-color:rgba(22,163,74,.25);background:rgba(22,163,74,.08)}
    .pill.soon{border-color:rgba(15,23,42,.16);background:rgba(15,23,42,.03);color:rgba(15,23,42,.65)}

    /* Hero CTA (visible link) */
    .cta-inline{
      margin-top:12px;
      border:1px solid var(--border);
      background:linear-gradient(180deg, #ffffff, rgba(22,163,74,.03));
      border-radius:18px;
      padding:14px 14px;
    }
    .cta-inline .line{
      font-size:14px;
      color:rgba(15,23,42,.78);
      margin:0 0 10px 0;
    }
    .cta-inline .line a{
      color:var(--green-2);
      text-decoration:underline;
      text-underline-offset:3px;
      font-weight:800;
    }
    .cta-inline .cta-actions{
      display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;
    }

    /* Big feature cards */
    .feature-cards{
      margin-top:22px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .feature-card{
      border:1px solid rgba(15,23,42,.08);
      border-radius:26px;
      background:#fff;
      box-shadow:0 22px 44px rgba(15,23,42,.10);
      padding:30px 24px;
      text-align:center;
    }
    .feature-card .icon{width:92px;height:92px;margin:0 auto 18px;display:grid;place-items:center}
    .feature-card .icon img{width:86px;height:86px;object-fit:contain}
    .feature-card h3{margin:0 0 12px;font-size:24px;letter-spacing:-.02em}
    .feature-card p{
      margin:0;color:var(--muted);font-size:16px;line-height:1.6;
      max-width:340px;margin-left:auto;margin-right:auto;
    }

    /* Cards / grids */
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
    .card{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow-2);
      padding:18px;
    }
    .card.soft{background:linear-gradient(180deg,#fff,var(--surface-2))}

    /* Products */
    .product{position:relative}
    .product.live{
      border-color:rgba(22,163,74,.25);
      background:linear-gradient(180deg, rgba(22,163,74,.06), #fff);
    }
    .product.soon{
      background:#f3f4f6;
      border-color:rgba(15,23,42,.10);
      color:rgba(15,23,42,.65);
      box-shadow:none;
    }
    .product.soon *{filter:grayscale(1)}
    .product.soon .btn{pointer-events:none;opacity:.55}
    .product.soon::after{
      content:"";
      position:absolute;inset:0;border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.55));
      pointer-events:none;
    }

    .product-title{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
    .product-title h3{margin:0;font-size:18px;letter-spacing:-.02em}
    .product-meta{color:var(--muted);font-size:14px;margin:10px 0 0}

    .feature-list{
      margin:14px 0 0;padding:0;list-style:none;
      display:grid;gap:8px;
      color:rgba(15,23,42,.82);
      font-size:14px;
    }
    .feature-list li{display:flex;gap:10px;align-items:flex-start}
    .bullet{
      width:18px;height:18px;border-radius:8px;
      background:rgba(22,163,74,.14);
      display:grid;place-items:center;
      color:var(--green);
      font-weight:900;
      font-size:12px;
      margin-top:2px;
      flex:0 0 auto;
    }

    /* Myfxbook widget wrapper */
    .myfxbook-wrap{
      margin-top:14px;
      border:1px solid var(--border);
      border-radius:16px;
      padding:12px;
      background:#fff;
      overflow:hidden;
    }
    .myfxbook-wrap a{display:block}
    .myfxbook-wrap img{border-radius:12px;width:100%;height:auto}

    /* Compact Myfxbook */
    .myfxbook-wrap.compact{
      display:flex;justify-content:center;align-items:center;
    }
    .myfxbook-wrap.compact img{width:320px;max-width:100%;height:auto}

    /* Steps */
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .step{
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:16px;
      background:#fff;
      box-shadow:var(--shadow-2);
    }
    .step .num{
      width:34px;height:34px;border-radius:14px;
      background:rgba(22,163,74,.14);
      display:grid;place-items:center;
      color:var(--green);
      font-weight:900;
      margin-bottom:10px;
    }
    .step h4{margin:0 0 6px;letter-spacing:-.01em}
    .step p{margin:0;color:var(--muted);font-size:14px}

    /* Access */
    .access-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:14px;align-items:stretch}
    .note{
      border:1px dashed rgba(15,23,42,.18);
      border-radius:var(--radius);
      background:rgba(15,23,42,.02);
      padding:16px;
      color:rgba(15,23,42,.78);
      font-size:14px;
    }
    .note strong{color:var(--text)}

    /* Footer */
    .footer{
      border-top:1px solid var(--border);
      padding:28px 0 34px;
      background:#fff;
      color:var(--muted);
      font-size:13px;
    }
    .footer-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:start}
    .footer a{color:rgba(15,23,42,.75)}
    .footer a:hover{color:rgba(15,23,42,.92)}
    .legal{margin-top:10px;font-size:12px;color:var(--muted-2);max-width:900px}


    /* Important highlight (Trust & Transparency) */
    .highlight-important .container{
      border:2px solid #ef4444;
      border-radius:24px;
      padding:28px;
      background:linear-gradient(180deg,#ffffff,#fff5f5);
      box-shadow:var(--shadow-2);
    }
    @media (max-width:980px){
      .highlight-important .container{padding:20px;}
    }


    
    @media (max-width:640px){
      /* Keep the red frame inside the viewport on mobile */
      .highlight-important{padding-left:12px;padding-right:12px;}
      .highlight-important .container{
        border-width:1px;
        border-color:rgba(239,68,68,.45);
        border-radius:20px;
        padding:18px;
        margin:0;
        width:100%;
        max-width:100%;
        box-sizing:border-box;
      }
    }
/* Mobile */
    @media (max-width:980px){
      .hero-grid{grid-template-columns:1fr}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .access-grid{grid-template-columns:1fr}
      .feature-cards{grid-template-columns:1fr; gap:14px;}
      .feature-card{padding:22px 18px;}
      .feature-card .icon{width:78px;height:78px;}
      .feature-card .icon img{width:72px;height:72px;}

      .nav{display:none}
      .mobile-toggle{display:inline-flex}
      .brand{min-width:unset}
      .logo{height:34px}

      /* remove huge CTA from header on mobile */
      .header-cta{display:none !important;}

      .hero-visual{
        min-height:auto;
        aspect-ratio:auto;
        padding:12px;
      }
      .hero-visual img{height:auto;}

      /* language menu becomes a nice "sheet" */
      .lang-menu{
        position:fixed !important;
        left:12px !important;
        right:12px !important;
        top:86px !important;
        bottom:auto !important;

        min-width:unset !important;
        max-height:calc(100vh - 110px);
        overflow:auto;

        border-radius:18px !important;
        padding:8px !important;
        z-index:100 !important;
      }
      .lang-menu button{padding:14px 12px;font-size:15px}
    }

    /* Mobile menu panel */
    .mobile-panel{
      display:none;
      border-top:1px solid var(--border);
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(12px);
    }
    .mobile-panel.open{display:block}
    .mobile-links{
      padding:10px 18px 18px;
      display:grid;
      gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      font-size:14px;
      color:rgba(15,23,42,.86);
    }

    html{scroll-behavior:smooth}
  </style>