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

  /* ── Hero ── */
  .comp-hero {
    padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  }
  .comp-hero .eyebrow { margin-bottom: clamp(24px, 3vw, 36px); }
  .comp-hero .h1 {
    max-width: 16ch;
    margin-bottom: clamp(24px, 3vw, 36px);
  }
  .comp-hero .lede { color: var(--mute-dark); }

  /* ── Copy + visual grid ── */
  .comp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 4vw, 56px);
    align-items: start;
  }
  @media (min-width: 940px) {
    .comp-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(56px, 6vw, 96px); }
    .comp-grid > .mock-figure,
    .comp-grid > .convo,
    .comp-grid > .xchat {
      position: sticky;
      top: 96px;
      margin-top: 48px;
    }
  }

  /* ── Section rhythm (matches the /agents use-case sections) ── */
  .comp-section .eyebrow { letter-spacing: 0.28em; font-weight: 700; margin-bottom: 16px; }
  .comp-section .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);
  }
  .comp-section-copy {
    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 .comp-section-copy { color: rgba(12, 34, 64, 0.8); }

  /* Fact list with red-square bullets (as on /agents). */
  .comp-copy .fact-list {
    background-image: none;
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 0;
  }
  .comp-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 .comp-copy .fact-list li { color: rgba(12, 34, 64, 0.8); }
  .comp-copy .fact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--signal);
  }

  /* ── Event-record panel rows (reuses .guard-panel/head/foot) ── */
  .evrec-body {
    padding: 14px 18px 16px;
    font-family: var(--mono);
    font-size: 11.5px;
    line-height: 1.6;
  }
  .evrec-row {
    display: flex;
    gap: 14px;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(12, 34, 64, 0.08);
  }
  .evrec-row:last-child { border-bottom: none; }
  .evrec-time { color: var(--signal); font-weight: 700; flex: 0 0 auto; }
  .evrec-text { color: rgba(12, 34, 64, 0.8); }

  /* ── Related documents row ── */
  .related-docs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 28px;
    margin-top: clamp(28px, 3vw, 40px);
    padding-top: 20px;
    border-top: 1px solid var(--hairline-light);
  }
  .related-docs-label {
    font-family: var(--mono);
    font-weight: 500;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute-light);
  }
  .related-docs a {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: -0.005em;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted var(--signal);
    padding-bottom: 1px;
    transition: color 0.15s;
  }
  .related-docs a:hover { color: var(--signal); }
