/* VNISH GLOBAL · v81 · AI layer in the footer
   Band above the footer grid: hand the operator protocol to an assistant.
   Self-contained, no rules touch accepted layers. */

.ai-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  padding: 46px 0 40px;
  border-top: 1px solid rgba(231, 199, 125, .16);
  overflow: clip;
}

.ai-strip > * { min-width: 0; }

.ai-strip-kicker {
  margin: 0 0 12px;
  color: #e7c77d;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.ai-strip-title {
  margin: 0 0 14px;
  color: #f4f1ea;
  font-size: clamp(21px, 1.5vw, 29px);
  line-height: 1.16;
  letter-spacing: -.015em;
  font-weight: 700;
}

.ai-strip-line {
  margin: 0;
  max-width: 68ch;
  color: #96938d;
  font-size: 13px;
  line-height: 1.68;
}

.ai-strip-line b {
  color: #e7c77d;
  font-weight: 700;
  letter-spacing: .04em;
}

.ai-strip-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  justify-self: end;
  width: min(340px, 100%);
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 24px;
  border: 1px solid rgba(231, 199, 125, .32);
  border-radius: 999px;
  background: linear-gradient(165deg, rgba(23, 27, 28, .9), rgba(9, 11, 12, .96));
  color: #efe9dc;
  font: inherit;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-align: center;
  cursor: pointer;
  transition: border-color .22s ease, color .22s ease, transform .22s ease;
}

.ai-btn:hover {
  border-color: #f4dda4;
  color: #fff8ea;
  transform: translateY(-1px);
}

.ai-btn--gold {
  border-color: transparent;
  background: linear-gradient(120deg, #e7c77d, #c99b45);
  color: #170f02;
}

.ai-btn--gold:hover { color: #0d0800; }

@media (max-width: 900px) {
  .ai-strip {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding: 34px 0 30px;
  }
  .ai-strip-actions {
    justify-self: stretch;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ai-btn { transition: none; }
  .ai-btn:hover { transform: none; }
}
