:root{
      --theme:#0B3D91;
      --template-theme:{主题色};
      --theme-dark:#06285f;
      --theme-soft:#eaf1ff;
      --ink:#142033;
      --muted:#68758a;
      --line:#e3e9f2;
      --surface:#ffffff;
      --background:#f5f7fb;
      --success:#138a5b;
      --warning:#d89522;
      --radius:18px;
      --shadow:0 16px 45px rgba(19,39,75,.10);
    }

    *{
      box-sizing:border-box;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      margin:0;
      color:var(--ink);
      background:var(--background);
      font-family:"Microsoft YaHei","PingFang SC","Noto Sans CJK SC",Arial,sans-serif;
      line-height:1.65;
      -webkit-font-smoothing:antialiased;
    }

    body.drawer-lock{
      overflow:hidden;
    }

    img{
      display:block;
      max-width:100%;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button,
    input{
      font:inherit;
    }

    button{
      color:inherit;
    }

    .container{
      width:min(1200px,calc(100% - 40px));
      margin:0 auto;
    }

    .topbar{
      position:relative;
      z-index:90;
      color:#dce8ff;
      background:#071b3a;
      font-size:13px;
    }

    .topbar-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .topbar-contact{
      display:flex;
      align-items:center;
      gap:20px;
    }

    .topbar a{
      transition:color .2s ease;
    }

    .topbar a:hover{
      color:#fff;
    }

    .header{
      position:relative;
      z-index:80;
      background:rgba(255,255,255,.98);
      border-bottom:1px solid var(--line);
      box-shadow:0 5px 20px rgba(25,45,80,.04);
    }

    .header-inner{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:28px;
    }

    .logo{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:11px;
      min-width:150px;
      color:var(--theme);
      font-size:20px;
      font-weight:800;
      letter-spacing:-.3px;
    }

    .logo img{
      width:42px;
      height:42px;
      object-fit:contain;
    }

    .main-nav{
      align-self:stretch;
      display:flex;
      align-items:stretch;
      margin-left:auto;
    }

    .nav-list{
      display:flex;
      align-items:stretch;
      gap:2px;
      margin:0;
      padding:0;
      list-style:none;
    }

    .nav-item{
      position:relative;
      display:flex;
      align-items:center;
    }

    .nav-item::after{
      content:"";
      position:absolute;
      right:0;
      bottom:-1px;
      left:0;
      height:3px;
      background:var(--theme);
      transform:scaleX(0);
      transition:transform .2s ease;
    }

    .nav-item:hover::after,
    .nav-item:focus-within::after{
      transform:scaleX(.65);
    }

    .nav-item > a{
      height:100%;
      display:flex;
      align-items:center;
      padding:0 11px;
      color:#26364f;
      font-size:15px;
      font-weight:650;
      white-space:nowrap;
    }

    .nav-item > a:hover,
    .nav-item:focus-within > a{
      color:var(--theme);
    }

    .dropdown-panel,
    .mega-menu{
      position:absolute;
      top:100%;
      left:50%;
      z-index:100;
      width:340px;
      padding:20px;
      visibility:hidden;
      opacity:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:0 0 16px 16px;
      box-shadow:0 22px 55px rgba(15,35,70,.16);
      transform:translate(-50%,10px);
      transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
    }

    .dropdown-panel::before,
    .mega-menu::before{
      content:"";
      position:absolute;
      right:0;
      bottom:100%;
      left:0;
      height:12px;
    }

    .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;
      transform:translate(-50%,0);
    }

    .mega-menu{
      width:min(760px,calc(100vw - 40px));
    }

    .mega-menu.mega-wide{
      width:min(940px,calc(100vw - 40px));
    }

    .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);
    }

    .dropdown-title,
    .mega-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:15px;
      padding-bottom:12px;
      border-bottom:1px solid var(--line);
    }

    .dropdown-title span,
    .mega-head strong{
      color:#172742;
      font-size:16px;
    }

    .dropdown-title a,
    .mega-head a{
      color:var(--theme);
      font-size:13px;
      font-weight:700;
    }

    .mega-head span{
      color:var(--muted);
      font-size:13px;
    }

    .dropdown-list{
      display:grid;
      gap:4px;
    }

    .dropdown-list a{
      padding:9px 10px;
      overflow:hidden;
      color:#42516a;
      border-radius:9px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .dropdown-list a:hover{
      color:var(--theme);
      background:var(--theme-soft);
    }

    .mega-categories{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:16px;
    }

    .mega-categories a{
      padding:6px 11px;
      color:#47566e;
      background:#f1f4f9;
      border-radius:999px;
      font-size:13px;
    }

    .mega-categories a:hover{
      color:#fff;
      background:var(--theme);
    }

    .mega-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
    }

    .mega-card{
      min-width:0;
      display:flex;
      align-items:flex-start;
      gap:11px;
      padding:12px;
      color:#26364e;
      background:#f8faff;
      border:1px solid #edf1f7;
      border-radius:12px;
      transition:transform .2s ease,border-color .2s ease,background .2s ease;
    }

    .mega-card:hover{
      transform:translateY(-2px);
      border-color:#b8cdf3;
      background:#fff;
    }

    .mega-card > img{
      flex:0 0 auto;
      width:38px;
      height:38px;
      object-fit:contain;
      border-radius:8px;
    }

    .mega-card > div{
      min-width:0;
    }

    .mega-card strong{
      display:block;
      overflow:hidden;
      color:#1e2f49;
      font-size:14px;
      text-overflow:ellipsis;
      white-space:nowrap;
    }

    .mega-card small,
    .mega-card p{
      display:block;
      margin:4px 0 0;
      overflow:hidden;
      color:var(--muted);
      font-size:12px;
      line-height:1.5;
    }

    .mega-card p{
      display:-webkit-box;
      -webkit-box-orient:vertical;
      -webkit-line-clamp:2;
    }

    .mega-media img{
      width:54px;
      height:45px;
      object-fit:cover;
    }

    .mega-meta{
      display:flex;
      flex-wrap:wrap;
      gap:3px 8px;
      margin-top:5px;
      color:#758197;
      font-size:11px;
    }

    .header-btns{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:9px;
      font-size:14px;
      white-space:nowrap;
    }

    .open-account{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 17px;
      color:#fff;
      background:var(--theme);
      border-radius:10px;
      font-weight:750;
      box-shadow:0 8px 20px rgba(11,61,145,.22);
      transition:background .2s ease,transform .2s ease;
    }

    .open-account:hover{
      background:var(--theme-dark);
      transform:translateY(-1px);
    }

    .hamburger{
      width:43px;
      height:43px;
      display:none;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
      padding:0;
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      cursor:pointer;
    }

    .hamburger span{
      width:20px;
      height:2px;
      background:#172742;
      transition:transform .2s ease,opacity .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:180;
      visibility:hidden;
      opacity:0;
      background:rgba(2,12,31,.58);
      backdrop-filter:blur(3px);
      transition:opacity .25s ease,visibility .25s ease;
    }

    .drawer-overlay.open{
      visibility:visible;
      opacity:1;
    }

    .mobile-drawer{
      position:fixed;
      top:0;
      right:0;
      bottom:0;
      z-index:190;
      width:min(390px,92vw);
      overflow-y:auto;
      background:#fff;
      box-shadow:-20px 0 55px rgba(5,20,50,.2);
      transform:translateX(105%);
      transition:transform .28s ease;
    }

    .mobile-drawer.open{
      transform:translateX(0);
    }

    .drawer-head{
      position:sticky;
      top:0;
      z-index:2;
      min-height:72px;
      display:flex;
      align-items:center;
      gap:11px;
      padding:14px 18px;
      background:#fff;
      border-bottom:1px solid var(--line);
    }

    .drawer-head > a{
      padding:8px 13px;
      color:#fff;
      background:var(--theme);
      border-radius:8px;
      font-weight:700;
    }

    .drawer-close{
      width:38px;
      height:38px;
      margin-left:auto;
      padding:0;
      color:#38465c;
      background:#f1f4f8;
      border:0;
      border-radius:50%;
      font-size:25px;
      cursor:pointer;
    }

    .drawer-menu{
      padding:12px 18px 35px;
    }

    .drawer-link,
    .drawer-toggle{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      min-height:50px;
      padding:10px 5px;
      color:#21324d;
      background:none;
      border:0;
      border-bottom:1px solid var(--line);
      text-align:left;
      font-weight:750;
      cursor:pointer;
    }

    .drawer-toggle::after{
      content:"+";
      color:var(--theme);
      font-size:22px;
      font-weight:400;
    }

    .drawer-toggle.active::after{
      content:"−";
    }

    .drawer-submenu{
      max-height:0;
      overflow:hidden;
      padding:0 10px;
      background:#f7f9fd;
      border-radius:0 0 10px 10px;
      transition:max-height .3s ease,padding .3s ease;
    }

    .drawer-submenu.open{
      max-height:650px;
      padding:7px 10px;
    }

    .drawer-submenu a{
      display:block;
      padding:9px 7px;
      color:#5d6a7e;
      border-bottom:1px dashed #dce3ed;
      font-size:14px;
    }

    .drawer-submenu a:last-child{
      border-bottom:0;
    }

    .tools-page{
      overflow:hidden;
    }

    .tools-page .tools-hero{
      position:relative;
      isolation:isolate;
      padding:76px 0 64px;
      color:#fff;
      background:
        radial-gradient(circle at 16% 20%,rgba(75,141,255,.30),transparent 28%),
        radial-gradient(circle at 84% 70%,rgba(18,177,149,.18),transparent 26%),
        linear-gradient(135deg,#061a3b 0%,#0B3D91 58%,#082b65 100%);
    }

    .tools-page .tools-hero::before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-1;
      opacity:.17;
      background-image:
        linear-gradient(rgba(255,255,255,.14) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.14) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,#000,transparent);
    }

    .tools-page .tools-hero-inner{
      max-width:880px;
      margin:0 auto;
      text-align:center;
    }

    .tools-page .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      margin-bottom:17px;
      padding:7px 13px;
      color:#dce9ff;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.18);
      border-radius:999px;
      font-size:13px;
      font-weight:750;
      letter-spacing:.08em;
    }

    .tools-page .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      background:#5ce0b6;
      border-radius:50%;
      box-shadow:0 0 0 5px rgba(92,224,182,.14);
    }

    .tools-page .tools-hero h1{
      margin:0;
      font-size:clamp(34px,5vw,62px);
      line-height:1.14;
      letter-spacing:-1.8px;
    }

    .tools-page .tools-hero p{
      max-width:720px;
      margin:20px auto 0;
      color:#d7e5fc;
      font-size:17px;
    }

    .tools-page .hero-actions{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }

    .tools-page .hero-button{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 22px;
      color:var(--theme);
      background:#fff;
      border:1px solid #fff;
      border-radius:11px;
      font-weight:800;
    }

    .tools-page .hero-button.secondary{
      color:#fff;
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.35);
    }

    .tools-page .tool-summary-strip{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:1px;
      max-width:880px;
      margin:42px auto -102px;
      overflow:hidden;
      color:var(--ink);
      background:var(--line);
      border:1px solid rgba(255,255,255,.25);
      border-radius:16px;
      box-shadow:var(--shadow);
    }

    .tools-page .summary-item{
      padding:20px;
      background:#fff;
      text-align:left;
    }

    .tools-page .summary-item strong{
      display:block;
      color:var(--theme);
      font-size:20px;
    }

    .tools-page .summary-item span{
      color:var(--muted);
      font-size:13px;
    }

    .tools-page .tools-content{
      padding:110px 0 82px;
    }

    .tools-page .section-heading{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:30px;
      margin-bottom:27px;
    }

    .tools-page .section-heading small{
      color:var(--theme);
      font-weight:800;
      letter-spacing:.08em;
    }

    .tools-page .section-heading h2{
      margin:5px 0 0;
      color:#17243a;
      font-size:clamp(26px,3vw,38px);
      line-height:1.25;
    }

    .tools-page .section-heading p{
      max-width:540px;
      margin:0;
      color:var(--muted);
    }

    .tools-page .tool-filters{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-bottom:25px;
    }

    .tools-page .filter-chip{
      padding:8px 14px;
      color:#536178;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      font-size:14px;
      font-weight:700;
    }

    .tools-page .filter-chip.active{
      color:#fff;
      background:var(--theme);
      border-color:var(--theme);
    }

    .tools-page .tools-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:20px;
    }

    .tools-page .tool-card{
      min-width:0;
      display:flex;
      flex-direction:column;
      padding:25px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:0 8px 25px rgba(25,50,90,.05);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }

    .tools-page .tool-card:hover{
      transform:translateY(-5px);
      border-color:#abc4f0;
      box-shadow:0 18px 38px rgba(23,55,105,.12);
    }

    .tools-page .tool-card-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      margin-bottom:20px;
    }

    .tools-page .tool-icon{
      width:58px;
      height:58px;
      display:grid;
      place-items:center;
      padding:10px;
      background:var(--theme-soft);
      border-radius:15px;
    }

    .tools-page .tool-icon img{
      width:100%;
      height:100%;
      object-fit:contain;
    }

    .tools-page .tool-status{
      padding:5px 9px;
      color:var(--success);
      background:#eaf8f2;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
    }

    .tools-page .tool-card h3{
      margin:0 0 9px;
      color:#1b2c47;
      font-size:20px;
      line-height:1.35;
    }

    .tools-page .tool-card p{
      min-height:72px;
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .tools-page .tool-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:15px;
      margin-top:auto;
      padding-top:19px;
      color:var(--theme);
      border-top:1px solid #edf1f6;
      font-weight:800;
    }

    .tools-page .tool-link span:last-child{
      font-size:20px;
      transition:transform .2s ease;
    }

    .tools-page .tool-card:hover .tool-link span:last-child{
      transform:translateX(4px);
    }

    .tools-page .workflow{
      padding:75px 0;
      background:#fff;
      border-top:1px solid var(--line);
      border-bottom:1px solid var(--line);
    }

    .tools-page .workflow-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
      margin-top:30px;
      counter-reset:workflow;
    }

    .tools-page .workflow-card{
      position:relative;
      padding:25px 22px;
      background:#f7f9fd;
      border:1px solid var(--line);
      border-radius:16px;
      counter-increment:workflow;
    }

    .tools-page .workflow-card::before{
      content:"0" counter(workflow);
      display:block;
      margin-bottom:25px;
      color:var(--theme);
      font-size:13px;
      font-weight:900;
      letter-spacing:.14em;
    }

    .tools-page .workflow-card:not(:last-child)::after{
      content:"→";
      position:absolute;
      top:50%;
      right:-15px;
      z-index:2;
      width:29px;
      height:29px;
      display:grid;
      place-items:center;
      color:var(--theme);
      background:#fff;
      border:1px solid var(--line);
      border-radius:50%;
      transform:translateY(-50%);
    }

    .tools-page .workflow-card h3{
      margin:0 0 8px;
      font-size:18px;
    }

    .tools-page .workflow-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .tools-page .risk-note{
      padding:72px 0;
    }

    .tools-page .risk-panel{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      align-items:center;
      gap:35px;
      padding:38px 42px;
      color:#fff;
      background:linear-gradient(135deg,#071d42,#0B3D91);
      border-radius:24px;
      box-shadow:var(--shadow);
    }

    .tools-page .risk-panel h2{
      margin:0 0 10px;
      font-size:29px;
    }

    .tools-page .risk-panel p{
      max-width:760px;
      margin:0;
      color:#d8e5fb;
    }

    .tools-page .risk-panel a{
      min-height:48px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:0 21px;
      color:var(--theme);
      background:#fff;
      border-radius:10px;
      font-weight:800;
      white-space:nowrap;
    }

    .tools-page .faq-section{
      padding:0 0 84px;
    }

    .tools-page .faq-list{
      max-width:900px;
      margin:30px auto 0;
      display:grid;
      gap:12px;
    }

    .tools-page .faq-item{
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line);
      border-radius:14px;
    }

    .tools-page .faq-question{
      width:100%;
      min-height:62px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:15px 20px;
      color:#1c2e49;
      background:#fff;
      border:0;
      text-align:left;
      font-weight:800;
      cursor:pointer;
    }

    .tools-page .faq-question::after{
      content:"+";
      color:var(--theme);
      font-size:23px;
      font-weight:400;
    }

    .tools-page .faq-question.active::after{
      content:"−";
    }

    .tools-page .faq-answer{
      display:none;
      padding:0 20px 18px;
      color:var(--muted);
    }

    .tools-page .faq-answer.open{
      display:block;
    }

    .tools-page .faq-answer p{
      margin:0;
    }

    .footer{
      color:#becbe0;
      background:#07172f;
    }

    .footer-main{
      display:grid;
      grid-template-columns:1.5fr 1fr 1fr 1fr;
      gap:48px;
      padding-top:62px;
      padding-bottom:52px;
    }

    .footer .logo{
      color:#fff;
    }

    .footer-brand p{
      max-width:390px;
      margin:19px 0;
      color:#9eacc2;
      font-size:14px;
    }

    .footer-social{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .footer h3{
      margin:6px 0 17px;
      color:#fff;
      font-size:16px;
    }

    .footer-links,
    .footer-contact{
      display:grid;
      gap:10px;
    }

    .footer-links a,
    .footer-contact a{
      color:#aebbd0;
      font-size:14px;
      transition:color .2s ease,transform .2s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover{
      color:#fff;
      transform:translateX(2px);
    }

    .footer-contact span{
      color:#74849d;
      font-size:12px;
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.10);
    }

    .footer-bottom-inner{
      min-height:65px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      color:#8291a9;
      font-size:13px;
    }

    .footer-bottom-links{
      display:flex;
      flex-wrap:wrap;
      gap:18px;
    }

    .footer-bottom a:hover{
      color:#fff;
    }

    @media (max-width:1120px){
      .main-nav{
        display:none;
      }

      .header-inner{
        min-height:70px;
      }

      .header-btns{
        margin-left:auto;
      }

      .hamburger{
        display:flex;
      }

      .tools-page .tools-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }

      .footer-main{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
    }

    @media (max-width:780px){
      .container{
        width:min(100% - 28px,1200px);
      }

      .topbar-inner{
        min-height:44px;
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        gap:2px;
        padding:6px 0;
      }

      .topbar-contact{
        width:100%;
        gap:12px;
      }

      .topbar-contact a{
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }

      .header-btns > a:not(.open-account),
      .header-btns > span{
        display:none;
      }

      .open-account{
        min-height:39px;
        padding:0 12px;
      }

      .logo{
        min-width:0;
        font-size:17px;
      }

      .logo img{
        width:37px;
        height:37px;
      }

      .tools-page .tools-hero{
        padding:58px 0 54px;
      }

      .tools-page .tools-hero h1{
        letter-spacing:-.8px;
      }

      .tools-page .tool-summary-strip{
        grid-template-columns:1fr;
        margin-top:34px;
        margin-bottom:-142px;
      }

      .tools-page .summary-item{
        padding:14px 18px;
      }

      .tools-page .tools-content{
        padding-top:168px;
      }

      .tools-page .section-heading{
        align-items:flex-start;
        flex-direction:column;
        gap:12px;
      }

      .tools-page .tools-grid{
        grid-template-columns:1fr;
      }

      .tools-page .tool-card p{
        min-height:0;
      }

      .tools-page .workflow-grid{
        grid-template-columns:1fr 1fr;
      }

      .tools-page .workflow-card::after{
        display:none;
      }

      .tools-page .risk-panel{
        grid-template-columns:1fr;
        padding:30px 25px;
      }

      .tools-page .risk-panel a{
        justify-self:start;
      }

      .footer-main{
        grid-template-columns:1fr;
        gap:30px;
        padding-top:48px;
      }

      .footer-bottom-inner{
        align-items:flex-start;
        flex-direction:column;
        padding:19px 0;
      }
    }

    @media (max-width:520px){
      .topbar-inner > span{
        display:none;
      }

      .topbar-contact{
        justify-content:space-between;
      }

      .header-inner{
        gap:9px;
      }

      .logo span{
        max-width:120px;
        overflow:hidden;
        text-overflow:ellipsis;
        white-space:nowrap;
      }

      .open-account{
        display:none;
      }

      .tools-page .tools-hero p{
        font-size:15px;
      }

      .tools-page .hero-actions{
        flex-direction:column;
      }

      .tools-page .hero-button{
        width:100%;
      }

      .tools-page .workflow-grid{
        grid-template-columns:1fr;
      }

      .tools-page .risk-panel h2{
        font-size:24px;
      }
    }