/* ABDflow site chrome — exact homepage header/footer system (clean rebuild) */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

:root {
  --black: #05070b;
  --white: #ffffff;
  --ink: #111827;
  --blue: #0668e0;
  --line: rgba(17, 24, 39, .12);
  --line-dark: rgba(255, 255, 255, .12);
  --header: 64px;
  --ease: cubic-bezier(.22, .75, .2, 1);
  --max: 1380px;
}

html.abd-has-chrome {
  scroll-padding-top: calc(var(--header) + 12px);
}

body.abd-has-chrome {
  --header: 64px;
  --header-h: 64px;
  font-family: "DM Sans", Manrope, system-ui, sans-serif;
  padding-top: 0 !important;
}
html.abd-has-chrome {
  scroll-padding-top: 18px !important;
}
html.abd-has-chrome.header-visible {
  scroll-padding-top: calc(var(--header) + 10px) !important;
}
/* Hero: no chrome offset — let the 5-grid bento control its own viewport fit */

:where(body.abd-has-chrome) a { color: inherit; text-decoration: none; }
:where(body.abd-has-chrome) button { font: inherit; color: inherit; }

/* Hard-cap icons ONLY inside shared chrome — never page content */
body.abd-has-chrome #header svg,
body.abd-has-chrome #header .lucide,
body.abd-has-chrome #megaShell svg,
body.abd-has-chrome #megaShell .lucide,
body.abd-has-chrome #megaScrim svg,
body.abd-has-chrome #mobileMenu svg,
body.abd-has-chrome #mobileMenu .lucide,
body.abd-has-chrome #searchModal svg,
body.abd-has-chrome #searchModal .lucide,
body.abd-has-chrome footer.footer[data-abd-chrome="1"] svg,
body.abd-has-chrome footer.footer[data-abd-chrome="1"] .lucide {
  max-width: 28px !important;
  max-height: 28px !important;
  flex: 0 0 auto;
  overflow: visible;
}

/* Kill every competing top/bottom chrome immediately */
body.abd-has-chrome > nav.shell,
body.abd-has-chrome > nav.top,
body.abd-has-chrome > .topbar,
body.abd-has-chrome > header.site-header:not([data-abd-chrome="1"]),
body.abd-has-chrome > header.auth-header,
body.abd-has-chrome > header.entry-header,
body.abd-has-chrome header.site-header:not([data-abd-chrome="1"]),
body.abd-has-chrome .auth-header,
body.abd-has-chrome .legal-nav,
body.abd-has-chrome > .mobile-panel,
body.abd-has-chrome > .mobile-menu:not([data-abd-chrome="1"]):not(#mobileMenu),
body.abd-has-chrome > footer.shell,
body.abd-has-chrome > footer.site-footer,
body.abd-has-chrome > footer.footer:not([data-abd-chrome="1"]),
body.abd-has-chrome > footer:not(.footer):not([data-abd-chrome="1"]) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* —— Buttons used in chrome only —— */
body.abd-has-chrome #header .btn,
body.abd-has-chrome #mobileMenu .btn,
body.abd-has-chrome #megaShell .btn,
body.abd-has-chrome #searchModal .btn {
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: .25s var(--ease);
}
body.abd-has-chrome #header .btn svg,
body.abd-has-chrome #header .btn .lucide,
body.abd-has-chrome #mobileMenu .btn svg,
body.abd-has-chrome #mobileMenu .btn .lucide,
body.abd-has-chrome #megaShell .btn svg,
body.abd-has-chrome #searchModal .btn svg {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.abd-has-chrome #header .btn-light,
body.abd-has-chrome #mobileMenu .btn-light { background: #fff; color: var(--black); }
body.abd-has-chrome #header .btn-dark,
body.abd-has-chrome #mobileMenu .btn-dark { background: var(--black); color: #fff; }

/* —— Header 2.1 — full-width editorial bar, scroll-revealed ——
   hidden at top → drops in as dark glass over the hero → condenses
   and deepens as you scroll. Light variant on light pages. */
body.abd-has-chrome .site-header[data-abd-chrome="1"],
body.abd-has-chrome #header[data-abd-chrome="1"] {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  transform: translateY(-110%) !important;
  width: 100% !important;
  height: 72px !important;
  z-index: 100200 !important;
  display: flex !important;
  align-items: center !important;
  color: #EAF3FF !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid transparent !important;
  background: rgba(2, 2, 8, .82) !important;
  backdrop-filter: blur(24px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(150%) !important;
  box-shadow: 0 18px 50px rgba(1, 5, 14, .45) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  will-change: transform, opacity;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, visibility 0s linear .6s, background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease !important;
}
body.abd-has-chrome .site-header[data-abd-chrome="1"].is-visible,
body.abd-has-chrome #header[data-abd-chrome="1"].is-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .45s ease, background .3s ease, border-color .3s ease, box-shadow .3s ease, height .3s ease !important;
}
body.abd-has-chrome .site-header[data-abd-chrome="1"].is-visible.scrolled,
body.abd-has-chrome #header[data-abd-chrome="1"].is-visible.scrolled,
body.abd-has-chrome .site-header[data-abd-chrome="1"].scrolled,
body.abd-has-chrome #header[data-abd-chrome="1"].scrolled {
  height: 60px !important;
  color: #0A1122 !important;
  background: rgba(2, 2, 8, .92) !important;
  border-bottom: 1px solid rgba(151, 196, 255, .14) !important;
  box-shadow: 0 20px 60px rgba(1, 5, 14, .55) !important;
}
/* staggered item entrance each time the bar reveals */
@keyframes hdItemIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
body.abd-has-chrome .site-header.is-visible .header-inner > * ,
body.abd-has-chrome #header.is-visible .header-inner > * {
  animation: hdItemIn .55s cubic-bezier(.3, 1.25, .4, 1) backwards;
}
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(1),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(1) { animation-delay: .05s; }
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(2),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(2) { animation-delay: .1s; }
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(3),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(3) { animation-delay: .15s; }
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(4),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(4) { animation-delay: .2s; }
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(5),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(5) { animation-delay: .25s; }
body.abd-has-chrome .site-header.is-visible .nav-links > :nth-child(6),
body.abd-has-chrome #header.is-visible .nav-links > :nth-child(6) { animation-delay: .3s; }
/* keep visible when interactive overlays are open or focused */
body.abd-has-chrome .site-header[data-abd-chrome="1"]:focus-within,
body.abd-has-chrome #header[data-abd-chrome="1"]:focus-within,
body.abd-has-chrome.nav-open .site-header[data-abd-chrome="1"],
body.abd-has-chrome.modal-open .site-header[data-abd-chrome="1"],
body.abd-has-chrome.abd-sc-nav-open .site-header[data-abd-chrome="1"] {
  transform: translateY(0) !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  body.abd-has-chrome .site-header[data-abd-chrome="1"],
  body.abd-has-chrome #header[data-abd-chrome="1"] {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: none !important;
  }
  body.abd-has-chrome .site-header.is-visible .header-inner > *,
  body.abd-has-chrome #header.is-visible .header-inner > * { animation: none !important; }
}

/* scrim covers the full viewport behind the floating pill */
body.abd-has-chrome .mega-scrim { inset: 0 !important; }

