/* products.html */
    /* Full-width product figures — white framed mat, caption flush left (matches solutions) */
    .products-figure {
      margin: 0 0 56px;
    }
    .grid .products-figure {
      margin-bottom: 0;
      min-width: 0;
    }
    .products-figure-frame {
      padding: 10px;
      background: #fff;
      border: 1px solid var(--hairline);
      border-radius: 10px;
      box-shadow: var(--shadow-plate);
    }
    .products-figure-frame img {
      width: 100%;
      height: auto;
      max-width: 100%;
      display: block;
      border: 1px solid var(--hairline);
      border-radius: 6px;
      background: #fff;
    }
    .products-figure figcaption {
      margin-top: 14px;
      padding: 0;
      font-family: var(--font-mono);
      font-size: 12px;
      letter-spacing: 0.04em;
      color: var(--text-soft);
      text-align: left;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: flex-start;
      gap: 6px 20px;
    }
    .products-figure figcaption .text-link {
      font-family: var(--font-sans);
      font-size: 13.5px;
    }

    /* Nested module hierarchy — children sit under DAM / Registry, not peer products */
    .products-module {
      scroll-margin-top: 96px;
    }

    .products-sub {
      margin-top: 72px;
      padding-top: 56px;
      border-top: 1px solid var(--hairline);
      scroll-margin-top: 96px;
    }
    .products-sub .section-head {
      margin-bottom: 40px;
    }
    .products-sub--on-dark {
      border-top-color: var(--hairline-dark);
      margin-top: 64px;
      padding-top: 56px;
    }
    .on-dark .products-sub {
      border-top-color: var(--hairline-dark);
    }
    .on-dark .products-pill {
      border-color: var(--hairline-dark);
      background: var(--ink-2);
      color: var(--text-inverse);
    }

    /* Page-scoped: alternating media/text rows and checklists */
    .products-media { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .products-media > * { min-width: 0; }
    .products-media.flip > .products-copy { order: 2; }
    .products-shot { margin: 0; min-width: 0; }
    .products-shot img {
      width: 100%;
      height: auto;
      border: 1px solid var(--hairline);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-plate);
      background: #fff;
    }
    .products-shot figcaption { margin-top: 12px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: var(--text-soft); }
    .products-check {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px 40px;
    }
    .products-check li { position: relative; padding-left: 30px; font-size: 15.5px; line-height: 1.55; }
    .products-check li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--green); }
    .products-check li::after { content: ""; position: absolute; left: 5px; top: 10px; width: 8px; height: 4px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg); }
    .products-check strong { color: var(--ink); font-weight: 600; }
    .on-dark .products-check li { color: #C8D4E4; }
    .on-dark .products-check strong { color: #fff; }
    .products-pills { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
    .products-pill { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.06em; padding: 7px 14px; border: 1px solid var(--hairline); border-radius: 999px; background: var(--surface); color: var(--ink-2); }

    .page-hero-note {
      margin-top: 22px;
      font-size: 15px;
      color: rgba(255, 255, 255, 0.78);
    }
    .page-hero-note a {
      color: #fff;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .products-subhead {
      font-size: clamp(22px, 2.4vw, 28px);
      letter-spacing: -0.02em;
      margin: 0 0 12px;
      color: inherit;
    }
    .on-dark .products-subhead { color: #fff; }

    .badge-muted {
      border-color: rgba(12, 20, 36, 0.14);
      background: var(--surface);
      color: var(--text-soft);
    }
    .plate .badge,
    .plate .badge-early,
    .plate .badge-muted {
      margin-bottom: 14px;
    }

    .products-ai-grid {
      align-items: stretch;
    }
    .products-ai-card {
      display: flex;
      flex-direction: column;
    }
    .products-ai-card .products-check {
      margin: 8px 0 4px;
      grid-template-columns: 1fr;
    }
    .products-ai-card .products-check li {
      font-size: 14.5px;
      line-height: 1.55;
    }
    .products-ai-result {
      margin: 18px 0 14px;
      font-size: 15px;
      line-height: 1.6;
      color: var(--ink-2);
    }

    @media (max-width: 920px) {
      .products-media { grid-template-columns: 1fr; gap: 36px; }
      .products-media.flip > .products-copy { order: 0; }
      .products-check { grid-template-columns: 1fr; }
      .products-sub {
        margin-top: 56px;
        padding-top: 40px;
      }
    }
