/* HEADER */
:root {
  --ab-blue: #3775d6;
  --ab-blue-2: #1c56b7;
  --ab-cyan: #35e5ff;
  --ab-green: #78ffba;
  --ab-ink: #07101e;
  --ab-card: #ffffff;
  --ab-line: rgba(7, 16, 30, .12);
  --ab-shadow-soft: 0 14px 44px rgba(7, 16, 30, .12);
  --ab-max: 1240px;
  --ab-header-h: 68px;
  --ab-page-offset: var(--ab-header-h);
  --ab-header-bg: linear-gradient(90deg, #356fca, #427fd8 46%, #1d55ad);
  --ab-header-text: #ffffff;
  --ab-menu-bg: rgba(255, 255, 255, .995);
  --ab-menu-text: #101828;
  --ab-menu-muted: rgba(16, 24, 40, .58);
}

html[data-ab-theme="dark"] {
  --ab-header-bg: linear-gradient(90deg, #07101e, #0d2b5d 48%, #07101e);
  --ab-header-text: #ffffff;
  --ab-menu-bg: rgba(8, 14, 26, .995);
  --ab-menu-text: #f7faff;
  --ab-menu-muted: rgba(247, 250, 255, .62);
}

html[data-ab-theme="light"] {
  --ab-header-bg: linear-gradient(90deg, #2c6cc4, #397eda 46%, #174ea6);
  --ab-header-text: #ffffff;
  --ab-menu-bg: rgba(232, 239, 248, .965);
  --ab-menu-text: #07111f;
  --ab-menu-muted: #526176;
}

body.ab-lock {
  overflow: hidden;
}

.ab-wrap {
  width: min(var(--ab-max), calc(100% - 40px));
  margin: 0 auto;
}

.ab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(7, 16, 30, .14);
  background: #fff;
  color: var(--ab-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  white-space: nowrap;
}

.ab-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--ab-shadow-soft);
  border-color: rgba(7, 16, 30, .22);
}

.ab-btn.dark {
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.ab-btn.dark:hover {
  background: rgba(255, 255, 255, .16);
}

.ab-btn.primary {
  border-color: transparent;
  color: #021222;
  background: linear-gradient(135deg, var(--ab-cyan), var(--ab-green));
  box-shadow: 0 16px 38px rgba(53, 229, 255, .22);
}

.ab-btn.blue {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--ab-blue), var(--ab-blue-2));
  box-shadow: 0 16px 38px rgba(55, 117, 214, .28);
}

.ab-header {
  position: sticky;
  top: 0;
  z-index: 9000;
  height: var(--ab-header-h);
  background: linear-gradient(90deg, var(--ab-blue), #3f7fdc 44%, var(--ab-blue-2));
  color: #fff;
  box-shadow: 0 12px 35px rgba(7, 16, 30, .18);
}

.ab-header-inner {
  height: var(--ab-header-h);
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 18px;
}

.ab-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.ab-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, .95) 0 12%, transparent 13%),
    linear-gradient(135deg, #ffffff, rgba(255, 255, 255, .28));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .48), 0 8px 26px rgba(0, 0, 0, .18);
  flex: 0 0 auto;
}

.ab-brand strong {
  font-size: 16px;
  letter-spacing: -.03em;
  font-weight: 900;
}

.ab-main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.ab-nav-link {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .92);
  height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -.01em;
  transition: background .18s ease, color .18s ease;
}

.ab-nav-link:hover,
.ab-nav-link[aria-expanded="true"] {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.ab-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.ab-header-actions .ab-btn {
  min-height: 38px;
  padding-inline: 14px;
  font-size: 12px;
}

.ab-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  cursor: pointer;
}

.ab-menu-button svg {
  display: block;
  margin: auto;
}

