    * { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(214,180,90,0.10), transparent 30%),
        radial-gradient(circle at top right, rgba(214,180,90,0.08), transparent 25%),
        linear-gradient(180deg, #10233a 0%, #0b1828 45%, #08111d 100%);
      color: #f3f6fb;
      line-height: 1.6;
    }

    a { color: #f0cc78; text-decoration: none; }
    a:hover { color: #ffffff; }

    .container {
      width: min(1200px, 92%);
      margin: 0 auto;
    }

    .section {
      padding: 80px 0;
      position: relative;
    }

    .section-title {
      font-size: clamp(2rem, 3.8vw, 3.3rem);
      color: #ffffff;
      line-height: 1.15;
      margin-bottom: 16px;
      font-weight: 700;
      text-align: center;
    }

    .section-subtitle {
      max-width: 900px;
      margin: 0 auto 40px;
      text-align: center;
      color: #d9e3ef;
      font-size: 1.08rem;
    }

    .gold-line {
      width: 120px;
      height: 3px;
      margin: 0 auto 32px;
      background: linear-gradient(90deg, transparent, #d6b45a, transparent);
      border-radius: 10px;
    }

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 90px 0 50px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(11,24,40,0.88) 0%, rgba(11,24,40,0.7) 48%, rgba(11,24,40,0.45) 100%),
        url('https://images.unsplash.com/photo-1516321165247-4aa89a48be28?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      opacity: 0.22;
      z-index: 0;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 38px;
      align-items: center;
    }

    .hero-badge {
      display: inline-block;
      padding: 10px 16px;
      border: 1px solid rgba(214,180,90,0.45);
      color: #f0cc78;
      border-radius: 999px;
      font-size: 0.92rem;
      background: rgba(255,255,255,0.03);
      margin-bottom: 18px;
    }

    .hero h1 {
      font-size: clamp(2.4rem, 5vw, 4.8rem);
      line-height: 1.05;
      color: #ffffff;
      margin-bottom: 18px;
    }

    .hero h1 span {
      color: #f0cc78;
    }

    .hero p {
      font-size: 1.12rem;
      color: #d9e3ef;
      max-width: 760px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-block;
      padding: 14px 24px;
      border-radius: 12px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: linear-gradient(135deg, #d6b45a, #f0cc78);
      color: #0b1828;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      color: #0b1828;
      box-shadow: 0 10px 26px rgba(214,180,90,0.24);
    }

    .btn-secondary {
      background: transparent;
      border-color: rgba(214,180,90,0.55);
      color: #ffffff;
    }

    .btn-secondary:hover {
      background: rgba(214,180,90,0.08);
    }

    .hero-panel,
    .card,
    .stat-card,
    .arch-card,
    .demo-panel,
    .sector-card,
    .timeline-item,
    .cta-panel {
      background: linear-gradient(180deg, rgba(18,35,58,0.92), rgba(10,22,36,0.96));
      border: 1px solid rgba(214,180,90,0.24);
      border-radius: 22px;
      box-shadow: 0 18px 45px rgba(0,0,0,0.22);
    }

    .hero-panel {
      padding: 26px;
      position: relative;
      overflow: hidden;
    }

    .panel-title {
      font-size: 1.12rem;
      color: #ffffff;
      margin-bottom: 18px;
      font-weight: 700;
    }

    .live-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 18px;
      gap: 12px;
      flex-wrap: wrap;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #92f7b4;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .live-dot::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #42d77d;
      box-shadow: 0 0 14px #42d77d;
      animation: pulse 1.4s infinite;
    }

    @keyframes pulse {
      0% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.2); opacity: 0.7; }
      100% { transform: scale(1); opacity: 1; }
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-bottom: 20px;
    }

    .metric {
      padding: 16px;
      border-radius: 16px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(214,180,90,0.16);
    }

    .metric-label {
      color: #d3dce8;
      font-size: 0.92rem;
      margin-bottom: 8px;
    }

    .metric-value {
      font-size: 1.7rem;
      font-weight: 700;
      color: #ffffff;
    }

    .status-list {
      display: grid;
      gap: 10px;
    }

    .status-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.05);
    }

    .status-label { color: #ffffff; font-weight: 700; }
    .status-value { color: #d9e3ef; }

    .grid-3, .grid-4, .grid-2 {
      display: grid;
      gap: 22px;
    }

    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }

    .card {
      padding: 28px;
      position: relative;
    }

    .card h3,
    .arch-card h3,
    .sector-card h3,
    .timeline-item h3,
    .stat-card h3 {
      color: #ffffff;
      font-size: 1.28rem;
      margin-bottom: 12px;
    }

    .card p,
    .arch-card p,
    .sector-card p,
    .timeline-item p,
    .stat-card p {
      color: #d9e3ef;
    }

    .card-icon {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      font-size: 1.4rem;
      background: linear-gradient(135deg, rgba(214,180,90,0.22), rgba(255,255,255,0.06));
      border: 1px solid rgba(214,180,90,0.25);
      margin-bottom: 18px;
      color: #f0cc78;
    }

    .stats-band {
      padding: 30px;
      margin-top: -40px;
      position: relative;
      z-index: 2;
    }

    .stat-card {
      padding: 24px;
      text-align: center;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 700;
      color: #f0cc78;
      margin-bottom: 6px;
    }

    .demo-wrap {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .demo-panel {
      padding: 28px;
    }

    .demo-screen {
      border-radius: 18px;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
      border: 1px solid rgba(214,180,90,0.16);
      padding: 18px;
      min-height: 520px;
      position: relative;
      overflow: hidden;
    }

    .screen-topbar {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }

    .screen-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.24);
    }

    .map-box {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 16px;
      min-height: 440px;
    }

    .world-map {
      border-radius: 18px;
      padding: 18px;
      background:
        radial-gradient(circle at 30% 20%, rgba(214,180,90,0.12), transparent 20%),
        radial-gradient(circle at 75% 55%, rgba(214,180,90,0.12), transparent 20%),
        linear-gradient(180deg, rgba(17,34,55,0.9), rgba(8,16,28,0.98));
      border: 1px solid rgba(214,180,90,0.15);
      position: relative;
      overflow: hidden;
    }

    .world-map::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 34px 34px;
      pointer-events: none;
    }

    .map-title {
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
      position: relative;
      z-index: 2;
    }

    .site-node {
      position: absolute;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background: #f0cc78;
      box-shadow: 0 0 18px rgba(240,204,120,0.8);
      z-index: 2;
      animation: pulse 1.8s infinite;
    }

    .node-1 { top: 24%; left: 22%; }
    .node-2 { top: 34%; left: 51%; }
    .node-3 { top: 48%; left: 74%; }
    .node-4 { top: 58%; left: 42%; }
    .node-5 { top: 28%; left: 78%; }

    .command-sidebar {
      display: grid;
      gap: 14px;
      align-content: start;
    }

    .alert-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(214,180,90,0.14);
      border-radius: 16px;
      padding: 14px;
    }

    .alert-level {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 0.78rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .alert-high { background: rgba(255,84,84,0.16); color: #ff9a9a; }
    .alert-medium { background: rgba(255,189,84,0.16); color: #ffd284; }
    .alert-low { background: rgba(91,181,255,0.16); color: #9fd0ff; }

    .arch-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      margin-top: 20px;
    }

    .arch-card {
      padding: 20px;
      text-align: center;
      min-height: 220px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .arch-arrow {
      display: grid;
      place-items: center;
      color: #f0cc78;
      font-size: 1.8rem;
      font-weight: 700;
    }

    .timeline {
      display: grid;
      gap: 20px;
      max-width: 980px;
      margin: 0 auto;
    }

    .timeline-item {
      padding: 26px;
      display: grid;
      grid-template-columns: 90px 1fr;
      gap: 22px;
      align-items: start;
    }

    .timeline-num {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #d6b45a, #f0cc78);
      color: #0b1828;
      font-weight: 700;
      font-size: 1.4rem;
    }

    .sector-card {
      padding: 28px;
      min-height: 220px;
    }

    .sector-card ul {
      margin-top: 12px;
      padding-left: 18px;
      color: #d9e3ef;
    }

    .sector-card li { margin-bottom: 8px; }

    .link-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 26px;
    }

    .link-box {
      display: block;
      padding: 18px;
      border-radius: 16px;
      border: 1px solid rgba(214,180,90,0.2);
      background: rgba(255,255,255,0.03);
      color: #ffffff;
      font-weight: 700;
      text-align: center;
    }

    .link-box:hover {
      background: rgba(214,180,90,0.08);
      border-color: rgba(214,180,90,0.45);
    }

    .cta-panel {
      padding: 42px 30px;
      text-align: center;
    }

    .cta-panel h2 {
      font-size: clamp(2rem, 3vw, 3rem);
      color: #ffffff;
      margin-bottom: 14px;
    }

    .cta-panel p {
      max-width: 820px;
      margin: 0 auto 26px;
      color: #d9e3ef;
      font-size: 1.06rem;
    }

    footer {
      padding: 40px 0 60px;
      border-top: 1px solid rgba(214,180,90,0.14);
      background: rgba(0,0,0,0.12);
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-wrap p, .footer-wrap a {
      color: #d9e3ef;
      font-size: 0.98rem;
    }

    .small-note {
      font-size: 0.92rem;
      color: #b7c4d3;
      margin-top: 16px;
    }

    @media (max-width: 1100px) {
      .hero-grid,
      .demo-wrap,
      .grid-4,
      .grid-3,
      .grid-2,
      .arch-grid,
      .link-grid,
      .map-box {
        grid-template-columns: 1fr;
      }

      .stats-band {
        margin-top: 0;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .timeline-num {
        width: 60px;
        height: 60px;
      }
    }

    @media (max-width: 768px) {
      .section { padding: 60px 0; }

      .hero {
        min-height: auto;
        padding-top: 80px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        text-align: center;
      }

      .metric-grid {
        grid-template-columns: 1fr;
      }

      .demo-screen {
        min-height: auto;
      }

      .world-map {
        min-height: 280px;
      }
    }
  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%;
}
