@font-face {
  font-family: "Inter";
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-variable-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url("/assets/fonts/inter-latin-variable-italic.woff2") format("woff2");
}

/* Production polish: resilient motion, compact navigation and commerce clarity. */

:root {
  --hsf-global__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-global__font-size: 14px;
  --hsf-global__color: #273136;
  --hsf-row__horizontal-spacing: 0;
  --hsf-row__vertical-spacing: 14px;
  --hsf-module__vertical-spacing: 12px;
  --hsf-background__background-color: #fbfcfb;
  --hsf-background__border-style: none;
  --hsf-background__padding: 0;
  --hsf-field-label__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-label__font-size: 13px;
  --hsf-field-label__color: #273136;
  --hsf-field-label-requiredindicator__color: #a84634;
  --hsf-field-input__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-input__color: #172024;
  --hsf-field-input__background-color: #ffffff;
  --hsf-field-input__placeholder-color: #7a8588;
  --hsf-field-input__border-color: #b8c4c0;
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: 6px;
  --hsf-field-input__padding: 11px 12px;
  --hsf-field-textarea__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-field-textarea__color: #172024;
  --hsf-field-textarea__background-color: #ffffff;
  --hsf-field-textarea__placeholder-color: #7a8588;
  --hsf-field-textarea__border-color: #b8c4c0;
  --hsf-field-textarea__border-width: 1px;
  --hsf-field-textarea__border-style: solid;
  --hsf-field-textarea__border-radius: 6px;
  --hsf-field-textarea__padding: 11px 12px;
  --hsf-richtext__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-richtext__font-size: 14px;
  --hsf-richtext__color: #4f5b5e;
  --hsf-button__font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --hsf-button__font-size: 14px;
  --hsf-button__color: #151a1c;
  --hsf-button__background-color: #ed9228;
  --hsf-button__border-radius: 6px;
  --hsf-button__padding: 12px 22px;
  --hsf-button__box-shadow: 0 10px 22px rgba(208, 121, 24, 0.16);
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-header {
  gap: 10px !important;
}

.site-nav {
  margin-left: auto !important;
}

.header-tools {
  margin-left: 4px !important;
}

.hero-media-video,
.product-how-video {
  opacity: 0;
  transition: opacity 420ms var(--ls-ease) !important;
}

.hero-media-video.is-ready,
.product-how-video.is-ready {
  opacity: 1;
}

.client-track {
  min-width: max-content !important;
  display: flex !important;
  align-items: center !important;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  animation: none !important;
  will-change: transform;
}

.client-track.is-running {
  animation: clientRailRelease 72s linear infinite !important;
  -webkit-animation: clientRailRelease 72s linear infinite !important;
  animation-play-state: running !important;
}

.client-group {
  flex: 0 0 auto !important;
}

@keyframes clientRailRelease {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.shop-assurance {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.shop-product {
  overflow: hidden !important;
}

.shop-media-photo {
  overflow: hidden !important;
}

.shop-media-photo img,
.shop-product-media.is-exact-media .shop-media-photo img,
.shop-product[data-group-id="ican-containers"] .shop-media-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.shop-product .shop-product-media.is-exact-media .shop-media-photo img {
  transform: scale(1.4) !important;
}

.shop-product[data-group-id="oilsafe-drums"] .shop-media-photo img {
  transform: scale(1.8) !important;
}

.shop-add.has-cart-quantity {
  color: var(--ls-green) !important;
  border-color: rgba(23, 95, 82, 0.42) !important;
  background: #edf6f2 !important;
}

.shop-add.is-added {
  transform: translateY(-1px) !important;
  box-shadow: 0 0 0 3px rgba(23, 95, 82, 0.1) !important;
}

.product-quantity-stepper {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  display: grid;
  grid-template-columns: 40px minmax(28px, 1fr) 40px;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 26, 0.2);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 7px 18px rgba(17, 23, 26, 0.05);
}

.product-quantity-stepper[hidden] {
  display: none !important;
}

.product-quantity-stepper button,
.product-quantity-stepper span {
  min-width: 0;
  min-height: 40px;
  display: grid;
  place-items: center;
}

.product-quantity-stepper button {
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ls-green);
  font: inherit;
  font-size: 1rem;
  font-weight: 820;
  line-height: 1;
  background: #f4f7f5;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.product-quantity-stepper button:hover {
  color: #ffffff;
  background: var(--ls-green);
}

.product-quantity-stepper button:disabled {
  color: #9aa4a0;
  background: #eef1ef;
  cursor: not-allowed;
}

.product-quantity-stepper button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 2px solid var(--ls-orange);
  outline-offset: -2px;
}

.product-quantity-stepper span {
  border-inline: 1px solid rgba(17, 23, 26, 0.12);
  color: var(--ls-ink);
  font-size: 0.76rem;
  font-weight: 820;
  background: #ffffff;
}

.shop-actions .product-quantity-stepper {
  flex: 1 1 0;
}

.home-shop-actions .product-quantity-stepper,
.legacy-order-actions .product-quantity-stepper {
  min-height: 42px;
}

.checkout-payment-method {
  position: relative !important;
  overflow: hidden !important;
}

.checkout-payment-method::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ls-orange);
}

.checkout-payment-copy p {
  text-wrap: pretty;
}

/* One clear checkout path: Razorpay only. */
.checkout-payment-section {
  min-width: 0 !important;
  overflow: hidden !important;
}

.checkout-payment-method {
  width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: 132px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  margin-bottom: 12px !important;
  padding: 18px !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  background: #151d21 !important;
  box-shadow: 0 10px 26px rgba(17, 23, 26, 0.11) !important;
}

.checkout-payment-method::before {
  display: none !important;
}

.checkout-payment-brand,
.checkout-payment-copy {
  min-width: 0 !important;
}

.checkout-payment-brand {
  gap: 8px !important;
}

.checkout-payment-brand img {
  width: 112px !important;
  max-width: 100% !important;
}

.checkout-payment-brand span {
  width: fit-content !important;
  max-width: 100% !important;
  white-space: normal !important;
}

.checkout-payment-copy h3 {
  margin: 0 !important;
  font-size: 0.86rem !important;
}

.checkout-payment-copy p {
  max-width: 420px !important;
  margin: 5px 0 0 !important;
  font-size: 0.63rem !important;
}

.checkout-payment-options,
.checkout-payment-assurance {
  display: none !important;
}

.checkout-submit-row {
  min-width: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  align-items: stretch !important;
}

.checkout-actions {
  width: 100% !important;
  min-width: 0 !important;
  grid-template-columns: 1fr !important;
}

.checkout-actions > .button {
  width: 100% !important;
  min-width: 0 !important;
}

.checkout-submit-row p {
  max-width: none !important;
  padding: 0 !important;
}

.checkout-actions > [data-payment-submit]:disabled {
  color: #687176 !important;
  border-color: #d6dcda !important;
  background: #e7ebea !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

.footer-subscribe {
  width: min(100%, 260px);
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.footer-subscribe > label {
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 780;
}

.footer-subscribe > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.footer-subscribe input {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  color: #ffffff;
  background: transparent;
  font: inherit;
  font-size: 0.66rem;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.56);
}

.footer-subscribe input:focus {
  outline: 0;
}

.footer-subscribe > div:focus-within {
  border-color: rgba(233, 145, 50, 0.8);
  box-shadow: 0 0 0 3px rgba(233, 145, 50, 0.12);
}

.footer-subscribe button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  color: var(--ls-ink);
  background: var(--ls-orange);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  cursor: pointer;
}

.footer-subscribe button:hover {
  background: #f0a04b;
}

.footer-subscribe button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.footer-subscribe > p {
  min-height: 15px;
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.56rem;
  line-height: 1.4;
}

.footer-subscribe > p.is-success {
  color: #bce9d8;
}

.footer-subscribe > p.is-error {
  color: #ffd2c4;
}

.social-links {
  align-items: center !important;
  margin-top: 12px !important;
}

.social-link {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  min-height: 38px !important;
  display: grid !important;
  place-items: center !important;
  padding: 9px !important;
  overflow: hidden !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  background: #ffffff !important;
}

.social-link img {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: 0 !important;
  object-fit: contain !important;
  filter: none !important;
  transform: none !important;
}

@media (max-width: 680px) {
  .social-links {
    width: max-content !important;
    max-width: none !important;
    flex-wrap: nowrap !important;
    gap: 5px !important;
  }

  .social-link {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    padding: 8px !important;
  }

  .social-link img {
    width: 16px !important;
    height: 16px !important;
  }
}

@media (max-width: 360px) {
  .social-links {
    gap: 2px !important;
  }

  .social-link {
    width: 31px !important;
    height: 31px !important;
    min-width: 31px !important;
    min-height: 31px !important;
    padding: 8px !important;
  }

  .social-link img {
    width: 15px !important;
    height: 15px !important;
  }
}

@media (hover: hover) and (pointer: fine) {
  .client-marquee:hover .client-track.is-running {
    animation-play-state: paused !important;
  }
}

@media (max-width: 860px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    display: flex !important;
    align-items: center !important;
    padding-inline: 12px !important;
  }

  .site-nav {
    inset: calc(var(--header-h) + 7px) 10px auto auto !important;
    width: min(232px, calc(100vw - 20px)) !important;
    max-width: calc(100vw - 20px) !important;
    margin: 0 !important;
  }

  .site-nav > a {
    min-height: 44px !important;
  }

  .header-tools {
    margin-left: auto !important;
  }

  .header-cart,
  .menu-button {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
  }

  .client-marquee {
    padding-inline: 18px !important;
  }

  .client-track.is-running {
    animation-duration: 58s !important;
    -webkit-animation-duration: 58s !important;
  }
}

@media (max-width: 680px) {
  .shop-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 9px 0 !important;
  }

  .shop-assurance span,
  .shop-assurance span + span {
    min-height: 32px !important;
    padding: 0 8px !important;
  }

  .shop-assurance span:nth-child(odd) {
    padding-left: 0 !important;
    border-left: 0 !important;
  }

  .shop-product {
    min-height: 0 !important;
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: 176px auto !important;
  }

  .shop-product-media {
    min-height: 176px !important;
    height: 176px !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(17, 23, 26, 0.09) !important;
  }

  .shop-media-photo img,
  .shop-product-media.is-exact-media .shop-media-photo img,
  .shop-product[data-group-id="ican-containers"] .shop-media-photo img {
    padding: 13px !important;
  }

  .shop-product .shop-product-media.is-exact-media .shop-media-photo img {
    transform: scale(1.38) !important;
  }

  .shop-product[data-group-id="oilsafe-drums"] .shop-media-photo img {
    transform: scale(1.65) !important;
  }

  .shop-product-copy {
    gap: 9px !important;
    padding: 14px !important;
  }

  .shop-product-meta {
    font-size: 0.54rem !important;
  }

  .shop-product-meta span:last-child {
    display: block !important;
  }

  .shop-product-heading h3 {
    font-size: 1rem !important;
  }

  .shop-product-heading p {
    font-size: 0.64rem !important;
  }

  .shop-variant-field {
    font-size: 0.58rem !important;
  }

  .shop-variant-field select {
    height: 44px !important;
    font-size: 0.64rem !important;
  }

  .shop-buy-row {
    grid-template-columns: 1fr !important;
    align-items: end !important;
    gap: 9px !important;
    padding-top: 10px !important;
  }

  .shop-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
    gap: 10px !important;
  }

  .shop-price strong {
    font-size: 1rem !important;
  }

  .shop-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  .shop-add,
  .shop-buy-now,
  .shop-request-price {
    min-height: 44px !important;
    padding-inline: 7px !important;
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
    white-space: nowrap;
  }

  .product-quantity-stepper {
    min-height: 44px;
    grid-template-columns: 42px minmax(28px, 1fr) 42px;
  }

  .product-quantity-stepper button,
  .product-quantity-stepper span {
    min-height: 42px;
  }

  .checkout-contact-fields,
  .checkout-location-fields {
    grid-template-columns: 1fr !important;
  }

  .checkout-location-fields label:last-child {
    grid-column: auto !important;
  }

  .checkout-form-panel input,
  .checkout-form-panel select,
  .checkout-form-panel textarea {
    min-height: 46px !important;
  }

  .checkout-payment-method {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
    padding: 15px !important;
  }

  .checkout-payment-brand img {
    width: 104px !important;
  }

  .checkout-payment-assurance {
    grid-template-columns: 1fr !important;
  }

  .footer-subscribe {
    width: 100%;
    max-width: 270px;
  }

  .footer-subscribe > div {
    grid-template-columns: 1fr;
  }

  .footer-subscribe button {
    min-height: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 360px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    padding-inline: 9px !important;
  }

  .header-cart,
  .menu-button {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
  }

  .shop-product {
    grid-template-rows: 156px auto !important;
  }

  .shop-product-media {
    min-height: 156px !important;
    height: 156px !important;
  }

  .shop-product-copy {
    padding: 12px !important;
  }

  .shop-buy-row {
    grid-template-columns: 1fr !important;
  }

  .shop-price {
    display: flex !important;
    align-items: baseline !important;
    justify-content: space-between !important;
  }

  .shop-add,
  .shop-buy-now,
  .shop-request-price {
    font-size: 0.58rem !important;
  }

  .product-quantity-stepper {
    grid-template-columns: 38px minmax(26px, 1fr) 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-marquee {
    overflow-x: auto !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    scrollbar-width: thin;
  }

  .client-track,
  .client-track.is-running {
    animation: none !important;
    -webkit-animation: none !important;
    transform: none !important;
  }

  .hero-media-video,
  .product-how-video {
    display: none !important;
  }
}

/* LubeServ journal: quiet editorial pages built for reading, not product-page scanning. */
.journal-index,
.journal-article {
  color: #202a2d;
  background: #ffffff;
}

.journal-index *,
.journal-article * {
  animation: none !important;
}

.journal-index .editorial-breadcrumbs,
.journal-breadcrumbs {
  color: #6d777a;
}

.journal-index .editorial-breadcrumbs a:hover,
.journal-index .editorial-breadcrumbs a:focus-visible,
.journal-breadcrumbs a:hover,
.journal-breadcrumbs a:focus-visible {
  color: #174e45;
}

.journal-masthead {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 66px) 0 54px;
  border-bottom: 1px solid rgba(24, 36, 39, 0.14);
}

.journal-label,
.journal-section-label {
  margin: 0;
  color: #9b5716;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.journal-masthead .journal-label {
  margin-top: 34px;
}

.journal-masthead h1 {
  max-width: 20ch;
  margin: 12px 0 0;
  color: #162124;
  font-size: 3.15rem;
  line-height: 1.04;
}

.journal-masthead-intro {
  max-width: 66ch;
  margin: 22px 0 0;
  color: #566165;
  font-size: 1rem;
  line-height: 1.7;
}

.journal-feature {
  width: min(1160px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(340px, 0.72fr);
  gap: 58px;
  align-items: center;
  margin: 0 auto;
  padding: 58px 0 68px;
  border-bottom: 1px solid rgba(24, 36, 39, 0.14);
}

.journal-feature-image {
  min-width: 0;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #edf0ee;
}

.journal-feature-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.journal-feature-copy {
  min-width: 0;
}

.journal-feature-meta,
.journal-article-kicker,
.journal-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: #6b7578;
  font-size: 0.66rem;
  font-weight: 740;
}

.journal-feature-meta > * + *::before,
.journal-article-kicker > * + *::before,
.journal-article-meta > * + *::before {
  width: 3px;
  height: 3px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 50%;
  background: #dc8628;
  content: "";
  vertical-align: middle;
}

.journal-feature-meta span:first-child,
.journal-article-kicker span:first-child {
  color: #8d4e13;
  text-transform: uppercase;
}

.journal-feature-copy h2 {
  margin: 18px 0 0;
  font-size: 2rem;
  line-height: 1.12;
}

.journal-feature-copy h2 a {
  color: #172225;
  text-decoration: none;
}

.journal-feature-copy h2 a:hover,
.journal-feature-copy h2 a:focus-visible {
  color: #174e45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.journal-feature-copy > p {
  margin: 17px 0 0;
  color: #596468;
  font-size: 0.88rem;
  line-height: 1.68;
}

.journal-byline {
  margin-top: 20px;
  color: #293538;
  font-size: 0.72rem;
  font-weight: 760;
}

.journal-read-link {
  display: inline-block;
  margin-top: 26px;
  color: #126457;
  font-size: 0.75rem;
  font-weight: 820;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.journal-editorial-note {
  width: min(1160px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 70px;
  align-items: start;
  margin: 0 auto;
  padding: 48px 0 72px;
}

.journal-editorial-note h2 {
  max-width: 18ch;
  margin: 9px 0 0;
  color: #182326;
  font-size: 1.55rem;
  line-height: 1.18;
}

.journal-editorial-note > p {
  max-width: 62ch;
  margin: 0;
  color: #5e696c;
  font-size: 0.84rem;
  line-height: 1.72;
}

.journal-article-header {
  width: min(940px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 62px) 0 42px;
}

.journal-article-kicker {
  margin-top: 30px;
}

.journal-article-header h1 {
  max-width: 20ch;
  margin: 16px 0 0;
  color: #142023;
  font-size: 3.25rem;
  line-height: 1.03;
}

.journal-article-dek {
  max-width: 70ch;
  margin: 23px 0 0;
  color: #505c60;
  font-size: 1.05rem;
  line-height: 1.72;
}

.journal-article-meta {
  margin-top: 24px;
  color: #586367;
}

.insights-author-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  line-height: 1.25;
  text-decoration: none;
  transition: color 160ms ease;
}

.insights-author-link span {
  text-decoration: underline;
  text-decoration-color: rgba(23, 78, 69, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.insights-author-avatar {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: block;
  border: 1px solid #d5ddda;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.insights-author-link:hover,
.insights-author-link:focus-visible {
  color: #174e45;
}

.insights-author-link:hover span,
.insights-author-link:focus-visible span {
  text-decoration-color: currentColor;
}

.journal-hero-figure {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.journal-hero-figure img {
  width: 100%;
  aspect-ratio: 2 / 1;
  display: block;
  object-fit: cover;
  object-position: 62% center;
  border-radius: 4px;
}

.journal-hero-figure figcaption,
.journal-inline-figure figcaption {
  margin-top: 9px;
  color: #707a7d;
  font-size: 0.64rem;
  line-height: 1.5;
}

.journal-article-shell {
  width: min(1080px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 180px minmax(0, 730px);
  justify-content: center;
  gap: 72px;
  margin: 0 auto;
  padding: 66px 0 84px;
}

.journal-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  display: grid;
  gap: 3px;
  padding-left: 15px;
  border-left: 1px solid rgba(24, 36, 39, 0.16);
}

.journal-toc p {
  margin: 0 0 9px;
  color: #273235;
  font-size: 0.64rem;
  font-weight: 840;
  text-transform: uppercase;
}

.journal-toc a {
  padding: 6px 0;
  color: #6a7477;
  font-size: 0.65rem;
  font-weight: 680;
  line-height: 1.35;
  text-decoration: none;
}

.journal-toc a:hover,
.journal-toc a:focus-visible,
.journal-toc a[aria-current="location"] {
  color: #174e45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.journal-prose {
  min-width: 0;
  color: #374347;
}

.journal-prose > section,
.journal-opening {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.journal-prose > section {
  margin-top: 58px;
}

.journal-prose h2 {
  max-width: 26ch;
  margin: 9px 0 22px;
  color: #172225;
  font-size: 2rem;
  line-height: 1.14;
}

.journal-prose h3 {
  margin: 32px 0 10px;
  color: #1d292c;
  font-size: 1.08rem;
  line-height: 1.35;
}

.journal-prose p,
.journal-prose li {
  color: #3e4a4e;
  font-size: 0.97rem;
  line-height: 1.82;
}

.journal-prose p {
  margin: 0 0 21px;
}

.journal-prose a {
  color: #126457;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.journal-opening > p:first-child {
  color: #243033;
  font-size: 1.14rem;
  line-height: 1.76;
}

.journal-opening > p:first-child::first-letter {
  float: left;
  margin: 8px 8px 0 0;
  color: #174e45;
  font-size: 3.8rem;
  font-weight: 780;
  line-height: 0.76;
}

.journal-quote {
  margin: 48px 0;
  padding: 5px 0 5px 24px;
  border-left: 3px solid #da8428;
}

.journal-quote p {
  max-width: 31ch;
  margin: 0;
  color: #172225;
  font-size: 1.35rem;
  font-weight: 690;
  line-height: 1.45;
}

.journal-inline-figure {
  margin: 56px 0;
}

.journal-inline-figure-wide {
  width: calc(100% + 140px);
  margin-left: -70px;
}

.journal-inline-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.journal-question-list {
  margin: 27px 0 28px;
  padding: 0;
  border-top: 1px solid rgba(24, 36, 39, 0.15);
  list-style: none;
  counter-reset: journal-question;
}

.journal-question-list li {
  position: relative;
  min-height: 66px;
  display: flex;
  align-items: center;
  padding: 13px 0 13px 46px;
  border-bottom: 1px solid rgba(24, 36, 39, 0.13);
  counter-increment: journal-question;
}

.journal-question-list li::before {
  position: absolute;
  left: 0;
  color: #a05b18;
  content: counter(journal-question, decimal-leading-zero);
  font-size: 0.68rem;
  font-weight: 820;
}

.journal-source-ref {
  display: inline-grid;
  min-width: 1.28rem;
  height: 1.28rem;
  place-items: center;
  margin-left: 0.16rem;
  border-radius: 50%;
  color: #174e45 !important;
  background: #e9f1ed;
  font-size: 0.62rem;
  font-weight: 820;
  line-height: 1;
  text-decoration: none !important;
  vertical-align: super;
}

.journal-source-ref:hover,
.journal-source-ref:focus-visible {
  color: #ffffff !important;
  background: #174e45;
  outline: 2px solid rgba(218, 132, 40, 0.52);
  outline-offset: 2px;
}

.journal-field-box {
  margin: 30px 0 28px;
  padding: 24px 26px 23px;
  border: 1px solid rgba(24, 36, 39, 0.13);
  border-left: 4px solid #da8428;
  border-radius: 4px;
  background: #f6f8f5;
}

.journal-field-box h3,
.journal-risk-heading h3 {
  margin: 0;
  color: #172225;
  font-size: 1.08rem;
}

.journal-spec-list {
  margin: 19px 0 0;
  padding-left: 21px;
  columns: 1;
}

.journal-spec-list li,
.journal-plain-list li {
  padding-left: 3px;
}

.journal-spec-list li {
  margin: 0 0 10px;
  padding-right: 12px;
  break-inside: avoid;
}

.journal-plain-list {
  display: grid;
  gap: 8px;
  margin: 19px 0 27px;
  padding-left: 21px;
}

.journal-route-table-wrap {
  width: 100%;
  margin: 32px 0 36px;
  overflow: hidden;
  border: 1px solid rgba(24, 36, 39, 0.14);
  border-radius: 4px;
  background: #ffffff;
}

.journal-route-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.journal-route-table caption {
  padding: 13px 16px 12px;
  color: #6c7476;
  background: #f5f7f4;
  font-size: 0.64rem;
  font-weight: 820;
  text-align: left;
  text-transform: uppercase;
}

.journal-route-table th,
.journal-route-table td {
  padding: 13px 14px;
  border-right: 1px solid rgba(24, 36, 39, 0.1);
  border-bottom: 1px solid rgba(24, 36, 39, 0.1);
  text-align: left;
  vertical-align: top;
}

.journal-route-table th:last-child,
.journal-route-table td:last-child {
  border-right: 0;
}

.journal-route-table tbody tr:last-child td {
  border-bottom: 0;
}

.journal-route-table th {
  color: #ffffff;
  background: #1d292c;
  font-size: 0.65rem;
  font-weight: 780;
}

.journal-route-table td {
  color: #435054;
  font-size: 0.72rem;
  line-height: 1.55;
}

.journal-route-table td:first-child {
  width: 18%;
  color: #182326;
  font-weight: 780;
}

.journal-risk-tool {
  margin: 34px 0 30px;
  padding: 26px;
  border-top: 4px solid #da8428;
  border-radius: 4px;
  color: #ffffff;
  background: #1d292c;
}

.journal-risk-heading > span,
.journal-diagnostic-cta > div > span {
  display: block;
  margin-bottom: 8px;
  color: #f0a24d;
  font-size: 0.62rem;
  font-weight: 840;
  text-transform: uppercase;
}

.journal-risk-heading h3 {
  color: #ffffff;
}

.journal-risk-heading p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  line-height: 1.55;
}

.journal-risk-tool .journal-route-table-wrap {
  margin: 22px 0 18px;
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
}

.journal-risk-tool .journal-route-table th {
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.08);
}

.journal-risk-tool .journal-route-table td,
.journal-risk-tool .journal-route-table td:first-child {
  color: rgba(255, 255, 255, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
}

.journal-risk-formula {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.78rem !important;
  line-height: 1.55 !important;
}

.journal-risk-formula strong {
  color: #ffffff;
}

.journal-verification-box > p:last-child {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 36, 39, 0.12);
  color: #657074;
  font-size: 0.78rem;
  line-height: 1.65;
}

.journal-conclusion {
  padding-top: 34px;
  border-top: 1px solid rgba(24, 36, 39, 0.15);
}

.journal-diagnostic-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  margin: 56px 0 0;
  padding: 28px 30px;
  border-top: 4px solid #da8428;
  border-radius: 4px;
  color: #ffffff;
  background: #172225;
}

.journal-prose .journal-diagnostic-cta h2 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 1.38rem;
  line-height: 1.18;
}

.journal-diagnostic-cta p {
  max-width: 58ch;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.62;
}

.journal-diagnostic-cta .button {
  min-width: 150px;
  white-space: nowrap;
}

.journal-sources {
  padding-top: 35px;
  border-top: 1px solid rgba(24, 36, 39, 0.15);
}

.journal-sources ol {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 21px;
}

.journal-sources li {
  padding-left: 4px;
  font-size: 0.75rem;
  line-height: 1.58;
}

.journal-source-note {
  margin-top: 26px !important;
  padding-top: 17px;
  border-top: 1px solid rgba(24, 36, 39, 0.12);
  color: #657074 !important;
  font-size: 0.71rem !important;
  line-height: 1.62 !important;
}

.journal-article-footer {
  width: min(1080px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 80px;
  align-items: end;
  margin: 0 auto;
  padding: 52px 0 72px;
  border-top: 1px solid rgba(24, 36, 39, 0.15);
}

.journal-article-footer h2 {
  max-width: 24ch;
  margin: 9px 0 12px;
  color: #172225;
  font-size: 1.6rem;
  line-height: 1.18;
}

.journal-article-footer > div > p:last-child {
  max-width: 64ch;
  margin: 0;
  color: #606b6e;
  font-size: 0.8rem;
  line-height: 1.65;
}

.journal-article-footer nav {
  display: grid;
  border-top: 1px solid rgba(24, 36, 39, 0.14);
}

.journal-article-footer nav a {
  padding: 11px 0;
  border-bottom: 1px solid rgba(24, 36, 39, 0.12);
  color: #175e53;
  font-size: 0.72rem;
  font-weight: 760;
  text-decoration: none;
}

.journal-article-footer nav a:hover,
.journal-article-footer nav a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 980px) {
  .journal-feature {
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    gap: 38px;
  }

  .journal-article-shell {
    grid-template-columns: 160px minmax(0, 700px);
    gap: 42px;
  }

  .journal-inline-figure-wide {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .journal-masthead,
  .journal-feature,
  .journal-editorial-note,
  .journal-article-header,
  .journal-hero-figure,
  .journal-article-shell,
  .journal-article-footer {
    width: min(100% - 40px, 700px);
  }

  .journal-masthead {
    padding-top: calc(var(--header-h) + 42px);
  }

  .journal-masthead h1,
  .journal-article-header h1 {
    font-size: 2.55rem;
  }

  .journal-feature,
  .journal-editorial-note,
  .journal-article-footer {
    grid-template-columns: 1fr;
  }

  .journal-feature {
    gap: 30px;
  }

  .journal-editorial-note,
  .journal-article-footer {
    gap: 24px;
  }

  .journal-article-shell {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .journal-toc {
    display: none;
  }

  .journal-hero-figure img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 520px) {
  .journal-masthead,
  .journal-feature,
  .journal-editorial-note,
  .journal-article-header,
  .journal-hero-figure,
  .journal-article-shell,
  .journal-article-footer {
    width: calc(100% - 30px);
  }

  .journal-masthead {
    padding: calc(var(--header-h) + 28px) 0 36px;
  }

  .journal-masthead .journal-label {
    margin-top: 24px;
  }

  .journal-masthead h1 {
    font-size: 2rem;
  }

  .journal-masthead-intro {
    margin-top: 16px;
    font-size: 0.84rem;
    line-height: 1.65;
  }

  .journal-feature {
    padding: 34px 0 44px;
  }

  .journal-feature-copy h2 {
    font-size: 1.55rem;
  }

  .journal-feature-copy > p {
    font-size: 0.8rem;
  }

  .journal-editorial-note {
    padding: 38px 0 54px;
  }

  .journal-editorial-note h2 {
    font-size: 1.35rem;
  }

  .journal-editorial-note > p {
    font-size: 0.76rem;
  }

  .journal-article-header {
    padding: calc(var(--header-h) + 27px) 0 30px;
  }

  .journal-article-kicker {
    margin-top: 22px;
  }

  .journal-article-header h1 {
    margin-top: 13px;
    font-size: 2.05rem;
    line-height: 1.07;
  }

  .journal-article-dek {
    margin-top: 17px;
    font-size: 0.88rem;
    line-height: 1.64;
  }

  .journal-article-meta {
    margin-top: 18px;
    font-size: 0.61rem;
  }

  .journal-hero-figure img {
    aspect-ratio: 4 / 3;
    object-position: 70% center;
  }

  .journal-article-shell {
    padding: 38px 0 58px;
  }

  .journal-prose > section {
    margin-top: 46px;
  }

  .journal-prose h2 {
    margin-bottom: 17px;
    font-size: 1.5rem;
  }

  .journal-prose h3 {
    margin-top: 27px;
    font-size: 1rem;
  }

  .journal-prose p,
  .journal-prose li {
    font-size: 0.87rem;
    line-height: 1.75;
  }

  .journal-opening > p:first-child {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .journal-opening > p:first-child::first-letter {
    margin-top: 7px;
    font-size: 3.2rem;
  }

  .journal-quote {
    margin: 38px 0;
    padding-left: 18px;
  }

  .journal-quote p {
    font-size: 1.13rem;
  }

  .journal-inline-figure {
    margin: 42px 0;
  }

  .journal-inline-figure img {
    aspect-ratio: 4 / 3;
  }

  .journal-question-list li {
    min-height: 58px;
    padding-left: 38px;
  }

  .journal-article-footer {
    padding: 40px 0 54px;
  }

  .journal-article-footer h2 {
    font-size: 1.36rem;
  }
}

/* Insights: a focused editorial system for industrial reliability guidance. */
body[data-page="insights"],
body[data-page="insight-article"] {
  background: #ffffff;
}

.editorial-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 720;
}

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

.editorial-breadcrumbs a:hover,
.editorial-breadcrumbs a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  font-weight: 700;
}

.editorial-meta > * {
  display: inline-flex;
  align-items: center;
}

.editorial-meta > * + *::before {
  width: 3px;
  height: 3px;
  margin: 0 10px;
  border-radius: 50%;
  background: #eaa13a;
  content: "";
}

.insights-index-hero,
.insight-article-hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  overflow: hidden;
  background: #122a26;
}

.insights-index-hero {
  min-height: 570px;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 66px) max(24px, calc((100vw - var(--max)) / 2)) 68px;
}

.insights-index-hero-image,
.insight-article-hero > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insights-index-hero-image {
  object-position: center center;
}

.insights-index-hero-shade,
.insight-article-hero-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(8, 22, 19, 0.58);
}

