/* ===================================================
   AGENTS PAGE — agt- scoped CSS
   Route: /agents/
   =================================================== */

/* ── Variables ───────────────────────────────────── */
:root {
  --agt-navy:   #0B1628;
  --agt-blue:   #1B4FD8;
  --agt-blue-l: #3B6FF5;
  --agt-green:  #16A34A;
  --agt-amber:  #D97706;
  --agt-red:    #DC2626;
  --agt-muted:  #64748B;
  --agt-border: rgba(11,22,40,.12);
  --agt-radius: 6px;
}

/* ── Shared typography ───────────────────────────── */
.agt-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--agt-blue);
  margin: 0 0 18px;
}
.agt-eyebrow--light { color: rgba(255,255,255,.6); }

.agt-section-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  color: var(--agt-navy);
  line-height: 1.18;
  margin: 0 0 20px;
}
.agt-section-lead {
  font-size: 18px;
  font-weight: 300;
  color: #334155;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 0 48px;
}

/* ── Caps (capability rows) ──────────────────────── */
.agt-caps { display: flex; flex-direction: column; gap: 10px; margin: 24px 0 32px; }
.agt-cap  { display: flex; align-items: center; gap: 10px; font-size: 15px; color: #1e293b; }
.agt-cap-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--agt-blue); flex-shrink: 0;
}

/* ── Agent CTA link ──────────────────────────────── */
.agt-agent-cta {
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--agt-blue);
  text-decoration: none;
  border-bottom: 1.5px solid var(--agt-blue);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
  margin-top: 8px;
}
.agt-agent-cta:hover { color: var(--agt-blue-l); border-color: var(--agt-blue-l); }

/* ── Human note ──────────────────────────────────── */
.agt-human-note {
  font-size: 13px;
  color: var(--agt-muted);
  border-left: 3px solid var(--agt-border);
  padding-left: 14px;
  margin: 24px 0 20px;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.agt-hero {
  background: var(--agt-navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.agt-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 40%, rgba(27,79,216,.18) 0%, transparent 70%);
  pointer-events: none;
}

.agt-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* text side */
.agt-hero .agt-eyebrow { color: rgba(255,255,255,.5); }
.agt-hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 24px;
}
.agt-hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.72;
  margin: 0 0 36px;
  max-width: 520px;
}
.agt-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.agt-hero-ctas .btn-outline {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
}
.agt-hero-ctas .btn-outline:hover { border-color: #fff; color: #fff; }
.agt-hero-final {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

/* visual side */
.agt-hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  opacity: 0;
  animation: agtHeroReveal .8s .3s ease forwards;
}
@keyframes agtHeroReveal { to { opacity: 1; } }

.agt-hv-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 340px;
  margin-bottom: 0;
}
.agt-hv-node {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
  text-align: center;
  opacity: 0;
}
.agt-hv-n1 { animation: agtNodeIn .4s .6s ease forwards; }
.agt-hv-n2 { animation: agtNodeIn .4s .75s ease forwards; }
.agt-hv-n3 { animation: agtNodeIn .4s .9s ease forwards; }
.agt-hv-n4 { animation: agtNodeIn .4s 1.05s ease forwards; }
@keyframes agtNodeIn { to { opacity: 1; transform: none; } }

.agt-hv-connector {
  width: 2px; height: 24px;
  background: rgba(27,79,216,.5);
  margin: 0 auto;
  opacity: 0;
}
.agt-hv-conn-in  { animation: agtFadeIn .3s 1.2s ease forwards; }
.agt-hv-conn-mid { animation: agtFadeIn .3s 1.6s ease forwards; }
.agt-hv-conn-out { animation: agtFadeIn .3s 1.9s ease forwards; }
@keyframes agtFadeIn { to { opacity: 1; } }

