    :root {
      --navy-1: #08111f;
      --navy-2: #0c1a2d;
      --navy-3: #091423;
      --navy-4: #0b1828;
      --gold: #d6b45a;
      --gold-soft: #f2e1b0;
      --white: #ffffff;
      --ink: #0b1828;
      --ink-soft: #334155;
      --muted-light: #d7e0eb;
      --muted-mid: #aebdce;
      --line-light: #e7ebf0;
      --panel-dark: rgba(255,255,255,0.04);
      --panel-dark-border: rgba(214,180,90,0.18);
      --shadow-dark: 0 22px 60px rgba(0,0,0,0.24);
      --shadow-light: 0 10px 28px rgba(0,0,0,0.06);
      --max-width: 1280px;
      --radius-xl: 30px;
      --radius-lg: 24px;
      --radius-md: 18px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--white);
      background: linear-gradient(180deg, var(--navy-1) 0%, var(--navy-2) 42%, #ffffff 42%, #ffffff 100%);
      line-height: 1.7;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }

    .wrap {
      width: min(var(--max-width), calc(100% - 40px));
      margin: 0 auto;
    }

    .menu-offset { height: 108px; }

    .hero {
      background:
        radial-gradient(circle at top left, rgba(214,180,90,0.10), transparent 28%),
        radial-gradient(circle at top right, rgba(214,180,90,0.07), transparent 24%),
        linear-gradient(135deg, var(--navy-1) 0%, var(--navy-2) 56%, var(--navy-3) 100%);
      padding: 34px 0 26px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.16fr 0.84fr;
      gap: 28px;
      align-items: stretch;
    }

    .hero-panel,
    .platform-panel,
    .dark-card,
    .light-card,
    .pathway-card,
    .detail-panel,
    .cta-band {
      border-radius: var(--radius-lg);
    }

    .hero-panel,
    .platform-panel {
      background: var(--panel-dark);
      border: 1px solid var(--panel-dark-border);
      box-shadow: var(--shadow-dark);
      backdrop-filter: blur(10px);
    }

    .hero-panel { padding: 40px 38px; }
    .platform-panel { padding: 30px 28px 18px; }

    .eyebrow,
    .section-kicker {
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .eyebrow { margin-bottom: 16px; }
    .section-kicker { margin-bottom: 12px; }

    h1 {
      margin: 0 0 18px;
      color: var(--white);
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    h2 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: clamp(2rem, 3.2vw, 3.1rem);
      line-height: 1.05;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    h3 {
      margin: 0 0 10px;
      line-height: 1.2;
      font-weight: 800;
    }

    .hero-lead {
      margin: 0 0 16px;
      color: #e8edf5;
      font-size: 1.24rem;
      line-height: 1.58;
    }

    .hero-copy {
      margin: 0 0 16px;
      color: var(--muted-light);
      font-size: 1.04rem;
      line-height: 1.82;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 22px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 0.97rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover { transform: translateY(-2px); }

    .btn-primary {
      background: var(--gold);
      color: var(--ink);
      box-shadow: 0 10px 26px rgba(214,180,90,0.24);
    }

    .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.20);
    }

    .platform-list {
      border-top: 1px solid rgba(255,255,255,0.08);
      margin-top: 10px;
    }

    .platform-item {
      display: block;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .platform-item:last-child {
      border-bottom: 0;
      padding-bottom: 8px;
    }

    .platform-name {
      display: block;
      color: var(--white);
      font-size: 1.42rem;
      font-weight: 800;
      margin-bottom: 6px;
      line-height: 1.2;
    }

    .platform-desc {
      color: var(--muted-light);
      font-size: 0.98rem;
      line-height: 1.65;
    }

    .dark-section {
      background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-4) 100%);
      padding: 20px 0 34px;
    }

    .grid-4,
    .grid-3,
    .grid-5,
    .grid-2 {
      display: grid;
      gap: 18px;
    }

    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .dark-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 24px;
    }

    .dark-card h3 {
      color: var(--white);
      font-size: 1.34rem;
    }

    .dark-card p {
      margin: 0;
      color: var(--muted-light);
      font-size: 0.99rem;
      line-height: 1.74;
    }

    .light-zone {
      background: #ffffff;
      color: var(--ink);
      padding: 72px 0 84px;
    }

    .divider {
      width: min(84%, 1080px);
      height: 2px;
      margin: 0 auto 56px;
      background: var(--gold);
    }

    .section-header {
      text-align: center;
      margin-bottom: 34px;
    }

    .section-header.left { text-align: left; }

    .light-zone h2,
    .light-zone h3,
    .light-zone .section-header h2,
    .light-zone .cta-band h2 {
      color: var(--ink);
    }

    .section-copy {
      max-width: 980px;
      margin: 0 auto;
      color: #2a3340;
      font-size: 1.08rem;
      line-height: 1.78;
    }

    .section-header.left .section-copy {
      margin: 0;
      color: #334155;
    }

    .light-card {
      background: #ffffff;
      border: 1px solid var(--line-light);
      box-shadow: var(--shadow-light);
      padding: 28px 24px;
      height: 100%;
    }

    .light-card h3 {
      color: var(--ink);
      font-size: 1.22rem;
    }

    .light-card p {
      margin: 0 0 18px;
      color: #334155;
      font-size: 1rem;
      line-height: 1.8;
    }

    .light-card a {
      color: var(--ink);
      font-weight: 700;
      border-bottom: 2px solid var(--gold);
      padding-bottom: 2px;
    }

    .pathway-wrap {
      margin-top: 58px;
      background: #f8fafc;
      border: 1px solid #e9edf2;
      border-radius: var(--radius-lg);
      padding: 34px 30px;
    }

    .pathway-intro {
      max-width: 1030px;
      margin: 0 auto 24px;
      text-align: center;
      color: #334155;
      font-size: 1.08rem;
      line-height: 1.78;
    }

    .pathway-card {
      background: #ffffff;
      border: 1px solid #e8eaef;
      padding: 22px;
      height: 100%;
    }

    .pathway-card h3 {
      color: var(--ink);
      font-size: 1.08rem;
    }

    .pathway-card p {
      margin: 0;
      color: #475569;
      font-size: 0.98rem;
      line-height: 1.72;
    }

    .detail-panel {
      background: linear-gradient(180deg, rgba(11,24,40,0.035), rgba(11,24,40,0.02));
      border: 1px solid #e6ebf0;
      padding: 28px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
      height: 100%;
    }

    .detail-panel h3 {
      color: var(--ink);
      font-size: 1.4rem;
    }

    .detail-panel p {
      margin: 0;
      color: #334155;
      font-size: 1rem;
      line-height: 1.82;
    }

    .cta-band {
      margin-top: 30px;
      background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
      border: 1px solid #e6ebf0;
      padding: 34px 32px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    }

    .cta-band p {
      margin: 0;
      max-width: 900px;
      color: #334155;
      font-size: 1.03rem;
      line-height: 1.82;
    }

    footer {
      background: #ffffff;
      color: #6b7b8f;
      padding: 10px 0 42px;
      font-size: 0.92rem;
    }

    .footer-shell {
      border-top: 1px solid #e9edf2;
      padding-top: 16px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    @media (max-width: 1180px) {
      .hero-grid,
      .grid-4,
      .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    @media (max-width: 960px) {
      .hero-grid,
      .grid-4,
      .grid-3,
      .grid-5,
      .grid-2 { grid-template-columns: 1fr; }
      .menu-offset { height: 92px; }
    }

    @media (max-width: 760px) {
      .wrap { width: min(var(--max-width), calc(100% - 22px)); }
      .hero { padding: 22px 0 20px; }
      .dark-section { padding: 18px 0 28px; }
      .light-zone { padding: 54px 0 62px; }
      .hero-panel,
      .platform-panel,
      .dark-card,
      .light-card,
      .pathway-card,
      .detail-panel,
      .cta-band,
      .pathway-wrap { padding: 22px; }
      .hero-lead { font-size: 1.12rem; }
    }
  body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
a
{
   color: #FFFFFF;
   text-decoration: none;
}
a:hover
{
   color: #FFFFFF;
   text-decoration: none;
}
#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_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_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_Text14 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text14 div
{
   text-align: left;
}
#wb_Image11
{
   vertical-align: top;
}
#Image11
{
   border: 0px solid #000000;
   border-radius: 0px;
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
}
#wb_Text15 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text15 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_Text17 
{
   background-color: transparent;
   background-image: none;
   border: 0px solid #000000;
   border-radius: 0px;
   padding: 0;
   margin: 0;
   text-align: left;
}
#wb_Text17 div
{
   text-align: left;
}
