  :root{
    --navy-1:#071528;
    --navy-2:#0b1f38;
    --navy-3:#102949;
    --gold:#d4af37;
    --gold-soft:#f1df9a;
    --white:#ffffff;
    --offwhite:#f5f7fb;
    --text:#111827;
    --text-soft:#4b5563;
    --text-light:#dbe5f4;
    --line:#d9dee7;
    --shadow:0 14px 40px rgba(0,0,0,.14);
    --radius:18px;
  }

  *{
    box-sizing:border-box;
    margin:0;
    padding:0;
  }

  html{
    scroll-behavior:smooth;
  }

  body{
    font-family: Arial, Helvetica, sans-serif;
    background:#ffffff;
    color:var(--text);
    line-height:1.45;
  }

  a{
    text-decoration:none;
    color:inherit;
  }

  img{
    max-width:100%;
    display:block;
  }

  .bss-page{
    width:100%;
    overflow:hidden;
  }

  .container{
    width:min(1200px, 92%);
    margin:0 auto;
  }

  .hero{
    background:
      linear-gradient(135deg, rgba(4,13,26,.92), rgba(10,33,63,.96)),
      radial-gradient(circle at top right, rgba(212,175,55,.10), transparent 30%);
    color:var(--white);
    padding:56px 0 44px;
    border-top:4px solid var(--gold);
  }

  .eyebrow{
    display:inline-block;
    background:rgba(212,175,55,.14);
    color:var(--gold-soft);
    border:1px solid rgba(212,175,55,.28);
    padding:8px 14px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.2px;
    text-transform:uppercase;
    margin-bottom:18px;
  }

  .hero h1{
    font-size:56px;
    line-height:1.02;
    font-weight:700;
    color:var(--white);
    max-width:900px;
    margin-bottom:18px;
  }

  .hero p.lead{
    max-width:980px;
    font-size:19px;
    color:#edf3ff;
    margin-bottom:28px;
  }

  .btn-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:34px;
  }

  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 22px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    transition:.2s ease;
    border:1px solid transparent;
  }

  .btn-primary{
    background:var(--gold);
    color:#111111;
    box-shadow:0 8px 24px rgba(212,175,55,.25);
  }

  .btn-primary:hover{
    background:#e0bb48;
  }

  .btn-secondary{
    background:rgba(255,255,255,.08);
    color:var(--white);
    border-color:rgba(255,255,255,.16);
  }

  .btn-secondary:hover{
    background:rgba(255,255,255,.14);
  }

  .hero-stats{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
  }

  .stat-card{
    background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.05));
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    padding:22px 18px;
    box-shadow:var(--shadow);
  }

  .stat-card h3{
    font-size:15px;
    color:#c7d8f3;
    margin-bottom:10px;
    font-weight:700;
  }

  .stat-card .big{
    font-size:46px;
    line-height:1;
    color:var(--gold);
    font-weight:700;
    margin-bottom:8px;
  }

  .stat-card .label{
    font-size:18px;
    font-weight:700;
    color:var(--white);
    margin-bottom:6px;
  }

  .stat-card .small{
    font-size:14px;
    color:#d8e2f3;
  }

  .section-light{
    background:#ffffff;
    padding:56px 0;
  }

  .section-dark{
    background:
      linear-gradient(135deg, #051224 0%, #0a203b 100%);
    padding:56px 0;
    color:var(--white);
  }

  .two-col{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:26px;
    align-items:stretch;
  }

  .panel{
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:26px;
    box-shadow:var(--shadow);
  }

  .panel h2,
  .panel h3{
    color:#0f172a;
  }

  .panel p{
    color:var(--text-soft);
    font-size:16px;
  }

  .diagram-wrap{
    background:#f8fafc;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:18px;
  }

  .pill-top{
    width:110px;
    height:22px;
    border-radius:999px;
    background:#d9f4de;
    margin:0 auto 20px;
  }

  .section-title{
    font-size:20px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:16px;
  }

  .feature-stack{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .feature{
    background:#fff8e7;
    color:#1f2937;
    border:1px solid #f1e3b7;
    border-radius:14px;
    padding:16px 18px;
    font-size:15px;
    font-weight:700;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
  }

  .dashboard-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
  }

  .dark-panel{
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.10);
    border-radius:22px;
    padding:28px;
    box-shadow:var(--shadow);
  }

  .dark-panel h2{
    font-size:40px;
    line-height:1.05;
    margin-bottom:10px;
    color:var(--white);
    font-weight:700;
  }

  .dark-panel .sub{
    color:#d2ddf0;
    font-size:16px;
    margin-bottom:22px;
  }

  .metric-list,
  .feed-list{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .metric-item,
  .feed-item{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:16px 18px;
  }

  .metric-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:10px;
    margin-bottom:6px;
  }

  .metric-name{
    font-size:20px;
    font-weight:700;
    color:var(--white);
  }

  .metric-score{
    font-size:34px;
    line-height:1;
    color:var(--gold);
    font-weight:700;
  }

  .metric-desc{
    font-size:14px;
    color:#d7e2f3;
  }

  .metric-state{
    margin-top:8px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1px;
    color:#f3dc90;
    text-transform:uppercase;
  }

  .feed-time{
    font-size:14px;
    font-weight:700;
    color:#f3dc90;
    margin-bottom:6px;
  }

  .feed-text{
    font-size:16px;
    color:var(--white);
  }

  .white-card-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:26px;
  }

  .list-card{
    background:#ffffff;
    border:1px solid var(--line);
    border-radius:22px;
    padding:26px;
    box-shadow:var(--shadow);
  }

  .list-card h3{
    font-size:24px;
    margin-bottom:18px;
    color:#0f172a;
    font-weight:700;
  }

  .soft-list{
    display:flex;
    flex-direction:column;
    gap:14px;
  }

  .soft-item-gold{
    background:#fff8e7;
    color:#1f2937;
    border:1px solid #f0e0b3;
    border-radius:14px;
    padding:15px 16px;
    font-size:15px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
  }

  .soft-item-white{
    background:#ffffff;
    color:#1f2937;
    border:1px solid #e5e7eb;
    border-radius:14px;
    padding:15px 16px;
    font-size:15px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
  }

  .related h2{
    color:var(--white);
    font-size:28px;
    margin-bottom:10px;
  }

  .related p{
    color:#d5e0f0;
    margin-bottom:24px;
    font-size:15px;
  }

  .related-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .related-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    padding:18px 18px;
    transition:.2s ease;
  }

  .related-card:hover{
    background:rgba(255,255,255,.10);
  }

  .related-card h4{
    color:var(--white);
    font-size:18px;
    margin-bottom:6px;
    font-weight:700;
  }

  .related-card p{
    margin:0;
    color:#d2ddf0;
    font-size:14px;
  }

  .cta{
    text-align:center;
    padding-top:52px;
  }

  .cta h2{
    font-size:44px;
    line-height:1.1;
    color:var(--white);
    margin-bottom:14px;
    font-weight:700;
  }

  .cta p{
    max-width:940px;
    margin:0 auto 24px;
    color:#e6edf9;
    font-size:19px;
    font-weight:700;
  }

  .footer-note{
    margin-top:20px;
    color:#d0dbec;
    font-size:16px;
    font-weight:700;
  }

  @media (max-width: 1100px){
    .hero h1{font-size:46px;}
    .hero-stats{grid-template-columns:repeat(2,1fr);}
    .two-col,
    .dashboard-grid,
    .white-card-grid{grid-template-columns:1fr;}
  }

  @media (max-width: 700px){
    .hero{
      padding:42px 0 34px;
    }

    .hero h1{
      font-size:36px;
    }

    .hero p.lead{
      font-size:17px;
    }

    .hero-stats{
      grid-template-columns:1fr;
    }

    .dark-panel h2,
    .cta h2{
      font-size:30px;
    }

    .related-grid{
      grid-template-columns:1fr;
    }
  }
html, body, #container
{
   width: 100%;
   height: 100%;
}
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_Image3
{
   vertical-align: top;
}
#Image3
{
   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;
}
}
