/* =============================================================================
   pages.css — styles for the /for-agents and /for-agencies sub-pages.
   Loaded AFTER site-styles.css; reuses the same tokens, nav, footer, buttons.
   ============================================================================= */

/* -- Shared sub-page hero ---------------------------------------------------- */
.fa-hero {
  max-width: 62rem;
  padding-top: clamp(16px, 3vw, 40px);
}
.fa-hero .hb-eyebrow { margin-bottom: 26px; }
.fa-hero__title {
  font-size: clamp(2.5rem, 4.6vw + 0.5rem, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0;
  text-wrap: balance;
  max-width: 20ch;
}
.fa-hero__lead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 56ch;
  margin-top: 26px;
  text-wrap: pretty;
}
.fa-hero__actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 38px;
}
.fa-hero__chips {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--fg-muted);
}
.fa-hero__chips .sep { color: var(--fg-faint); }

/* -- Prose block (pain / shift narrative) ------------------------------------ */
.fa-prose {
  max-width: 64ch;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.fa-prose p {
  font-size: 1.1875rem;
  line-height: 1.62;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}

/* -- Feature blocks (What you get / The tools) ------------------------------- */
.fa-feats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
}
.fa-feats--3 { grid-template-columns: repeat(3, 1fr); }
.fa-feat__icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--cyan-soft);
  color: var(--cyan-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fa-feat__title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin: 0 0 10px;
  text-wrap: balance;
}
.fa-feat__body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0;
  max-width: 42ch;
  text-wrap: pretty;
}

/* -- "What you get" graphic cluster (mirrors the homepage hero composition) -- */
.fa-viz { margin-top: clamp(48px, 6vw, 80px); }
.fa-viz__stage {
  position: relative;
  height: 340px;
  max-width: 880px;
  margin: 0 auto;
}
.fa-viz__card {
  position: absolute;
  transition: transform var(--dur-base) var(--ease-out);
}
.fa-viz__a { top: 70px;  left: 6%;   width: 290px; transform: rotate(-2deg); z-index: 3; }
.fa-viz__b { top: 0;     left: 40%;  width: 290px; transform: rotate(2deg);  z-index: 4; }
.fa-viz__c { top: 248px; right: 7%; left: auto; width: 250px; transform: rotate(-3deg); z-index: 5; }
.fa-viz__d { top: 140px; right: 5%; width: 250px; transform: rotate(2deg);  z-index: 4; }

/* Mini quiz / feed card */
.fa-quizmini { padding: 14px; }
.fa-quizmini__head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-bottom: 12px;
}
.fa-quizmini__head .mk-mono { color: var(--cyan); font-size: 9px; }
.fa-quizmini__kudos {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.04em;
  color: var(--green-ink); background: var(--green-soft);
  padding: 3px 7px; border-radius: var(--r-pill); white-space: nowrap;
}
.fa-quizmini__q {
  font-size: 13px; font-weight: 500; letter-spacing: -0.01em; line-height: 1.35;
  color: var(--fg); margin-bottom: 12px;
}
.fa-quizmini__opts { display: flex; flex-direction: column; gap: 6px; }
.fa-quizmini__opt {
  font-size: 12px; color: var(--fg-muted);
  padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--r-sm);
}
.fa-quizmini__opt.is-pick {
  color: var(--cyan-ink); font-weight: 500;
  border-color: var(--cyan); background: rgba(0,147,199,0.06);
}

/* Community chip */
.fa-community { padding: 16px; display: flex; align-items: center; gap: 14px; }
.fa-community__avas { display: flex; }
.fa-community__ava {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--cyan); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.02em;
  border: 2px solid #fff; margin-left: -8px;
}
.fa-community__ava:first-child { margin-left: 0; }
.fa-community__ava:nth-child(2) { background: var(--cyan-ink); }
.fa-community__ava:nth-child(3) { background: var(--green-ink); }
.fa-community__ava:nth-child(4) { background: #6F4F8C; }
.fa-community__line { font-size: 13px; color: var(--fg-muted); line-height: 1.3; }
.fa-community__line strong { color: var(--fg); font-weight: 500; }

/* Credential badge */
.fa-cred { padding: 14px 16px; display: flex; align-items: center; gap: 14px; }
.fa-cred__badge {
  width: 40px; height: 40px; border-radius: var(--r-md); flex-shrink: 0;
  background: var(--cyan-soft); color: var(--cyan-ink);
  display: inline-flex; align-items: center; justify-content: center;
}
.fa-cred__tier {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500; letter-spacing: -0.01em; color: var(--fg);
}
.fa-cred__tick {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
}
.fa-cred__meta {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-faint); margin-top: 5px;
}

@media (max-width: 820px) {
  .fa-viz__stage {
    position: static; height: auto;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 16px; max-width: 540px;
  }
  .fa-viz__card { position: static; width: 100%; transform: none; }
}
@media (max-width: 520px) {
  .fa-viz__stage { grid-template-columns: 1fr; }
}

