/* ============================================================
   Agentic identity (KYA) — page overrides on top of the shared
   solution template (/styles/pages/solution.css, scoped .p-solution).
   Every rule is scoped to .p-solution--agentic-trust so nothing
   bleeds into sibling solution pages. Tokens only — no raw hex.
   Loaded AFTER solution.css so these win where they overlap.

   Surface = ABSTRACT (agent accountability, not an end-user mobile
   app). VISUALS PASS 2026-08-03 (Arturo, Paper-approved, demo-led):
   every visual now mirrors the REAL Agents module on ms-incode-dashboard
   develop (demo client): hero = the Agents Overview command center,
   how-deck bind scene = the consent surface, step 04 = enforce & audit,
   sol-trail = the consent card, sol-deploy → sol-demo (the ONE guided
   interactive demo, chrome in behaviors/agentic-trust-demo.js). The
   placeholder kit + "Mockup" chips are retired — built HTML is the
   final art.
   ============================================================ */

/* ============================================================
   1 · HERO — desktop command-center window (a real computer screen on
   the dark hero, per Nacim's ronda-2 direction: "es pantalla de
   computador"). The window chrome is the real Agents module (tabs,
   rail, Live pill); inside it the DELEGATION GRAPH (Paper V3,
   Arturo-picked 2026-08-03): one verified human bound to the agents
   acting on her behalf, with instant, continuous CSS motion.
   ============================================================ */
.p-solution--agentic-trust .at-screen {
  position: relative;
  z-index: 2;
  width: min(100%, 524px);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* window title bar — traffic lights + product title + a pulsing Live pill */
.p-solution--agentic-trust .at-screen__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 38px;
  padding: 0 14px;
  background: var(--color-grey-50);
  border-bottom: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-screen__lights { display: inline-flex; gap: 5px; }
.p-solution--agentic-trust .at-screen__lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-grey-200);
}
.p-solution--agentic-trust .at-screen__title {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-grey-500);
}
.p-solution--agentic-trust .at-screen__title .ds-icon {
  width: 15px;
  height: 15px;
  color: var(--color-blue);
}
.p-solution--agentic-trust .at-screen__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 3px 9px 3px 8px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--color-green-500) 12%, var(--color-white));
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-green-600);
}
.p-solution--agentic-trust .at-screen__live i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green-500);
  animation: at-live-pulse 2.4s ease-out infinite;
}
@keyframes at-live-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--color-green-500) 55%, transparent); }
  70%, 100% { box-shadow: 0 0 0 6px transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .p-solution--agentic-trust .at-screen__live i { animation: none; }
}

/* body: a slim product nav rail + the main sessions view */
.p-solution--agentic-trust .at-screen__body { display: flex; align-items: stretch; }
.p-solution--agentic-trust .at-screen__rail {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 48px;
  padding: 12px 0;
  background: var(--color-grey-50);
  border-right: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-screen__navico {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-screen__navico .ds-icon { width: 17px; height: 17px; }
.p-solution--agentic-trust .at-screen__navico.is-active {
  background: var(--color-blue-100);
  color: var(--color-blue);
}

.p-solution--agentic-trust .at-screen__main {
  flex: 1 1 auto;
  min-width: 0;
  padding: 10px 16px 16px;
}

/* product tabs — Overview · Activity · Agents (the module's real IA) */
.p-solution--agentic-trust .at-screen__tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-screen__tabs span {
  padding: 4px 2px 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-grey-400);
  border-bottom: 2px solid transparent;
}
.p-solution--agentic-trust .at-screen__tabs span.is-active {
  color: var(--color-blue);
  border-bottom-color: var(--color-blue);
}

/* delegation graph — one verified human bound to every agent acting on
   her behalf (Paper board V3, Arturo-picked 2026-08-03 over the live-ops
   Overview: the motion must read instantly, not after a wait). All
   motion is pure CSS and begins on load: the consented links flow,
   packets travel them (the pending-consent link carries none — nothing
   flows without consent), status dots pulse on packet arrival, the
   owner ring breathes. Entrance cascade: owner pops, links fade, agent
   cards slide in left-to-right. */
.p-solution--agentic-trust .at-graph {
  display: flex;
  align-items: center;
  padding: 20px 0 16px;
}
.p-solution--agentic-trust .at-graph__owner {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  width: 148px;
  padding: 16px 12px;
  background: var(--color-grey-50);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  animation: at-pop 0.5s var(--ease-out-expo) 0.3s both;
}
.p-solution--agentic-trust .at-graph__owner-av {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--color-blue-100);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-blue);
  animation: at-owner-pulse 3s ease-out 1.4s infinite;
}
.p-solution--agentic-trust .at-graph__owner-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-graph__owner-check {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 500;
  color: var(--color-green-600);
}
.p-solution--agentic-trust .at-graph__owner-check .ds-icon { width: 10px; height: 10px; }

/* the links column is a fixed 64×176 stage so the CSS offset-path packets
   ride the exact same coordinates as the SVG paths (agent cards are 52px
   tall + 10px gaps → centers at y 26 / 88 / 150) */
.p-solution--agentic-trust .at-graph__links {
  position: relative;
  flex: 0 0 auto;
  width: 64px;
  height: 176px;
  animation: at-fade 0.4s ease-out 0.5s both;
}
.p-solution--agentic-trust .at-graph__links svg { display: block; width: 100%; height: 100%; }
.p-solution--agentic-trust .at-graph__link {
  stroke: var(--color-blue-500);
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  animation: at-link-flow 1.6s linear infinite;
}
.p-solution--agentic-trust .at-graph__link.is-wait { stroke: var(--color-blue-200); }
.p-solution--agentic-trust .at-graph__packet {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-blue-500);
  offset-rotate: 0deg;
  opacity: 0;
  animation: at-packet 6s ease-in-out 0.8s infinite;
}
.p-solution--agentic-trust .at-graph__packet:nth-of-type(2) { animation-delay: 3.8s; }

