.unity {
  --unity-ink: #0B0B0B;
  --unity-copy: #ececec;
  --unity-muted: #c8c8c8;
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 0;
  background: #0B0B0B;
  background-color: #0B0B0B;
  color: var(--unity-copy);
  overflow: hidden;
  isolation: isolate;
}

.unity-fill {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #0B0B0B;
  pointer-events: none;
}

.unity-sheet {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(0, 1.7fr) minmax(210px, 0.78fr);
  grid-template-areas: "copy visual features";
  gap: 20px 12px;
  align-items: center;
  min-height: 440px;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  border: 0;
}

.unity-copy { grid-area: copy; background: transparent; }

.unity-copy h2 {
  color: var(--white);
  font-size: clamp(2.35rem, 4.6vw, 3.55rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.unity-kicker {
  margin: 10px 0 0;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.unity-lede {
  max-width: 36ch;
  margin: 18px 0 0;
  color: var(--unity-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.unity-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.unity-cta:hover {
  color: var(--red-hover);
}

.unity-cta:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}

.unity-cta svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.unity-visual {
  grid-area: visual;
  min-width: 0;
  justify-self: center;
  width: 100%;
  background: transparent;
}

.unity-visual img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  background: transparent;
  /* Sit the dark CGI canvas on #0B0B0B without cropping the art */
  mix-blend-mode: lighten;
}

.unity-features {
  grid-area: features;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  justify-self: stretch;
  background: transparent;
}

.unity-features li {
  position: relative;
  padding-left: 26px;
  color: var(--white);
  font-family: var(--display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.unity-features li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.28em;
  width: 9px;
  height: 5px;
  border-left: 2.5px solid var(--red);
  border-bottom: 2.5px solid var(--red);
  transform: rotate(-45deg);
}

@media (max-width: 1080px) {
  .unity { padding: 48px 0; }
  .unity-sheet {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    grid-template-areas:
      "copy features"
      "visual visual";
    gap: 28px 24px;
  }
  .unity-features {
    justify-self: stretch;
    width: auto;
  }
}

@media (max-width: 700px) {
  .unity { padding: 44px 0; }
  .unity-sheet {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "features";
    gap: 28px;
  }
  .unity-lede { max-width: none; }
  .unity-features { gap: 14px; }
}
