.home-hero {
  min-height: min(570px, calc(100vh - var(--header-height)));
  display: grid;
  align-items: center;
}

.home-hero h1 {
  max-width: 18ch;
  font-size: clamp(2.25rem, 3.3vw, 3rem);
}

.syncrx-site .page-hero--dark .dual-title {
  color: var(--srx-panel);
}

.syncrx-site .home-hero .dual-title span,
.syncrx-site .page-hero--dark .dual-title span {
  color: var(--srx-accent-mint);
}

.hero-note {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, var(--srx-panel) 72%, transparent);
  font-family: var(--d-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.hero-note::before {
  width: 24px;
  height: 1px;
  background: var(--srx-accent-mint);
  content: "";
}

.context-strip {
  display: grid;
  padding-block: 16px;
  border-bottom: 1px solid var(--srx-line);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--srx-panel);
}

.credibility-section {
  padding-top: 0;
}

.credibility-section .product-proof {
  padding-top: var(--section-space);
}

.context-strip__item {
  display: grid;
  padding: 10px clamp(24px, 4vw, 48px);
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 16px;
}

.context-strip__item + .context-strip__item {
  border-left: 1px solid var(--srx-line);
}

.context-strip__item .icon {
  color: var(--srx-brand);
}

.context-strip__item strong {
  display: block;
  color: var(--srx-ink);
  font-size: 15px;
  font-weight: 600;
}

.context-strip__item span {
  display: block;
  margin-top: 2px;
  color: var(--srx-muted);
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
}

.split--top {
  align-items: start;
}

.split--reverse .split__media {
  order: -1;
}

.split__copy > :last-child {
  margin-bottom: 0;
}

.split__copy .proof-list,
.split__copy .check-list {
  margin-block: 22px;
}

.split__media {
  position: relative;
}

.media-panel {
  overflow: hidden;
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  background: var(--srx-panel);
  box-shadow: var(--shadow-product);
}

.media-panel img {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--srx-wash);
  object-fit: contain; /* product screens are never cropped (owner rule) */
}

.media-panel .syncrx-vector {
  aspect-ratio: 16 / 10;
}

.media-panel--flat {
  box-shadow: none;
}

.media-caption {
  display: flex;
  min-height: 46px;
  padding: 12px 16px;
  border-top: 1px solid var(--srx-line);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.media-caption span:last-child {
  color: var(--srx-brand-deep);
}

.workflow-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  background: var(--srx-panel);
}

.workflow-panel__content {
  padding: clamp(26px, 3.2vw, 44px);
}

.workflow-panel__visual {
  min-height: 360px;
  overflow: hidden;
  border-left: 1px solid var(--srx-line);
  background: var(--srx-wash);
}

.workflow-panel__visual img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* product screens are never cropped (owner rule) */
}

.workflow-panel__visual .syncrx-vector {
  height: 100%;
  min-height: 360px;
}

.vertical-steps {
  display: grid;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.vertical-steps li {
  position: relative;
  display: grid;
  min-height: 66px;
  padding: 10px 0 10px 36px;
  grid-template-columns: 1fr;
  align-items: center;
}

.vertical-steps li::before {
  position: absolute;
  z-index: 1;
  top: 25px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 3px solid var(--srx-panel);
  border-radius: 50%;
  background: var(--srx-brand);
  box-shadow: 0 0 0 1px var(--srx-brand);
  content: "";
}

.vertical-steps li:not(:last-child)::after {
  position: absolute;
  top: 36px;
  bottom: -25px;
  left: 5px;
  width: 1px;
  background: var(--srx-line-strong);
  content: "";
}

.vertical-steps strong {
  color: var(--srx-ink);
  font-size: 15px;
  font-weight: 600;
}

.vertical-steps span {
  color: var(--srx-muted);
  font-size: 14px;
}

.story-band {
  display: grid;
  padding: clamp(32px, 5vw, 64px);
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  background: var(--srx-panel);
}

.story-band__line {
  position: relative;
  height: 180px;
}

.story-band__line svg {
  width: 100%;
  height: 100%;
}

.story-band__line .node {
  fill: var(--srx-panel);
  stroke: var(--srx-brand);
  stroke-width: 2;
}

.handoff-section {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 20%, color-mix(in srgb, var(--srx-accent-mint) 12%, transparent) 0, transparent 34%),
    linear-gradient(145deg, var(--srx-panel) 0%, color-mix(in srgb, var(--srx-brand-soft) 62%, var(--srx-panel)) 100%);
}

