/*
 * R46 home priority and stable-layout layer.
 * All delayed areas reserve their final footprint; no flashing animation is used.
 */
:root {
  --cats-home-motion: 180ms;
}

.customer-site :is(button, a, input, select, textarea) {
  transition-duration: var(--cats-home-motion);
}

.tech-home .tech-hero {
  min-height: 660px;
}

.tech-home .tech-hero-actions.cats-home-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.tech-home .cats-home-action {
  min-width: 0;
  min-height: 52px;
  height: auto;
  padding: 12px 16px;
  line-height: 1.35;
}

.tech-home .cats-home-action--login {
  order: 1;
}

.tech-home .cats-home-action--identification {
  order: 2;
}

.tech-home .cats-home-action--self-order {
  order: 3;
}

.tech-home .cats-home-action--purchase-order {
  order: 4;
}

.cats-home-registration-note {
  min-height: 24px;
  margin: 10px 0 0;
  color: #cfe7ff;
  font-size: 13.5px;
  line-height: 1.55;
}

.cats-home-registration-note button {
  min-height: 44px;
  padding: 8px 4px;
  border: 0;
  background: transparent;
  color: #7deed7;
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cats-home-identification-priority {
  width: min(1180px, calc(100% - 40px));
  min-height: 180px;
  margin: 28px auto 0;
  padding: 28px 30px;
  border: 1px solid #8ed8ef;
  border-radius: 22px;
  background:
    linear-gradient(118deg, #ffffff 0%, #eefaff 58%, #e8fff8 100%);
  box-shadow: 0 18px 45px rgb(10 65 113 / 10%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cats-home-identification-priority__copy > span {
  display: block;
  margin-bottom: 8px;
  color: #0078a5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .09em;
}

.cats-home-identification-priority h2 {
  margin: 0;
  color: #082b55;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
}

.cats-home-identification-priority p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #49657e;
  font-size: 15px;
  line-height: 1.6;
}

.cats-home-identification-priority > button {
  min-width: 230px;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid #008ec4;
  border-radius: 13px;
  background: linear-gradient(100deg, #13bfdd, #8ceccb);
  color: #04294d;
  font-size: 14px;
  font-weight: 900;
}

.cats-main-site-guide {
  width: min(1180px, calc(100% - 40px));
  min-height: 250px;
  margin-inline: auto;
}

.cats-main-site-guide--skeleton {
  border: 1px solid #d8e7f1;
  border-radius: 22px;
  background: #f8fbfd;
}

.cats-main-site-guide__skeleton {
  min-height: 248px;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.cats-main-site-guide__skeleton i {
  display: block;
  width: min(620px, 82%);
  height: 18px;
  border-radius: 999px;
  background: #e6eff5;
}

.cats-main-site-guide__skeleton i:first-child {
  width: min(260px, 48%);
}

.cats-main-site-guide__skeleton i:last-child {
  width: min(460px, 70%);
}

.site-footer .legal-compact {
  gap: 5px;
}

.site-footer .legal-compact :is(strong, span) {
  line-height: 1.45;
}

html.portal-locale-pending .customer-site {
  visibility: hidden;
  min-height: 100vh;
}

html.portal-locale-pending body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    linear-gradient(#fff, #fff) 50% 82px / min(1180px, calc(100% - 40px)) 72px no-repeat,
    linear-gradient(#eef4f8, #eef4f8) 50% 190px / min(1180px, calc(100% - 40px)) 420px no-repeat,
    #f5f8fb;
}

@media (max-width: 760px) {
  .tech-home .tech-hero {
    min-height: 780px;
  }

  .tech-home .tech-hero-actions.cats-home-actions {
    grid-template-columns: 1fr;
  }

  .cats-home-identification-priority {
    width: min(100% - 24px, 1180px);
    min-height: 260px;
    padding: 22px 20px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cats-home-identification-priority > button {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }

  .cats-main-site-guide {
    width: min(100% - 24px, 1180px);
    min-height: 310px;
  }

  .cats-main-site-guide__skeleton {
    min-height: 308px;
    padding: 24px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-site *,
  .customer-site *::before,
  .customer-site *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
