:root {
  --blue: #192964;
  --blue-2: #22307a;
  --cyan: #04aaea;
  --cyan-d: #0394cc;
  --gray: #f4f6fb;
  --ink: #212529;
  --muted: #5c6473;
  --line: #e8ebf3;
  --grad-cyan: linear-gradient(135deg, #04aaea, #3fc6ff);
  --grad-navy: linear-gradient(135deg, #192964, #28368a);
  --shadow-sm: 0 10px 30px rgba(25, 41, 100, .08);
  --shadow-md: 0 22px 50px rgba(25, 41, 100, .16);
  --shadow-lg: 0 34px 80px rgba(25, 41, 100, .22);
  --r: 14px;
  --r-lg: 20px;
}

/* Scope reset to the menu so it doesn't fight the WP theme's global styles.
   If you actually want the original global reset, move these onto * instead. */
.hdr *,
.drawer *,
.scrim * {
  box-sizing: border-box
}

.hdr a {
  text-decoration: none;
  color: inherit
}

.hdr img,
.hdr svg,
.drawer img,
.drawer svg {
  max-width: 100%;
  display: block
}

.wrap {
  width: min(1200px, 94%);
  margin-inline: auto
}

.hdr :focus-visible,
.drawer :focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 6px
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  padding: 11px 20px;
  border-radius: 100px;
  transition: .25s;
  line-height: 1
}

.btn i {
  transition: transform .25s
}

.btn:hover i {
  transform: translateX(3px)
}

.btn-cyan {
  background: var(--cyan);
  color: #fff !important;
  box-shadow: 0 8px 20px rgba(4, 170, 234, .32)
}

.btn-cyan:hover {
  background: var(--cyan-d);
  transform: translateY(-2px)
}

/* ============ HEADER ============ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s
}

.hdr.scrolled {
  box-shadow: var(--shadow-sm)
}

.bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 21px;
  color: var(--blue);
  flex-shrink: 0
}

.brand .spark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--blue);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 17px
}

.brand b {
  color: var(--cyan)
}

.bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 27px;
  color: var(--blue);
  cursor: pointer;
  line-height: 1
}

/* desktop nav */
header .nav {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  height: 72px;
  margin: 0;
  padding: 0
}

header .nav>li {
  height: 100%;
  display: flex;
  align-items: center
}

header .nav>li.dd {
  position: relative
}

/* dropdowns anchor to their own item */
/* header .nav>li>a {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--blue);
  position: relative;
  transition: color .2s;
  white-space: nowrap
} */
header .nav > li > a {
	display: flex;
	align-items: center;
	gap: 5px;
	height: 100%;
	padding: 0 6px;
	font-size: 14.5px;
	font-weight: 600;
	color: var(--blue);
	position: relative;
	transition: color .2s;
	white-space: nowrap;
}

header .nav>li>a .chev {
  font-size: 12px;
  color: var(--muted);
  transition: .25s
}

header .nav>li>a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 2.5px;
  background: var(--grad-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
  border-radius: 2px
}

header .nav>li.has-panel:hover>a,
header .nav>li.has-panel:focus-within>a,
header .nav>li>a:hover {
  color: var(--cyan)
}

header .nav>li.has-panel:hover>a::after,
header .nav>li.has-panel:focus-within>a::after {
  transform: scaleX(1)
}

header .nav>li.has-panel:hover>a .chev,
header .nav>li.has-panel:focus-within>a .chev {
  transform: rotate(180deg);
  color: var(--cyan)
}

header .nav .pill {
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  background: var(--grad-cyan);
  padding: 2px 7px;
  border-radius: 100px;
  letter-spacing: .04em
}

@media(max-width:1330px) {
  header .nav>li>a {
    padding: 0 10px;
    font-size: 13.5px
  }
}

/* ============ PANELS ============ */
.panel {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  width: min(1160px, 96vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px 22px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .26s cubic-bezier(.2, .7, .2, 1), transform .26s cubic-bezier(.2, .7, .2, 1), visibility 0s .26s;
  z-index: 120
}

.panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 16px
}

/* hover bridge */
.has-panel:hover .panel,
.has-panel:focus-within .panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity .26s cubic-bezier(.2, .7, .2, 1), transform .26s cubic-bezier(.2, .7, .2, 1)
}

/* dropdown panels: anchored under their item */
.panel.dropdown {
  top: 100%;
  width: min(560px, 92vw);
  padding: 14px
}

.panel.dropdown.edge-r {
  left: auto;
  right: 0;
  transform: translateX(0) translateY(12px)
}

.has-panel:hover .panel.dropdown.edge-r,
.has-panel:focus-within .panel.dropdown.edge-r {
  transform: translateX(0) translateY(0)
}