.handoff-section::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -48%;
  width: min(44vw, 620px);
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--srx-brand) 12%, transparent);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.handoff-section .story-band {
  border-color: color-mix(in srgb, var(--srx-brand) 18%, var(--srx-line));
  background: color-mix(in srgb, var(--srx-panel) 94%, transparent);
  box-shadow: 0 30px 80px -68px color-mix(in srgb, var(--srx-brand-deep) 58%, transparent);
}

.story-band__visual {
  min-width: 0;
}

.handoff-flow-gradient__start {
  stop-color: var(--srx-brand-deep);
}

.handoff-flow-gradient__end {
  stop-color: var(--srx-accent-mint);
}

.handoff-stages {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.handoff-stages li {
  display: grid;
  gap: 4px;
  transition: opacity var(--motion-reveal) var(--ease-enterprise), transform var(--motion-reveal) var(--ease-enterprise);
}

.handoff-stages span {
  color: var(--srx-brand-deep);
  font-family: var(--d-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.handoff-stages strong {
  color: var(--srx-ink-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.motion-ready .handoff-stages:not(.is-active) li {
  opacity: 0.28;
  transform: translateY(10px);
}

.motion-ready .handoff-stages.is-active li:nth-child(2) { transition-delay: 140ms; }
.motion-ready .handoff-stages.is-active li:nth-child(3) { transition-delay: 280ms; }
.motion-ready .handoff-stages.is-active li:nth-child(4) { transition-delay: 420ms; }

.motion-ready .story-band__line .node {
  opacity: 1;
  transform: scale(1);
  transition: opacity 360ms var(--ease-enterprise), transform 360ms var(--ease-enterprise), fill 360ms ease;
}

.motion-ready .flow-path:not(.is-drawn) .node {
  opacity: 1;
  transform: none;
}

.motion-ready .flow-path.is-drawn .node {
  fill: color-mix(in srgb, var(--srx-accent-mint) 18%, var(--srx-panel));
}

.flow-particle {
  fill: var(--srx-accent-mint);
  stroke: var(--srx-panel);
  stroke-width: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms var(--ease-enterprise);
}

.flow-path.is-in-view .flow-particle {
  opacity: 0.88;
}

.motion-paused .flow-particle {
  opacity: 0.62;
}

.no-js .flow-particle {
  display: none;
}

.section--dark .story-band {
  border-color: color-mix(in srgb, var(--srx-panel) 17%, transparent);
  background: color-mix(in srgb, var(--srx-panel) 3.5%, transparent);
}

.section--dark .story-band h2,
.section--dark .story-band p {
  color: var(--srx-panel);
}

.section--dark .story-band .flow-path {
  color: var(--srx-accent-mint);
}

.section--dark .story-band__line .node {
  fill: var(--srx-chrome-deep);
  stroke: var(--srx-accent-mint);
}

.trust-evaluation {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.trust-evaluation::before {
  position: absolute;
  z-index: -1;
  top: -34%;
  right: -12%;
  width: min(58vw, 760px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--srx-accent-mint) 11%, transparent) 0, transparent 68%);
  content: "";
  pointer-events: none;
}

.trust-evaluation__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.74fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
}

.trust-evaluation__copy {
  max-width: 680px;
}

.trust-evaluation__copy h2 {
  color: var(--srx-panel);
}

.trust-evaluation__copy h2 span {
  color: var(--srx-accent-mint);
}

.trust-evaluation__copy .lead {
  color: color-mix(in srgb, var(--srx-panel) 78%, transparent);
}

.trust-evaluation__interim {
  max-width: 54ch;
  padding-left: 18px;
  border-left: 2px solid color-mix(in srgb, var(--srx-accent-mint) 62%, transparent);
}

.trust-evaluation__visual .media-panel {
  border-color: color-mix(in srgb, var(--srx-panel) 18%, transparent);
  background: color-mix(in srgb, var(--srx-chrome) 88%, var(--srx-brand-deep));
}

.trust-evaluation__visual img {
  aspect-ratio: 16 / 10;
}

.trust-evaluation__topics {
  display: grid;
  margin-top: clamp(30px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--srx-panel) 17%, transparent);
  border-radius: var(--radius-product);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: color-mix(in srgb, var(--srx-panel) 15%, transparent);
}

.trust-topic {
  display: grid;
  min-height: 184px;
  padding: clamp(22px, 2.4vw, 30px);
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
  background: color-mix(in srgb, var(--srx-chrome) 94%, var(--srx-brand-deep));
  transition: background-color var(--motion-micro) ease;
}

.trust-topic:hover {
  background: color-mix(in srgb, var(--srx-chrome) 87%, var(--srx-brand-deep));
}

.trust-topic__mark {
  display: grid;
  width: 40px;
  height: 44px;
  border: 1px solid color-mix(in srgb, var(--srx-accent-mint) 42%, transparent);
  border-radius: 48% 48% 52% 52% / 38% 38% 62% 62%;
  place-items: center;
  background: color-mix(in srgb, var(--srx-accent-mint) 10%, transparent);
  color: var(--srx-accent-mint);
}

.trust-topic__mark .icon {
  width: 19px;
  height: 19px;
}

.trust-topic__number {
  display: block;
  margin-bottom: 12px;
  color: var(--srx-accent-mint);
  font-family: var(--d-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.trust-topic h3 {
  margin-bottom: 10px;
  color: var(--srx-panel);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.trust-topic p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--srx-panel) 72%, transparent);
  font-size: 14px;
  line-height: 1.65;
}

.trust-evaluation__note {
  max-width: 92ch;
  margin: 22px 0 0;
  padding-left: 18px;
  border-left: 2px solid color-mix(in srgb, var(--srx-accent-mint) 62%, transparent);
  color: color-mix(in srgb, var(--srx-panel) 62%, transparent);
  font-size: 12px;
  line-height: 1.65;
}

.outcome-strip {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--srx-line);
}

.outcome-strip__item {
  display: grid;
  min-height: 168px;
  padding: clamp(24px, 3vw, 34px);
  grid-template-rows: 36px 1fr;
  align-content: start;
  gap: 24px;
  background: var(--srx-panel);
  color: var(--srx-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.45;
}

.outcome-strip__item .icon {
  color: var(--srx-brand);
}

.statement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--srx-line);
}