.p-solution--agentic-trust .at-graph__agents {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-solution--agentic-trust .at-graph__agent {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 10px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  animation: at-slide 0.45s var(--ease-out-expo) both;
}
.p-solution--agentic-trust .at-graph__agent:nth-child(1) { animation-delay: 0.55s; }
.p-solution--agentic-trust .at-graph__agent:nth-child(2) { animation-delay: 0.67s; }
.p-solution--agentic-trust .at-graph__agent:nth-child(3) { animation-delay: 0.79s; }
.p-solution--agentic-trust .at-graph__agent-av {
  flex: none;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--color-blue-100);
  color: var(--color-blue);
}
.p-solution--agentic-trust .at-graph__agent-av .ds-icon { width: 13px; height: 13px; }
.p-solution--agentic-trust .at-graph__agent-txt {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.p-solution--agentic-trust .at-graph__agent-txt b,
.p-solution--agentic-trust .at-graph__agent-txt i {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.p-solution--agentic-trust .at-graph__agent-txt b {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-graph__agent-txt i {
  font-style: normal;
  font-size: 8.5px;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-graph__agent-dot {
  flex: none;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green-500);
  /* pulse retired 2026-08-17 — site rule: no animated live dots */
}
.p-solution--agentic-trust .at-graph__agent.is-wait .at-graph__agent-dot {
  background: var(--color-amber-600);
  animation: none;
}
.p-solution--agentic-trust .at-graph__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
  font-size: 10px;
  color: var(--color-grey-400);
  animation: at-fade 0.4s ease-out 0.95s both;
}
.p-solution--agentic-trust .at-graph__meta .ds-icon {
  width: 11px;
  height: 11px;
  color: var(--color-green-600);
}

@keyframes at-pop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes at-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes at-slide {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes at-link-flow {
  to { stroke-dashoffset: -16; }
}
@keyframes at-packet {
  0% { offset-distance: 0%; opacity: 0; }
  6% { opacity: 1; }
  30% { opacity: 1; }
  36% { offset-distance: 100%; opacity: 0; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes at-owner-pulse {
  0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--color-blue-500) 35%, transparent); }
  55%, 100% { box-shadow: 0 0 0 10px transparent; }
}
/* narrow screens: the window sheds its nav rail and the agent avatars so
   the delegation story (names + links) keeps the room; packets ride fixed
   64px coordinates, so they sit out when the links column compresses */
@media (max-width: 639px) {
  .p-solution--agentic-trust .at-screen__rail { display: none; }
  .p-solution--agentic-trust .at-graph__owner { width: 96px; padding: 12px 6px; }
  .p-solution--agentic-trust .at-graph__owner-name { font-size: 10px; }
  .p-solution--agentic-trust .at-graph__owner-check { font-size: 8px; }
  .p-solution--agentic-trust .at-graph__links { width: 28px; }
  .p-solution--agentic-trust .at-graph__packet { display: none; }
  .p-solution--agentic-trust .at-graph__agent { padding: 0 8px; }
  .p-solution--agentic-trust .at-graph__agent-av { display: none; }
  .p-solution--agentic-trust .at-graph__agent-txt b { font-size: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  .p-solution--agentic-trust .at-graph__owner,
  .p-solution--agentic-trust .at-graph__owner-av,
  .p-solution--agentic-trust .at-graph__links,
  .p-solution--agentic-trust .at-graph__link,
  .p-solution--agentic-trust .at-graph__agent,
  .p-solution--agentic-trust .at-graph__agent-dot,
  .p-solution--agentic-trust .at-graph__meta { animation: none; }
  .p-solution--agentic-trust .at-graph__packet { display: none; }
}

/* ============================================================
   3 · THREAT — the three security blindspots of today's agent
   architecture (dark, red wash). Sits between the intro and the
   Gartner stats grid. Source: incode.com live product page.
   ============================================================ */
.p-solution--agentic-trust .at-blind__label {
  margin-top: 34px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  color: rgba(255, 255, 255, 0.55);
}
.p-solution--agentic-trust .at-blind {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .p-solution--agentic-trust .at-blind { grid-template-columns: repeat(3, 1fr); }
}
.p-solution--agentic-trust .at-blind__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 22px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: color-mix(in oklab, var(--color-black) 94%, var(--color-red-500));
}
.p-solution--agentic-trust .at-blind__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: color-mix(in oklab, var(--color-red-400) 72%, var(--color-white));
}
.p-solution--agentic-trust .at-blind__icon .ds-icon { width: 20px; height: 20px; }
.p-solution--agentic-trust .at-blind__name {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--track-tight);
  font-size: var(--fs-xl);
  line-height: 1.2;
  color: var(--color-white);
}
.p-solution--agentic-trust .at-blind__line {
  margin-top: 8px;
  font-size: var(--fs-sm);
  line-height: var(--leading-body);
  color: rgba(255, 255, 255, 0.62);
}

/* ============================================================
   2 · HOW IT WORKS — per-step wireframe diagrams (light). ONE
   persistent morphing surface: the deck owns the card chrome and
   animates its height to the active screen (overflow clips the
   morph); the screens are chromeless layers that pure-crossfade
   in place — no translate, so only the surface reads as moving.
   agentic-trust-how.js toggles .is-active and measures
   --at-screen-h.
   ============================================================ */
/* the slot reserves the TALLEST screen's height (JS-measured), so the
   stage centers a box that never changes size — the card's top edge
   holds still while its height morphs downward into the reserved space
   (a center-anchored card slides half the height delta on every morph,
   riding sub-pixels: that was the jitter) */