body.abd-has-chrome .header-inner {
  width: calc(100% - 28px);
  max-width: none;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

body.abd-has-chrome .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: #101215;
  text-decoration: none;
}
/* Official ABDflow logo — backgroundless, no chrome tile */
body.abd-has-chrome .brand-logo-wrap {
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
body.abd-has-chrome .brand-logo-wrap img,
body.abd-has-chrome .site-header .brand img {
  width: 36px !important;
  height: 36px !important;
  max-width: 36px !important;
  max-height: 36px !important;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none;
}
body.abd-has-chrome .brand-text {
  color: #101215;
  font-family: 'Raleway', 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  display: block;
}
body.abd-has-chrome .brand-text .abd-brand-name {
  display: inline-block;
  white-space: nowrap;
  font-size: 0; /* collapse whitespace between ABD|flow spans */
}
body.abd-has-chrome .brand-text .abd-word,
body.abd-has-chrome .brand-text .flow-word {
  display: inline;
  font-size: 22px;
  margin: 0;
  padding: 0;
  letter-spacing: -0.02em;
  word-spacing: 0;
}
body.abd-has-chrome .brand-text > .abd-word,
body.abd-has-chrome .brand-text > .flow-word {
  display: inline;
  font-size: 22px;
  margin: 0;
  padding: 0;
}
body.abd-has-chrome .brand-text small {
  display: block;
  margin-top: 4px;
  color: #333333;
  font-family: 'Raleway', 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

body.abd-has-chrome .nav-links {
  height: 36px;
  margin: 0;
  padding: 3px;
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(16, 18, 21, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}
body.abd-has-chrome .nav-links a,
body.abd-has-chrome .nav-links .nav-trigger {
  min-width: 58px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  color: #62666d;
  background: transparent;
  font-size: 11px;
  font-weight: 650;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, box-shadow .25s ease;
}
body.abd-has-chrome .nav-links .nav-trigger { min-width: 76px; padding: 0 9px 0 11px; }
body.abd-has-chrome .nav-links a:hover,
body.abd-has-chrome .nav-links .nav-trigger:hover,
body.abd-has-chrome .nav-links .nav-trigger[aria-expanded="true"] {
  color: #101215;
  background: #fff;
  box-shadow: 0 2px 9px rgba(16, 18, 21, .08);
}
body.abd-has-chrome .nav-links .nav-trigger svg,
body.abd-has-chrome .nav-links .nav-trigger .lucide {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .25s var(--ease);
}
body.abd-has-chrome .nav-links .nav-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

body.abd-has-chrome .header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.abd-has-chrome .site-header .icon-button:not(.menu-button) {
  width: 36px;
  height: 36px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 18, 21, .1);
  border-radius: 50%;
  color: #101215;
  background: rgba(255, 255, 255, .52);
  cursor: pointer;
  transition: .25s ease;
}
body.abd-has-chrome .site-header .icon-button:not(.menu-button):hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
body.abd-has-chrome .site-header .icon-button svg,
body.abd-has-chrome .site-header .icon-button .lucide {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body.abd-has-chrome .site-header .header-cta {
  min-height: 36px;
  padding: 0 15px;
  color: #fff;
  background: #101215;
  border: 0;
  box-shadow: 0 5px 15px rgba(16, 18, 21, .15);
  font-size: 11px;
}
body.abd-has-chrome .site-header .header-cta:hover {
  color: #fff;
  background: var(--blue);
}
body.abd-has-chrome .site-header .header-signin {
  color: #5c636b;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s ease;
}
body.abd-has-chrome .site-header .header-signin:hover { color: var(--blue); }
body.abd-has-chrome .site-header .header-signin[hidden] { display: none !important; }
body.abd-has-chrome .menu-button { display: none; }

/* —— Mega menu —— */
body.abd-has-chrome .mega-scrim {
  position: fixed;
  z-index: 100180;
  inset: var(--header) 0 0;
  background: rgba(9, 16, 28, .2);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
body.abd-has-chrome .mega-scrim.open { opacity: 1; visibility: visible; }
body.abd-has-chrome .mega-shell {
  position: fixed;
  z-index: 100190;
  top: var(--header);
  right: 0;
  left: 0;
  color: #101215;
  background: rgba(250, 250, 247, .98);
  border-top: 1px solid rgba(16, 18, 21, .06);
  border-bottom: 1px solid rgba(16, 18, 21, .1);
  box-shadow: 0 28px 64px rgba(14, 27, 48, .14);
  backdrop-filter: blur(28px) saturate(130%);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .35s var(--ease);
}
body.abd-has-chrome .mega-shell.open { opacity: 1; visibility: visible; transform: none; }
body.abd-has-chrome .site-header.scrolled ~ .mega-scrim,
body.abd-has-chrome .site-header.scrolled + .mega-scrim { inset: 58px 0 0; }
body.abd-has-chrome .site-header.scrolled ~ .mega-shell { top: 58px; }

body.abd-has-chrome .mega-panel {
  display: none;
  width: min(calc(100% - 48px), 1540px);
  max-height: calc(100svh - var(--header) - 24px);
  margin: 0 auto;
  padding: 25px 0 30px;
  overflow: auto;
}
body.abd-has-chrome .mega-panel.active { display: block; }
body.abd-has-chrome .mega-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 420px) auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(16, 18, 21, .09);
}
body.abd-has-chrome .mega-heading span {
  display: block;
  margin-bottom: 2px;
  color: #777d86;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-heading strong {
  font-family: Manrope, sans-serif;
  font-size: 22px;
}
body.abd-has-chrome .mega-search {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid rgba(16, 18, 21, .11);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 17px rgba(16, 18, 21, .045);
}
body.abd-has-chrome .mega-search svg,
body.abd-has-chrome .mega-search .lucide {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  flex: 0 0 auto;
  color: #727982;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.abd-has-chrome .mega-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 12px;
}
body.abd-has-chrome .mega-search kbd {
  padding: 2px 6px;
  border: 1px solid rgba(16, 18, 21, .1);
  border-radius: 5px;
  color: #8a9098;
  background: #f6f6f3;
  font: 9px/1.4 "DM Sans", sans-serif;
}
body.abd-has-chrome .mega-view-all {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #101215;
  font-size: 11px;
  font-weight: 700;
}
body.abd-has-chrome .mega-view-all svg,
body.abd-has-chrome .mega-view-all .lucide {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.abd-has-chrome .mega-product-grid {
  display: grid;
  grid-template-columns: .78fr .9fr 1.35fr;
  gap: clamp(28px, 4vw, 68px);
  padding-top: 24px;
}
body.abd-has-chrome .mega-group-title {
  margin: 0 0 11px;
  color: #7a8088;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-links { display: grid; gap: 3px; }
body.abd-has-chrome .mega-links.two-column {
  grid-template-columns: 1fr 1fr;
  column-gap: 18px;
}
body.abd-has-chrome .mega-product-link {
  min-width: 0;
  padding: 9px 8px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  transition: background .22s ease, transform .25s var(--ease);
}
body.abd-has-chrome .mega-product-link[hidden] { display: none !important; }
body.abd-has-chrome .mega-product-link:hover {
  background: #fff;
  transform: translateX(3px);
  box-shadow: 0 7px 20px rgba(16, 18, 21, .05);
}
body.abd-has-chrome .mega-product-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--item-color, #1769ff);
  background: color-mix(in srgb, var(--item-color, #1769ff) 11%, white);
  font-weight: 750;
  font-size: 11px;
  overflow: hidden;
}
body.abd-has-chrome .mega-product-icon svg,
body.abd-has-chrome .mega-product-icon .lucide {
  width: 15px !important;
  height: 15px !important;
  max-width: 15px !important;
  max-height: 15px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
body.abd-has-chrome .mega-product-icon img {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px !important;
  max-height: 22px !important;
  object-fit: contain;
  background: transparent !important;
}
/* PNG product marks stay backgroundless — no tinted tile behind the image */
body.abd-has-chrome .mega-product-icon:has(img) {
  background: transparent !important;
  border: 0;
  box-shadow: none;
}
body.abd-has-chrome .mega-product-icon:has(img) img {
  filter:
    drop-shadow(0 1px 1px rgba(16,18,21,.12))
    drop-shadow(0 3px 8px rgba(16,18,21,.10));
}
body.abd-has-chrome .mega-product-link[href="/products/myre"] .mega-product-icon {
  background: url('/logos/myre-icon.png') center / contain no-repeat;
}
body.abd-has-chrome .mega-product-link[href="/products/myre"] .mega-product-icon > * {
  visibility: hidden;
}
/* ABDleads mark is backgroundless — visibility via soft silhouette depth */
body.abd-has-chrome .mega-product-link[href="https://abdleads.abdflow.com"] .mega-product-icon {
  background: transparent;
  border: 0;
}
body.abd-has-chrome .mega-product-link[href="https://abdleads.abdflow.com"] .mega-product-icon img {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
  background: transparent !important;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 1px rgba(16,18,21,.18))
    drop-shadow(0 4px 10px rgba(16,18,21,.14));
}
body.abd-has-chrome .mega-product-copy strong {
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body.abd-has-chrome .mega-product-copy span {
  display: block;
  overflow: hidden;
  margin-top: 3px;
  color: #7b8189;
  font-size: 9px;
  line-height: 1.2;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body.abd-has-chrome .mega-product-link > svg,
body.abd-has-chrome .mega-product-link > .lucide {
  width: 13px !important;
  height: 13px !important;
  max-width: 13px !important;
  max-height: 13px !important;
  color: #a2a7ad;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  opacity: 0;
  transform: translateX(-4px);
  transition: .22s ease;
}
body.abd-has-chrome .mega-product-link:hover > svg { opacity: 1; transform: none; }
body.abd-has-chrome .mega-empty {
  display: none;
  padding: 26px 0 4px;
  color: #727981;
  font-size: 13px;
  text-align: center;
}
body.abd-has-chrome .mega-empty.visible { display: block; }
body.abd-has-chrome .mega-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) .9fr;
  gap: 34px;
  padding-top: 25px;
}
body.abd-has-chrome .mega-solution-group h3 {
  margin: 0 0 13px;
  color: #7a8088;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-solution-link {
  padding: 9px 0;
  display: block;
  border-bottom: 1px solid rgba(16, 18, 21, .07);
}
body.abd-has-chrome .mega-solution-link strong { display: block; font-size: 13px; }
body.abd-has-chrome .mega-solution-link span {
  display: block;
  margin-top: 3px;
  color: #7a8088;
  font-size: 9px;
}
body.abd-has-chrome .mega-solution-link:hover strong { color: #1769ff; }
body.abd-has-chrome .mega-callout {
  padding: 22px;
  border-radius: 18px;
  color: #fff;
  background: #101a2b;
}
body.abd-has-chrome .mega-callout span {
  color: #83b4ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-callout h3 {
  margin: 18px 0 10px;
  font-family: Manrope, sans-serif;
  font-size: 24px;
  line-height: 1.05;
}
body.abd-has-chrome .mega-callout p {
  margin: 0 0 18px;
  color: #aeb8c8;
  font-size: 10px;
  line-height: 1.5;
}
body.abd-has-chrome .mega-callout a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}
body.abd-has-chrome .mega-callout a svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}

/* —— Mobile menu —— */
body.abd-has-chrome .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100195;
  padding: 90px 16px 24px;
  color: #101215;
  background: rgba(247, 247, 244, .98);
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  transition: .3s ease;
}
body.abd-has-chrome .mobile-menu.open { opacity: 1; visibility: visible; }
body.abd-has-chrome .mobile-menu[hidden] { display: none !important; }
body.abd-has-chrome .search-modal[hidden] { display: none !important; }
body.abd-has-chrome #header .mega-menu[hidden] { display: none !important; }
body.abd-has-chrome .mobile-nav-shell {
  display: grid;
  width: min(100%, 680px);
  margin: 0 auto;
  gap: 16px;
}
body.abd-has-chrome .mobile-menu-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(16, 18, 21, .1);
}
body.abd-has-chrome .mobile-menu-head span {
  color: #7b8189;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.abd-has-chrome .mobile-menu-head strong {
  display: block;
  margin-top: 2px;
  font-family: Manrope, sans-serif;
  font-size: 23px;
}
body.abd-has-chrome .mobile-product-search {
  height: 46px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(16, 18, 21, .1);
  border-radius: 12px;
  background: #fff;
}
body.abd-has-chrome .mobile-product-search svg,
body.abd-has-chrome .mobile-product-search .lucide {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  color: #747b84;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
body.abd-has-chrome .mobile-product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}
body.abd-has-chrome .mobile-menu details {
  border-bottom: 1px solid rgba(16, 18, 21, .1);
}
body.abd-has-chrome .mobile-menu summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-size: 18px;
  font-weight: 700;
}
body.abd-has-chrome .mobile-menu summary::-webkit-details-marker { display: none; }
body.abd-has-chrome .mobile-menu summary svg,
body.abd-has-chrome .mobile-menu summary .lucide {
  width: 17px !important;
  height: 17px !important;
  max-width: 17px !important;
  max-height: 17px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .25s ease;
}
body.abd-has-chrome .mobile-menu details[open] summary svg { transform: rotate(45deg); }
body.abd-has-chrome .mobile-product-groups { display: grid; gap: 17px; padding: 4px 0 20px; }
body.abd-has-chrome .mobile-product-group h3 {
  margin: 0 0 5px;
  color: #7b8189;
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
body.abd-has-chrome .mobile-product-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(16, 18, 21, .08);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, .55);
  font-size: 12px;
  line-height: 1.25;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link[hidden] { display: none !important; }
body.abd-has-chrome .mobile-menu a.mobile-product-link img.mobile-product-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  grid-row: 1 / span 2;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link strong {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link span {
  display: block;
  margin-top: 3px;
  color: #7b8189;
  font-size: 9px;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link:hover {
  color: #fff;
  background: #1769ff;
  border-color: #1769ff;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link:hover span { color: rgba(255, 255, 255, .72); }
body.abd-has-chrome .mobile-solutions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 4px 0 20px;
}
body.abd-has-chrome .mobile-menu a.mobile-solution-link {
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(16, 18, 21, .08);
  border-radius: 10px;
  display: block;
  font-size: 12px;
  line-height: 1.25;
}
body.abd-has-chrome .mobile-menu a.mobile-solution-link span {
  display: block;
  margin-top: 4px;
  color: #7b8189;
  font-size: 9px;
}
body.abd-has-chrome .mobile-menu .mobile-direct {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  border: 0;
}
body.abd-has-chrome .mobile-menu a.mobile-direct-link {
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(16, 18, 21, .09);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
body.abd-has-chrome .mobile-menu a.mobile-direct-link span { font-size: 9px; color: #7b8189; }
body.abd-has-chrome .mobile-menu a.mobile-start {
  color: #fff;
  background: #101215;
}
body.abd-has-chrome .mobile-menu a.mobile-start span { color: rgba(255, 255, 255, .55); }
body.abd-has-chrome .mobile-menu .mobile-account {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
body.abd-has-chrome .mobile-menu .mobile-account-link {
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(16, 18, 21, .09);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, .55);
  color: inherit;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: .2s ease;
}
body.abd-has-chrome .mobile-menu .mobile-account-link[hidden] { display: none !important; }
body.abd-has-chrome .mobile-menu .mobile-account-link:hover {
  color: #fff;
  background: #1769ff;
  border-color: #1769ff;
}
body.abd-has-chrome .mobile-menu .mobile-account-signout {
  color: #b42318;
  border-color: rgba(180, 35, 24, .22);
}
body.abd-has-chrome .mobile-menu .mobile-account-signout:hover {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}
body.abd-has-chrome .mobile-search-empty {
  display: none;
  padding: 14px;
  color: #777e87;
  text-align: center;
  font-size: 12px;
}
body.abd-has-chrome .mobile-search-empty.visible { display: block; }
body.abd-has-chrome .mobile-search-empty[hidden] { display: none !important; }

/* —— Search modal —— */
body.abd-has-chrome .search-modal {
  position: fixed;
  inset: 0;
  z-index: 100250;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(5, 7, 11, .86);
  backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: .25s ease;
}
body.abd-has-chrome .search-modal.open { opacity: 1; visibility: visible; }
body.abd-has-chrome .search-panel {
  width: min(760px, 100%);
  background: #fff;
  color: var(--ink);
  border-radius: 8px;
  padding: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .38);
}
body.abd-has-chrome .search-top { display: flex; gap: 12px; align-items: center; }
body.abd-has-chrome .search-top input {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--ink);
  padding: 10px 0 16px;
  outline: 0;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  background: transparent;
}
body.abd-has-chrome .search-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 24px;
}
body.abd-has-chrome .search-results a {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}
body.abd-has-chrome .search-results a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
body.abd-has-chrome .search-modal .eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* —— Footer —— */
body.abd-has-chrome footer.footer[data-abd-chrome="1"] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative;
  z-index: 20;
  background: #050914 !important;
  color: #fff !important;
  border-top: 1px solid rgba(255, 255, 255, .12) !important;
  padding: 72px 0 28px !important;
}
body.abd-has-chrome .footer .container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}
body.abd-has-chrome .footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, .62fr);
  gap: 38px;
}
body.abd-has-chrome .footer-brand p {
  max-width: 400px;
  margin: 24px 0;
  color: #939fb0;
  font-size: 13px;
  line-height: 1.65;
}
body.abd-has-chrome .footer .brand-text { color: #fff !important; }
body.abd-has-chrome .footer .brand-text small { color: #aeb7c5 !important; }
body.abd-has-chrome .footer .brand img {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none;
}
body.abd-has-chrome .footer .brand-text {
  font-family: 'Raleway', 'Segoe UI', Roboto, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: -1px !important;
  line-height: 1 !important;
  display: block !important;
}
body.abd-has-chrome .footer .brand-text .abd-word,
body.abd-has-chrome .footer .brand-text .flow-word {
  display: inline !important;
  font-size: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.abd-has-chrome .footer .brand-text small {
  color: rgba(255,255,255,.78) !important;
  font-weight: 800 !important;
  letter-spacing: 2.4px !important;
  font-size: 8px !important;
}
body.abd-has-chrome .footer-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  color: #c2cad5;
  font-size: 11px;
}
body.abd-has-chrome .footer-col h4 {
  margin: 0 0 17px;
  color: #748094;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}
body.abd-has-chrome .footer-col a {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 9px 0;
  color: #c2cad5;
  font-size: 12px;
}
body.abd-has-chrome .footer-col a:hover { color: #fff; }
body.abd-has-chrome .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: #758094;
  font-size: 10px;
}
body.abd-has-chrome .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
body.abd-has-chrome .footer-legal a { color: #758094; }
body.abd-has-chrome .footer-legal a:hover { color: #fff; }
body.abd-has-chrome .back-top {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 auto !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 50% !important;
  color: #fff !important;
  background: transparent !important;
  text-decoration: none !important;
}
body.abd-has-chrome .back-top:hover {
  background: #0878ff !important;
  border-color: #0878ff !important;
  color: #fff !important;
}
body.abd-has-chrome .back-top svg,
body.abd-has-chrome .back-top .lucide {
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* Auth pages keep form layout under chrome */
body.abd-has-chrome .auth-page {
  min-height: auto;
  grid-template-rows: auto minmax(0, 1fr);
  padding-top: 0;
}
body.abd-has-chrome .auth-main { padding-top: 24px; }

/* Responsive */
@media (max-width: 1080px) {
  body.abd-has-chrome .nav-links { display: none !important; }
  body.abd-has-chrome .menu-button { display: grid !important; }
  body.abd-has-chrome .mega-shell,
  body.abd-has-chrome .mega-scrim { display: none !important; }
  body.abd-has-chrome .header-inner { grid-template-columns: 1fr auto !important; }
  body.abd-has-chrome .footer-top {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }
  body.abd-has-chrome .footer-brand { grid-row: span 2; }
}
@media (max-width: 640px) {
  body.abd-has-chrome .header-cta { display: none !important; }
  body.abd-has-chrome .brand-text small { display: none !important; }
  body.abd-has-chrome .footer-top {
    grid-template-columns: 1fr 1fr !important;
  }
  body.abd-has-chrome .footer-brand { grid-column: span 2; grid-row: auto; }
  body.abd-has-chrome .footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  body.abd-has-chrome .footer-legal { grid-column: 1 / 3; }
  body.abd-has-chrome .search-results { grid-template-columns: 1fr; }
  body.abd-has-chrome .mobile-product-links,
  body.abd-has-chrome .mobile-solutions { grid-template-columns: 1fr; }
  body.abd-has-chrome .mega-top { grid-template-columns: 1fr; }
  body.abd-has-chrome .mega-product-grid { grid-template-columns: 1fr; }
}
body.abd-has-chrome.nav-open,
body.abd-has-chrome.modal-open,
body.abd-has-chrome.abd-sc-nav-open { overflow: hidden; }

/* Site-wide italic serif eyebrow/kicker — matches homepage design language. */
body.abd-has-chrome .eyebrow,
body.abd-has-chrome .label,
body.abd-has-chrome .kicker,
body.abd-has-chrome .section-kicker,
body.abd-has-chrome .hero-kicker,
body.abd-has-chrome .direct-kicker,
body.abd-has-chrome .entry-eyebrow,
body.abd-has-chrome .entry-section-kicker,
body.abd-has-chrome .entry-card-kicker,
body.abd-has-chrome .product-label {
  display: block !important;
  margin: 0 0 14px !important;
  color: #7eb4ff !important;
  font-family: Georgia, "Times New Roman", serif !important;
  font-size: clamp(14px, 1.2vw, 18px) !important;
  font-weight: 500 !important;
  font-style: italic !important;
  letter-spacing: -.02em !important;
  text-transform: none !important;
}
/* On light-background pages, shift to a readable medium blue */
body.abd-has-chrome.direct-site .eyebrow,
body.abd-has-chrome.direct-site .direct-kicker,
body.abd-has-chrome.entry-page .entry-eyebrow,
body.abd-has-chrome.entry-page .entry-section-kicker,
body.abd-has-chrome.entry-page .entry-card-kicker {
  color: #1769ff !important;
}
body.abd-has-chrome .eyebrow::before,
body.abd-has-chrome .label::before,
body.abd-has-chrome .kicker::before,
body.abd-has-chrome .section-kicker::before,
body.abd-has-chrome .hero-kicker::before,
body.abd-has-chrome .direct-kicker::before,
body.abd-has-chrome .entry-eyebrow::before,
body.abd-has-chrome .entry-section-kicker::before,
body.abd-has-chrome .entry-card-kicker::before {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}
body.abd-has-chrome h1,
body.abd-has-chrome .hero h1,
body.abd-has-chrome .section-title {
  letter-spacing: -.04em;
}
@media (max-width: 640px) {
  body.abd-has-chrome .eyebrow,
  body.abd-has-chrome .label,
  body.abd-has-chrome .kicker,
  body.abd-has-chrome .direct-kicker,
  body.abd-has-chrome .entry-eyebrow,
  body.abd-has-chrome .entry-section-kicker,
  body.abd-has-chrome .entry-card-kicker {
    font-size: 14px !important;
    max-width: 28ch;
  }
}

/* ═══════════════════════════════════════════════════════════
   HEADER 2.1 — full-width editorial bar + dark bento mega menu
   One design system for every page (homepage chrome included).
   Light/dark mix: dark glass bar → light variant on light pages.
   ═══════════════════════════════════════════════════════════ */
:root {
  --hd-font: "Bricolage Grotesque", "Space Grotesk", "Outfit", sans-serif;
  --hd-body: "Instrument Sans", "DM Sans", -apple-system, sans-serif;
  --hd-cyan: #00c0f0;
  --hd-blue: #0673E8;
  --hd-grad: linear-gradient(135deg, #00c0f0 0%, #0673E8 55%, #0546D6 100%);
  --hd-line: rgba(151, 196, 255, .16);
}

body.abd-has-chrome { font-family: var(--hd-body); }
body.abd-has-chrome #header,
body.abd-has-chrome #header .nav-link,
body.abd-has-chrome #header .btn-text,
body.abd-has-chrome #header .btn-primary {
  font-family: "Plus Jakarta Sans", "Instrument Sans", "DM Sans", sans-serif;
}

/* ── floating pill header ── */
body.abd-has-chrome .site-header {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 72px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(151, 196, 255, .14);
  background: rgba(2, 2, 8, .82);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 14px 44px rgba(1, 6, 16, .38), inset 0 1px 0 rgba(255, 255, 255, .07);
}
body.abd-has-chrome .site-header.scrolled {
  height: 60px;
  background: rgba(2, 2, 8, .92);
  border-color: rgba(151, 196, 255, .14);
  box-shadow: 0 20px 60px rgba(1, 5, 14, .55);
}
body.abd-has-chrome .header-inner { width: min(calc(100% - 48px), 1440px); height: 100%; margin: 0 auto; padding: 0; gap: 18px; }

/* brand */
body.abd-has-chrome .brand { gap: 10px; }
body.abd-has-chrome .brand img { width: 34px; height: 34px; }
body.abd-has-chrome .brand-text { font-family: var(--hd-font); font-size: 19px; font-weight: 700; letter-spacing: -.02em; color: #fff; transition: color .3s ease; }
body.abd-has-chrome .brand-text small { color: rgba(159, 182, 217, .85); font-family: var(--hd-body); font-size: 7.5px; letter-spacing: .16em; }
body.abd-has-chrome .site-header.scrolled .brand-text { color: #0A1122; }
body.abd-has-chrome .site-header.scrolled .brand-text small { color: #64748b; }

/* nav */
body.abd-has-chrome .nav-links { gap: 4px; margin-left: auto; }
body.abd-has-chrome .nav-links a,
body.abd-has-chrome .nav-links .nav-trigger {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(214, 228, 248, .92);
  font-family: var(--hd-font);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -.005em;
  transition: color .25s ease, background .25s ease;
}
body.abd-has-chrome .nav-links a:hover,
body.abd-has-chrome .nav-links .nav-trigger:hover,
body.abd-has-chrome .nav-links .nav-trigger[aria-expanded="true"] {
  color: #fff;
  background: rgba(151, 196, 255, .12);
}
body.abd-has-chrome .site-header.scrolled .nav-links a,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger { color: #33415c; }
body.abd-has-chrome .site-header.scrolled .nav-links a:hover,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger:hover,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger[aria-expanded="true"] {
  color: #0673E8;
  background: rgba(6, 115, 232, .08);
}
body.abd-has-chrome .nav-links .nav-trigger svg { width: 13px; height: 13px; margin-left: 4px; }

/* actions */
body.abd-has-chrome .header-actions { gap: 8px; }
body.abd-has-chrome .site-header .icon-button {
  width: 40px; height: 40px;
  border-radius: 50%;
  border-color: rgba(151, 196, 255, .28);
  background: rgba(151, 196, 255, .08);
  color: #dce9fb;
}
body.abd-has-chrome .site-header .icon-button:hover { color: #fff; background: var(--hd-blue); border-color: transparent; transform: translateY(-1px); }
body.abd-has-chrome .site-header.scrolled .icon-button { border-color: rgba(10, 17, 34, .12); background: rgba(10, 17, 34, .04); color: #1d2b45; }
body.abd-has-chrome .site-header.scrolled .icon-button:hover { color: #fff; background: var(--hd-blue); }
body.abd-has-chrome .header-signin {
  color: rgba(214, 228, 248, .92);
  font-family: var(--hd-font);
  font-size: 13.5px;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 999px;
}
body.abd-has-chrome .header-signin:hover { color: #fff; background: rgba(151, 196, 255, .12); }
body.abd-has-chrome .site-header.scrolled .header-signin { color: #33415c; }
body.abd-has-chrome .site-header.scrolled .header-signin:hover { color: #0673E8; background: rgba(6, 115, 232, .08); }
body.abd-has-chrome .header-cta,
body.abd-has-chrome .site-header .header-cta {
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--hd-grad);
  color: #fff;
  font-family: var(--hd-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .01em;
  box-shadow: 0 10px 26px rgba(6, 115, 232, .42), inset 0 1px 0 rgba(255, 255, 255, .3);
}
body.abd-has-chrome .header-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(6, 115, 232, .52); }

/* ── dark bento mega menu ── */
body.abd-has-chrome .mega-scrim { background: rgba(1, 3, 9, .55); backdrop-filter: blur(6px); }
body.abd-has-chrome .mega-shell {
  top: 72px;
  left: 0;
  right: 0;
  transform: none;
  margin: 0 auto;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border-left: 0;
  border-right: 0;
  border-top: 0;

body.abd-has-chrome .mega-panel > * { max-width: 1440px; margin-left: auto; margin-right: auto; }
body.abd-has-chrome .mega-panel { padding-left: clamp(20px, 3vw, 48px); padding-right: clamp(20px, 3vw, 48px); }
  color: #EAF3FF;
  background:
    radial-gradient(900px 420px at 12% -20%, rgba(6, 115, 232, .22), transparent 55%),
    radial-gradient(700px 380px at 96% 115%, rgba(33, 189, 248, .12), transparent 55%),
    linear-gradient(165deg, #05070b 0%, #020208 100%);
  border: 1px solid rgba(151, 196, 255, .18);
  border-top: 1px solid rgba(151, 196, 255, .18);
  border-bottom: 1px solid rgba(151, 196, 255, .18);
  box-shadow: 0 50px 140px rgba(1, 5, 14, .65), inset 0 1px 0 rgba(255, 255, 255, .06);
  font-family: var(--hd-body);
  opacity: 0;
  transform: translateY(-14px) scale(.985);
  transition: opacity .3s ease, transform .45s cubic-bezier(.3, 1.25, .4, 1);
}
body.abd-has-chrome .mega-shell.open {
  opacity: 1;
  transform: translateY(0) scale(1);
}
body.abd-has-chrome .site-header.scrolled ~ .mega-shell,
body.abd-has-chrome .site-header.scrolled + .mega-scrim ~ .mega-shell { top: 74px; }
body.abd-has-chrome .site-header.scrolled + .mega-scrim { top: 0; }

body.abd-has-chrome .mega-heading span {
  color: var(--hd-cyan);
  font-family: var(--hd-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-heading strong {
  color: #fff;
  font-family: var(--hd-font);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -.02em;
}
body.abd-has-chrome .mega-search {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(151, 196, 255, .2);
  border-radius: 999px;
  color: #dce9fb;
  transition: border-color .25s ease;
}
body.abd-has-chrome .mega-search:focus-within { border-color: rgba(0, 192, 240, .55); }
body.abd-has-chrome .mega-search input { color: #EAF3FF; background: transparent; }
body.abd-has-chrome .mega-search input::placeholder { color: rgba(159, 182, 217, .65); }
body.abd-has-chrome .mega-search kbd { color: rgba(159, 182, 217, .6); border-color: rgba(151, 196, 255, .25); background: rgba(255, 255, 255, .04); }
body.abd-has-chrome .mega-view-all { color: #9CCBFF; font-family: var(--hd-font); font-weight: 600; }
body.abd-has-chrome .mega-view-all:hover { color: var(--hd-cyan); }

body.abd-has-chrome .mega-group-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(159, 182, 217, .75);
  font-family: var(--hd-font);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}
body.abd-has-chrome .mega-group-title::before { content: ""; width: 18px; height: 1px; background: var(--hd-grad); }

body.abd-has-chrome .mega-product-link {
  border: 1px solid rgba(151, 196, 255, .13);
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, 0) 45%), rgba(0, 48, 208, .04);
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}
body.abd-has-chrome .mega-product-link strong {
  color: #fff;
  font-family: var(--hd-font);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
}
body.abd-has-chrome .mega-product-link span { color: rgba(159, 182, 217, .8); font-size: 11px; }
body.abd-has-chrome .mega-product-link svg { color: rgba(159, 182, 217, .5); transition: transform .3s var(--ease), color .3s ease; }
body.abd-has-chrome .mega-product-link:hover {
  border-color: rgba(0, 192, 240, .5);
  background: linear-gradient(160deg, rgba(0, 192, 240, .08), rgba(255, 255, 255, 0) 50%), rgba(0, 48, 208, .08);
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 40, 140, .35);
}
body.abd-has-chrome .mega-product-link:hover svg { transform: translateX(3px); color: var(--hd-cyan); }
body.abd-has-chrome .mega-product-icon { background: #fff; border-radius: 9px; padding: 3px; box-shadow: 0 3px 9px rgba(0, 0, 0, .3); }

body.abd-has-chrome .mega-solution-link,
body.abd-has-chrome .mega-callout {
  border: 1px solid rgba(151, 196, 255, .13);
  border-radius: 14px;
  background: rgba(255, 255, 255, .03);
}
body.abd-has-chrome .mega-solution-link strong { color: #fff; font-family: var(--hd-font); }
body.abd-has-chrome .mega-solution-link span { color: rgba(159, 182, 217, .8); }
body.abd-has-chrome .mega-solution-link:hover { border-color: rgba(0, 192, 240, .5); background: rgba(0, 192, 240, .07); }
body.abd-has-chrome .mega-callout {
  background:
    radial-gradient(400px 220px at 100% 0%, rgba(33, 189, 248, .2), transparent 55%),
    linear-gradient(165deg, #0673E8 0%, #0546D6 100%);
  border-color: rgba(151, 196, 255, .3);
}
body.abd-has-chrome .mega-callout span { color: rgba(255, 255, 255, .75); font-size: 10px; letter-spacing: .26em; text-transform: uppercase; }
body.abd-has-chrome .mega-callout h3 { color: #fff; font-family: var(--hd-font); }
body.abd-has-chrome .mega-callout p { color: rgba(234, 243, 255, .8); }
body.abd-has-chrome .mega-callout a { color: #fff; font-weight: 700; }
body.abd-has-chrome .mega-empty { color: rgba(159, 182, 217, .7); }

/* ── mobile menu: dark editorial sheet ── */
body.abd-has-chrome .mobile-menu {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(6, 115, 232, .16), transparent 55%),
    rgba(2, 2, 8, .985);
  padding-top: 96px;
}
body.abd-has-chrome .mobile-menu-head span { color: var(--hd-cyan); font-size: 10px; letter-spacing: .28em; text-transform: uppercase; }
body.abd-has-chrome .mobile-menu-head strong { color: #fff; font-family: var(--hd-font); }
body.abd-has-chrome .mobile-product-search { background: rgba(255, 255, 255, .04); border: 1px solid rgba(151, 196, 255, .2); border-radius: 999px; color: #dce9fb; }
body.abd-has-chrome .mobile-product-search input { color: #EAF3FF; background: transparent; }
body.abd-has-chrome .mobile-menu summary,
body.abd-has-chrome .mobile-menu .mobile-product-group h3 { color: #9CCBFF; font-family: var(--hd-font); letter-spacing: .04em; }
body.abd-has-chrome .mobile-menu a.mobile-product-link,
body.abd-has-chrome .mobile-menu a.mobile-solution-link,
body.abd-has-chrome .mobile-menu a.mobile-direct-link,
body.abd-has-chrome .mobile-menu .mobile-account-link {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(151, 196, 255, .14);
  color: #EAF3FF;
}
body.abd-has-chrome .mobile-menu a.mobile-product-link strong,
body.abd-has-chrome .mobile-menu a.mobile-solution-link strong { color: #fff; font-family: var(--hd-font); }
body.abd-has-chrome .mobile-menu a.mobile-product-link span,
body.abd-has-chrome .mobile-menu a.mobile-solution-link span,
body.abd-has-chrome .mobile-menu a.mobile-direct-link span { color: rgba(159, 182, 217, .7); }
body.abd-has-chrome .mobile-menu a.mobile-product-link:hover,
body.abd-has-chrome .mobile-menu a.mobile-solution-link:hover,
body.abd-has-chrome .mobile-menu a.mobile-direct-link:hover {
  color: #fff;
  background: rgba(0, 192, 240, .1);
  border-color: rgba(0, 192, 240, .5);
}
body.abd-has-chrome .mobile-menu a.mobile-start { background: var(--hd-grad); border-color: transparent; color: #fff; }
body.abd-has-chrome .mobile-account-link { background: rgba(255, 255, 255, .04) !important; border-color: rgba(151, 196, 255, .16) !important; color: #EAF3FF !important; }

/* ── search modal: dark ── */
body.abd-has-chrome .search-panel {
  background: linear-gradient(165deg, #05070b, #020208);
  border: 1px solid rgba(151, 196, 255, .2);
  color: #EAF3FF;
  border-radius: 22px;
  box-shadow: 0 50px 140px rgba(1, 5, 14, .65);
}
body.abd-has-chrome .search-panel .eyebrow {
  color: var(--hd-cyan) !important;
  font-family: var(--hd-font) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: .3em !important;
  text-transform: uppercase !important;
  font-style: normal !important;
}
body.abd-has-chrome .search-top input { background: rgba(255, 255, 255, .04); border-bottom-color: rgba(151, 196, 255, .3); color: #EAF3FF; }
body.abd-has-chrome .search-results a {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(151, 196, 255, .14);
  color: #dce9fb;
  border-radius: 12px;
  font-family: var(--hd-font);
}
body.abd-has-chrome .search-results a:hover { background: rgba(0, 192, 240, .1); border-color: rgba(0, 192, 240, .5); color: #fff; }

/* ── responsive ── */
@media (max-width: 960px) {
  body.abd-has-chrome .nav-links { display: none; }
  body.abd-has-chrome .menu-button { display: grid; }
}
@media (max-width: 860px) {
  body.abd-has-chrome .site-header { height: 58px; }
  body.abd-has-chrome .site-header.scrolled { height: 52px; }
  body.abd-has-chrome .mega-shell { top: 58px; }
  body.abd-has-chrome .mobile-menu { padding: 84px 18px 32px; }
}

/* ── light pill variant: non-homepage pages sit on light canvases ── */
body.abd-has-chrome .site-header.hdr-light,
body.abd-has-chrome #header.hdr-light,
body.abd-has-chrome .hdr-light-page .site-header,
body.abd-has-chrome .hdr-light-page #header {
  color: #0A1122 !important;
  background: rgba(251, 252, 254, .86) !important;
  border-color: rgba(10, 17, 34, .08) !important;
  box-shadow: 0 10px 34px rgba(16, 24, 40, .10) !important;
}
body.abd-has-chrome .site-header.hdr-light .brand-text,
body.abd-has-chrome #header.hdr-light .brand-text,
body.abd-has-chrome .hdr-light-page .brand-text { color: #0A1122 !important; }
body.abd-has-chrome .site-header.hdr-light .brand-text small,
body.abd-has-chrome #header.hdr-light .brand-text small,
body.abd-has-chrome .hdr-light-page .brand-text small { color: #64748b !important; }
body.abd-has-chrome .site-header.hdr-light .nav-links a,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger,
body.abd-has-chrome #header.hdr-light .nav-links a,
body.abd-has-chrome #header.hdr-light .nav-links .nav-trigger,
body.abd-has-chrome .hdr-light-page .nav-links a,
body.abd-has-chrome .hdr-light-page .nav-links .nav-trigger { color: #33415c !important; }
body.abd-has-chrome .site-header.hdr-light .nav-links a:hover,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger:hover,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome #header.hdr-light .nav-links a:hover,
body.abd-has-chrome #header.hdr-light .nav-links .nav-trigger:hover,
body.abd-has-chrome #header.hdr-light .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome .hdr-light-page .nav-links a:hover,
body.abd-has-chrome .hdr-light-page .nav-links .nav-trigger:hover { color: #0673E8 !important; background: rgba(6, 115, 232, .08) !important; }
body.abd-has-chrome .site-header.hdr-light .icon-button,
body.abd-has-chrome #header.hdr-light .icon-button,
body.abd-has-chrome .hdr-light-page .site-header .icon-button {
  border-color: rgba(10, 17, 34, .12) !important;
  background: rgba(10, 17, 34, .04) !important;
  color: #1d2b45 !important;
}
body.abd-has-chrome .site-header.hdr-light .header-signin,
body.abd-has-chrome #header.hdr-light .header-signin,
body.abd-has-chrome .hdr-light-page .header-signin { color: #33415c !important; }
body.abd-has-chrome .site-header.hdr-light .header-signin:hover,
body.abd-has-chrome .hdr-light-page .header-signin:hover { color: #0673E8 !important; background: rgba(6, 115, 232, .08) !important; }
body.abd-has-chrome .hdr-light-page .mobile-menu,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu,
body.abd-has-chrome #header.hdr-light ~ .mobile-menu {
  background:
    radial-gradient(700px 400px at 20% 0%, rgba(6, 115, 232, .07), transparent 55%),
    rgba(248, 250, 252, .985) !important;
}
body.abd-has-chrome .hdr-light-page .mobile-menu-head strong,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu .mobile-menu-head strong { color: #0A1122 !important; }
body.abd-has-chrome .hdr-light-page .mobile-menu summary,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu summary { color: #0673E8 !important; }
body.abd-has-chrome .hdr-light-page .mobile-menu a.mobile-product-link,
body.abd-has-chrome .hdr-light-page .mobile-menu a.mobile-solution-link,
body.abd-has-chrome .hdr-light-page .mobile-menu a.mobile-direct-link,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu a.mobile-product-link,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu a.mobile-solution-link,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu a.mobile-direct-link {
  background: #fff !important;
  border-color: rgba(10, 17, 34, .08) !important;
  color: #0A1122 !important;
}
body.abd-has-chrome .hdr-light-page .mobile-menu a.mobile-product-link strong,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu a.mobile-product-link strong { color: #0A1122 !important; }
body.abd-has-chrome .hdr-light-page .mobile-menu a.mobile-product-link:hover,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu a.mobile-product-link:hover {
  background: rgba(6, 115, 232, .06) !important;
  border-color: rgba(6, 115, 232, .45) !important;
}
body.abd-has-chrome .hdr-light-page .mobile-product-search,
body.abd-has-chrome .site-header.hdr-light ~ .mobile-menu .mobile-product-search {
  background: #fff !important;
  border-color: rgba(10, 17, 34, .12) !important;
  color: #0A1122 !important;
}

/* ═══════════════════════════════════════════════════════════
   HEADER POLISH — readability + luminosity pass
   ═══════════════════════════════════════════════════════════ */
/* brighter graphite-blue glass instead of near-black */
body.abd-has-chrome .site-header[data-abd-chrome="1"],
body.abd-has-chrome #header[data-abd-chrome="1"] {
  background: linear-gradient(180deg, rgba(19, 30, 52, .66) 0%, rgba(6, 11, 22, .78) 100%) !important;
  border-bottom: 1px solid rgba(151, 196, 255, .22) !important;
  box-shadow: 0 18px 50px rgba(1, 5, 14, .42), inset 0 1px 0 rgba(255, 255, 255, .09) !important;
}
body.abd-has-chrome .site-header[data-abd-chrome="1"].is-visible.scrolled,
body.abd-has-chrome #header[data-abd-chrome="1"].is-visible.scrolled,
body.abd-has-chrome .site-header[data-abd-chrome="1"].scrolled,
body.abd-has-chrome #header[data-abd-chrome="1"].scrolled {
  background: linear-gradient(180deg, rgba(252, 253, 255, .92) 0%, rgba(238, 243, 250, .88) 100%) !important;
  border-bottom: 1px solid rgba(6, 115, 232, .16) !important;
  box-shadow: 0 14px 40px rgba(16, 24, 40, .12) !important;
}

/* nav + actions: brighter text */
body.abd-has-chrome .site-header .nav-links a,
body.abd-has-chrome .site-header .nav-links .nav-trigger,
body.abd-has-chrome #header .nav-links a,
body.abd-has-chrome #header .nav-links .nav-trigger { color: #dce9fb !important; }
body.abd-has-chrome .site-header .nav-links a:hover,
body.abd-has-chrome .site-header .nav-links .nav-trigger:hover,
body.abd-has-chrome .site-header .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome #header .nav-links a:hover,
body.abd-has-chrome #header .nav-links .nav-trigger:hover,
body.abd-has-chrome #header .nav-links .nav-trigger[aria-expanded="true"] { color: #fff !important; background: rgba(0, 192, 240, .16) !important; }
body.abd-has-chrome .site-header .header-signin,
body.abd-has-chrome #header .header-signin { color: #dce9fb !important; }
body.abd-has-chrome .site-header .icon-button,
body.abd-has-chrome #header .icon-button { border-color: rgba(151, 196, 255, .32) !important; background: rgba(151, 196, 255, .1) !important; color: #e6f0fd !important; }

/* ── ABDflow wordmark: readable on every surface ── */
/* dark bar: ABD = luminous brand blue, flow = white, tagline soft */
body.abd-has-chrome .site-header .brand-text,
body.abd-has-chrome #header .brand-text,
body.abd-has-chrome .site-header .brand-text .flow-word,
body.abd-has-chrome #header .brand-text .flow-word { color: #fff !important; }
body.abd-has-chrome .site-header .brand-text .abd-word,
body.abd-has-chrome #header .brand-text .abd-word {
  color: #4da3ff !important;
  text-shadow: 0 0 18px rgba(77, 163, 255, .45);
}
body.abd-has-chrome .site-header .brand-text small,
body.abd-has-chrome #header .brand-text small { color: rgba(199, 222, 250, .8) !important; }
/* light (scrolled) bar: ABD = brand blue, flow = ink */
body.abd-has-chrome .site-header.scrolled .brand-text,
body.abd-has-chrome #header.scrolled .brand-text,
body.abd-has-chrome .site-header.scrolled .brand-text .flow-word,
body.abd-has-chrome #header.scrolled .brand-text .flow-word { color: #0A1122 !important; }
body.abd-has-chrome .site-header.scrolled .brand-text .abd-word,
body.abd-has-chrome #header.scrolled .brand-text .abd-word { color: #0673E8 !important; text-shadow: none !important; }
body.abd-has-chrome .site-header.scrolled .brand-text small,
body.abd-has-chrome #header.scrolled .brand-text small { color: #64748b !important; }
/* light pages variant */
body.abd-has-chrome .site-header.hdr-light .brand-text,
body.abd-has-chrome #header.hdr-light .brand-text,
body.abd-has-chrome .site-header.hdr-light .brand-text .flow-word,
body.abd-has-chrome #header.hdr-light .brand-text .flow-word { color: #0A1122 !important; }
body.abd-has-chrome .site-header.hdr-light .brand-text .abd-word,
body.abd-has-chrome #header.hdr-light .brand-text .abd-word { color: #0673E8 !important; text-shadow: none !important; }
body.abd-has-chrome .site-header.hdr-light .brand-text small,
body.abd-has-chrome #header.hdr-light .brand-text small { color: #64748b !important; }

/* ── mega panel: lift surfaces + text contrast ── */
body.abd-has-chrome .mega-shell {
  background:
    radial-gradient(900px 420px at 12% -20%, rgba(6, 115, 232, .26), transparent 55%),
    radial-gradient(700px 380px at 96% 115%, rgba(33, 189, 248, .14), transparent 55%),
    linear-gradient(165deg, #081428 0%, #04070f 100%) !important;
  border-bottom: 1px solid rgba(151, 196, 255, .2) !important;
}
body.abd-has-chrome .mega-heading strong { color: #fff !important; }
body.abd-has-chrome .mega-heading span { color: #9CCBFF !important; }
body.abd-has-chrome .mega-group-title { color: #9CCBFF !important; }
body.abd-has-chrome .mega-product-link {
  background: linear-gradient(160deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0) 45%), rgba(6, 40, 130, .14) !important;
  border-color: rgba(151, 196, 255, .2) !important;
}
body.abd-has-chrome .mega-product-link span { color: rgba(203, 219, 242, .92) !important; }
body.abd-has-chrome .mega-product-link:hover { background: linear-gradient(160deg, rgba(0, 192, 240, .12), rgba(255, 255, 255, 0) 50%), rgba(6, 40, 130, .2) !important; }
body.abd-has-chrome .mega-search { border-color: rgba(151, 196, 255, .28) !important; background: rgba(255, 255, 255, .06) !important; }
body.abd-has-chrome .mega-search input { color: #fff !important; }

/* ── light-state text correction (scrolled + light pages) ── */
body.abd-has-chrome .site-header.scrolled .nav-links a,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger,
body.abd-has-chrome #header.scrolled .nav-links a,
body.abd-has-chrome #header.scrolled .nav-links .nav-trigger,
body.abd-has-chrome .site-header.hdr-light .nav-links a,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger,
body.abd-has-chrome #header.hdr-light .nav-links a,
body.abd-has-chrome #header.hdr-light .nav-links .nav-trigger,
body.abd-has-chrome .hdr-light-page .site-header .nav-links a,
body.abd-has-chrome .hdr-light-page .site-header .nav-links .nav-trigger { color: #33415c !important; }
body.abd-has-chrome .site-header.scrolled .nav-links a:hover,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger:hover,
body.abd-has-chrome .site-header.scrolled .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome #header.scrolled .nav-links a:hover,
body.abd-has-chrome #header.scrolled .nav-links .nav-trigger:hover,
body.abd-has-chrome #header.scrolled .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome .site-header.hdr-light .nav-links a:hover,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger:hover,
body.abd-has-chrome .site-header.hdr-light .nav-links .nav-trigger[aria-expanded="true"],
body.abd-has-chrome .hdr-light-page .site-header .nav-links a:hover,
body.abd-has-chrome .hdr-light-page .site-header .nav-links .nav-trigger:hover { color: #0673E8 !important; background: rgba(6, 115, 232, .08) !important; }
body.abd-has-chrome .site-header.scrolled .header-signin,
body.abd-has-chrome #header.scrolled .header-signin,
body.abd-has-chrome .site-header.hdr-light .header-signin,
body.abd-has-chrome #header.hdr-light .header-signin,
body.abd-has-chrome .hdr-light-page .site-header .header-signin { color: #33415c !important; }
body.abd-has-chrome .site-header.scrolled .header-signin:hover,
body.abd-has-chrome .site-header.hdr-light .header-signin:hover,
body.abd-has-chrome .hdr-light-page .site-header .header-signin:hover { color: #0673E8 !important; }
body.abd-has-chrome .site-header.scrolled .icon-button,
body.abd-has-chrome #header.scrolled .icon-button,
body.abd-has-chrome .site-header.hdr-light .icon-button,
body.abd-has-chrome #header.hdr-light .icon-button,
body.abd-has-chrome .hdr-light-page .site-header .icon-button {
  border-color: rgba(10, 17, 34, .14) !important;
  background: rgba(10, 17, 34, .05) !important;
  color: #1d2b45 !important;
}

/* ====================================================================
   NEW HEADER — theheader design (abd-hdr2)
   Scoped under #header to override old inner-layout CSS
   ==================================================================== */

/* -- Inner layout override -- */
body.abd-has-chrome #header .header-inner {
  width: calc(100% - 48px);
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  height: 100%;
}

/* -- Brand logo -- */
body.abd-has-chrome #header .brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  min-width: max-content;
}
body.abd-has-chrome #header .brand-logo img {
  width: 32px !important;
  height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  object-fit: contain;
  border-radius: 6px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body.abd-has-chrome #header .logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
body.abd-has-chrome #header .brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.035em;
}
body.abd-has-chrome #header .brand-tagline {
  font-size: 8px;
  color: #8a919a;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}
body.abd-has-chrome #header.scrolled .brand-tagline,
body.abd-has-chrome #header.is-dark .brand-tagline {
  color: inherit;
  opacity: 0.6;
}

/* -- Main nav -- */
body.abd-has-chrome #header .main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 100%;
}
body.abd-has-chrome #header .nav-item {
  position: static;
  height: 100%;
  display: flex;
  align-items: center;
}
body.abd-has-chrome #header .nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 650;
  color: #a0a8b4;
  text-decoration: none;
  border-radius: 999px;
  transition: color .25s ease, background .25s ease;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  white-space: nowrap;
}
body.abd-has-chrome #header .nav-link svg.chevron {
  width: 12px !important;
  height: 12px !important;
  max-width: 12px !important;
  max-height: 12px !important;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
  stroke: currentColor;
}
body.abd-has-chrome #header .nav-item:hover .nav-link {
  color: #fff;
  background: rgba(255,255,255,.1);
}
body.abd-has-chrome #header.scrolled .nav-link {
  color: #62666d;
}
body.abd-has-chrome #header.scrolled .nav-item:hover .nav-link {
  color: #101215;
  background: rgba(241,245,249,.8);
}
body.abd-has-chrome #header .nav-item.is-open .nav-link {
  color: #fff;
  background: rgba(255,255,255,.12);
}
body.abd-has-chrome #header.scrolled .nav-item.is-open .nav-link {
  color: #101215;
  background: rgba(241,245,249,.9);
}
body.abd-has-chrome #header .nav-item.is-open .nav-link svg.chevron {
  transform: rotate(180deg);
}

/* -- Full-width mega submenu -- */
body.abd-has-chrome #header .mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(250,250,247,.98);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  border-bottom: 1px solid rgba(16,18,21,.1);
  box-shadow: 0 30px 60px -15px rgba(15,23,42,.12), 0 0 1px 1px rgba(15,23,42,.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s cubic-bezier(0.16, 1, 0.3, 1), visibility .25s;
  pointer-events: none;
  color: #101215;
  z-index: 100190;
}
body.abd-has-chrome #header .nav-item.is-open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
body.abd-has-chrome #header .mega-menu-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 20px 24px 24px;
}

/* -- Submenu header (title + search) -- */
body.abd-has-chrome #header .submenu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(16,18,21,.09);
  gap: 24px;
}
body.abd-has-chrome #header .submenu-title-group h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #101215;
}
body.abd-has-chrome #header .submenu-title-group p {
  font-size: 12px;
  color: #62666d;
  margin-top: 3px;
}
body.abd-has-chrome #header .submenu-search-box {
  position: relative;
  width: 320px;
  flex-shrink: 0;
}
body.abd-has-chrome #header .submenu-search-box input {
  width: 100%;
  padding: 10px 14px 10px 36px;
  border-radius: 10px;
  border: 1px solid rgba(16,18,21,.1);
  background: #f6f6f3;
  font-size: 12px;
  font-family: inherit;
  color: #101215;
  transition: .25s ease;
  outline: none;
}
body.abd-has-chrome #header .submenu-search-box input:focus {
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(37,99,235,.12);
}
body.abd-has-chrome #header .submenu-search-box svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
  stroke: #727982;
  pointer-events: none;
  fill: none;
  stroke-width: 2;
}

/* -- Category tabs -- */
body.abd-has-chrome #header .products-tabs {
  display: inline-flex;
  gap: 5px;
  padding: 4px;
  background: #f6f6f3;
  border: 1px solid rgba(16,18,21,.08);
  border-radius: 999px;
  margin-bottom: 16px;
}
body.abd-has-chrome #header .products-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  font-family: inherit;
  color: #62666d;
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: .25s ease;
}
body.abd-has-chrome #header .products-tab span {
  font-size: 9px;
  font-weight: 700;
  background: rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 1px 6px;
}
body.abd-has-chrome #header .products-tab:hover { color: #101215; }
body.abd-has-chrome #header .products-tab.is-active {
  background: #101215;
  color: #fff;
}
body.abd-has-chrome #header .products-tab.is-active span {
  background: rgba(255,255,255,.18);
}

/* -- Products carousel -- */
body.abd-has-chrome #header .products-carousel {
  position: relative;
}
@keyframes railIn {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: translateX(0); }
}
body.abd-has-chrome #header .products-carousel.is-switching {
  animation: railIn .4s cubic-bezier(0.16, 1, 0.3, 1);
}
body.abd-has-chrome #header .products-scroller {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding: 6px 4px 14px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
body.abd-has-chrome #header .products-scroller::-webkit-scrollbar { display: none; }

body.abd-has-chrome #header .carousel-chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  z-index: 5;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(16,18,21,.1);
  box-shadow: 0 10px 24px -6px rgba(15,23,42,.18);
  color: #101215;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.abd-has-chrome #header .carousel-chevron:hover {
  background: #101215;
  color: #fff;
  transform: translateY(-70%) scale(1.08);
}
body.abd-has-chrome #header .carousel-chevron.prev { left: -14px; }
body.abd-has-chrome #header .carousel-chevron.next { right: -14px; }
body.abd-has-chrome #header .carousel-chevron[disabled] {
  opacity: 0;
  pointer-events: none;
}
body.abd-has-chrome #header .carousel-chevron svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}

body.abd-has-chrome #header .products-empty {
  text-align: center;
  padding: 36px 16px;
  font-size: 13px;
  color: #727982;
  font-weight: 600;
}
body.abd-has-chrome #header .products-empty[hidden] {
  display: none !important;
}

/* -- Product card -- */
body.abd-has-chrome #header .product-card {
  position: relative;
  flex: 0 0 210px;
  scroll-snap-align: start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 14px 16px 12px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  overflow: hidden;
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color .35s ease,
              background-color .35s ease;
  cursor: pointer;
}
body.abd-has-chrome #header .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--pc);
  opacity: 0;
  transition: opacity .3s ease;
}
body.abd-has-chrome #header .product-card.is-hidden {
  display: none !important;
}
body.abd-has-chrome #header .product-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
body.abd-has-chrome #header .product-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter .3s ease;
  filter: drop-shadow(0 8px 16px rgba(15,23,42,.14));
}
body.abd-has-chrome #header .product-name {
  font-size: 15px;
  font-weight: 800;
  color: #101215;
  letter-spacing: -0.03em;
  margin-bottom: 3px;
  line-height: 1.2;
}
body.abd-has-chrome #header .product-tagline {
  font-size: 11px;
  line-height: 1.4;
  color: #62666d;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.abd-has-chrome #header .product-explore {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(226,232,240,.6);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #101215;
  transition: color .3s ease;
}
body.abd-has-chrome #header .product-explore svg {
  transition: transform .3s ease;
}
body.abd-has-chrome #header .product-card:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--pc) 38%, #e2e8f0);
  transform: translateY(-7px);
  box-shadow: 0 24px 40px -14px color-mix(in srgb, var(--pc) 32%, transparent);
}
body.abd-has-chrome #header .product-card:hover::before { opacity: 1; }
body.abd-has-chrome #header .product-card:hover .product-logo {
  transform: scale(1.09) translateY(-2px);
  filter: drop-shadow(0 14px 22px color-mix(in srgb, var(--pc) 40%, transparent));
}
body.abd-has-chrome #header .product-card:hover .product-tagline { color: #101215; }
body.abd-has-chrome #header .product-card:hover .product-explore {
  color: var(--pc);
  border-top-color: color-mix(in srgb, var(--pc) 22%, transparent);
}
body.abd-has-chrome #header .product-card:hover .product-explore svg {
  transform: translateX(5px);
}

