@charset "UTF-8";
/**
 *  artificial-intelligence.scss — page styles for
 *  artificial-intelligence.html (renamed from responsible-ai per Josh's
 *  ruling, Round 106; titles/meta keep "Responsible AI" for search).
 *  Compiled by CodeKit to build/css/artificial-intelligence.css.
 *  Ported from the v3 prototype, Round 106.
 */
/* The hero — the ledger behind a two-column stage: copy left, the
   Talk-to-me-Victor conversation instrument right. The scaffold and dark
   ground come from _template.hero.scss; the stage grid and the glass
   instrument shell mirror the analytics hero's designed structure
   (shared-shell promotion candidate at a third consumer). */
body.artificial-intelligence section.hero div.content {
  display: grid;
  grid-template-columns: minmax(0, 54fr) minmax(0, 46fr);
  align-items: center;
  gap: 48px;
}

body.artificial-intelligence section.hero h1 span.accent {
  color: rgb(127, 202, 219);
}

/* The signature phrase, orange for continuity with the analytics page's
   AI band (Josh, 2026-07-28); orange on this navy = 5.2:1, passes AA. */
body.artificial-intelligence section.hero div.copy p.lead b.phrase {
  color: rgb(255, 108, 14);
}

body.artificial-intelligence section.hero div.legend em {
  color: rgba(127, 202, 219, 0.6);
}

/* The conversation instrument. */
body.artificial-intelligence section.hero div.instrument {
  pointer-events: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(22px) saturate(1.4);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  padding: 22px 24px 20px;
  max-width: 560px;
  justify-self: end;
  width: 100%;
}

body.artificial-intelligence section.hero div.instrument div.heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body.artificial-intelligence section.hero div.instrument div.indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(0, 145, 179);
  box-shadow: 0 0 10px rgb(0, 145, 179);
  animation: pulse 2.4s ease infinite;
}

body.artificial-intelligence section.hero div.instrument p.title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgb(127, 202, 219);
}

body.artificial-intelligence section.hero div.instrument div.body {
  padding: 16px 6px 12px 0;
  height: 380px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(127, 202, 219, 0.25) transparent;
}

body.artificial-intelligence section.hero div.instrument div.body::-webkit-scrollbar {
  width: 4px;
}

body.artificial-intelligence section.hero div.instrument div.body::-webkit-scrollbar-thumb {
  background: rgba(127, 202, 219, 0.25);
  border-radius: 2px;
}

body.artificial-intelligence div.instrument div.question {
  flex: none;
  align-self: flex-end;
  max-width: 88%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px 12px 3px 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Archivo", sans-serif;
}

body.artificial-intelligence div.instrument span.caret {
  display: inline-block;
  width: 7px;
  height: 15px;
  background: rgb(255, 108, 14);
  vertical-align: -2px;
  margin-left: 2px;
  animation: blink 0.9s step-end infinite;
}

body.artificial-intelligence div.instrument div.thinking {
  flex: none;
  align-self: flex-start;
  display: flex;
  gap: 5px;
  align-items: center;
  background: rgba(2, 20, 35, 0.55);
  border: 1px solid rgba(127, 202, 219, 0.22);
  border-radius: 12px 12px 12px 3px;
  padding: 13px 16px;
  min-height: 20px;
}

body.artificial-intelligence div.instrument div.thinking i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(127, 202, 219, 0.7);
  animation: thinking-pulse 1.2s ease infinite;
}

body.artificial-intelligence div.instrument div.thinking i:nth-child(2) {
  animation-delay: 0.2s;
}

