/*
 * TUMBLOX homepage composition.
 * Loaded after the shared design system and scoped to .tx-home so storefront
 * migration templates can evolve without destabilizing category or PDP pages.
 */

.tx-home {
  overflow: clip;
  background: #ffffff;
}

.tx-home .tx-section {
  width: 100%;
  max-width: none;
  padding: 96px max(24px, calc((100% - var(--tx-container)) / 2));
}

.tx-home .tx-section-head {
  width: min(100%, 860px);
  margin: 0 auto 38px;
  text-align: center;
}

.tx-home .tx-section-head .tx-eyebrow,
.tx-home .tx-section > .tx-eyebrow,
.tx-home .tx-home-oem .tx-eyebrow {
  margin-bottom: 10px;
  letter-spacing: 0;
}

.tx-home .tx-section-head h2,
.tx-home .tx-section > h2 {
  margin: 0 auto 16px;
  font-size: 46px;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

.tx-home .tx-section-head .tx-section-lede,
.tx-home .tx-section > .tx-section-lede {
  max-width: 820px;
  margin: 0 auto;
  color: var(--tx-muted);
  font-size: 17px;
  line-height: 1.65;
  text-align: center;
}

/* Hero: image-led, restrained, and stable at every breakpoint. */
.tx-home > .tx-hero-carousel,
.tx-home .tx-hero-track,
.tx-home .tx-hero-slide {
  height: 620px;
  min-height: 620px;
}

.tx-home > .tx-hero-carousel {
  isolation: isolate;
  background: #ffffff;
}

.tx-home .tx-hero-track {
  display: flex;
  direction: ltr;
  transform: translate3d(0, 0, 0);
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.24, 1);
}