/* -- White-label banner -- */
body.abd-has-chrome #header .white-label-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(120deg, #0f172a, #1e293b);
  border-radius: 14px;
  padding: 14px 18px;
  margin-top: 16px;
  color: #fff;
}
body.abd-has-chrome #header .wl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  flex-shrink: 0;
}
body.abd-has-chrome #header .wl-icon svg {
  width: 24px !important;
  height: 24px !important;
  max-width: 24px !important;
  max-height: 24px !important;
}
body.abd-has-chrome #header .wl-copy { flex: 1; min-width: 0; }
body.abd-has-chrome #header .wl-tag {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #93c5fd;
}
body.abd-has-chrome #header .wl-copy p {
  font-size: 12px;
  line-height: 1.4;
  color: #cbd5e1;
  margin-top: 3px;
}
body.abd-has-chrome #header .wl-copy strong { color: #fff; font-weight: 700; }
body.abd-has-chrome #header .wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #101215;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  transition: .3s cubic-bezier(0.16, 1, 0.3, 1);
}
body.abd-has-chrome #header .wl-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(255,255,255,.35);
}
body.abd-has-chrome #header .wl-btn svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}

/* -- Standard mega grid (Customize menu) -- */
body.abd-has-chrome #header .standard-mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 280px;
  gap: 24px;
}
body.abd-has-chrome #header .category-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
body.abd-has-chrome #header .category-header h4 {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a8088;
  font-weight: 700;
}
body.abd-has-chrome #header .category-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.abd-has-chrome #header .menu-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: 14px;
  text-decoration: none;
  background: transparent;
  border: 1px solid transparent;
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
}
body.abd-has-chrome #header .menu-card:hover {
  background: #f6f6f3;
  border-color: #e2e8f0;
  transform: translateY(-1px);
}
body.abd-has-chrome #header .menu-card.is-hidden { display: none !important; }
body.abd-has-chrome #header .card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
}
body.abd-has-chrome #header .menu-card:hover .card-icon {
  background: #2563eb;
  color: #fff;
}
body.abd-has-chrome #header .card-icon svg {
  width: 18px !important;
  height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
}
body.abd-has-chrome #header .card-title {
  font-size: 13px;
  font-weight: 600;
  color: #101215;
}
body.abd-has-chrome #header .card-desc {
  font-size: 11px;
  color: #62666d;
  line-height: 1.35;
  margin-top: 2px;
}