.agt-hv-core {
  background: var(--agt-blue);
  border-radius: 10px;
  padding: 18px 32px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  position: relative;
  opacity: 0;
  animation: agtFadeIn .4s 1.3s ease forwards;
}
.agt-hv-core-label {
  font-size: 13px; font-weight: 700;
  color: #fff; letter-spacing: .05em; text-transform: uppercase;
}
.agt-hv-core-pulse {
  position: absolute; inset: -4px;
  border-radius: 13px;
  border: 1.5px solid rgba(59,111,245,.5);
  animation: agtPulse 2s 1.5s ease-in-out infinite;
}
@keyframes agtPulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%       { opacity: .2; transform: scale(1.04); }
}

.agt-hv-output, .agt-hv-review {
  width: 100%; max-width: 340px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.8);
  text-align: center;
  opacity: 0;
}
.agt-hv-output { animation: agtFadeIn .3s 1.7s ease forwards; }
.agt-hv-review {
  border-color: rgba(22,163,74,.4);
  color: #4ade80;
  animation: agtFadeIn .3s 2.0s ease forwards;
}

.agt-hv-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-top: 20px;
  opacity: 0;
  animation: agtFadeIn .4s 2.2s ease forwards;
}
.agt-hv-tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .05em; text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════
   NOT ANOTHER CHATBOT
═══════════════════════════════════════════════════ */
.agt-chatbot {
  padding: 96px 0;
  background: #fff;
}

.agt-contrast {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-start: start;
  margin: 0 0 56px;
  max-width: 900px;
}
.agt-contrast-divider {
  width: 1px;
  background: var(--agt-border);
  align-self: stretch;
}
.agt-contrast-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--agt-muted);
  margin: 0 0 20px;
}
.agt-contrast-label--enterprise { color: var(--agt-blue); }

