    :root {
      --bg: #060607;
      --bg2: #0d0d10;
      --card: rgba(255,255,255,0.055);
      --card2: rgba(255,255,255,0.085);
      --gold: #d6b45d;
      --gold2: #ffe7a4;
      --white: #ffffff;
      --soft: #d8d8d8;
      --muted: #a7a7a7;
      --line: rgba(214,180,93,0.32);
      --green: #6ee7a8;
      --yellow: #ffe082;
      --red: #ff8a8a;
      --shadow: 0 24px 70px rgba(0,0,0,0.42);
      --radius: 28px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background:
        radial-gradient(circle at 20% 5%, rgba(214,180,93,0.12), transparent 28%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08), transparent 24%),
        linear-gradient(135deg, #050506 0%, #0b0b0f 42%, #050506 100%);
      color: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: var(--gold2); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .page-shell { width: 100%; }

    .container {
      max-width: var(--max);
      margin: 0 auto;
      padding: 0 22px;
    }

    .section { padding: 82px 0; position: relative; }
    .section.compact { padding: 58px 0; }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--gold2);
      border: 1px solid var(--line);
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(214,180,93,0.075);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 20px rgba(214,180,93,0.95);
    }

    h1, h2, h3, h4 {
      margin: 0;
      line-height: 1.08;
      letter-spacing: -0.03em;
      color: var(--white);
    }

    h1 {
      font-size: clamp(42px, 7.3vw, 86px);
      max-width: 1050px;
      margin-top: 24px;
    }

    h2 {
      font-size: clamp(32px, 4.4vw, 58px);
      max-width: 900px;
      margin-bottom: 20px;
    }

    h3 { font-size: 24px; margin-bottom: 14px; }
    h4 { font-size: 18px; color: var(--gold2); margin-bottom: 10px; }

    .gold { color: var(--gold2); }
    .muted { color: var(--muted); }
    .lead {
      color: var(--soft);
      font-size: clamp(18px, 2.1vw, 22px);
      max-width: 910px;
      margin: 24px 0 0;
    }

    .hero {
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding: 88px 0 58px;
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -15% -25% -15%;
      height: 380px;
      background: radial-gradient(ellipse at center, rgba(214,180,93,0.17), transparent 62%);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 34px;
      align-items: center;
    }

    .hero-card {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent, rgba(214,180,93,0.08), transparent),
        radial-gradient(circle at top right, rgba(255,231,164,0.12), transparent 35%);
      pointer-events: none;
    }

    .network-visual {
      position: relative;
      min-height: 470px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 50% 50%, rgba(214,180,93,0.2), transparent 23%),
        linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.025));
      border: 1px solid rgba(255,255,255,0.11);
      overflow: hidden;
    }

    .ring {
      position: absolute;
      inset: 50%;
      transform: translate(-50%,-50%);
      border: 1px solid rgba(214,180,93,0.38);
      border-radius: 999px;
    }
    .ring.r1 { width: 150px; height: 150px; }
    .ring.r2 { width: 260px; height: 260px; opacity: .72; }
    .ring.r3 { width: 380px; height: 380px; opacity: .45; }

    .core {
      position: absolute;
      left: 50%; top: 50%;
      transform: translate(-50%,-50%);
      width: 138px; height: 138px;
      border-radius: 32px;
      display: grid;
      place-items: center;
      text-align: center;
      color: var(--white);
      text-shadow: 0 1px 2px rgba(0,0,0,0.35);
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      box-shadow: 0 0 70px rgba(214,180,93,0.32);
      font-weight: 900;
      letter-spacing: -0.02em;
      z-index: 5;
      padding: 12px;
    }

    .node {
      position: absolute;
      width: 142px;
      min-height: 62px;
      padding: 11px 13px;
      border-radius: 18px;
      background: rgba(8,8,10,0.8);
      border: 1px solid rgba(214,180,93,0.35);
      box-shadow: 0 14px 40px rgba(0,0,0,0.32);
      font-size: 13px;
      color: var(--soft);
    }
    .node b { display:block; color: var(--white); margin-bottom: 3px; }
    .node.n1 { top: 30px; left: 50%; transform: translateX(-50%); }
    .node.n2 { top: 128px; right: 22px; }
    .node.n3 { bottom: 75px; right: 34px; }
    .node.n4 { bottom: 38px; left: 50%; transform: translateX(-50%); }
    .node.n5 { bottom: 78px; left: 28px; }
    .node.n6 { top: 128px; left: 22px; }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 13px 19px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid var(--line);
      transition: transform .2s ease, background .2s ease, border .2s ease;
    }
    .btn:hover { transform: translateY(-2px); text-decoration: none; }
    .btn.primary { color: var(--white); text-shadow: 0 1px 2px rgba(0,0,0,0.35); background: linear-gradient(135deg, var(--gold2), var(--gold)); }
    .btn.secondary { color: var(--white); background: rgba(255,255,255,0.055); }

    .grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
    .grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

    .card {
      border: 1px solid rgba(214,180,93,0.25);
      background: var(--card);
      border-radius: 24px;
      padding: 25px;
      box-shadow: 0 18px 54px rgba(0,0,0,0.23);
      position: relative;
      overflow: hidden;
    }

    .card::after {
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:1px;
      background: linear-gradient(90deg, transparent, rgba(214,180,93,0.55), transparent);
      opacity:.8;
    }

    .card p, .card li { color: var(--soft); }
    .card p:last-child { margin-bottom: 0; }

    .metric-row {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .metric {
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.055);
      border-radius: 20px;
      padding: 18px;
    }
    .metric strong { display: block; font-size: 27px; color: var(--gold2); line-height:1.05; }
    .metric span { color: var(--soft); font-size: 13px; display: block; margin-top: 6px; }

    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(214,180,93,0.45), transparent);
      margin: 18px 0 34px;
    }

    .workflow {
      counter-reset: step;
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      align-items: start;
      border: 1px solid rgba(255,255,255,0.11);
      background: rgba(255,255,255,0.045);
      border-radius: 22px;
      padding: 18px;
    }

    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 46px; height: 46px;
      border-radius: 14px;
      display: grid; place-items: center;
      background: linear-gradient(135deg, var(--gold2), var(--gold));
      color: var(--white);
      text-shadow: 0 1px 2px rgba(0,0,0,0.35);
      font-weight: 900;
      box-shadow: 0 12px 30px rgba(214,180,93,0.22);
    }

    .step h3 { margin-bottom: 6px; }
    .step p { margin: 0; color: var(--soft); }

    .status-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }
    .status {
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 22px;
      padding: 22px;
      background: rgba(255,255,255,0.05);
    }
    .dot {
      width: 15px; height: 15px;
      border-radius: 50%;
      display: inline-block;
      margin-right: 8px;
      vertical-align: -2px;
    }
    .dot.green { background: var(--green); box-shadow: 0 0 18px rgba(110,231,168,.5); }
    .dot.yellow { background: var(--yellow); box-shadow: 0 0 18px rgba(255,224,130,.5); }
    .dot.red { background: var(--red); box-shadow: 0 0 18px rgba(255,138,138,.5); }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 11px;
    }
    .feature-list li {
      position: relative;
      padding-left: 27px;
    }
    .feature-list li::before {
      content: "→";
      position: absolute;
      left: 0;
      color: var(--gold2);
      font-weight: 900;
    }

    .callout {
      border: 1px solid rgba(214,180,93,0.38);
      background:
        radial-gradient(circle at top left, rgba(214,180,93,0.16), transparent 28%),
        rgba(214,180,93,0.07);
      border-radius: 28px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .table-wrap { overflow-x: auto; border-radius: 22px; border: 1px solid rgba(255,255,255,0.11); }
    table { width: 100%; border-collapse: collapse; min-width: 740px; background: rgba(255,255,255,0.04); }
    th, td { padding: 17px 18px; text-align: left; border-bottom: 1px solid rgba(255,255,255,0.08); vertical-align: top; }
    th { color: var(--gold2); font-size: 13px; text-transform: uppercase; letter-spacing: .06em; background: rgba(214,180,93,0.06); }
    td { color: var(--soft); }
    tr:last-child td { border-bottom: 0; }

    .faq details {
      border: 1px solid rgba(255,255,255,0.12);
      background: rgba(255,255,255,0.045);
      border-radius: 20px;
      padding: 18px 20px;
      margin-bottom: 14px;
    }
    .faq summary {
      cursor: pointer;
      color: var(--white);
      font-weight: 800;
      font-size: 18px;
    }
    .faq p { color: var(--soft); margin-bottom: 0; }

    .footer-note {
      color: var(--muted);
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,0.10);
      padding-top: 24px;
      margin-top: 34px;
    }

    .sr-only {
      position: absolute;
      width: 1px; height: 1px;
      padding: 0; margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 980px) {
      .hero { min-height: unset; padding-top: 60px; }
      .hero-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
      .metric-row, .status-strip { grid-template-columns: 1fr; }
      .network-visual { min-height: 420px; }
      .node { width: 128px; font-size: 12px; }
    }

    @media (max-width: 560px) {
      .container { padding: 0 16px; }
      .section { padding: 58px 0; }
      .hero-actions { flex-direction: column; }
      .btn { width: 100%; }
      .network-visual { min-height: 500px; }
      .node.n1 { top: 18px; }
      .node.n2 { top: 105px; right: 10px; }
      .node.n3 { bottom: 115px; right: 10px; }
      .node.n4 { bottom: 18px; }
      .node.n5 { bottom: 115px; left: 10px; }
      .node.n6 { top: 105px; left: 10px; }
      .core { width: 120px; height: 120px; font-size: 14px; }
      .step { grid-template-columns: 1fr; }
    }

    /* =========================================================
       FINAL FONT COLOR FIX — DO NOT CHANGE DESIGN
       Forces HSI status and provider-summary text to white/gold
       so no browser or site wrapper renders these sections black.
       ========================================================= */
    .status p,
    .status h3,
    #hsi .status p,
    #hsi .status h3,
    #provider-access .callout p,
    #provider-access .callout strong,
    #provider-access .callout em,
    #provider-access .callout .muted {
      color: var(--white) !important;
    }

    #hsi .status h3,
    #provider-access .callout h3 {
      color: var(--gold2) !important;
    }

    #provider-access .callout .muted,
    #provider-access .callout .muted em {
      color: var(--white) !important;
    }

  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_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_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_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;
}
}
#MediaPlayer1
{
   box-sizing: border-box;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   border: 0px solid #DEE2E6;
   border-radius: 0px;
}
#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%;
}
