.unisign-homepage {
  --uh-blue: #004e9e;
  --uh-navy: #081b2c;
  --uh-green: #63b22f;
  --uh-lime: #7bc443;
  --uh-ink: #10263c;
  --uh-muted: #687786;
  --uh-line: #dfe5e9;
  --uh-soft: #f3f5f5;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  color: var(--uh-ink);
  font-family: "Satoshi", "Montserrat", Arial, sans-serif;
  line-height: 1.5;
}

.unisign-homepage,
.unisign-homepage *,
.unisign-homepage *::before,
.unisign-homepage *::after {
  box-sizing: border-box;
}

.unisign-homepage a {
  color: inherit;
  text-decoration: none;
}

.unisign-homepage img {
  display: block;
  max-width: 100%;
}

.unisign-homepage button {
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.unisign-homepage section[id] {
  scroll-margin-top: 110px;
}

.unisign-homepage :focus-visible {
  outline: 3px solid var(--uh-green);
  outline-offset: 4px;
}

.unisign-homepage .uh-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.unisign-homepage .uh-eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--uh-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.unisign-homepage .uh-eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  flex: none;
  background: var(--uh-green);
}

.unisign-homepage .uh-eyebrow--light {
  color: #dff2d3;
}

.unisign-homepage .uh-hero {
  position: relative;
  min-height: 660px;
  height: calc(100svh - 100px);
  max-height: 820px;
  overflow: hidden;
  color: #fff;
  background: var(--uh-navy);
}

.unisign-homepage .uh-hero__slides,
.unisign-homepage .uh-hero__slide,
.unisign-homepage .uh-hero__slide picture,
.unisign-homepage .uh-hero__slide img,
.unisign-homepage .uh-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.unisign-homepage .uh-hero__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.unisign-homepage .uh-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.unisign-homepage .uh-hero__slide.is-active img {
  animation: uh-hero-in 0.65s ease both;
}

.unisign-homepage .uh-hero__slide img {
  object-fit: cover;
  object-position: center;
}

.unisign-homepage .uh-hero__shade {
  background: linear-gradient(90deg, rgba(4, 19, 32, 0.92) 0%, rgba(4, 19, 32, 0.68) 38%, rgba(4, 19, 32, 0.08) 78%);
}

