/* AI-visibility audit landing. */

.audit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
@media (max-width: 900px) {
  .audit-hero { grid-template-columns: 1fr; }
}

.hero-hint { font-size: 14px; color: var(--text-faint); }

/* Mock chat: shows the problem instead of describing it. */
.audit-chat {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.audit-chat-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--surface-3);
  border-bottom: 1px solid var(--line);
}
.audit-chat-bar .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-30);
  flex: none;
}
.audit-chat-title {
  margin-left: 10px;
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}
.audit-chat-body { padding: 20px; display: grid; gap: 14px; }
.audit-msg {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.55;
}
.audit-msg--user {
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
}
.audit-msg--ai {
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--text);
}
.audit-msg-who {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-hi);
  margin-bottom: 6px;
}

.audit-why-text { font-size: clamp(16px, 1.9vw, 18px); line-height: 1.65; max-width: 840px; margin: 0; }

.reason-num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  /* --accent-hi rather than --accent: at 13px on a white card the lighter
     orange measured 4.3:1, just under the 4.5:1 small text needs. */
  color: var(--accent-hi);
  margin-bottom: 14px;
}

.audit-includes-lead { margin: 0 0 20px; font-size: 17px; }
.audit-note { margin-top: 22px; max-width: 760px; line-height: 1.6; }

/* ---------- Form ---------- */
.audit-form-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}
@media (max-width: 820px) {
  .audit-form-panel { grid-template-columns: 1fr; }
}
.audit-form-intro .icon-tile { margin-bottom: 16px; }
.audit-form-intro p { margin: 0; max-width: 420px; line-height: 1.6; }
.audit-form { display: grid; gap: 16px; }
.audit-form button { justify-self: start; margin-top: 4px; }

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-dim);
  cursor: pointer;
}
.consent-line input { margin-top: 2px; accent-color: var(--accent); flex: none; }
.consent-line a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; }
