    :root{
      --bg:#0d1623;
      --bg2:#132237;
      --panel:#162336;
      --panel2:#1b2a40;
      --line:rgba(255,215,0,.18);
      --gold:#f0c419;
      --gold2:#ffd95a;
      --text:#eef4fb;
      --muted:#bfd0e3;
      --blue:#6bb7ff;
      --blue2:#35d2ff;
      --shadow:0 20px 50px rgba(0,0,0,.35);
      --radius:20px;
      --max:1280px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top, rgba(53,210,255,.08), transparent 26%),
        linear-gradient(180deg, #09111b 0%, #0d1623 28%, #101c2b 100%);
      color:var(--text);
      overflow-x:hidden;
    }

    img{max-width:100%;display:block}
    a{text-decoration:none}

    .sys-wrap{
      width:min(var(--max), calc(100% - 32px));
      margin:0 auto;
    }

    .sys-hero{
      position:relative;
      padding:68px 0 54px;
      border-top:1px solid rgba(255,255,255,.04);
      overflow:hidden;
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0)),
        radial-gradient(circle at 50% 0%, rgba(53,210,255,.14), transparent 34%);
    }

    .sys-hero::before,
    .sys-hero::after{
      content:"";
      position:absolute;
      inset:auto;
      width:520px;
      height:520px;
      border-radius:50%;
      filter:blur(80px);
      opacity:.14;
      pointer-events:none;
    }

    .sys-hero::before{
      top:-160px;
      left:-120px;
      background:rgba(53,210,255,.28);
    }

    .sys-hero::after{
      right:-140px;
      top:20px;
      background:rgba(240,196,25,.16);
    }

    .eyebrow{
      display:inline-block;
      font-size:12px;
      letter-spacing:1.8px;
      text-transform:uppercase;
      color:var(--gold2);
      font-weight:700;
      padding:10px 14px;
      border:1px solid rgba(255,217,90,.22);
      border-radius:999px;
      background:rgba(255,217,90,.06);
      margin-bottom:18px;
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.1fr .95fr;
      gap:36px;
      align-items:center;
    }

    .hero-copy h1{
      font-size:clamp(40px, 6vw, 70px);
      line-height:1.02;
      margin:0 0 12px;
      color:#fff;
      font-weight:800;
      letter-spacing:-1px;
    }

    .hero-copy h1 span{
      color:var(--gold);
    }

    .hero-sub{
      font-size:clamp(18px, 2vw, 25px);
      line-height:1.35;
      color:var(--muted);
      max-width:760px;
      margin:0 0 22px;
    }

    .hero-sub strong{
      color:#fff;
    }

    .hero-lead{
      font-size:17px;
      line-height:1.75;
      color:#d9e6f3;
      max-width:760px;
      margin:0 0 28px;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin:0 0 28px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:52px;
      padding:0 22px;
      border-radius:12px;
      font-weight:800;
      transition:.25s ease;
      box-shadow:var(--shadow);
    }

    .btn-gold{
      background:linear-gradient(180deg, #ffd95a, #f0c419);
      color:#111;
    }

    .btn-gold:hover{transform:translateY(-2px)}

    .btn-dark{
      color:#fff;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.04);
      backdrop-filter:blur(10px);
    }

    .btn-dark:hover{
      transform:translateY(-2px);
      border-color:rgba(255,217,90,.32);
    }

    .hero-badges{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      max-width:760px;
    }

    .hero-badge{
      background:linear-gradient(180deg, rgba(24,39,60,.95), rgba(17,28,44,.95));
      border:1px solid rgba(255,255,255,.07);
      border-radius:16px;
      padding:16px 14px;
      box-shadow:var(--shadow);
    }

    .hero-badge b{
      display:block;
      color:#fff;
      font-size:15px;
      margin:0 0 6px;
    }

    .hero-badge span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }

    .hero-visual{
      position:relative;
    }

    .hero-frame{
      position:relative;
      background:linear-gradient(180deg, rgba(20,34,52,.92), rgba(12,21,34,.95));
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      padding:18px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .hero-frame::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,215,0,.05), transparent 20%, transparent 80%, rgba(53,210,255,.05)),
        radial-gradient(circle at top right, rgba(53,210,255,.12), transparent 30%);
      pointer-events:none;
    }

    .hero-frame img{
      width:100%;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:#0b1420;
      min-height:260px;
      object-fit:cover;
    }

    .hero-note{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top:14px;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }

    .hero-note b{color:#fff}

    .section{
      padding:34px 0 20px;
    }

    .section-title{
      font-size:clamp(30px, 4vw, 46px);
      color:#fff;
      margin:0 0 12px;
      line-height:1.06;
      letter-spacing:-.6px;
    }

    .section-title span{color:var(--gold)}

    .section-intro{
      color:var(--muted);
      font-size:17px;
      line-height:1.8;
      max-width:980px;
      margin:0 0 28px;
    }

    .story-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
    }

    .panel{
      position:relative;
      background:linear-gradient(180deg, rgba(23,35,54,.98), rgba(15,24,39,.98));
      border:1px solid rgba(255,255,255,.07);
      border-radius:24px;
      padding:26px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }

    .panel::before{
      content:"";
      position:absolute;
      inset:0 auto auto 0;
      width:100%;
      height:1px;
      background:linear-gradient(90deg, rgba(255,217,90,.32), rgba(53,210,255,.12), transparent);
    }

    .panel h3{
      margin:0 0 12px;
      font-size:24px;
      color:#fff;
    }

    .panel p{
      margin:0 0 16px;
      color:var(--muted);
      line-height:1.8;
      font-size:16px;
    }

    .bullet-list{
      display:grid;
      gap:12px;
      margin-top:10px;
    }

    .bullet{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#dce7f3;
      line-height:1.7;
      font-size:15px;
    }

    .bullet i{
      width:10px;
      height:10px;
      border-radius:50%;
      margin-top:9px;
      flex:0 0 10px;
      background:linear-gradient(180deg, var(--gold2), var(--gold));
      box-shadow:0 0 0 6px rgba(240,196,25,.08);
    }

    .sys-grid-4,
    .sys-grid-3{
      display:grid;
      gap:18px;
    }

    .sys-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
    .sys-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}

    .card{
      position:relative;
      background:linear-gradient(180deg, rgba(24,37,58,.98), rgba(16,26,41,.98));
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      padding:24px;
      box-shadow:var(--shadow);
      min-height:100%;
      overflow:hidden;
    }

    .card::after{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:2px;
      background:linear-gradient(90deg, var(--gold), rgba(53,210,255,.7), transparent);
      opacity:.8;
    }

    .card h3{
      margin:0 0 10px;
      font-size:25px;
      color:#fff;
      line-height:1.2;
    }

    .card .tag{
      display:inline-block;
      margin-bottom:12px;
      color:var(--gold2);
      font-size:12px;
      letter-spacing:1.2px;
      font-weight:800;
      text-transform:uppercase;
    }

    .card p{
      margin:0;
      font-size:15px;
      line-height:1.75;
      color:var(--muted);
    }

    .card strong{color:#fff}

    .matrix{
      display:grid;
      grid-template-columns:260px repeat(4, 1fr);
      gap:1px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }

    .matrix > div{
      background:linear-gradient(180deg, rgba(24,37,58,.98), rgba(16,26,41,.98));
      padding:18px 16px;
      color:var(--muted);
      font-size:15px;
      line-height:1.6;
    }

    .matrix .head{
      color:#fff;
      font-weight:800;
      background:linear-gradient(180deg, rgba(29,44,68,.98), rgba(19,30,48,.98));
    }

    .matrix .left{
      color:#fff;
      font-weight:800;
    }

    .matrix .yes{
      color:#fff;
    }

    .matrix .yes b{
      color:var(--gold2);
      font-weight:800;
    }

    .highlight-band{
      position:relative;
      margin-top:10px;
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(135deg, rgba(240,196,25,.10), rgba(53,210,255,.08)),
        linear-gradient(180deg, rgba(18,29,46,.98), rgba(11,18,29,.98));
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:28px;
      overflow:hidden;
    }

    .highlight-band h3{
      margin:0 0 12px;
      font-size:28px;
      color:#fff;
    }

    .highlight-band p{
      margin:0;
      color:#dce7f3;
      font-size:17px;
      line-height:1.85;
      max-width:1100px;
    }

    .pillar{
      background:linear-gradient(180deg, rgba(24,37,58,.98), rgba(15,24,39,.98));
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      padding:24px;
      box-shadow:var(--shadow);
    }

    .pillar h3{
      margin:0 0 10px;
      color:#fff;
      font-size:22px;
    }

    .pillar p{
      margin:0;
      color:var(--muted);
      line-height:1.75;
      font-size:15px;
    }

    .quote-block{
      margin-top:12px;
      padding:28px;
      border-left:4px solid var(--gold);
      background:linear-gradient(180deg, rgba(20,32,49,.95), rgba(13,22,35,.98));
      border-radius:0 22px 22px 0;
      box-shadow:var(--shadow);
    }

    .quote-block p{
      margin:0;
      font-size:24px;
      line-height:1.55;
      color:#fff;
      font-weight:700;
      max-width:1000px;
    }

    .cta-block{
      margin:30px 0 60px;
      padding:34px 28px;
      border-radius:28px;
      background:
        radial-gradient(circle at top right, rgba(53,210,255,.10), transparent 30%),
        radial-gradient(circle at bottom left, rgba(240,196,25,.12), transparent 34%),
        linear-gradient(180deg, rgba(21,34,52,.98), rgba(11,18,29,.98));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow);
      text-align:center;
    }

    .cta-block h2{
      margin:0 0 12px;
      color:#fff;
      font-size:clamp(30px, 4vw, 46px);
      line-height:1.08;
    }

    .cta-block h2 span{color:var(--gold)}

    .cta-block p{
      margin:0 auto 22px;
      max-width:900px;
      color:var(--muted);
      font-size:17px;
      line-height:1.8;
    }

    .micro{
      margin-top:16px;
      color:#9eb1c5;
      font-size:12px;
      line-height:1.6;
    }

    @media (max-width: 1120px){
      .hero-grid,
      .story-grid{
        grid-template-columns:1fr;
      }
      .sys-grid-4{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .sys-grid-3{
        grid-template-columns:1fr;
      }
      .matrix{
        grid-template-columns:220px repeat(4, minmax(160px,1fr));
        overflow:auto;
      }
    }

    @media (max-width: 700px){
      .sys-wrap{
        width:min(var(--max), calc(100% - 22px));
      }
      .sys-hero{
        padding:48px 0 34px;
      }
      .hero-badges,
      .sys-grid-4{
        grid-template-columns:1fr;
      }
      .panel,
      .card,
      .pillar,
      .highlight-band,
      .cta-block{
        padding:20px;
        border-radius:20px;
      }
      .matrix{
        border-radius:16px;
      }
      .quote-block p{
        font-size:20px;
      }
    }
  body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
#wb_Image2
{
   vertical-align: top;
}
#Image2
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text1 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text1 div
{
   text-align: left;
}
#wb_Text3 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text3 div
{
   text-align: left;
}
#wb_Image1
{
   vertical-align: top;
}
#Image1
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text2 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text2 div
{
   text-align: left;
}
#wb_Text10 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text10 div
{
   text-align: left;
}
#wb_Image4
{
   vertical-align: top;
}
#Image4
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text11 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text11 div
{
   text-align: left;
}
#wb_Line1
{
   font-size: 0;
}
#Line1
{
   border-width: 0;
   height: 10px;
   width: 1355px;
}
#wb_Text12 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text12 div
{
   text-align: left;
}
#MegaMenu1
{
   font-size: 0;
   list-style: none;
   margin: 0;
   padding: 0;
   width: 100%;
   margin: 0;
   text-align: left;
   font-family: Arial;
   font-weight: normal;
}
#MegaMenu1 li
{
   display: inline-block;
   font-size: 12px;
   margin: 0;
   padding: 0;
   position: relative;
}
#MegaMenu1 li a
{
   float: left;
}
#MegaMenu1 li .submenu
{
   position: absolute;
   right: 0;
   display: none;
   padding: 15px 15px 15px 15px;
   text-align: left;
   top: 0;
   z-index: 9999;
}
#MegaMenu1 li .submenu.show
{
   display: grid;
}
#MegaMenu1 li .submenu ul
{
   list-style: none;
   margin: 0;
   padding: 0;
}
#MegaMenu1 .submenu ul li
{
   width: 100%;
}
#MegaMenu1 .submenu ul li .heading
{
   display: block;
   color: #3588F0;
   font-weight: normal;
   font-size: 8px;
   font-style: normal;
   margin: 0;
   padding: 8px 0;
   text-decoration: none;
   text-transform: none;
   white-space: nowrap;
}
#MegaMenu1 .submenu ul li a
{
   display: block;
   float: none;
   height: auto;
   border: 1px solid transparent;
   border-radius: 0px;
   color: inherit;
   font-weight: normal;
   font-style: normal;
   padding: 8px 4px 8px 20px;
   text-decoration: none;
   text-transform: none;
   text-indent: 0;
   white-space: nowrap;
}
#MegaMenu1 .button
{
   cursor: pointer;
   position: relative;
   text-align: center;
   margin: 0 1px 0 0;
   outline: 0;
   padding: 6px 20px 6px 10px;
   color: #FFFFFF;
   background-color: #192635;
   background-image: none;
   border: 0px solid #192635;
   border-radius: 0px;
   font-weight: normal;
   font-style: normal;
   text-decoration: none;
   text-transform: none;
}
#MegaMenu1 .button:hover, #MegaMenu1 .button.active
{
   background-color: #DAA520;
   background-image: none;
   border-color: #DAA520;
   color: #FFFFFF;
}
#MegaMenu1 .submenu
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   border-radius: 0px;
   color: #FFFFFF;
}
#MegaMenu1 .submenu a:hover, #MegaMenu1 .submenu a.active
{
   background-color: #000000;
   background-image: none;
   border: 1px solid #000000;
   color: #FFFFFF;
}
#MegaMenu1 li:nth-child(2) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(3) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(4) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(5) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(6) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(7) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(8) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(9) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li:nth-child(10) .submenu
{
   grid-template-columns: repeat(2, 1fr);
   grid-gap: 15px;
}
#MegaMenu1 li i
{
   font-size: 16px;
   width: 18px;
}
#MegaMenu1 .arrow
{
   margin-top: -8px;
   margin-left: 0;
   position: absolute;
   right: 1px;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1 .bullet, #MegaMenu1 .icon
{
   left: 0px;
   margin-top: -8px;
   position: absolute;
   top: 50%;
   display: block;
   overflow: hidden;
   width: 16px;
   height: 16px;
}
#MegaMenu1-hamburger
{
   cursor: pointer;
   display: none;
   background-color: #192635;
   border: 0px solid #192635;
   padding: 9px 12px 9px 12px;
}
#MegaMenu1-hamburger .line
{
   width: 9px;
   height: 1px;
   background: #FFFFFF;
   display: block;
   margin: 1px auto;
}
#MegaMenu1-close
{
   display: none;
}
@media all and (max-width:300px) 
{
#MegaMenu1-hamburger
{
   display: inline-block;
}
#MegaMenu1 > li
{
   width: 100%;
}
#MegaMenu1 > li > a
{
   display: none;
}
#MegaMenu1-nav
{
   display: none;
   height: 100% !important;
   left: 0 !important;
   overflow-y: auto;
   position: fixed !important;
   top: 0 !important;
   width: 100% !important;
   z-index: 9998;
}
#MegaMenu1
{
   height: 100% !important;
   width: 100% !important;
}
#MegaMenu1 > li > div
{
   box-sizing: border-box;
   border-width: 0 0 1px 0 !important;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
}
#MegaMenu1 li .submenu ul, #MegaMenu1 li .submenu ul li
{
   width: 100% !important;
}
##MegaMenu1 .nav-link
{
   box-sizing: border-box;
   display: inline-block !important;
   float: none;
   position: static !important;
   width: 100% !important;
   padding: 9px 5px 9px 21px;
   text-align: left;
}
#MegaMenu1-close
{
   display: block;
   left: 0;
   pointer-events: none;
   position: fixed;
   text-align: right;
   top: 0;
   width: 100%;
   z-index: 9999;
}
#MegaMenu1-close a
{
   color: #FFFFFF;
   display: inline-block;
   font-size: 24px;
   font-weight: bold;
   padding: 10px 40px 10px 10px;
   pointer-events: all;
   text-decoration: none;
}
#wb_MegaMenu1.open
{
   z-index: 9998 !important
}
#wb_MegaMenu1.open #MegaMenu1-nav
{
   display: block !important;
}
.overflow-no-scroll
{
   overflow: hidden !important;
}
}