.agt-contrast-flow { display: flex; flex-direction: column; gap: 0; }
.agt-cf-step {
  border: 1.5px solid var(--agt-border);
  border-radius: 5px;
  padding: 10px 16px;
  font-size: 14px; font-weight: 500;
  color: #1e293b;
  background: #f8fafc;
}
.agt-cf-input  { background: rgba(27,79,216,.05); border-color: rgba(27,79,216,.18); font-size: 13px; }
.agt-cf-agent  { background: var(--agt-blue); color: #fff; border-color: var(--agt-blue); text-align: center; font-weight: 700; }
.agt-cf-output { background: rgba(22,163,74,.06); border-color: rgba(22,163,74,.25); }
.agt-cf-human  { background: rgba(22,163,74,.10); border-color: rgba(22,163,74,.4); font-weight: 600; color: #15803d; }
.agt-cf-trace  { background: #f1f5f9; font-size: 13px; color: var(--agt-muted); }
.agt-cf-arrow  { text-align: center; color: var(--agt-muted); font-size: 18px; line-height: 1.8; }
.agt-cf-plus   { text-align: center; color: rgba(27,79,216,.4); font-size: 14px; font-weight: 700; line-height: 1.4; }

.agt-contrast-conclusion {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--agt-navy);
  margin: 0 0 56px;
  line-height: 1.3;
}

.agt-principles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.agt-principle { padding: 0; }
.agt-principle-title {
  font-size: 14px; font-weight: 700;
  color: var(--agt-navy);
  margin: 0 0 8px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--agt-blue);
}
.agt-principle-body {
  font-size: 14px; font-weight: 300;
  color: #475569; line-height: 1.6; margin: 0;
}


/* ═══════════════════════════════════════════════════
   FOUR AGENTS INDEX
═══════════════════════════════════════════════════ */
.agt-index {
  background: #f8fafc;
  padding: 80px 0;
  border-top: 1px solid var(--agt-border);
}
.agt-index-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--agt-border);
  border: 1px solid var(--agt-border);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 16px;
}
.agt-index-card {
  background: #fff;
  display: flex; flex-direction: column;
  gap: 10px;
  padding: 32px 24px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.agt-index-card:hover { background: #f0f4ff; }
.agt-index-num {
  font-size: 36px; font-weight: 800;
  color: rgba(27,79,216,.18);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.agt-index-name {
  font-size: 15px; font-weight: 700;
  color: var(--agt-navy);
  line-height: 1.35;
}
.agt-index-tag {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--agt-blue);
}


/* ═══════════════════════════════════════════════════
   AGENT SECTIONS — shared
═══════════════════════════════════════════════════ */
.agt-agent { padding: 96px 0; }
.agt-agent--knowledge { background: #fff; border-top: 1px solid var(--agt-border); }
.agt-agent--rfp       { background: #f8fafc; border-top: 1px solid var(--agt-border); }
.agt-agent--docreview { background: #fff; border-top: 1px solid var(--agt-border); }
.agt-agent--screening { background: #f8fafc; border-top: 1px solid var(--agt-border); }

.agt-agent-inner {
  display: grid;
  gap: 64px;
  align-items: center;
}
.agt-agent-inner--text-left  { grid-template-columns: 1fr 1fr; }
.agt-agent-inner--text-right { grid-template-columns: 1fr 1fr; }
.agt-agent-inner--wide       { grid-template-columns: 1fr 1fr; }

.agt-agent-inner--text-right .agt-agent-text { order: 2; }
.agt-agent-inner--text-right .agt-dr-visual  { order: 1; }

.agt-agent-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--agt-blue); margin: 0 0 12px;
}
.agt-agent-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; color: var(--agt-navy);
  line-height: 1.18; margin: 0 0 14px;
}
.agt-agent-pos {
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600; font-style: italic;
  color: #334155; line-height: 1.4;
  margin: 0 0 18px;
}
.agt-agent-lead {
  font-size: 16px; font-weight: 300;
  color: #475569; line-height: 1.72;
  margin: 0 0 28px;
}
.agt-agent-why {
  font-size: 16px; font-weight: 400;
  font-style: italic;
  color: #1e293b;
  border-left: 3px solid var(--agt-blue);
  padding-left: 16px;
  margin: 28px 0;
  line-height: 1.65;
}


/* ── Agent 01 Knowledge — chat UI ────────────────── */
.agt-ka-ui {
  background: #fff;
  border: 1px solid var(--agt-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(11,22,40,.08);
}
.agt-ka-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--agt-navy);
}
.agt-ka-logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--agt-blue-l); flex-shrink: 0; }
.agt-ka-header-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .08em; }

.agt-ka-sources-bar {
  display: flex; gap: 8px;
  padding: 10px 18px;
  background: #f8fafc;
  border-bottom: 1px solid var(--agt-border);
}
.agt-ka-source {
  font-size: 11px; font-weight: 600;
  color: var(--agt-muted);
  padding: 3px 10px;
  border-radius: 20px;
  background: #e2e8f0;
  transition: background .3s, color .3s;
}
.agt-ka-source--scanning,
.agt-ka-source--active {
  background: rgba(27,79,216,.1);
  color: var(--agt-blue);
}

.agt-ka-thread { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.agt-ka-msg { display: flex; flex-direction: column; gap: 6px; }
.agt-ka-msg-role { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--agt-muted); }
.agt-ka-msg--user p {
  background: #f1f5f9; border-radius: 6px;
  padding: 10px 14px; font-size: 14px;
  color: #1e293b; margin: 0;
}
.agt-ka-msg--agent p {
  background: rgba(27,79,216,.06);
  border: 1px solid rgba(27,79,216,.15);
  border-radius: 6px;
  padding: 10px 14px; font-size: 14px;
  color: #1e293b; margin: 0;
  opacity: 0; transition: opacity .4s .3s;
}
.agt-ka-msg--agent.is-visible p { opacity: 1; }

