.apply-pill {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 10px;
  background: var(--deep);
  color: #fff;
  font-weight: 800;
}

/* Stronger hierarchy for the three product benefits. */
.footer-brand .brand-art img {
  filter: brightness(0) invert(1);
}

.final-cta {
  scroll-margin-top: 88px;
}

.job-top {
  align-items: center;
}

.match {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  line-height: 1;
}

.app-points div {
  gap: 22px;
  padding: 22px 0;
}

.app-points strong {
  flex: 0 0 38px;
  font-size: clamp(20px, 1.5vw, 24px);
  line-height: 1.25;
}

.app-points span {
  font-size: clamp(20px, 1.65vw, 26px);
  font-weight: 650;
  line-height: 1.25;
}

/* Content stays visible if JavaScript is unavailable. */
.reveal {
  opacity: 1;
  transform: none;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.motion-ready .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 800px) {
  .app-points div {
    gap: 16px;
    padding: 18px 0;
  }

  .app-points strong {
    flex-basis: 34px;
    font-size: 19px;
  }

  .app-points span {
    font-size: 19px;
  }

  .motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Seamless category marquee: two equal, full-viewport groups. */
.category-track {
  display: flex;
  gap: 0;
  width: max-content;
  padding: 16px 0;
  animation: category-marquee 26s linear infinite;
}

.category-set {
  display: flex;
  flex: 0 0 auto;
  min-width: 100vw;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-right: 30px;
}

.category-set i {
  flex: 0 0 7px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

@keyframes category-marquee {
  to { transform: translateX(-50%); }
}

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

/* Store availability is informative until the public store listing exists. */
.store-btn.is-disabled {
  cursor: default;
  user-select: none;
}

.store-btn.is-disabled:hover {
  transform: none;
  box-shadow: 0 14px 34px rgba(29, 53, 87, 0.18);
}

.store-availability {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding-inline: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.store-availability-light {
  color: rgba(255, 255, 255, 0.82);
}
