    :root{
      --bg:#182634;
      --panel:#1f3042;
      --panel2:#24384d;
      --gold:#d4af37;
      --gold-soft:#efd67a;
      --text:#e7edf2;
      --muted:#c8d2db;
      --line:rgba(212,175,55,0.22);
      --line-soft:rgba(255,255,255,0.06);
      --shadow:0 18px 48px rgba(0,0,0,0.30);
      --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 right, rgba(212,175,55,0.08), transparent 22%),
        linear-gradient(180deg, #182634 0%, #142230 100%);
      color:#fff;
      line-height:1.7;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    .page-wrap{
      width:min(var(--max), calc(100% - 40px));
      margin:0 auto;
    }

    .hero{
      padding:78px 0 54px;
      border-bottom:1px solid var(--line);
      background:
        radial-gradient(circle at top left, rgba(212,175,55,0.06), transparent 20%),
        linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0));
    }

    .hero-grid{
      display:grid;
      grid-template-columns:1.08fr 0.92fr;
      gap:34px;
      align-items:start;
    }

    .eyebrow{
      display:inline-block;
      margin-bottom:14px;
      color:var(--gold-soft);
      font-size:13px;
      font-weight:700;
      letter-spacing:1.4px;
      text-transform:uppercase;
    }

    .hero h1{
      margin:0 0 18px;
      font-size:58px;
      line-height:1.02;
      letter-spacing:-1px;
      font-weight:800;
      color:#fff;
      max-width:780px;
    }

    .hero h1 .gold{
      color:var(--gold);
    }

    .hero p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:18px;
      max-width:780px;
    }

    .hero-actions{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }

    .btn-primary,
    .btn-secondary{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:50px;
      padding:0 20px;
      border-radius:8px;
      font-weight:700;
      font-size:15px;
      transition:0.25s ease;
    }

    .btn-primary{
      background:var(--gold);
      color:#182634;
      box-shadow:var(--shadow);
    }

    .btn-primary:hover{
      background:var(--gold-soft);
      transform:translateY(-1px);
    }

    .btn-secondary{
      border:1px solid rgba(212,175,55,0.55);
      color:var(--gold-soft);
      background:transparent;
    }

    .btn-secondary:hover{
      background:rgba(212,175,55,0.10);
    }

    .hero-panel{
      background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
      border:1px solid var(--line);
      border-radius:18px;
      padding:28px;
      box-shadow:var(--shadow);
    }

    .hero-panel h3{
      margin:0 0 16px;
      color:var(--gold);
      font-size:22px;
      font-weight:800;
    }

    .signal{
      padding:14px 0;
      border-bottom:1px solid var(--line-soft);
    }

    .signal:last-child{
      border-bottom:none;
      padding-bottom:0;
    }

    .signal strong{
      display:block;
      margin-bottom:4px;
      color:#fff;
      font-size:15px;
    }

    .signal span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.6;
    }

    .section{
      padding:78px 0;
      border-top:1px solid rgba(255,255,255,0.05);
    }

    .section-head{
      max-width:980px;
      margin-bottom:28px;
    }

    .kicker{
      display:inline-block;
      margin-bottom:10px;
      color:var(--gold-soft);
      font-size:12px;
      font-weight:700;
      letter-spacing:1.3px;
      text-transform:uppercase;
    }

    .section-head h2{
      margin:0 0 14px;
      font-size:42px;
      line-height:1.1;
      color:#fff;
    }

    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:17px;
      max-width:960px;
    }

    .narrative{
      max-width:1060px;
    }

    .narrative p{
      margin:0 0 18px;
      color:var(--text);
      font-size:17px;
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:22px;
      margin-top:30px;
    }

    .grid-2{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:24px;
      margin-top:30px;
    }

    .card{
      background:linear-gradient(180deg, var(--panel), var(--panel2));
      border:1px solid var(--line);
      border-radius:16px;
      padding:28px;
      box-shadow:var(--shadow);
    }

    .card h3{
      margin:0 0 12px;
      color:var(--gold);
      font-size:22px;
      line-height:1.2;
    }

    .card p{
      margin:0;
      color:var(--text);
      font-size:15px;
      line-height:1.7;
    }

    .detail-block{
      background:linear-gradient(180deg, #1b2b3b, #1a2938);
      border:1px solid var(--line);
      border-radius:18px;
      padding:30px;
      box-shadow:var(--shadow);
    }

    .detail-block h3{
      margin:0 0 16px;
      color:var(--gold);
      font-size:24px;
    }

    .detail-block p{
      margin:0 0 16px;
      color:var(--text);
      font-size:16px;
    }

    .detail-block p:last-child{
      margin-bottom:0;
    }

    .feature-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:14px;
    }

    .feature-list li{
      position:relative;
      padding-left:22px;
      color:var(--text);
      font-size:15px;
      line-height:1.65;
    }

    .feature-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:10px;
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--gold);
    }

    .cta-band{
      background:
        linear-gradient(90deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.03)),
        #182634;
      border:1px solid var(--line);
      border-radius:18px;
      padding:36px 30px;
      box-shadow:var(--shadow);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:24px;
    }

    .cta-band h3{
      margin:0 0 8px;
      color:#fff;
      font-size:34px;
      line-height:1.1;
    }

    .cta-band p{
      margin:0;
      color:var(--muted);
      font-size:16px;
      max-width:780px;
    }

    .footer-note{
      padding:24px 0 40px;
      color:#9aa7b4;
      font-size:13px;
      text-align:center;
    }

    @media (max-width:1100px){
      .hero-grid,
      .grid-3,
      .grid-2{
        grid-template-columns:1fr;
      }

      .hero h1{
        font-size:46px;
      }

      .section-head h2{
        font-size:36px;
      }

      .cta-band{
        flex-direction:column;
        align-items:flex-start;
      }
    }

    @media (max-width:700px){
      .page-wrap{
        width:min(var(--max), calc(100% - 24px));
      }

      .hero{
        padding:54px 0 36px;
      }

      .hero h1{
        font-size:38px;
      }

      .section{
        padding:58px 0;
      }

      .section-head h2{
        font-size:30px;
      }

      .hero p,
      .section-head p,
      .narrative p{
        font-size:16px;
      }

      .btn-primary,
      .btn-secondary{
        width: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_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_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;
}
#MegaMenu1
{
   font-size: 0;
   list-style: none;
   margin: 0;
   padding: 0;
   width: 100%;
   margin: 0;
   text-align: left;
   font-family: "Times New Roman";
   font-weight: normal;
}
#MegaMenu1 li
{
   display: inline-block;
   font-size: 17px;
   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: 0;
   font-style: normal;
   margin: 0;
   padding: 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 #DAA520;
   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 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 #DAA520;
   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;
}
}
#Shape1
{
   border-width: 0;
   vertical-align: top;
}
#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;
}
#Shape2
{
   border-width: 0;
   vertical-align: top;
}
#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_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%;
}