.insights-index-hero-copy {
  width: min(680px, 100%);
  display: grid;
  justify-items: start;
  gap: 17px;
  color: #ffffff;
}

.insights-index-hero-copy .eyebrow,
.insight-article-hero-copy .eyebrow {
  margin: 0;
  color: #f2b45c;
}

.insights-index-hero-copy h1 {
  max-width: 15ch;
  margin: 0;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1.02;
}

.insights-index-hero-copy > p:not(.eyebrow) {
  max-width: 66ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.58;
}

.insights-index-hero-copy .button {
  margin-top: 3px;
}

.insights-library {
  padding-block: 62px 70px !important;
  background: #f5f7f5 !important;
}

.insights-library-head {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin: 0 auto 28px;
}

.insights-library-head h2 {
  max-width: 20ch;
  margin: 7px 0 0;
  font-size: 2rem;
  line-height: 1.08;
}

.insights-library-head > p {
  margin: 0;
  color: #616c6f;
  font-size: 0.82rem;
  line-height: 1.58;
}

.insights-story-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.insights-story-card {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.78fr) minmax(0, 1.22fr);
  overflow: hidden;
  border: 1px solid rgba(18, 29, 31, 0.12);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 29, 31, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.insights-story-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 95, 82, 0.28);
  box-shadow: 0 16px 34px rgba(18, 29, 31, 0.09);
}

.insights-story-media {
  min-height: 250px;
  display: block;
  overflow: hidden;
  background: #e9eeeb;
}

.insights-story-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.insights-story-card:hover .insights-story-media img {
  transform: scale(1.025);
}

.insights-story-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.insights-story-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #6a7476;
  font-size: 0.62rem;
  font-weight: 760;
}

.insights-story-meta span:first-child {
  color: #92500f;
  text-transform: uppercase;
}

.insights-story-copy h3 {
  margin: 18px 0 0;
  font-size: 1.18rem;
  line-height: 1.22;
}

.insights-story-copy h3 a {
  color: #182225;
  text-decoration: none;
}

.insights-story-copy h3 a:hover,
.insights-story-copy h3 a:focus-visible {
  color: var(--ls-green);
}

.insights-story-copy p {
  margin: 10px 0 0;
  color: #626c70;
  font-size: 0.76rem;
  line-height: 1.55;
}

.insights-story-copy .text-link {
  margin-top: auto;
  padding-top: 20px;
}

.insights-principles {
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background: #143e37;
}

.insights-principles-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1.44fr);
  align-items: center;
  gap: 70px;
  margin: 0 auto;
}

.insights-principles h2 {
  margin: 6px 0 0;
  color: #ffffff;
  font-size: 1.65rem;
}

.insights-principles .eyebrow {
  color: #f2b45c;
}

.insights-principle-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.insights-principle-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 8px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.75rem;
  font-weight: 720;
  line-height: 1.42;
}

.insight-article-hero {
  min-height: 610px;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 74px) max(24px, calc((100vw - var(--max)) / 2)) 72px;
}

.insight-article-hero > img {
  object-position: center center;
}

.insight-article-hero-shade {
  background: rgba(8, 20, 18, 0.63);
}

.insight-article-hero-copy {
  width: min(830px, 100%);
  display: grid;
  justify-items: start;
  gap: 15px;
  color: #ffffff;
}

.insight-article-hero-copy h1 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 1.02;
}

.insight-article-hero-copy > p:not(.eyebrow) {
  max-width: 70ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
  line-height: 1.58;
}

.insight-article-layout {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: 210px minmax(0, 760px);
  justify-content: center;
  gap: 62px;
  margin: 0 auto;
  padding: 64px 0 76px;
}

.insight-article-toc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
  display: grid;
  gap: 3px;
  padding: 0 0 0 16px;
  border-left: 1px solid rgba(18, 29, 31, 0.14);
}

.insight-article-toc p {
  margin: 0 0 8px;
  color: #172124;
  font-size: 0.68rem;
  font-weight: 850;
  text-transform: uppercase;
}

.insight-article-toc a {
  padding: 6px 0;
  color: #687275;
  font-size: 0.68rem;
  font-weight: 690;
  line-height: 1.32;
  text-decoration: none;
}

.insight-article-toc a:hover,
.insight-article-toc a:focus-visible {
  color: var(--ls-green);
}

.insight-article-content {
  min-width: 0;
  color: #303a3e;
}

.insight-article-content > section {
  scroll-margin-top: calc(var(--header-h) + 22px);
  margin-top: 58px;
}

.insight-article-content h2 {
  max-width: 25ch;
  margin: 7px 0 19px;
  color: #172124;
  font-size: 1.85rem;
  line-height: 1.13;
}

.insight-article-content h3 {
  margin: 0;
  color: #1c272a;
  font-size: 1.05rem;
  line-height: 1.3;
}

.insight-article-content p,
.insight-article-content li {
  color: #465155;
  font-size: 0.91rem;
  line-height: 1.76;
}

.insight-article-content p {
  margin: 0 0 18px;
}

.insight-article-content p a,
.insight-sources a {
  color: #126457;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.insight-article-lede {
  margin: 0 !important;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(18, 29, 31, 0.13);
  color: #263235 !important;
  font-size: 1.08rem !important;
  font-weight: 590;
  line-height: 1.7 !important;
}

.insight-answer {
  margin-top: 38px !important;
  padding: 28px;
  border: 1px solid rgba(23, 95, 82, 0.18);
  border-left: 4px solid var(--ls-green);
  border-radius: 6px;
  background: #f1f7f3;
}

.insight-answer h2 {
  margin-bottom: 22px;
}

.insight-workflow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(18, 29, 31, 0.1);
  border-radius: 5px;
  background: #ffffff;
}

.insight-workflow > div {
  min-width: 0;
  min-height: 90px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border-right: 1px solid rgba(18, 29, 31, 0.1);
}

.insight-workflow > div:last-child {
  border-right: 0;
}

.insight-workflow strong {
  color: #174e45;
  font-size: 0.69rem;
}

.insight-workflow span {
  color: #667174;
  font-size: 0.58rem;
  line-height: 1.35;
}

.insight-definition {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-block: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-definition > * {
  min-height: 86px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border-right: 1px solid rgba(18, 29, 31, 0.1);
}

.insight-definition > *:last-child {
  border-right: 0;
}

.insight-definition strong {
  color: #172124;
  font-size: 0.78rem;
  line-height: 1.4;
}

.insight-definition span {
  color: #616c70;
  font-size: 0.67rem;
  line-height: 1.45;
}

.insight-article-figure {
  margin: 54px 0;
}

.insight-article-figure img {
  width: 100%;
  aspect-ratio: 3 / 2;
  display: block;
  object-fit: cover;
  border-radius: 6px;
}

.insight-article-figure figcaption {
  margin-top: 9px;
  color: #6b7578;
  font-size: 0.65rem;
  line-height: 1.45;
}

.insight-control {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid rgba(18, 29, 31, 0.12);
}

.insight-control:last-child {
  border-bottom: 1px solid rgba(18, 29, 31, 0.12);
}

.insight-control-label {
  padding-top: 3px;
  color: #985311;
  font-size: 0.66rem;
  font-weight: 850;
  text-transform: uppercase;
}

.insight-control p {
  margin: 9px 0 0;
  font-size: 0.83rem;
}

.insight-control .text-link {
  margin-top: 13px;
}

.insight-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.insight-inline-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(23, 95, 82, 0.22);
  border-radius: 5px;
  color: #155e52;
  background: #f2f7f4;
  font-size: 0.67rem;
  font-weight: 780;
  text-decoration: none;
}

.insight-inline-links a:hover,
.insight-inline-links a:focus-visible {
  border-color: var(--ls-green);
  background: #e7f2ec;
}

.insight-audit-table {
  width: 100%;
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid rgba(18, 29, 31, 0.13);
  border-radius: 6px;
}

.insight-audit-table table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
  background: #ffffff;
}

.insight-audit-table th,
.insight-audit-table td {
  padding: 13px 15px;
  border-bottom: 1px solid rgba(18, 29, 31, 0.1);
  border-right: 1px solid rgba(18, 29, 31, 0.08);
  text-align: left;
  vertical-align: top;
}

.insight-audit-table th:last-child,
.insight-audit-table td:last-child {
  border-right: 0;
}

.insight-audit-table tbody tr:last-child td {
  border-bottom: 0;
}

.insight-audit-table th {
  color: #ffffff;
  background: #174e45;
  font-size: 0.67rem;
  font-weight: 820;
}

.insight-audit-table td {
  color: #4f5a5e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.insight-audit-table td:first-child {
  color: #1f2a2d;
  font-weight: 790;
}

.insight-decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 26px 0 24px;
}

.insight-decision-grid > div {
  min-height: 116px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(18, 29, 31, 0.12);
  border-radius: 6px;
  background: #f7f8f6;
}

.insight-decision-grid strong {
  color: #1d292c;
  font-size: 0.76rem;
}

.insight-decision-grid span {
  color: #657074;
  font-size: 0.69rem;
  line-height: 1.5;
}

.insight-faq {
  border-top: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-faq details {
  border-bottom: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-faq summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 2px;
  color: #1e292c;
  cursor: pointer;
  font-size: 0.79rem;
  font-weight: 780;
  list-style: none;
}

.insight-faq summary::-webkit-details-marker {
  display: none;
}

.insight-faq summary::after {
  flex: 0 0 auto;
  color: #99601f;
  content: "+";
  font-size: 1.15rem;
  font-weight: 500;
}

.insight-faq details[open] summary::after {
  content: "-";
}

.insight-faq details p {
  max-width: 68ch;
  margin: -2px 0 18px;
  font-size: 0.78rem;
}

.insight-sources {
  padding-top: 34px;
  border-top: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-sources ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
}

.insight-sources li {
  padding-left: 4px;
  font-size: 0.73rem;
  line-height: 1.55;
}

.insight-source-note {
  margin-top: 24px !important;
  padding: 14px 16px;
  border-left: 3px solid #d99331;
  color: #586367 !important;
  background: #f7f4ed;
  font-size: 0.7rem !important;
  line-height: 1.55 !important;
}

.insight-next-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 58px;
  padding: 50px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(18, 29, 31, 0.11);
  background: #eef3ef;
}

.insight-next-action > div:first-child {
  max-width: 720px;
}

.insight-next-action h2 {
  margin: 7px 0 10px;
  color: #172124;
  font-size: 1.85rem;
  line-height: 1.12;
}

.insight-next-action p:not(.eyebrow) {
  margin: 0;
  color: #5e696c;
  font-size: 0.78rem;
  line-height: 1.55;
}

.insight-next-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

@media (max-width: 1100px) {
  .insights-story-card {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .insights-story-media {
    min-height: 230px;
  }

  .insights-story-copy {
    padding: 20px;
  }

  .insight-article-layout {
    grid-template-columns: 185px minmax(0, 720px);
    gap: 38px;
  }

  .insight-workflow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .insight-workflow > div:nth-child(4) {
    border-right: 0;
  }

  .insight-workflow > div:nth-child(-n + 4) {
    border-bottom: 1px solid rgba(18, 29, 31, 0.1);
  }

  .insight-definition {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .insight-definition strong {
    grid-column: 1 / -1;
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 29, 31, 0.1);
  }
}

@media (max-width: 860px) {
  .insights-index-hero {
    min-height: 535px;
    padding: calc(var(--header-h) + 42px) 22px 48px;
  }

  .insights-index-hero-copy h1,
  .insight-article-hero-copy h1 {
    font-size: 2.5rem;
  }

  .insights-library-head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .insights-library-head > p {
    max-width: 60ch;
  }

  .insights-story-grid {
    grid-template-columns: 1fr;
  }

  .insights-story-card {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .insights-principles-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .insight-article-hero {
    min-height: 565px;
    padding: calc(var(--header-h) + 46px) 22px 52px;
  }

  .insight-article-layout {
    width: min(760px, calc(100% - 40px));
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 46px;
  }

  .insight-article-toc {
    position: static;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 38px;
    padding: 14px;
    border: 1px solid rgba(18, 29, 31, 0.12);
    border-radius: 6px;
    background: #f7f8f6;
  }

  .insight-article-toc p {
    grid-column: 1 / -1;
  }

  .insight-next-action {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .editorial-breadcrumbs {
    font-size: 0.62rem;
  }

  .editorial-meta {
    font-size: 0.62rem;
  }

  .insights-index-hero {
    min-height: 492px;
    padding: calc(var(--header-h) + 28px) 16px 34px;
  }

  .insights-index-hero-image,
  .insight-article-hero > img {
    object-position: 66% center;
  }

  .insights-index-hero-shade,
  .insight-article-hero-shade {
    background: rgba(7, 19, 17, 0.68);
  }

  .insights-index-hero-copy {
    gap: 12px;
  }

  .insights-index-hero-copy h1,
  .insight-article-hero-copy h1 {
    max-width: 18ch;
    font-size: 2rem;
    line-height: 1.05;
  }

  .insights-index-hero-copy > p:not(.eyebrow),
  .insight-article-hero-copy > p:not(.eyebrow) {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .insights-library {
    padding-block: 40px 46px !important;
  }

  .insights-library-head {
    margin-bottom: 20px;
  }

  .insights-library-head h2 {
    font-size: 1.45rem;
  }

  .insights-library-head > p {
    font-size: 0.72rem;
  }

  .insights-story-grid {
    gap: 9px;
  }

  .insights-story-card {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .insights-story-media {
    min-height: 178px;
  }

  .insights-story-copy {
    padding: 14px;
  }

  .insights-story-meta {
    font-size: 0.55rem;
  }

  .insights-story-meta span:last-child {
    display: none;
  }

  .insights-story-copy h3 {
    margin-top: 11px;
    font-size: 0.84rem;
  }

  .insights-story-copy p {
    margin-top: 7px;
    font-size: 0.64rem;
    line-height: 1.45;
  }

  .insights-story-copy .text-link {
    padding-top: 10px;
    font-size: 0.63rem;
  }

  .insights-principles {
    padding: 36px 16px;
  }

  .insights-principles h2 {
    font-size: 1.35rem;
  }

  .insights-principle-list {
    grid-template-columns: 1fr;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .insights-principle-list span {
    min-height: 48px;
    padding: 10px 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.67rem;
  }

  .insight-article-hero {
    min-height: 520px;
    padding: calc(var(--header-h) + 30px) 16px 38px;
  }

  .insight-article-hero-copy {
    gap: 11px;
  }

  .insight-article-layout {
    width: calc(100% - 30px);
    padding: 34px 0 52px;
  }

  .insight-article-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
    padding: 12px;
  }

  .insight-article-toc a {
    font-size: 0.61rem;
  }

  .insight-article-lede {
    padding-bottom: 24px;
    font-size: 0.9rem !important;
    line-height: 1.62 !important;
  }

  .insight-article-content > section {
    margin-top: 44px;
  }

  .insight-article-content h2 {
    font-size: 1.42rem;
  }

  .insight-article-content h3 {
    font-size: 0.94rem;
  }

  .insight-article-content p,
  .insight-article-content li {
    font-size: 0.79rem;
    line-height: 1.7;
  }

  .insight-answer {
    margin-top: 30px !important;
    padding: 18px;
  }

  .insight-workflow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-workflow > div,
  .insight-workflow > div:nth-child(4) {
    min-height: 74px;
    border-right: 1px solid rgba(18, 29, 31, 0.1);
    border-bottom: 1px solid rgba(18, 29, 31, 0.1);
  }

  .insight-workflow > div:nth-child(even) {
    border-right: 0;
  }

  .insight-workflow > div:last-child {
    border-bottom: 0;
  }

  .insight-definition {
    grid-template-columns: 1fr;
  }

  .insight-definition > *,
  .insight-definition strong {
    min-height: 52px;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 29, 31, 0.1);
  }

  .insight-definition > *:last-child {
    border-bottom: 0;
  }

  .insight-article-figure {
    margin: 40px 0;
  }

  .insight-control {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 23px 0;
  }

  .insight-control p {
    font-size: 0.76rem;
  }

  .insight-decision-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .insight-decision-grid > div {
    min-height: 0;
    padding: 15px;
  }

  .insight-faq summary {
    min-height: 54px;
    font-size: 0.72rem;
  }

  .insight-next-action {
    gap: 20px;
    padding: 38px 16px;
  }

  .insight-next-action h2 {
    font-size: 1.4rem;
  }

  .insight-next-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .insight-next-actions .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .insights-index-hero-copy h1,
  .insight-article-hero-copy h1 {
    font-size: 1.78rem;
  }

  .insights-story-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .insights-story-copy p {
    display: none;
  }

  .insight-article-toc {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insights-story-card,
  .insights-story-media img {
    transition: none;
  }

  .insights-story-card:hover,
  .insights-story-card:hover .insights-story-media img {
    transform: none;
  }
}

/* Insights editorial refinement: clearer decisions, stronger evidence and less visual repetition. */
.insights-feature-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #f2b45c;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insights-feature-tags span + span {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.insights-topic-band {
  padding: 48px max(24px, calc((100vw - var(--max)) / 2));
  color: #ffffff;
  background: #123f37;
}

.insights-topic-inner {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: 68px;
  margin: 0 auto;
}

.insights-topic-inner .eyebrow {
  color: #f2b45c;
}

.insights-topic-inner h2 {
  max-width: 18ch;
  margin: 7px 0 0;
  color: #ffffff;
  font-size: 1.72rem;
  line-height: 1.13;
}

.insights-topic-links {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.insights-topic-links a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 0.68fr) minmax(0, 1fr);
  gap: 22px;
  padding: 16px 42px 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition: padding-left 160ms ease, background-color 160ms ease;
}

.insights-topic-links a::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #f2b45c;
  border-right: 2px solid #f2b45c;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.insights-topic-links a:hover,
.insights-topic-links a:focus-visible {
  padding-left: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.insights-topic-links strong {
  font-size: 0.78rem;
  line-height: 1.4;
}

.insights-topic-links span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  line-height: 1.45;
}

.insight-article-refined .insight-article-layout {
  grid-template-columns: 220px minmax(0, 790px);
  gap: 64px;
}

.insight-article-refined .insight-article-content h2 {
  max-width: 28ch;
}

.insight-article-refined .insight-article-toc a[aria-current="location"] {
  margin-left: -17px;
  padding-left: 16px;
  border-left: 2px solid #d98322;
  color: #174e45;
}

.insight-keypoints {
  margin-top: 42px !important;
  padding: 28px 0 0;
  border-top: 3px solid #174e45;
}

.insight-keypoint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  border-block: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-keypoint-grid > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 20px 18px;
  border-right: 1px solid rgba(18, 29, 31, 0.12);
}

.insight-keypoint-grid > div:first-child {
  padding-left: 0;
}

.insight-keypoint-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.insight-keypoint-grid strong {
  color: #182427;
  font-size: 0.79rem;
  line-height: 1.42;
}

.insight-keypoint-grid span {
  color: #667174;
  font-size: 0.7rem;
  line-height: 1.55;
}

.insight-route-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 28px 0 0;
  border-block: 1px solid rgba(18, 29, 31, 0.14);
}

.insight-route-map > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px 14px;
  border-right: 1px solid rgba(18, 29, 31, 0.11);
}

