:root{
      --theme:#0B3D91;
      --theme-soft:#1557b7;
      --terminal:#4cff9a;
      --terminal-dark:#06100c;
      --terminal-panel:#0a1711;
      --terminal-line:#173527;
      --amber:#ffbd44;
      --danger:#ff7262;
      --ink:#102033;
      --muted:#637083;
      --paper:#f4f7fb;
      --white:#fff;
      --border:#dce4ef;
      --shadow:0 18px 45px rgba(11,61,145,.12);
      --radius:18px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--ink);
      background:var(--paper);
      font-family:"Noto Sans TC","PingFang TC","Microsoft JhengHei",sans-serif;
      line-height:1.65;
      overflow-x:hidden;
    }
    body.drawer-lock{overflow:hidden}
    img{display:block;max-width:100%}
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{cursor:pointer}
    .container{width:min(var(--container),calc(100% - 40px));margin:0 auto}
    .skip-link{
      position:absolute;
      top:-80px;
      left:16px;
      z-index:3000;
      padding:10px 16px;
      border-radius:8px;
      color:#fff;
      background:var(--theme);
    }
    .skip-link:focus{top:12px}
    .topbar{
      position:relative;
      z-index:1100;
      color:#dfe8f5;
      background:#07172c;
      border-bottom:1px solid rgba(255,255,255,.08);
      font-size:13px;
    }
    .topbar-inner{
      min-height:36px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .topbar-contact{display:flex;align-items:center;gap:18px;flex-wrap:wrap}
    .topbar a:hover{color:#fff}
    .header{
      position:relative;
      z-index:1000;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--border);
      box-shadow:0 5px 18px rgba(16,32,51,.05);
    }
    .header-inner{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:25px;
    }
    .logo{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      color:#081b36;
      font-size:19px;
      font-weight:900;
      letter-spacing:.02em;
    }
    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
      border-radius:10px;
    }
    .main-nav{align-self:stretch;margin-left:auto}
    .nav-list{
      height:100%;
      margin:0;
      padding:0;
      display:flex;
      align-items:stretch;
      list-style:none;
    }
    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }
    .nav-link{
      height:100%;
      display:flex;
      align-items:center;
      padding:0 13px;
      color:#26364b;
      font-size:15px;
      font-weight:700;
      white-space:nowrap;
    }
    .nav-item.has-panel>.nav-link::after{
      content:"";
      width:6px;
      height:6px;
      margin-left:7px;
      border-right:1.5px solid currentColor;
      border-bottom:1.5px solid currentColor;
      transform:translateY(-2px) rotate(45deg);
      transition:.2s ease;
    }
    .nav-item:hover>.nav-link,
    .nav-item:focus-within>.nav-link{color:var(--theme)}
    .nav-item:hover>.nav-link::after,
    .nav-item:focus-within>.nav-link::after{transform:translateY(2px) rotate(225deg)}
    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      visibility:hidden;
      opacity:0;
      pointer-events:none;
      transform:translate(-50%,10px);
      transition:opacity .18s ease,transform .18s ease,visibility .18s;
      color:var(--ink);
      background:#fff;
      border:1px solid var(--border);
      border-radius:0 0 18px 18px;
      box-shadow:0 24px 55px rgba(5,24,49,.18);
    }
    .dropdown-panel::before,
    .mega-menu::before{
      content:"";
      position:absolute;
      left:0;
      right:0;
      top:-10px;
      height:10px;
    }
    .nav-item:hover>.dropdown-panel,
    .nav-item:focus-within>.dropdown-panel,
    .nav-item:hover>.mega-menu,
    .nav-item:focus-within>.mega-menu{
      visibility:visible;
      opacity:1;
      pointer-events:auto;
      transform:translate(-50%,0);
    }
    .dropdown-panel{width:340px;padding:15px}
    .dropdown-title,
    .mega-title{
      margin:0 0 12px;
      color:#68778a;
      font-size:12px;
      font-weight:900;
      letter-spacing:.12em;
    }
    .dropdown-article{
      display:block;
      padding:10px 12px;
      border-radius:10px;
      color:#26364b;
      font-size:14px;
      font-weight:700;
    }
    .dropdown-article:hover{color:var(--theme);background:#eef4ff}
    .panel-entry{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin:10px 12px 2px;
      color:var(--theme);
      font-size:14px;
      font-weight:900;
    }
    .mega-menu{
      width:min(980px,calc(100vw - 40px));
      padding:24px;
    }
    .nav-item:nth-last-child(-n+3)>.mega-menu{
      left:auto;
      right:0;
      transform:translateY(10px);
    }
    .nav-item:nth-last-child(-n+3):hover>.mega-menu,
    .nav-item:nth-last-child(-n+3):focus-within>.mega-menu{transform:translateY(0)}
    .mega-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:16px;
      padding-bottom:12px;
      border-bottom:1px solid var(--border);
    }
    .mega-head .mega-title{margin:0}
    .mega-head a{color:var(--theme);font-size:14px;font-weight:900}
    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
    }
    .mega-card{
      min-width:0;
      padding:14px;
      border:1px solid #e4eaf2;
      border-radius:13px;
      background:#fbfcfe;
      transition:.2s ease;
    }
    .mega-card:hover{
      border-color:#aac4ea;
      background:#f2f7ff;
      transform:translateY(-2px);
    }
    .broker-mini-head,
    .tool-mini-head{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:9px;
    }
    .mega-card img{
      width:40px;
      height:40px;
      flex:0 0 auto;
      object-fit:contain;
      border-radius:9px;
      background:#fff;
    }
    .mega-card strong{
      min-width:0;
      display:block;
      overflow:hidden;
      color:#12243b;
      font-size:14px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }
    .mega-card p{
      margin:7px 0 0;
      color:#68778a;
      font-size:12px;
      line-height:1.55;
    }
    .mini-meta{
      display:flex;
      flex-wrap:wrap;
      gap:5px;
      color:#53647a;
      font-size:11px;
    }
    .mini-meta span{
      padding:3px 6px;
      border-radius:6px;
      background:#edf2f8;
    }
    .category-chips{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }
    .category-chips a{
      padding:7px 11px;
      border-radius:999px;
      color:#36506f;
      background:#eef3f8;
      font-size:12px;
      font-weight:800;
    }
    .video-mini{display:grid;grid-template-columns:92px minmax(0,1fr);gap:10px}
    .video-mini img{
      width:92px;
      height:58px;
      object-fit:cover;
    }
    .video-mini p{
      display:-webkit-box;
      overflow:hidden;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .duration{color:var(--theme);font-size:11px;font-weight:900}
    .header-btns{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
    }
    .header-btns>a,
    .header-btns>span>a{
      min-height:40px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 14px;
      border-radius:10px;
      font-size:14px;
      font-weight:900;
    }
    .header-btns>span>a{
      color:var(--theme);
      border:1px solid #b8cae5;
      background:#fff;
    }
    .open-account{
      color:#fff;
      background:var(--theme);
      box-shadow:0 8px 20px rgba(11,61,145,.2);
    }
    .hamburger{
      width:44px;
      height:42px;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      padding:0;
      border:1px solid var(--border);
      border-radius:10px;
      background:#fff;
    }
    .hamburger span{
      width:20px;
      height:2px;
      background:#15283f;
      transition:.2s ease;
    }
    .hamburger.active span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .hamburger.active span:nth-child(2){opacity:0}
    .hamburger.active span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .drawer-overlay{
      position:fixed;
      inset:0;
      z-index:1990;
      visibility:hidden;
      opacity:0;
      background:rgba(1,12,26,.62);
      transition:.25s ease;
    }
    .drawer-overlay.open{visibility:visible;opacity:1}
    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      bottom:0;
      z-index:2000;
      width:min(390px,90vw);
      overflow-y:auto;
      visibility:hidden;
      background:#fff;
      box-shadow:-20px 0 50px rgba(0,0,0,.2);
      transform:translateX(105%);
      transition:.28s ease;
    }
    .mobile-drawer.open{visibility:visible;transform:translateX(0)}
    .drawer-head{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:9px;
      padding:14px 18px;
      color:#fff;
      background:#07172c;
    }
    .drawer-head>span,
    .drawer-head>a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:7px 12px;
      border:1px solid rgba(255,255,255,.2);
      border-radius:9px;
      font-size:13px;
      font-weight:800;
    }
    .drawer-head>span>a{color:#fff}
    .drawer-close{
      width:40px;
      height:40px;
      margin-left:auto;
      padding:0;
      color:#fff;
      background:transparent;
      border:0;
      font-size:30px;
      line-height:1;
    }
    .drawer-menu{padding:15px 18px 28px}
    .drawer-link,
    .drawer-toggle{
      width:100%;
      min-height:48px;
      display:flex;
      align-items:center;
      color:#172b44;
      background:transparent;
      border:0;
      border-bottom:1px solid #e8edf3;
      font-weight:850;
      text-align:left;
    }
    .drawer-toggle{justify-content:space-between;padding:0}
    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:20px;
    }
    .drawer-toggle.active::after{content:"−"}
    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      padding:0 10px;
      background:#f6f8fb;
      transition:max-height .28s ease,padding .28s ease;
    }
    .drawer-submenu.open{max-height:620px;padding:8px 10px}
    .drawer-submenu a{
      display:block;
      padding:9px 8px;
      color:#53647a;
      font-size:14px;
      border-bottom:1px dashed #dce4ed;
    }
    .hero-layout-18{
      position:relative;
      overflow:hidden;
      color:#eafff1;
      background:
        radial-gradient(circle at 50% 20%,rgba(76,255,154,.10),transparent 34%),
        linear-gradient(180deg,#030906 0%,#07120d 58%,#091710 100%);
      border-bottom:1px solid #173527;
    }
    .hero-layout-18::before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.18;
      background-image:
        linear-gradient(rgba(76,255,154,.08) 1px,transparent 1px),
        linear-gradient(90deg,rgba(76,255,154,.08) 1px,transparent 1px);
      background-size:42px 42px;
    }
    .market-ticker{
      position:relative;
      z-index:1;
      overflow:hidden;
      border-bottom:1px solid #183d29;
      background:#020704;
    }
    .ticker-track{
      min-width:max-content;
      min-height:46px;
      display:flex;
      align-items:center;
      gap:12px;
      padding:0 22px;
      animation:tickerMove 34s linear infinite;
    }
    .ticker-item{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding-right:20px;
      color:#bce8cb;
      font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
      font-size:12px;
      border-right:1px solid #173527;
    }
    .ticker-symbol{color:#fff;font-weight:900}
    .ticker-value{color:var(--terminal)}
    .ticker-wait{color:var(--amber)}
    .ticker-dot{
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--terminal);
      box-shadow:0 0 11px rgba(76,255,154,.8);
    }
    @keyframes tickerMove{
      from{transform:translateX(0)}
      to{transform:translateX(-22%)}
    }
    .hero-inner{
      position:relative;
      z-index:2;
      padding:64px 0 72px;
    }
    .hero-heading{
      max-width:850px;
      margin:0 auto;
      text-align:center;
    }
    .terminal-label{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:16px;
      padding:7px 12px;
      color:var(--terminal);
      border:1px solid #275e3e;
      border-radius:999px;
      background:rgba(4,26,15,.72);
      font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
      font-size:12px;
      letter-spacing:.08em;
    }
    .terminal-label::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 10px rgba(255,189,68,.7);
    }
    .hero-heading h1{
      margin:0;
      color:#fff;
      font-size:clamp(38px,6vw,72px);
      line-height:1.08;
      letter-spacing:-.045em;
    }
    .hero-heading h1 em{
      color:var(--terminal);
      font-style:normal;
      text-shadow:0 0 28px rgba(76,255,154,.25);
    }
    .hero-heading p{
      max-width:720px;
      margin:22px auto 0;
      color:#a8c4b2;
      font-size:17px;
    }
    .hero-actions{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .btn{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 18px;
      border:1px solid transparent;
      border-radius:11px;
      font-weight:900;
      transition:.2s ease;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-terminal{
      color:#031008;
      background:var(--terminal);
      box-shadow:0 10px 30px rgba(76,255,154,.18);
    }
    .btn-outline-dark{
      color:#dff8e7;
      border-color:#315d40;
      background:rgba(5,22,13,.68);
    }
    .quote-board{
      margin-top:45px;
      padding:18px;
      border:1px solid #1c4c30;
      border-radius:18px;
      background:rgba(3,13,8,.82);
      box-shadow:0 25px 70px rgba(0,0,0,.34),inset 0 0 35px rgba(76,255,154,.025);
      backdrop-filter:blur(10px);
    }
    .board-toolbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:15px;
      padding:0 3px 13px;
      color:#91b69d;
      border-bottom:1px solid #173527;
      font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
      font-size:12px;
    }
    .board-state{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--amber);
    }
    .board-lights{display:flex;gap:6px}
    .board-lights i{
      width:8px;
      height:8px;
      display:block;
      border-radius:50%;
      background:#285039;
    }
    .board-lights i:first-child{background:var(--terminal)}
    .board-lights i:last-child{background:var(--amber)}
    .quote-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
    }
    .quote-card{
      position:relative;
      min-width:0;
      overflow:hidden;
      padding:17px;
      border:1px solid #183b27;
      border-radius:13px;
      background:linear-gradient(145deg,rgba(10,31,18,.9),rgba(4,15,9,.95));
    }
    .quote-card::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:2px;
      opacity:.7;
      background:linear-gradient(90deg,transparent,var(--terminal),transparent);
    }
    .quote-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
    }
    .quote-symbol{
      color:#fff;
      font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
      font-size:15px;
      font-weight:900;
    }
    .quote-tag{
      padding:3px 7px;
      color:#92bfa0;
      border:1px solid #26543a;
      border-radius:999px;
      font-size:10px;
    }
    .quote-value{
      margin-top:17px;
      color:var(--terminal);
      font-family:ui-monospace,SFMono-Regular,Consolas,monospace;
      font-size:28px;
      font-weight:900;
      letter-spacing:.06em;
    }
    .quote-note{
      margin-top:7px;
      color:#7fa08a;
      font-size:11px;
    }
    .quote-card.alert .quote-value{color:var(--amber)}
    .quote-card.alert::after{background:linear-gradient(90deg,transparent,var(--amber),transparent)}
    .board-disclaimer{
      margin:15px 2px 0;
      color:#789483;
      font-size:11px;
      text-align:center;
    }
    .section{padding:88px 0}
    .section-white{background:#fff}
    .section-dark{
      color:#eaf1fa;
      background:#07172c;
    }
    .section-head{
      max-width:720px;
      margin:0 auto 38px;
      text-align:center;
    }
    .section-kicker{
      display:inline-block;
      margin-bottom:8px;
      color:var(--theme);
      font-size:13px;
      font-weight:900;
      letter-spacing:.12em;
    }
    .section-dark .section-kicker{color:#8dbdff}
    .section-head h2{
      margin:0;
      color:#10233d;
      font-size:clamp(29px,4vw,43px);
      line-height:1.2;
      letter-spacing:-.025em;
    }
    .section-dark .section-head h2{color:#fff}
    .section-head p{margin:14px 0 0;color:var(--muted)}
    .section-dark .section-head p{color:#a8b8cb}
    .broker-grid,
    .tool-grid,
    .product-grid,
    .video-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:20px;
    }
    .home-broker-card,
    .home-tool-card,
    .home-product-card,
    .home-video-card,
    .news-card{
      min-width:0;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:0 10px 30px rgba(16,32,51,.06);
      transition:.22s ease;
    }
    .home-broker-card:hover,
    .home-tool-card:hover,
    .home-product-card:hover,
    .home-video-card:hover,
    .news-card:hover{
      border-color:#afc6e7;
      box-shadow:var(--shadow);
      transform:translateY(-4px);
    }
    .home-broker-card{padding:22px}
    .broker-card-head{
      display:flex;
      align-items:center;
      gap:14px;
    }
    .broker-card-head img{
      width:54px;
      height:54px;
      object-fit:contain;
      border:1px solid #e5ebf2;
      border-radius:13px;
      background:#fff;
    }
    .broker-card-head h3{margin:0;color:#142941;font-size:18px}
    .rating{
      margin-top:3px;
      color:#b97100;
      font-size:13px;
      font-weight:900;
    }
    .broker-facts{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:8px;
      margin:19px 0;
    }
    .broker-facts span{
      min-width:0;
      padding:9px 5px;
      color:#53647a;
      border-radius:9px;
      background:#f2f5f9;
      font-size:11px;
      text-align:center;
    }
    .card-link{color:var(--theme);font-size:14px;font-weight:900}
    .section-more{text-align:center;margin-top:32px}
    .btn-theme{color:#fff;background:var(--theme)}
    .news-layout{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:20px;
    }
    .news-card{display:grid;grid-template-columns:180px minmax(0,1fr)}
    .news-card img{
      width:100%;
      height:100%;
      min-height:190px;
      object-fit:cover;
      background:#dce6f2;
    }
    .news-body{min-width:0;padding:22px}
    .news-category{
      display:inline-block;
      margin-bottom:8px;
      color:var(--theme);
      font-size:12px;
      font-weight:900;
    }
    .news-body h3{
      margin:0;
      color:#132840;
      font-size:19px;
      line-height:1.4;
    }
    .news-body p{
      display:-webkit-box;
      overflow:hidden;
      margin:10px 0;
      color:#657489;
      font-size:14px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:3;
    }
    .news-meta{color:#8a96a6;font-size:12px}
    .home-tool-card{
      position:relative;
      padding:25px;
      color:#dfeafa;
      border-color:#193455;
      background:#0d223d;
      box-shadow:none;
    }
    .home-tool-card:hover{border-color:#4d87cf;box-shadow:0 20px 38px rgba(0,0,0,.2)}
    .home-tool-card img{
      width:48px;
      height:48px;
      object-fit:contain;
      margin-bottom:18px;
      padding:8px;
      border-radius:12px;
      background:#fff;
    }
    .home-tool-card h3{margin:0;color:#fff;font-size:19px}
    .home-tool-card p{margin:9px 0 15px;color:#aebed2;font-size:14px}
    .home-tool-card .card-link{color:#8fc0ff}
    .home-product-card img{
      width:100%;
      height:190px;
      object-fit:cover;
      background:#e7edf5;
    }
    .product-body{padding:20px}
    .product-body h3{margin:0;color:#142941;font-size:19px}
    .product-body p{
      min-height:66px;
      margin:10px 0;
      color:#66768a;
      font-size:14px;
    }
    .product-meta{
      display:flex;
      justify-content:space-between;
      gap:10px;
      margin-bottom:12px;
      color:#8a96a6;
      font-size:12px;
    }
    .home-video-card{position:relative}
    .video-cover{position:relative}
    .video-cover img{
      width:100%;
      aspect-ratio:16/9;
      object-fit:cover;
      background:#dce4ef;
    }
    .play-mark{
      position:absolute;
      left:50%;
      top:50%;
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      color:#fff;
      border:1px solid rgba(255,255,255,.5);
      border-radius:50%;
      background:rgba(11,61,145,.9);
      transform:translate(-50%,-50%);
    }
    .video-time{
      position:absolute;
      right:10px;
      bottom:10px;
      padding:3px 7px;
      color:#fff;
      border-radius:6px;
      background:rgba(0,0,0,.75);
      font-size:11px;
    }
    .video-body{padding:19px}
    .video-body h3{margin:0;color:#142941;font-size:18px}
    .video-body p{
      display:-webkit-box;
      overflow:hidden;
      margin:9px 0 0;
      color:#68778a;
      font-size:13px;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }
    .risk-strip{
      padding:24px 0;
      color:#5a4208;
      background:#fff5d9;
      border-top:1px solid #f0d58d;
      border-bottom:1px solid #f0d58d;
    }
    .risk-inner{
      display:flex;
      align-items:flex-start;
      gap:14px;
    }
    .risk-icon{
      width:34px;
      height:34px;
      flex:0 0 auto;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:#3b2c08;
      background:var(--amber);
      font-weight:900;
    }
    .risk-inner strong{display:block;margin-bottom:3px}
    .risk-inner p{margin:0;font-size:14px}
    .faq-list{
      max-width:850px;
      margin:0 auto;
      display:grid;
      gap:12px;
    }
    .faq-list details{
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      box-shadow:0 7px 22px rgba(16,32,51,.04);
    }
    .faq-list summary{
      position:relative;
      padding:19px 52px 19px 20px;
      color:#162a43;
      font-weight:900;
      cursor:pointer;
      list-style:none;
    }
    .faq-list summary::-webkit-details-marker{display:none}
    .faq-list summary::after{
      content:"+";
      position:absolute;
      top:50%;
      right:20px;
      color:var(--theme);
      font-size:24px;
      transform:translateY(-50%);
    }
    .faq-list details[open] summary::after{content:"−"}
    .faq-list p{
      margin:0;
      padding:0 20px 20px;
      color:#647489;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      padding:58px 0;
      color:#fff;
      background:linear-gradient(135deg,#061b3a,var(--theme));
    }
    .cta-band::after{
      content:"";
      position:absolute;
      width:330px;
      height:330px;
      right:-80px;
      top:-150px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
    }
    .cta-inner h2{margin:0;font-size:32px}
    .cta-inner p{max-width:680px;margin:8px 0 0;color:#cddbf0}
    .cta-inner .btn{color:var(--theme);background:#fff;white-space:nowrap}
    .footer{
      color:#c5d0df;
      background:#061426;
    }
    .footer-main{padding:62px 0 40px}
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr 1fr 1fr 1fr;
      gap:38px;
    }
    .footer-brand .logo{color:#fff}
    .footer-brand p{margin:18px 0;color:#91a2b8;font-size:14px}
    .footer-social{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:#fff;
      font-size:13px;
      word-break:break-word;
    }
    .footer h3{
      margin:0 0 17px;
      color:#fff;
      font-size:15px;
    }
    .footer-links{display:grid;gap:10px}
    .footer-links a{
      color:#9eafc3;
      font-size:14px;
      transition:.18s ease;
    }
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .footer-contact p{margin:0 0 11px;color:#9eafc3;font-size:14px;word-break:break-word}
    .footer-contact a:hover{color:#fff}
    .footer-bottom{
      padding:18px 0;
      border-top:1px solid rgba(255,255,255,.09);
      color:#8092a8;
      font-size:13px;
    }
    .footer-bottom-inner{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }
    @media (max-width:1080px){
      .main-nav{display:none}
      .header-inner{min-height:70px}
      .header-btns{margin-left:auto}
      .hamburger{display:flex}
      .quote-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .broker-grid,.tool-grid,.product-grid,.video-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:760px){
      .container{width:min(100% - 28px,var(--container))}
      .topbar-inner{padding:8px 0;align-items:flex-start;flex-direction:column;gap:2px}
      .topbar-contact{gap:4px 14px}
      .header-inner{gap:10px}
      .logo span{max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
      .header-btns>span,.header-btns>.open-account{display:none}
      .hero-inner{padding:48px 0 55px}
      .hero-heading h1{font-size:40px}
      .hero-heading p{font-size:15px}
      .ticker-track{animation-duration:24s}
      .quote-board{padding:12px}
      .quote-grid{grid-template-columns:1fr}
      .board-toolbar{align-items:flex-start;flex-direction:column}
      .section{padding:64px 0}
      .broker-grid,.tool-grid,.product-grid,.video-grid,.news-layout{grid-template-columns:1fr}
      .news-card{grid-template-columns:1fr}
      .news-card img{height:210px;min-height:0}
      .cta-inner{align-items:flex-start;flex-direction:column}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:440px){
      .logo img{width:38px;height:38px}
      .hero-heading h1{font-size:34px}
      .hero-actions .btn{width:100%}
      .broker-facts{grid-template-columns:1fr}
      .footer-bottom-inner{display:block}
    }
    @media (prefers-reduced-motion:reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
      .ticker-track{animation:none}
    }