.agt-ka-citations {
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  margin-top: 8px;
  opacity: 0; transition: opacity .4s .6s;
}
.agt-ka-msg--agent.is-visible .agt-ka-citations { opacity: 1; }
.agt-ka-cite-label {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--agt-muted);
}
.agt-ka-cite {
  font-size: 11px; font-weight: 600;
  color: var(--agt-blue);
  background: rgba(27,79,216,.08);
  padding: 2px 8px; border-radius: 4px;
}
.agt-ka-note {
  font-size: 11px; color: var(--agt-muted);
  padding: 8px 18px 14px;
  text-align: center;
  border-top: 1px solid var(--agt-border);
  margin: 0;
}


/* ── Agent 02 RFP ───────────────────────────────── */
.agt-rfp-queries { margin: 24px 0 28px; }
.agt-rfp-queries-label {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--agt-muted); margin: 0 0 10px;
}
.agt-rfp-query {
  font-size: 14px; color: #334155;
  padding: 8px 14px;
  border-left: 2px solid rgba(27,79,216,.3);
  margin-bottom: 6px;
  background: rgba(27,79,216,.03);
  border-radius: 0 4px 4px 0;
}

.agt-rfp-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
}
.agt-rfp-doc {
  background: #fff;
  border: 1px solid var(--agt-border);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 12px rgba(11,22,40,.06);
}
.agt-rfp-doc-header {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
  font-size: 12px; font-weight: 600; color: var(--agt-muted);
}
.agt-rfp-doc-lines { display: flex; flex-direction: column; gap: 5px; }
.agt-rfp-doc-line {
  height: 7px; border-radius: 3px;
  background: #e2e8f0;
}
.agt-rfp-doc-line--highlight { background: rgba(27,79,216,.25); }

.agt-rfp-arrow {
  font-size: 22px; color: var(--agt-blue);
  font-weight: 700; text-align: center;
}