.p-solution--agentic-trust .at-how__slot {
  width: min(100%, 420px);
  height: var(--at-slot-h, auto);
}
.p-solution--agentic-trust .at-how__deck {
  position: relative;
  display: grid;
  width: 100%;
  height: var(--at-screen-h, auto);
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  box-shadow: none;
  /* click-initiated → ease-out: instant response, gentle settle */
  transition: height 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-solution--agentic-trust .at-how__screen {
  grid-area: 1 / 1;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 232px;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.p-solution--agentic-trust .at-how__screen.is-active {
  opacity: 1;
  transition: opacity 0.35s ease 0.05s;
}

/* jump-free step rail: every description opens to the SAME measured
   height (the tallest line, set by agentic-trust-how.js as
   --at-reveal-h), so the old step's collapse and the new step's
   expansion cancel out — the rail's total height never changes and
   the centered stage column stops re-seating. Overrides the shared
   0fr→1fr grid trick, whose per-step natural heights caused the jump. */
.p-solution--agentic-trust .sol-how__reveal {
  display: block;
  height: 0;
  overflow: hidden;
  /* same duration + curve as the deck morph — the rail and the card
     respond to one click, so they move as one unit */
  transition: height 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}
.p-solution--agentic-trust .sol-how__step.is-active .sol-how__reveal {
  height: var(--at-reveal-h, 78px);
}
/* padding lives on the line at rest (not only when active) so the
   measured height is the animated height — the collapsed reveal
   hides it anyway */
.p-solution--agentic-trust .sol-how__line { padding-top: 10px; }

@media (prefers-reduced-motion: reduce) {
  .p-solution--agentic-trust .at-how__deck,
  .p-solution--agentic-trust .at-how__screen,
  .p-solution--agentic-trust .sol-how__reveal {
    transition: none;
  }
}
.p-solution--agentic-trust .at-how__head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-how__head .ds-icon {
  width: 18px;
  height: 18px;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-how__pill {
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--color-grey-100);
  color: var(--color-grey-on-white);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.p-solution--agentic-trust .at-how__pill--accent {
  background: color-mix(in oklab, var(--color-blue-500) 14%, transparent);
  color: var(--color-blue);
}
.p-solution--agentic-trust .at-how__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.p-solution--agentic-trust .at-how__bar {
  flex: 1;
  height: 6px;
  min-width: 40px;
  border-radius: 999px;
  background: var(--color-grey-100);
}

/* detect — two session lanes, the agent lane flagged */
.p-solution--agentic-trust .at-how__lane {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--color-border-light);
  background: var(--color-grey-50);
}
.p-solution--agentic-trust .at-how__lane--flag {
  border-color: color-mix(in oklab, var(--color-blue) 40%, transparent);
  background: var(--color-blue-100);
}
.p-solution--agentic-trust .at-how__lane-glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--color-border-light);
  background: var(--color-white);
  color: var(--color-grey-500);
}
.p-solution--agentic-trust .at-how__lane--flag .at-how__lane-glyph {
  border-color: color-mix(in oklab, var(--color-blue) 30%, transparent);
  color: var(--color-blue);
}
.p-solution--agentic-trust .at-how__lane-glyph .ds-icon { width: 20px; height: 20px; }
.p-solution--agentic-trust .at-how__lane-label {
  flex: 1;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--color-foreground);
}

/* bind — the consent surface in miniature (the real "Approve AI Agent
   Access" card): one granted permission with its usage limit, Deny/Approve */
.p-solution--agentic-trust .at-how__consent {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-grey-50);
}
.p-solution--agentic-trust .at-how__consent-h {
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-how__consent-perm {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  border: 1px solid var(--color-border-light);
  border-radius: 9px;
  background: var(--color-white);
}
.p-solution--agentic-trust .at-how__consent-perm > span {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-how__consent-perm b {
  flex: none;
  padding: 2px 7px;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-how__consent-check {
  flex: none;
  display: grid;
  place-items: center;
  width: 15px;
  height: 15px;
  border-radius: 4px;
  background: var(--color-blue);
  color: var(--color-white);
}
.p-solution--agentic-trust .at-how__consent-check .ds-icon { width: 9px; height: 9px; }
.p-solution--agentic-trust .at-how__consent-actions { display: flex; gap: 8px; }
.p-solution--agentic-trust .at-how__consent-deny,
.p-solution--agentic-trust .at-how__consent-approve {
  flex: 1;
  padding: 7px 0;
  border-radius: var(--radius-md);
  font-size: 11.5px;
  font-weight: 600;
  text-align: center;
}
.p-solution--agentic-trust .at-how__consent-deny {
  border: 1px solid var(--color-grey-200);
  background: var(--color-white);
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-how__consent-approve {
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}

/* token — issued identity-token card */
.p-solution--agentic-trust .at-how__token {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--color-blue) 30%, transparent);
  background: linear-gradient(120deg, var(--color-blue-100), var(--color-white));
}
.p-solution--agentic-trust .at-how__token-glyph {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--color-blue);
  color: var(--color-white);
}
.p-solution--agentic-trust .at-how__token-glyph .ds-icon { width: 24px; height: 24px; }
.p-solution--agentic-trust .at-how__token-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.p-solution--agentic-trust .at-how__token-line {
  height: 8px;
  width: 60%;
  border-radius: 999px;
  background: var(--color-grey-200);
}
.p-solution--agentic-trust .at-how__token-line--wide {
  width: 100%;
  background: var(--color-grey-300);
}

/* enforce & audit — mini trail rows: mandate-checked calls (SUCCESS),
   the out-of-scope call (DENIED), automatic expiry. Shared with the demo
   scenes (behaviors/agentic-trust-demo.js builds the same markup). */
.p-solution--agentic-trust .at-how__audit {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.p-solution--agentic-trust .at-how__audit-row {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border: 1px solid var(--color-border-light);
  border-radius: 10px;
  background: var(--color-white);
}
.p-solution--agentic-trust .at-how__audit-row > span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-how__audit-dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-grey-300);
}
.p-solution--agentic-trust .at-how__audit-dot--ok { background: var(--color-green-500); }
.p-solution--agentic-trust .at-how__audit-dot--flag { background: var(--color-red-500); }
.p-solution--agentic-trust .at-how__audit-pill {
  flex: none;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  background: var(--color-grey-100);
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-how__audit-pill--ok {
  background: color-mix(in oklab, var(--color-green-500) 13%, transparent);
  color: var(--color-green-600);
}
.p-solution--agentic-trust .at-how__audit-pill--flag {
  background: color-mix(in oklab, var(--color-red-400) 15%, transparent);
  color: var(--color-red-500);
}

/* ============================================================
   5 · SOL-DEMO — the ONE interactive experience (bright): the guided
   lifecycle demo. Section chrome + rail here; the stage scenes and the
   tour (overlay cards, hint chip, pulse ring) are rendered by
   /js/behaviors/agentic-trust-demo.js into [data-atd-scene].
   ============================================================ */
.p-solution--agentic-trust .sol-demo {
  position: relative;
  background: var(--color-white);
  color: var(--color-foreground);
}
/* full-page layout (like the workflow-builder + Studio demos): the header
   centers, the window spans the container */
.p-solution--agentic-trust .sol-demo__kicker { text-align: center; }
.p-solution--agentic-trust .sol-demo__title {
  margin-inline: auto;
  text-align: center;
}
.p-solution--agentic-trust .sol-demo__intro {
  margin-inline: auto;
  text-align: center;
}

/* pathway links — a quiet centered row under the window (the retired
   deploy tabs' destinations) */
.p-solution--agentic-trust .sol-demo__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  text-align: center;
}
.p-solution--agentic-trust .sol-demo__more-sep { color: var(--color-grey-200); }
.p-solution--agentic-trust .sol-demo__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-blue);
  text-decoration: none;
}
.p-solution--agentic-trust .sol-demo__link:hover { text-decoration: underline; }