/* -- Credential tiers -------------------------------------------------------- */
.fa-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.fa-tier {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 32px;
}
.fa-tier__badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cyan-soft);
  color: var(--cyan-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.fa-tier__name {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.fa-tier__meaning {
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--fg);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.fa-tier__earn-h {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--fg-faint);
  padding-top: 18px;
  border-top: 1px solid var(--border);
  margin-bottom: 10px;
}
.fa-tier__earn {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}
.fa-tiers__note {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.04em;
  color: var(--fg-faint);
}

/* -- Advocacy (dark) --------------------------------------------------------- */
.fa-adv {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}
.fa-adv .hb-eyebrow { margin-bottom: 22px; }
.fa-adv__title {
  font-size: clamp(2rem, 2.4vw + 1rem, 3rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 24px;
  text-wrap: balance;
}
.fa-adv__body { display: flex; flex-direction: column; gap: 18px; }
.fa-adv__body p {
  font-size: 1.0625rem;
  line-height: 1.62;
  color: var(--fg-on-dark-muted);
  margin: 0;
  text-wrap: pretty;
}

/* AI exchange inset on dark */
.fa-chat {
  background: var(--bg-dark-alt);
  border: 1px solid var(--border-on-dark);
  border-radius: var(--r-lg);
  padding: 24px;
  position: sticky;
  top: 88px;
}
.fa-chat__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}
.fa-chat__pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,147,199,0.22);
}
.fa-chat__title {
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--cyan);
}
.fa-chat__q {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #fff;
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px 10px 10px 2px;
  margin-bottom: 14px;
}
.fa-chat__a {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 14px;
  border-left: 2px solid var(--cyan);
}
.fa-chat__a p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-on-dark-muted);
  margin: 0;
}
.fa-chat__verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: var(--fs-mono-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.fa-chat__tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(11,212,113,0.16);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* -- Free, always ------------------------------------------------------------ */
.fa-free { max-width: 56rem; }
.fa-free .hb-eyebrow { margin-bottom: 22px; }
.fa-free__title {
  font-size: clamp(2.25rem, 3.4vw + 0.5rem, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 500;
  margin: 0 0 22px;
  text-wrap: balance;
}
.fa-free__sub {
  font-size: 1.1875rem;
  line-height: 1.55;
  color: var(--fg-muted);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.fa-free__alt {
  margin: 22px 0 0;
  font-size: 15px;
  color: var(--fg-muted);
}
.fa-free__alt a { color: var(--cyan); font-weight: 500; }
.fa-free__alt a:hover { color: var(--cyan-hover); }

/* -- Agencies: no-downtime statement ----------------------------------------- */
.ag-statement { max-width: 60rem; }
.ag-statement .hb-eyebrow { margin-bottom: 22px; }
.ag-statement__title {
  font-size: clamp(2rem, 2.8vw + 0.5rem, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 500;
  margin: 0 0 22px;
  text-wrap: balance;
  max-width: 22ch;
}
.ag-statement__sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 0;
  text-wrap: pretty;
}

/* -- Agencies: commercial points --------------------------------------------- */
.ag-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 56px;
}
.ag-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.ag-point__tick {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.ag-point__text {
  font-size: 1.0625rem;
  line-height: 1.5;
  color: var(--fg);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

/* -- Agencies: internal operations ------------------------------------------- */
.ag-ops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.ag-ops__cluster {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 32px;
}
.ag-ops__label {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--ls-mono);
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.ag-ops__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ag-ops__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.0625rem;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.ag-ops__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
}

/* -- Agencies: dark CTA ------------------------------------------------------ */
.ag-cta { max-width: 52rem; }
.ag-cta .hb-eyebrow { margin-bottom: 22px; }
.ag-cta__title {
  font-size: clamp(2rem, 2.8vw + 0.5rem, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 22px;
  text-wrap: balance;
}
.ag-cta__sub {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--fg-on-dark-muted);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

/* -- Agencies: owner pull-quote (prominent) ---------------------------------- */
.ag-pull {
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  border: 0;
  padding: 0;
}
.ag-pull__text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.5rem, 1.6vw + 1rem, 2.125rem);
  line-height: 1.32;
  letter-spacing: -0.022em;
  color: var(--fg);
  margin: 0 0 28px;
  text-wrap: balance;
}
.ag-pull__attrib { display: flex; flex-direction: column; gap: 4px; }
.ag-pull__name { font-family: var(--font-sans); font-weight: 600; font-size: 15px; color: var(--fg); }
.ag-pull__role { font-size: 13px; line-height: 1.5; color: var(--fg-muted); max-width: 54ch; margin: 0 auto; text-wrap: pretty; }

/* -- Agencies: use-case grid ------------------------------------------------- */
.ag-cases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ag-case {
  background: #fff;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 28px;
}
.ag-case__icon { color: var(--cyan); margin-bottom: 14px; display: block; line-height: 0; }
.ag-case__label {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 10px;
}
.ag-case__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0;
  text-wrap: pretty;
}
.ag-cases__tease {
  margin: 28px 0 0;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--fg);
  letter-spacing: -0.01em;
  max-width: 60ch;
}

/* -- Agents: closing CTA band ------------------------------------------------ */
.fa-closeband {
  border-top: 1px solid var(--border);
  padding-block: clamp(56px, 6vw, 88px);
  text-align: center;
}
.fa-closeband__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.fa-closeband__title {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(1.75rem, 2.2vw + 1rem, 2.5rem);
  letter-spacing: -0.025em;
  color: var(--fg);
  margin: 0;
}
.fa-closeband__alt {
  font-size: 15px;
  color: var(--fg-muted);
  margin: 0;
}
.fa-closeband__alt a { color: var(--cyan); font-weight: 500; }
.fa-closeband__alt a:hover { color: var(--cyan-hover); }

/* -- Responsive -------------------------------------------------------------- */
@media (max-width: 900px) {
  .fa-feats, .fa-feats--3, .fa-tiers, .ag-points, .ag-ops, .ag-cases { grid-template-columns: 1fr; }
  .fa-feats { gap: 36px; }
  .fa-adv { grid-template-columns: 1fr; gap: 40px; }
  .fa-chat { position: static; }
}
