/* FIXD — yellow marquee.
   The signature line, widened into a full-bleed strip. Slow enough to read,
   slow enough to ignore. Two identical tracks scroll seamlessly. */

.marquee {
  overflow: hidden;
  background: var(--yellow);
  color: var(--black);
  border-block: 3px solid var(--black);
  padding-block: .7rem;
  user-select: none;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-right: clamp(1.2rem, 3vw, 2.4rem);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.1vw, 1.5rem);
  font-weight: 800;
  font-variation-settings: 'wdth' 86;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__group i { font-style: normal; opacity: .45; }

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

.marquee--slow .marquee__track { animation-duration: 52s; }

/* A dark variant marks the seam under the tools section. */
.marquee--dark { background: var(--black); color: var(--yellow); border-color: var(--yellow); }