.insight-route-map > div:first-child {
  padding-left: 0;
}

.insight-route-map > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.insight-route-map strong {
  color: #174e45;
  font-size: 0.76rem;
}

.insight-route-map span,
.insight-route-map small {
  font-size: 0.65rem;
  line-height: 1.45;
}

.insight-route-map span {
  color: #2d393c;
  font-weight: 720;
}

.insight-route-map small {
  color: #6c7679;
}

.insight-pullquote {
  margin: 34px 0 0;
  padding: 2px 0 2px 22px;
  border-left: 4px solid #d98322;
}

.insight-pullquote p {
  max-width: 32ch;
  margin: 0 !important;
  color: #172124 !important;
  font-size: 1.3rem !important;
  font-weight: 760;
  line-height: 1.35 !important;
}

.source-ref {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 2px;
  border: 1px solid rgba(18, 100, 87, 0.34);
  border-radius: 50%;
  color: #126457 !important;
  font-size: 0.58rem;
  font-weight: 820;
  line-height: 1;
  text-decoration: none !important;
  vertical-align: text-top;
}

.source-ref:hover,
.source-ref:focus-visible {
  color: #ffffff !important;
  background: #126457;
}

.insight-definition-refined {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insight-definition-refined > div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 16px 18px;
  border-right: 1px solid rgba(18, 29, 31, 0.11);
}

.insight-definition-refined > div:first-child {
  padding-left: 0;
}

.insight-definition-refined > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.insight-definition-refined strong {
  color: #174e45;
  font-size: 0.73rem;
}

.insight-definition-refined span {
  color: #5f6a6e;
  font-size: 0.7rem;
  line-height: 1.45;
}

.insight-stage {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 30px;
  padding: 31px 0;
  border-top: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-stage:last-child {
  border-bottom: 1px solid rgba(18, 29, 31, 0.13);
}

.insight-stage-label {
  padding-top: 3px;
  color: #9a5717;
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.insight-stage h3 {
  max-width: 34ch;
  font-size: 1.12rem;
}

.insight-stage p {
  margin: 10px 0 0;
  font-size: 0.84rem;
}

.insight-proof {
  margin-top: 15px !important;
  padding-top: 13px;
  border-top: 1px solid rgba(18, 29, 31, 0.1);
  color: #657074 !important;
  font-size: 0.7rem !important;
  line-height: 1.45 !important;
}

.insight-proof strong {
  color: #283437;
}

.insight-stage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 16px;
}

.insight-stage-links a {
  color: #126457;
  font-size: 0.7rem;
  font-weight: 790;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.insight-sampling-figure {
  margin-top: 56px;
}

.insight-walk {
  margin-top: 27px;
  border-top: 1px solid rgba(18, 29, 31, 0.14);
}

.insight-walk > div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr) 210px;
  gap: 20px;
  align-items: start;
  padding: 15px 0;
  border-bottom: 1px solid rgba(18, 29, 31, 0.11);
}