/* -- Mega featured panel -- */
body.abd-has-chrome #header .mega-featured {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 14px;
  padding: 20px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body.abd-has-chrome #header .featured-tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #93c5fd;
  font-weight: 700;
}
body.abd-has-chrome #header .featured-title {
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 6px;
}
body.abd-has-chrome #header .featured-desc {
  font-size: 11px;
  color: #cbd5e1;
  line-height: 1.4;
  margin-bottom: 18px;
}
body.abd-has-chrome #header .featured-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  color: #fff;
  padding: 8px 12px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.15);
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
  align-self: flex-start;
}
body.abd-has-chrome #header .featured-btn:hover {
  background: #fff;
  color: #101215;
}

/* -- Mega footer -- */
body.abd-has-chrome #header .mega-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(16,18,21,.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.abd-has-chrome #header .footer-links {
  display: flex;
  gap: 20px;
}
body.abd-has-chrome #header .footer-link {
  font-size: 11px;
  font-weight: 600;
  color: #62666d;
  text-decoration: none;
  transition: .25s ease;
}
body.abd-has-chrome #header .footer-link:hover { color: #2563eb; }
body.abd-has-chrome #header .footer-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #727982;
}
body.abd-has-chrome #header .status-dot {
  width: 8px;
  height: 8px;
  background-color: #64748b;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(100,116,139,.18);
}