/* the demo window — full container width, one tall stage */
.p-solution--agentic-trust .at-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  margin-top: 48px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.p-solution--agentic-trust .at-demo__bar {
  flex: none;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 42px;
  padding: 0 16px;
  background: var(--color-grey-50);
  border-bottom: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-demo__lights { display: inline-flex; gap: 5px; }
.p-solution--agentic-trust .at-demo__lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-grey-200);
}
.p-solution--agentic-trust .at-demo__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-demo__title .ds-icon { width: 16px; height: 16px; color: var(--color-blue); }
/* the "Guided demo" pill — appears in free play, restarts the tour (the
   workflow-builder pattern) */
.p-solution--agentic-trust .at-demo__restart {
  margin-left: auto;
  padding: 4px 12px;
  border: 1px solid color-mix(in oklab, var(--color-blue) 40%, transparent);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 600;
  cursor: pointer;
}
.p-solution--agentic-trust .at-demo__restart:hover { background: var(--color-blue-100); }
.p-solution--agentic-trust .at-demo__scene {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px;
}
/* once the behavior boots, the scene stops being a centered void and
   becomes the WORLD: assistant chat (left) + Incode dashboard (right) */
.p-solution--agentic-trust .at-demo.is-world .at-demo__scene {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  gap: 0;
}
.p-solution--agentic-trust .atd-world {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  width: 100%;
}
.p-solution--agentic-trust .atd-pane {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}
.p-solution--agentic-trust .atd-pane--chat {
  background: var(--color-grey-50);
  border-right: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .atd-pane__head {
  flex: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-bottom: 1px solid var(--color-border-light);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: var(--track-wide);
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .atd-pane__head .ds-icon { width: 15px; height: 15px; }
.p-solution--agentic-trust .atd-pane__head--dash { color: var(--color-grey-500); }
.p-solution--agentic-trust .atd-pane__head--dash .ds-icon { color: var(--color-blue); }

/* left · the assistant conversation */
.p-solution--agentic-trust .atd-chatlog {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  overflow-y: auto;
  min-height: 0;
}
.p-solution--agentic-trust .atd-chatlog .at-demo__msg { flex: none; }
.p-solution--agentic-trust .atd-chatlog .at-demo__msg--agent { background: var(--color-white); }
.p-solution--agentic-trust .atd-chat-action {
  align-self: flex-start;
  flex: none;
  margin-left: 4px;
  padding: 8px 16px;
  border: 1px solid color-mix(in oklab, var(--color-blue) 40%, transparent);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
}
.p-solution--agentic-trust .atd-chat-action:hover { background: var(--color-blue-100); }
.p-solution--agentic-trust .atd-replies {
  flex: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 16px;
}
.p-solution--agentic-trust .atd-replies:empty { padding: 0; }
.p-solution--agentic-trust .atd-reply {
  padding: 8px 16px;
  border: 1px solid color-mix(in oklab, var(--color-blue) 40%, transparent);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-blue);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
}
.p-solution--agentic-trust .atd-reply:hover { background: var(--color-blue-100); }

/* the consent card pops over the CHAT pane — where the owner really sees it */
.p-solution--agentic-trust .atd-pane__pop {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 16px;
  background: color-mix(in oklab, var(--color-black) 30%, transparent);
}
.p-solution--agentic-trust .atd-pane__pop[hidden] { display: none; }

/* right · the dashboard pane */
.p-solution--agentic-trust .atd-dash {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  overflow-y: auto;
  min-height: 0;
  background: var(--color-white);
}
.p-solution--agentic-trust .atd-dash__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .atd-dash__label--gap { margin-top: 10px; }
.p-solution--agentic-trust .atd-dash__note {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--color-grey-300);
}
.p-solution--agentic-trust .atd-dash .atd-mandrow,
.p-solution--agentic-trust .atd-dash .atd-audit { width: 100%; }
.p-solution--agentic-trust .atd-dash .atd-token { width: 100%; }
/* the shared pill row carries margin-top:auto from the how-deck — in the
   dashboard pane it stacks in flow */