/* Solid desktop mega shelf. This replaces the transparent pop-down. */
.ab-scrim {
  position: fixed;
  inset: var(--ab-header-h) 0 0;
  z-index: 8990;
  background: rgba(7, 16, 30, .32);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.ab-scrim.active {
  opacity: 1;
  pointer-events: auto;
}

.ab-mega-shelf {
  position: fixed;
  top: var(--ab-header-h);
  left: 0;
  right: 0;
  z-index: 8995;
  color: var(--ab-ink);
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(7, 16, 30, .12);
  box-shadow: 0 30px 80px rgba(7, 16, 30, .22);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.ab-mega-shelf.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ab-mega-inner {
  width: min(var(--ab-max), calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 26px;
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 18px;
  align-items: start;
}

.ab-mega-column {
  min-width: 0;
  border-radius: 18px;
  padding: 14px 12px;
  transition: background .18s ease;
}

.ab-mega-column.is-highlighted {
  background: rgba(55, 117, 214, .08);
  box-shadow: inset 0 0 0 1px rgba(55, 117, 214, .12);
}

.ab-mega-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: -.02em;
  margin: 0 0 10px;
}

.ab-mega-title svg {
  width: 18px;
  height: 18px;
  color: var(--ab-blue);
  flex: 0 0 auto;
}

.ab-mega-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #172033;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
  padding: 6px 0;
  border-radius: 10px;
}

.ab-mega-column a:hover {
  color: var(--ab-blue-2);
}

.ab-mega-column a span {
  color: rgba(23, 32, 51, .48);
  font-size: 11px;
  font-weight: 900;
}

.ab-mega-feature {
  grid-column: span 2;
  min-height: 168px;
  border-radius: 24px;
  padding: 20px;
  background:
    radial-gradient(circle at 80% 20%, rgba(53, 229, 255, .24), transparent 34%),
    linear-gradient(135deg, #0a1428, #152746);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ab-shadow-soft);
}

.ab-mega-feature::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -76px;
  bottom: -88px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .22);
  background: repeating-conic-gradient(from 0deg, rgba(255, 255, 255, .16) 0 8deg, transparent 8deg 20deg);
  opacity: .5;
}

.ab-mega-feature b {
  display: block;
  position: relative;
  z-index: 1;
  font-size: 20px;
  letter-spacing: -.04em;
  margin: 0 0 8px;
}

.ab-mega-feature p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  line-height: 1.55;
  max-width: 280px;
}

.ab-mega-mini-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ab-mega-mini-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 800;
}

/* Mobile drawer */
.ab-mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(420px, 92vw);
  z-index: 10050;
  background: #fff;
  color: var(--ab-ink);
  box-shadow: -30px 0 90px rgba(7, 16, 30, .28);
  transform: translateX(110%);
  transition: transform .26s ease;
  overflow-y: auto;
  padding: 18px;
}

.ab-mobile-panel.active {
  transform: translateX(0);
}

.ab-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.ab-mobile-top strong {
  font-size: 18px;
  letter-spacing: -.04em;
}

.ab-close-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--ab-line);
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.ab-mobile-group {
  border: 1px solid var(--ab-line);
  border-radius: 20px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}

.ab-mobile-group summary {
  cursor: pointer;
  padding: 16px;
  font-weight: 900;
  list-style: none;
}

.ab-mobile-group summary::-webkit-details-marker {
  display: none;
}

.ab-mobile-links {
  display: grid;
  gap: 0;
  padding: 0 16px 14px;
}

.ab-mobile-links a {
  padding: 10px 0;
  text-decoration: none;
  color: #1d2a3f;
  border-top: 1px solid rgba(7, 16, 30, .08);
  font-weight: 650;
  font-size: 14px;
}

.ab-mobile-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

/* Header responsive */
@media (max-width: 1160px) {
  .ab-header-inner {
    grid-template-columns: 190px 1fr auto;
  }

  .ab-nav-link {
    padding-inline: 10px;
    font-size: 12px;
  }

  .ab-header-actions .ab-btn:not(.blue) {
    display: none;
  }

  .ab-mega-inner {
    grid-template-columns: repeat(4, minmax(150px, 1fr));
    max-height: calc(100svh - var(--ab-header-h) - 20px);
    overflow-y: auto;
  }

  .ab-mega-feature {
    grid-column: span 4;
  }
}