.tx-home .tx-hero-track[data-active-index="0"] { transform: translate3d(0, 0, 0); }
.tx-home .tx-hero-track[data-active-index="1"] { transform: translate3d(-100%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="2"] { transform: translate3d(-200%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="3"] { transform: translate3d(-300%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="4"] { transform: translate3d(-400%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="5"] { transform: translate3d(-500%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="6"] { transform: translate3d(-600%, 0, 0); }
.tx-home .tx-hero-track[data-active-index="7"] { transform: translate3d(-700%, 0, 0); }

.tx-home .tx-hero-track[data-loop-motion="forward-prepare"] {
  transition: none !important;
  transform: translate3d(-700%, 0, 0);
}

.tx-home .tx-hero-track[data-loop-motion="forward-active"] {
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.24, 1) !important;
  transform: translate3d(-800%, 0, 0);
}

.tx-home .tx-hero-track[data-loop-motion="forward-reset"] {
  transition: none !important;
  transform: translate3d(0, 0, 0);
}

.tx-home .tx-hero-track[data-loop-motion="backward-prepare"] {
  transition: none !important;
  transform: translate3d(-100%, 0, 0);
}

.tx-home .tx-hero-track[data-loop-motion="backward-active"] {
  transition: transform 520ms cubic-bezier(0.22, 0.75, 0.24, 1) !important;
  transform: translate3d(0, 0, 0);
}

.tx-home .tx-hero-track[data-loop-motion="backward-reset"] {
  transition: none !important;
  transform: translate3d(-700%, 0, 0);
}

.tx-home .tx-hero-slide {
  flex: 0 0 100%;
  align-items: center;
  padding: 88px max(72px, calc((100% - var(--tx-container)) / 2));
}

html[dir="rtl"] .tx-home .tx-hero-slide {
  direction: rtl;
}

/* Factory-sport poster system: a decorative abstract canvas and a separate,
   unmodified product-reference layer. The two layers must never be flattened
   into final SKU media or factory evidence. */
.tx-home .tx-hero-slide__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.tx-home .tx-hero-slide__product {
  position: absolute;
  z-index: 1;
  inset-block: 0;
  inset-inline-end: 0;
  width: 60%;
  overflow: hidden;
  background: #ffffff;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%);
}

.tx-home .tx-hero-slide__product img {
  position: absolute;
  inset-block: 0;
  right: 0;
  width: 100vw;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.tx-home .tx-hero-slide--montage .tx-hero-slide__product img {
  inset: 6% 3% 6% auto;
  width: 90%;
  height: 88%;
  object-fit: contain;
  object-position: center;
}

html[dir="rtl"] .tx-home .tx-hero-slide__product {
  inset-inline-start: 0;
  inset-inline-end: auto;
  clip-path: polygon(0 0, 91% 0, 100% 100%, 0 100%);
}

.tx-home .tx-hero-slide__shade {
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(2, 17, 32, 0.24) 0%, rgba(2, 17, 32, 0.08) 37%, transparent 47%);
}

html[dir="rtl"] .tx-home .tx-hero-slide__shade {
  background: linear-gradient(270deg, rgba(2, 17, 32, 0.24) 0%, rgba(2, 17, 32, 0.08) 37%, transparent 47%);
}

.tx-home .tx-hero-content {
  z-index: 3;
  width: min(40%, 650px);
  margin: 0;
  color: #ffffff;
}

.tx-home .tx-hero-accent--aqua { --tx-accent: #24b7d8; }
.tx-home .tx-hero-accent--blue { --tx-accent: #2f8de4; }
.tx-home .tx-hero-accent--teal { --tx-accent: #22bdb8; }
.tx-home .tx-hero-accent--amber { --tx-accent: #f5aa2c; }
.tx-home .tx-hero-accent--violet { --tx-accent: #7b63c8; }
.tx-home .tx-hero-accent--steel { --tx-accent: #6f96c8; }
.tx-home .tx-hero-accent--pink { --tx-accent: #e85091; }

html[dir="rtl"] .tx-home .tx-hero-content {
  margin-inline-start: auto;
}

.tx-home .tx-hero-content .tx-eyebrow {
  margin-bottom: 14px;
  color: #8fe3eb;
  letter-spacing: 0;
}

.tx-home .tx-hero-content h1,
.tx-home .tx-hero-content .tx-hero-heading {
  max-width: 650px;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(42px, 4.1vw, 64px);
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-align: start;
}

.tx-home .tx-hero-content p:not(.tx-eyebrow) {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.55;
}

.tx-home .tx-hero-actions {
  margin-top: 28px;
}

.tx-home .tx-hero-arrow {
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(4, 18, 31, 0.22);
  color: var(--tx-navy);
  box-shadow: 0 8px 24px rgba(4, 18, 31, 0.12);
}

.tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary {
  background: rgba(2, 17, 32, 0.14);
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
}

.tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary:hover,
.tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--tx-navy);
}

.tx-home .tx-hero-dots {
  bottom: 18px;
}

.tx-home .tx-hero-count {
  display: none;
  direction: ltr;
  unicode-bidi: isolate;
}

.tx-home .tx-hero-dot::before {
  background: rgba(4, 18, 31, 0.34);
}

.tx-home .tx-hero-dot.is-active::before {
  background: var(--tx-aqua);
}

.tx-home .tx-hero-autoplay {
  position: absolute;
  z-index: 4;
  right: max(18px, calc((100% - var(--tx-container)) / 2));
  bottom: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(4, 18, 31, 0.22);
  border-radius: 50%;
  color: var(--tx-navy);
  font: 700 14px/1 var(--tx-font-sans);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(4, 18, 31, 0.12);
}

.tx-home .tx-hero-autoplay:hover,
.tx-home .tx-hero-autoplay:focus-visible {
  background: #ffffff;
  border-color: var(--tx-electric);
}

.tx-home .tx-hero-autoplay:disabled {
  opacity: 0.62;
  cursor: default;
}

/* Buyer assurances: a full-width proof band, not four floating cards. */
.tx-home-trust {
  display: block;
  padding: 0 max(24px, calc((100% - var(--tx-container)) / 2));
  background: #ffffff;
  border-top: 1px solid var(--tx-border);
  border-bottom: 1px solid var(--tx-border);
}

.tx-home-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
}

.tx-home-trust article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 3px 12px;
  align-content: center;
  min-height: 112px;
  padding: 22px 24px;
  border-right: 1px solid var(--tx-border);
}

.tx-home-trust article:last-child {
  border-right: 0;
}

.tx-home-trust article > span {
  grid-row: 1 / span 2;
  color: var(--tx-aqua);
  font-family: var(--tx-font-display);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.tx-home-trust h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  text-align: start;
}

.tx-home-trust p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
}

/* Use-case discovery: five purposeful image tiles in a 12-column composition. */
.tx-home .tx-use-cases {
  background: #ffffff;
}

.tx-home .tx-use-case-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
}

.tx-home .tx-use-case-card,
.tx-home .tx-use-case-card:nth-child(4):nth-last-child(2),
.tx-home .tx-use-case-card:nth-child(5):last-child {
  position: relative;
  display: block;
  grid-column: span 4;
  min-width: 0;
  min-height: 310px;
  overflow: hidden;
  background: var(--tx-navy);
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.tx-home .tx-use-case-card:nth-child(1) {
  grid-column: span 7;
  min-height: 420px;
}

.tx-home .tx-use-case-card:nth-child(2) {
  grid-column: span 5;
  min-height: 420px;
}

.tx-home .tx-use-case-card:hover,
.tx-home .tx-use-case-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(6, 24, 39, 0.18);
}

.tx-home .tx-use-case-card__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.tx-home .tx-use-case-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.tx-home .tx-use-case-card:hover img,
.tx-home .tx-use-case-card:focus-within img {
  transform: scale(1.025);
}

.tx-home .tx-use-case-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 31, 0.04) 18%, rgba(4, 18, 31, 0.38) 55%, rgba(4, 18, 31, 0.92) 100%);
}

.tx-home .tx-use-case-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.tx-home .tx-use-case-card__body .tx-eyebrow {
  margin: 0 0 8px;
  color: #8fe3eb;
  font-size: 11px;
  letter-spacing: 0;
}

.tx-home .tx-use-case-card__body > strong {
  max-width: 100%;
  font-family: var(--tx-font-display);
  font-size: 30px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.tx-home .tx-use-case-card__description {
  display: -webkit-box;
  max-width: 620px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tx-home .tx-use-case-card__cta {
  margin-top: 15px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

/* Product review: catalog choices remain distinct from audience use cases. */
.tx-home .tx-product-review {
  background: #f1f6f9;
  border-block: 1px solid var(--tx-border);
}

.tx-home .tx-product-review__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
}

.tx-home .tx-product-review-card {
  position: relative;
  display: block;
  grid-column: span 4;
  min-width: 0;
  min-height: 310px;
  overflow: hidden;
  background: var(--tx-navy);
  border: 1px solid rgba(7, 43, 67, 0.16);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(6, 24, 39, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.tx-home .tx-product-review-card:nth-child(1) {
  grid-column: span 7;
  min-height: 420px;
}

.tx-home .tx-product-review-card:nth-child(2) {
  grid-column: span 5;
  min-height: 420px;
}

.tx-home .tx-product-review-card:hover,
.tx-home .tx-product-review-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(6, 24, 39, 0.16);
}

.tx-home .tx-product-review-card__link {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: inherit;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none;
}

.tx-home .tx-product-review-card__link:focus-visible {
  outline: 3px solid #42c5d3;
  outline-offset: -4px;
}

.tx-home .tx-product-review-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  transition: transform 420ms ease;
}

.tx-home .tx-product-review-card:hover img,
.tx-home .tx-product-review-card:focus-within img {
  transform: scale(1.025);
}

.tx-home .tx-product-review-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 18, 31, 0.03) 22%, rgba(4, 18, 31, 0.32) 56%, rgba(4, 18, 31, 0.92) 100%);
}

.tx-home .tx-product-review-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
}