.unisign-homepage .uh-hero__copy {
  position: relative;
  z-index: 2;
  width: min(780px, 82%);
  height: 100%;
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unisign-homepage .uh-hero__copy h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.unisign-homepage .uh-hero__lead {
  max-width: 650px;
  margin: 28px 0 34px;
  color: #e4eaf0;
  font-size: 17px;
  line-height: 1.65;
}

.unisign-homepage .uh-primary-link {
  width: fit-content;
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 38px;
  background: var(--uh-green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: background 0.2s ease;
}

.unisign-homepage .uh-primary-link:hover {
  background: var(--uh-lime);
}

.unisign-homepage .uh-hero__controls {
  position: absolute;
  z-index: 4;
  right: clamp(22px, 5vw, 76px);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.unisign-homepage .uh-hero__controls > button {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(5, 22, 36, 0.55);
  color: #fff;
  font-size: 20px;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.unisign-homepage .uh-hero__controls > button:hover {
  border-color: var(--uh-green);
  background: var(--uh-green);
}

.unisign-homepage .uh-hero__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.unisign-homepage .uh-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
}

.unisign-homepage .uh-hero__dots button.is-active {
  border-color: var(--uh-green);
  background: var(--uh-green);
}

.unisign-homepage .uh-about {
  padding: 125px clamp(22px, 6vw, 92px);
  background: #fff;
}

.unisign-homepage .uh-about__grid,
.unisign-homepage .uh-about-products,
.unisign-homepage .uh-section-intro,
.unisign-homepage .uh-project-grid,
.unisign-homepage .uh-blog-grid,
.unisign-homepage .uh-references__heading {
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.unisign-homepage .uh-about__copy {
  max-width: 1220px;
}

.unisign-homepage .uh-about__copy h2,
.unisign-homepage .uh-section-intro h2,
.unisign-homepage .uh-section-heading h2,
.unisign-homepage .uh-references__heading h2,
.unisign-homepage .uh-legacy__intro h2 {
  margin: 0;
  font-size: clamp(44px, 4.6vw, 70px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.058em;
}

.unisign-homepage .uh-about__copy > p:not(.uh-eyebrow) {
  margin: 26px 0 0;
  color: var(--uh-muted);
  font-size: 17px;
  line-height: 1.82;
}

.unisign-homepage .uh-about__copy > p:last-child {
  color: var(--uh-ink);
}

.unisign-homepage .uh-about-products {
  margin-top: 85px;
  padding-top: 70px;
  border-top: 1px solid var(--uh-line);
}

.unisign-homepage .uh-about-products__heading {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.unisign-homepage .uh-about-products__heading .uh-eyebrow {
  margin-bottom: 12px;
}

.unisign-homepage .uh-about-products__heading h3 {
  margin: 0;
  color: var(--uh-ink);
  font-size: clamp(34px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.unisign-homepage .uh-about-products__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.unisign-homepage .uh-about-products__grid article {
  min-width: 0;
  padding: 12px 12px 24px;
  border: 1px solid var(--uh-line);
  background: var(--uh-soft);
}

.unisign-homepage .uh-about-products__image {
  height: 285px;
  margin-bottom: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #fff 0, #f4f6f6 63%, #e8ecee 100%);
}

.unisign-homepage .uh-about-products__image img {
  width: 100%;
  height: 100%;
  padding: 22px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.unisign-homepage .uh-about-products__grid article:hover img {
  transform: scale(1.035);
}

.unisign-homepage .uh-about-products__grid article > span,
.unisign-homepage .uh-product-card > span {
  color: var(--uh-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unisign-homepage .uh-about-products__grid h4 {
  margin: 8px 0 0;
  color: var(--uh-ink);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.unisign-homepage .uh-legacy {
  min-height: 470px;
  padding: 0 clamp(22px, 6vw, 92px);
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  color: #fff;
  background: var(--uh-navy);
}

.unisign-homepage .uh-legacy__intro {
  padding: 90px clamp(30px, 5vw, 80px) 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.unisign-homepage .uh-legacy__intro h2 {
  color: #fff;
}

.unisign-homepage .uh-legacy__intro h2 em {
  color: #bce4a6;
  font-weight: 400;
}

.unisign-homepage .uh-legacy__intro > p:last-child {
  max-width: 530px;
  margin: 28px 0 0;
  color: #aebdca;
  line-height: 1.7;
}

.unisign-homepage .uh-legacy__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.unisign-homepage .uh-legacy__metrics article {
  min-height: 235px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.unisign-homepage .uh-legacy__metrics article:nth-child(n + 3) {
  border-bottom: 0;
}

.unisign-homepage .uh-legacy__metrics strong {
  color: var(--uh-green);
  font-size: clamp(50px, 5vw, 78px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.unisign-homepage .uh-legacy__metrics span {
  max-width: 180px;
  margin-top: 18px;
  color: #d3dce3;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unisign-homepage .uh-products {
  padding: 120px 0 100px;
  background: var(--uh-soft);
}

.unisign-homepage .uh-section-intro {
  padding: 0 clamp(22px, 5vw, 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 80px;
  align-items: end;
}

.unisign-homepage .uh-section-intro__copy > p,
.unisign-homepage .uh-projects__heading > p {
  margin: 0;
  color: var(--uh-muted);
  line-height: 1.72;
}

.unisign-homepage .uh-product-rail {
  margin-top: 56px;
  overflow: hidden;
}

.unisign-homepage .uh-product-track {
  --uh-rail-gap: 18px;
  width: max-content;
  padding: 4px 0 18px;
  display: flex;
  gap: var(--uh-rail-gap);
  animation: uh-product-loop 34s linear infinite;
  will-change: transform;
}

.unisign-homepage .uh-product-set {
  display: flex;
  gap: var(--uh-rail-gap);
  flex: none;
}

.unisign-homepage .uh-product-rail:hover .uh-product-track,
.unisign-homepage .uh-product-rail:focus-within .uh-product-track {
  animation-play-state: paused;
}

.unisign-homepage .uh-product-card {
  width: clamp(260px, 23vw, 340px);
  flex: none;
  padding: 14px 14px 24px;
  border: 1px solid var(--uh-line);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.unisign-homepage .uh-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 46px rgba(8, 27, 44, 0.1);
}

.unisign-homepage .uh-product-card__image {
  height: 245px;
  margin-bottom: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 42%, #fff 0, #f5f6f6 62%, #e7ebed 100%);
}

.unisign-homepage .uh-product-card__image img {
  width: 100%;
  height: 100%;
  padding: 25px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.unisign-homepage .uh-product-card:hover .uh-product-card__image img {
  transform: scale(1.035);
}

.unisign-homepage .uh-product-card h3 {
  margin: 9px 0 4px;
  color: var(--uh-ink);
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.045em;
}

.unisign-homepage .uh-product-card p {
  margin: 0 0 20px;
  color: var(--uh-muted);
  font-size: 13px;
}

.unisign-homepage .uh-product-card b {
  color: var(--uh-green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.unisign-homepage .uh-product-card b i {
  margin-left: 14px;
  font-style: normal;
}

.unisign-homepage .uh-projects {
  padding: 120px clamp(18px, 4vw, 62px);
  color: #fff;
  background: var(--uh-navy);
}

.unisign-homepage .uh-projects__heading {
  padding: 0;
  align-items: end;
}

.unisign-homepage .uh-projects__heading h2 {
  max-width: 780px;
  color: #fff;
}

.unisign-homepage .uh-projects__heading > p {
  color: #acbac6;
}

.unisign-homepage .uh-project-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: repeat(2, 300px);
  gap: 16px;
}

.unisign-homepage .uh-project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #142d40;
}

.unisign-homepage .uh-project-card--large {
  grid-row: 1 / 3;
}

.unisign-homepage .uh-project-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.unisign-homepage .uh-project-card:hover > img {
  transform: scale(1.04);
}

.unisign-homepage .uh-project-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(4, 18, 30, 0.88));
}

.unisign-homepage .uh-project-card__copy {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 27px;
}

.unisign-homepage .uh-project-card__copy span {
  color: #c7eab4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.unisign-homepage .uh-project-card__copy h3 {
  margin: 8px 0 0;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.unisign-homepage .uh-project-card--large .uh-project-card__copy {
  padding: 38px;
}

.unisign-homepage .uh-project-card--large .uh-project-card__copy h3 {
  font-size: 44px;
}

.unisign-homepage .uh-blog {
  padding: 120px clamp(22px, 5vw, 76px);
  background: #fff;
}

.unisign-homepage .uh-section-heading {
  max-width: 820px;
  margin: 0 auto 62px;
  text-align: center;
}

.unisign-homepage .uh-section-heading .uh-eyebrow {
  justify-content: center;
}

.unisign-homepage .uh-section-heading > p:last-child {
  margin: 24px 0 0;
  color: var(--uh-muted);
  line-height: 1.7;
}

.unisign-homepage .uh-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.unisign-homepage .uh-blog-card {
  padding-bottom: 28px;
  border-bottom: 1px solid var(--uh-line);
}

.unisign-homepage .uh-blog-card__image {
  height: 320px;
  margin-bottom: 22px;
  display: block;
  overflow: hidden;
  background: var(--uh-soft);
}

.unisign-homepage .uh-blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unisign-homepage .uh-blog-card:hover .uh-blog-card__image img {
  transform: scale(1.04);
}

.unisign-homepage .uh-blog-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  color: var(--uh-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.unisign-homepage .uh-blog-card__meta span {
  color: var(--uh-green);
}

.unisign-homepage .uh-blog-card h3 {
  margin: 15px 0 23px;
  color: var(--uh-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.unisign-homepage .uh-blog-card__link {
  color: var(--uh-blue);
  font-size: 12px;
  font-weight: 800;
}

.unisign-homepage .uh-blog-card__link span {
  margin-left: 13px;
}

.unisign-homepage .uh-references {
  padding: 100px 0 0;
  background: var(--uh-soft);
}

.unisign-homepage .uh-references__heading {
  margin-bottom: 48px;
  padding: 0 clamp(22px, 5vw, 76px);
}

.unisign-homepage .uh-references__heading h2 {
  font-size: clamp(40px, 4vw, 62px);
}

.unisign-homepage .uh-logo-window {
  overflow: hidden;
  border-top: 1px solid var(--uh-line);
  background: #fff;
}

.unisign-homepage .uh-logo-track {
  width: max-content;
  display: flex;
  animation: uh-logo-left 26s linear infinite;
  will-change: transform;
}

.unisign-homepage .uh-logo-window:hover .uh-logo-track,
.unisign-homepage .uh-logo-window:focus-within .uh-logo-track {
  animation-play-state: paused;
}

.unisign-homepage .uh-logo-set {
  margin: 0;
  padding: 0;
  display: flex;
  flex: none;
  list-style: none;
}

.unisign-homepage .uh-logo-set li {
  width: 230px;
  height: 140px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--uh-line);
}

.unisign-homepage .uh-logo-set img {
  max-width: 118px;
  max-height: 52px;
  filter: grayscale(1);
  opacity: 0.64;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.unisign-homepage .uh-logo-set li:hover img {
  filter: none;
  opacity: 1;
}

@keyframes uh-hero-in {
  from {
    transform: scale(1.012);
  }
  to {
    transform: scale(1);
  }
}

@keyframes uh-product-loop {
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes uh-logo-left {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .unisign-homepage .uh-about-products__grid {
    grid-template-columns: 1fr 1fr;
  }

  .unisign-homepage .uh-legacy {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .unisign-homepage .uh-legacy__metrics {
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .unisign-homepage .uh-section-intro {
    gap: 45px;
  }

  .unisign-homepage .uh-project-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .unisign-homepage .uh-project-card {
    height: 290px;
  }

  .unisign-homepage .uh-project-card--large {
    grid-column: 1 / -1;
    grid-row: auto;
    height: 430px;
  }
}

@media (max-width: 760px) {
  .unisign-homepage .uh-hero {
    min-height: 590px;
    height: calc(100svh - 100px);
    max-height: 720px;
  }

  .unisign-homepage .uh-hero__slide img {
    object-position: 68% center;
  }

  .unisign-homepage .uh-hero__shade {
    background: linear-gradient(90deg, rgba(4, 19, 32, 0.93) 0%, rgba(4, 19, 32, 0.68) 68%, rgba(4, 19, 32, 0.34));
  }

  .unisign-homepage .uh-hero__copy {
    width: 100%;
    padding: 65px 22px 112px;
    justify-content: flex-end;
  }

  .unisign-homepage .uh-hero__copy h1 {
    max-width: 560px;
    font-size: clamp(45px, 12vw, 62px);
  }

  .unisign-homepage .uh-hero__lead {
    margin: 22px 0 27px;
    font-size: 15px;
  }

  .unisign-homepage .uh-hero__controls {
    right: 20px;
    bottom: 24px;
  }

  .unisign-homepage .uh-hero__controls > button {
    width: 44px;
    height: 44px;
  }

  .unisign-homepage .uh-about {
    padding: 85px 20px;
  }

  .unisign-homepage .uh-about__copy h2,
  .unisign-homepage .uh-section-intro h2,
  .unisign-homepage .uh-section-heading h2,
  .unisign-homepage .uh-references__heading h2,
  .unisign-homepage .uh-legacy__intro h2 {
    font-size: 42px;
  }

  .unisign-homepage .uh-about__copy > p:not(.uh-eyebrow) {
    font-size: 15px;
    line-height: 1.75;
  }

  .unisign-homepage .uh-about-products {
    margin-top: 65px;
    padding-top: 55px;
  }

  .unisign-homepage .uh-about-products__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .unisign-homepage .uh-about-products__grid {
    margin-right: -20px;
    padding: 0 20px 16px 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .unisign-homepage .uh-about-products__grid::-webkit-scrollbar,
  .unisign-homepage .uh-product-rail::-webkit-scrollbar {
    display: none;
  }

  .unisign-homepage .uh-about-products__grid article {
    width: min(78vw, 310px);
    flex: none;
    scroll-snap-align: start;
  }

  .unisign-homepage .uh-about-products__image {
    height: 245px;
  }

  .unisign-homepage .uh-legacy {
    padding: 0 20px;
  }

  .unisign-homepage .uh-legacy__intro {
    padding: 80px 0 65px;
  }

  .unisign-homepage .uh-legacy__metrics {
    grid-template-columns: 1fr 1fr;
    border-left: 0;
  }

  .unisign-homepage .uh-legacy__metrics article {
    min-height: 170px;
    padding: 24px 18px;
  }

  .unisign-homepage .uh-legacy__metrics strong {
    font-size: 48px;
  }

  .unisign-homepage .uh-products {
    padding: 85px 0 78px;
  }

  .unisign-homepage .uh-section-intro {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 20px;
  }

  .unisign-homepage .uh-product-rail {
    margin-top: 42px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .unisign-homepage .uh-product-track {
    padding: 4px 20px 20px;
    animation: none;
  }

  .unisign-homepage .uh-product-set[aria-hidden="true"] {
    display: none;
  }

  .unisign-homepage .uh-product-card {
    width: min(78vw, 310px);
    scroll-snap-align: start;
  }

  .unisign-homepage .uh-product-card__image {
    height: 225px;
  }

  .unisign-homepage .uh-projects {
    padding: 85px 20px;
  }

  .unisign-homepage .uh-projects__heading {
    padding: 0;
  }

  .unisign-homepage .uh-project-grid {
    margin-top: 44px;
    grid-template-columns: 1fr;
  }

  .unisign-homepage .uh-project-card,
  .unisign-homepage .uh-project-card--large {
    grid-column: auto;
    height: 330px;
  }

  .unisign-homepage .uh-project-card--large {
    height: 390px;
  }

  .unisign-homepage .uh-blog {
    padding: 85px 20px;
  }

  .unisign-homepage .uh-section-heading {
    margin-bottom: 42px;
  }

  .unisign-homepage .uh-blog-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .unisign-homepage .uh-blog-card__image {
    height: 280px;
  }

  .unisign-homepage .uh-references {
    padding-top: 80px;
  }

  .unisign-homepage .uh-references__heading {
    margin-bottom: 36px;
    padding: 0 20px;
  }

  .unisign-homepage .uh-logo-set li {
    width: 180px;
    height: 120px;
  }

  .unisign-homepage .uh-logo-set img {
    max-width: 105px;
    max-height: 46px;
  }
}

@media (max-width: 420px) {
  .unisign-homepage .uh-hero__copy h1 {
    font-size: 43px;
  }

  .unisign-homepage .uh-primary-link {
    width: 100%;
    justify-content: space-between;
  }

  .unisign-homepage .uh-about__copy h2,
  .unisign-homepage .uh-section-intro h2,
  .unisign-homepage .uh-section-heading h2,
  .unisign-homepage .uh-references__heading h2,
  .unisign-homepage .uh-legacy__intro h2 {
    font-size: 38px;
  }

  .unisign-homepage .uh-legacy__metrics {
    grid-template-columns: 1fr;
  }

  .unisign-homepage .uh-legacy__metrics article {
    min-height: 145px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .unisign-homepage .uh-legacy__metrics article:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .unisign-homepage .uh-project-card,
  .unisign-homepage .uh-project-card--large {
    height: 310px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .unisign-homepage *,
  .unisign-homepage *::before,
  .unisign-homepage *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .unisign-homepage .uh-product-track,
  .unisign-homepage .uh-logo-track {
    width: 100%;
    animation: none !important;
    transform: none !important;
  }

  .unisign-homepage .uh-product-set[aria-hidden="true"],
  .unisign-homepage .uh-logo-set[aria-hidden="true"] {
    display: none;
  }

  .unisign-homepage .uh-product-set {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .unisign-homepage .uh-logo-set {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
