.ai-core-visual {
  position: absolute;
  top: 50%;
  left: 58%;
  z-index: 0;
  width: 320px;
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0.36;
  transform: translate(-50%, -50%);
}
.core-ring,
.core-dot {
  position: absolute;
  display: block;
}
.core-ring {
  inset: 22%;
  border: 1px solid var(--theme-line);
  border-radius: 50%;
  animation: ai-sweep 8s linear infinite;
}
.core-ring.ring-b {
  inset: 34%;
  border-style: dashed;
  animation-duration: 12s;
  animation-direction: reverse;
}
.core-dot {
  width: 8px;
  height: 8px;
  background: var(--theme);
  box-shadow: 0 0 0 5px rgba(6, 199, 186, 0.12);
}
.core-dot.dot-a { top: 24%; left: 38%; }
.core-dot.dot-b { top: 56%; right: 28%; }
.core-dot.dot-c { bottom: 28%; left: 32%; }
@keyframes ai-sweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.cta-proof-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background:
    linear-gradient(180deg, rgba(6, 199, 186, 0.08), transparent 42%),
    var(--surface-bg);
  border: 2px solid var(--surface-border);
  border-radius: var(--radius);
  padding: clamp(34px, 4.8vw, 52px);
  box-shadow: var(--surface-shadow);
  position: relative;
  overflow: hidden;
}
.use-flow {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.use-flow article,
.example-chat,
.sample-output,
.sample-output article,
.security-panel {
  background: var(--inner-bg);
  border: 1px solid var(--inner-border);
}
.use-flow article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  padding: 18px;
}
.use-flow span {
  color: var(--theme);
  font-size: 0.72rem;
  font-weight: 850;
}
.use-flow strong {
  font-size: 0.98rem;
}
.use-flow p {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
}
.privacy-note {
  padding-left: 12px;
  border-left: 3px solid var(--theme);
}
.example-chat,
.sample-output,
.security-panel {
  display: grid;
  gap: 14px;
  padding: 22px;
}
.example-chat span,
.sample-output span,
.security-panel span {
  color: var(--theme);
  font-size: 0.74rem;
  font-weight: 850;
}
.example-chat p,
.security-panel p {
  color: var(--muted);
  font-size: 0.92rem;
}
.sample-output {
  padding: 0;
  background: transparent;
  border: 0;
}
.sample-output article {
  display: grid;
  gap: 12px;
  padding: 22px;
}
.sample-output strong {
  font-size: 1.1rem;
  line-height: 1.45;
}
.sample-output p {
  color: var(--muted);
  font-size: 0.92rem;
}
.sample-output .send-script {
  background:
    linear-gradient(135deg, rgba(6, 199, 186, 0.14), transparent 60%),
    var(--inner-bg);
  border-color: var(--theme-line);
}
.sample-output .send-script strong {
  font-size: 1.08rem;
  line-height: 1.6;
}
.copy-button {
  justify-self: start;
  min-height: 34px;
  margin-top: 4px;
  padding: 0 12px;
  color: #fff;
  font-weight: 850;
  cursor: pointer;
  background: var(--text);
  border: 2px solid var(--text);
  box-shadow: var(--inner-shadow);
}
.copy-button.is-copied {
  color: var(--text);
  background: var(--theme);
  border-color: var(--theme);
}

.cta-proof-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 199, 186, 0.12), transparent);
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}