/* -- Header actions (Sign In / Get Started / menu) -- */
body.abd-has-chrome #header .header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
body.abd-has-chrome #header .btn-text {
  font-size: 12px;
  font-weight: 650;
  color: #a0a8b4;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 999px;
  transition: .25s ease;
  white-space: nowrap;
}
body.abd-has-chrome #header .btn-text:hover { color: #fff; }
@media (max-width: 1180px) {
  body.abd-has-chrome #header [data-auth-signup] { display: none !important; }
}
body.abd-has-chrome #header.scrolled .btn-text { color: #62666d; }
body.abd-has-chrome #header.scrolled .btn-text:hover { color: #101215; }
body.abd-has-chrome #header .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 650;
  background: #fff;
  color: #101215;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  transition: .25s ease;
  border: 1px solid rgba(255,255,255,.2);
  white-space: nowrap;
}
body.abd-has-chrome #header .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}
body.abd-has-chrome #header.scrolled .btn-primary {
  background: #101215;
  color: #fff;
  border-color: #101215;
}
body.abd-has-chrome #header.scrolled .btn-primary:hover {
  background: var(--blue);
  border-color: var(--blue);
}
body.abd-has-chrome #header .btn-primary svg {
  width: 14px !important;
  height: 14px !important;
  max-width: 14px !important;
  max-height: 14px !important;
}

