/* 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: #0878ff;
  --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;
}

body.abd-has-chrome a { color: inherit; text-decoration: none; }
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 (homepage light treatment) —— */
body.abd-has-chrome .site-header[data-abd-chrome="1"],
body.abd-has-chrome #header[data-abd-chrome="1"] {
  position: fixed !important;
  inset: 0 0 auto !important;
  z-index: 100200 !important;
  height: var(--header) !important;
  display: flex !important;
  align-items: center !important;
  color: #101215 !important;
  background: rgba(244, 244, 241, .92) !important;
  border-bottom: 1px solid rgba(16, 18, 21, .1) !important;
  backdrop-filter: blur(20px) saturate(130%);
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  box-shadow: none !important;
  transform: none !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
body.abd-has-chrome .site-header[data-abd-chrome="1"].scrolled {
  height: 58px !important;
  background: rgba(250, 250, 247, .94) !important;
  box-shadow: 0 10px 34px rgba(16, 18, 21, .08) !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: 10px;
  min-width: max-content;
  color: #101215;
  text-decoration: none;
}
body.abd-has-chrome .brand-logo-wrap {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(16, 18, 21, .08);
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(16, 18, 21, .06);
  overflow: hidden;
}
body.abd-has-chrome .brand-logo-wrap img,
body.abd-has-chrome .site-header .brand img {
  width: 29px !important;
  height: 29px !important;
  max-width: 29px !important;
  max-height: 29px !important;
  object-fit: contain;
  filter: none;
}
body.abd-has-chrome .brand-text {
  color: #101215;
  font-family: Manrope, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: .92;
  letter-spacing: 0;
}
body.abd-has-chrome .brand-text small {
  display: block;
  margin-top: 3px;
  color: #777b82;
  font-family: "DM Sans", sans-serif;
  font-size: 7px;
  letter-spacing: .12em;
  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 {
  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: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 .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;
}
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-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: block;
  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 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-search-empty {
  display: none;
  padding: 14px;
  color: #777e87;
  text-align: center;
  font-size: 12px;
}
body.abd-has-chrome .mobile-search-empty.visible { display: block; }

/* —— 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: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain;
  filter: none;
}
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; }