.tx-home .tx-product-review-card__body .tx-eyebrow {
  margin: 0 0 8px;
  color: #8fe3eb;
  font-size: 11px;
  letter-spacing: 0;
}

.tx-home .tx-product-review-card__body > strong {
  max-width: 100%;
  font-family: var(--tx-font-display);
  font-size: 30px;
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.tx-home .tx-product-review-card__description {
  display: -webkit-box;
  max-width: 620px;
  margin-top: 10px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tx-home .tx-product-review-card__cta {
  margin-top: 15px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

/* Product discovery: quiet commerce cards with a stable media stage. */
.tx-home .tx-products--home {
  background: #f1f6f9;
}

.tx-home .tx-products--home > .tx-eyebrow,
.tx-home .tx-products--home > h2,
.tx-home .tx-products--home > .tx-section-lede {
  width: min(100%, 860px);
  text-align: center;
}

.tx-home .tx-products--home .tx-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  max-width: var(--tx-container);
  margin: 38px auto 0;
}

.tx-home .tx-products--home .tx-product-card {
  min-width: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--tx-border);
  border-radius: 8px;
  box-shadow: none;
}

.tx-home .tx-products--home .tx-product-card:hover,
.tx-home .tx-products--home .tx-product-card:focus-within {
  border-color: var(--tx-electric);
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(6, 24, 39, 0.12);
}

.tx-home .tx-products--home .tx-product-card a {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 9px;
  height: 100%;
  padding: 0 18px 19px;
}

.tx-home .tx-products--home .tx-product-card__media {
  width: auto;
  aspect-ratio: 1;
  margin: 0 -18px 6px;
  background: #ffffff;
}

.tx-home .tx-products--home .tx-product-card__media img,
.tx-home .tx-products--home .tx-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.tx-home .tx-products--home .tx-product-card__type {
  margin: 2px 0 0;
  font-size: 11px;
  letter-spacing: 0;
}

.tx-home .tx-products--home .tx-product-card strong {
  min-width: 0;
  font-size: 18px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tx-home .tx-products--home .tx-product-card em {
  margin-top: 4px;
  font-size: 18px;
}

.tx-home .tx-products--home .tx-products__cta {
  margin-top: 34px;
}

/* Evidence-led buyer guidance: three factual checkpoints, without badges or
   unsupported certification shorthand. */
.tx-home .tx-home-material-safety {
  background: #eaf5f8;
  border-top: 1px solid #cfe3ea;
  border-bottom: 1px solid #cfe3ea;
}

.tx-home .tx-home-material-safety__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
  counter-reset: tx-material-step;
  border-top: 1px solid #aacbd7;
}

.tx-home .tx-home-material-safety__grid article {
  min-width: 0;
  padding: 30px 32px 4px;
  counter-increment: tx-material-step;
  border-inline-start: 1px solid #aacbd7;
}

.tx-home .tx-home-material-safety__grid article:first-child {
  border-inline-start: 0;
}

.tx-home .tx-home-material-safety__grid article::before {
  content: "0" counter(tx-material-step);
  display: block;
  margin-bottom: 18px;
  color: var(--tx-electric-strong);
  font-family: var(--tx-font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.tx-home .tx-home-material-safety__grid h3 {
  margin: 0 0 10px;
  color: var(--tx-navy);
  font-size: 22px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.tx-home .tx-home-material-safety__grid p,
.tx-home .tx-home-material-safety__grid li {
  color: #4b6478;
  font-size: 15px;
  line-height: 1.62;
}

.tx-home .tx-home-material-safety__grid ul {
  margin: 0;
  padding-inline-start: 20px;
}

.tx-home .tx-home-material-safety > .tx-cta-row {
  margin-top: 38px;
}

/* Two clear decision paths: size/specification first, then setup and care. */
.tx-home .tx-home-choose-use {
  background: #ffffff;
}

.tx-home .tx-home-choose-use__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #cbdde6;
}

.tx-home .tx-home-choose-use__grid > article {
  min-width: 0;
  padding: 52px;
}

.tx-home .tx-home-choose-use__size {
  background: #f4f9fb;
}

.tx-home .tx-home-choose-use__care {
  background: var(--tx-navy);
  color: #ffffff;
}

.tx-home .tx-home-choose-use__grid h2 {
  margin: 0 0 16px;
  font-size: clamp(32px, 3vw, 48px);
  line-height: 1.03;
  overflow-wrap: anywhere;
}

.tx-home .tx-home-choose-use__grid .tx-section-lede {
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.62;
  text-align: start;
}

.tx-home .tx-home-choose-use__care h2 {
  color: #ffffff;
}

.tx-home .tx-home-choose-use__care .tx-section-lede,
.tx-home .tx-home-choose-use__care .tx-home-choose-use__steps {
  color: #bdd2de;
}

.tx-home .tx-home-choose-use__criteria {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #b8d1db;
}

.tx-home .tx-home-choose-use__criteria li {
  padding: 13px 0;
  color: #38576d;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid #b8d1db;
}

.tx-home .tx-home-choose-use__criteria li:nth-child(odd) {
  padding-inline-end: 18px;
}

.tx-home .tx-home-choose-use__steps {
  margin: 0 0 32px;
  padding: 0;
  counter-reset: tx-care-step;
  list-style: none;
  border-top: 1px solid rgba(189, 210, 222, 0.3);
}

.tx-home .tx-home-choose-use__steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  padding: 14px 0;
  counter-increment: tx-care-step;
  border-bottom: 1px solid rgba(189, 210, 222, 0.3);
  font-size: 14px;
  line-height: 1.5;
}

.tx-home .tx-home-choose-use__steps li::before {
  content: counter(tx-care-step, decimal-leading-zero);
  color: #8fe3eb;
  font-weight: 900;
}

.tx-home .tx-home-choose-use__care .tx-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.64);
  color: #ffffff;
}

