    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(214,180,90,0.09), transparent 22%),
        radial-gradient(circle at bottom right, rgba(214,180,90,0.05), transparent 22%),
        linear-gradient(180deg, #0c1626 0%, #09121d 100%);
      color: #eef4fb;
      line-height: 1.6;
    }

    a { color: #f0cc78; text-decoration: none; }
    a:hover { color: #ffffff; }

    .container {
      width: min(1300px, 94%);
      margin: 0 auto;
    }

    .section {
      padding: 70px 0;
    }

    .section-title {
      font-size: clamp(2rem, 3vw, 3.2rem);
      color: #fff;
      line-height: 1.1;
      text-align: center;
      margin-bottom: 14px;
    }

    .section-subtitle {
      max-width: 960px;
      margin: 0 auto 30px;
      text-align: center;
      color: #d5dfeb;
      font-size: 1.05rem;
    }

    .gold-line {
      width: 118px;
      height: 3px;
      margin: 0 auto 28px;
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, #d6b45a, transparent);
    }

    .hero {
      padding: 78px 0 52px;
      border-bottom: 1px solid rgba(214,180,90,0.12);
      background:
        linear-gradient(180deg, rgba(17,34,55,0.92), rgba(9,18,29,0.98));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(214,180,90,0.34);
      background: rgba(255,255,255,0.02);
      color: #f0cc78;
      font-size: 0.92rem;
      margin-bottom: 16px;
    }

    .hero h1 {
      font-size: clamp(2.3rem, 4.4vw, 4.5rem);
      line-height: 1.03;
      margin-bottom: 16px;
      color: #fff;
    }

    .hero p {
      color: #d5dfeb;
      font-size: 1.08rem;
      margin-bottom: 24px;
      max-width: 830px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-block;
      padding: 14px 22px;
      border-radius: 12px;
      font-weight: 700;
      border: 1px solid transparent;
      transition: 0.25s ease;
    }

    .btn-primary {
      background: linear-gradient(135deg, #d6b45a, #f0cc78);
      color: #0b1828;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      color: #0b1828;
    }

    .btn-secondary {
      background: transparent;
      border-color: rgba(214,180,90,0.34);
      color: #fff;
    }

    .btn-secondary:hover {
      background: rgba(214,180,90,0.08);
    }

    .panel,
    .layer-card,
    .info-card,
    .flow-card,
    .value-card,
    .link-card,
    .stat-card {
      background: linear-gradient(180deg, rgba(17,34,55,0.95), rgba(8,16,27,0.99));
      border: 1px solid rgba(214,180,90,0.18);
      border-radius: 22px;
      box-shadow: 0 16px 42px rgba(0,0,0,0.24);
    }

    .hero-panel {
      padding: 24px;
    }

    .panel-title {
      color: #fff;
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 16px;
    }

    .status-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .status-box {
      padding: 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(214,180,90,0.12);
    }

    .status-label {
      color: #cdd8e6;
      font-size: 0.9rem;
      margin-bottom: 8px;
    }

    .status-value {
      color: #fff;
      font-size: 1.55rem;
      font-weight: 700;
    }

    .live {
      color: #98f0b5;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 700;
    }

    .live::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #47d97d;
      box-shadow: 0 0 14px #47d97d;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.18); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .stat-card {
      padding: 24px;
      text-align: center;
    }

    .stat-number {
      color: #f0cc78;
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .stat-card h3 {
      color: #fff;
      font-size: 1.08rem;
      margin-bottom: 8px;
    }

    .stat-card p {
      color: #d5dfeb;
      font-size: 0.96rem;
    }

    .architecture-shell {
      padding: 26px;
      position: relative;
      overflow: hidden;
    }

    .architecture-shell::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }

    .architecture-title {
      position: relative;
      z-index: 2;
      color: #fff;
      font-size: 1.35rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 10px;
    }

    .architecture-sub {
      position: relative;
      z-index: 2;
      color: #d5dfeb;
      text-align: center;
      max-width: 880px;
      margin: 0 auto 24px;
    }

    .architecture-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .layer-card {
      padding: 22px 18px;
      text-align: center;
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }

    .layer-icon {
      width: 62px;
      height: 62px;
      margin: 0 auto 16px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 1.45rem;
      color: #f0cc78;
      background: linear-gradient(135deg, rgba(214,180,90,0.16), rgba(255,255,255,0.04));
      border: 1px solid rgba(214,180,90,0.25);
    }

    .layer-card h3 {
      color: #fff;
      font-size: 1.14rem;
      margin-bottom: 10px;
    }

    .layer-card p {
      color: #d5dfeb;
      font-size: 0.95rem;
    }

    .layer-card ul {
      text-align: left;
      margin-top: 12px;
      padding-left: 18px;
      color: #d5dfeb;
      font-size: 0.92rem;
    }

    .layer-card li { margin-bottom: 6px; }

    .arrow-col {
      display: grid;
      place-items: center;
      color: #f0cc78;
      font-size: 2rem;
      font-weight: 700;
    }

    .stack-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      margin-top: 30px;
    }

    .info-card {
      padding: 26px;
    }

    .info-card h3 {
      color: #fff;
      margin-bottom: 12px;
      font-size: 1.28rem;
    }

    .info-card p {
      color: #d5dfeb;
      margin-bottom: 10px;
    }

    .info-card ul {
      color: #d5dfeb;
      padding-left: 18px;
      margin-top: 10px;
    }

    .info-card li { margin-bottom: 7px; }

    .flow-grid {
      display: grid;
      gap: 18px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .flow-card {
      padding: 24px;
      display: grid;
      grid-template-columns: 84px 1fr;
      gap: 18px;
      align-items: start;
    }

    .flow-num {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #d6b45a, #f0cc78);
      color: #0b1828;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .flow-card h3 {
      color: #fff;
      margin-bottom: 8px;
    }

    .flow-card p {
      color: #d5dfeb;
    }

    .three-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .value-card {
      padding: 24px;
    }

    .value-card h3 {
      color: #fff;
      margin-bottom: 10px;
    }

    .value-card p {
      color: #d5dfeb;
    }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .link-card {
      display: block;
      padding: 18px;
      text-align: center;
      color: #fff;
      font-weight: 700;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
    }

    .link-card:hover {
      border-color: rgba(214,180,90,0.34);
      background: rgba(214,180,90,0.08);
    }

    .footer-panel {
      padding: 38px 28px;
      text-align: center;
    }

    .footer-panel h2 {
      color: #fff;
      font-size: clamp(2rem, 3vw, 3rem);
      margin-bottom: 12px;
    }

    .footer-panel p {
      max-width: 900px;
      margin: 0 auto 24px;
      color: #d5dfeb;
    }

    footer {
      padding: 26px 0 46px;
      border-top: 1px solid rgba(214,180,90,0.12);
      background: rgba(0,0,0,0.14);
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: #d5dfeb;
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .stats-row,
      .architecture-grid,
      .stack-grid,
      .three-grid,
      .link-grid {
        grid-template-columns: 1fr;
      }

      .arrow-col {
        transform: rotate(90deg);
        min-height: 40px;
      }
    }

    @media (max-width: 900px) {
      .status-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        text-align: center;
      }

      .flow-card {
        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_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_Text4 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text4 div
{
   text-align: left;
}
#wb_Text5 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text5 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_Text6 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text6 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: 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;
}
}
#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%;
}