/* mega layout: 4 link columns + side rail */
.panel-inner {
  display: grid;
  grid-template-columns: 1fr 262px;
  gap: 20px;
  align-items: start
}

.mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px
}

.col-group {
  padding: 6px
}

.col-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line)
}

.col-head .gi {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--grad-navy);
  font-size: 15px;
  flex-shrink: 0
}

.col-head h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin: 0
}

.col-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 0;
  padding: 0
}

.col-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 9px;
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 500;
  transition: .18s
}

.col-list a .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  opacity: 0;
  transition: .18s;
  flex-shrink: 0
}

.col-list a:hover {
  background: var(--gray);
  color: var(--blue);
  padding-left: 12px
}

.col-list a:hover .dot {
  opacity: 1
}

.new {
  font-size: 9px;
  font-weight: 800;
  color: var(--cyan);
  border: 1px solid rgba(4, 170, 234, .4);
  border-radius: 100px;
  padding: 1px 6px;
  margin-left: auto;
  letter-spacing: .05em;
  flex-shrink: 0
}

/* side rail */
.rail {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.rail-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 2px 2px 0
}

.rail-head .gi {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--grad-cyan);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px
}

.rail-head h4 {
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .02em;
  margin: 0
}

.rail-more {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px
}

.rail-more:hover {
  gap: 8px
}

/* promo card (SVG art) */
.promo {
  background: var(--grad-navy);
  border-radius: var(--r);
  padding: 14px;
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.promo::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 170, 234, .35), transparent 70%);
  top: -70px;
  right: -50px
}

.promo .art {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 120/64;
  position: relative
}

.promo .art svg {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.promo h5 {
  font-size: 15px;
  position: relative;
  margin: 0
}

.promo p {
  font-size: 12px;
  color: #bcc6e6;
  position: relative;
  margin: 0
}

.promo .btn {
  position: relative;
  width: 100%;
  font-size: 12.5px;
  padding: 9px
}

.promo .trust {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: #9fb1e8
}

.promo .trust .stars {
  color: #ffc940;
  letter-spacing: 1px;
  font-size: 11px
}

/* featured mini cards (SVG) */
.feat-mini {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px;
  transition: .22s;
  box-shadow: 0 1px 0 rgba(25, 41, 100, .03)
}

.feat-mini:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(4, 170, 234, .45)
}

.feat-mini .thumb {
  width: 78px;
  aspect-ratio: 120/76;
  border-radius: 9px;
  overflow: hidden;
  flex-shrink: 0
}

.feat-mini .thumb svg {
  width: 100%;
  height: 100%
}

.feat-mini b {
  display: block;
  font-size: 13px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.25
}

.feat-mini .ft {
  display: inline-block;
  margin-top: 4px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--cyan);
  background: rgba(4, 170, 234, .1);
  padding: 2px 7px;
  border-radius: 100px
}

.feat-mini .go {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  transition: .2s;
  flex-shrink: 0
}

.feat-mini:hover .go {
  color: var(--cyan);
  transform: translateX(2px)
}

.panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted)
}

.panel-foot .stats {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

.panel-foot .stats span {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.panel-foot .stats i {
  color: var(--cyan)
}

.panel-foot>a {
  color: var(--cyan);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap
}

.panel-foot>a:hover {
  gap: 9px
}

/* dropdown simple list */
.drop-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin: 0;
  padding: 0
}

.drop-list a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px;
  border-radius: 11px;
  transition: .18s
}

.drop-list a:hover {
  background: var(--gray)
}

.drop-list a .di {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--gray);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: .2s
}

.drop-list a:hover .di {
  background: var(--cyan);
  color: #fff
}

.drop-list a b {
  display: block;
  font-size: 13.5px;
  color: var(--blue);
  font-weight: 700
}

.drop-list a span {
  font-size: 11.5px;
  color: var(--muted)
}

/* sectioned dropdown (Company + Resources) */
.panel.dropdown.wide {
  width: min(660px, 94vw);
  padding: 18px
}

.dd-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px
}

.dd-col .col-head {
  margin-bottom: 6px
}

.drop-list.one {
  grid-template-columns: 1fr
}

/* ============ MOBILE DRAWER ============ */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 55, .5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 190
}

.scrim.show {
  opacity: 1;
  visibility: visible
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(430px, 92vw);
  background: #fff;
  z-index: 200;
  transform: translateX(105%);
  transition: transform .35s cubic-bezier(.2, .7, .2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg)
}

.drawer.open {
  transform: none
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0
}

.drawer-top .x {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--blue);
  cursor: pointer
}

.drawer-body {
  overflow-y: auto;
  flex: 1;
  padding: 12px 12px 18px;
  overscroll-behavior: contain
}

.drawer-foot {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-shrink: 0;
  background: #fff
}

.drawer-foot .callrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted)
}