.tx-home .tx-home-choose-use__care .tx-btn-secondary:hover,
.tx-home .tx-home-choose-use__care .tx-btn-secondary:focus-visible {
  background: #ffffff;
  color: var(--tx-navy);
}

/* Water discovery: an asymmetric editorial feature with compact real products. */
.tx-home .tx-home-water {
  padding: 104px 24px;
  background: #ffffff;
  border-top: 1px solid var(--tx-border);
}

.tx-home .tx-home-water__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  grid-template-rows: auto auto;
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
  gap: 24px 48px;
  align-items: start;
}

.tx-home .tx-home-water__copy {
  grid-row: 1 / span 2;
  align-self: center;
  max-width: 470px;
}

.tx-home .tx-home-water__copy h2,
.tx-home .tx-home-custom__content h2 {
  margin: 0 0 20px;
  color: var(--tx-navy);
  font-size: clamp(38px, 4.1vw, 60px);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.tx-home .tx-home-water__copy > p:not(.tx-eyebrow) {
  margin: 0 0 28px;
  color: #4b6478;
  font-size: 17px;
  line-height: 1.65;
}

.tx-home .tx-home-water__feature {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  background: #e8f5fb;
  border-radius: 8px;
}

.tx-home .tx-home-water__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tx-home .tx-home-water__products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-width: 0;
  gap: 18px;
}

.tx-home .tx-home-water__products article {
  min-width: 0;
  border-top: 2px solid #a9dce9;
}

.tx-home .tx-home-water__products a {
  display: grid;
  height: 100%;
  padding: 14px 0 0;
  color: var(--tx-navy);
  text-decoration: none;
}

.tx-home .tx-home-water__products img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f6fbfd;
}

