/* =========================================================================
   AGENTIC ENGINE — live AI Recovery Agent section.
   Dark section, self-contained. All variables and rules are scoped to
   .agent-section so nothing leaks into the light theme of the rest of the site.
   Motion (motion.dev) drives the loop; see assets/js/agent-section.js.
   ========================================================================= */
.agent-section{
  --a-navy:#0A1830; --a-ink:#EAF2FC; --a-ink2:#C6D2E4; --a-muted:#8DA0BC;
  --a-blue:#2493EF; --a-cyan:#00CEFF; --a-green:#25D695; --a-orange:#F6891F;
  --a-line:rgba(148,180,220,.16);
  --a-fm:ui-monospace,'JetBrains Mono',Menlo,Consolas,monospace;
  position:relative;overflow:hidden;padding:96px 0 98px;
  background:
    radial-gradient(900px 520px at 82% -8%,rgba(36,147,239,.14),transparent 62%),
    radial-gradient(700px 460px at 4% 112%,rgba(0,206,255,.06),transparent 60%),
    linear-gradient(180deg,#070f20,#0A1830 52%,#060b18);
}
.agent-section::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:
    linear-gradient(rgba(120,170,230,.05) 1px,transparent 1px),
    linear-gradient(90deg,rgba(120,170,230,.05) 1px,transparent 1px);
  background-size:46px 46px;opacity:.32;
  -webkit-mask-image:radial-gradient(80% 70% at 50% 40%,#000,transparent);
  mask-image:radial-gradient(80% 70% at 50% 40%,#000,transparent);
}
.agent-section .wrap{position:relative;z-index:1}

/* heading */
.agent-section .a-eyebrow{
  display:inline-flex;align-items:center;gap:9px;font-family:var(--fh);font-size:12px;font-weight:700;
  letter-spacing:.2em;text-transform:uppercase;color:var(--a-cyan);
  border:1px solid rgba(0,206,255,.35);border-radius:100px;padding:7px 15px;
}
.agent-section .a-eyebrow .live-dot{width:8px;height:8px;border-radius:50%;background:#FF4D5E;box-shadow:0 0 10px #FF4D5E;animation:aBlink 1.4s infinite}
@keyframes aBlink{0%,100%{opacity:1}50%{opacity:.3}}
.agent-section .a-title{font-family:var(--fh);font-weight:700;font-size:clamp(30px,4.2vw,52px);line-height:1.06;letter-spacing:-.02em;margin:20px 0 0;color:var(--a-ink)}
.agent-section .a-title .accent{color:var(--a-orange)}
.agent-section .a-sub{color:var(--a-ink2);font-size:17px;margin-top:14px;max-width:52ch}
.agent-section .a-sub b{color:var(--a-cyan);font-weight:600}

/* stage */
.agent-section .stage{display:grid;grid-template-columns:320px 1fr;gap:30px;margin-top:46px;align-items:stretch}
@media(max-width:900px){.agent-section .stage{grid-template-columns:1fr}}
.agent-section .bot-wrap{position:relative;border:1px solid var(--a-line);border-radius:20px;background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  display:flex;flex-direction:column;align-items:center;justify-content:center;padding:26px 20px 22px;overflow:hidden;min-height:300px}
.agent-section .bot-wrap::after{content:"";position:absolute;inset:0;background:radial-gradient(60% 45% at 50% 34%,rgba(0,206,255,.16),transparent 62%);pointer-events:none}
.agent-section .robot{width:186px;height:auto;position:relative;z-index:1}
.agent-section .robot .eye{fill:var(--a-cyan);filter:drop-shadow(0 0 6px var(--a-cyan))}
.agent-section .robot .ring{transform-origin:center;opacity:.5}
.agent-section .bot-wrap.think .robot .eye{animation:aEye .5s ease-in-out infinite}
.agent-section .bot-wrap.think .robot .r1{animation:aSpin 3s linear infinite}
.agent-section .bot-wrap.think .robot .r2{animation:aSpin 4.5s linear infinite reverse}
@keyframes aEye{0%,100%{opacity:1}50%{opacity:.45}}
@keyframes aSpin{to{transform:rotate(360deg)}}
.agent-section .bot-status{margin-top:18px;font-family:var(--a-fm);font-size:12.5px;letter-spacing:.06em;color:var(--a-cyan);min-height:18px;display:inline-flex;align-items:center;gap:8px}
.agent-section .bot-status .st-dot{width:7px;height:7px;border-radius:50%;background:var(--a-cyan);box-shadow:0 0 8px var(--a-cyan);animation:aEye 1s infinite}
.agent-section .bot-sub{margin-top:6px;font-family:var(--fb);font-size:11px;color:var(--a-muted);letter-spacing:.02em}

/* ---- Modern agent panel (replaces the old robot) ------------------------- */
.agent-section .agent-panel{display:flex;flex-direction:column;gap:16px;position:relative;overflow:hidden;
  border:1px solid var(--a-line);border-radius:20px;padding:22px 20px;
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.015))}
.agent-section .ap-head{display:flex;align-items:center;gap:13px}
.agent-section .agent-av{width:78px;height:78px;flex:none;position:relative;display:grid;place-items:center;
  background:radial-gradient(circle at 50% 44%,rgba(0,206,255,.16),transparent 66%)}
.agent-section .av-bot{width:78px;height:78px;position:relative;z-index:1;animation:botFloat 3.6s ease-in-out infinite}
@keyframes botFloat{0%,100%{transform:translateY(0)}50%{transform:translateY(-4px)}}
.agent-section .av-bot .b-eye{filter:drop-shadow(0 0 3px rgba(0,206,255,.9))}
.agent-section .av-bot .b-ant{filter:drop-shadow(0 0 4px rgba(0,206,255,.85))}
.agent-section .av-bot .b-glow{animation:aEye 2.6s ease-in-out infinite}
.agent-section .agent-panel.think .av-bot{animation-duration:2.3s}
.agent-section .agent-panel.think .av-bot .b-eye{animation:aEye .7s ease-in-out infinite}
@media(prefers-reduced-motion:reduce){.agent-section .av-bot,.agent-section .av-bot .b-eye,.agent-section .av-bot .b-glow{animation:none}}
.agent-section .ap-id b{display:block;font-family:var(--fh);font-size:14.5px;font-weight:700;color:var(--a-ink);letter-spacing:-.01em}
.agent-section .ap-id span{display:block;font-family:var(--a-fm);font-size:10.5px;color:var(--a-cyan);margin-top:3px;letter-spacing:.05em}
.agent-section .agent-panel .bot-status{margin-top:0}
.agent-section .ap-divider{height:1px;background:var(--a-line)}
.agent-section .ap-case{display:flex;flex-direction:column;gap:10px}
.agent-section .ap-case-t{font-family:var(--a-fm);font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--a-muted)}
.agent-section .ap-row{display:flex;align-items:center;justify-content:space-between;gap:12px;font-family:var(--fb);font-size:12.5px;color:var(--a-muted)}
.agent-section .ap-row b{font-family:var(--fh);font-weight:600;font-size:13px;color:var(--a-ink2)}
.agent-section .ap-row b.warn{color:var(--a-orange)}
.agent-section .ap-risk{display:flex;flex-direction:column;gap:9px}
.agent-section .ap-risk-top{display:flex;align-items:baseline;justify-content:space-between;font-family:var(--a-fm);font-size:10.5px;letter-spacing:.06em;text-transform:uppercase;color:var(--a-muted)}
.agent-section .ap-risk-top b{font-family:var(--fh);font-size:16px;font-weight:700;color:var(--a-orange);letter-spacing:0}
.agent-section .ap-meter{height:7px;border-radius:5px;background:rgba(255,255,255,.06);overflow:hidden}
.agent-section .ap-meter i{display:block;height:100%;width:0;border-radius:5px;background:linear-gradient(90deg,var(--a-green),var(--a-orange))}
.agent-section .ap-src{display:flex;align-items:center;gap:8px;margin-top:auto;padding-top:4px;font-family:var(--a-fm);font-size:10.5px;letter-spacing:.05em;color:var(--a-muted)}
.agent-section .ap-src + .ap-mods{margin-top:0}
.agent-section .ap-mods{display:flex;flex-wrap:wrap;gap:7px;margin-top:auto;padding-top:4px}
.agent-section .zx-chip{display:inline-flex;align-items:center;background:#fff;border-radius:6px;padding:3px 7px}
.agent-section .zx-chip img{height:13px;width:auto;display:block}
.agent-section .ap-mod{font-family:var(--a-fm);font-size:10.5px;color:var(--a-muted);border:1px solid var(--a-line);border-radius:100px;padding:5px 11px;transition:.35s}
.agent-section .ap-mod.on{color:var(--a-cyan);border-color:rgba(0,206,255,.4);background:rgba(0,206,255,.08);box-shadow:0 0 12px rgba(0,206,255,.14)}

/* ---- DatazenX to agent handoff tags inside the console ------------------ */
.agent-section .src-tag{display:flex;align-items:center;gap:10px;opacity:0;transform:translateY(8px);transition:opacity .4s ease-out,transform .4s ease-out}
.agent-section .src-tag.show{opacity:1;transform:none}
.agent-section .src-tag .src-txt{font-family:var(--a-fm);font-size:11px;letter-spacing:.06em;text-transform:uppercase;color:var(--a-muted);white-space:nowrap}
.agent-section .src-tag .src-txt b{color:var(--a-cyan);font-weight:600}
.agent-section .src-tag .tag-line{flex:1;height:1px;background:var(--a-line)}
.agent-section .src-tag.hand{margin-top:3px}

/* ---- Reasoning lines: typewriter + status dot --------------------------- */
.agent-section .rline{display:flex;gap:12px;opacity:0;transform:translateY(8px);transition:opacity .4s ease-out,transform .4s ease-out}
.agent-section .rline.show{opacity:1;transform:none}
.agent-section .rdot{width:16px;height:16px;border-radius:50%;flex:none;margin-top:2px;box-sizing:border-box;position:relative;
  border:2px solid rgba(148,180,220,.3);transition:background .3s,border-color .3s}
.agent-section .rline.active .rdot{border-color:rgba(0,206,255,.3);border-top-color:var(--a-cyan);animation:aSpin .8s linear infinite}
.agent-section .rline.done .rdot{border-color:transparent;background:var(--a-green);animation:none}
.agent-section .rline.done .rdot::after{content:"\2713";position:absolute;inset:0;display:grid;place-items:center;font-size:10px;color:#052617}
.agent-section .rc{flex:1;min-width:0}
.agent-section .rhd{display:flex;align-items:center;gap:10px}
.agent-section .rlabel{font-family:var(--fh);font-size:13.5px;font-weight:600;color:var(--a-ink)}
.agent-section .rval{margin-left:auto;font-family:var(--a-fm);font-size:11px;color:var(--a-cyan);border:1px solid rgba(0,206,255,.3);
  border-radius:6px;padding:2px 9px;white-space:nowrap;opacity:0;transform:scale(.9);transition:opacity .3s,transform .3s}
.agent-section .rval.on{opacity:1;transform:none}
.agent-section .rdetail{font-family:var(--a-fm);font-size:12px;color:var(--a-ink2);line-height:1.5;margin-top:4px;min-height:1.5em}
.agent-section .rline.active .rdetail::after{content:"\258D";margin-left:1px;color:var(--a-cyan);animation:aBlink 1s steps(1) infinite}

/* console */
.agent-section .console{position:relative;border:1px solid var(--a-line);border-radius:20px;background:linear-gradient(180deg,rgba(6,14,28,.86),rgba(8,18,36,.72));
  padding:0;overflow:hidden;min-height:340px;display:flex;flex-direction:column}
.agent-section .console-bar{display:flex;align-items:center;gap:8px;padding:13px 18px;border-bottom:1px solid var(--a-line);background:rgba(255,255,255,.02)}
.agent-section .console-bar .dot{width:10px;height:10px;border-radius:50%}
.agent-section .console-bar .r{background:#ff5f57}.agent-section .console-bar .y{background:#febc2e}.agent-section .console-bar .g{background:#28c840}
.agent-section .console-bar .lbl{margin-left:8px;font-family:var(--a-fm);font-size:12px;color:var(--a-muted)}
.agent-section .console-bar .case{margin-left:auto;font-family:var(--a-fm);font-size:11.5px;color:var(--a-ink2)}
.agent-section .stream{padding:18px 20px;display:flex;flex-direction:column;gap:11px;flex:1}
.agent-section .line{opacity:0;transform:translateY(8px);font-family:var(--a-fm);font-size:13.5px;color:var(--a-ink2);display:flex;align-items:center;gap:10px}
.agent-section .line .tick{width:16px;height:16px;border-radius:50%;background:var(--a-green);color:#052617;display:inline-grid;place-items:center;font-size:10px;flex:none}
.agent-section .line .spin{width:14px;height:14px;border:2px solid rgba(0,206,255,.3);border-top-color:var(--a-cyan);border-radius:50%;animation:aSpin .8s linear infinite;flex:none}
.agent-section .line .bar{flex:1;height:7px;border-radius:4px;background:rgba(255,255,255,.07);overflow:hidden;max-width:180px}
.agent-section .line .bar>i{display:block;height:100%;width:0;background:linear-gradient(90deg,var(--a-blue),var(--a-cyan));border-radius:4px}
.agent-section .line b{color:var(--a-ink);font-weight:600}
.agent-section .line .val{margin-left:auto;color:var(--a-cyan);font-weight:600}

/* recommendation */
.agent-section .reco{margin-top:4px;border:1px solid rgba(0,206,255,.35);border-radius:14px;padding:15px 17px;
  background:linear-gradient(135deg,rgba(0,206,255,.12),rgba(31,95,230,.06));opacity:0;transform:translateY(10px)}
.agent-section .rh{display:flex;align-items:center;gap:9px;font-family:var(--fh);font-weight:700;color:#B9F4D8;font-size:13px}
.agent-section .rh .tick{width:18px;height:18px;border-radius:50%;background:var(--a-green);color:#052617;display:inline-grid;place-items:center;font-size:11px}
.agent-section .rbody{display:flex;align-items:center;flex-wrap:wrap;gap:10px 14px;margin-top:11px}
.agent-section .pick{font-family:var(--fh);font-weight:700;font-size:20px;color:#fff;display:flex;align-items:center;flex-wrap:wrap;gap:9px;min-width:0}
.agent-section .pick .ch{color:var(--a-green)}
.agent-section .strike{font-family:var(--fb);font-size:13px;color:var(--a-muted);text-decoration:line-through}
.agent-section .conf{margin-left:auto;text-align:right}
@media(max-width:420px){
  .agent-section .rbody{flex-direction:column;align-items:flex-start;gap:10px}
  .agent-section .conf{margin-left:0;text-align:left}
}
.agent-section .conf .n{font-family:var(--fh);font-weight:700;font-size:22px;color:var(--a-cyan)}
.agent-section .conf .k{font-size:10px;letter-spacing:.14em;text-transform:uppercase;color:var(--a-muted)}

/* WhatsApp */
.agent-section .wa-ic{display:inline-flex;align-items:center;justify-content:center;width:26px;height:26px;border-radius:50%;background:#25D366;color:#fff;flex:none;vertical-align:middle}
.agent-section .wa-ic svg{width:15px;height:15px}
.agent-section .wa-chat{margin-top:14px;border-radius:12px;overflow:hidden;background:#0b141a;border:1px solid rgba(255,255,255,.08);max-width:360px;opacity:0;transform:translateY(10px)}
.agent-section .wa-top{display:flex;align-items:center;gap:10px;background:#1f2c33;padding:9px 12px}
.agent-section .wa-top .wa-ic{width:30px;height:30px}.agent-section .wa-top .wa-ic svg{width:17px;height:17px}
.agent-section .wa-top b{font-family:var(--fb);font-size:13px;font-weight:600;color:#fff;display:block;line-height:1.1}
.agent-section .wa-top i{font-style:normal;font-size:10.5px;color:#8fa6b0;display:block}
.agent-section .wa-top .wa-status{margin-left:auto;font-size:10px;font-weight:600;color:#25D366}
.agent-section .wa-body{padding:12px;display:flex;flex-direction:column;gap:8px;background:#0b141a}
.agent-section .wa-msg{max-width:84%;font-family:var(--fb);font-size:12.5px;line-height:1.42;padding:8px 10px 5px;border-radius:9px;color:#e9edef}
.agent-section .wa-msg b{color:#fff}
.agent-section .wa-msg.out{align-self:flex-end;background:#005c4b;border-top-right-radius:2px}
.agent-section .wa-msg.in{align-self:flex-start;background:#202c33;border-top-left-radius:2px}
.agent-section .wa-msg .wa-time{display:block;text-align:right;font-size:9.5px;color:rgba(233,237,239,.55);margin-top:3px}
.agent-section .wa-msg.out .wa-time{color:#8fd0c0}

/* channel routing — same agent, a different play per borrower */
.agent-section .chan-intro{margin:56px 0 26px;max-width:62ch}
.agent-section .chan-h{font-family:var(--fh);font-size:clamp(21px,2.4vw,28px);font-weight:700;letter-spacing:-.01em;color:var(--a-ink);line-height:1.14}
.agent-section .chan-p{font-family:var(--fb);font-size:15px;line-height:1.6;color:var(--a-ink2);margin-top:10px}

/* routing diagram: one agent fanning out to three channels, animated pulse */
.agent-section .chan-flow{display:flex;align-items:center;gap:22px;margin-bottom:30px;padding:18px 20px;
  border:1px solid var(--a-line);border-radius:14px;background:rgba(255,255,255,.02)}
@media(max-width:640px){.agent-section .chan-flow{flex-direction:column;align-items:stretch;gap:14px}}
.agent-section .cf-agent{flex:none;display:inline-flex;align-items:center;gap:9px;font-family:var(--fh);font-weight:700;font-size:13.5px;
  color:var(--a-ink);border:1px solid rgba(0,206,255,.4);border-radius:100px;padding:9px 16px;background:rgba(0,206,255,.06)}
.agent-section .cf-agent-dot{width:7px;height:7px;border-radius:50%;background:var(--a-cyan);box-shadow:0 0 8px var(--a-cyan);animation:aBlink 1.6s infinite}
.agent-section .cf-rows{flex:1;display:flex;flex-direction:column;gap:9px;min-width:0}
.agent-section .cf-row{--cc:#00CEFF;display:flex;align-items:center;gap:0}
.agent-section .cf-row.wa{--cc:#25D695}.agent-section .cf-row.em{--cc:#2493EF}.agent-section .cf-row.ca{--cc:#F6891F}
.agent-section .cf-line{position:relative;flex:1;height:2px;min-width:40px;
  background:repeating-linear-gradient(90deg,rgba(148,180,220,.3) 0 6px,transparent 6px 12px);border-radius:2px}
.agent-section .cf-pulse{position:absolute;top:50%;left:0;width:6px;height:6px;margin-top:-3px;border-radius:50%;
  background:var(--cc);box-shadow:0 0 10px var(--cc);animation:cfTravel 2.6s cubic-bezier(.4,0,.2,1) infinite}
.agent-section .cf-row.em .cf-pulse{animation-delay:.5s}
.agent-section .cf-row.ca .cf-pulse{animation-delay:1s}
@keyframes cfTravel{0%{left:0;opacity:0}8%{opacity:1}92%{opacity:1}100%{left:100%;opacity:0}}
.agent-section .cf-t{flex:none;display:inline-flex;align-items:center;gap:7px;margin-left:14px;font-family:var(--fh);font-weight:600;font-size:12.5px;
  color:var(--cc);border:1px solid var(--cc);border-radius:8px;padding:6px 11px;white-space:nowrap}
.agent-section .cf-t svg{width:13px;height:13px;fill:var(--cc)}
@media(prefers-reduced-motion:reduce){.agent-section .cf-pulse,.agent-section .cf-agent-dot{animation:none;opacity:1}}

.agent-section .chan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
@media(max-width:860px){.agent-section .chan-grid{grid-template-columns:1fr}}
.agent-section .chan-card{--cc:#00CEFF;position:relative;overflow:hidden;display:flex;flex-direction:column;gap:12px;
  border:1px solid var(--a-line);border-top:3px solid var(--cc);border-radius:14px;background:rgba(255,255,255,.022);
  padding:18px 18px 16px;transition:transform .25s cubic-bezier(.22,.8,.24,1),border-color .25s;outline:none}
.agent-section .chan-card.wa{--cc:#25D695}
.agent-section .chan-card.em{--cc:#2493EF}
.agent-section .chan-card.ca{--cc:#F6891F}
.agent-section .chan-card:hover,.agent-section .chan-card:focus-visible{transform:translateY(-4px)}
.agent-section .chan-card::before{content:"";position:absolute;inset:0;z-index:0;pointer-events:none;opacity:0;transition:opacity .35s;
  background:radial-gradient(260px circle at var(--mx,50%) var(--my,50%),rgba(0,206,255,.12),transparent 46%)}
.agent-section .chan-card.spot::before{opacity:1}
.agent-section .chan-card>*{position:relative;z-index:1}
.agent-section .cc-top{display:flex;align-items:center;justify-content:space-between}
.agent-section .cc-badge{display:inline-flex;align-items:center;gap:8px;font-family:var(--fh);font-size:12px;font-weight:700;
  color:var(--cc);border:1px solid var(--cc);background:rgba(255,255,255,.04);border-radius:8px;padding:6px 11px}
.agent-section .cc-badge svg{width:15px;height:15px;fill:var(--cc)}

/* animated confidence ring, fills in once the card enters view */
.agent-section .cc-gauge{position:relative;width:44px;height:44px;flex:none}
.agent-section .cc-gauge svg{position:absolute;inset:0;display:block;transform:rotate(-90deg);width:44px;height:44px}
.agent-section .cc-gauge circle{fill:none;stroke-width:4}
.agent-section .cc-gauge .track{stroke:rgba(148,180,220,.16)}
.agent-section .cc-gauge .fill{stroke:var(--cc);stroke-linecap:round;stroke-dasharray:106.8;stroke-dashoffset:106.8;transition:stroke-dashoffset 1.1s cubic-bezier(.22,.8,.24,1)}
.agent-section .cc-gauge b{position:absolute;inset:0;display:flex;align-items:center;justify-content:center;font-family:var(--fh);font-size:11.5px;font-weight:700;color:var(--a-ink);line-height:1}
.agent-section .cc-gauge b i{font-style:normal;font-size:8px;margin-left:1px}

.agent-section .cc-person{display:flex;align-items:center;gap:11px}
.agent-section .cc-av{width:38px;height:38px;border-radius:50%;flex:none;display:grid;place-items:center;
  border:1px solid var(--cc);background:rgba(255,255,255,.05);color:var(--cc)}
.agent-section .cc-av svg{width:20px;height:20px;fill:currentColor}
.agent-section .cc-meta b{display:block;font-family:var(--fh);font-size:13.5px;font-weight:600;color:var(--a-ink)}
.agent-section .cc-meta span{display:block;font-family:var(--a-fm);font-size:10.5px;color:var(--a-muted);margin-top:3px}

/* icon-dot signal chips, stagger in once visible */
.agent-section .cc-sig{display:flex;flex-direction:column;gap:6px}
.agent-section .cc-sig-i{display:flex;align-items:center;gap:8px;font-family:var(--fb);font-size:12px;color:var(--a-ink2);
  opacity:0;transform:translateX(-6px);transition:opacity .4s,transform .4s}
.agent-section .cc-sig-i .dot{width:5px;height:5px;border-radius:50%;background:var(--cc);flex:none;box-shadow:0 0 6px var(--cc)}
.agent-section .chan-card.in-view .cc-sig-i{opacity:1;transform:none}
.agent-section .chan-card.in-view .cc-sig-i:nth-child(1){transition-delay:.05s}
.agent-section .chan-card.in-view .cc-sig-i:nth-child(2){transition-delay:.16s}
.agent-section .chan-card.in-view .cc-sig-i:nth-child(3){transition-delay:.27s}

/* expand-on-click reasoning drawer */
.agent-section .cc-more-btn{align-self:flex-start;display:inline-flex;align-items:center;gap:6px;margin-top:2px;
  font-family:var(--fh);font-size:12px;font-weight:600;color:var(--cc);background:none;border:none;padding:2px 0;cursor:pointer}
.agent-section .cc-chev{font-size:9px;transition:transform .3s}
.agent-section .chan-card.open .cc-chev{transform:rotate(180deg)}
.agent-section .cc-more{max-height:0;opacity:0;overflow:hidden;transition:max-height .45s cubic-bezier(.22,.8,.24,1),opacity .3s}
.agent-section .chan-card.open .cc-more{max-height:220px;opacity:1}
.agent-section .cc-more-in{padding-top:10px;border-top:1px solid var(--a-line);margin-top:2px;display:flex;flex-direction:column;gap:9px}
.agent-section .cc-more-in p{font-family:var(--fb);font-size:12.5px;line-height:1.55;color:var(--a-ink2);margin:0}
.agent-section .cc-more-in p b{color:var(--a-ink);font-weight:700}
.agent-section .cc-foot{font-family:var(--a-fm);font-size:10.5px;color:var(--a-muted)}
.agent-section .cc-foot.ref{color:var(--a-ink2)}
.agent-section .cc-foot.ref::before{content:"\2191  ";color:var(--cc);font-weight:700}
.agent-section .chan-cta{align-self:flex-start;display:inline-flex;align-items:center;gap:8px;font-family:var(--fh);font-size:12.5px;font-weight:600;
  color:var(--a-ink);background:rgba(255,255,255,.04);border:1px solid var(--cc);border-radius:9px;padding:9px 15px;cursor:pointer;transition:.2s}
.agent-section .chan-cta span{color:var(--cc);transition:transform .2s}
.agent-section .chan-cta:hover{background:rgba(255,255,255,.08)}
.agent-section .chan-cta:hover span{transform:translateX(3px)}
@media(prefers-reduced-motion:reduce){.agent-section .cc-sig-i,.agent-section .cc-more,.agent-section .cc-gauge .fill{transition:none}}

/* spine */
.agent-section .spine-title{margin:52px 0 16px;font-family:var(--fh);font-size:13px;font-weight:700;letter-spacing:.16em;text-transform:uppercase;color:var(--a-muted);text-align:center}
.agent-section .spine{position:relative;display:flex;align-items:center;justify-content:space-between;gap:6px;padding:6px 4px}
.agent-section .spine::before{content:"";position:absolute;left:3%;right:3%;top:50%;height:2px;background:repeating-linear-gradient(90deg,rgba(148,180,220,.28) 0 7px,transparent 7px 15px)}
.agent-section .snode{position:relative;z-index:1;flex:1;text-align:center}
.agent-section .snode .chip{display:inline-block;font-family:var(--fh);font-size:12px;font-weight:600;color:var(--a-ink2);background:#0C1A32;border:1px solid var(--a-line);border-radius:100px;padding:9px 13px;transition:all .3s;white-space:nowrap}
.agent-section .snode.on .chip{color:#fff;border-color:var(--a-cyan);box-shadow:0 0 18px rgba(0,206,255,.35);background:#0e2647}
.agent-section .snode.done .chip{border-color:rgba(37,214,149,.5);color:#B9F4D8}
@media(max-width:760px){.agent-section .spine{flex-wrap:wrap;justify-content:center;gap:8px}.agent-section .spine::before{display:none}}

/* DatazenX */
.agent-section .zenx{margin-top:58px;border-radius:24px;background:linear-gradient(180deg,#ffffff,#eef4fb);
  padding:32px 34px 30px;box-shadow:0 34px 80px rgba(0,10,30,.45);border:1px solid rgba(255,255,255,.4);position:relative;overflow:hidden}
.agent-section .zenx::after{content:"";position:absolute;top:-40px;right:-30px;width:260px;height:260px;border-radius:50%;background:radial-gradient(circle,rgba(0,179,214,.14),transparent 70%);pointer-events:none}
.agent-section .zenx-head{display:flex;align-items:center;gap:22px;flex-wrap:wrap;position:relative;z-index:1}
.agent-section .zenx-logo{height:46px;width:auto;display:block}
.agent-section .zenx-div{width:1px;height:38px;background:#d6e2f0}
.agent-section .zenx-tag{font-family:var(--fh);font-weight:700;font-size:16px;color:#22335a;line-height:1.15}
.agent-section .zenx-tag span{display:block;font-weight:600;font-size:12.5px;color:#0e8bb0;margin-top:3px}
.agent-section .zenx-lead{color:#4a5a72;font-size:15px;line-height:1.6;margin:18px 0 22px;max-width:78ch;position:relative;z-index:1}
.agent-section .zenx-lead b{color:#22335a;font-weight:700}
.agent-section .zenx-flow{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap;background:#f2f8fd;border:1px solid #e1ebf6;border-radius:16px;padding:16px}
.agent-section .znode{display:flex;align-items:center;gap:8px;background:#fff;border:1px solid #dce6f2;border-radius:11px;padding:10px 14px;font-family:var(--fh);font-size:13px;font-weight:600;color:#33456a;white-space:nowrap}
.agent-section .znode.brand{border-color:#0bb6d6;color:#0b7fa0;box-shadow:0 0 0 2px rgba(11,182,214,.14)}
.agent-section .znode.brand::before{content:"";width:7px;height:7px;border-radius:50%;background:#0bb6d6}
.agent-section .znode.agent{border-color:#F6891F;color:#c8620a}
.agent-section .znode.agent::before{content:"";width:7px;height:7px;border-radius:50%;background:#F6891F}
.agent-section .zarr{color:#9fb2c9;font-size:15px}
.agent-section .gov-pulse{position:absolute;top:-1px;left:0;width:70px;height:calc(100% + 2px);pointer-events:none;background:linear-gradient(90deg,transparent,rgba(11,182,214,.16),transparent);border-radius:16px;opacity:0}
.agent-section .zenx-caps{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:11px;margin-top:20px}
.agent-section .zenx-cap{display:flex;align-items:center;gap:9px;background:#fff;border:1px solid #dce6f2;border-radius:12px;padding:12px 15px;font-family:var(--fh);font-size:13.5px;font-weight:600;color:#22335a}
.agent-section .zenx-cap .ci{width:30px;height:30px;border-radius:9px;display:grid;place-items:center;background:linear-gradient(135deg,#1F5FE6,#00CEFF);color:#fff;flex:none}
.agent-section .zenx-cap .ci svg{width:16px;height:16px}

/* trust */
.agent-section .a-trust{display:flex;flex-wrap:wrap;gap:10px 26px;justify-content:center;margin-top:44px}
.agent-section .a-trust span{display:inline-flex;align-items:center;gap:9px;font-family:var(--fh);font-size:13px;font-weight:600;color:var(--a-ink2)}
.agent-section .a-trust span i{width:6px;height:6px;border-radius:50%;background:var(--a-orange);flex:none;transform:rotate(45deg)}

@media (prefers-reduced-motion:reduce){
  .agent-section .line,.agent-section .reco,.agent-section .wa-chat{opacity:1;transform:none}
  .agent-section .line .bar>i{width:100%}
}