.p-solution--agentic-trust .atd-dash .at-how__row { margin-top: 0; }
.p-solution--agentic-trust .at-demo__fallback {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

/* the chat moment (Chase's healthcare-delegation demo) */
.p-solution--agentic-trust .at-demo__chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(100%, 440px);
}
.p-solution--agentic-trust .at-demo__msg {
  max-width: 84%;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 12.5px;
  line-height: 1.45;
}
.p-solution--agentic-trust .at-demo__msg--user {
  align-self: flex-end;
  background: var(--color-blue);
  color: var(--color-white);
  border-bottom-right-radius: 4px;
}
.p-solution--agentic-trust .at-demo__msg--agent {
  align-self: flex-start;
  background: var(--color-grey-50);
  border: 1px solid var(--color-border-light);
  color: var(--color-foreground);
  border-bottom-left-radius: 4px;
}

/* ---------- demo tour chrome (JS-driven) ---------- */
.p-solution--agentic-trust .at-demo__overlay {
  position: absolute;
  inset: 0;
  z-index: 9;
  display: grid;
  place-items: center;
  padding: 20px;
  background: color-mix(in oklab, var(--color-black) 52%, transparent);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.p-solution--agentic-trust .at-demo__overlay.is-on { opacity: 1; visibility: visible; }
.p-solution--agentic-trust .atd-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 360px);
  padding: 24px 26px;
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: none;
  text-align: center;
}
.p-solution--agentic-trust .atd-card__pill {
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--color-blue-100);
  color: var(--color-blue);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.p-solution--agentic-trust .atd-card__title {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: var(--track-tight);
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .atd-card__body {
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .atd-card__cta {
  width: 100%;
  padding: 11px 0;
  border: 0;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 700;
  cursor: pointer;
}
.p-solution--agentic-trust .atd-card__ghost {
  padding: 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-grey-400);
  cursor: pointer;
}
.p-solution--agentic-trust .atd-card__ghost:hover { color: var(--color-grey-600); }
.p-solution--agentic-trust .atd-card__foot { font-size: 11.5px; color: var(--color-grey-400); }
.p-solution--agentic-trust .atd-card__foot a { color: var(--color-blue); }

/* the spotlight — a pulsing blue ring around the ONE live control; its
   huge shadow dims the rest of the stage (the workflow-builder recipe) */
.p-solution--agentic-trust .atd-spot {
  position: absolute;
  z-index: 5;
  pointer-events: none;
  border-radius: 14px;
  border: 2px solid var(--color-blue-500);
  box-shadow: 0 0 0 9999px color-mix(in oklab, var(--color-black) 35%, transparent);
  animation: atd-pulse 1.6s ease-in-out infinite;
  opacity: 0;
  visibility: hidden;
  transition:
    left 0.55s var(--ease-out-expo),
    top 0.55s var(--ease-out-expo),
    width 0.55s var(--ease-out-expo),
    height 0.55s var(--ease-out-expo),
    opacity 0.35s,
    visibility 0.35s;
}
.p-solution--agentic-trust .atd-spot.is-on { opacity: 1; visibility: visible; }
@keyframes atd-pulse {
  0%, 100% { outline: 4px solid color-mix(in oklab, var(--color-blue-500) 0%, transparent); }
  50% { outline: 4px solid color-mix(in oklab, var(--color-blue-500) 30%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .p-solution--agentic-trust .atd-spot { animation: none; }
}

/* the coach tip — white card beside the live control: step pill, Back,
   title, body */
.p-solution--agentic-trust .atd-tip {
  position: absolute;
  z-index: 8;
  width: 262px;
  padding: 16px 18px;
  text-align: left;
  background: var(--color-white);
  border: 1px solid var(--color-grey-100);
  border-radius: var(--radius-lg);
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition:
    left 0.55s var(--ease-out-expo),
    top 0.55s var(--ease-out-expo),
    opacity 0.25s,
    visibility 0.25s;
}
.p-solution--agentic-trust .atd-tip.is-on { opacity: 1; visibility: visible; }
.p-solution--agentic-trust .atd-tip__pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--color-blue-100);
  color: var(--color-blue);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.p-solution--agentic-trust .atd-tip__back {
  float: right;
  padding: 3px 0;
  border: 0;
  background: none;
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-grey-400);
  cursor: pointer;
}
.p-solution--agentic-trust .atd-tip__back:hover { color: var(--color-grey-600); }
.p-solution--agentic-trust .atd-tip__title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: var(--track-tight);
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .atd-tip__body {
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--color-grey-on-white);
}

