/* Client discovery strip on the marketing homepage only. */
.client-intent {
  width: min(1120px, calc(100% - 40px));
  margin: 8px auto 40px;
  padding: 28px 28px 24px;
  border: 1px solid var(--border-strong, #e4e4ea);
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 0% 0%, var(--primary-soft, #efe7ff), transparent 55%),
    var(--surface, #fff);
}
.client-intent__eyebrow {
  margin: 0 0 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-strong, #5b21ea);
}
.client-intent h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}
.client-intent__lead {
  margin: 0 0 18px;
  max-width: 46rem;
  color: var(--text-muted, #5b5b66);
}
.client-intent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
}
.client-intent__primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--brand-gradient, linear-gradient(90deg, #8343ff, #4396ff));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.client-intent__ghost {
  color: var(--primary-strong, #5b21ea);
  font-weight: 600;
  text-decoration: none;
}
.client-intent__ghost:hover,
.client-intent__primary:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
[data-theme="dark"] .client-intent {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(131, 67, 255, 0.18), transparent 55%),
    var(--surface, #16161c);
}
@media (max-width: 640px) {
  .client-intent {
    padding: 22px 18px;
  }
  .client-intent__primary {
    width: 100%;
    justify-content: center;
  }
}
