/* XY-DC solution only. Shared solution components remain in solution-layout.css. */
.capture-page main {
  padding-top: clamp(32px, 4.5vw, 56px);
}

.capture-page .hero h1 {
  max-width: 22ch;
}

.capture-page .capture-thesis {
  max-width: none;
  margin: 0 0 20px;
  color: #144acb;
  font-size: var(--type-lead);
  font-weight: 700;
  line-height: 1.25;
}

.capture-page .answer-summary p {
  margin: 8px 0 0;
}

.capture-page .section-heading .eyebrow {
  margin-bottom: 12px;
}

.capture-page :where(section[id], article[id]) {
  scroll-margin-top: 100px;
}

.capture-page :where(summary, [tabindex="0"]):focus-visible {
  outline: 3px solid #1a5cff;
  outline-offset: 4px;
}

.capture-architecture {
  margin: 0;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #c9d9ef;
  border-radius: 8px;
  background: #f4f8ff;
}

.capture-architecture figcaption {
  margin-bottom: 24px;
  color: #0f2747;
}

.capture-architecture figcaption strong,
.capture-architecture figcaption span {
  display: block;
}

.capture-architecture figcaption strong {
  font-size: var(--type-h3);
  line-height: 1.3;
}

.capture-architecture figcaption span {
  margin-top: 5px;
  color: #405773;
  font-size: 14px;
}

.capture-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--layout-grid-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.capture-flow li {
  position: relative;
  min-width: 0;
  padding: 20px 18px;
  border: 1px solid #cbd9ed;
  border-radius: 6px;
  background: #fff;
}

.capture-flow li:not(:last-child)::after {
  content: "\2192";
  position: absolute;
  top: 50%;
  right: -25px;
  color: #1a5cff;
  font-size: var(--type-h3);
  line-height: 1;
  transform: translateY(-50%);
}

.capture-number {
  display: block;
  margin-bottom: 12px;
  color: #1550da;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capture-flow h3 {
  margin: 0 0 10px;
  color: #132c4b;
  font-size: 18px;
  line-height: 1.3;
}

.capture-flow p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.55;
}

.capture-architecture-note {
  margin: 22px 0 0;
  color: #405773;
  font-size: 14px;
}

.capture-table-wrap {
  max-width: 100%;
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid #d8e1ed;
  border-radius: 8px;
}

.capture-comparison {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: 15px;
  line-height: 1.55;
  text-align: left;
}

.capture-comparison caption {
  padding: 18px 20px;
  background: #f8fafc;
  color: #142b48;
  font-weight: 700;
  text-align: left;
}

.capture-comparison :where(th, td) {
  padding: 18px 20px;
  border-top: 1px solid #d8e1ed;
  vertical-align: top;
}

.capture-comparison thead th {
  background: #edf3fc;
  color: #193961;
}

.capture-comparison tbody th {
  width: 20%;
  color: #182b45;
}

.capture-comparison td {
  width: 40%;
  color: #334155;
}

.capture-requirements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capture-validation {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #d8e1ed;
}

.capture-validation h4 {
  margin: 0 0 6px;
  color: #1c426c;
  font-size: 14px;
  line-height: 1.4;
}

.capture-platforms {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capture-page .closing .eyebrow {
  margin-bottom: 12px;
  color: #b7d5ff;
}

.capture-page .closing h2 {
  max-width: 24ch;
}

@media (max-width: 960px) {
  .capture-flow {
    grid-template-columns: 1fr;
    gap: var(--layout-grid-gap);
  }

  .capture-flow li:not(:last-child)::after {
    content: "\2193";
    top: auto;
    right: auto;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .capture-requirements,
  .capture-platforms {
    grid-template-columns: 1fr;
  }

  .capture-page .hero h1 {
    font-size: var(--type-h1);
  }

  .capture-page .hero-actions :where(.cta, .secondary-cta) {
    padding: 14px 18px;
    line-height: 1.4;
  }
}