body.artificial-intelligence div.instrument div.thinking i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes thinking-pulse {
  0%, 100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-3px);
  }
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
body.artificial-intelligence div.instrument div.input {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  background: rgba(2, 20, 35, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 10px 10px 14px;
}

body.artificial-intelligence div.instrument div.field {
  flex: 1;
  font-size: 13px;
  color: #ffffff;
  font-family: "Archivo", sans-serif;
  font-weight: 500;
  min-height: 20px;
  line-height: 1.5;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.artificial-intelligence div.instrument div.field span.placeholder {
  color: rgba(234, 243, 248, 0.42);
  font-weight: 400;
}

body.artificial-intelligence div.instrument div.send {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: rgb(255, 108, 14);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.artificial-intelligence div.instrument div.send svg {
  width: 14px;
  height: 14px;
  fill: #ffffff;
}

body.artificial-intelligence div.instrument p.disclaimer {
  margin-top: 9px;
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.08em;
  color: rgba(234, 243, 248, 0.55);
}

body.artificial-intelligence div.instrument div.answer {
  flex: none;
  align-self: flex-start;
  max-width: 94%;
  background: rgba(2, 20, 35, 0.55);
  border: 1px solid rgba(127, 202, 219, 0.22);
  border-radius: 12px 12px 12px 3px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(234, 243, 248, 0.9);
  line-height: 1.55;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  font-family: "Archivo", sans-serif;
}

body.artificial-intelligence div.instrument div.answer.active {
  opacity: 1;
  transform: none;
}

body.artificial-intelligence div.instrument div.answer span.figure {
  color: rgb(127, 202, 219);
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
}

/* The template's hero-canvas rule would absolutely position the answer
   sparklines; they sit in flow inside the bubbles. */
body.artificial-intelligence section.hero div.instrument canvas {
  display: block;
  margin-top: 10px;
  width: 100%;
  height: 54px;
  position: static;
  cursor: default;
}

body.artificial-intelligence div.instrument div.answer div.source {
  margin-top: 9px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(127, 202, 219, 0.65);
}

body.artificial-intelligence div.instrument div.answer a.link {
  color: rgb(127, 202, 219);
  font-weight: 600;
  text-decoration: none;
}

body.artificial-intelligence div.instrument div.answer a.action {
  display: inline-block;
  margin-top: 10px;
  background: #ffffff;
  color: rgb(0, 43, 73);
  font-weight: 600;
  font-size: 12.5px;
  padding: 8px 15px;
  border-radius: 9px;
  text-decoration: none;
}

body.artificial-intelligence div.instrument div.footer {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.artificial-intelligence div.instrument div.footer p.note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: rgba(234, 243, 248, 0.55);
}

body.artificial-intelligence div.instrument div.footer a.forward {
  font-size: 12.5px;
  font-weight: 600;
  color: rgb(127, 202, 219);
  text-decoration: none;
  white-space: nowrap;
  margin-left: 14px;
}

/* Where we stand — the six practice cards. */
body.artificial-intelligence section.practice {
  padding: 96px 0;
}

/* v3's heading eyebrow here was an inline SPAN with an ineffective
   vertical margin: a 26.4px line box (the parent's 16px strut) and no
   gap below. 2.2 × 12px + zero margin restores it (the span→p lesson,
   Rounds 97/102/106). */
body.artificial-intelligence section.practice div.section-heading p.eyebrow {
  line-height: 2.2;
  margin-bottom: 0;
}

body.artificial-intelligence section.practice div.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.artificial-intelligence section.practice div.card {
  background: #ffffff;
  border: 1px solid rgb(230, 234, 238);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 8px 30px -24px rgba(0, 43, 73, 0.3);
  display: flex;
  flex-direction: column;
}

body.artificial-intelligence section.practice div.card p.eyebrow {
  font-size: 11px;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  line-height: 1.3;
}

body.artificial-intelligence section.practice div.card h3 {
  font-family: "Archivo", sans-serif;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: rgb(0, 43, 73);
  margin: 0 0 8px;
  line-height: 1.2;
}

body.artificial-intelligence section.practice div.card p {
  font-size: 14.5px;
  color: rgb(91, 107, 122);
}

body.artificial-intelligence section.practice div.card p a {
  color: rgb(0, 124, 153);
  font-weight: 600;
  text-decoration: none;
}

/* Re-asserted at card-child specificity (the Round-97 lesson). */
body.artificial-intelligence section.practice div.card p.eyebrow {
  font-size: 11px;
}

@media (max-width: 980px) {
  body.artificial-intelligence section.hero div.content {
    grid-template-columns: 1fr;
  }
  body.artificial-intelligence section.hero div.instrument {
    justify-self: start;
    max-width: 100%;
    margin-top: 38px;
  }
  body.artificial-intelligence section.hero div.instrument div.body {
    height: 320px;
  }
}
@media (max-width: 880px) {
  body.artificial-intelligence section.practice div.cards {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.artificial-intelligence div.instrument div.answer {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