.agt-rfp-matrix {
  background: #fff;
  border: 1px solid var(--agt-border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(11,22,40,.06);
}
.agt-rfp-matrix-header {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px; padding: 10px 12px;
  background: var(--agt-navy);
  font-size: 10px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.agt-rfp-row {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px; padding: 9px 12px;
  font-size: 12px; color: #334155;
  border-bottom: 1px solid var(--agt-border);
  opacity: 0; transition: opacity .3s;
}
.agt-rfp-row.is-visible { opacity: 1; }
.agt-rfp-row:last-child { border-bottom: none; }
.agt-rfp-status { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 2px 6px; border-radius: 3px; }
.agt-rfp-status--ok     { background: rgba(22,163,74,.1); color: var(--agt-green); }
.agt-rfp-status--review { background: rgba(217,119,6,.1); color: var(--agt-amber); }
.agt-rfp-status--gap    { background: rgba(220,38,38,.08); color: var(--agt-red); }

.agt-rfp-conclusion {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; font-style: italic;
  color: var(--agt-navy); margin: 20px 0 0;
  text-align: center;
}


/* ── Agent 03 Document Review ───────────────────── */
.agt-dr-pipeline {
  display: flex; flex-direction: column;
  gap: 0; align-items: stretch;
}
.agt-dr-step {
  background: #fff;
  border: 1.5px solid var(--agt-border);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 14px; font-weight: 500;
  color: #1e293b;
  opacity: 0; transform: translateX(-16px);
  transition: opacity .35s, transform .35s;
}
.agt-dr-step.is-visible { opacity: 1; transform: none; }
.agt-dr-step--exception {
  border-color: rgba(217,119,6,.4);
  background: rgba(217,119,6,.06);
  color: #92400e;
  font-weight: 600;
}
.agt-dr-step--human {
  border-color: rgba(22,163,74,.4);
  background: rgba(22,163,74,.08);
  color: #15803d;
  font-weight: 700;
}
.agt-dr-arrow { text-align: center; font-size: 18px; color: var(--agt-muted); line-height: 1.8; }

.agt-dr-result {
  margin-top: 20px;
  background: #fff;
  border: 1px solid var(--agt-border);
  border-radius: 10px;
  padding: 18px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .4s, transform .4s;
  box-shadow: 0 2px 14px rgba(11,22,40,.07);
}
.agt-dr-result.is-visible { opacity: 1; transform: none; }
.agt-dr-result-header {
  font-size: 13px; font-weight: 700;
  color: var(--agt-navy); letter-spacing: .04em;
  margin-bottom: 12px;
}
.agt-dr-result-stats { display: flex; gap: 12px; margin-bottom: 14px; }
.agt-dr-stat {
  display: flex; flex-direction: column; gap: 2px;
  font-size: 11px; color: var(--agt-muted);
}
.agt-dr-stat-n { font-size: 22px; font-weight: 800; color: var(--agt-navy); line-height: 1; }
.agt-dr-stat--ok .agt-dr-stat-n { color: var(--agt-green); }
.agt-dr-stat--warn .agt-dr-stat-n { color: var(--agt-amber); }
.agt-dr-exceptions { display: flex; flex-direction: column; gap: 7px; margin-bottom: 10px; }
.agt-dr-exception {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #92400e;
  background: rgba(217,119,6,.07);
  border: 1px solid rgba(217,119,6,.2);
  border-radius: 4px; padding: 7px 10px;
}
.agt-dr-exc-icon { font-size: 14px; }
.agt-dr-note {
  font-size: 11px; color: var(--agt-muted);
  text-align: center; margin: 0;
}

.agt-dr-apps { margin: 0 0 24px; }
.agt-dr-apps-label {
  font-size: 12px; font-weight: 600;
  color: var(--agt-muted); margin: 0 0 12px;
  text-transform: uppercase; letter-spacing: .08em;
}
.agt-dr-conclusion {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; font-style: italic;
  color: var(--agt-navy); margin: 0 0 24px;
}


/* ── Agent 04 Candidate Screening ───────────────── */
.agt-cs-human-control {
  background: var(--agt-navy);
  border-radius: 8px;
  padding: 18px 22px;
  margin: 24px 0;
}
.agt-cs-human-statement {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
  color: #fff; margin: 0; line-height: 1.4;
}
.agt-cs-riq {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--agt-border);
  margin-bottom: 24px;
}
.agt-cs-riq-text { font-size: 13px; color: var(--agt-muted); margin: 0; }
.agt-cs-riq-link {
  font-size: 13px; font-weight: 600;
  color: var(--agt-blue); text-decoration: none;
  border-bottom: 1px solid rgba(27,79,216,.3);
}
.agt-cs-riq-link:hover { border-color: var(--agt-blue); }

.agt-cs-split {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 12px; align-items: start; margin-bottom: 12px;
}
.agt-cs-col-label {
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--agt-muted);
  margin: 0 0 10px;
}
.agt-cs-jd-req {
  background: rgba(27,79,216,.06);
  border: 1px solid rgba(27,79,216,.18);
  border-radius: 4px;
  padding: 7px 10px;
  font-size: 13px; font-weight: 500;
  color: #1e293b;
  margin-bottom: 6px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity .3s, transform .3s;
}
.agt-cs-jd-req.is-visible { opacity: 1; transform: none; }
.agt-cs-plus-icon {
  font-size: 20px; font-weight: 700;
  color: rgba(27,79,216,.3);
  align-self: center; padding-top: 20px;
}
.agt-cs-cv-block {
  height: 10px; border-radius: 3px;
  background: #e2e8f0; margin-bottom: 6px;
}
.agt-cs-cv-block--short { width: 60%; }
.agt-cs-cv-block--med   { width: 75%; }

.agt-cs-arrow { text-align: center; font-size: 20px; color: var(--agt-muted); line-height: 2; }