.insight-walk .insight-walk-head {
  padding-block: 10px;
  color: #7a8386;
  font-size: 0.6rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insight-walk strong {
  color: #1d292c;
  font-size: 0.72rem;
}

.insight-walk span,
.insight-walk small {
  font-size: 0.69rem;
  line-height: 1.48;
}

.insight-walk span {
  color: #3f4b4f;
  font-weight: 680;
}

.insight-walk small {
  color: #6a7477;
}

.insight-selection-list {
  margin-top: 26px;
  border-top: 1px solid rgba(18, 29, 31, 0.14);
}

.insight-selection-list a {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(155px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 14px 34px 14px 0;
  border-bottom: 1px solid rgba(18, 29, 31, 0.12);
  color: inherit;
  text-decoration: none;
  transition: padding-left 160ms ease, background-color 160ms ease;
}

.insight-selection-list a::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #c36e1c;
  border-right: 2px solid #c36e1c;
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.insight-selection-list a:hover,
.insight-selection-list a:focus-visible {
  padding-left: 10px;
  background: #f3f6f4;
}

.insight-selection-list span {
  color: #4d595d;
  font-size: 0.71rem;
  font-weight: 680;
  line-height: 1.45;
}

.insight-selection-list strong {
  color: #174e45;
  font-size: 0.74rem;
  line-height: 1.4;
}

.insight-selection-list small {
  color: #717a7d;
  font-size: 0.65rem;
  line-height: 1.45;
}

.insight-sources li {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

@media (max-width: 1100px) {
  .insight-article-refined .insight-article-layout {
    grid-template-columns: 185px minmax(0, 720px);
    gap: 38px;
  }

  .insight-walk > div {
    grid-template-columns: 115px minmax(0, 1fr) 180px;
  }

  .insight-selection-list a {
    grid-template-columns: minmax(190px, 1fr) minmax(145px, 0.72fr) minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .insights-topic-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .insight-article-refined .insight-article-layout {
    grid-template-columns: 1fr;
  }

  .insight-route-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-route-map > div:nth-child(2) {
    border-right: 0;
  }

  .insight-route-map > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(18, 29, 31, 0.11);
  }

  .insight-walk > div {
    grid-template-columns: 120px minmax(0, 1fr) 190px;
  }

  .insight-selection-list a {
    grid-template-columns: minmax(180px, 0.9fr) minmax(145px, 0.7fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .insights-feature-tags {
    gap: 8px;
    font-size: 0.58rem;
  }

  .insights-feature-tags span + span {
    padding-left: 8px;
  }

  .insights-topic-band {
    padding: 36px 16px;
  }

  .insights-topic-inner {
    gap: 22px;
  }

  .insights-topic-inner h2 {
    font-size: 1.35rem;
  }

  .insights-topic-links a {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-block: 13px;
  }

  .insight-keypoints {
    margin-top: 32px !important;
    padding-top: 22px;
  }

  .insight-keypoint-grid {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .insight-keypoint-grid > div,
  .insight-keypoint-grid > div:first-child,
  .insight-keypoint-grid > div:last-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 29, 31, 0.11);
  }

  .insight-keypoint-grid > div:last-child {
    border-bottom: 0;
  }

  .insight-route-map > div,
  .insight-route-map > div:first-child,
  .insight-route-map > div:last-child {
    padding: 15px 12px;
  }

  .insight-route-map > div:nth-child(odd) {
    padding-left: 0;
  }

  .insight-route-map > div:nth-child(even) {
    padding-right: 0;
  }

  .insight-route-map span,
  .insight-route-map small {
    font-size: 0.6rem;
  }

  .insight-pullquote {
    margin-top: 26px;
    padding-left: 16px;
  }

  .insight-pullquote p {
    font-size: 1.05rem !important;
  }

  .insight-definition-refined {
    grid-template-columns: 1fr;
  }

  .insight-definition-refined > div,
  .insight-definition-refined > div:first-child,
  .insight-definition-refined > div:last-child {
    min-height: 0;
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(18, 29, 31, 0.11);
  }

  .insight-definition-refined > div:last-child {
    border-bottom: 0;
  }

  .insight-stage {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }

  .insight-stage h3 {
    font-size: 0.98rem;
  }

  .insight-stage p {
    font-size: 0.77rem;
  }

  .insight-sampling-figure {
    margin-top: 42px;
  }

  .insight-walk .insight-walk-head {
    display: none;
  }

  .insight-walk > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 14px 0;
  }

  .insight-selection-list a {
    grid-template-columns: 1fr;
    gap: 5px;
    min-height: 0;
    padding-block: 14px;
  }

  .insight-selection-list strong {
    grid-row: 1;
  }

  .insight-selection-list span {
    grid-row: 2;
  }

  .insight-selection-list small {
    grid-row: 3;
  }
}

@media (max-width: 360px) {
  .insight-article-refined .insight-article-toc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .insights-topic-links a,
  .insight-selection-list a {
    transition: none;
  }
}

/* Legacy references belong with product selection, not the Insights publication. */
.product-guides-band {
  padding-block: 54px 62px !important;
  background: #eef2ef !important;
}

.product-guides-band .section-head {
  margin-bottom: 24px;
}

.product-guides-band .section-head h2 {
  margin-bottom: 8px;
}

.product-guide-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin: 0 auto;
}

.product-guide-item {
  min-width: 0;
}

.product-guide-item > a {
  min-height: 226px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid rgba(18, 29, 31, 0.12);
  border-radius: 6px;
  color: inherit;
  background: #ffffff;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-guide-item > a:hover,
.product-guide-item > a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(23, 95, 82, 0.3);
  box-shadow: 0 14px 30px rgba(18, 29, 31, 0.08);
}

.product-guide-media {
  min-width: 0;
  display: block;
  overflow: hidden;
  border-right: 1px solid rgba(18, 29, 31, 0.1);
  background: #f7f8f6;
}

.product-guide-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 200ms ease;
}

.product-guide-media img[src*="g-lube"] {
  padding: 18px;
  object-fit: contain;
  background: #ffffff;
}

.product-guide-item > a:hover .product-guide-media img,
.product-guide-item > a:focus-visible .product-guide-media img {
  transform: scale(1.025);
}

.product-guide-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.product-guide-copy small {
  color: #995511;
  font-size: 0.62rem;
  font-weight: 820;
  text-transform: uppercase;
}

.product-guide-copy > strong {
  margin-top: 15px;
  color: #182326;
  font-size: 1rem;
  line-height: 1.28;
}

.product-guide-copy > span {
  margin-top: 10px;
  color: #626d70;
  font-size: 0.71rem;
  line-height: 1.55;
}

.product-guide-copy b {
  margin-top: auto;
  padding-top: 18px;
  color: #126457;
  font-size: 0.69rem;
}

@media (max-width: 960px) {
  .product-guide-item > a {
    grid-template-columns: 150px minmax(0, 1fr);
  }

  .product-guide-copy {
    padding: 20px;
  }
}

@media (max-width: 760px) {
  .product-guide-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-guide-item > a {
    min-height: 188px;
    grid-template-columns: 150px minmax(0, 1fr);
  }
}

@media (max-width: 480px) {
  .product-guides-band {
    padding-block: 40px 46px !important;
  }

  .product-guide-item > a {
    min-height: 174px;
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .product-guide-copy {
    padding: 14px;
  }

  .product-guide-copy > strong {
    margin-top: 9px;
    font-size: 0.82rem;
  }

  .product-guide-copy > span {
    margin-top: 7px;
    font-size: 0.63rem;
    line-height: 1.45;
  }

  .product-guide-copy b {
    padding-top: 10px;
    font-size: 0.63rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-guide-item > a,
  .product-guide-media img {
    transition: none;
  }

  .product-guide-item > a:hover,
  .product-guide-item > a:focus-visible,
  .product-guide-item > a:hover .product-guide-media img,
  .product-guide-item > a:focus-visible .product-guide-media img {
    transform: none;
  }
}

/* Checkout 2026: progressive, compact and single-path. */
.checkout-hero {
  margin-top: var(--header-h) !important;
  min-height: 0 !important;
  padding: 28px max(24px, calc((100vw - 1180px) / 2)) 24px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 28px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: #111a1e !important;
}

.checkout-hero-copy {
  max-width: 620px !important;
}

.checkout-hero h1 {
  max-width: none !important;
  margin: 5px 0 7px !important;
  font-size: 2rem !important;
  line-height: 1.05 !important;
}

.checkout-hero > div > p:not(.eyebrow) {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.68) !important;
  font-size: 0.75rem !important;
}

.checkout-steps {
  width: 340px !important;
  min-height: 42px !important;
  padding: 3px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 7px !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.checkout-steps span {
  min-height: 34px !important;
  display: grid !important;
  place-items: center !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: rgba(255, 255, 255, 0.62) !important;
  background: transparent !important;
  font-size: 0.64rem !important;
}

.checkout-steps span.is-complete {
  color: rgba(255, 255, 255, 0.88) !important;
}

.checkout-steps span.is-active {
  color: #151d21 !important;
  background: var(--ls-orange) !important;
  box-shadow: 0 4px 12px rgba(200, 111, 27, 0.2) !important;
}

.checkout-band {
  width: min(100%, 1232px) !important;
  margin-inline: auto !important;
  padding: 24px 26px 56px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 340px !important;
  gap: 18px !important;
  align-items: start !important;
  background: transparent !important;
}

.checkout-form-panel,
.checkout-summary {
  border: 1px solid #dbe1de !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 16px 42px rgba(18, 29, 33, 0.07) !important;
}

.checkout-form-panel {
  min-width: 0 !important;
  overflow: hidden !important;
}

.checkout-mobile-orderbar {
  display: none !important;
}

.checkout-form-section {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 26px 28px !important;
  border: 0 !important;
}

.checkout-form-section + .checkout-form-section,
.checkout-details-action + .checkout-form-section {
  border-top: 1px solid #e4e9e6 !important;
}

.checkout-form-head {
  margin: 0 0 20px !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 12px !important;
}

.checkout-section-label {
  min-height: 25px !important;
  padding: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  border: 1px solid #cfe0da !important;
  border-radius: 5px !important;
  color: #176052 !important;
  background: #edf6f2 !important;
  font-size: 0.54rem !important;
  line-height: 1 !important;
}

.checkout-form-head h2 {
  margin: 0 !important;
  font-size: 1.25rem !important;
  line-height: 1.15 !important;
}

.checkout-form-head > div > p {
  margin: 4px 0 0 !important;
  color: #748084 !important;
  font-size: 0.68rem !important;
}

.checkout-contact-fields {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(190px, 0.82fr) !important;
  gap: 14px !important;
}

.checkout-contact-fields label:last-child {
  grid-column: auto !important;
  max-width: none !important;
}

.checkout-form-panel .checkout-form-section label,
.checkout-form-panel .field-label {
  gap: 7px !important;
  color: #364145 !important;
  font-size: 0.67rem !important;
  font-weight: 760 !important;
}

.checkout-form-panel input,
.checkout-form-panel select,
.checkout-form-panel textarea {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 47px !important;
  padding: 0 12px !important;
  border: 1px solid #cfd7d3 !important;
  border-radius: 6px !important;
  color: #182125 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  font-size: 0.73rem !important;
}

.checkout-form-panel textarea {
  min-height: 88px !important;
  padding-block: 11px !important;
}

.checkout-form-panel input:focus,
.checkout-form-panel select:focus,
.checkout-form-panel textarea:focus {
  border-color: #237565 !important;
  outline: 0 !important;
  box-shadow: 0 0 0 3px rgba(35, 117, 101, 0.11) !important;
}

.checkout-address {
  margin-top: 16px !important;
  gap: 12px !important;
}

.checkout-company-field,
.checkout-optional-field,
.checkout-note-details {
  margin-top: 12px !important;
  border: 1px solid #e0e6e3 !important;
  border-radius: 6px !important;
  background: #f8faf9 !important;
}

.checkout-company-field summary,
.checkout-optional-field summary,
.checkout-note-details summary {
  width: 100% !important;
  min-height: 44px !important;
  padding: 0 13px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  color: #236b5d !important;
  font-size: 0.65rem !important;
  font-weight: 760 !important;
  list-style: none !important;
  cursor: pointer !important;
}

.checkout-company-field summary::-webkit-details-marker,
.checkout-optional-field summary::-webkit-details-marker,
.checkout-note-details summary::-webkit-details-marker {
  display: none !important;
}

.checkout-company-field summary > span,
.checkout-optional-field summary > span,
.checkout-note-details summary > span {
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
}

.checkout-company-field summary small,
.checkout-optional-field summary small,
.checkout-note-details summary small {
  padding: 3px 6px !important;
  border: 1px solid #d9e2de !important;
  border-radius: 4px !important;
  color: #6b777b !important;
  background: #ffffff !important;
  font-size: 0.52rem !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.checkout-company-field summary::after,
.checkout-optional-field summary::after,
.checkout-note-details summary::after {
  content: "+" !important;
  width: 25px !important;
  height: 25px !important;
  margin-left: auto !important;
  display: grid !important;
  place-items: center !important;
  flex: 0 0 25px !important;
  border: 1px solid #d9e2de !important;
  border-radius: 50% !important;
  color: #8d4e14 !important;
  background: #ffffff !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease !important;
}

.checkout-company-field[open] summary::after,
.checkout-optional-field[open] summary::after,
.checkout-note-details[open] summary::after {
  content: "-" !important;
  border-color: rgba(35, 117, 101, 0.28) !important;
  color: #176052 !important;
  background: #edf6f2 !important;
}

.checkout-company-field summary:hover::after,
.checkout-optional-field summary:hover::after,
.checkout-note-details summary:hover::after {
  border-color: rgba(35, 117, 101, 0.34) !important;
}

.checkout-company-field summary:focus-visible,
.checkout-optional-field summary:focus-visible,
.checkout-note-details summary:focus-visible {
  outline: 3px solid rgba(35, 117, 101, 0.18) !important;
  outline-offset: 2px !important;
}

.checkout-company-field[open],
.checkout-optional-field[open],
.checkout-note-details[open] {
  border-color: rgba(35, 117, 101, 0.24) !important;
  background: #ffffff !important;
}

.checkout-company-field label,
.checkout-optional-field label,
.checkout-note-details label {
  padding: 0 13px 13px !important;
}

.checkout-location-fields {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.shipping-method {
  min-height: 52px !important;
  margin-top: 14px !important;
  padding: 10px 12px !important;
  border: 1px solid #dbe7e2 !important;
  border-radius: 6px !important;
  background: #f2f8f5 !important;
}

.shipping-method strong {
  font-size: 0.65rem !important;
}

.shipping-method span,
.shipping-method b {
  font-size: 0.59rem !important;
}

.checkout-invoice-section {
  padding-block: 19px !important;
  display: grid !important;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: center !important;
  background: #fbfcfb !important;
}

.checkout-invoice-section .checkout-form-head {
  margin: 0 !important;
}

.checkout-choice {
  min-height: 62px !important;
  margin: 0 !important;
  padding: 11px 13px !important;
  border: 1px solid #dce3df !important;
  border-radius: 6px !important;
  background: #ffffff !important;
}

.checkout-choice input {
  width: 18px !important;
  min-height: 18px !important;
}

.checkout-choice strong {
  font-size: 0.69rem !important;
}

.checkout-choice small {
  font-size: 0.59rem !important;
}

.checkout-gst-fields:not([hidden]) {
  grid-column: 1 / -1 !important;
  margin-top: -4px !important;
  padding-top: 2px !important;
}

.checkout-details-action {
  padding: 18px 28px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 16px !important;
  border-top: 1px solid #e4e9e6 !important;
  background: #ffffff !important;
}

.checkout-details-action[hidden] {
  display: none !important;
}

.checkout-details-action .button {
  min-width: 220px !important;
  min-height: 49px !important;
}

.checkout-details-action .form-note {
  order: -1 !important;
  margin-right: auto !important;
}

.checkout-payment-section {
  min-width: 0 !important;
  padding-block: 24px 27px !important;
  overflow: visible !important;
  scroll-margin-top: calc(var(--header-h) + 14px) !important;
  background: #fbfcfb !important;
}

.checkout-payment-section[hidden] {
  display: none !important;
}

.checkout-payment-method {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 72px !important;
  margin: 0 0 12px !important;
  padding: 11px 13px !important;
  display: grid !important;
  grid-template-columns: 18px 104px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 12px !important;
  border: 1px solid #cfdcd6 !important;
  border-radius: 7px !important;
  color: #182125 !important;
  background: #ffffff !important;
  box-shadow: 0 7px 20px rgba(20, 31, 35, 0.05) !important;
  cursor: default !important;
}

.checkout-payment-method::before {
  display: none !important;
}

.checkout-payment-method > input {
  width: 18px !important;
  min-height: 18px !important;
  margin: 0 !important;
  accent-color: #176052 !important;
  box-shadow: none !important;
}

.checkout-payment-brand {
  width: 104px !important;
  min-width: 0 !important;
  min-height: 38px !important;
  padding: 0 9px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 5px !important;
  background: #1f5fd1 !important;
}

.checkout-payment-brand img {
  width: 86px !important;
  max-width: 100% !important;
}

.checkout-payment-copy {
  min-width: 0 !important;
}

.checkout-payment-copy h3 {
  margin: 0 !important;
  color: #1b2428 !important;
  font-size: 0.78rem !important;
}

.checkout-payment-copy p {
  margin: 3px 0 0 !important;
  color: #6d797d !important;
  font-size: 0.62rem !important;
}

.checkout-payment-selected {
  min-height: 25px !important;
  padding: 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  border-radius: 999px !important;
  color: #176052 !important;
  background: #e9f5f0 !important;
  font-size: 0.56rem !important;
  font-weight: 800 !important;
}

.checkout-payment-method:not(.is-ready) .checkout-payment-selected {
  color: #6b7478 !important;
  background: #eef1ef !important;
}

.checkout-payment-method.is-test .checkout-payment-selected {
  color: #8b5a13 !important;
  background: #fff4df !important;
}

.checkout-submit-row {
  margin-top: 12px !important;
}

.checkout-actions > .button {
  min-height: 52px !important;
  border-radius: 6px !important;
  font-size: 0.76rem !important;
}

.checkout-submit-row p:empty {
  display: none !important;
}

.checkout-summary {
  position: sticky !important;
  top: calc(var(--header-h) + 16px) !important;
  padding: 20px !important;
}

.checkout-summary-head {
  margin-bottom: 14px !important;
}

.checkout-summary-head h2 {
  font-size: 1rem !important;
}

.checkout-summary ul {
  max-height: 260px !important;
  overflow-y: auto !important;
}

.checkout-line {
  gap: 9px !important;
}

.checkout-line img {
  width: 50px !important;
  height: 50px !important;
  border-radius: 5px !important;
}

.checkout-line strong,
.checkout-line > b {
  font-size: 0.64rem !important;
}

.checkout-line span,
.checkout-line small {
  font-size: 0.54rem !important;
}

.checkout-total {
  padding-block: 15px !important;
}

.checkout-total strong {
  font-size: 1.22rem !important;
}

@media (max-width: 820px) {
  .checkout-hero {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .checkout-steps {
    width: min(100%, 390px) !important;
  }

  .checkout-band {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .checkout-summary {
    position: static !important;
    top: auto !important;
  }

  .checkout-contact-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .checkout-contact-fields label:last-child {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 7px) !important;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    min-height: 56px !important;
    height: 56px !important;
    padding: 7px 11px !important;
  }

  .brand {
    min-width: 0 !important;
  }

  .brand-mark {
    width: 27px !important;
    height: 27px !important;
  }

  .brand-name {
    font-size: 0.78rem !important;
  }

  .brand-country {
    font-size: 0.38rem !important;
  }

  .header-cart,
  .menu-button {
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    border-radius: 6px !important;
  }

  .hero {
    min-height: calc(100svh - 56px) !important;
  }

  .hero-copy {
    padding-inline: 13px !important;
  }

  .hero h1 {
    max-width: 330px !important;
    font-size: 2rem !important;
    line-height: 1.02 !important;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 335px !important;
    font-size: 0.75rem !important;
    line-height: 1.48 !important;
  }

  .hero-actions {
    gap: 7px !important;
  }

  .hero-actions .button {
    min-height: 44px !important;
    padding-inline: 12px !important;
    font-size: 0.65rem !important;
  }

  .product-cockpit {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-cockpit > div:nth-child(n + 3) {
    display: none !important;
  }

  .home-systems,
  .benefits-band,
  .industries-band,
  .home-application {
    padding-block: 30px !important;
  }

  .home-section-intro {
    gap: 8px !important;
    margin-bottom: 17px !important;
  }

  .home-section-intro h2 {
    font-size: 1.5rem !important;
    line-height: 1.08 !important;
  }

  .home-section-intro > p {
    font-size: 0.69rem !important;
    line-height: 1.5 !important;
  }

  .shop-hero-inner {
    padding-inline: 13px !important;
  }

  .shop-hero h1 {
    font-size: 1.72rem !important;
    line-height: 1.06 !important;
  }

  .shop-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .shop-assurance span:nth-child(n + 3) {
    display: none !important;
  }

  .shop-band {
    padding-inline: 12px !important;
  }

  .shop-product {
    grid-template-rows: 164px auto !important;
    border-radius: 8px !important;
  }

  .shop-product-media {
    min-height: 164px !important;
    height: 164px !important;
  }

  .checkout-hero {
    padding: 17px 12px 15px !important;
    gap: 13px !important;
  }

  .checkout-hero h1 {
    margin-block: 4px 6px !important;
    font-size: 1.55rem !important;
  }

  .checkout-hero > div > p:not(.eyebrow) {
    display: none !important;
  }

  .checkout-steps {
    width: 100% !important;
    min-height: 38px !important;
  }

  .checkout-steps span {
    min-height: 30px !important;
    font-size: 0.58rem !important;
  }

  .checkout-band {
    padding: 10px 11px 32px !important;
    display: block !important;
  }

  .checkout-form-panel {
    border-radius: 8px !important;
  }

  .checkout-mobile-orderbar {
    display: block !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #e4e9e6 !important;
    border-radius: 0 !important;
    background: #fbfcfb !important;
  }

  .checkout-mobile-orderbar > summary {
    min-height: 57px !important;
    padding: 0 14px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 12px !important;
    list-style: none !important;
    cursor: pointer !important;
    position: relative !important;
  }

  .checkout-mobile-orderbar > summary::-webkit-details-marker {
    display: none !important;
  }

  .checkout-mobile-orderbar > summary span {
    min-width: 0 !important;
    display: grid !important;
    gap: 2px !important;
  }

  .checkout-mobile-orderbar > summary small {
    color: #7a8589 !important;
    font-size: 0.5rem !important;
    font-weight: 760 !important;
    text-transform: uppercase !important;
  }

  .checkout-mobile-orderbar > summary b,
  .checkout-mobile-orderbar > summary strong {
    color: #1a2327 !important;
    font-size: 0.7rem !important;
  }

  .checkout-mobile-orderbar > summary::after {
    content: "+" !important;
    position: absolute !important;
    right: 14px !important;
    color: #a45a14 !important;
    font-size: 0.76rem !important;
  }

  .checkout-mobile-orderbar > summary strong {
    margin-right: 19px !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
  }

  .checkout-mobile-orderbar[open] > summary::after {
    content: "\2212" !important;
  }

  .checkout-mobile-order-content {
    padding: 0 14px 13px !important;
    border-top: 1px solid #edf0ee !important;
  }

  .checkout-mobile-order-content ul {
    margin: 0 !important;
    padding: 4px 0 !important;
    list-style: none !important;
  }

  .checkout-mobile-order-content .checkout-line img {
    width: 42px !important;
    height: 42px !important;
  }

  .checkout-mobile-order-content > a,
  .checkout-mobile-order-content > button {
    padding: 0 !important;
    border: 0 !important;
    color: #9b5514 !important;
    background: transparent !important;
    font: inherit !important;
    font-size: 0.61rem !important;
    font-weight: 780 !important;
  }

  .checkout-form-section {
    padding: 20px 14px !important;
  }

  .checkout-form-head {
    margin-bottom: 16px !important;
    gap: 9px !important;
  }

  .checkout-section-label {
    min-height: 23px !important;
    padding-inline: 7px !important;
    font-size: 0.5rem !important;
  }

  .checkout-form-head h2 {
    font-size: 1.12rem !important;
  }

  .checkout-form-head > div > p {
    font-size: 0.62rem !important;
  }

  .checkout-contact-fields {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 11px !important;
  }

  .checkout-contact-fields label:last-child {
    grid-column: auto !important;
    max-width: none !important;
  }

  .checkout-form-panel input,
  .checkout-form-panel select,
  .checkout-form-panel textarea {
    min-height: 45px !important;
    font-size: 0.7rem !important;
  }

  .checkout-address {
    margin-top: 12px !important;
  }

  .checkout-company-field,
  .checkout-optional-field,
  .checkout-note-details {
    margin-top: 10px !important;
  }

  .checkout-location-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .checkout-location-fields label:last-child {
    grid-column: 1 / -1 !important;
  }

  .shipping-method {
    min-height: 48px !important;
    padding: 8px 10px !important;
  }

  .shipping-method span {
    display: none !important;
  }

  .checkout-invoice-section {
    padding-block: 16px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .checkout-invoice-section .checkout-form-head {
    margin: 0 !important;
  }

  .checkout-choice {
    min-height: 58px !important;
  }

  .checkout-details-action {
    padding: 15px 14px 17px !important;
    display: grid !important;
    gap: 8px !important;
  }

  .checkout-details-action .button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 49px !important;
  }

  .checkout-details-action .form-note {
    order: 2 !important;
    margin: 0 !important;
  }

  .checkout-payment-section {
    padding-block: 20px !important;
  }

  .checkout-payment-method {
    min-height: 68px !important;
    padding: 10px !important;
    grid-template-columns: 17px 86px minmax(0, 1fr) !important;
    gap: 9px !important;
  }

  .checkout-payment-brand {
    width: 86px !important;
    min-height: 34px !important;
    padding-inline: 7px !important;
  }

  .checkout-payment-brand img {
    width: 72px !important;
  }

  .checkout-payment-copy h3 {
    font-size: 0.72rem !important;
  }

  .checkout-payment-copy p {
    font-size: 0.57rem !important;
  }

  .checkout-payment-selected {
    display: none !important;
  }

  .checkout-actions > .button {
    min-height: 50px !important;
  }

  .checkout-summary {
    display: none !important;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 1.8rem !important;
  }

  .hero-actions {
    grid-template-columns: 1fr !important;
  }

  .checkout-location-fields {
    grid-template-columns: 1fr !important;
  }

  .checkout-location-fields label:last-child {
    grid-column: auto !important;
  }

  .checkout-payment-method {
    grid-template-columns: 17px 78px minmax(0, 1fr) !important;
  }

  .checkout-payment-brand {
    width: 78px !important;
  }
}

/* Global catalogue advisor: a single, quiet prompt with specific product-range outcomes. */
.advisor-nudge {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 286px;
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 32px;
  align-items: center;
  gap: 9px;
  padding: 9px;
  border: 1px solid rgba(21, 25, 29, 0.12);
  border-radius: 8px;
  color: #1b2327;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(21, 25, 29, 0.18);
  animation: advisor-nudge-in 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
  pointer-events: auto;
}

.advisor-nudge[hidden] {
  display: none !important;
}

.advisor-nudge::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  border-radius: 8px 0 0 8px;
  background: #c96816;
}

.advisor-nudge-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #f3f5f2;
}

.advisor-nudge-mark img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.advisor-nudge-copy {
  min-width: 0;
  padding: 3px 0;
  border: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.advisor-nudge-copy strong,
.advisor-nudge-copy span {
  display: block;
  letter-spacing: 0;
}

.advisor-nudge-copy strong {
  font-size: 0.76rem;
  line-height: 1.25;
}

.advisor-nudge-copy span {
  margin-top: 2px;
  color: #687178;
  font-size: 0.63rem;
  line-height: 1.35;
}

.advisor-nudge-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 5px;
  color: #626b71;
  background: transparent;
  font: inherit;
  font-size: 1.1rem;
  cursor: pointer;
}

.advisor-nudge-copy:hover strong,
.advisor-nudge-copy:focus-visible strong {
  color: #9b5012;
}

.advisor-nudge-close:hover,
.advisor-nudge-close:focus-visible {
  color: #1b2327;
  background: #f0f2ef;
}

.advisor-result-card > div {
  min-width: 0;
}

.advisor-result-media {
  position: relative;
  width: 88px !important;
  height: 88px !important;
  border: 1px solid rgba(21, 25, 29, 0.1);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 5px 14px rgba(17, 23, 26, 0.07);
}

.advisor-result-media > img {
  display: block;
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
}

.advisor-result-media.has-secondary > img:first-child {
  padding: 9px 9px 16px;
}

.advisor-result-media.has-secondary > img + img {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 42px;
  height: 34px;
  padding: 3px;
  border: 1px solid rgba(21, 25, 29, 0.14);
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(17, 23, 26, 0.13);
}

.advisor-result-card {
  grid-template-columns: 88px minmax(0, 1fr) !important;
}

.advisor-result-card > div > small {
  display: block;
  margin-top: 6px;
  color: #8f4b12;
  font-size: 0.61rem;
  font-weight: 800;
  line-height: 1.3;
}

.advisor-result-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@keyframes advisor-nudge-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  .advisor-nudge {
    right: 0;
    bottom: 56px;
    width: min(286px, calc(100vw - 24px));
  }

  .advisor-result-card p {
    -webkit-line-clamp: 2;
  }

  .advisor-result-card {
    grid-template-columns: 76px minmax(0, 1fr) !important;
  }

  .advisor-result-media {
    width: 76px !important;
    height: 76px !important;
  }

  .advisor-result-media > img {
    padding: 6px;
  }

  .advisor-result-media.has-secondary > img:first-child {
    padding: 8px 8px 14px;
  }

  .advisor-result-media.has-secondary > img + img {
    right: -3px;
    bottom: -3px;
    width: 36px;
    height: 29px;
  }
}

@media (max-width: 860px) {
  body[data-page="shop"] .product-advisor {
    display: grid !important;
  }

  body[data-page="shop"] .advisor-launch {
    display: flex !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advisor-nudge {
    animation: none;
  }
}

/* Homepage commerce shelf */
.home-shop {
  padding-block: 46px !important;
  background: #fff;
  border-bottom: 1px solid rgba(23, 25, 28, 0.1);
}

.home-shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.home-shop-heading > div {
  max-width: 650px;
}

.home-shop-heading h2 {
  max-width: 620px;
  margin: 7px 0 0;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.home-shop-heading > div > p:last-child {
  max-width: 560px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.52;
}

.home-shop-heading > .button {
  flex: 0 0 auto;
}

.home-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-shop-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 178px minmax(0, 1fr);
  border: 1px solid rgba(23, 25, 28, 0.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 9px 24px rgba(23, 25, 28, 0.055);
  transition:
    transform 180ms var(--ls-ease),
    border-color 180ms var(--ls-ease),
    box-shadow 180ms var(--ls-ease);
}

.home-shop-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 95, 73, 0.3);
  box-shadow: 0 16px 34px rgba(23, 25, 28, 0.1);
}

.home-shop-media {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 0;
  border-bottom: 1px solid rgba(23, 25, 28, 0.09);
  background: #f5f7f4;
}

.home-shop-media img {
  width: 100%;
  height: 100%;
  padding: 15px;
  object-fit: contain;
  object-position: center;
  transition: transform 220ms var(--ls-ease);
}

.home-shop-card:hover .home-shop-media img {
  transform: scale(1.035);
}

.home-shop-card[data-group-id="ican-containers"] .home-shop-media img {
  transform: scale(1.14);
}

.home-shop-card[data-group-id="ican-containers"]:hover .home-shop-media img {
  transform: scale(1.18);
}

.home-shop-card[data-group-id="oilsafe-drums"] .home-shop-media img {
  transform: scale(1.65);
}

.home-shop-card[data-group-id="oilsafe-drums"]:hover .home-shop-media img {
  transform: scale(1.7);
}

.home-shop-media > span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 5px 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 4px;
  color: #fff;
  background: rgba(20, 29, 29, 0.84);
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-shop-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.home-shop-range {
  margin: 0;
  overflow: hidden;
  color: #97500f;
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-shop-body h3 {
  min-height: 2.45em;
  margin: 6px 0 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 1rem;
  line-height: 1.22;
  letter-spacing: 0;
}

.home-shop-body h3 a {
  color: var(--ink);
}

.home-shop-body h3 a:hover {
  color: var(--green);
}

.home-shop-sku {
  min-height: 1.3em;
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.68rem;
  line-height: 1.3;
}

.home-shop-card.is-range .home-shop-sku {
  min-height: 2.6em;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-shop-card.is-range .home-shop-buy {
  margin-top: auto;
}

.home-shop-buy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(23, 25, 28, 0.09);
}

.home-shop-buy > div {
  min-width: 0;
}

.home-shop-buy small {
  display: block;
  color: #6a7278;
  font-size: 0.6rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-shop-buy strong {
  display: block;
  margin-top: 3px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.home-shop-buy > a {
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
}

.home-shop-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  margin-top: 13px;
}

.home-shop-actions .button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  padding-inline: 8px;
  font-size: 0.69rem;
  white-space: nowrap;
}

.home-shop-card.is-range .home-shop-actions {
  grid-template-columns: 1fr;
}

.home-shop-assurance {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(23, 25, 28, 0.1);
  border-radius: 7px;
  background: #f5f7f4;
}

.home-shop-assurance span {
  min-width: 0;
  padding: 11px 13px;
  color: var(--ink-soft);
  font-size: 0.69rem;
  line-height: 1.35;
}

.home-shop-assurance span + span {
  border-left: 1px solid rgba(23, 25, 28, 0.1);
}

.home-shop-assurance b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 0.72rem;
}

@media (max-width: 1040px) {
  .home-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 570px !important;
    padding-top: 74px !important;
    padding-bottom: 20px !important;
  }

  .home-shop {
    padding-block: 30px !important;
  }

  .home-shop-heading {
    align-items: start;
    gap: 14px;
    margin-bottom: 17px;
  }

  .home-shop-heading h2 {
    font-size: 1.55rem;
    line-height: 1.08;
  }

  .home-shop-heading > div > p:last-child {
    margin-top: 7px;
    font-size: 0.76rem;
  }

  .home-shop-heading > .button {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.63rem;
  }

  .home-shop-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(244px, 82vw);
    gap: 11px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1px 1px 10px;
    scroll-padding-inline: 1px;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .home-shop-grid::-webkit-scrollbar {
    display: none;
  }

  .home-shop-card {
    grid-template-rows: 158px minmax(0, 1fr);
    scroll-snap-align: start;
  }

  .home-shop-body {
    padding: 13px;
  }

  .home-shop-body h3 {
    min-height: 0;
  }

  .home-shop-buy {
    margin-top: 12px;
    padding-top: 11px;
  }

  .home-shop-actions {
    margin-top: 11px;
  }

  .home-shop-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 11px;
  }

  .home-shop-assurance span {
    padding: 9px 10px;
  }

  .home-shop-assurance span:nth-child(3) {
    border-left: 0;
    grid-column: 1 / -1;
  }

  .home-shop-assurance span:nth-child(n + 3) {
    border-top: 1px solid rgba(23, 25, 28, 0.1);
  }
}

@media (max-width: 390px) {
  .home-shop-heading {
    display: grid;
  }

  .home-shop-heading > .button {
    width: fit-content;
  }

  .home-shop-grid {
    grid-auto-columns: minmax(238px, 86vw);
  }

  .home-shop-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .advisor-nudge {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-shop-card,
  .home-shop-media img {
    transition: none;
  }
}

/* Catalog-first header search and high-visibility customer proof. */
.site-header,
.site-header.is-scrolled,
.menu-open .site-header,
.menu-open .site-header.is-scrolled {
  display: grid !important;
  grid-template-columns: auto minmax(280px, 660px) auto auto !important;
  align-items: center !important;
  gap: 14px !important;
}

.site-header .brand {
  grid-column: 1;
}

.site-header .site-nav {
  grid-column: 3;
  justify-self: end;
  margin-left: 0 !important;
}

.site-header .header-tools {
  grid-column: 4;
  margin-left: 0 !important;
}

.catalog-search {
  position: relative;
  z-index: 14;
  grid-column: 2;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.catalog-search-control {
  height: 42px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 44px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cbd2cf;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 1px 0 rgba(17, 23, 26, 0.03);
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease;
}

.catalog-search:focus-within .catalog-search-control,
.catalog-search.is-open .catalog-search-control {
  border-color: rgba(23, 95, 82, 0.72);
  box-shadow: 0 0 0 3px rgba(23, 95, 82, 0.1);
}

.catalog-search-leading {
  width: 18px;
  height: 18px;
  justify-self: center;
  color: #6e787b;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-search input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 8px 0 0;
  border: 0;
  outline: 0 !important;
  color: #172024;
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0;
}

.catalog-search input::placeholder {
  color: #7b8589;
  opacity: 1;
}

.catalog-search input::-webkit-search-cancel-button {
  display: none;
}

.catalog-search-clear,
.catalog-search-submit {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.catalog-search-clear {
  grid-column: 3;
  width: 38px;
  color: #697378;
  background: transparent;
}

.catalog-search-clear[hidden] {
  display: none;
}

.catalog-search-clear:hover {
  color: #172024;
  background: #f0f3f1;
}

.catalog-search-submit {
  grid-column: 4;
  color: #ffffff;
  background: var(--ls-green);
}

.catalog-search-submit:hover {
  background: #104f45;
}

.catalog-search-clear svg,
.catalog-search-submit svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-search-panel {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  width: 100%;
  max-height: min(520px, calc(100dvh - var(--header-h) - 18px));
  overflow: auto;
  overscroll-behavior: contain;
  padding: 7px;
  border: 1px solid rgba(17, 23, 26, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 54px rgba(17, 23, 26, 0.18);
}

.catalog-search-panel[hidden] {
  display: none;
}

.catalog-search.is-open .catalog-search-panel {
  animation: catalogSearchIn 150ms ease-out both;
}

@keyframes catalogSearchIn {
  from {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(0);
  }
}

.catalog-search-panel-head {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 8px 7px;
  color: #687276;
  font-size: 0.61rem;
}

.catalog-search-panel-head strong {
  color: #273136;
  font-size: 0.67rem;
  font-weight: 820;
}

.catalog-search-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
}

.catalog-search-categories a {
  min-width: 0;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(17, 23, 26, 0.09);
  border-radius: 5px;
  color: #273136;
  background: #f7f9f7;
  font-size: 0.67rem;
  font-weight: 760;
  line-height: 1.22;
  text-decoration: none;
}

.catalog-search-categories a:hover,
.catalog-search-categories a:focus-visible {
  color: var(--ls-green);
  border-color: rgba(23, 95, 82, 0.32);
  background: #eef6f2;
}

.catalog-search-results-list {
  display: grid;
  gap: 3px;
}

.catalog-search-result {
  min-width: 0;
  min-height: 60px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 6px;
  color: #172024;
  text-decoration: none;
}

.catalog-search-result:hover,
.catalog-search-result:focus-visible {
  border-color: rgba(23, 95, 82, 0.18);
  background: #f1f6f3;
}

.catalog-search-result img {
  width: 46px;
  height: 46px;
  padding: 3px;
  object-fit: contain;
  border: 1px solid rgba(17, 23, 26, 0.09);
  border-radius: 5px;
  background: #ffffff;
}

.catalog-search-result > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.catalog-search-result strong,
.catalog-search-result small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.catalog-search-result strong {
  color: #172024;
  font-size: 0.7rem;
  font-weight: 800;
}

.catalog-search-result small {
  color: #6a7478;
  font-size: 0.58rem;
}

.catalog-search-result b {
  color: #253035;
  font-size: 0.66rem;
  font-weight: 810;
  white-space: nowrap;
}

.catalog-search-all {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5px;
  padding: 7px 10px;
  border-top: 1px solid rgba(17, 23, 26, 0.1);
  color: var(--ls-green);
  font-size: 0.67rem;
  font-weight: 820;
  text-align: center;
  text-decoration: none;
}

.catalog-search-all:hover,
.catalog-search-all:focus-visible {
  background: #eef6f2;
}

.catalog-search-empty {
  display: grid;
  justify-items: start;
  gap: 5px;
  padding: 14px;
}

.catalog-search-empty strong {
  color: #172024;
  font-size: 0.76rem;
}

.catalog-search-empty span {
  color: #697478;
  font-size: 0.67rem;
}

.catalog-search-empty a {
  margin-top: 5px;
  color: var(--ls-green);
  font-size: 0.67rem;
  font-weight: 820;
}

.client-band-home {
  padding: 24px max(22px, calc((100vw - var(--max)) / 2)) 22px !important;
  border-top: 1px solid rgba(17, 23, 26, 0.09) !important;
  border-bottom: 1px solid rgba(17, 23, 26, 0.09) !important;
  background: #f3f6f3 !important;
}

.client-band-home .client-band-head {
  width: min(100%, var(--max)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  align-items: end !important;
  gap: 0 !important;
  margin: 0 auto 13px !important;
}

.client-band-home .client-band-head > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.client-band-home .client-band-head .eyebrow {
  margin: 0 !important;
  color: #8c4b13 !important;
  font-size: 0.54rem !important;
  white-space: nowrap;
}

.client-band-home .client-band-head h2 {
  margin: 0 !important;
  color: #172024 !important;
  font-size: 1.12rem !important;
  line-height: 1.05 !important;
}

.client-band-home .client-band-head > p {
  max-width: none !important;
  margin: 0 !important;
  color: #687276 !important;
  font-size: 0.67rem !important;
  line-height: 1.45 !important;
  text-align: right;
}

.client-band-home .client-marquee {
  width: min(100%, var(--max)) !important;
  padding: 0 !important;
}

.client-band-home .client-logo {
  width: 148px !important;
  height: 58px !important;
  padding: 9px 16px !important;
  border-color: rgba(17, 23, 26, 0.08) !important;
}

.client-band-home .client-logo img {
  max-height: 38px !important;
}

@media (max-width: 1080px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    grid-template-columns: auto minmax(230px, 1fr) auto auto !important;
    gap: 10px !important;
  }

  .catalog-search-result b {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 108px;
  }

  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    height: var(--header-h) !important;
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    grid-template-rows: 56px 44px !important;
    align-content: start !important;
    gap: 0 10px !important;
    padding: 0 12px 8px !important;
  }

  .site-header .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .site-header .header-tools {
    grid-column: 3;
    grid-row: 1;
  }

  .site-header .site-nav {
    grid-column: auto;
    grid-row: auto;
    margin: 0 !important;
  }

  .catalog-search {
    z-index: 16;
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .catalog-search-control {
    height: 42px;
  }

  .catalog-search-panel {
    max-height: calc(100dvh - var(--header-h) - 14px);
  }

  .hero {
    padding-top: calc(var(--header-h) + 42px) !important;
  }

  .client-band-home {
    padding: 19px 12px 18px !important;
  }

  .client-band-home .client-band-head {
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    margin-bottom: 11px !important;
  }

  .client-band-home .client-band-head > p {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: calc(var(--header-h) + 16px) !important;
  }

  .catalog-search-control {
    grid-template-columns: 34px minmax(0, 1fr) auto 42px;
  }

  .catalog-search-clear {
    width: 36px;
  }

  .catalog-search input {
    font-size: 0.73rem;
  }

  .catalog-search-result {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    padding: 6px;
  }

  .catalog-search-result img {
    width: 42px;
    height: 42px;
  }

  .catalog-search-result b {
    display: block;
    grid-column: 2;
    margin-top: -3px;
    font-size: 0.6rem;
  }

  .client-band-home .client-band-head > div {
    gap: 8px;
  }

  .client-band-home .client-band-head h2 {
    font-size: 0.98rem !important;
  }

  .client-band-home .client-band-head > p {
    display: none;
  }

  .client-band-home .client-logo {
    width: 132px !important;
    height: 54px !important;
    padding: 8px 13px !important;
  }
}

@media (max-width: 360px) {
  .site-header,
  .site-header.is-scrolled,
  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    padding-inline: 9px !important;
  }

  .catalog-search input {
    font-size: 0.69rem;
  }

  .catalog-search-categories {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-search.is-open .catalog-search-panel {
    animation: none;
  }
}

/* Careers: compact, candidate-first application journey. */
body[data-page="careers"] .career-band,
body[data-page="careers"] .career-application-band {
  scroll-margin-top: calc(var(--header-h) + 18px);
}

body[data-page="careers"] .career-band {
  padding-block: clamp(44px, 5vw, 72px) !important;
  background: #f4f7f5 !important;
}

body[data-page="careers"] .career-panel {
  width: min(var(--max), 100%) !important;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr) !important;
  gap: clamp(34px, 6vw, 82px) !important;
  align-items: start !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="careers"] .career-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  max-width: 520px;
}

body[data-page="careers"] .career-intro h2,
body[data-page="careers"] .career-application-copy h2 {
  max-width: 640px;
  margin: 0 !important;
  color: #11171a !important;
  font-size: clamp(1.8rem, 3vw, 2.75rem) !important;
  line-height: 1.08 !important;
}

body[data-page="careers"] .career-intro > p:not(.eyebrow),
body[data-page="careers"] .career-application-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 16px 0 0 !important;
  color: #566164 !important;
  font-size: 0.96rem !important;
  line-height: 1.65 !important;
}

body[data-page="careers"] .career-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

body[data-page="careers"] .career-actions .button {
  min-height: 44px;
}

body[data-page="careers"] .career-list {
  gap: 10px !important;
}

body[data-page="careers"] .career-list details {
  overflow: hidden;
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(17, 23, 26, 0.035);
}

body[data-page="careers"] .career-list details[open] {
  border-color: rgba(208, 121, 24, 0.44);
  box-shadow: 0 12px 30px rgba(17, 23, 26, 0.06);
}

body[data-page="careers"] .career-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 18px 54px 18px 20px;
  color: #172024;
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
}

body[data-page="careers"] .career-list details p {
  margin: 0 !important;
  padding: 0 20px 19px !important;
  color: #5f696c !important;
  font-size: 0.88rem !important;
  line-height: 1.58 !important;
}

body[data-page="careers"] .career-application-band {
  padding-block: clamp(50px, 6vw, 84px) !important;
  border-top: 1px solid rgba(17, 23, 26, 0.08);
  background: #ffffff !important;
}

body[data-page="careers"] .career-application-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: start;
}