.tx-home .tx-home-water__products span {
  margin-top: 12px;
  color: var(--tx-electric-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tx-home .tx-home-water__products strong {
  margin-top: 5px;
  font-size: 16px;
  line-height: 1.3;
}

@media (min-width: 1101px) {
  .tx-home .tx-home-water__products article:last-child:nth-child(3n + 1) {
    grid-column: 2;
  }
}

/* The catalog currently contains one verified setup accessory. Give that one
   record a deliberate editorial stage instead of leaving a three-card gap. */
.tx-home .tx-home-accessories .tx-products--home {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  grid-template-rows: auto auto auto 1fr;
  gap: 0 72px;
  background: #edf6fa;
  border-top: 1px solid #cee2eb;
}

.tx-home .tx-home-accessories .tx-products--home > .tx-eyebrow,
.tx-home .tx-home-accessories .tx-products--home > h2,
.tx-home .tx-home-accessories .tx-products--home > .tx-section-lede {
  grid-column: 1;
  width: auto;
  margin-inline: 0;
  text-align: start;
}

.tx-home .tx-home-accessories .tx-products--home > h2 {
  margin-top: 0;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.tx-home .tx-home-accessories .tx-product-grid {
  grid-column: 2;
  grid-row: 1 / span 4;
  grid-template-columns: 1fr;
  width: min(100%, 430px);
  margin: 0;
  justify-self: end;
}

.tx-home .tx-home-accessories .tx-products__cta {
  grid-column: 1;
  justify-content: flex-start;
  align-self: start;
}

/* Custom planning: one evidence-safe montage and a numbered specification path. */
.tx-home .tx-home-custom {
  padding: 104px 24px;
  background: #eaf6fb;
  border-top: 1px solid #cfe3ed;
}

.tx-home .tx-home-custom__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
  gap: 64px;
  align-items: stretch;
}

.tx-home .tx-home-custom__media {
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  background: #dbeaf1;
  border-radius: 8px;
}

.tx-home .tx-home-custom__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tx-home .tx-home-custom__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tx-home .tx-home-custom__content .tx-section-lede {
  max-width: 620px;
  margin: 0 0 30px;
  color: #476175;
  font-size: 16px;
  line-height: 1.65;
}

.tx-home .tx-home-custom__steps {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.tx-home .tx-home-custom__steps li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid #b9d2dd;
}

.tx-home .tx-home-custom__steps li > span {
  color: var(--tx-electric-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.tx-home .tx-home-custom__steps h3 {
  margin: 0 0 5px;
  color: var(--tx-navy);
  font-size: 18px;
  line-height: 1.2;
}

.tx-home .tx-home-custom__steps p {
  margin: 0;
  color: #557084;
  font-size: 14px;
  line-height: 1.55;
}

.tx-home .tx-home-custom__content > .tx-btn {
  align-self: flex-start;
}

/* Factory proof: one real media stage paired with compact evidence rows. */
.tx-home .tx-factory-proof {
  padding: 104px 24px;
  background: var(--tx-navy);
}

.tx-home .tx-factory-proof__inner {
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
}

.tx-home .tx-factory-proof .tx-section-head {
  margin-bottom: 42px;
}

.tx-home .tx-factory-proof .tx-section-head h2 {
  color: #ffffff;
}

.tx-home .tx-factory-proof .tx-section-lede {
  color: #bad0dc;
}

.tx-home .tx-factory-proof__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 42px;
  align-items: stretch;
}

.tx-home .tx-factory-proof__media {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #0c2c3e;
  border-radius: 8px;
}

.tx-home .tx-factory-proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
}

.tx-home .tx-factory-proof__media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 20px;
  background: rgba(4, 18, 31, 0.82);
  color: #dcecf3;
  font-size: 13px;
  line-height: 1.45;
}

.tx-home .tx-home-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin: 0;
  text-align: start;
}

.tx-home .tx-home-proof-grid article {
  min-width: 0;
  padding: 26px 0;
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(203, 221, 232, 0.24);
  border-radius: 0;
  box-shadow: none;
}

.tx-home .tx-home-proof-grid h3 {
  margin: 0 0 9px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.tx-home .tx-home-proof-grid p {
  color: #bad0dc;
  font-size: 14px;
  line-height: 1.62;
}

.tx-home .tx-factory-proof .tx-cta-row {
  justify-content: flex-start;
  margin-top: 40px;
}

.tx-home .tx-factory-proof .tx-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

.tx-home .tx-factory-proof .tx-btn-secondary:hover,
.tx-home .tx-factory-proof .tx-btn-secondary:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--tx-navy);
}

/* Buyer FAQ: a quiet two-column index that points to the full authority page. */
.tx-home .tx-home-faq {
  padding: 104px 24px;
  background: #ffffff;
  border-top: 1px solid var(--tx-border);
}

.tx-home .tx-home-faq__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
  gap: 48px 72px;
  align-items: start;
}

.tx-home .tx-home-faq__copy h2,
.tx-home .tx-home-guides__copy h2 {
  margin: 0 0 18px;
  color: var(--tx-navy);
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
}

.tx-home .tx-home-faq__copy > p:not(.tx-eyebrow),
.tx-home .tx-home-guides__copy > p:not(.tx-eyebrow) {
  margin: 0;
  color: #4b6478;
  font-size: 16px;
  line-height: 1.62;
}

.tx-home .tx-home-faq__list {
  border-top: 1px solid #b9ced9;
}

.tx-home .tx-home-faq__item {
  border-bottom: 1px solid #b9ced9;
}

.tx-home .tx-home-faq__item summary {
  position: relative;
  padding-block: 20px;
  padding-inline: 0 46px;
  color: var(--tx-navy);
  font-family: var(--tx-font-display);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.28;
  list-style: none;
  cursor: pointer;
}

.tx-home .tx-home-faq__item summary::-webkit-details-marker {
  display: none;
}

.tx-home .tx-home-faq__item summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 4px;
  top: 17px;
  color: var(--tx-electric-strong);
  font-family: var(--tx-font-sans);
  font-size: 25px;
  font-weight: 400;
}

.tx-home .tx-home-faq__item[open] summary::after {
  content: "−";
}

.tx-home .tx-home-faq__item p {
  margin: -2px 0 20px;
  padding-inline-end: 42px;
  color: #526d80;
  font-size: 15px;
  line-height: 1.65;
}

.tx-home .tx-home-faq__inner > .tx-text-link {
  grid-column: 2;
  justify-self: start;
}

/* Reviewed guide previews: three language-complete routes only. */
.tx-home .tx-home-guides {
  padding: 96px 24px;
  background: #eef6f9;
  border-top: 1px solid #cee1e9;
}

.tx-home .tx-home-guides__inner {
  width: 100%;
  max-width: var(--tx-container);
  margin: 0 auto;
}

