  .service-bg {
    --angle: -18deg;
    --gap: 2rem;
    --font-size: clamp(3rem, 9vw, 10rem);
    /*position: relative;*/
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background:
      radial-gradient(circle at top left,
        rgba(255,255,255,.14),
        transparent 32%),

      radial-gradient(circle at bottom right,
        rgba(255,255,255,.08),
        transparent 28%),

      linear-gradient(
        135deg,
        #ff3131 0%,
        #ff6a00 35%,
        #ffd500 58%,
        #00a2ff 100%
      ); */
    isolation: isolate;
  }

  /* glossy overlay */
  .service-bg::before {
    content: "";

    position: absolute;
    inset: 0;

	/*
    background:
      linear-gradient(
        to bottom,
        rgba(255,255,255,.16),
        transparent 24%,
        transparent 72%,
        rgba(0,0,0,.18)
      );
	 */

    background: linear-gradient(to bottom, #080808 0%, transparent 10%, #08080800, transparent 74%, #080808 90%);

    pointer-events: none;
    z-index: 5;
  }

  /* subtle grain */
  .service-bg::after {
    content: "";

    position: absolute;
    inset: 0;

    opacity: .04;
    mix-blend-mode: overlay;

    background-image:
      repeating-radial-gradient(
        circle at 0 0,
        transparent 0,
        rgba(255,255,255,.7) 1px,
        transparent 2px
      );

    background-size: 4px 4px;

    pointer-events: none;
    z-index: 6;
  }

  .marquee-stage {
    position: absolute;

    inset: -35%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: var(--gap);

    transform: rotate(var(--angle));

    will-change: transform;
  }

  .marquee-row {
    display: flex;

    width: max-content;

    white-space: nowrap;

    will-change: transform;

    transform: translate3d(0,0,0);

    animation-name: diagonalMarquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
  }

  .marquee-row:nth-child(odd) {
    animation-direction: reverse;
  }

  .marquee-row span {
    display: inline-block;
    padding-right: .34em;
    font-family:
      Impact,
      Haettenschweiler,
      "Arial Black",
      sans-serif;
    font-size: var(--font-size);
    line-height: .82;
    text-transform: uppercase;
    letter-spacing: .05em;
    /* color: rgb(245 108 108 / 14%); */
    color: #1b1b1b;
    /* -webkit-text-stroke:
      2px rgba(255,255,255,.72); */
    /* text-shadow:
      0 8px 24px rgba(0,0,0,.22),
      0 2px 0 rgba(255,255,255,.08); */
  }

  @keyframes diagonalMarquee {
    from {
      transform: translate3d(0,0,0);
    }

    to {
      transform: translate3d(var(--move-x),0,0);
    }
  }

  @media (max-width: 768px) {
    .service-bg {
      --font-size: clamp(2.6rem, 11vw, 6rem);
      --gap: 1.25rem;
    }

    .marquee-row span {
      /*-webkit-text-stroke: 1.5px rgba(255,255,255,.7);*/
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .marquee-row {
      animation-play-state: paused;
    }
  }