/* /agents page styles. brand.css and convo.css must load first. */

  /* ── Hero ── */
  .agents-hero {
    padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  }
  .agents-hero .eyebrow { margin-bottom: clamp(24px, 3vw, 36px); }
  .agents-hero .h1 {
    max-width: 16ch;
    margin-bottom: clamp(24px, 3vw, 36px);
  }
  .agents-hero .lede {
    color: var(--mute-dark);
    margin-bottom: clamp(36px, 4vw, 52px);
  }
  .jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .jump-links a {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    color: var(--bone);
    background: rgba(242, 237, 226, 0.07);
    border: 1px solid rgba(242, 237, 226, 0.2);
    border-radius: 999px;
    padding: 9px 20px;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
  }
  .jump-links a:hover {
    background: var(--signal);
    border-color: var(--signal);
    color: var(--bone);
  }

  /* ── Use-case sections ── */
  .uc { scroll-margin-top: 72px; }
  .uc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 4vw, 56px);
    align-items: start;
  }
  @media (min-width: 940px) {
    .uc-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(56px, 6vw, 96px); }
    .uc-grid .convo,
    .uc-grid .xchat {
      position: sticky;
      top: 96px;
      margin-top: 48px;
    }
  }
  .uc-copy .eyebrow { letter-spacing: 0.28em; font-weight: 700; margin-bottom: 16px; }
  .uc-copy .h2 {
    font-size: clamp(28px, 3.2vw, 36px);
    letter-spacing: -0.025em;
    line-height: 1.08;
    max-width: 22ch;
    margin-bottom: clamp(14px, 1.8vw, 18px);
  }
  .uc-problem {
    font-family: var(--sans);
    font-size: 16.5px;
    line-height: 1.6;
    color: rgba(242, 237, 226, 0.8);
    max-width: 56ch;
    margin-bottom: 22px;
  }
  .light .uc-problem { color: rgba(12, 34, 64, 0.8); }

  /* Fact list with red-square bullets (overrides the shared dashed list). */
  .uc-copy .fact-list {
    background-image: none;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
  }
  .uc-copy .fact-list li {
    position: relative;
    padding: 0 0 0 22px;
    border-bottom: none;
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 56ch;
    color: rgba(242, 237, 226, 0.8);
  }
  .light .uc-copy .fact-list li { color: rgba(12, 34, 64, 0.8); }
  .uc-copy .fact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--signal);
  }

  .works-on {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-bottom: 24px;
  }
  .works-on-label {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mute-dark);
  }
  .light .works-on-label { color: rgba(12, 34, 64, 0.5); }
  /* Outlined, sentence-case channel chips (overrides the mono uppercase). */
  .works-on .chip {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: -0.005em;
    text-transform: none;
    padding: 4px 11px;
    opacity: 1;
    color: rgba(242, 237, 226, 0.7);
    border-color: rgba(242, 237, 226, 0.2);
  }
  .light .works-on .chip {
    color: rgba(12, 34, 64, 0.7);
    border-color: rgba(12, 34, 64, 0.2);
  }

  /* ── Press pull-quote band ── */
  .press-callout {
    background: var(--ink-deep);
    color: var(--bone);
    border-top: 1px solid var(--hairline-dark);
    text-align: center;
    padding: clamp(64px, 7vw, 104px) 0;
  }
  .press-callout-eyebrow {
    font-family: var(--mono);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: clamp(20px, 2.4vw, 28px);
  }
  .press-callout-title {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 24ch;
    margin: 0 auto clamp(28px, 3.2vw, 40px);
  }
  .press-callout-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.005em;
    color: var(--bone);
    text-decoration: none;
    background: var(--signal);
    border: 1px solid var(--signal);
    border-radius: 999px;
    padding: 14px 26px;
    transition: background 0.15s, border-color 0.15s;
  }
  .press-callout-link::after { content: "→"; font-family: var(--mono); font-weight: 400; }
  .press-callout-link:hover {
    background: #C81E31;
    border-color: #C81E31;
  }

  /* ── Omni-channel (centered: chips → dashed stem → one-record pill) ── */
  .channels { text-align: center; }
  .channels-inner { max-width: 1140px; }
  .channels .eyebrow { letter-spacing: 0.28em; font-weight: 700; margin-bottom: 16px; }
  .channels-title {
    font-size: clamp(30px, 3.6vw, 40px);
    letter-spacing: -0.025em;
    line-height: 1.1;
    max-width: 24ch;
    margin: 0 auto clamp(16px, 2vw, 20px);
    text-wrap: balance;
  }
  .channels-copy {
    font-family: var(--sans);
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    color: var(--mute-dark);
    max-width: 60ch;
    margin: 0 auto;
  }
  .light .channels-copy { color: var(--mute-light); }
  .channels-chips {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  .chan-chip {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--bone);
    background: rgba(242, 237, 226, 0.07);
    border: 1px solid rgba(242, 237, 226, 0.16);
    border-radius: 12px;
    padding: 10px 18px;
  }
  .channels-stem {
    width: 2px;
    height: 32px;
    margin: 0 auto;
    background: repeating-linear-gradient(rgba(242, 237, 226, 0.35) 0 5px, transparent 5px 10px);
  }
  .channels-core {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--signal);
    color: #fff;
    border-radius: 999px;
    padding: 13px 28px;
    font-family: var(--mono);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 10px 30px -12px rgba(229, 39, 60, 0.7);
  }