@media (max-width: 980px) {
  :root {
    --ab-header-h: 64px;
    --ab-page-offset: var(--ab-header-h);
  }

  .ab-header-inner {
    grid-template-columns: 1fr auto;
  }

  .ab-main-nav,
  .ab-header-actions {
    display: none;
  }

  .ab-menu-button {
    display: inline-grid;
    place-items: center;
  }

  .ab-mega-shelf,
  .ab-scrim {
    display: none;
  }
}

@media (max-width: 460px) {
  .ab-brand strong {
    font-size: 14px;
  }

  .ab-brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }
}

/* Theme switcher and navigation theme overrides */
.ab-header {
  background: var(--ab-header-bg);
  color: var(--ab-header-text);
}

.ab-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .14);
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
  white-space: nowrap;
}

.ab-theme-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .22);
}

.ab-theme-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-block;
  background:
    radial-gradient(circle at 35% 35%, #fff 0 22%, transparent 23%),
    linear-gradient(135deg, var(--ab-cyan), var(--ab-green));
  box-shadow: 0 0 18px rgba(84, 232, 255, .38);
}

.ab-theme-toggle-mobile {
  width: 100%;
  color: var(--ab-menu-text);
  background: rgba(55, 117, 214, .08);
  border: 1px solid var(--ab-line);
}