body[data-page="careers"] .career-application-copy {
  padding-top: 10px;
}

body[data-page="careers"] .career-application-notes {
  margin-top: 28px;
  border-block: 1px solid rgba(17, 23, 26, 0.1);
}

body[data-page="careers"] .career-application-notes span {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(17, 23, 26, 0.08);
  color: #334044;
  font-size: 0.8rem;
  font-weight: 720;
}

body[data-page="careers"] .career-application-notes span:last-child {
  border-bottom: 0;
}

body[data-page="careers"] .career-contact {
  margin-top: 30px;
}

body[data-page="careers"] .career-contact > p {
  margin: 0 0 10px;
  color: #687276;
  font-size: 0.74rem;
  font-weight: 760;
  text-transform: uppercase;
}

body[data-page="careers"] .career-contact-methods {
  gap: 0 !important;
}

body[data-page="careers"] .career-contact-methods > a {
  min-height: 48px;
  padding: 10px 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(17, 23, 26, 0.1) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body[data-page="careers"] .career-contact-methods > a:last-child {
  border-bottom: 0 !important;
}

body[data-page="careers"] .career-form-shell {
  min-width: 0;
  padding: clamp(22px, 3.4vw, 38px);
  border: 1px solid rgba(17, 23, 26, 0.12);
  border-top: 3px solid #d07918;
  border-radius: 8px;
  background: #fbfcfb;
  box-shadow: 0 24px 62px rgba(17, 23, 26, 0.09);
}

body[data-page="careers"] .career-form-head {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(17, 23, 26, 0.1);
}

body[data-page="careers"] .career-form-head h3 {
  margin: 3px 0 0;
  color: #11171a;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

body[data-page="careers"] .career-form-head > p:last-child {
  margin: 7px 0 0;
  color: #6a7477;
  font-size: 0.78rem;
}

body[data-page="careers"] .career-hubspot-form {
  min-height: 420px;
}

body[data-page="careers"] .career-hubspot-form.is-ready {
  min-height: 0;
}

body[data-page="careers"] .career-form-loading {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #647073;
  text-align: center;
}

body[data-page="careers"] .career-form-loading span {
  width: 38px;
  height: 3px;
  overflow: hidden;
  border-radius: 2px;
  background: #d07918;
  animation: careerLoading 1.2s ease-in-out infinite alternate;
}

body[data-page="careers"] .career-form-loading p {
  margin: 0;
  font-size: 0.82rem;
}

@keyframes careerLoading {
  from {
    opacity: 0.35;
    transform: scaleX(0.55);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

body[data-page="careers"] .career-hubspot-form iframe {
  width: 100% !important;
  min-height: 740px;
  border: 0 !important;
}

body[data-page="careers"] .career-hubspot-form .hs-form {
  margin: 0 !important;
}

body[data-page="careers"] .career-hubspot-form .hs-form-field {
  margin-bottom: 15px !important;
}

body[data-page="careers"] .career-hubspot-form .hs-form-field > label {
  display: block;
  margin: 0 0 7px !important;
  color: #263135 !important;
  font-family: inherit !important;
  font-size: 0.76rem !important;
  font-weight: 760 !important;
  line-height: 1.35 !important;
}

body[data-page="careers"] .career-hubspot-form .input {
  margin: 0 !important;
}

body[data-page="careers"] .career-hubspot-form input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
body[data-page="careers"] .career-hubspot-form select,
body[data-page="careers"] .career-hubspot-form textarea {
  width: 100% !important;
  min-height: 46px !important;
  padding: 11px 12px !important;
  border: 1px solid rgba(17, 23, 26, 0.18) !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #172024 !important;
  font: inherit !important;
  font-size: 0.88rem !important;
  box-shadow: none !important;
}

body[data-page="careers"] .career-hubspot-form textarea {
  min-height: 108px !important;
  resize: vertical;
}

body[data-page="careers"] .career-hubspot-form input:focus,
body[data-page="careers"] .career-hubspot-form select:focus,
body[data-page="careers"] .career-hubspot-form textarea:focus {
  border-color: #a65d11 !important;
  outline: 3px solid rgba(208, 121, 24, 0.12) !important;
  outline-offset: 0 !important;
}

body[data-page="careers"] .career-hubspot-form input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed rgba(17, 23, 26, 0.28);
  border-radius: 5px;
  background: #ffffff;
  color: #4f5a5e;
  font: inherit;
  font-size: 0.78rem;
}

body[data-page="careers"] .career-hubspot-form .hs-button {
  min-height: 46px !important;
  padding: 0 22px !important;
  border: 1px solid #a75f13 !important;
  border-radius: 5px !important;
  background: #ed9228 !important;
  color: #151a1c !important;
  font: inherit !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  box-shadow: 0 10px 22px rgba(208, 121, 24, 0.16) !important;
}

body[data-page="careers"] .career-hubspot-form .hs-button:hover {
  border-color: #87490d !important;
  background: #f0a03e !important;
  transform: translateY(-1px);
}

body[data-page="careers"] .career-form-fallback {
  padding: 24px;
  border: 1px solid rgba(168, 74, 55, 0.2);
  border-radius: 6px;
  background: #fff7f4;
}

body[data-page="careers"] .career-form-fallback strong {
  color: #702f23;
}

body[data-page="careers"] .career-form-fallback p {
  margin: 8px 0 0;
  color: #67504a;
  font-size: 0.84rem;
  line-height: 1.55;
}

body[data-page="careers"] .career-form-fallback a {
  color: #884f12;
  font-weight: 760;
}

@media (max-width: 980px) {
  body[data-page="careers"] .career-panel,
  body[data-page="careers"] .career-application-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  body[data-page="careers"] .career-intro {
    position: static;
    max-width: 660px;
  }

  body[data-page="careers"] .career-application-copy {
    max-width: 680px;
    padding-top: 0;
  }

  body[data-page="careers"] .career-application-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="careers"] .career-application-notes span {
    justify-content: center;
    padding: 9px 12px;
    border-right: 1px solid rgba(17, 23, 26, 0.08);
    border-bottom: 0;
    text-align: center;
  }

  body[data-page="careers"] .career-application-notes span:last-child {
    border-right: 0;
  }

  body[data-page="careers"] .career-contact-methods {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body[data-page="careers"] .career-contact-methods > a {
    padding-inline: 10px !important;
    border-right: 1px solid rgba(17, 23, 26, 0.1) !important;
    border-bottom: 0 !important;
  }

  body[data-page="careers"] .career-contact-methods > a:last-child {
    border-right: 0 !important;
  }
}

@media (max-width: 680px) {
  body[data-page="careers"] .career-band,
  body[data-page="careers"] .career-application-band {
    padding: 34px 14px !important;
  }

  body[data-page="careers"] .career-panel,
  body[data-page="careers"] .career-application-grid {
    gap: 22px !important;
  }

  body[data-page="careers"] .career-intro h2,
  body[data-page="careers"] .career-application-copy h2 {
    font-size: 1.62rem !important;
    line-height: 1.12 !important;
  }

  body[data-page="careers"] .career-intro > p:not(.eyebrow),
  body[data-page="careers"] .career-application-copy > p:not(.eyebrow) {
    margin-top: 12px !important;
    font-size: 0.84rem !important;
    line-height: 1.58 !important;
  }

  body[data-page="careers"] .career-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 18px;
  }

  body[data-page="careers"] .career-actions .button {
    min-width: 0 !important;
    min-height: 42px !important;
    padding-inline: 11px !important;
    font-size: 0.73rem !important;
  }

  body[data-page="careers"] .career-list summary {
    min-height: 60px;
    padding: 15px 46px 15px 15px;
    font-size: 0.86rem;
  }

  body[data-page="careers"] .career-list details p {
    padding: 0 15px 16px !important;
    font-size: 0.78rem !important;
  }

  body[data-page="careers"] .career-application-notes {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }

  body[data-page="careers"] .career-application-notes span {
    min-height: 38px;
    justify-content: flex-start;
    padding: 7px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 23, 26, 0.08);
    text-align: left;
  }

  body[data-page="careers"] .career-application-notes span:last-child {
    border-bottom: 0;
  }

  body[data-page="careers"] .career-contact {
    margin-top: 22px;
  }

  body[data-page="careers"] .career-contact-methods {
    grid-template-columns: 1fr !important;
  }

  body[data-page="careers"] .career-contact-methods > a {
    min-width: 0;
    min-height: 44px;
    padding-inline: 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(17, 23, 26, 0.1) !important;
    font-size: 0.76rem !important;
  }

  body[data-page="careers"] .career-form-shell {
    padding: 17px 14px 20px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 15px 38px rgba(17, 23, 26, 0.08);
  }

  body[data-page="careers"] .career-form-head {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  body[data-page="careers"] .career-form-head h3 {
    font-size: 1.28rem;
  }

  body[data-page="careers"] .career-hubspot-form {
    min-height: 380px;
  }

  body[data-page="careers"] .career-hubspot-form .hs-form-frame {
    width: calc(100% + 80px);
    margin-left: -40px;
  }

  body[data-page="careers"] .career-hubspot-form iframe {
    min-height: 900px;
  }

  body[data-page="careers"] .career-hubspot-form fieldset.form-columns-2,
  body[data-page="careers"] .career-hubspot-form fieldset.form-columns-3 {
    max-width: none !important;
  }

  body[data-page="careers"] .career-hubspot-form fieldset.form-columns-2 .hs-form-field,
  body[data-page="careers"] .career-hubspot-form fieldset.form-columns-3 .hs-form-field {
    width: 100% !important;
    float: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="careers"] .career-form-loading span {
    animation: none;
  }
}

/* Checkout totals and destination controls */
.checkout-band {
  display: block !important;
}

.checkout-workflow {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 18px;
  align-items: start;
}

.checkout-workflow > .checkout-form-panel:first-child {
  grid-column: 1;
  grid-row: 1;
}

.checkout-workflow > .checkout-summary {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.checkout-payment-panel {
  grid-column: 1;
  grid-row: 2;
  overflow: visible !important;
  scroll-margin-top: calc(var(--header-h) + 14px);
}

.checkout-payment-panel[hidden] {
  display: none !important;
}

.checkout-payment-panel .checkout-payment-section {
  padding: 26px 28px 28px !important;
  border: 0 !important;
  background: #fbfcfb !important;
}

.checkout-phone-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.checkout-phone-control {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
}

.checkout-phone-control .checkout-dial-code {
  padding-inline: 9px !important;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.checkout-price-breakdown {
  margin-top: 3px;
  padding: 8px 0 0;
  border-top: 1px solid #dfe5e2;
}

.checkout-price-breakdown > div {
  min-height: 36px;
  padding: 7px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #edf0ee;
}

.checkout-price-breakdown > div[hidden] {
  display: none !important;
}

.checkout-price-breakdown span {
  min-width: 0;
  color: #59676b;
  font-size: 0.64rem;
  line-height: 1.25;
}

.checkout-price-breakdown span small {
  display: block;
  margin-top: 2px;
  color: #8a9598;
  font-size: 0.52rem;
  font-weight: 600;
}

.checkout-price-breakdown b {
  flex: 0 0 auto;
  color: #202a2e;
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.checkout-price-breakdown .checkout-grand-total {
  min-height: 54px;
  padding-top: 12px;
  border-bottom: 0;
}

.checkout-grand-total span {
  color: #1a2428;
  font-size: 0.72rem;
  font-weight: 780;
}

.checkout-grand-total strong {
  color: #172126;
  font-size: 1.24rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  white-space: nowrap;
}

.checkout-delivery-country {
  min-height: 34px;
  margin: 3px 0 0 !important;
  padding: 9px 10px;
  border-radius: 5px;
  color: #3f625b !important;
  background: #f0f7f4;
  font-size: 0.58rem !important;
  font-weight: 680;
  line-height: 1.35;
}

.checkout-summary .checkout-details-action {
  margin-top: 14px;
  padding: 14px 0 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 8px !important;
  border-top: 1px solid #dfe5e2 !important;
  background: transparent !important;
}

.checkout-summary .checkout-details-action[hidden] {
  display: none !important;
}

.checkout-summary .checkout-details-action .button {
  width: 100%;
  min-width: 0 !important;
  min-height: 46px !important;
  padding-inline: 10px !important;
  font-size: 0.62rem !important;
}

.checkout-summary .checkout-details-action .form-note {
  grid-column: 1 / -1;
  order: initial !important;
  margin: 0 !important;
  padding-top: 2px;
  font-size: 0.57rem;
}

@media (max-width: 820px) {
  .checkout-workflow {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .checkout-workflow > .checkout-form-panel:first-child,
  .checkout-workflow > .checkout-summary,
  .checkout-payment-panel {
    grid-column: 1;
  }

  .checkout-workflow > .checkout-form-panel:first-child {
    grid-row: 1;
  }

  .checkout-workflow > .checkout-summary {
    grid-row: 2;
    position: static !important;
    top: auto !important;
    display: block !important;
  }

  .checkout-payment-panel {
    grid-row: 3;
  }

  .checkout-contact-fields > :last-child {
    grid-column: 1 / -1 !important;
    max-width: calc(50% - 7px) !important;
  }
}

@media (max-width: 680px) {
  .checkout-workflow {
    gap: 10px;
  }

  .checkout-contact-fields > :last-child {
    grid-column: auto !important;
    max-width: none !important;
  }

  .checkout-phone-control {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 7px;
  }

  .checkout-workflow > .checkout-summary {
    padding: 15px 14px !important;
    border-radius: 8px !important;
  }

  .checkout-summary ul {
    max-height: 220px !important;
  }

  .checkout-price-breakdown > div {
    min-height: 34px;
    padding-block: 6px;
  }

  .checkout-price-breakdown .checkout-grand-total {
    min-height: 50px;
  }

  .checkout-grand-total strong {
    font-size: 1.12rem;
  }

  .checkout-summary .checkout-details-action {
    grid-template-columns: 1fr;
  }

  .checkout-summary .checkout-details-action .button.primary {
    grid-row: 1;
  }

  .checkout-summary .checkout-details-action .button.ghost {
    grid-row: 2;
  }

  .checkout-summary .checkout-details-action .form-note {
    grid-row: 3;
  }

  .checkout-payment-panel .checkout-payment-section {
    padding: 20px 14px !important;
  }
}

@media (max-width: 340px) {
  .checkout-phone-control {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

/* Global interaction polish: clear feedback without distracting from buying. */
:root {
  --ls-motion-fast: 120ms;
  --ls-motion-base: 210ms;
  --ls-motion-slow: 300ms;
  --ls-interaction-ease: cubic-bezier(0.2, 0.78, 0.2, 1);
  --ls-press-ease: cubic-bezier(0.3, 0.8, 0.35, 1);
  --ls-focus-color: rgba(237, 146, 40, 0.46);
  --ls-control-shadow: 0 10px 24px rgba(17, 23, 26, 0.08);
}

:where(a, button, summary, input, select, textarea, [role="button"]) {
  -webkit-tap-highlight-color: transparent;
}

:where(button, summary, select, [role="button"], a.button) {
  touch-action: manipulation;
}

:where(
  a,
  button,
  summary,
  input,
  select,
  textarea,
  [role="button"],
  [tabindex]:not([tabindex="-1"])
):focus-visible {
  outline: 3px solid var(--ls-focus-color) !important;
  outline-offset: 3px;
}

:where(
  .button,
  .header-cart,
  .menu-button,
  .nav-trigger,
  .shop-filters button,
  [data-shop-more],
  .shop-add,
  .shop-buy-now,
  .shop-request-price,
  .product-quantity-stepper button,
  .quantity-stepper button,
  .cart-remove,
  .cart-close,
  .catalog-search-clear,
  .catalog-search-submit,
  .catalog-search-all,
  .advisor-launch,
  .advisor-close,
  .advisor-steps button,
  .advisor-choice-grid button,
  .advisor-continue,
  .advisor-skip,
  .checkout-summary button,
  .footer-subscribe button,
  .quote-chip,
  .quote-product-card
) {
  transform-origin: center;
  transition:
    transform var(--ls-motion-fast) var(--ls-press-ease),
    color var(--ls-motion-base) ease,
    border-color var(--ls-motion-base) ease,
    background-color var(--ls-motion-base) ease,
    box-shadow var(--ls-motion-base) var(--ls-interaction-ease),
    opacity var(--ls-motion-base) ease !important;
}

@media (hover: hover) and (pointer: fine) {
  :where(
    .button,
    .shop-filters button,
    [data-shop-more],
    .shop-add,
    .shop-buy-now,
    .shop-request-price,
    .catalog-search-all,
    .advisor-continue,
    .footer-subscribe button,
    .quote-chip,
    .quote-product-card
  ):not(:disabled):hover {
    transform: translateY(-1px) !important;
  }

  :where(.header-cart, .menu-button, .nav-trigger, .catalog-search-clear, .catalog-search-submit, .advisor-close):not(:disabled):hover {
    transform: translateY(-1px) scale(1.02) !important;
  }
}

:where(
  .button,
  .header-cart,
  .menu-button,
  .nav-trigger,
  .shop-filters button,
  [data-shop-more],
  .shop-add,
  .shop-buy-now,
  .shop-request-price,
  .product-quantity-stepper button,
  .quantity-stepper button,
  .cart-remove,
  .cart-close,
  .catalog-search-clear,
  .catalog-search-submit,
  .catalog-search-all,
  .advisor-launch,
  .advisor-close,
  .advisor-steps button,
  .advisor-choice-grid button,
  .advisor-continue,
  .advisor-skip,
  .checkout-summary button,
  .footer-subscribe button,
  .quote-chip,
  .quote-product-card
):not(:disabled):active {
  transform: translateY(1px) scale(0.985) !important;
  transition-duration: 65ms !important;
}

:where(button, input, select, textarea):disabled {
  transform: none !important;
  box-shadow: none !important;
}

:where(.checkout-choice, .checkout-payment-method) {
  transition:
    transform var(--ls-motion-fast) var(--ls-press-ease),
    border-color var(--ls-motion-base) ease,
    background-color var(--ls-motion-base) ease,
    box-shadow var(--ls-motion-base) var(--ls-interaction-ease) !important;
}

@media (hover: hover) and (pointer: fine) {
  :where(.checkout-choice, .checkout-payment-method):hover {
    border-color: rgba(23, 95, 82, 0.34) !important;
    box-shadow: 0 9px 24px rgba(17, 23, 26, 0.07) !important;
  }
}

:where(.checkout-choice, .checkout-payment-method):active {
  transform: scale(0.995);
}

:where(input[type="checkbox"], input[type="radio"]) {
  transition:
    transform var(--ls-motion-fast) var(--ls-press-ease),
    box-shadow var(--ls-motion-base) ease !important;
}

:where(input[type="checkbox"], input[type="radio"]):checked {
  animation: lsChoiceCommit 260ms var(--ls-interaction-ease);
}

@keyframes lsChoiceCommit {
  0% { transform: scale(0.82); }
  60% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

:where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
  select,
  textarea
) {
  transition:
    color var(--ls-motion-base) ease,
    border-color var(--ls-motion-base) ease,
    background-color var(--ls-motion-base) ease,
    box-shadow var(--ls-motion-base) var(--ls-interaction-ease),
    transform var(--ls-motion-fast) var(--ls-interaction-ease) !important;
}

@media (hover: hover) and (pointer: fine) {
  :where(
    input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
    select,
    textarea
  ):not(:disabled):not(:focus):hover {
    border-color: rgba(23, 95, 82, 0.42) !important;
    background-color: #fcfefd !important;
  }
}

:where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):not([type="submit"]):not([type="button"]),
  select,
  textarea
):focus-visible {
  outline: 0 !important;
  border-color: rgba(23, 95, 82, 0.68) !important;
  background-color: #ffffff !important;
  box-shadow:
    0 0 0 3px rgba(237, 146, 40, 0.16),
    var(--ls-control-shadow) !important;
}

.shop-variant-field select:focus-visible {
  border-left-color: var(--variant-color) !important;
}

:where(
  input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
  select,
  textarea
).is-committed {
  animation: lsControlCommit 460ms var(--ls-interaction-ease);
}

@keyframes lsControlCommit {
  0% { transform: scale(1); }
  38% { transform: scale(0.994); }
  100% { transform: scale(1); }
}

:where(
  .shop-product,
  .home-shop-card,
  .product-card,
  .industry-card,
  .application-card
) {
  transition:
    transform var(--ls-motion-base) var(--ls-interaction-ease),
    border-color var(--ls-motion-base) ease,
    box-shadow var(--ls-motion-slow) var(--ls-interaction-ease) !important;
}

:where(
  .shop-product,
  .home-shop-card,
  .product-card,
  .industry-card,
  .application-card
):focus-within {
  border-color: rgba(23, 95, 82, 0.42) !important;
  box-shadow:
    0 0 0 3px rgba(23, 95, 82, 0.09),
    0 18px 42px rgba(17, 23, 26, 0.1) !important;
}

@media (hover: hover) and (pointer: fine) {
  :where(.shop-product, .home-shop-card, .product-card, .industry-card, .application-card):hover {
    transform: translateY(-3px) !important;
    border-color: rgba(23, 95, 82, 0.34) !important;
    box-shadow: 0 18px 42px rgba(17, 23, 26, 0.1) !important;
  }

  :where(.product-card, .industry-card, .application-card):hover img {
    transform: scale(1.025) !important;
  }
}

:where(.product-card, .industry-card, .application-card) img {
  transition: transform var(--ls-motion-slow) var(--ls-interaction-ease) !important;
}

:where(.text-link, .home-shop-buy > a, .cart-continue, .site-footer a, .contact-methods a) {
  transition:
    color var(--ls-motion-base) ease,
    background-color var(--ls-motion-base) ease,
    opacity var(--ls-motion-base) ease,
    transform var(--ls-motion-fast) var(--ls-interaction-ease) !important;
}

:where(.checkout-optional-field, .checkout-note-details, .faq-list details) {
  transition:
    border-color var(--ls-motion-base) ease,
    background-color var(--ls-motion-base) ease,
    box-shadow var(--ls-motion-base) var(--ls-interaction-ease) !important;
}

:where(.checkout-optional-field, .checkout-note-details, .faq-list details):focus-within {
  border-color: rgba(23, 95, 82, 0.34) !important;
  box-shadow: 0 0 0 3px rgba(23, 95, 82, 0.07) !important;
}

:where(.checkout-optional-field, .checkout-note-details, .faq-list details)[open] > :not(summary) {
  animation: lsDisclosureIn var(--ls-motion-base) var(--ls-interaction-ease) both;
}

@keyframes lsDisclosureIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-group-open .nav-menu,
.catalog-search.is-open .catalog-search-panel {
  transform-origin: top center;
  animation: lsPopoverIn var(--ls-motion-base) var(--ls-interaction-ease) both;
}

@keyframes lsPopoverIn {
  from {
    opacity: 0;
    transform: translateY(-6px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cart-open .cart-drawer-body > * {
  animation: lsPanelContentIn var(--ls-motion-slow) var(--ls-interaction-ease) both;
}

@keyframes lsPanelContentIn {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 860px) {
  .menu-open .site-nav {
    transform-origin: top center;
    animation: lsMobileMenuIn var(--ls-motion-base) var(--ls-interaction-ease) both;
  }

  @keyframes lsMobileMenuIn {
    from {
      opacity: 0;
      transform: translateY(-7px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  :where(
    .button,
    .header-cart,
    .menu-button,
    .nav-trigger,
    .shop-filters button,
    [data-shop-more],
    .shop-add,
    .shop-buy-now,
    .shop-request-price,
    .product-quantity-stepper button,
    .quantity-stepper button,
    .cart-remove,
    .cart-close,
    .catalog-search-clear,
    .catalog-search-submit,
    .catalog-search-all,
    .advisor-launch,
    .advisor-close,
    .advisor-steps button,
    .advisor-choice-grid button,
    .advisor-continue,
    .advisor-skip,
    .checkout-summary button,
    .footer-subscribe button,
    .quote-chip,
    .quote-product-card,
    .shop-product,
    .home-shop-card,
    .product-card,
    .industry-card,
    .application-card,
    input,
    select,
    textarea
  ) {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transform: none !important;
  }

  :where(.checkout-optional-field, .checkout-note-details, .faq-list details)[open] > :not(summary),
  .nav-group-open .nav-menu,
  .catalog-search.is-open .catalog-search-panel,
  .cart-open .cart-drawer-body > *,
  .menu-open .site-nav {
    animation: none !important;
    transform: none !important;
  }
}

.journal-index .editorial-breadcrumbs,
.journal-article .journal-breadcrumbs {
  color: #6d777a;
}

.journal-index .editorial-breadcrumbs a:hover,
.journal-index .editorial-breadcrumbs a:focus-visible,
.journal-article .journal-breadcrumbs a:hover,
.journal-article .journal-breadcrumbs a:focus-visible {
  color: #174e45;
}

.journal-article .is-scroll-target {
  outline: 0 !important;
  transition: none !important;
}

/* Insights library and article reading experience. */
.insights-hub-header {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: calc(var(--header-h) + 56px) 0 44px;
  border-bottom: 1px solid rgba(24, 36, 39, 0.14);
}

.insights-hub-header .editorial-breadcrumbs {
  margin-bottom: 30px;
}

.insights-hub-label,
.insights-subscribe-label {
  margin: 0;
  color: #9b5716;
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.insights-hub-header h1 {
  max-width: 18ch;
  margin: 10px 0 0;
  color: #162124;
  font-size: 2.9rem;
  line-height: 1.06;
}

.insights-hub-header > p:last-child {
  max-width: 63ch;
  margin: 18px 0 0;
  color: #566165;
  font-size: 0.96rem;
  line-height: 1.68;
}

.insights-hub-layout {
  width: min(1160px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 46px;
  align-items: start;
  margin: 0 auto;
  padding: 48px 0 80px;
}

.insights-library-main {
  min-width: 0;
}

.insights-library-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 36, 39, 0.14);
}

.insights-library-title h2 {
  margin: 0;
  color: #172225;
  font-size: 1.4rem;
  line-height: 1.2;
}

.insights-library-title span {
  color: #6b7578;
  font-size: 0.68rem;
  font-weight: 720;
}

.insights-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.insights-post-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(24, 36, 39, 0.15);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 29, 31, 0.055);
}

.insights-post-grid.is-single .insights-post-card {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(0, 1.12fr);
}

.insights-post-media {
  min-height: 210px;
  display: block;
  overflow: hidden;
  background: #e9eeeb;
}

.insights-post-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.insights-post-grid.is-single .insights-post-media img {
  aspect-ratio: auto;
}

.insights-post-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 25px;
}

.insights-post-meta,
.insights-post-foot {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  color: #6b7578;
  font-size: 0.64rem;
  font-weight: 720;
}

.insights-post-meta span:first-child {
  color: #8d4e13;
  text-transform: uppercase;
}

.insights-post-copy h2 {
  margin: 16px 0 0;
  color: #172225;
  font-size: 1.3rem;
  line-height: 1.2;
}

.insights-post-copy h2 a {
  color: inherit;
  text-decoration: none;
}

.insights-post-copy h2 a:hover,
.insights-post-copy h2 a:focus-visible {
  color: #174e45;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.insights-post-copy > p {
  margin: 12px 0 20px;
  color: #596468;
  font-size: 0.8rem;
  line-height: 1.62;
}

.insights-post-foot {
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(24, 36, 39, 0.11);
  font-size: 0.61rem;
}

.insights-post-link {
  display: inline-block;
  margin-top: 18px;
  color: #126457;
  font-size: 0.71rem;
  font-weight: 820;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.insights-subscribe {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 28px;
  border-radius: 6px;
  color: #ffffff;
  background: #174e45;
  box-shadow: 0 18px 38px rgba(17, 29, 31, 0.12);
}

.insights-subscribe-label {
  color: #f1ac52;
}

.insights-subscribe h2 {
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.16;
}

.insights-subscribe-copy > p:not(.insights-subscribe-label) {
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.58;
}

.insights-subscribe-form {
  margin-top: 24px;
}

.insights-subscribe-form > label:first-child {
  display: block;
  margin-bottom: 7px;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 760;
}

.insights-subscribe-control {
  display: grid;
  gap: 9px;
}

.insights-subscribe-control input {
  width: 100%;
  min-height: 45px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  color: #172225;
  font-size: 1rem;
  background: #ffffff;
  box-shadow: none;
}

.insights-subscribe-control input:focus-visible {
  border-color: #f1ac52;
  outline: 3px solid rgba(241, 172, 82, 0.24);
  outline-offset: 1px;
}

.insights-subscribe-control button {
  min-height: 44px;
  border: 1px solid #f0a33d;
  border-radius: 4px;
  color: #172225;
  font-size: 0.72rem;
  font-weight: 820;
  background: #f0a33d;
  cursor: pointer;
}

.insights-subscribe-control button:hover,
.insights-subscribe-control button:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
}

.insights-subscribe-control button:disabled {
  cursor: wait;
  opacity: 0.66;
}

.insights-subscribe-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  min-height: 44px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  line-height: 1.5;
  cursor: pointer;
}

.insights-subscribe-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: #f0a33d;
}

.insights-subscribe-note {
  min-height: 1.1em;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.64rem;
  line-height: 1.45;
}

.insights-subscribe-note.is-success {
  color: #ffffff;
}

.insights-subscribe-note.is-error {
  color: #ffd8cb;
}

.journal-article-header {
  padding-bottom: 34px;
}

.journal-article-header h1 {
  font-size: 3.05rem;
  line-height: 1.06;
}

.journal-article-shell {
  padding-top: 34px;
}

.journal-opening > p:first-child {
  font-size: 1.1rem;
  line-height: 1.78;
}

.journal-opening > p:first-child::first-letter {
  float: none;
  margin: 0;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.journal-story-figure {
  margin: 48px 0;
}

.journal-story-figure-wide {
  width: calc(100% + 140px);
  margin-left: -70px;
}

.journal-story-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border-radius: 4px;
}

.journal-story-figure:first-of-type img {
  object-position: 62% center;
}

.journal-story-figure figcaption {
  margin-top: 9px;
  color: #707a7d;
  font-size: 0.64rem;
  line-height: 1.5;
}

.journal-prose > section {
  margin-top: 54px;
}

.journal-prose h2 {
  margin-top: 0;
}

.journal-sources h2 {
  margin-bottom: 22px;
}

.journal-subscribe-band {
  width: min(1080px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto 30px;
  padding: 40px 44px;
  border-radius: 6px;
  color: #ffffff;
  background: #174e45;
  box-shadow: 0 18px 38px rgba(17, 29, 31, 0.1);
}

.journal-subscribe-copy h2 {
  max-width: 18ch;
  margin: 10px 0 0;
  color: #ffffff;
  font-size: 1.65rem;
  line-height: 1.18;
}

.journal-subscribe-copy > p:last-child {
  max-width: 58ch;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.62;
}

.journal-subscribe-form {
  margin-top: 0;
}

.journal-subscribe-form .insights-subscribe-control {
  grid-template-columns: minmax(0, 1fr) 128px;
}

.journal-article-footer > div > h2:first-child {
  margin-top: 0;
}

@media (max-width: 980px) {
  .insights-hub-layout {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 30px;
  }

  .insights-post-grid {
    grid-template-columns: 1fr;
  }

  .insights-post-grid.is-single .insights-post-card {
    grid-template-columns: minmax(220px, 0.84fr) minmax(0, 1.16fr);
  }

  .journal-story-figure-wide {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 780px) {
  .insights-hub-header,
  .insights-hub-layout {
    width: min(100% - 40px, 700px);
  }

  .insights-hub-header {
    padding-top: calc(var(--header-h) + 38px);
  }

  .insights-hub-header h1 {
    font-size: 2.35rem;
  }

  .insights-hub-layout {
    grid-template-columns: 1fr;
  }

  .insights-subscribe {
    position: static;
  }

  .insights-post-grid.is-single .insights-post-card {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  }

  .journal-subscribe-band {
    width: min(100% - 40px, 700px);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .journal-diagnostic-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .journal-diagnostic-cta .button {
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .insights-hub-header,
  .insights-hub-layout {
    width: calc(100% - 30px);
  }

  .insights-hub-header {
    padding: calc(var(--header-h) + 26px) 0 32px;
  }

  .insights-hub-header .editorial-breadcrumbs {
    margin-bottom: 22px;
  }

  .insights-hub-header h1 {
    font-size: 1.95rem;
    line-height: 1.09;
  }

  .insights-hub-header > p:last-child {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.62;
  }

  .insights-hub-layout {
    gap: 34px;
    padding: 32px 0 54px;
  }

  .insights-library-title h2 {
    font-size: 1.2rem;
  }

  .insights-post-grid.is-single .insights-post-card {
    display: flex;
  }

  .insights-post-media {
    min-height: 0;
  }

  .insights-post-grid.is-single .insights-post-media img {
    aspect-ratio: 16 / 10;
  }

  .insights-post-copy {
    padding: 20px;
  }

  .insights-post-copy h2 {
    font-size: 1.18rem;
  }

  .insights-post-copy > p {
    font-size: 0.89rem;
    line-height: 1.66;
  }

  .insights-subscribe {
    padding: 24px;
  }

  .insights-subscribe h2 {
    font-size: 1.4rem;
  }

  .journal-article-header h1 {
    font-size: 2rem;
  }

  .journal-article-header {
    padding-bottom: 20px;
  }

  .journal-article-shell {
    padding-top: 18px;
  }

  .journal-prose p,
  .journal-prose li {
    font-size: 1rem;
    line-height: 1.75;
  }

  .journal-opening > p:first-child {
    font-size: 1.03rem;
    line-height: 1.75;
  }

  .journal-field-box,
  .journal-risk-tool {
    margin: 26px 0;
    padding: 20px 18px;
  }

  .journal-spec-list {
    columns: 1;
  }

  .journal-route-table-wrap {
    margin: 26px 0 30px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .journal-route-table,
  .journal-route-table tbody,
  .journal-route-table tr,
  .journal-route-table td {
    display: block;
    width: 100%;
  }

  .journal-route-table caption {
    width: 100%;
    display: block;
    box-sizing: border-box;
    border: 1px solid rgba(24, 36, 39, 0.14);
    border-bottom: 0;
    border-radius: 4px 4px 0 0;
  }

  .journal-route-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .journal-route-table tr {
    margin-bottom: 10px;
    border: 1px solid rgba(24, 36, 39, 0.14);
    border-radius: 4px;
    background: #ffffff;
  }

  .journal-route-table td,
  .journal-route-table td:first-child {
    width: 100%;
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    padding: 11px 13px;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 36, 39, 0.1);
    color: #435054;
    font-size: 0.78rem;
    font-weight: 560;
  }

  .journal-route-table td::before {
    color: #8b551d;
    content: attr(data-label);
    font-size: 0.62rem;
    font-weight: 820;
    line-height: 1.45;
    text-transform: uppercase;
  }

  .journal-route-table tbody tr:last-child td {
    border-bottom: 1px solid rgba(24, 36, 39, 0.1);
  }

  .journal-route-table tr td:last-child {
    border-bottom: 0;
  }

  .journal-risk-tool .journal-route-table-wrap {
    margin: 20px 0 17px;
  }

  .journal-risk-tool .journal-route-table tr {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.055);
  }

  .journal-risk-tool .journal-route-table td,
  .journal-risk-tool .journal-route-table td:first-child {
    color: rgba(255, 255, 255, 0.86);
    border-color: rgba(255, 255, 255, 0.12);
  }

  .journal-risk-tool .journal-route-table td::before {
    color: #f0a24d;
  }

  .journal-diagnostic-cta {
    margin-top: 42px;
    padding: 23px 20px;
  }

  .journal-prose .journal-diagnostic-cta h2 {
    font-size: 1.24rem;
  }

  .journal-diagnostic-cta .button {
    width: 100%;
    min-width: 0;
  }

  .journal-story-figure {
    margin: 38px 0;
  }

  .journal-story-figure img {
    aspect-ratio: 4 / 3;
  }

  .journal-subscribe-band {
    width: calc(100% - 30px);
    gap: 22px;
    margin-bottom: 18px;
    padding: 26px 22px 22px;
  }

  .journal-subscribe-copy h2 {
    max-width: 20ch;
    font-size: 1.4rem;
  }

  .journal-subscribe-copy > p:last-child {
    font-size: 0.82rem;
  }

  .journal-subscribe-form .insights-subscribe-control {
    grid-template-columns: 1fr;
  }

  .insights-subscribe-consent {
    font-size: 0.72rem;
  }
}

/* Insights typography and action polish. */
body {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

.journal-article,
.journal-article :where(h1, h2, h3, p, li, a, button, input, label, span, small, figcaption, th, td) {
  font-family: inherit;
  letter-spacing: 0;
}

.journal-article :where(h1, h2, h3, strong, b),
.journal-article-kicker,
.journal-article-meta,
.journal-risk-heading > span,
.journal-diagnostic-copy > span,
.journal-diagnostic-cta .button {
  font-weight: 700;
}

.journal-article :is(h1, h2, h3, strong, b, time, caption, th),
.journal-article :is(.journal-article-kicker, .journal-article-meta, .journal-risk-heading > span, .journal-diagnostic-copy > span, .insights-subscribe-label, .button, button, label) {
  font-weight: 700 !important;
}

.journal-article :is(.journal-breadcrumbs a, .journal-breadcrumbs span, .journal-toc a, .journal-problem-statement p, .journal-audit-table tbody td:first-child) {
  font-weight: 600 !important;
}

.journal-article :is(.journal-toc > p, .journal-route-table caption, .journal-article-footer nav a) {
  font-weight: 700 !important;
}

.journal-article :is(.journal-quote p, .journal-route-table tbody td:first-child) {
  font-weight: 600 !important;
}

.journal-prose sup {
  position: relative;
  top: -0.42em;
  display: inline-block;
  margin: 0;
  font-size: 0.7em;
  line-height: 0;
  vertical-align: baseline;
  white-space: nowrap;
}

.journal-source-ref,
.source-ref {
  width: auto;
  min-width: 0;
  height: auto;
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #176052 !important;
  background: transparent !important;
  font-weight: 700;
  text-decoration: underline !important;
  text-decoration-color: rgba(23, 96, 82, 0.42) !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
  white-space: nowrap;
}

.journal-source-ref {
  font-size: inherit;
  line-height: inherit;
  vertical-align: baseline;
}

.source-ref {
  font-size: 0.72em;
  line-height: 0;
  vertical-align: super;
}

.journal-source-ref::before,
.source-ref::before {
  content: "[";
}

.journal-source-ref::after,
.source-ref::after {
  content: "]";
}

.journal-source-ref:hover,
.source-ref:hover {
  color: #9b5716 !important;
  text-decoration-color: currentColor !important;
  outline: 0;
}

.journal-source-ref:focus-visible,
.source-ref:focus-visible {
  color: #174e45 !important;
  background: #fff4e7 !important;
  outline: 2px solid rgba(218, 132, 40, 0.62);
  outline-offset: 2px;
}

.journal-diagnostic-cta {
  position: relative;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  gap: 20px;
  padding: 26px 28px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid #f0a33d;
  border-radius: 6px;
  background: #152321;
  box-shadow: 0 16px 36px rgba(17, 29, 31, 0.14);
}

.journal-diagnostic-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  align-self: start;
  border: 1px solid rgba(240, 163, 61, 0.34);
  border-radius: 50%;
  color: #f0a33d;
  background: rgba(240, 163, 61, 0.09);
}

.journal-diagnostic-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.journal-diagnostic-copy {
  min-width: 0;
}

.journal-diagnostic-copy > span {
  display: block;
  margin: 0 0 7px;
  color: #f3ad56;
  font-size: 0.62rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.journal-prose .journal-diagnostic-copy h2 {
  max-width: 26ch;
  margin: 0;
  color: #ffffff;
  font-size: 1.34rem;
  line-height: 1.2;
}

.journal-diagnostic-copy p {
  max-width: 62ch;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.8rem;
  line-height: 1.62;
}

.journal-diagnostic-cta .button {
  width: auto;
  min-width: 174px;
  min-height: 46px;
  padding: 0 16px;
  justify-self: end;
  gap: 9px;
  overflow: visible;
  border-radius: 5px !important;
  color: #172225 !important;
  background: #f0a33d !important;
  border-color: #f0a33d !important;
  box-shadow: none !important;
  font-size: 0.76rem;
  line-height: 1.2;
  text-overflow: clip;
  white-space: nowrap;
}

.journal-diagnostic-cta .button:hover,
.journal-diagnostic-cta .button:focus-visible {
  color: #172225 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.journal-diagnostic-cta .button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

@media (max-width: 780px) {
  .journal-diagnostic-cta {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .journal-diagnostic-icon {
    width: 42px;
    height: 42px;
  }

  .journal-diagnostic-cta .button {
    width: 100%;
    min-width: 0;
    grid-column: 1 / -1;
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .journal-diagnostic-cta {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 40px;
    padding: 22px 20px 20px;
  }

  .journal-diagnostic-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
  }

  .journal-diagnostic-copy > span {
    min-height: 38px;
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    padding-right: 50px;
  }

  .journal-prose .journal-diagnostic-copy h2 {
    max-width: 24ch;
    font-size: 1.22rem;
  }

  .journal-diagnostic-copy p {
    font-size: 0.82rem;
    line-height: 1.6;
  }
}

/* IoT monitoring selector. */
body[data-page="iot-monitoring"] {
  background: #f5f7f5;
}

.iot-page-hero {
  position: relative;
  min-height: min(650px, 78vh);
  display: grid;
  align-items: end;
  margin-top: var(--header-h);
  overflow: hidden;
  color: #ffffff;
  background: #162220;
}

.iot-page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.82) contrast(1.02) brightness(0.72);
}

.iot-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 20, 0.58);
}

.iot-page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(710px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 80px 0 122px;
}

.iot-page-hero-copy .eyebrow {
  color: #ffb657;
}

.iot-page-hero-copy h1 {
  max-width: 13ch;
  margin: 10px 0 18px;
  color: #ffffff;
  font-size: clamp(2.7rem, 5.4vw, 4.7rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.iot-page-hero-copy > p:not(.eyebrow) {
  max-width: 62ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.iot-page-hero-copy .hero-actions {
  margin-top: 28px;
}

.iot-page-hero-copy .button.ghost {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.48) !important;
  background: rgba(15, 28, 26, 0.5) !important;
}

.iot-page-hero-copy .button.ghost:hover,
.iot-page-hero-copy .button.ghost:focus-visible {
  color: #172225 !important;
  background: #ffffff !important;
  border-color: #ffffff !important;
}

.iot-hero-facts {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 19, 18, 0.76);
}

.iot-hero-facts span {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
}

.iot-hero-facts span:first-child {
  padding-left: 25px;
}

.iot-hero-facts span:first-child {
  padding-left: 0;
}

.iot-hero-facts span:last-child {
  border-right: 0;
}

.iot-hero-facts strong {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
}

.iot-path-band {
  background: #ffffff;
}

.iot-path-grid {
  width: min(var(--max), 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 37, 0.12);
  border-radius: 7px;
  background: rgba(23, 34, 37, 0.12);
}

.iot-path-item {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: #172225;
  background: #f8f9f7;
  transition: color 180ms ease, background-color 180ms ease;
}

.iot-path-item:hover,
.iot-path-item:focus-visible {
  color: #ffffff;
  background: #174e45;
  outline: 0;
}

.iot-path-item > span {
  margin-bottom: auto;
  color: #a65f18;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.iot-path-item:hover > span,
.iot-path-item:focus-visible > span {
  color: #ffc577;
}

.iot-path-item strong {
  font-size: 1.12rem;
  font-weight: 700;
}

.iot-path-item p {
  margin: 8px 0 0;
  color: #687276;
  font-size: 0.78rem;
  line-height: 1.55;
}

.iot-path-item:hover p,
.iot-path-item:focus-visible p {
  color: rgba(255, 255, 255, 0.76);
}

.iot-selector {
  background: #f1f4f1;
}

.iot-selector-head,
.iot-preset-panel,
.iot-filter-bar,
.iot-parameter-groups,
.iot-selector-action,
.iot-brief > *,
.iot-enquiry > * {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.iot-selector-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.iot-selector-head h2,
.iot-brief-head h2,
.iot-enquiry-copy h2,
.iot-home-copy h2,
.iot-products-copy h2 {
  margin: 7px 0 12px;
  color: #172225;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.iot-selector-head > div:first-child > p:last-child,
.iot-brief-head > div > p:last-child,
.iot-products-copy > p:not(.eyebrow),
.iot-home-copy > p:not(.eyebrow) {
  max-width: 68ch;
  margin: 0;
  color: #626d70;
  font-size: 0.86rem;
  line-height: 1.62;
}

.iot-selection-status {
  position: relative;
  min-width: 112px;
  padding: 15px 18px;
  border-left: 3px solid #e9952d;
  background: #ffffff;
}

.iot-selection-status strong,
.iot-selection-status span {
  display: block;
}

.iot-selection-status strong {
  color: #174e45;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1;
}

.iot-selection-status span {
  margin-top: 5px;
  color: #717a7d;
  font-size: 0.68rem;
}

.iot-preset-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  gap: 30px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid rgba(23, 34, 37, 0.14);
  border-bottom: 1px solid rgba(23, 34, 37, 0.14);
}

.iot-preset-panel > div:first-child strong,
.iot-preset-panel > div:first-child span {
  display: block;
}

.iot-preset-panel > div:first-child strong {
  color: #172225;
  font-size: 0.78rem;
  font-weight: 700;
}

.iot-preset-panel > div:first-child span {
  margin-top: 4px;
  color: #737c7f;
  font-size: 0.72rem;
}

.iot-preset-actions,
.iot-filter-bar {
  display: flex;
  gap: 7px;
}

.iot-preset-actions {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.iot-preset-actions button,
.iot-filter-bar button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(23, 34, 37, 0.17);
  border-radius: 4px;
  color: #384448;
  background: #ffffff;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.iot-preset-actions button:hover,
.iot-preset-actions button:focus-visible,
.iot-filter-bar button:hover,
.iot-filter-bar button:focus-visible {
  border-color: #174e45;
  color: #174e45;
  outline: 0;
  transform: translateY(-1px);
}

.iot-preset-actions button.is-active,
.iot-filter-bar button.is-active {
  color: #ffffff;
  border-color: #174e45;
  background: #174e45;
}

.iot-preset-actions button.is-clear {
  color: #86542a;
  background: transparent;
}

.iot-filter-bar {
  margin-top: 24px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.iot-filter-bar button {
  flex: 0 0 auto;
}

.iot-parameter-groups {
  margin-top: 34px;
}

.iot-parameter-group + .iot-parameter-group {
  margin-top: 48px;
}

.iot-group-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1.25fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 17px;
}

.iot-group-heading h3 {
  margin: 0;
  color: #182326;
  font-size: 1.14rem;
  font-weight: 700;
}

.iot-group-heading p {
  margin: 0;
  color: #737c7f;
  font-size: 0.75rem;
  line-height: 1.55;
}

.iot-parameter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.iot-parameter-card {
  position: relative;
  min-height: 244px;
  display: flex;
  flex-direction: column;
  padding: 19px;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 37, 0.14);
  border-radius: 6px;
  color: #172225;
  background: #ffffff;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.iot-parameter-card:hover {
  border-color: rgba(23, 78, 69, 0.46);
  box-shadow: 0 12px 26px rgba(23, 34, 37, 0.08);
  transform: translateY(-2px);
}

.iot-parameter-card:focus-within {
  outline: 2px solid rgba(23, 78, 69, 0.55);
  outline-offset: 2px;
}

.iot-parameter-card.is-selected {
  border-color: #174e45;
  box-shadow: inset 0 3px 0 #e9952d, 0 12px 26px rgba(23, 78, 69, 0.1);
}

.iot-parameter-card > input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.iot-parameter-check {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(23, 34, 37, 0.3);
  border-radius: 3px;
  background: #ffffff;
}

.iot-parameter-card.is-selected .iot-parameter-check {
  border-color: #174e45;
  background: #174e45;
}

.iot-parameter-card.is-selected .iot-parameter-check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.iot-parameter-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  padding-right: 30px;
}

.iot-parameter-meta small,
.iot-parameter-meta b {
  font-size: 0.61rem;
  line-height: 1.25;
}

.iot-parameter-meta small {
  color: #9b5b1b;
  font-weight: 700;
  text-transform: uppercase;
}

.iot-parameter-meta b {
  padding-left: 7px;
  border-left: 1px solid rgba(23, 34, 37, 0.18);
  color: #657074;
  font-weight: 600;
}

.iot-parameter-card > strong {
  max-width: 23ch;
  margin-top: 18px;
  padding-right: 24px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

.iot-parameter-benefit {
  margin-top: 10px;
  color: #5f696d;
  font-size: 0.73rem;
  line-height: 1.57;
}

.iot-parameter-route {
  display: grid;
  gap: 3px;
  margin-top: auto;
  padding-top: 16px;
  color: #747e81;
  font-size: 0.64rem;
  line-height: 1.45;
}

.iot-parameter-route b {
  color: #263337;
  font-weight: 700;
}

.iot-selector-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 34, 37, 0.15);
}

.iot-selector-action p {
  margin: 0;
  color: #697477;
  font-size: 0.76rem;
}

.iot-selector-action .button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  box-shadow: none !important;
}

.iot-brief {
  background: #ffffff;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.iot-brief-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-bottom: 26px;
}

.iot-brief-head > span {
  padding: 9px 12px;
  border: 1px solid rgba(23, 34, 37, 0.15);
  border-radius: 4px;
  color: #174e45;
  background: #f5f7f5;
  font-size: 0.7rem;
  font-weight: 700;
}

.iot-brief-empty {
  padding: 34px;
  border: 1px dashed rgba(23, 34, 37, 0.24);
  text-align: center;
  background: #f8f9f7;
}

.iot-brief-empty strong {
  color: #263337;
  font-size: 0.86rem;
}

.iot-brief-empty p {
  margin: 6px 0 0;
  color: #778084;
  font-size: 0.74rem;
}

.iot-brief-list {
  border-top: 1px solid rgba(23, 34, 37, 0.17);
}

.iot-brief-row {
  display: grid;
  grid-template-columns: minmax(210px, 1.25fr) minmax(130px, 0.55fr) minmax(180px, 0.85fr) minmax(210px, 1fr);
  gap: 14px;
  align-items: end;
  padding: 17px 0;
  border-bottom: 1px solid rgba(23, 34, 37, 0.12);
}

.iot-brief-identity {
  position: relative;
  min-height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 34px;
}

.iot-brief-identity span {
  color: #a15e1b;
  font-size: 0.61rem;
  font-weight: 700;
}

.iot-brief-identity strong {
  margin-top: 4px;
  color: #172225;
  font-size: 0.79rem;
  font-weight: 700;
  line-height: 1.35;
}

.iot-brief-identity button {
  position: absolute;
  top: 50%;
  right: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(23, 34, 37, 0.14);
  border-radius: 50%;
  color: #6d7679;
  background: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.iot-brief-identity button:hover,
.iot-brief-identity button:focus-visible {
  color: #8f3b31;
  border-color: #8f3b31;
  outline: 0;
}

.iot-brief-row label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: #4e5b5f;
  font-size: 0.65rem;
  font-weight: 700;
}

.iot-brief-row input,
.iot-brief-row select {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 11px;
  border: 1px solid rgba(23, 34, 37, 0.2);
  border-radius: 4px;
  color: #263337;
  background: #ffffff;
  font: inherit;
  font-size: 0.73rem;
  font-weight: 500;
}

.iot-brief-row input:focus,
.iot-brief-row select:focus {
  border-color: #174e45;
  outline: 2px solid rgba(23, 78, 69, 0.12);
}

.iot-brief-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 22px;
}

.iot-brief-footer p {
  max-width: 72ch;
  margin: 0;
  color: #697477;
  font-size: 0.72rem;
  line-height: 1.55;
}

.iot-enquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 70px;
  align-items: center;
  color: #ffffff;
  background: #142421;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.iot-enquiry-copy h2 {
  color: #ffffff;
}

.iot-enquiry-copy > p:not(.eyebrow) {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.62;
}

.iot-hardware-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 28px;
}

.iot-hardware-pair img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 5px;
  background: #ffffff;
}

.iot-contact-form {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.iot-contact-form::before {
  display: none !important;
}

.iot-contact-form .guided-form-head h3 {
  color: #172225;
}

.iot-contact-form .guided-form-head > p:last-child {
  color: #737c7f;
}

.iot-home-spotlight,
.iot-products-callout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 64px;
  align-items: center;
}

.iot-home-spotlight {
  background: #eef2ef;
}

.iot-home-copy .route-actions,
.iot-products-copy .button {
  margin-top: 24px;
}

.iot-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.iot-signal-strip span {
  padding: 7px 9px;
  border: 1px solid rgba(23, 78, 69, 0.18);
  border-radius: 3px;
  color: #174e45;
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
}

.iot-home-media {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #1d2a28;
}

.iot-home-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.iot-products-callout {
  border-top: 1px solid rgba(23, 34, 37, 0.12);
  border-bottom: 1px solid rgba(23, 34, 37, 0.12);
  background: #f3f5f2;
}

.iot-products-media {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: #ffffff;
}

.iot-products-media img {
  width: min(390px, 100%);
  max-height: 260px;
  object-fit: contain;
}

@media (max-width: 980px) {
  .iot-parameter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-brief-row {
    grid-template-columns: minmax(190px, 1fr) minmax(130px, 0.55fr) minmax(170px, 0.8fr);
  }

  .iot-brief-row > label:last-child {
    grid-column: 2 / -1;
  }

  .iot-enquiry,
  .iot-home-spotlight,
  .iot-products-callout {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }
}

@media (max-width: 780px) {
  .iot-page-hero {
    min-height: 610px;
  }

  .iot-page-hero-copy {
    width: calc(100% - 40px);
    margin-left: 20px;
    padding-top: 54px;
  }

  .iot-page-hero-copy h1 {
    font-size: 3rem;
  }

  .iot-path-grid,
  .iot-enquiry,
  .iot-home-spotlight,
  .iot-products-callout {
    grid-template-columns: 1fr;
  }

  .iot-path-item {
    min-height: 150px;
  }

  .iot-selector-head,
  .iot-brief-head,
  .iot-preset-panel,
  .iot-group-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .iot-selection-status {
    width: 112px;
  }

  .iot-preset-actions {
    justify-content: flex-start;
  }

  .iot-brief-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 13px;
    padding: 20px 0;
  }

  .iot-brief-identity {
    grid-column: 1 / -1;
  }

  .iot-brief-row > label:last-child {
    grid-column: 1 / -1;
  }

  .iot-brief-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .iot-enquiry-copy,
  .iot-contact-form {
    width: 100%;
  }

  .iot-home-media {
    grid-row: 1;
  }
}

@media (max-width: 600px) {
  .iot-page-hero {
    min-height: 570px;
    margin-top: var(--header-h);
  }

  .iot-page-hero > img {
    object-position: 58% center;
  }

  .iot-page-hero-overlay {
    background: rgba(9, 20, 18, 0.68);
  }

  .iot-page-hero-copy {
    width: calc(100% - 30px);
    margin-left: 15px;
    padding: 42px 0 116px;
  }

  .iot-page-hero-copy h1 {
    max-width: 12ch;
    margin: 8px 0 14px;
    font-size: 2.16rem;
    line-height: 1.02;
  }

  .iot-page-hero-copy > p:not(.eyebrow) {
    max-width: 38ch;
    font-size: 0.79rem;
    line-height: 1.58;
  }

  .iot-page-hero-copy .hero-actions {
    align-items: stretch;
    margin-top: 20px;
  }

  .iot-page-hero-copy .button {
    width: 100%;
  }

  .iot-hero-facts {
    padding: 0 15px;
  }

  .iot-hero-facts span {
    min-height: 76px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 0 9px;
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .iot-hero-facts span:first-child {
    padding-left: 0;
  }

  .iot-hero-facts strong {
    font-size: 1.02rem;
  }

  .iot-selector-head h2,
  .iot-brief-head h2,
  .iot-enquiry-copy h2,
  .iot-home-copy h2,
  .iot-products-copy h2 {
    font-size: 1.68rem;
  }

  .iot-path-item {
    min-height: 138px;
    padding: 20px;
  }

  .iot-preset-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .iot-preset-actions button {
    width: 100%;
    padding: 0 8px;
  }

  .iot-filter-bar {
    width: calc(100vw - 30px);
    margin-right: -15px;
    margin-left: 0;
    padding-right: 15px;
  }

  .iot-parameter-group + .iot-parameter-group {
    margin-top: 38px;
  }

  .iot-parameter-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .iot-parameter-card {
    min-height: 0;
    padding: 17px;
  }

  .iot-parameter-card > strong {
    margin-top: 15px;
  }

  .iot-parameter-benefit {
    font-size: 0.72rem;
  }

  .iot-parameter-route {
    margin-top: 15px;
  }

  .iot-selector-action {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .iot-selector-action .button,
  .iot-brief-footer .button {
    width: 100%;
  }

  .iot-brief-empty {
    padding: 28px 18px;
  }

  .iot-brief-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .iot-brief-identity,
  .iot-brief-row > label:last-child {
    grid-column: auto;
  }

  .iot-enquiry {
    gap: 30px;
  }

  .iot-hardware-pair img {
    height: 112px;
    padding: 7px;
  }

  .iot-contact-form {
    padding: 21px 17px;
  }

  .iot-home-spotlight,
  .iot-products-callout {
    gap: 28px;
  }

  .iot-home-copy .route-actions {
    align-items: stretch;
  }

  .iot-home-copy .route-actions .button,
  .iot-products-copy .button {
    width: 100%;
  }

  .iot-products-media {
    min-height: 220px;
    padding: 20px;
  }
}

/* IoT experience refinement: compact signal architecture and stronger placement. */
.iot-selector {
  padding-top: 68px !important;
  padding-bottom: 64px !important;
  border-bottom: 1px solid rgba(23, 34, 37, 0.1);
  background: #eef2ef;
}

.iot-brief,
.iot-path-band {
  padding-top: 62px !important;
  padding-bottom: 62px !important;
}

.iot-enquiry {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.iot-selector-head {
  align-items: center;
  margin-bottom: 20px;
}

.iot-selection-status {
  min-width: 104px;
  padding: 13px 16px;
  border: 1px solid rgba(23, 78, 69, 0.16);
  border-left: 3px solid #e9952d;
  border-radius: 5px;
  box-shadow: 0 8px 22px rgba(23, 34, 37, 0.05);
}

.iot-preset-panel {
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1.35fr);
  padding: 15px 16px;
  border: 1px solid rgba(23, 34, 37, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.iot-preset-actions button,
.iot-filter-bar button {
  border-radius: 5px;
}

.iot-filter-bar {
  gap: 6px;
  margin-top: 18px;
  padding-bottom: 1px;
  scrollbar-width: none;
}

.iot-filter-bar::-webkit-scrollbar {
  display: none;
}

.iot-filter-bar button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.iot-filter-bar button span {
  min-width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 10px;
  color: #667174;
  background: #edf1ee;
  font-size: 0.58rem;
}

.iot-filter-bar button.is-active span {
  color: #174e45;
  background: #ffffff;
}

.iot-parameter-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  margin-top: 24px;
}

.iot-parameter-group,
.iot-parameter-group + .iot-parameter-group {
  min-width: 0;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 37, 0.13);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 34, 37, 0.05);
}

.iot-group-heading {
  position: relative;
  min-height: 118px;
  display: grid;
  grid-template-columns: 5px minmax(0, 1fr);
  gap: 13px;
  align-content: start;
  align-items: start;
  margin: 0;
  padding: 20px 18px 17px;
  border-bottom: 1px solid rgba(23, 34, 37, 0.1);
  background: #f8faf8;
}

.iot-group-marker {
  width: 5px;
  height: 40px;
  border-radius: 3px;
  background: #1f6b5d;
}

.iot-parameter-group:nth-child(2) .iot-group-marker {
  background: #3d7289;
}

.iot-parameter-group:nth-child(3) .iot-group-marker {
  background: #c47825;
}

.iot-group-heading h3 {
  font-size: 1rem;
}

.iot-group-heading p {
  margin-top: 6px;
  font-size: 0.69rem;
  line-height: 1.48;
}

.iot-group-count {
  grid-column: 2;
  width: max-content;
  margin-top: 4px;
  padding: 4px 7px;
  border: 1px solid rgba(23, 78, 69, 0.13);
  border-radius: 3px;
  color: #536164;
  background: #ffffff;
  font-size: 0.58rem;
  font-weight: 700;
}

.iot-parameter-grid {
  display: block;
}

.iot-parameter-card {
  min-height: 157px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  padding: 15px 17px;
  border: 0;
  border-top: 1px solid rgba(23, 34, 37, 0.09);
  border-radius: 0;
  box-shadow: none;
  transform: none;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.iot-parameter-card:first-child {
  border-top: 0;
}

.iot-parameter-card:hover {
  border-color: rgba(23, 34, 37, 0.09);
  background: #f7faf8;
  box-shadow: inset 3px 0 0 rgba(23, 78, 69, 0.26);
  transform: none;
}

.iot-parameter-card.is-selected {
  border-color: rgba(23, 34, 37, 0.09);
  background: #edf6f2;
  box-shadow: inset 3px 0 0 #e9952d;
}

.iot-parameter-card:focus-within {
  outline: 2px solid rgba(23, 78, 69, 0.45);
  outline-offset: -2px;
}

.iot-parameter-check {
  position: relative;
  top: 1px;
  right: auto;
  grid-column: 1;
  width: 19px;
  height: 19px;
  transition: border-color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.iot-parameter-card.is-selected .iot-parameter-check {
  transform: scale(1.05);
}

.iot-parameter-card.is-selected .iot-parameter-check::after {
  left: 5px;
  top: 1px;
}

.iot-parameter-main {
  min-width: 0;
  grid-column: 2;
}

.iot-parameter-meta {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}

.iot-parameter-meta strong {
  min-width: 0;
  color: #172225;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.iot-parameter-meta b {
  flex: 0 0 auto;
  max-width: 46%;
  padding: 4px 6px;
  border: 1px solid rgba(23, 34, 37, 0.11);
  border-radius: 3px;
  color: #697477;
  background: #f7f8f6;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: right;
}

.iot-parameter-benefit {
  display: block;
  margin-top: 7px;
  color: #596568;
  font-size: 0.7rem;
  line-height: 1.48;
}

.iot-parameter-route {
  display: block;
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px dashed rgba(23, 34, 37, 0.12);
  color: #737d80;
  font-size: 0.61rem;
  line-height: 1.42;
}

.iot-parameter-route b,
.iot-parameter-route span {
  display: block;
}

.iot-parameter-route b {
  margin-bottom: 2px;
  color: #335149;
  font-size: 0.55rem;
  text-transform: uppercase;
}

.iot-selector-action {
  align-items: flex-end;
  margin-top: 22px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: #172b27;
  box-shadow: 0 14px 30px rgba(23, 34, 37, 0.12);
}

.iot-selected-summary {
  min-width: 0;
}

.iot-selector-action p {
  color: rgba(255, 255, 255, 0.76);
}

.iot-selection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.iot-selection-chips button {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.58rem;
  font-weight: 650;
  cursor: pointer;
}

.iot-selection-chips button:hover,
.iot-selection-chips button:focus-visible {
  border-color: #ffb657;
  background: rgba(255, 182, 87, 0.12);
  outline: 0;
}

.iot-selection-chips button span {
  color: #ffbf70;
  font-size: 0.9rem;
  line-height: 1;
}

.iot-selector-action .button:disabled {
  color: #46534f !important;
  border-color: transparent !important;
  background: rgba(255, 255, 255, 0.62) !important;
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-groups {
  grid-template-columns: minmax(0, 1fr);
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-group {
  display: block;
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-group-heading {
  min-height: 0;
  height: auto;
  border-right: 0;
  border-bottom: 1px solid rgba(23, 34, 37, 0.1);
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(2) {
  border-top: 0;
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(odd) {
  border-right: 1px solid rgba(23, 34, 37, 0.09);
}

[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.iot-path-grid {
  border-color: rgba(23, 34, 37, 0.1);
  box-shadow: 0 12px 28px rgba(23, 34, 37, 0.05);
}

.iot-path-item {
  min-height: 150px;
  padding: 22px;
}

.iot-home-spotlight {
  color: #ffffff;
  background: #17292a;
}

.iot-home-spotlight .eyebrow {
  color: #ffb657;
}

.iot-home-spotlight .iot-home-copy h2 {
  color: #ffffff;
}

.iot-home-spotlight .iot-home-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.iot-home-spotlight .iot-signal-strip span {
  color: rgba(255, 255, 255, 0.86);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.iot-home-spotlight .button.ghost.dark {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
  background: transparent !important;
}

.iot-home-spotlight .button.ghost.dark:hover,
.iot-home-spotlight .button.ghost.dark:focus-visible {
  color: #172225 !important;
  border-color: #ffffff !important;
  background: #ffffff !important;
}

.iot-home-media {
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.2);
}

.iot-products-callout {
  gap: 58px;
  background: #f6f8f6;
}

.iot-products-media {
  min-height: 360px;
  padding: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #172225;
  box-shadow: 0 20px 38px rgba(23, 34, 37, 0.12);
}

.iot-products-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
}

.iot-hardware-pair img:first-child {
  object-fit: cover;
}

@media (max-width: 980px) {
  .iot-preset-actions button,
  .iot-filter-bar button {
    min-height: 44px;
  }

  .iot-parameter-groups {
    grid-template-columns: 1fr;
  }

  .iot-parameter-group {
    display: block;
  }

  .iot-group-heading {
    min-height: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 34, 37, 0.1);
  }

  .iot-parameter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-parameter-card:nth-child(2) {
    border-top: 0;
  }

  .iot-parameter-card:nth-child(odd) {
    border-right: 1px solid rgba(23, 34, 37, 0.09);
  }

  .iot-parameter-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .iot-products-media {
    min-height: 300px;
  }
}

@media (max-width: 780px) {
  .iot-selector,
  .iot-brief,
  .iot-path-band,
  .iot-enquiry {
    padding-top: 46px !important;
    padding-bottom: 46px !important;
  }

  .iot-preset-panel {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .iot-parameter-group,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-group {
    display: block;
  }

  .iot-group-heading,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-group-heading {
    min-height: 0;
    height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 34, 37, 0.1);
  }

  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-parameter-card,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card {
    border-top: 1px solid rgba(23, 34, 37, 0.09);
  }

  .iot-parameter-card:nth-child(-n + 2),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(-n + 2) {
    border-top: 0;
  }

  .iot-parameter-card:nth-child(odd),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(odd) {
    border-right: 1px solid rgba(23, 34, 37, 0.09);
  }

  .iot-selector-action {
    align-items: stretch;
  }

  .iot-products-media {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 600px) {
  .iot-page-hero {
    min-height: 548px;
  }

  .iot-page-hero-copy {
    padding-bottom: 108px;
  }

  .iot-selector,
  .iot-brief,
  .iot-path-band,
  .iot-enquiry {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .iot-selector-head {
    gap: 13px;
    margin-bottom: 16px;
  }

  .iot-selection-status {
    width: 98px;
    min-width: 98px;
  }

  .iot-preset-panel {
    padding: 14px;
  }

  .iot-filter-bar {
    margin-top: 16px;
  }

  .iot-parameter-groups {
    gap: 10px;
    margin-top: 18px;
  }

  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    display: block;
  }

  .iot-parameter-card,
  .iot-parameter-card:nth-child(2),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(2) {
    border-top: 1px solid rgba(23, 34, 37, 0.09);
  }

  .iot-parameter-card:first-child,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:first-child {
    border-top: 0;
  }

  .iot-parameter-card:nth-child(odd),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(odd) {
    border-right: 0;
  }

  .iot-group-heading {
    padding: 17px 15px 14px;
  }

  .iot-parameter-card {
    min-height: 0;
    padding: 14px 15px;
  }

  .iot-parameter-meta strong {
    font-size: 0.8rem;
  }

  .iot-parameter-benefit {
    font-size: 0.69rem;
  }

  .iot-parameter-route {
    margin-top: 8px;
    padding-top: 8px;
  }

  .iot-selector-action {
    margin-top: 14px;
    padding: 14px;
  }

  .iot-selection-chips {
    gap: 5px;
  }

  .iot-selection-chips button {
    max-width: 100%;
  }

  .iot-path-item {
    min-height: 126px;
  }

  .iot-home-spotlight {
    padding-top: 38px !important;
    padding-bottom: 40px !important;
  }

  .iot-products-callout {
    gap: 24px;
  }
}

/* IoT decision workspace: progressive disclosure and a calmer review flow. */
.iot-page-hero {
  min-height: min(570px, 72vh);
}

.iot-page-hero-copy {
  width: min(650px, calc(100% - 48px));
  padding-top: 62px;
  padding-bottom: 112px;
}

.iot-page-hero-copy h1 {
  max-width: 12ch;
  margin-top: 9px;
  margin-bottom: 16px;
  font-size: clamp(2.65rem, 4.4vw, 3.85rem);
  line-height: 1.01;
}

.iot-page-hero-copy > p:not(.eyebrow) {
  max-width: 56ch;
  font-size: 0.94rem;
  line-height: 1.58;
}

.iot-page-hero-copy .hero-actions {
  margin-top: 24px;
}

.iot-hero-facts span {
  position: relative;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 0 22px 0 25px;
}

.iot-hero-facts span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 34px;
  border-radius: 3px;
  background: #e9952d;
}

.iot-hero-facts span:nth-child(2)::before {
  background: #64a0b5;
}

.iot-hero-facts span:nth-child(3)::before {
  background: #73a694;
}

.iot-hero-facts strong {
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.25;
}

.iot-hero-facts small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.65rem;
  line-height: 1.35;
}

.iot-selector {
  padding-top: 56px !important;
  padding-bottom: 58px !important;
  background: #f2f5f2;
}

.iot-selector-head {
  align-items: center;
  gap: 34px;
  margin-bottom: 18px;
}

.iot-selector-head h2 {
  max-width: 18ch;
}

.iot-selection-status {
  min-width: 112px;
  padding: 14px 17px;
  border: 1px solid rgba(23, 34, 37, 0.12);
  border-left: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #173d36;
  box-shadow: 0 12px 28px rgba(23, 34, 37, 0.12);
}

.iot-selection-status::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 6px 0 0 6px;
  background: #e9952d;
}

.iot-selection-status strong,
.iot-selection-status span {
  color: inherit;
}

.iot-preset-panel {
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: 22px;
  padding: 15px;
  border: 1px solid rgba(23, 34, 37, 0.11);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 28px rgba(23, 34, 37, 0.04);
}

.iot-preset-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.iot-preset-actions button {
  min-width: 0;
  min-height: 56px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 8px 12px;
  border-color: rgba(23, 34, 37, 0.13);
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.iot-preset-actions button strong,
.iot-preset-actions button span {
  display: block;
}

.iot-preset-actions button strong {
  color: inherit;
  font-size: 0.67rem;
  line-height: 1.25;
}

.iot-preset-actions button span {
  color: #7b8587;
  font-size: 0.57rem;
  font-weight: 650;
}

.iot-preset-actions button.is-active {
  color: #173d36;
  border-color: rgba(23, 78, 69, 0.4);
  background: #edf6f2;
  box-shadow: inset 0 -3px 0 #e9952d;
}

.iot-preset-actions button.is-active span {
  color: #526c65;
}

.iot-preset-actions button.is-clear {
  color: #7a4b25;
  background: #fffaf4;
}

.iot-filter-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
  overflow: visible;
}

.iot-filter-bar button {
  position: relative;
  min-width: 0;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 13px 48px 13px 16px;
  border-color: rgba(23, 34, 37, 0.12);
  border-radius: 7px;
  color: #243135;
  background: rgba(255, 255, 255, 0.66);
  text-align: left;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.iot-filter-bar button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 0 3px 3px 0;
  background: #2a7567;
}

.iot-filter-bar button:nth-child(2)::before {
  background: #4d879d;
}

.iot-filter-bar button:nth-child(3)::before {
  background: #d58a32;
}

.iot-filter-bar button strong,
.iot-filter-bar button small {
  display: block;
}

.iot-filter-bar button strong {
  font-size: 0.79rem;
  line-height: 1.24;
}

.iot-filter-bar button small {
  color: #727d80;
  font-size: 0.61rem;
  font-weight: 550;
  line-height: 1.35;
}

.iot-filter-bar button > span {
  position: absolute;
  top: 50%;
  right: 14px;
  min-width: 26px;
  height: 26px;
  padding: 0 7px;
  transform: translateY(-50%);
  border-radius: 13px;
}

.iot-filter-bar button.is-active {
  color: #172225;
  border-color: rgba(23, 78, 69, 0.34);
  background: #ffffff;
  box-shadow: 0 13px 28px rgba(23, 34, 37, 0.07), inset 0 -3px 0 #e9952d;
  transform: none;
}

.iot-filter-bar button.is-active small {
  color: #536460;
}

.iot-filter-bar button.is-active > span {
  color: #ffffff;
  background: #173d36;
}

.iot-parameter-groups {
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 0;
  margin-top: 14px;
}

.iot-parameter-group,
.iot-parameter-group + .iot-parameter-group {
  margin-top: 0;
  border-radius: 7px;
  animation: iot-group-enter 220ms ease both;
}

.iot-group-heading,
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-group-heading {
  min-height: 0;
  grid-template-columns: 5px minmax(0, 1fr) auto;
  align-items: center;
  padding: 17px 19px;
  border-right: 0;
}

.iot-group-heading .iot-group-count {
  grid-column: auto;
  margin: 0;
  white-space: nowrap;
}

.iot-parameter-grid,
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.iot-parameter-card,
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card {
  min-height: 158px;
  padding: 17px 19px;
  border-top: 1px solid rgba(23, 34, 37, 0.09);
}

.iot-parameter-card:nth-child(-n + 2),
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(-n + 2) {
  border-top: 0;
}

.iot-parameter-card:nth-child(odd),
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(odd) {
  border-right: 1px solid rgba(23, 34, 37, 0.09);
}

.iot-parameter-card:last-child:nth-child(odd),
[data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  border-right: 0;
}

.iot-parameter-card.is-selected {
  animation: iot-card-confirm 180ms ease both;
}

.iot-parameter-meta strong {
  font-size: 0.85rem;
}

.iot-parameter-benefit {
  max-width: 70ch;
  font-size: 0.71rem;
}

.iot-selector-action {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 7px;
}

.iot-selector-action .button {
  flex: 0 0 auto;
  min-height: 44px !important;
}

.iot-brief {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
  background: #eef2ef;
}

.iot-brief-head {
  padding-bottom: 18px;
  border-bottom: 0;
}

.iot-brief-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
  border-top: 0;
}

.iot-brief-row {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 13px;
  align-items: end;
  padding: 17px;
  border: 1px solid rgba(23, 34, 37, 0.12);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(23, 34, 37, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.iot-brief-row:hover {
  border-color: rgba(23, 78, 69, 0.28);
  box-shadow: 0 14px 30px rgba(23, 34, 37, 0.07);
}

.iot-brief-row:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.iot-brief-identity {
  grid-column: 1 / -1;
  min-height: 48px;
  padding: 0 40px 12px 0;
  border-bottom: 1px solid rgba(23, 34, 37, 0.09);
}

.iot-brief-identity button {
  top: 1px;
  right: 0;
  transform: none;
}

.iot-brief-row > label:last-child {
  grid-column: 1 / -1;
}

.iot-brief-row input,
.iot-brief-row select {
  height: 44px;
  border-radius: 5px;
}

.iot-brief-footer {
  gap: 24px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(23, 34, 37, 0.11);
  border-radius: 7px;
  background: #ffffff;
}

.iot-path-band {
  padding-top: 52px !important;
  padding-bottom: 52px !important;
}

.iot-path-item {
  min-height: 142px;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.iot-enquiry {
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: 58px;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.iot-enquiry-copy {
  align-self: center;
}

.iot-enquiry-media {
  position: relative;
  margin: 24px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  aspect-ratio: 16 / 10;
  background: #0d1c19;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.22);
}

.iot-enquiry-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.iot-enquiry-media figcaption {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  gap: 2px;
  padding: 15px 17px;
  color: #ffffff;
  background: rgba(9, 20, 18, 0.88);
}

.iot-enquiry-media figcaption span {
  color: #ffb657;
  font-size: 0.57rem;
  font-weight: 750;
  text-transform: uppercase;
}

.iot-enquiry-media figcaption strong {
  font-size: 0.76rem;
  line-height: 1.35;
}

.iot-contact-form {
  border-radius: 7px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
}

.iot-form-selection {
  display: grid;
  gap: 3px;
  padding: 12px 13px;
  border: 1px solid rgba(23, 34, 37, 0.1);
  border-left: 4px solid #9ba7a2;
  border-radius: 5px;
  color: #687376;
  background: #f5f7f5;
}

.iot-form-selection.has-selection {
  border-left-color: #e9952d;
  color: #3d514c;
  background: #eef6f2;
}

.iot-form-selection strong,
.iot-form-selection span {
  display: block;
}

.iot-form-selection strong {
  color: #1f2c2f;
  font-size: 0.7rem;
}

.iot-form-selection span {
  overflow-wrap: anywhere;
  font-size: 0.62rem;
  line-height: 1.45;
}

.iot-home-copy h2 {
  max-width: 18ch;
  font-size: clamp(1.75rem, 2.7vw, 2.25rem);
}

.iot-home-media,
.iot-products-media {
  border-radius: 7px;
}

.iot-page-hero .iot-hero-facts span:first-child {
  padding-left: 25px;
}

@keyframes iot-group-enter {
  from {
    opacity: 0;
    transform: translateY(7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes iot-card-confirm {
  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .iot-page-hero {
    min-height: 550px;
  }

  .iot-preset-panel {
    grid-template-columns: 1fr;
  }

  .iot-preset-actions {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .iot-filter-bar button {
    min-height: 74px;
  }

  .iot-brief-list {
    grid-template-columns: 1fr;
  }

  .iot-enquiry {
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
    gap: 36px;
  }
}

@media (max-width: 780px) {
  .iot-page-hero {
    min-height: 530px;
  }

  .iot-page-hero-copy {
    width: min(620px, calc(100% - 36px));
    margin-left: 18px;
    padding-top: 54px;
    padding-bottom: 105px;
  }

  .iot-page-hero-copy h1 {
    font-size: clamp(2.35rem, 7vw, 3.2rem);
  }

  .iot-selector-head {
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: start;
  }

  .iot-selection-status {
    justify-self: end;
    margin-top: 15px;
  }

  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-enquiry {
    grid-template-columns: 1fr;
  }

  .iot-enquiry-copy,
  .iot-contact-form {
    width: min(100%, 660px);
  }

  .iot-contact-form {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .iot-page-hero {
    min-height: 520px;
  }

  .iot-page-hero-copy {
    padding-top: 48px;
    padding-bottom: 94px;
  }

  .iot-page-hero-copy h1 {
    max-width: 13ch;
    font-size: 2.25rem;
    line-height: 1.03;
  }

  .iot-page-hero-copy > p:not(.eyebrow) {
    max-width: 44ch;
    font-size: 0.83rem;
    line-height: 1.5;
  }

  .iot-page-hero-copy .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 8px;
    margin-top: 19px;
  }

  .iot-page-hero-copy .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 0.66rem;
  }

  .iot-hero-facts span {
    min-height: 66px;
    padding: 0 9px 0 14px;
  }

  .iot-hero-facts span::before {
    top: 19px;
    height: 28px;
  }

  .iot-hero-facts strong {
    font-size: 0.64rem;
  }

  .iot-hero-facts small {
    display: none;
  }

  .iot-selector {
    padding-top: 34px !important;
    padding-bottom: 36px !important;
  }

  .iot-selector-head {
    grid-template-columns: minmax(0, 1fr) 88px;
    align-items: end;
    gap: 12px;
  }

  .iot-selector-head h2 {
    max-width: 14ch;
    font-size: 1.75rem;
  }

  .iot-selection-status {
    width: 88px;
    min-width: 88px;
    margin-top: 15px;
    padding: 11px 13px;
  }

  .iot-preset-panel {
    gap: 12px;
    padding: 13px;
  }

  .iot-preset-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-preset-actions button {
    min-height: 54px;
  }

  .iot-filter-bar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin-top: 14px;
  }

  .iot-filter-bar button {
    min-height: 68px;
    gap: 0;
    padding: 10px 8px 10px 12px;
  }

  .iot-filter-bar button::before {
    top: 11px;
    bottom: 11px;
    width: 3px;
  }

  .iot-filter-bar button strong {
    font-size: 0.63rem;
    line-height: 1.28;
  }

  .iot-filter-bar button small,
  .iot-filter-bar button > span {
    display: none;
  }

  .iot-parameter-groups {
    margin-top: 9px;
  }

  .iot-group-heading,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-group-heading {
    grid-template-columns: 4px minmax(0, 1fr) auto;
    padding: 15px 14px;
  }

  .iot-group-heading p {
    max-width: 34ch;
  }

  .iot-group-heading .iot-group-count {
    padding: 3px 5px;
    font-size: 0.52rem;
  }

  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    display: block;
  }

  .iot-parameter-card,
  .iot-parameter-card:nth-child(2),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:nth-child(2) {
    min-height: 0;
    padding: 14px;
    border-top: 1px solid rgba(23, 34, 37, 0.09);
    border-right: 0;
  }

  .iot-parameter-card:first-child,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-card:first-child {
    border-top: 0;
  }

  .iot-parameter-card:not(.is-selected) .iot-parameter-route {
    display: none;
  }

  .iot-selector-action {
    gap: 13px;
    padding: 13px;
  }

  .iot-selector-action .button {
    width: 100%;
  }

  .iot-brief {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .iot-brief-head {
    gap: 12px;
    padding-bottom: 10px;
  }

  .iot-brief-head h2 {
    font-size: 1.65rem;
  }

  .iot-brief-list {
    gap: 9px;
  }

  .iot-brief-row {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 14px;
  }

  .iot-brief-identity,
  .iot-brief-row > label:last-child {
    grid-column: 1;
  }

  .iot-brief-footer {
    align-items: stretch;
    gap: 12px;
    padding: 13px;
  }

  .iot-brief-footer .button {
    width: 100%;
  }

  .iot-path-band {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .iot-enquiry {
    gap: 28px;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .iot-enquiry-media {
    margin-top: 18px;
  }

  .iot-contact-form {
    padding: 17px;
  }

  .iot-home-spotlight {
    padding-top: 32px !important;
    padding-bottom: 34px !important;
  }

  .iot-home-media {
    aspect-ratio: 16 / 9;
  }

  .iot-home-copy h2 {
    font-size: 1.62rem;
  }

  .iot-home-copy .iot-signal-strip span:nth-child(n + 5) {
    display: none;
  }
}

@media (max-width: 350px) {
  .iot-page-hero {
    min-height: 590px;
  }

  .iot-page-hero-copy {
    padding-bottom: 94px;
  }

  .iot-page-hero-copy .hero-actions {
    grid-template-columns: 1fr;
  }

  .iot-filter-bar button {
    min-height: 74px;
    padding-left: 10px;
  }

  .iot-filter-bar button strong {
    font-size: 0.59rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iot-parameter-group,
  .iot-parameter-card.is-selected {
    animation: none;
  }
}

/* IoT configurator workflow polish v4 */
.iot-journey {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 34, 37, 0.11);
  border-radius: 7px;
  background: rgba(230, 236, 232, 0.76);
  list-style: none;
}

.iot-journey li {
  position: relative;
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
}

.iot-journey li:not(:last-child)::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(23, 34, 37, 0.12);
  border-right: 1px solid rgba(23, 34, 37, 0.12);
  background: #e6ece8;
  transform: translateY(-50%) rotate(45deg);
}

.iot-journey li > span {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.iot-journey li > span:last-child {
  display: grid;
  gap: 1px;
}

.iot-journey-marker {
  width: 22px;
  height: 22px;
  display: block;
  border: 2px solid #a3aea9;
  border-radius: 50%;
  background: #f8faf8;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.58);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.iot-journey-marker::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transform: translate(-50%, -50%);
  transition: background-color 180ms ease, transform 180ms ease;
}

.iot-journey li strong,
.iot-journey li small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.iot-journey li strong {
  color: #63706d;
  font-size: 0.69rem;
  line-height: 1.25;
}

.iot-journey li small {
  color: #7c8784;
  font-size: 0.57rem;
  font-weight: 600;
  line-height: 1.35;
}

.iot-journey li.is-active {
  background: rgba(255, 255, 255, 0.58);
}

.iot-journey li.is-active .iot-journey-marker {
  border-color: #e9952d;
  background: #fff8ee;
  box-shadow: 0 0 0 4px rgba(233, 149, 45, 0.13);
}

.iot-journey li.is-active .iot-journey-marker::before {
  background: #e9952d;
  transform: translate(-50%, -50%) scale(1.08);
}

.iot-journey li.is-active strong {
  color: #172225;
}

.iot-journey li.is-active small {
  color: #52625e;
}

.iot-journey li.is-complete .iot-journey-marker {
  border-color: #276c60;
  background: #276c60;
  box-shadow: 0 0 0 3px rgba(39, 108, 96, 0.12);
}

.iot-journey li.is-complete .iot-journey-marker::before {
  width: 7px;
  height: 4px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  border-radius: 0;
  background: transparent;
  transform: translate(-50%, -65%) rotate(45deg);
}

.iot-journey li.is-complete strong {
  color: #276c60;
}

.iot-filter-bar button.has-selection > span {
  color: #174e45;
  border: 1px solid rgba(39, 108, 96, 0.18);
  background: #e7f2ee;
  box-shadow: 0 0 0 3px rgba(39, 108, 96, 0.06);
}

.iot-filter-bar button.has-selection.is-active > span {
  color: #ffffff;
  border-color: #276c60;
  background: #276c60;
}

@media (max-width: 600px) {
  .iot-journey {
    margin-bottom: 12px;
  }

  .iot-journey li {
    min-height: 52px;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 7px;
    padding: 8px 10px;
  }

  .iot-journey-marker {
    width: 18px;
    height: 18px;
    border-width: 1.5px;
  }

  .iot-journey li strong {
    font-size: 0.62rem;
  }

  .iot-journey li small {
    display: none;
  }

  .iot-filter-bar button.has-selection::after {
    content: "";
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: #e9952d;
    box-shadow: 0 0 0 1px rgba(23, 34, 37, 0.08);
  }
}

@media (max-width: 350px) {
  .iot-journey li {
    padding-right: 7px;
    padding-left: 7px;
  }

  .iot-journey li strong {
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iot-journey-marker,
  .iot-journey-marker::before {
    transition: none;
  }
}

/* Shared touch-target normalization */
#catalog-search-input,
.catalog-search-submit,
.header-cart,
.menu-button,
.footer-subscribe input:not(.form-honeypot),
.footer-subscribe button {
  min-height: 44px !important;
}

.catalog-search-submit,
.header-cart,
.menu-button {
  min-width: 44px !important;
}

.header-cart,
.menu-button {
  width: 44px !important;
  height: 44px !important;
  flex: 0 0 44px !important;
}

/* IoT composition and stacking v5 */
.iot-brief[hidden] {
  display: none !important;
}

.iot-selector {
  padding-bottom: 34px !important;
}

.iot-selector.has-brief {
  padding-bottom: 24px !important;
}

.iot-selector.has-brief + .iot-brief {
  padding-top: 32px !important;
}

.iot-brief {
  padding-bottom: 36px !important;
}

.iot-path-band {
  padding-top: 36px !important;
}

@media (min-width: 1200px) {
  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    background: rgba(23, 34, 37, 0.09);
  }

  .iot-parameter-grid > .iot-parameter-card,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid > .iot-parameter-card {
    grid-column: auto !important;
    min-height: 205px;
    border: 0 !important;
  }
}

@media (min-width: 700px) and (max-width: 1199px) {
  .iot-parameter-grid,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    background: rgba(23, 34, 37, 0.09);
  }

  .iot-parameter-grid > .iot-parameter-card,
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid > .iot-parameter-card {
    grid-column: span 2 !important;
    border: 0 !important;
  }

  .iot-parameter-grid > .iot-parameter-card:nth-last-child(-n + 2),
  [data-iot-filter-active]:not([data-iot-filter-active="all"]) .iot-parameter-grid > .iot-parameter-card:nth-last-child(-n + 2) {
    grid-column: span 3 !important;
  }
}

@media (min-width: 700px) and (max-width: 980px) {
  .iot-brief-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .iot-brief-list > .iot-brief-row {
    grid-column: auto !important;
  }

  .iot-brief-list[data-iot-count="1"] > .iot-brief-row,
  .iot-brief-list[data-iot-count="3"] > .iot-brief-row:last-child,
  .iot-brief-list[data-iot-count="5"] > .iot-brief-row:last-child {
    grid-column: 1 / -1 !important;
    width: calc(50% - 6px);
    justify-self: center;
  }

  .iot-brief-list[data-iot-count="1"] > .iot-brief-row {
    width: min(100%, 520px);
  }
}

@media (min-width: 981px) {
  .iot-brief-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .iot-brief-list > .iot-brief-row {
    grid-column: span 3 !important;
  }

  .iot-brief-list[data-iot-count="1"] > .iot-brief-row {
    grid-column: 2 / span 4 !important;
  }

  .iot-brief-list[data-iot-count="3"] > .iot-brief-row {
    grid-column: span 2 !important;
  }

  .iot-brief-list[data-iot-count="5"] > .iot-brief-row {
    grid-column: span 2 !important;
  }

  .iot-brief-list[data-iot-count="5"] > .iot-brief-row:nth-child(n + 4) {
    grid-column: span 3 !important;
  }
}

@media (max-width: 600px) {
  .iot-selector {
    padding-bottom: 28px !important;
  }

  .iot-selector.has-brief {
    padding-bottom: 18px !important;
  }

  .iot-selector.has-brief + .iot-brief {
    padding-top: 24px !important;
  }

  .iot-brief {
    padding-bottom: 30px !important;
  }

  .iot-path-band {
    padding-top: 32px !important;
  }

  .iot-selector-head {
    grid-template-columns: minmax(0, 1fr) 88px;
    align-items: start;
    column-gap: 12px;
    row-gap: 8px;
  }

  .iot-selector-head > div:first-child {
    display: contents;
  }

  .iot-selector-head > div:first-child > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }

  .iot-selector-head > div:first-child > h2 {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
  }

  .iot-selector-head > div:first-child > p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
    margin-top: 3px;
  }

  .iot-selection-status {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin-top: 0;
  }

  .iot-selection-chips {
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .iot-selection-chips::-webkit-scrollbar {
    display: none;
  }

  .iot-selection-chips button {
    max-width: min(78vw, 270px);
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .iot-brief-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 10px;
    row-gap: 8px;
  }

  .iot-brief-head > div {
    display: contents;
  }

  .iot-brief-head > div > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .iot-brief-head > div > h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  .iot-brief-head > div > p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
  }

  .iot-brief-head > span {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    justify-self: end;
    margin: 0;
    white-space: nowrap;
  }

  .iot-brief-row {
    grid-template-columns: minmax(104px, 0.72fr) minmax(0, 1.28fr);
  }

  .iot-brief-row .iot-brief-identity,
  .iot-brief-row > label:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 350px) {
  .iot-brief-row {
    grid-template-columns: 1fr;
  }

  .iot-brief-row .iot-brief-identity,
  .iot-brief-row > label:last-child {
    grid-column: 1;
  }
}

@media (min-width: 601px) and (max-width: 780px) {
  .iot-selector-head {
    grid-template-columns: minmax(0, 1fr) 112px;
    align-items: start;
    column-gap: 18px;
    row-gap: 10px;
  }

  .iot-selector-head > div:first-child {
    display: contents;
  }

  .iot-selector-head > div:first-child > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
  }

  .iot-selector-head > div:first-child > h2 {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
  }

  .iot-selector-head > div:first-child > p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    max-width: none;
    margin-top: 2px;
  }

  .iot-selection-status {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: end;
    margin-top: 0;
  }
}

@media (min-width: 601px) and (max-width: 980px) {
  .iot-brief-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    column-gap: 14px;
    row-gap: 9px;
  }

  .iot-brief-head > div {
    display: contents;
  }

  .iot-brief-head > div > .eyebrow {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    margin: 0;
  }

  .iot-brief-head > div > h2 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
  }

  .iot-brief-head > div > p:last-child {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0;
  }

  .iot-brief-head > span {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    min-width: 0;
    justify-self: end;
    margin: 0;
    white-space: nowrap;
  }
}
