.work-with {
  padding: 20px 0 20px;
  margin-block: 36px;
  border-block: 1px solid var(--rule);
}
.ww-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 12px;
}
.ww-section-heading h2 {
  font:
    400 32px/1.06 "Instrument Serif",
    Georgia,
    serif;
  letter-spacing: -0.018em;
  margin: 0;
}
.ww-section-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ww-view-all,
.ww-motion-toggle,
.ww-close-all {
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 36px;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.ww-view-all {
  color: var(--forest);
}
.ww-view-all svg {
  width: 14px;
  height: 14px;
}
.work-with[data-expanded="true"] .ww-view-all svg {
  transform: rotate(180deg);
}
.ww-motion-icon {
  font-size: 13px;
  width: 13px;
  line-height: 1;
}
.ww-motion-label {
  min-width: 33px;
  text-align: left;
}
.ww-view-all:hover,
.ww-close-all:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.ww-marquee-viewport {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 24px,
    #000 calc(100% - 24px),
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 24px,
    #000 calc(100% - 24px),
    transparent
  );
}
.ww-marquee-track {
  display: flex;
  width: max-content;
  animation: ww-logo-scroll var(--duration, 98s) linear infinite;
  will-change: transform;
}
.ww-marquee-set {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  flex-shrink: 0;
}
.ww-marquee-item {
  width: 142px;
  flex: 0 0 142px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  user-select: none;
}
.ww-marquee-item .ww-brand-art {
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ww-brand-art img {
  display: block;
  width: var(--logo-width, 132px);
  height: var(--logo-height, 34px);
  max-width: 100%;
  object-fit: contain;
  pointer-events: none;
}
.ww-brand-art[data-logo="OpenAI"] img {
  width: 70px;
  height: 70px;
  max-width: 70px;
  max-height: none;
}
.ww-brand-name {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  white-space: nowrap;
}
.ww-has-wordmark .ww-brand-name {
  visibility: hidden;
}
.ww-marquee-item.ww-has-wordmark .ww-brand-art {
  transform: translateY(9px);
}
@keyframes ww-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.work-with[data-paused="true"] .ww-marquee-track,
.ww-marquee-viewport:focus-within .ww-marquee-track {
  animation-play-state: paused;
}
@media (hover: hover) {
  .ww-marquee-viewport:hover .ww-marquee-track {
    animation-play-state: paused;
  }
}
.ww-catalog {
  border-top: 1px solid var(--rule);
  margin-top: 24px;
  padding-top: 24px;
}
.ww-catalog-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.ww-catalog-heading h3 {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}
.ww-catalog-heading h3:focus {
  outline: none;
}
.ww-catalog-heading p {
  font-size: 13px;
  color: var(--muted);
  margin: 4px 0 0;
}
.ww-catalog-group {
  display: grid;
  grid-template-columns: 146px 1fr;
  align-items: center;
  border-top: 1px solid var(--rule);
  padding: 12px 0;
}
.ww-catalog-group:first-child {
  border-top: 0;
}
.ww-group-label {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--forest);
  max-width: 12ch;
}
.ww-brand-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}
.ww-brand {
  width: auto;
  min-width: 0;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  margin: 0;
  padding: 12px 8px;
  text-align: center;
}
.ww-brand .ww-brand-art {
  width: 100%;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ww-brand .ww-brand-art img {
  max-width: calc(100% - 8px);
}
.ww-brand .ww-brand-art[data-logo="OpenAI"] img {
  width: 82px;
  height: 82px;
  max-width: 82px;
}
.ww-brand figcaption {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.ww-brand--wordmark figcaption {
  visibility: hidden;
}
.ww-catalog-footnote {
  font-size: 12px;
  color: var(--muted);
  margin: 16px 0 0;
  line-height: 1.65;
}
@media (prefers-reduced-motion: reduce) {
  .ww-marquee-track {
    animation: none !important;
    transform: none !important;
  }
  .ww-marquee-copy {
    display: none;
  }
  .ww-marquee-viewport {
    overflow-x: auto;
    scrollbar-width: thin;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .ww-motion-toggle {
    display: none;
  }
}
@media (max-width: 1000px) {
  .ww-catalog-group {
    grid-template-columns: 120px 1fr;
  }
  .ww-brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .work-with {
    padding: 18px 0;
    margin-block: 28px;
  }
  .ww-section-heading {
    gap: 12px;
    margin-bottom: 12px;
  }
  .ww-section-heading h2 {
    font-size: 32px;
  }
  .ww-section-actions {
    gap: 14px;
  }
  .ww-view-all,
  .ww-motion-toggle {
    font-size: 12px;
    gap: 5px;
    min-height: 36px;
  }
  .ww-motion-label {
    display: none;
  }
  .ww-motion-toggle {
    width: 28px;
  }
  .ww-marquee-set {
    gap: 21px;
    padding-right: 21px;
  }
  .ww-marquee-item {
    width: 127px;
    flex-basis: 127px;
    height: 70px;
  }
  .ww-marquee-item .ww-brand-art img {
    max-width: 122px;
  }
  .ww-marquee-viewport {
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      #000 12px,
      #000 calc(100% - 12px),
      transparent
    );
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 12px,
      #000 calc(100% - 12px),
      transparent
    );
  }
  .ww-catalog {
    padding-top: 20px;
  }
  .ww-catalog-heading {
    align-items: flex-start;
    gap: 12px;
  }
  .ww-catalog-heading p {
    max-width: 25ch;
    font-size: 12px;
  }
  .ww-catalog-group {
    display: block;
    padding: 18px 0 14px;
  }
  .ww-group-label {
    max-width: none;
    margin-bottom: 10px;
  }
  .ww-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ww-brand {
    min-height: 105px;
  }
  .ww-brand .ww-brand-art img {
    max-width: 132px;
  }
  .ww-catalog-footnote {
    font-size: 11px;
  }
}
@media (max-width: 360px) {
  .ww-section-heading h2 {
    font-size: 30px;
  }
  .ww-section-actions {
    gap: 9px;
  }
  .ww-view-all {
    gap: 4px;
  }
  .ww-brand .ww-brand-art img {
    max-width: 112px;
  }
}
@media print {
  .ww-marquee-viewport,
  .ww-section-actions,
  .ww-close-all {
    display: none;
  }
  .work-with {
    margin: 0;
    border: 0;
  }
  .ww-catalog[hidden] {
    display: block !important;
  }
  .ww-brand {
    break-inside: avoid;
  }
  .ww-brand-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .ww-catalog-group {
    display: grid;
  }
}

.work-with button:focus-visible,
.work-with [tabindex]:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 5px;
}
.ww-group-label {
  letter-spacing: normal;
}
.ww-catalog-heading h3 {
  font-family: var(--sans);
  line-height: 1.6;
  letter-spacing: normal;
}
.ww-brand-art[data-logo="OpenAI"] {
  --logo-width: 70px;
  --logo-height: 70px;
}
.ww-brand-art[data-logo="Anthropic"] {
  --logo-width: 39px;
  --logo-height: 31px;
}
.ww-brand-art[data-logo="Google Gemini"] {
  --logo-width: 37px;
  --logo-height: 37px;
}
.ww-brand-art[data-logo="Qwen"] {
  --logo-width: 34px;
  --logo-height: 34px;
}
.ww-brand-art[data-logo="DeepSeek"] {
  --logo-width: 137px;
  --logo-height: 33px;
}
.ww-brand-art[data-logo="Codex"] {
  --logo-width: 38px;
  --logo-height: 38px;
}
.ww-brand-art[data-logo="DeepSeek Harness (DSH)"] {
  --logo-width: 142px;
  --logo-height: 28px;
}
.ww-brand-art[data-logo="Microsoft"] {
  --logo-width: 32px;
  --logo-height: 32px;
}
.ww-brand-art[data-logo="LangChain"] {
  --logo-width: 132px;
  --logo-height: 30px;
}
.ww-brand-art[data-logo="n8n"] {
  --logo-width: 105px;
  --logo-height: 32px;
}
.ww-brand-art[data-logo="LlamaIndex"] {
  --logo-width: 136px;
  --logo-height: 31px;
}
.ww-brand-art[data-logo="Pinecone"] {
  --logo-width: 132px;
  --logo-height: 31px;
}
.ww-brand-art[data-logo="MuleSoft"] {
  --logo-width: 37px;
  --logo-height: 37px;
}
.ww-brand-art[data-logo="Auth0"] {
  --logo-width: 32px;
  --logo-height: 32px;
}
.ww-brand-art[data-logo="Microsoft Entra ID"] {
  --logo-width: 39px;
  --logo-height: 39px;
}
.ww-brand-art[data-logo="AWS"] {
  --logo-width: 67px;
  --logo-height: 38px;
}
.ww-brand-art[data-logo="Microsoft Azure"] {
  --logo-width: 36px;
  --logo-height: 36px;
}
.ww-brand-art[data-logo="Google Cloud"] {
  --logo-width: 139px;
  --logo-height: 33px;
}
.ww-brand-art[data-logo="Cloudflare"] {
  --logo-width: 136px;
  --logo-height: 34px;
}
.ww-brand-art[data-logo="Vercel"] {
  --logo-width: 119px;
  --logo-height: 32px;
}