html[data-ab-theme="dark"] .ab-theme-toggle-mobile {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.ab-mega-shelf {
  background: var(--ab-menu-bg);
  color: var(--ab-menu-text);
  border-bottom-color: var(--ab-line);
}

.ab-mega-column a,
.ab-mobile-links a {
  color: var(--ab-menu-text);
}

.ab-mega-column a span {
  color: var(--ab-menu-muted);
}

.ab-mobile-panel,
.ab-mobile-group,
.ab-close-btn {
  background: var(--ab-card);
  color: var(--ab-ink);
  border-color: var(--ab-line);
}

.ab-mobile-links a {
  border-top-color: var(--ab-line);
}

html[data-ab-theme="dark"] .ab-scrim {
  background: rgba(0, 0, 0, .56);
}

html[data-ab-theme="light"] .ab-scrim {
  background: rgba(7, 16, 30, .32);
}

html[data-ab-theme="dark"] .ab-mega-column.is-highlighted {
  background: rgba(110, 162, 255, .13);
  box-shadow: inset 0 0 0 1px rgba(110, 162, 255, .18);
}

html[data-ab-theme="dark"] .ab-mega-feature {
  background:
    radial-gradient(circle at 80% 20%, rgba(84, 232, 255, .20), transparent 34%),
    linear-gradient(135deg, #0b1324, #142544);
}

html[data-ab-theme="dark"] .ab-mobile-panel {
  box-shadow: -30px 0 90px rgba(0, 0, 0, .44);
}

@media (max-width: 1160px) {
  .ab-theme-toggle .ab-theme-label {
    display: none;
  }

  .ab-theme-toggle {
    width: 38px;
    padding: 0;
  }
}

@media (max-width: 980px) {
  .ab-mobile-panel .ab-theme-toggle {
    display: inline-flex;
  }
}

@media (max-width: 460px) {
  .ab-theme-toggle-mobile {
    width: 100%;
  }
}

.ab-nav-link,
.ab-mega-title,
.ab-mega-column a,
.ab-mobile-group summary,
.ab-mobile-links a {
  font-size: 14px;
  line-height: 1.35;
}

.ab-mega-column a span,
.ab-theme-toggle {
  font-size: 12.5px;
  line-height: 1.45;
}

.ab-mega-column a {
  padding: 7px 0;
  min-height: 30px;
}

/* Extracted theme/layout rules from Home.css */
.ab-mobile-panel,
.ab-mobile-group,
.ab-close-btn {
  background: var(--ab-card);
  color: var(--ab-ink);
  border-color: var(--ab-line);
}

.ab-mobile-links a {
  border-top-color: var(--ab-line);
}

html[data-ab-theme="light"] .ab-mobile-links a {
  color: #48566b;
}

html[data-ab-theme="light"] .ab-mobile-panel,
html[data-ab-theme="light"] .ab-mobile-group {
  color: #07101e;
  background: #ffffff;
  border-color: rgba(7, 16, 30, .12);
}

html[data-ab-theme="light"] .ab-close-btn {
  color: #07101e;
  background: #ffffff;
  border-color: rgba(7, 16, 30, .16);
}

html[data-ab-theme="light"] .ab-mega-shelf,
html[data-ab-theme="light"] .ab-mobile-panel {
  background: rgba(255, 255, 255, .985);
  color: #07101e;
}

html[data-ab-theme="light"] .ab-mega-feature {
  color: #ffffff;
}

html[data-ab-theme="light"] .ab-mega-feature p {
  color: rgba(255, 255, 255, .76);
}

.ab-mega-shelf,
.ab-mobile-panel {
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.ab-mobile-group {
  position: relative;
}

.ab-mobile-group::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, var(--ab-glass-highlight), transparent 32%, transparent 68%, rgba(255, 255, 255, .08));
  opacity: .34;
  mask-image: linear-gradient(180deg, #000, transparent 70%);
}

@media (hover:hover) and (pointer:fine) {
  .ab-mega-column a:hover {
    transform: translateY(-4px) scale(1.005);
  }
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) {
  color: var(--ab-light-text) !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) :is(h1, h2, h3, h4, h5, h6, b, strong, summary, label) {
  color: var(--ab-light-heading) !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) :is(p, li, small) {
  color: var(--ab-light-muted) !important;
}

html[data-ab-theme="light"] :is(.ab-mega-column a span, .ab-mobile-links a) {
  color: var(--ab-light-muted) !important;
}

html[data-ab-theme="light"] :is(.ab-mega-column a, .ab-mobile-links a) {
  color: #132033 !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) {
  background-color: var(--ab-light-card) !important;
  border-color: var(--ab-light-border) !important;
  box-shadow: 0 18px 54px rgba(7, 16, 30, .11) !important;
}

html[data-ab-theme="light"] :is(.ab-header, .ab-mega-feature) {
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-header, .ab-mega-feature) :is(h1, h2, h3, h4, h5, h6, b, strong, summary, label, a) {
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-mega-feature p) {
  color: rgba(255, 255, 255, .78) !important;
}

html[data-ab-theme="light"] .ab-brand,
html[data-ab-theme="light"] .ab-nav-link,
html[data-ab-theme="light"] .ab-menu-button,
html[data-ab-theme="light"] .ab-theme-toggle {
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-close-btn) {
  color: #07101e !important;
  background: #ffffff !important;
  border-color: rgba(7, 16, 30, .18) !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-group)::before {
  opacity: .16 !important;
  z-index: 0 !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-group)>* {
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  html[data-ab-theme="light"] :is(.ab-mobile-links a, .ab-mobile-group summary) {
    font-size: 15px !important;
  }
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) {
  color: var(--ab-ink) !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .46), rgba(235, 242, 250, .72) 48%, rgba(225, 235, 247, .76)) !important;
  border: 1px solid var(--ab-glass-stroke) !important;
  box-shadow: var(--ab-glass-shadow) !important;
  backdrop-filter: blur(22px) saturate(1.18) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.18) !important;
}

html[data-ab-theme="light"] .ab-mega-shelf,
html[data-ab-theme="light"] .ab-mobile-panel {
  background:
    linear-gradient(180deg, rgba(238, 245, 252, .97), rgba(226, 236, 248, .965)) !important;
  color: var(--ab-ink) !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) :is(h1, h2, h3, h4, h5, h6, b, strong, summary, label, a) {
  color: #07111f !important;
  text-shadow: none !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) :is(p, li, small, span) {
  color: #45546a !important;
  text-shadow: none !important;
}

html[data-ab-theme="light"] .ab-mega-column a,
html[data-ab-theme="light"] .ab-mobile-links a {
  color: #111b2c !important;
}

html[data-ab-theme="light"] .ab-mega-column a span,
html[data-ab-theme="light"] .ab-mobile-links a span {
  color: #45546a !important;
}