/* scene pieces (JS-built) */
.p-solution--agentic-trust .atd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px solid var(--color-grey-200);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-grey-500);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
}
.p-solution--agentic-trust .atd-btn--primary {
  border-color: transparent;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
}
.p-solution--agentic-trust .atd-btn:disabled { opacity: 0.45; cursor: default; }
.p-solution--agentic-trust .atd-lanes { display: flex; flex-direction: column; gap: 10px; width: min(100%, 400px); }
.p-solution--agentic-trust .atd-token {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 380px);
  padding: 18px;
  border: 1px solid color-mix(in oklab, var(--color-blue) 30%, transparent);
  border-radius: 14px;
  background: linear-gradient(120deg, var(--color-blue-100), var(--color-white));
}
.p-solution--agentic-trust .atd-token__head {
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-solution--agentic-trust .atd-token__glyph {
  flex: none;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-lg);
  background: var(--color-blue);
  color: var(--color-white);
}
.p-solution--agentic-trust .atd-token__glyph .ds-icon,
.p-solution--agentic-trust .atd-token__glyph svg { width: 20px; height: 20px; }
.p-solution--agentic-trust .atd-token__name {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .atd-ttl { display: flex; align-items: center; gap: 10px; }
.p-solution--agentic-trust .atd-ttl__track {
  flex: 1;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--color-blue-500) 16%, var(--color-white));
  overflow: hidden;
}
.p-solution--agentic-trust .atd-ttl__fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 999px;
  background: var(--color-blue);
  transition: width 1.4s linear;
}
.p-solution--agentic-trust .atd-ttl__label {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-grey-500);
  white-space: nowrap;
}
.p-solution--agentic-trust .atd-audit { display: flex; flex-direction: column; gap: 8px; width: min(100%, 400px); }
.p-solution--agentic-trust .atd-mandrow {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 420px);
  padding: 12px 14px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  background: var(--color-white);
}
.p-solution--agentic-trust .atd-mandrow__name {
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .atd-status {
  flex: none;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: var(--track-wide);
  background: color-mix(in oklab, var(--color-green-500) 13%, transparent);
  color: var(--color-green-600);
}
.p-solution--agentic-trust .atd-status.is-revoked {
  background: color-mix(in oklab, var(--color-red-400) 15%, transparent);
  color: var(--color-red-500);
}
.p-solution--agentic-trust .atd-revoke {
  flex: none;
  margin-left: auto;
  padding: 6px 16px;
  border: 1.5px solid var(--color-red-500);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-red-500);
  font-family: inherit;
  font-size: var(--fs-xs);
  font-weight: 700;
  cursor: pointer;
}
.p-solution--agentic-trust .atd-caption {
  max-width: 400px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  text-align: center;
  color: var(--color-grey-on-white);
}

/* below the desktop breakpoint the behavior never boots: the static
   fallback (the consent moment) IS the mobile experience */
@media (max-width: 767px) {
  .p-solution--agentic-trust .at-demo { min-height: 0; }
}

/* ============================================================
   THE CONSENT CARD — the real "Approve AI Agent Access" surface
   (dashboard Tx Approve flow): permission scopes with usage + budget
   limits, token TTL, Deny/Approve, "Verified by Incode". The full-bleed
   sol-trail section that carried it is retired (Arturo 2026-08-03 —
   merged into the sol-cases deck below); the .at-consent--mini variant
   is reused by the demo section's static fallback, the JS-built consent
   scene (behaviors/agentic-trust-demo.js), and the deck's owner-approval
   card media.
   ============================================================ */