.drawer-foot .callrow a {
  color: var(--blue);
  font-weight: 700
}

/* drawer search */
.m-search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 13px;
  margin: 2px 2px 10px
}

.m-search i {
  color: var(--muted);
  font-size: 15px
}

.m-search input {
  border: none;
  background: none;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  width: 100%
}

.m-search input::placeholder {
  color: #9aa3b5
}

/* drawer quick tiles (2-up) */
.qt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 0 2px 12px
}

.qt {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: var(--grad-navy);
  border-radius: 13px;
  padding: 12px;
  color: #fff;
  transition: .2s
}

.qt:active {
  transform: scale(.97)
}

.qt::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 170, 234, .35), transparent 70%);
  top: -35px;
  right: -25px
}

.qt.alt {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--blue)
}

.qt.alt::after {
  background: radial-gradient(circle, rgba(4, 170, 234, .12), transparent 70%)
}

.qt .qi {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--grad-cyan);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 15px;
  position: relative
}

.qt b {
  font-size: 13px;
  font-weight: 800;
  position: relative;
  line-height: 1.2
}

.qt small {
  font-size: 10.5px;
  opacity: .75;
  position: relative
}

/* accordion level 1 */
.acc {
  border-bottom: 1px solid var(--line)
}

.acc:last-child {
  border-bottom: none
}

.acc-h {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  text-align: left
}

.acc-h .ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: .2s
}

.acc-h.open .ico {
  background: var(--cyan);
  color: #fff
}

.acc-h .ch {
  margin-left: auto;
  font-size: 13px;
  color: var(--muted);
  transition: .3s
}

.acc-h.open .ch {
  transform: rotate(180deg);
  color: var(--cyan)
}

.acc-c {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

.acc-inner {
  padding: 2px 4px 12px 8px
}

.acc-h .pill {
  font-size: 8.5px;
  font-weight: 800;
  color: #fff;
  background: var(--grad-cyan);
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 6px
}

/* accordion level 2 */
.grp {
  border-left: 2px solid var(--line);
  margin-left: 12px;
  padding-left: 6px;
  margin-bottom: 2px
}

.grp-h {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 8px;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .03em;
  cursor: pointer;
  text-align: left
}

.grp-h .gi {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--grad-navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  flex-shrink: 0
}

.grp-h .ch {
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
  transition: .3s
}

.grp-h.open .ch {
  transform: rotate(180deg);
  color: var(--cyan)
}

.grp-c {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease
}

/* two-column chip lists */
.grp-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 2px 2px 10px;
  margin: 0
}

.grp-list a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 9px 10px;
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 600;
  border-radius: 10px;
  background: var(--gray);
  min-height: 38px
}

.grp-list a:active {
  background: #e6ecf7
}

.grp-list .new {
  margin-left: auto;
  font-size: 8px;
  padding: 1px 5px;
  margin-top: 1px
}

@media(max-width:399px) {
  .grp-list {
    grid-template-columns: 1fr
  }
}

/* drawer dropdown sections: 2-up icon cards */
.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
  padding: 4px 2px 12px
}

.mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--gray);
  border-radius: 12px;
  padding: 11px
}

.mini:active {
  background: #e6ecf7
}

.mini .mi {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 15px;
  box-shadow: 0 1px 3px rgba(25, 41, 100, .08)
}

.mini b {
  font-size: 12.5px;
  color: var(--blue);
  font-weight: 800;
  line-height: 1.25
}

.mini span {
  font-size: 10.5px;
  color: var(--muted);
  line-height: 1.3
}

/* drawer featured SVG cards: 2-up */
.mfeat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px 2px 12px
}

.mfeat {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 120/76
}

.mfeat svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%
}

.mfeat .ml {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 9px 7px;
  font-size: 11.5px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(to top, rgba(10, 16, 42, .85), transparent);
  line-height: 1.2
}

.mfeat .mt {
  position: absolute;
  top: 7px;
  left: 7px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
  background: rgba(4, 170, 234, .92);
  padding: 2px 7px;
  border-radius: 100px
}

.mfeat:active {
  opacity: .85
}

.simple-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  border-bottom: 1px solid var(--line)
}

.simple-link .ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--gray);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 15px
}

@media(max-width:1440px) {
  header .nav>li>a {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 100%;
    padding: 0 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--blue);
    position: relative;
    transition: color .2s;
    white-space: nowrap
  }
}

@media(max-width:1080px) {
  header .nav {
    display: none
  }

  .burger {
    display: block
  }

  .bar-right .btn {
    display: none
  }
}

@media(min-width:1081px) {

  .drawer,
  .scrim {
    display: none
  }
}

@media(prefers-reduced-motion:reduce) {

  .hdr *,
  .hdr *::before,
  .hdr *::after,
  .drawer *,
  .drawer *::before,
  .drawer *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important
  }
}