.statement {
  padding: clamp(26px, 3vw, 38px);
  background: var(--srx-panel);
}

.statement__number {
  display: block;
  margin-bottom: 36px;
  color: var(--srx-brand-deep);
  font-family: var(--d-font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.statement h3 {
  font-size: 20px;
}

.statement p:last-child {
  margin-bottom: 0;
}

.boundary-note {
  padding: 22px 24px;
  border-left: 3px solid var(--srx-brand);
  border-radius: 0 var(--radius-control) var(--radius-control) 0;
  background: var(--srx-brand-soft);
  color: var(--srx-ink-secondary);
}

.boundary-note strong {
  color: var(--srx-ink);
}

.review-matrix {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  background: var(--srx-panel);
}

.review-row {
  display: grid;
  min-height: 100px;
  padding: 24px 28px;
  grid-template-columns: 54px minmax(180px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.review-row + .review-row {
  border-top: 1px solid var(--srx-line);
}

.review-row__icon {
  display: grid;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
  background: var(--srx-brand-soft);
  color: var(--srx-brand-deep);
}

.review-row h3 {
  margin: 9px 0 0;
  font-size: 18px;
}

.review-row p {
  margin: 7px 0 0;
}

.demo-hero {
  background:
    radial-gradient(circle at 88% 18%, color-mix(in srgb, var(--srx-brand-soft) 72%, transparent) 0, transparent 38%),
    var(--srx-paper);
}

.demo-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.56fr);
  align-items: end;
  gap: clamp(32px, 4.5vw, 72px);
}

.demo-hero__copy {
  max-width: 820px;
}

.demo-hero__copy h1 {
  max-width: 17ch;
}

.demo-hero__brief {
  padding-left: clamp(28px, 4vw, 48px);
  border-left: 1px solid var(--srx-line-strong);
}

.demo-hero__brief > p:not(.demo-hero__brief-label) {
  margin-bottom: 0;
  font-size: 15px;
}

.demo-hero__brief-label {
  margin-bottom: 14px;
  color: var(--srx-brand-deep);
  font-family: var(--d-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-hero__brief-list {
  margin: 22px 0 0;
  border-top: 1px solid var(--srx-line);
}

.demo-hero__brief-list div {
  display: grid;
  padding-block: 13px;
  border-bottom: 1px solid var(--srx-line);
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
}

.demo-hero__brief-list dt {
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.demo-hero__brief-list dd {
  margin: 0;
  color: var(--srx-ink);
  font-size: 14px;
  font-weight: 600;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.demo-brief {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.demo-brief h2 {
  max-width: 18ch;
  font-size: clamp(28px, 3vw, 40px);
}

.demo-expectations {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--srx-line-strong);
  list-style: none;
}

.demo-expectations li {
  display: grid;
  padding-block: 16px;
  border-bottom: 1px solid var(--srx-line);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  color: var(--srx-ink-secondary);
  font-size: 15px;
  line-height: 1.55;
}

.demo-expectations strong {
  display: block;
  margin-bottom: 3px;
  color: var(--srx-ink);
  font-weight: 650;
}

.demo-expectations__number {
  padding-top: 2px;
  color: var(--srx-brand-deep);
  font-family: var(--d-font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.demo-brief__visual {
  margin-top: 36px;
}

.demo-brief__visual figcaption {
  padding: 12px 15px 14px;
  border-top: 1px solid var(--srx-line);
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 10px;
  letter-spacing: 0.025em;
  line-height: 1.5;
}

.demo-privacy-note {
  display: grid;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid color-mix(in srgb, var(--srx-brand) 24%, var(--srx-line));
  border-radius: var(--radius-control);
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  background: color-mix(in srgb, var(--srx-brand-soft) 56%, var(--srx-panel));
}

.demo-privacy-note__icon {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  background: var(--srx-panel);
  color: var(--srx-brand-deep);
}

.demo-privacy-note__icon .icon {
  width: 17px;
  height: 17px;
}

.demo-privacy-note p {
  margin: 0;
  color: var(--srx-ink-secondary);
  font-size: 13px;
  line-height: 1.55;
}

.demo-privacy-note strong {
  display: block;
  margin-bottom: 2px;
  color: var(--srx-ink);
}

.demo-privacy-note a {
  color: var(--srx-brand-deep);
  font-weight: 600;
  text-underline-offset: 3px;
}

.demo-form-shell {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--srx-line-strong);
  border-radius: var(--radius-product);
  background: var(--srx-panel);
  box-shadow: var(--shadow-low);
}

.demo-form-shell h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.demo-form-shell__intro {
  margin: 12px 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--srx-line);
  color: var(--srx-muted);
  font-size: 14px;
}

.demo-form-shell .button {
  margin-top: 8px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
}

.demo-process .section-intro {
  max-width: 760px;
}

.demo-process .process-step {
  min-height: 230px;
}

@media (max-width: 1024px) {
  .demo-hero__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .demo-hero__brief {
    max-width: 700px;
    padding: 28px 0 0;
    border-top: 1px solid var(--srx-line-strong);
    border-left: 0;
  }

  .demo-brief {
    position: static;
  }
}

@media (max-width: 767px) {
  .demo-hero__grid {
    gap: 34px;
  }

  .demo-hero__brief-list div {
    grid-template-columns: 70px minmax(0, 1fr);
  }

  .demo-brief h2 {
    max-width: none;
  }

  .demo-form-shell {
    padding: 26px 20px;
  }

  .demo-process .process-step {
    min-height: 0;
  }
}

.resource-empty {
  display: grid;
  min-height: 360px;
  padding: clamp(28px, 4vw, 56px);
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-product);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 36px;
  background: var(--srx-panel);
}

.resource-empty__visual img {
  width: 100%;
  border-radius: var(--radius-card);
}

.resource-empty__visual .syncrx-vector {
  border: 1px solid var(--srx-line);
  border-radius: var(--radius-card);
}

/* Interim legal pages — draft-for-review scaffold on the open reading column. */
.legal-status {
  margin: 14px 0 0;
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.legal-draft-band {
  padding-block: clamp(28px, 4vw, 44px);
}

.legal-draft-band .boundary-note p {
  margin: 0;
}

.legal-scaffold-section {
  padding-top: 0;
}

.legal-scaffold article + article {
  margin-top: clamp(28px, 4vw, 44px);
  padding-top: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--srx-line);
}

.legal-scaffold h2 {
  font-size: 20px;
}

.legal-scaffold p:last-child {
  margin-bottom: 0;
}

.legal-pending {
  color: var(--srx-brand-deep);
  font-family: var(--d-font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .context-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .context-strip__item + .context-strip__item {
    border-left: 0;
  }

  .context-strip__item:nth-child(even) {
    border-left: 1px solid var(--srx-line);
  }

  .context-strip__item:nth-child(n + 3) {
    border-top: 1px solid var(--srx-line);
  }

  .split,
  .workflow-panel,
  .story-band,
  .demo-layout,
  .resource-empty {
    grid-template-columns: 1fr;
  }

  .split--reverse .split__media {
    order: 0;
  }

  .workflow-panel__visual {
    min-height: 300px;
    border-top: 1px solid var(--srx-line);
    border-left: 0;
  }

  .statement-grid {
    grid-template-columns: 1fr;
  }

  .trust-evaluation__intro {
    grid-template-columns: 1fr;
  }

  .trust-evaluation__visual {
    width: min(100%, 720px);
  }

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

@media (max-width: 767px) {
  .home-hero {
    min-height: auto;
  }

  .context-strip__item {
    padding-inline: var(--gutter);
  }

  .context-strip {
    grid-template-columns: 1fr;
  }

  .context-strip__item:nth-child(even) {
    border-left: 0;
  }

  .context-strip__item + .context-strip__item {
    border-top: 1px solid var(--srx-line);
  }

  .media-panel img {
    aspect-ratio: 4 / 3;
  }

  .workflow-panel__visual {
    min-height: 240px;
  }

  .story-band__line {
    height: 130px;
  }

  .handoff-stages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
  }

  .review-row {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .review-row p {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .trust-evaluation__topics {
    grid-template-columns: 1fr;
  }

  .trust-topic {
    min-height: 0;
    padding: 26px 22px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 16px;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip__item {
    min-height: 0;
    grid-template-columns: 34px 1fr;
    grid-template-rows: auto;
    align-items: center;
    gap: 16px;
  }

  .resource-empty {
    min-height: 0;
    padding: 24px;
    gap: 32px;
  }
}

@media (max-width: 420px) {
  .trust-topic {
    padding: 22px 18px;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 12px;
  }

  .trust-topic__mark {
    width: 36px;
    height: 36px;
  }

  .review-row {
    padding: 22px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .handoff-stages:not(.is-active) li,
  .motion-ready .flow-path:not(.is-drawn) .node {
    opacity: 1;
    transform: none;
  }

  .flow-particle {
    display: none;
  }
}

/* Enterprise v2 page rhythm and original-product evidence. */
.page-hero--dark::after {
  position: absolute;
  top: -32%;
  right: -14%;
  width: min(58vw, 860px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--srx-accent-mint) 16%, transparent) 0, transparent 68%);
  content: "";
  pointer-events: none;
}

.page-hero--dark .page-hero__grid {
  position: relative;
  z-index: 1;
}

.product-frame img {
  aspect-ratio: 25 / 16;
  object-fit: contain;
}

.product-frame .syncrx-vector {
  aspect-ratio: 25 / 16;
}

.audience-card {
  min-height: 430px;
}

.audience-card__visual {
  min-height: 200px;
}

.audience-card__visual img {
  aspect-ratio: 16 / 9;
}

.audience-card__visual .syncrx-vector {
  aspect-ratio: 16 / 9;
}

.section--wash {
  background: linear-gradient(180deg, var(--srx-wash) 0%, color-mix(in srgb, var(--srx-wash) 76%, var(--srx-panel)) 100%);
}

.section--product-proof {
  overflow: hidden;
  padding-block: var(--section-space);
  border-block: 1px solid color-mix(in srgb, var(--srx-brand) 12%, var(--srx-line));
  background:
    radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--srx-accent-mint) 11%, transparent) 0, transparent 34%),
    linear-gradient(150deg, var(--srx-panel) 0%, color-mix(in srgb, var(--srx-brand-soft) 72%, var(--srx-paper)) 100%);
}

.product-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 64px);
}

.product-proof--compact {
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 0.7fr);
}

.product-proof__copy .proof-list {
  margin-top: 22px;
}

.product-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--srx-brand) 24%, var(--srx-line));
  border-radius: 24px;
  background: var(--srx-panel);
  box-shadow: 0 30px 70px -42px color-mix(in srgb, var(--srx-chrome-deep) 50%, transparent);
}

