.id-band {
  margin-top: 32px;
  background: var(--ink);
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
}

.id-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 64px 56px;
}

.id-band .eyebrow {
  color: #B9B4F5;
}

.id-band .eyebrow::before {
  background: #B9B4F5;
}

.id-band h2 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.02em;
  margin-top: 16px;
  line-height: 1.25;
}

.id-band p {
  font-size: 15px;
  line-height: 1.7;
  color: #C7C7CE;
  margin-top: 14px;
  max-width: 420px;
}

.id-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 12px;
  color: #9E9AE0;
  border: 1px solid #34324F;
  border-radius: 99px;
  padding: 7px 14px;
}

.id-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8B7CF7;
}

.id-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.id-visual svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}

@media (max-width: 860px) {
  .id-inner {
    grid-template-columns: 1fr;
    padding: 44px 28px;
    gap: 28px;
  }
  .id-visual {
    order: -1;
  }
}