.tx-home .tx-home-guides__copy {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.48fr);
  gap: 18px 72px;
  align-items: end;
  margin-bottom: 42px;
}

.tx-home .tx-home-guides__copy .tx-eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.tx-home .tx-home-guides__copy h2,
.tx-home .tx-home-guides__copy > p:not(.tx-eyebrow) {
  margin-bottom: 0;
}

.tx-home .tx-home-guides__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #adc9d6;
}

.tx-home .tx-home-guide-card {
  display: flex;
  min-width: 0;
  min-height: 250px;
  padding: 28px 32px 8px;
  flex-direction: column;
  border-inline-start: 1px solid #adc9d6;
}

.tx-home .tx-home-guide-card:first-child {
  border-inline-start: 0;
}

.tx-home .tx-home-guide-card h3 {
  margin: 0 0 12px;
  color: var(--tx-navy);
  font-size: 22px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.tx-home .tx-home-guide-card p {
  margin: 0 0 24px;
  color: #526d80;
  font-size: 14px;
  line-height: 1.62;
}

.tx-home .tx-home-guide-card .tx-text-link {
  margin-top: auto;
  align-self: flex-start;
}

/* OEM CTA: one focused action and no nested card treatment. */
.tx-home .tx-home-oem {
  padding: 72px 24px;
  background: #087fba;
  border: 0;
}

.tx-home .tx-home-oem__inner {
  display: flex;
  width: min(100%, 900px);
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  text-align: center;
}

.tx-home .tx-home-oem__inner > div {
  max-width: 840px;
}

.tx-home .tx-home-oem .tx-eyebrow {
  color: #b9f0f2;
}

.tx-home .tx-home-oem h2 {
  margin: 0 auto 14px;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.05;
  text-align: center;
}

.tx-home .tx-home-oem p:not(.tx-eyebrow) {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.6;
}

.tx-home .tx-home-oem .tx-btn-primary {
  background: #ffffff;
  color: var(--tx-navy);
  box-shadow: none;
}

.tx-home .tx-home-oem .tx-btn-primary:hover,
.tx-home .tx-home-oem .tx-btn-primary:focus-visible {
  background: #eaf7fb;
  color: var(--tx-navy);
}

@media (max-width: 1380px) {
  .tx-home .tx-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .tx-home .tx-hero-content h1,
  .tx-home .tx-hero-content .tx-hero-heading {
    font-size: 56px;
  }

  .tx-home .tx-use-case-card,
  .tx-home .tx-use-case-card:nth-child(4):nth-last-child(2),
  .tx-home .tx-use-case-card:nth-child(5):last-child {
    grid-column: span 4;
  }

  .tx-home .tx-use-case-card:nth-child(1) {
    grid-column: span 7;
  }

  .tx-home .tx-use-case-card:nth-child(2) {
    grid-column: span 5;
  }

  .tx-home .tx-product-review-card {
    grid-column: span 4;
  }

  .tx-home .tx-product-review-card:nth-child(1) {
    grid-column: span 7;
  }

  .tx-home .tx-product-review-card:nth-child(2) {
    grid-column: span 5;
  }

  .tx-home .tx-products--home .tx-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .tx-home .tx-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .tx-home .tx-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-use-case-card,
  .tx-home .tx-use-case-card:nth-child(1),
  .tx-home .tx-use-case-card:nth-child(2),
  .tx-home .tx-use-case-card:nth-child(4):nth-last-child(2),
  .tx-home .tx-use-case-card:nth-child(5):last-child {
    grid-column: auto;
    min-height: 340px;
  }

  .tx-home .tx-use-case-card:last-child {
    grid-column: 1 / -1;
  }

  .tx-home .tx-product-review__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-product-review-card,
  .tx-home .tx-product-review-card:nth-child(1),
  .tx-home .tx-product-review-card:nth-child(2) {
    grid-column: auto;
    min-height: 340px;
  }

  .tx-home .tx-product-review-card:last-child {
    grid-column: 1 / -1;
  }

  .tx-home .tx-products--home .tx-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tx-home .tx-home-air-track-catalog .tx-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-home-accessories .tx-products--home {
    gap: 0 40px;
  }

  .tx-home .tx-home-water__inner,
  .tx-home .tx-home-custom__inner {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-water__copy {
    grid-row: auto;
    max-width: 720px;
  }

  .tx-home .tx-home-custom__media {
    min-height: 520px;
  }

  .tx-home .tx-factory-proof__layout {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-factory-proof__media {
    min-height: 480px;
  }
}

@media (max-width: 900px) {
  .tx-home > .tx-hero-carousel,
  .tx-home .tx-hero-track,
  .tx-home .tx-hero-slide {
    height: 570px;
    min-height: 570px;
  }

  .tx-home .tx-hero-slide {
    padding: 82px 54px;
  }

  .tx-home .tx-hero-content h1,
  .tx-home .tx-hero-content .tx-hero-heading {
    font-size: 48px;
  }

  .tx-home-trust__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home-trust article:nth-child(2) {
    border-right: 0;
  }

  .tx-home-trust article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--tx-border);
  }

  .tx-home .tx-products--home .tx-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-home-material-safety__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-home-material-safety__grid article:nth-child(3) {
    grid-column: 1 / -1;
    border-top: 1px solid #aacbd7;
    border-inline-start: 0;
  }

  .tx-home .tx-home-choose-use__grid,
  .tx-home .tx-home-accessories .tx-products--home,
  .tx-home .tx-home-faq__inner {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-accessories .tx-products--home {
    gap: 34px;
  }

  .tx-home .tx-home-accessories .tx-product-grid,
  .tx-home .tx-home-accessories .tx-products__cta,
  .tx-home .tx-home-faq__inner > .tx-text-link {
    grid-column: 1;
  }

  .tx-home .tx-home-accessories .tx-product-grid {
    grid-row: auto;
    width: min(100%, 520px);
    justify-self: start;
  }

  .tx-home .tx-home-guides__copy {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-guides__copy .tx-eyebrow {
    grid-column: 1;
  }

  .tx-home .tx-home-guides__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-home-guide-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 210px;
    border-top: 1px solid #adc9d6;
    border-inline-start: 0;
  }
}

@media (max-width: 720px) {
  .tx-home .tx-section {
    padding: 64px 18px;
  }

  .tx-home .tx-section-head {
    margin-bottom: 28px;
  }

  .tx-home .tx-section-head h2,
  .tx-home .tx-section > h2 {
    font-size: 32px;
  }

  .tx-home .tx-section-head .tx-section-lede,
  .tx-home .tx-section > .tx-section-lede {
    font-size: 15px;
  }

  .tx-home > .tx-hero-carousel,
  .tx-home .tx-hero-track,
  .tx-home .tx-hero-slide {
    height: 620px;
    min-height: 620px;
  }

  .tx-home .tx-hero-slide {
    align-items: flex-start;
    padding: 42px 24px 78px;
  }

  .tx-home .tx-hero-slide__product {
    inset: auto 0 0;
    width: 100%;
    height: 46%;
    clip-path: polygon(0 7%, 100% 0, 100% 100%, 0 100%);
  }

  html[dir="rtl"] .tx-home .tx-hero-slide__product {
    clip-path: polygon(0 0, 100% 7%, 100% 100%, 0 100%);
  }

  .tx-home .tx-hero-slide__product img {
    inset: auto 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
  }

  .tx-home .tx-hero-slide--montage .tx-hero-slide__product img {
    inset: auto 3% 3%;
    width: 94%;
    height: 94%;
    object-fit: contain;
    object-position: center;
  }

  .tx-home .tx-hero-slide__shade,
  html[dir="rtl"] .tx-home .tx-hero-slide__shade {
    background: linear-gradient(180deg, rgba(2, 17, 32, 0.18) 0%, rgba(2, 17, 32, 0.06) 49%, transparent 58%);
  }

  .tx-home .tx-hero-content {
    width: 100%;
    max-width: 440px;
  }

  .tx-home .tx-hero-content h1,
  .tx-home .tx-hero-content .tx-hero-heading {
    font-size: 36px;
    line-height: 1.04;
  }

  .tx-home .tx-hero-content p:not(.tx-eyebrow) {
    font-size: 15px;
  }

  .tx-home .tx-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 10px;
    margin-top: 22px;
  }

  .tx-home .tx-hero-actions .tx-btn {
    width: 100%;
  }

  .tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary,
  .tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary:hover,
  .tx-home .tx-hero-slide--product-reference .tx-btn-hero-secondary:focus-visible {
    background: var(--tx-navy);
    border-color: var(--tx-navy);
    color: #ffffff;
  }

  .tx-home .tx-hero-arrow {
    width: 40px;
    height: 40px;
  }

  .tx-home .tx-hero-prev {
    left: 8px;
  }

  .tx-home .tx-hero-next {
    right: 8px;
  }

  .tx-home .tx-hero-autoplay {
    right: 12px;
    bottom: 58px;
    width: 34px;
    height: 34px;
  }

  .tx-home .tx-hero-dots {
    width: 352px;
    justify-content: center;
  }

  .tx-home .tx-hero-dot {
    flex: 0 0 44px;
    max-width: 44px;
  }

  .tx-home-trust {
    padding: 0 18px;
  }

  .tx-home .tx-use-case-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tx-home .tx-use-case-card,
  .tx-home .tx-use-case-card:nth-child(1),
  .tx-home .tx-use-case-card:nth-child(2),
  .tx-home .tx-use-case-card:nth-child(4):nth-last-child(2),
  .tx-home .tx-use-case-card:nth-child(5):last-child,
  .tx-home .tx-use-case-card:last-child {
    grid-column: auto;
    min-height: 300px;
  }

  .tx-home .tx-use-case-card__body {
    padding: 22px;
  }

  .tx-home .tx-use-case-card__body > strong {
    font-size: 25px;
  }

  .tx-home .tx-product-review__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tx-home .tx-product-review-card,
  .tx-home .tx-product-review-card:nth-child(1),
  .tx-home .tx-product-review-card:nth-child(2),
  .tx-home .tx-product-review-card:last-child {
    grid-column: auto;
    min-height: 300px;
  }

  .tx-home .tx-product-review-card__body {
    padding: 22px;
  }

  .tx-home .tx-product-review-card__body > strong {
    font-size: 25px;
  }

  .tx-home .tx-products--home .tx-product-grid {
    gap: 12px;
    margin-top: 28px;
  }

  .tx-home .tx-home-water,
  .tx-home .tx-home-custom,
  .tx-home .tx-factory-proof,
  .tx-home .tx-home-faq,
  .tx-home .tx-home-guides {
    padding: 72px 18px;
  }

  .tx-home .tx-home-material-safety__grid,
  .tx-home .tx-home-guides__grid {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-material-safety__grid article,
  .tx-home .tx-home-material-safety__grid article:nth-child(3),
  .tx-home .tx-home-guide-card,
  .tx-home .tx-home-guide-card:nth-child(3) {
    grid-column: auto;
    min-height: 0;
    padding: 26px 0;
    border-inline-start: 0;
    border-top: 1px solid #aacbd7;
  }

  .tx-home .tx-home-material-safety__grid article:first-child,
  .tx-home .tx-home-guide-card:first-child {
    border-top: 0;
  }

  .tx-home .tx-home-choose-use__grid > article {
    padding: 34px 24px;
  }

  .tx-home .tx-home-choose-use__criteria {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-choose-use__criteria li:nth-child(odd) {
    padding-inline-end: 0;
  }

  .tx-home .tx-home-faq__inner,
  .tx-home .tx-home-guides__copy {
    gap: 30px;
  }

  .tx-home .tx-home-faq__copy h2,
  .tx-home .tx-home-guides__copy h2,
  .tx-home .tx-home-accessories .tx-products--home > h2 {
    font-size: 34px;
  }

  .tx-home .tx-home-water__inner,
  .tx-home .tx-home-custom__inner {
    gap: 32px;
  }

  .tx-home .tx-home-water__copy h2,
  .tx-home .tx-home-custom__content h2 {
    font-size: 36px;
  }

  .tx-home .tx-home-water__feature {
    aspect-ratio: 16 / 10;
  }

  .tx-home .tx-home-water__products {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tx-home .tx-home-water__products a {
    grid-template-columns: 116px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 14px;
    align-items: center;
  }

  .tx-home .tx-home-water__products img {
    grid-row: 1 / span 2;
    aspect-ratio: 1;
  }

  .tx-home .tx-home-water__products span,
  .tx-home .tx-home-water__products strong {
    margin-top: 0;
  }

  .tx-home .tx-home-custom__media {
    min-height: 420px;
  }

  .tx-home .tx-factory-proof__media {
    min-height: 360px;
  }

  .tx-home .tx-home-proof-grid {
    grid-template-columns: 1fr;
  }

  .tx-home .tx-home-proof-grid article {
    padding: 21px 0;
  }

  .tx-home .tx-home-oem {
    padding: 58px 18px;
  }

  .tx-home .tx-home-oem h2 {
    font-size: 32px;
  }
}

@media (max-width: 420px) {
  .tx-home .tx-hero-dots {
    display: none;
  }

  .tx-home .tx-hero-count {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 72px;
    justify-content: center;
    color: var(--tx-navy);
    font: 800 13px/1 var(--tx-font-sans);
    letter-spacing: 0.08em;
    transform: translateX(-50%);
  }

  .tx-home .tx-hero-autoplay {
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 520px) {
  .tx-home-trust__inner {
    grid-template-columns: 1fr;
  }

  .tx-home-trust article,
  .tx-home-trust article:nth-child(2) {
    min-height: 94px;
    border-right: 0;
    border-bottom: 1px solid var(--tx-border);
  }

  .tx-home-trust article:last-child {
    border-bottom: 0;
  }

  .tx-home .tx-products--home .tx-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tx-home .tx-products--home .tx-product-card a {
    gap: 7px;
    padding: 0 10px 14px;
  }

  .tx-home .tx-products--home .tx-product-card__media {
    margin: 0 -10px 4px;
  }

  .tx-home .tx-products--home .tx-product-card__type {
    font-size: 9px;
  }

  .tx-home .tx-products--home .tx-product-card strong {
    font-size: 14px;
    line-height: 1.28;
  }

  .tx-home .tx-products--home .tx-product-card em {
    font-size: 16px;
  }

  .tx-home .tx-factory-proof__media {
    min-height: 300px;
  }

  .tx-home .tx-home-custom__media {
    min-height: 340px;
  }
}

@media (max-width: 360px) {
  .tx-home .tx-products--home .tx-product-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tx-home .tx-hero-track {
    transition: transform 520ms cubic-bezier(0.22, 0.75, 0.24, 1) !important;
  }

  .tx-home .tx-use-case-card,
  .tx-home .tx-use-case-card img,
  .tx-home .tx-product-review-card,
  .tx-home .tx-product-review-card img,
  .tx-home .tx-product-card {
    transition: none;
  }

  .tx-home .tx-use-case-card:hover,
  .tx-home .tx-use-case-card:focus-within,
  .tx-home .tx-use-case-card:hover img,
  .tx-home .tx-use-case-card:focus-within img,
  .tx-home .tx-product-review-card:hover,
  .tx-home .tx-product-review-card:focus-within,
  .tx-home .tx-product-review-card:hover img,
  .tx-home .tx-product-review-card:focus-within img,
  .tx-home .tx-product-card:hover,
  .tx-home .tx-product-card:focus-within {
    transform: none;
  }
}