.product-shot > img {
  width: 100%;
  object-fit: contain; /* product screens are never cropped (owner rule) */
}

.product-shot__chrome {
  display: flex;
  min-height: 42px;
  padding: 10px 15px;
  border-bottom: 1px solid var(--srx-line);
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--srx-panel) 90%, var(--srx-wash));
}

.product-shot__chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--srx-line-strong);
}

.product-shot__chrome b {
  margin-left: auto;
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.product-shot figcaption {
  padding: 11px 15px 13px;
  border-top: 1px solid var(--srx-line);
  color: var(--srx-muted);
  font-family: var(--d-font-mono);
  font-size: 10px;
  letter-spacing: 0.025em;
}

.product-shot--auth {
  width: min(100%, 520px);
  justify-self: end;
}

.product-shot--auth > img {
  aspect-ratio: 631 / 482; /* natural ratio of platform-two-factor-original.png */
  object-fit: contain; /* product screens are never cropped (owner rule) */
}

.icon-card,
.statement,
.review-row,
.process-step {
  transition: border-color var(--motion-micro) ease, background-color var(--motion-micro) ease, box-shadow var(--motion-component) var(--ease-enterprise);
}

.review-row:hover,
.statement:hover {
  background: color-mix(in srgb, var(--srx-brand-soft) 32%, var(--srx-panel));
}

.process-step:hover {
  background: color-mix(in srgb, var(--srx-brand-soft) 22%, transparent);
}

@media (max-width: 1024px) {
  .product-proof,
  .product-proof--compact {
    grid-template-columns: 1fr;
  }

  .product-shot--auth {
    width: min(100%, 620px);
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .audience-card {
    min-height: 0;
  }

  .audience-card__visual {
    min-height: 190px;
  }

  .product-shot {
    border-radius: 18px;
  }

  .product-shot__chrome b {
    max-width: 70%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-card,
  .statement,
  .review-row,
  .process-step {
    transition: none;
  }
}

/* ==========================================================================
   SUB-PAGE SYSTEM PASS — single CSS-owner block (post home v1.6 rebuild)
   Needs reported by the five page rebuilds: for-prescribers, for-pharmacies,
   security-compliance, resources, book-a-demo. Approved palette only
   (#237733 / #1E756D / #182220 / #F7F4EE via tokens + color-mix tints).
   NOTE — load order: home-15.css is enqueued AFTER this file, so every rule
   here that adjusts a home-15 pattern must win by SPECIFICITY, not order.
   Anchored scrolls (e.g. #prescriber-workflow) need no per-page rule:
   design-system.css already sets a global scroll-padding-top of
   calc(var(--header-height) + 24px) on the root element.
   ========================================================================== */

/* --- 1. Statement hero, sub-page variant (for-prescribers) ----------------
   The dark band stays reserved for each page's final CTA (owner decision:
   at most one dark section per page), so the sub-page statement hero moves
   onto the warm-paper canvas and steps down one size. The decorative
   hairline circles swap their panel-white stroke for a faint brand tint so
   they remain visible on paper. */
.page-hero--statement.page-hero--sub {
  padding: clamp(40px, 4.6vw, 64px) 0 clamp(28px, 3.4vw, 44px);
  background: var(--srx-paper);
  color: var(--srx-ink);
}

.page-hero--statement.page-hero--sub::before,
.page-hero--statement.page-hero--sub::after {
  border-color: color-mix(in srgb, var(--srx-brand) 12%, transparent);
}

.page-hero--sub .statement-hero__copy .eyebrow {
  color: var(--srx-brand-deep);
}

.page-hero--sub .statement-hero__copy h1 {
  color: var(--srx-ink);
  font-size: clamp(2rem, 3vw, 2.6rem);
}

.syncrx-site .page-hero--sub .statement-hero__copy .dual-title span {
  color: var(--srx-brand);
}

.page-hero--sub .statement-hero__copy .lead {
  color: var(--srx-ink-secondary);
}

/* Buttons revert from the dark-hero inversions to the standard pair. */
.page-hero--statement.page-hero--sub .button--primary {
  border-color: var(--srx-brand);
  background: var(--srx-brand);
  color: var(--srx-panel);
}

.page-hero--statement.page-hero--sub .button--primary:hover,
.page-hero--statement.page-hero--sub .button--primary:focus-visible {
  border-color: var(--srx-brand-deep);
  background: var(--srx-brand-deep);
  color: var(--srx-panel);
}

.page-hero--statement.page-hero--sub .button--secondary {
  border-color: var(--srx-line-strong);
  background: transparent;
  color: var(--srx-brand-deep);
}

.page-hero--statement.page-hero--sub .button--secondary:hover,
.page-hero--statement.page-hero--sub .button--secondary:focus-visible {
  border-color: var(--srx-brand);
  background: var(--srx-panel);
  color: var(--srx-brand-deep);
}

/* Quieter product stage: capped a step below the homepage's 980px. */
.page-hero--sub .statement-hero__product {
  width: min(100%, 860px);
  margin-top: clamp(24px, 3vw, 36px);
}

.page-hero--sub .statement-hero__product figcaption {
  color: var(--srx-muted);
}

/* Mono hero note on the warm-paper hero: ink text, brand tick.
   (Base .hero-note earlier in this file is panel-colored for dark heroes;
   same specificity, this later rule wins within pages.css.) */
.hero-note--ink {
  color: color-mix(in srgb, var(--srx-ink) 70%, transparent);
}

.hero-note--ink::before {
  background: var(--srx-brand);
}

/* --- 2. Security hero auth window (security-compliance) -------------------
   platform-two-factor-original.png is the one squarer original (631x482);
   the shared 1917/865 stage letterboxes it heavily, so this variant gives
   the stage the screen's natural ratio and caps the window so it reads as
   an auth dialog rather than a stretched dashboard. Frames keep the
   component's object-fit: contain — never cropped. */
.product-media--auth {
  width: min(100%, 560px);
  margin-inline: auto;
}

.product-media--auth .product-media__stage {
  aspect-ratio: 631 / 482;
}

/* --- 2b. Security hero brandline (security-compliance) --------------------
   The original transparent logo mark at eyebrow scale beside the page
   eyebrow — a small identity cue for the trust page, never a watermark.
   A vertical hairline separates mark and label, keeping the boxless
   hairline language; contain-fit comes from the .brand-mark base. */
.page-hero__brandline {
  display: flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 14px;
}

.page-hero__brandline .brand-mark {
  width: 44px;
  height: 32px;
  border-radius: 0;
}

.page-hero__brandline .eyebrow {
  margin-bottom: 0;
  padding-left: 14px;
  border-left: 1px solid var(--srx-line);
}

/* --- 3. Boxless review matrix (security-compliance) -----------------------
   Ledger treatment to match the homepage's hairline bars: rows sit directly
   on the warm paper with no outer card. Row separation already comes from
   the .review-row + .review-row hairline; the group keeps top and bottom
   hairlines so it still reads as one ledger. */
.review-matrix--open {
  overflow: visible;
  border: 0;
  border-block: 1px solid var(--srx-line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.review-matrix--open .review-row {
  padding-inline: 4px;
}

/* --- 4. Book-a-demo -------------------------------------------------------
   4a. The compact hero's bottom hairline sat directly on the attached
       credibility bar beneath it, doubling to ~2px. */
.demo-hero.page-hero--compact {
  border-bottom: 0;
}

/* 4b. Center the AI boundary line under the centered coverage strip
       (element reuses .ai-day__boundary type styles from home-15.css;
        this 2-class rule outranks that 1-class rule). */
.demo-coverage .demo-coverage__boundary {
  max-width: 640px;
  margin: 18px auto 0;
  text-align: center;
}

/* 4c. Quiet "pending" form status — informational, neither success
       nor error. */
.form-status--pending {
  border-color: var(--srx-line-strong);
  background: var(--srx-wash);
  color: var(--srx-muted);
  font-size: 14px;
}