/* -- is-hidden utility (for search filter) -- */
body.abd-has-chrome #header .is-hidden {
  display: none !important;
}

/* -- Mobile: hide main-nav and actions, show hamburger -- */
@media (max-width: 900px) {
  body.abd-has-chrome #header .main-nav { display: none !important; }
  body.abd-has-chrome #header .btn-text,
  body.abd-has-chrome #header .btn-primary { display: none !important; }
  body.abd-has-chrome #header .menu-button { display: grid !important; }
}
@media (min-width: 901px) {
  body.abd-has-chrome #header .menu-button { display: none !important; }
}

/* Homepage header is the source of truth on every page.
   Ignore leftover hdr-light / light-page classes. */
body.abd-has-chrome #header,
body.abd-has-chrome #header .nav-link,
body.abd-has-chrome #header .btn-text,
body.abd-has-chrome #header .btn-primary,
body.abd-has-chrome #header .product-name,
body.abd-has-chrome #header .product-tagline,
body.abd-has-chrome #header .product-explore,
body.abd-has-chrome #header .submenu-title-group h3,
body.abd-has-chrome #header .submenu-title-group p,
body.abd-has-chrome #header .submenu-search-box input,
body.abd-has-chrome #header .products-tab {
  font-family: "Plus Jakarta Sans", "Instrument Sans", "DM Sans", sans-serif !important;
}