.p-solution--agentic-trust .at-consent {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 420px);
  margin: 48px auto 0;
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.p-solution--agentic-trust .at-consent__logo {
  align-self: center;
  width: auto;
  height: 18px;
}
.p-solution--agentic-trust .at-consent__heading {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: var(--track-tight);
  text-align: center;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-consent__sub {
  margin-top: -4px;
  font-size: var(--fs-xs);
  line-height: 1.5;
  text-align: center;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-consent__perm {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
}
.p-solution--agentic-trust .at-consent__perm--off { background: var(--color-grey-50); }
.p-solution--agentic-trust .at-consent__check {
  flex: none;
  display: grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 4px;
  background: var(--color-blue);
  color: var(--color-white);
}
.p-solution--agentic-trust .at-consent__check .ds-icon { width: 10px; height: 10px; }
.p-solution--agentic-trust .at-consent__check--off {
  background: var(--color-white);
  border: 1.5px solid var(--color-grey-200);
}
.p-solution--agentic-trust .at-consent__perm-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.p-solution--agentic-trust .at-consent__perm-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.p-solution--agentic-trust .at-consent__perm-head b {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-consent__perm--off .at-consent__perm-head b { color: var(--color-grey-400); }
.p-solution--agentic-trust .at-consent__perm-head i {
  padding: 2px 8px;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: var(--track-wider);
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-consent__perm-desc {
  font-size: 11.5px;
  line-height: 1.45;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-consent__perm--off .at-consent__perm-desc { color: var(--color-grey-300); }
.p-solution--agentic-trust .at-consent__budget {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  font-size: 11.5px;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-consent__budget-field {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  border: 1.5px solid var(--color-blue);
  border-radius: var(--radius-md);
  font-size: var(--fs-xs);
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-consent__budget-field b {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-consent__budget i {
  font-size: 10.5px;
  font-style: normal;
  color: var(--color-grey-300);
}
.p-solution--agentic-trust .at-consent__ttl {
  font-size: 11px;
  text-align: center;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-consent__ttl b { color: var(--color-grey-600); }
.p-solution--agentic-trust .at-consent__actions { display: flex; gap: 10px; }
.p-solution--agentic-trust .at-consent__deny,
.p-solution--agentic-trust .at-consent__approve {
  flex: 1;
  padding: 10px 0;
  border-radius: 9px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}
.p-solution--agentic-trust .at-consent__deny {
  border: 1px solid var(--color-grey-200);
  background: var(--color-white);
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-consent__approve {
  border: 0;
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: 700;
  box-shadow: none;
}
/* the demo renders the card's buttons as live controls */
.p-solution--agentic-trust button.at-consent__deny,
.p-solution--agentic-trust button.at-consent__approve { cursor: pointer; }
.p-solution--agentic-trust button.at-consent__deny:disabled { opacity: 0.5; cursor: default; }
.p-solution--agentic-trust .at-consent__verified {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-consent__verified span {
  display: grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--color-green-500);
  color: var(--color-white);
}
.p-solution--agentic-trust .at-consent__verified span .ds-icon { width: 8px; height: 8px; }

/* compact variant — demo fallback + JS consent scene */
.p-solution--agentic-trust .at-consent--mini {
  width: min(100%, 340px);
  margin: 0;
  padding: 18px 20px;
  gap: 10px;
  box-shadow: none;
}
.p-solution--agentic-trust .at-consent--mini .at-consent__heading { font-size: var(--fs-body); }

/* ============================================================
   4b · IN THE PRODUCT — the three KYA moments as an expanding-card
   deck. The pattern is the home's "What sets Incode Platform apart"
   row (x3.css .x3-uc*, ported here because x3.css is scoped .p-x3):
   desktop with a pointer = flex accordion, JS-held open state (first
   card at rest, last-hovered stays open); touch/small screens = a
   stack of closed sheets, tap to open. Behavior in
   behaviors/agentic-trust-cases.js. Card media are real product
   surfaces in miniature on a dot-grid canvas (the platform-scene
   texture): the consent card (shared .at-consent--mini), the
   personhood challenge (.at-vouch), the session feed (.at-feed).
   ============================================================ */
.p-solution--agentic-trust .sol-cases {
  background: var(--color-grey-100);
  color: var(--color-foreground);
  border-top: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-ucs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 48px;
}
@media (min-width: 640px) { .p-solution--agentic-trust .at-ucs { grid-template-columns: repeat(2, 1fr); } }
.p-solution--agentic-trust .at-uc {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--color-white);
  padding: 28px 24px 24px;
}
.p-solution--agentic-trust .at-uc__title {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: var(--track-tighter);
  font-size: var(--fs-3xl);
  line-height: 1.15;
  color: var(--color-black);
  max-width: 9em;
}
.p-solution--agentic-trust .at-uc__reveal { margin-top: 12px; }
.p-solution--agentic-trust .at-uc__line {
  font-size: var(--fs-sm);
  line-height: var(--leading-body);
  color: var(--color-grey-on-white);
  max-width: 46ch;
}
/* media slot: a framed dot-grid product canvas (platform-scene texture)
   with the mini surface centered inside. No padding on the slot itself —
   the mobile closed state collapses it to max-height 0, and padding
   would leave a visible sliver; the minis carry their own margin. */
.p-solution--agentic-trust .at-uc__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  background: var(--color-grey-50);
  background-image: radial-gradient(
    color-mix(in oklab, var(--color-grey-200) 30%, transparent) 1.1px,
    transparent 1.1px
  );
  background-size: 16px 16px;
  background-position: 8px 8px;
  aspect-ratio: 16 / 10;
}
/* the consent mini rides a touch tighter inside the deck's media slot
   than in the demo fallback, so it clears the slot at the accordion's
   minimum height */
.p-solution--agentic-trust .at-uc__media .at-consent--mini {
  margin: 16px;
  padding: 14px 16px;
  gap: 8px;
}
/* Phones/tablets (and any no-hover input): a stack of CLOSED sheets —
   each overlaps the one before it, only the title showing. Tapping a
   sheet opens it; tapping the open sheet closes the deck. */
@media (max-width: 1023px), (hover: none) {
  .p-solution--agentic-trust .at-ucs {
    display: block;
    margin-top: 40px;
  }
  .p-solution--agentic-trust .at-uc {
    cursor: pointer;
    border: 1px solid var(--color-border-light);
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
  }
  .p-solution--agentic-trust .at-uc + .at-uc { margin-top: -12px; }
  .p-solution--agentic-trust .at-uc::after {
    content: "+";
    position: absolute;
    top: 24px;
    right: 22px;
    font-size: var(--fs-2xl);
    line-height: 1;
    color: var(--color-grey-300);
    transition: transform 0.3s var(--ease-out-expo), color 0.2s ease;
  }
  .p-solution--agentic-trust .at-uc.is-open::after {
    transform: rotate(45deg);
    color: var(--color-blue);
  }
  .p-solution--agentic-trust .at-uc__reveal {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.55s var(--ease-out-expo), opacity 0.3s ease, margin-top 0.55s var(--ease-out-expo);
  }
  .p-solution--agentic-trust .at-uc.is-open .at-uc__reveal {
    max-height: 160px;
    margin-top: 12px;
    opacity: 1;
  }
  .p-solution--agentic-trust .at-uc__media {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    border-width: 0;
    aspect-ratio: auto;
    transition: max-height 0.55s var(--ease-out-expo), opacity 0.35s ease 0.1s, margin-top 0.55s var(--ease-out-expo);
  }
  .p-solution--agentic-trust .at-uc.is-open .at-uc__media {
    max-height: 320px;
    margin-top: 20px;
    opacity: 1;
    border-width: 1px;
  }
}
/* Desktop with a real pointer: flex accordion, JS-held open state (see
   x3.css for the hover-jitter rationale). Taller than the home's row —
   three cards instead of five, and the minis need the vertical room. */
@media (min-width: 1024px) and (hover: hover) {
  .p-solution--agentic-trust .at-ucs {
    display: flex;
    gap: 16px;
  }
  .p-solution--agentic-trust .at-uc {
    flex: 1 1 0;
    height: clamp(460px, 58vh, 560px);
    padding: 24px 22px 22px;
    transition: flex-grow 0.7s var(--ease-out-expo);
  }
  .p-solution--agentic-trust .at-uc.is-open { flex-grow: 2.4; }
  .p-solution--agentic-trust .at-uc::after {
    content: "+";
    position: absolute;
    bottom: 22px;
    right: 22px;
    z-index: 1;
    font-size: 24px;
    line-height: 1;
    color: var(--color-grey-300);
    transition: opacity 0.3s ease;
  }
  .p-solution--agentic-trust .at-uc.is-open::after { opacity: 0; }
  /* constant wrap width + a reserved two-line slot: the title never
     re-wraps while the card animates */
  .p-solution--agentic-trust .at-uc__title {
    font-size: 24px;
    width: 155px;
    max-width: none;
    min-height: 2.3em;
  }
  .p-solution--agentic-trust .at-uc__reveal {
    width: 380px;
    max-width: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .p-solution--agentic-trust .at-uc__media {
    width: 100%;
    margin: 20px 0 0;
    flex: 1 1 0;
    min-height: 0;
    aspect-ratio: auto;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .p-solution--agentic-trust .at-uc.is-open .at-uc__reveal,
  .p-solution--agentic-trust .at-uc.is-open .at-uc__media {
    opacity: 1;
    transition: opacity 0.5s ease 0.25s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-solution--agentic-trust .at-uc,
  .p-solution--agentic-trust .at-uc::after,
  .p-solution--agentic-trust .at-uc__reveal,
  .p-solution--agentic-trust .at-uc__media {
    transition: none;
  }
}

/* ---------- card 02 media · the personhood challenge ----------
   Chase's "Verify you're human" widget: face glyph in corner brackets,
   the unusual-activity line, one primary action, Personhood credit. */
.p-solution--agentic-trust .at-vouch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: min(100%, 300px);
  margin: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: none;
  text-align: center;
}
.p-solution--agentic-trust .at-vouch__glyph {
  width: 52px;
  height: 52px;
  color: var(--color-blue);
}
.p-solution--agentic-trust .at-vouch__heading {
  font-family: var(--font-display);
  font-size: var(--fs-body);
  font-weight: 700;
  letter-spacing: var(--track-tight);
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-vouch__sub {
  font-size: var(--fs-xs);
  line-height: 1.5;
  color: var(--color-grey-on-white);
}
.p-solution--agentic-trust .at-vouch__btn {
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 9px 12px;
  border-radius: 10px;
  background: var(--color-blue);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: 600;
  text-align: center;
}
.p-solution--agentic-trust .at-vouch__foot {
  font-size: 11px;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-vouch__foot b {
  font-weight: 600;
  color: var(--color-grey-500);
}

/* ---------- card 03 media · the live session feed ----------
   The sessions view in miniature: total, verdict split (bots /
   suspicious / humans), and per-session rows with verdict pills and
   risk-score meters — the module's real classification vocabulary. */
.p-solution--agentic-trust .at-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 320px);
  margin: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border-light);
  box-shadow: none;
}
.p-solution--agentic-trust .at-feed__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.p-solution--agentic-trust .at-feed__title {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-feed__total {
  font-size: 11px;
  color: var(--color-grey-400);
}
.p-solution--agentic-trust .at-feed__total b {
  font-weight: 600;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-feed__split {
  display: flex;
  gap: 2px;
  height: 6px;
  border-radius: 999px;
  overflow: hidden;
}
.p-solution--agentic-trust .at-feed__seg {
  display: block;
  height: 100%;
  font-style: normal;
}
.p-solution--agentic-trust .at-feed__seg--bot { background: var(--color-red-500); }
.p-solution--agentic-trust .at-feed__seg--sus { background: var(--color-amber-600); }
.p-solution--agentic-trust .at-feed__seg--ok { background: var(--color-green-500); }
.p-solution--agentic-trust .at-feed__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  font-size: 11px;
  color: var(--color-grey-500);
}
.p-solution--agentic-trust .at-feed__legend span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.p-solution--agentic-trust .at-feed__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  font-style: normal;
}
.p-solution--agentic-trust .at-feed__dot--bot { background: var(--color-red-500); }
.p-solution--agentic-trust .at-feed__dot--sus { background: var(--color-amber-600); }
.p-solution--agentic-trust .at-feed__dot--ok { background: var(--color-green-500); }
.p-solution--agentic-trust .at-feed__rows {
  display: flex;
  flex-direction: column;
  margin-top: 2px;
}
.p-solution--agentic-trust .at-feed__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--color-border-light);
}
.p-solution--agentic-trust .at-feed__row > b {
  flex: 1;
  min-width: 0;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-grey-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p-solution--agentic-trust .at-feed__pill {
  flex: none;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.4;
}
.p-solution--agentic-trust .at-feed__pill--bot {
  background: color-mix(in oklab, var(--color-red-500) 12%, var(--color-white));
  color: var(--color-red-600);
}
.p-solution--agentic-trust .at-feed__pill--sus {
  background: var(--color-amber-100);
  color: var(--color-amber-600);
}
.p-solution--agentic-trust .at-feed__pill--ok {
  background: color-mix(in oklab, var(--color-green-500) 12%, var(--color-white));
  color: var(--color-green-600);
}
.p-solution--agentic-trust .at-feed__score {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.p-solution--agentic-trust .at-feed__score b {
  min-width: 3ch;
  font-size: var(--fs-xs);
  font-weight: 600;
  text-align: right;
  color: var(--color-grey-600);
}
.p-solution--agentic-trust .at-feed__meter {
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: var(--color-grey-100);
  overflow: hidden;
  font-style: normal;
}
.p-solution--agentic-trust .at-feed__meter i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--color-grey-400);
}
/* meter fill picks up its row's verdict color (pill precedes score) */
.p-solution--agentic-trust .at-feed__pill--bot ~ .at-feed__score .at-feed__meter i { background: var(--color-red-500); }
.p-solution--agentic-trust .at-feed__pill--sus ~ .at-feed__score .at-feed__meter i { background: var(--color-amber-600); }
.p-solution--agentic-trust .at-feed__pill--ok ~ .at-feed__score .at-feed__meter i { background: var(--color-green-500); }