.agt-cs-assessment {
  background: #fff;
  border: 1px solid var(--agt-border);
  border-radius: 8px; padding: 16px;
  box-shadow: 0 2px 12px rgba(11,22,40,.07);
  opacity: 0; transform: translateY(12px);
  transition: opacity .4s, transform .4s;
}
.agt-cs-assessment.is-visible { opacity: 1; transform: none; }
.agt-cs-row {
  display: flex; justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--agt-border);
}
.agt-cs-row:last-of-type { border-bottom: none; }
.agt-cs-skill { font-size: 13px; font-weight: 500; color: #1e293b; }
.agt-cs-ev {
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 3px;
}
.agt-cs-ev--strong     { background: rgba(22,163,74,.1); color: var(--agt-green); }
.agt-cs-ev--moderate   { background: rgba(217,119,6,.1); color: var(--agt-amber); }
.agt-cs-ev--identified { background: rgba(27,79,216,.1); color: var(--agt-blue); }
.agt-cs-ev--none       { background: #f1f5f9; color: var(--agt-muted); }

.agt-cs-review-badge {
  margin-top: 12px;
  background: var(--agt-navy);
  color: rgba(255,255,255,.9);
  font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  text-align: center;
  padding: 8px 14px; border-radius: 4px;
}
.agt-cs-conclusion {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; font-style: italic;
  color: var(--agt-navy); text-align: center;
  margin: 12px 0 0;
}


/* ═══════════════════════════════════════════════════
   ONE ENTERPRISE FOUNDATION
═══════════════════════════════════════════════════ */
.agt-foundation {
  background: var(--agt-navy);
  padding: 96px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.agt-foundation .agt-eyebrow { color: rgba(255,255,255,.5); }
.agt-foundation .agt-section-h2 { color: #fff; }
.agt-foundation .agt-section-lead { color: rgba(255,255,255,.65); }

.agt-found-diagram {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 36px 28px 24px;
  margin-bottom: 48px;
}
.agt-found-core { margin-bottom: 24px; }
.agt-found-engine {
  text-align: center;
  font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}
.agt-found-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 20px;
}
.agt-found-pillar {
  background: rgba(27,79,216,.18);
  border: 1px solid rgba(27,79,216,.3);
  border-radius: 8px; padding: 16px 14px;
  text-align: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .35s, transform .35s;
}
.agt-found-pillar.is-visible { opacity: 1; transform: none; }
.agt-found-pillar-top { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.agt-found-pillar-sub { font-size: 11px; color: rgba(255,255,255,.45); }

.agt-found-output-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.agt-found-out, .agt-found-human, .agt-found-audit {
  text-align: center; border-radius: 5px;
  padding: 10px 8px; font-size: 12px; font-weight: 600;
}
.agt-found-out   { background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.25); color: #4ade80; }
.agt-found-human { background: rgba(22,163,74,.18); border: 1px solid rgba(22,163,74,.4); color: #86efac; font-weight: 700; }
.agt-found-audit { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); font-size: 11px; }

.agt-found-agents-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.agt-found-agent-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 12px 10px;
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.7); text-align: center;
  line-height: 1.35;
  opacity: 0; transform: translateY(10px);
  transition: opacity .35s, transform .35s;
}
.agt-found-agent-chip.is-visible { opacity: 1; transform: none; }

.agt-found-caps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.agt-found-cap { display: flex; align-items: center; gap: 10px; }
.agt-found-cap .agt-cap-dot { background: rgba(59,111,245,.8); }
.agt-found-cap span:not(.agt-cap-dot) { font-size: 14px; color: rgba(255,255,255,.75); }


/* ═══════════════════════════════════════════════════
   DEPLOYMENT
═══════════════════════════════════════════════════ */
.agt-deployment { background: #fff; padding: 96px 0; border-top: 1px solid var(--agt-border); }
.agt-dep-steps { display: flex; flex-direction: column; gap: 0; max-width: 680px; }
.agt-dep-step {
  display: grid; grid-template-columns: 48px 1fr;
  gap: 20px; align-items: start;
}
.agt-dep-connector {
  width: 1px; height: 28px; margin-left: 23px;
  background: var(--agt-border);
}
.agt-dep-step-num {
  font-size: 32px; font-weight: 800;
  color: rgba(27,79,216,.15); line-height: 1.1;
  font-family: 'Inter', sans-serif;
}
.agt-dep-step-body h3 {
  font-size: 18px; font-weight: 700;
  color: var(--agt-navy); margin: 0 0 6px;
}
.agt-dep-step-body p {
  font-size: 15px; font-weight: 300;
  color: #475569; line-height: 1.65; margin: 0;
}


/* ═══════════════════════════════════════════════════
   THREE PATHS
═══════════════════════════════════════════════════ */
.agt-paths { background: #f8fafc; padding: 96px 0; border-top: 1px solid var(--agt-border); }
.agt-paths-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--agt-border);
  border: 1px solid var(--agt-border);
  border-radius: 12px;
  overflow: hidden;
}
.agt-path {
  background: #fff; padding: 36px 28px;
}
.agt-path-num {
  font-size: 40px; font-weight: 800;
  color: rgba(27,79,216,.12); line-height: 1;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}
.agt-path-title {
  font-size: 18px; font-weight: 700;
  color: var(--agt-navy); margin: 0 0 12px;
}
.agt-path-body {
  font-size: 15px; font-weight: 300;
  color: #475569; line-height: 1.65; margin: 0;
}


/* ═══════════════════════════════════════════════════
   GOVERNANCE
═══════════════════════════════════════════════════ */
.agt-governance { background: #fff; padding: 96px 0; border-top: 1px solid var(--agt-border); }
.agt-gov-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
}
.agt-gov-principles { display: flex; flex-direction: column; gap: 28px; margin-top: 8px; }
.agt-gov-principle h3 {
  font-size: 15px; font-weight: 700;
  color: var(--agt-navy); margin: 0 0 4px;
  display: flex; align-items: center; gap: 8px;
}
.agt-gov-principle h3::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--agt-blue); flex-shrink: 0;
}
.agt-gov-principle p { font-size: 14px; font-weight: 300; color: #475569; margin: 0; line-height: 1.6; }

/* governance flow */
.agt-gov-flow {
  display: flex; flex-direction: column;
  align-items: stretch; gap: 0;
  position: sticky; top: 100px;
}
.agt-gov-node {
  background: #f8fafc;
  border: 1px solid var(--agt-border);
  border-radius: 6px; padding: 12px 16px;
  font-size: 13px; font-weight: 500;
  color: #1e293b; text-align: center;
  opacity: 0; transition: opacity .35s;
}
.agt-gov-node.is-visible { opacity: 1; }
.agt-gov-node--agent { background: var(--agt-blue); color: #fff; border-color: var(--agt-blue); font-weight: 700; }
.agt-gov-node--pause {
  background: rgba(22,163,74,.08);
  border: 2px solid rgba(22,163,74,.4);
  color: #15803d; font-weight: 700;
}
.agt-gov-node--action { background: rgba(22,163,74,.06); border-color: rgba(22,163,74,.2); }
.agt-gov-node--trace  { background: #f1f5f9; color: var(--agt-muted); }
.agt-gov-flow-arrow {
  text-align: center; font-size: 18px;
  color: var(--agt-muted); line-height: 1.8;
  opacity: 0; transition: opacity .3s;
}
.agt-gov-flow-arrow.is-visible { opacity: 1; }
.agt-gov-flow-arrow--pause { color: var(--agt-green); font-size: 22px; }


/* ═══════════════════════════════════════════════════
   ECS CONNECTION
═══════════════════════════════════════════════════ */
.agt-ecs {
  background: #f8fafc;
  padding: 80px 0;
  border-top: 1px solid var(--agt-border);
}
.agt-ecs-inner { max-width: 680px; }
.agt-ecs-layers {
  font-size: 13px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--agt-blue); margin: 0 0 24px;
}


/* ═══════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════ */
.agt-final {
  background: var(--agt-navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.agt-final-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  gap: 48px;
  pointer-events: none;
}
.agt-final-signal {
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(27,79,216,.15), transparent);
  position: relative;
}
.agt-final-signal::after {
  content: attr(data-label);
  position: absolute; top: 30%;
  left: 8px;
  font-size: 10px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
}
.agt-final-inner { position: relative; text-align: center; max-width: 700px; margin: 0 auto; }
.agt-final-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin: 0 0 22px;
}
.agt-final-lead {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.72; margin: 0 0 40px;
}
.agt-final-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn-white {
  background: #fff; color: var(--agt-navy);
  border-color: #fff;
  font-weight: 700;
}
.btn-white:hover { background: #f0f4ff; border-color: #f0f4ff; }
.btn-outline-white {
  border-color: rgba(255,255,255,.35);
  color: rgba(255,255,255,.85);
}
.btn-outline-white:hover { border-color: #fff; color: #fff; }


/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .agt-hero-inner { grid-template-columns: 1fr; }
  .agt-hero-visual { display: none; }
  .agt-principles { grid-template-columns: repeat(3, 1fr); }
  .agt-found-caps  { grid-template-columns: repeat(2, 1fr); }
  .agt-gov-inner   { grid-template-columns: 1fr; }
  .agt-gov-flow    { position: static; }
}

@media (max-width: 768px) {
  .agt-hero { padding: 90px 0 60px; }
  .agt-contrast { grid-template-columns: 1fr; gap: 28px; }
  .agt-contrast-divider { display: none; }
  .agt-principles { grid-template-columns: 1fr 1fr; }
  .agt-index-grid  { grid-template-columns: 1fr 1fr; }
  .agt-agent-inner--text-left,
  .agt-agent-inner--text-right,
  .agt-agent-inner--wide { grid-template-columns: 1fr; gap: 40px; }
  .agt-agent-inner--text-right .agt-agent-text,
  .agt-agent-inner--text-right .agt-dr-visual { order: unset; }
  .agt-rfp-split   { grid-template-columns: 1fr; }
  .agt-rfp-arrow   { transform: rotate(90deg); }
  .agt-cs-split    { grid-template-columns: 1fr; }
  .agt-cs-plus-icon { display: none; }
  .agt-found-pillars     { grid-template-columns: 1fr; }
  .agt-found-output-row  { grid-template-columns: 1fr; }
  .agt-found-agents-row  { grid-template-columns: 1fr 1fr; }
  .agt-found-caps        { grid-template-columns: 1fr; }
  .agt-paths-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .agt-principles { grid-template-columns: 1fr; }
  .agt-index-grid  { grid-template-columns: 1fr; }
  .agt-found-agents-row { grid-template-columns: 1fr; }
  .agt-rfp-matrix-header,
  .agt-rfp-row { grid-template-columns: 2fr 1fr 1fr; }
  .agt-rfp-row span:nth-child(3) { display: none; }
  .agt-rfp-matrix-header span:nth-child(3) { display: none; }
}


/* ═══════════════════════════════════════════════════
   REDUCED MOTION
═══════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .agt-hv-node,
  .agt-hv-connector,
  .agt-hv-core,
  .agt-hv-output,
  .agt-hv-review,
  .agt-hv-tags,
  .agt-hero-visual    { animation: none !important; opacity: 1 !important; }
  .agt-hv-core-pulse  { animation: none !important; opacity: 0; }

  .agt-dr-step,
  .agt-dr-result,
  .agt-cs-jd-req,
  .agt-cs-assessment,
  .agt-rfp-row,
  .agt-gov-node,
  .agt-gov-flow-arrow,
  .agt-found-pillar,
  .agt-found-agent-chip {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .agt-ka-msg--agent p,
  .agt-ka-citations { opacity: 1 !important; transition: none !important; }
}