/* Official ABDflow lockup — same as homepage: Raleway, ABD gradient, flow white/ink */
body.abd-has-chrome #header .brand-name,
body.abd-has-chrome #header .abd-brand-name,
body.abd-has-chrome #header .abd-word,
body.abd-has-chrome #header .flow-word,
body.abd-has-chrome #header .brand-tagline {
  font-family: "Raleway", "Segoe UI", Roboto, Arial, sans-serif !important;
}
body.abd-has-chrome #header .logo-text-group {
  --abd-brand-name-size: 22px;
}
body.abd-has-chrome #header .brand-name {
  font-size: 22px !important;
  font-weight: 400 !important;
  letter-spacing: -1px !important;
  line-height: 1 !important;
  color: inherit !important;
}
body.abd-has-chrome #header .abd-word {
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  color: #0052cc !important;
  background: linear-gradient(135deg, #002277, #0077ff) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
body.abd-has-chrome #header .flow-word {
  font-weight: 400 !important;
  letter-spacing: -0.02em !important;
  background: none !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5), -1px -1px 2px rgba(0, 0, 0, 0.1) !important;
}
body.abd-has-chrome #header.scrolled .flow-word {
  color: #111827 !important;
  -webkit-text-fill-color: #111827 !important;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65), 1px 2px 4px rgba(0, 0, 0, 0.08) !important;
}
body.abd-has-chrome #header .brand-tagline {
  font-size: 8px !important;
  font-weight: 800 !important;
  letter-spacing: 2.2px !important;
  text-transform: uppercase !important;
}