html[data-ab-theme="light"] :is(.ab-header, .ab-mega-feature) {
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-header, .ab-mega-feature) :is(h1, h2, h3, h4, h5, h6, b, strong, summary, label, a) {
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-mega-feature p) {
  color: rgba(255, 255, 255, .82) !important;
}

html[data-ab-theme="light"] :is(.ab-mega-feature) :is(.ab-chip, .ab-small-link, .ab-resource-type) {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .13) !important;
  border-color: rgba(255, 255, 255, .20) !important;
}

html[data-ab-theme="light"] :is(.ab-close-btn) {
  color: #07111f !important;
  background: rgba(232, 240, 249, .92) !important;
  border-color: rgba(7, 16, 30, .18) !important;
}

html[data-ab-theme="light"] :is(.ab-mobile-group)::before {
  opacity: .11 !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, .42), transparent 34%, transparent 74%, rgba(255, 255, 255, .06)) !important;
}

.ab-nav-link,
.ab-mega-title,
.ab-mega-column a,
.ab-mobile-group summary,
.ab-mobile-links a {
  font-size: 14.2px !important;
  line-height: 1.38 !important;
}

@media (prefers-contrast: more) {
  html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) {
    background: #eef4fb !important;
    border-color: rgba(7, 16, 30, .32) !important;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  html[data-ab-theme="light"] :is(.ab-mobile-panel, .ab-mobile-group, .ab-mega-shelf) {
    background: #edf3fa !important;
  }
}

/* End extracted theme/layout rules */

/* Final theme overrides for the extracted header partial. */
html[data-ab-theme="light"] .ab-header {
  background: linear-gradient(90deg, #2c6cc4, #397eda 46%, #174ea6) !important;
  color: #ffffff !important;
}

html[data-ab-theme="dark"] .ab-header {
  background: linear-gradient(90deg, #07101e, #0d2b5d 48%, #07101e) !important;
  color: #ffffff !important;
}

html[data-ab-theme="light"] :is(.ab-brand, .ab-nav-link, .ab-menu-button, .ab-theme-toggle) {
  color: #ffffff !important;
}

html[data-ab-theme="dark"] :is(.ab-brand, .ab-nav-link, .ab-menu-button, .ab-theme-toggle) {
  color: #ffffff !important;
}

html[data-ab-theme="light"] .ab-mega-shelf,
html[data-ab-theme="light"] .ab-mobile-panel {
  color: #07111f !important;
  background: linear-gradient(180deg, rgba(238, 245, 252, .98), rgba(226, 236, 248, .97)) !important;
  border-color: rgba(7, 16, 30, .17) !important;
}

html[data-ab-theme="dark"] .ab-mega-shelf,
html[data-ab-theme="dark"] .ab-mobile-panel {
  color: #f7faff !important;
  background: linear-gradient(180deg, rgba(8, 14, 26, .99), rgba(11, 19, 36, .99)) !important;
  border-color: rgba(255, 255, 255, .15) !important;
}

html[data-ab-theme="light"] :is(.ab-mega-column a, .ab-mobile-links a) {
  color: #111b2c !important;
}

html[data-ab-theme="dark"] :is(.ab-mega-column a, .ab-mobile-links a) {
  color: #f7faff !important;
}

html[data-ab-theme="light"] :is(.ab-mega-column a span, .ab-mobile-links a span) {
  color: #526176 !important;
}

html[data-ab-theme="dark"] :is(.ab-mega-column a span, .ab-mobile-links a span) {
  color: rgba(247, 250, 255, .62) !important;
}

html[data-ab-theme="light"] .ab-close-btn {
  color: #07111f !important;
  background: rgba(232, 240, 249, .92) !important;
  border-color: rgba(7, 16, 30, .18) !important;
}

html[data-ab-theme="dark"] .ab-close-btn {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .16) !important;
}

/* FIX NAVI page leaking glass/light style into shared header */
.ab-header .ab-brand,
.ab-header .ab-brand strong,
.ab-header .ab-main-nav,
.ab-header .ab-nav-link {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.ab-header .ab-nav-link:hover,
.ab-header .ab-nav-link[aria-expanded="true"] {
  background: rgba(255, 255, 255, .16) !important;
}

.ab-mega-column a {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}