body.abd-has-chrome #header.hdr-light:not(.scrolled),
body.abd-has-chrome .site-header.hdr-light:not(.scrolled),
body.abd-has-chrome .hdr-light-page #header:not(.scrolled),
body.abd-has-chrome .hdr-light-page .site-header:not(.scrolled) {
  color: #EAF3FF !important;
  background: linear-gradient(180deg, rgba(19, 30, 52, .66) 0%, rgba(6, 11, 22, .78) 100%) !important;
  border-bottom: 1px solid rgba(151, 196, 255, .22) !important;
  box-shadow: 0 18px 50px rgba(1, 5, 14, .42), inset 0 1px 0 rgba(255, 255, 255, .09) !important;
}
/* The former site-wide message launcher has been retired. */
.abd-message-launcher,
[data-abd-message-launcher]{display:none!important}

body.abd-has-chrome #header.hdr-light:not(.scrolled) .nav-link,
body.abd-has-chrome #header.hdr-light:not(.scrolled) .btn-text,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .nav-link,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .btn-text {
  color: #a0a8b4 !important;
}
body.abd-has-chrome #header.hdr-light:not(.scrolled) .brand-tagline,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .brand-tagline {
  color: #8a919a !important;
}
body.abd-has-chrome #header.hdr-light:not(.scrolled) .nav-item:hover .nav-link,
body.abd-has-chrome #header.hdr-light:not(.scrolled) .nav-item.is-open .nav-link,
body.abd-has-chrome #header.hdr-light:not(.scrolled) .btn-text:hover,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .nav-item:hover .nav-link,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .nav-item.is-open .nav-link {
  color: #fff !important;
  background: rgba(255,255,255,.1) !important;
}
body.abd-has-chrome #header.hdr-light:not(.scrolled) .btn-primary,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .btn-primary {
  background: #fff !important;
  color: #101215 !important;
  border-color: rgba(255,255,255,.2) !important;
}
body.abd-has-chrome #header.hdr-light:not(.scrolled) .icon-button,
body.abd-has-chrome .hdr-light-page #header:not(.scrolled) .icon-button {
  border-color: rgba(151, 196, 255, .32) !important;
  background: rgba(151, 196, 255, .1) !important;
  color: #e6f0fd !important;
}
