.online-print-page {
  --op-blue: #0877e6;
  --op-blue-dark: #075fbd;
  --op-ink: #17191d;
  --op-muted: #626a75;
  --op-line: #e5e9ef;
  --op-paper: #fbfaf8;
  --op-blue-wash: #f1f7ff;
  --op-radius: 12px;
  color: var(--op-ink);
  background: #fff;
}

.online-print-page main { overflow: hidden; }
.online-print-page .site-header {
  background: rgba(255,255,255,.96);
  border-bottom-color: #edf0f4;
  box-shadow: none;
}

.op-shell {
  width: min(calc(100% - 48px),1180px);
  margin: 0 auto;
}

.op-hero {
  display: grid;
  grid-template-columns: minmax(0,49fr) minmax(520px,51fr);
  min-height: 640px;
  background: var(--op-paper);
}

.op-hero-copy {
  align-self: center;
  width: auto;
  margin-left: max(32px,calc((100vw - 1180px)/2));
  padding: 58px 28px 66px 0;
}

.op-breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 42px;
  color: #8a9099;
  font-size: 13px;
}

.op-breadcrumbs a { color: inherit; }
.op-breadcrumbs a:hover { color: var(--op-blue); }

.op-eyebrow {
  margin: 0 0 17px;
  color: var(--op-blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .015em;
}

.op-hero h1 {
  margin: 0;
  color: var(--op-ink);
  font-size: clamp(46px,3.55vw,52px);
  font-weight: 720;
  letter-spacing: -.055em;
  line-height: 1.09;
}

.op-lead {
  max-width: 540px;
  margin: 25px 0 0;
  color: var(--op-muted);
  font-size: 17px;
  line-height: 1.82;
}

.op-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.op-actions .button-primary {
  min-width: 154px;
  min-height: 50px;
  border: 0;
  border-radius: 10px;
  background: var(--op-blue);
  box-shadow: 0 10px 24px rgba(8,119,230,.2);
  cursor: pointer;
}

.op-actions .button-primary:hover {
  background: var(--op-blue-dark);
  transform: translateY(-1px);
}

.op-text-link {
  position: relative;
  color: var(--op-blue);
  font-size: 15px;
  font-weight: 650;
}

.op-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.op-text-link:hover::after { transform: scaleX(1); }

.op-hero-media {
  min-height: 640px;
  overflow: hidden;
}

.op-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 53% center;
}

.op-process {
  padding: 70px 0 76px;
  border-bottom: 1px solid var(--op-line);
  background: #fff;
}

.op-section-heading {
  max-width: 660px;
  margin-bottom: 42px;
}

.op-section-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.op-section-heading h2,
.op-story-copy h2,
.op-delivery-copy h2 {
  margin: 0;
  color: var(--op-ink);
  font-size: clamp(34px,3.3vw,48px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.13;
}

.op-section-heading p {
  margin: 14px 0 0;
  color: var(--op-muted);
  font-size: 16px;
  line-height: 1.7;
}

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

.op-process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  min-width: 0;
  padding: 8px 28px 8px 0;
}

.op-process-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 14px;
  width: 34px;
  height: 1px;
  background: #b9cce2;
}

.op-process-list li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--op-blue);
  font-size: 12px;
  font-weight: 760;
}

.op-process-list h3 {
  margin: 1px 0 8px;
  color: var(--op-ink);
  font-size: 18px;
  font-weight: 680;
}

.op-process-list p {
  margin: 0;
  color: var(--op-muted);
  font-size: 13px;
  line-height: 1.65;
}

.op-story {
  padding: 100px 0;
  background: #fff;
}

.op-story-alt { padding-top: 0; }

.op-story-grid {
  display: grid;
  grid-template-columns: minmax(0,.78fr) minmax(520px,1.22fr);
  gap: clamp(54px,7vw,104px);
  align-items: center;
}

.op-story-alt .op-story-grid {
  grid-template-columns: minmax(520px,1.22fr) minmax(0,.78fr);
}

.op-story-copy { max-width: 450px; }

.op-story-copy > p:not(.op-eyebrow),
.op-delivery-copy > p:not(.op-eyebrow) {
  margin: 22px 0 0;
  color: var(--op-muted);
  font-size: 16px;
  line-height: 1.82;
}

.op-story-copy ul,
.op-delivery-copy ul {
  display: grid;
  gap: 11px;
  margin: 27px 0 0;
  padding-left: 20px;
  color: #404852;
  font-size: 15px;
  line-height: 1.55;
}

.op-story-copy li::marker,
.op-delivery-copy li::marker { color: var(--op-blue); }

.op-story-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--op-radius);
  box-shadow: 0 24px 60px rgba(26,46,72,.12);
}

.op-story-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 480ms ease;
}

.op-story-media:hover img { transform: scale(1.015); }

.op-scenarios {
  padding: 96px 0 104px;
  background: var(--op-paper);
}

.op-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 18px;
}

.op-scenario-grid article {
  overflow: hidden;
  border-radius: var(--op-radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(34,46,60,.07);
}

.op-scenario-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1.35/1;
  object-fit: cover;
}

.op-scenario-grid div { padding: 20px 21px 22px; }
.op-scenario-grid h3 {
  margin: 0;
  color: var(--op-ink);
  font-size: 17px;
  font-weight: 680;
}
.op-scenario-grid p {
  margin: 7px 0 0;
  color: var(--op-muted);
  font-size: 13px;
}

.op-delivery {
  padding: 94px 0;
  background: #fff;
}

.op-delivery-inner {
  position: relative;
  display: grid;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--op-radius);
  background: var(--op-blue-wash);
}

.op-delivery-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  width: min(48%,500px);
  padding: 58px 0 58px 62px;
}

.op-delivery-inner > img {
  position: absolute;
  top: 0;
  right: 0;
  width: 64%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: multiply;
  opacity: .84;
  mask-image: linear-gradient(to right,transparent 0%,#000 30%);
  -webkit-mask-image: linear-gradient(to right,transparent 0%,#000 30%);
}

.op-faq {
  padding: 96px 0 86px;
  border-top: 1px solid var(--op-line);
  background: #fff;
}

.op-faq .op-section-heading { margin-bottom: 30px; }

.op-faq-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 0 36px;
  border-top: 1px solid var(--op-line);
}

.op-faq-grid details { border-bottom: 1px solid var(--op-line); }
.op-faq-grid summary {
  position: relative;
  padding: 23px 34px 23px 0;
  cursor: pointer;
  color: var(--op-ink);
  font-size: 16px;
  font-weight: 650;
  list-style: none;
}
.op-faq-grid summary::-webkit-details-marker { display: none; }
.op-faq-grid summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--op-blue);
  font-size: 22px;
  font-weight: 400;
}
.op-faq-grid details[open] summary::after { content: "−"; }
.op-faq-grid p {
  max-width: 500px;
  margin: -5px 0 24px;
  color: var(--op-muted);
  font-size: 14px;
  line-height: 1.75;
}

.op-related {
  padding: 72px 0 82px;
  background: var(--op-paper);
}

.op-related .op-section-heading { margin-bottom: 28px; }
.op-related-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 14px;
}
.op-related-grid a {
  min-width: 0;
  padding: 23px 24px;
  border: 1px solid var(--op-line);
  border-radius: var(--op-radius);
  background: #fff;
  transition: border-color 180ms ease,box-shadow 180ms ease,transform 180ms ease;
}
.op-related-grid a:hover {
  border-color: rgba(8,119,230,.35);
  box-shadow: 0 14px 30px rgba(28,50,74,.08);
  transform: translateY(-2px);
}
.op-related-grid strong,.op-related-grid span { display: block; }
.op-related-grid strong {
  color: var(--op-ink);
  font-size: 16px;
  font-weight: 680;
}
.op-related-grid span {
  margin-top: 8px;
  color: var(--op-muted);
  font-size: 13px;
  line-height: 1.6;
}

.op-qr-popover[hidden] { display: none; }
.op-qr-popover {
  position: fixed;
  z-index: 1400;
  top: 84px;
  right: 28px;
  width: 304px;
  padding: 18px;
  color: var(--op-ink);
  border: 1px solid rgba(20,38,60,.12);
  border-radius: var(--op-radius);
  background: rgba(255,255,255,.98);
  box-shadow: 0 24px 64px rgba(18,38,62,.2);
  animation: op-qr-in 220ms ease-out both;
}

.op-qr-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.op-qr-head p {
  margin: 0 0 4px;
  color: var(--op-blue);
  font-size: 12px;
  font-weight: 700;
}
.op-qr-head h2 {
  margin: 0;
  color: var(--op-ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.025em;
}
.op-qr-head button {
  flex: 0 0 auto;
  min-width: 48px;
  min-height: 36px;
  padding: 0 10px;
  color: #66707b;
  border: 1px solid var(--op-line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
}
.op-qr-head button:hover {
  color: var(--op-blue);
  border-color: rgba(8,119,230,.35);
  background: var(--op-blue-wash);
}
.op-qr-popover > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #eef0f3;
  border-radius: 10px;
  background: #fff;
}
.op-qr-help {
  margin: 12px 0 0;
  color: var(--op-muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@keyframes op-qr-in {
  from { opacity: 0; transform: translateX(18px) scale(.98); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.online-print-page a:focus-visible,
.online-print-page button:focus-visible,
.online-print-page summary:focus-visible {
  outline: 3px solid rgba(8,119,230,.35);
  outline-offset: 4px;
}

@media (max-width:980px) {
  .op-hero { grid-template-columns: 1fr; }
  .op-hero-copy {
    width: min(calc(100% - 48px),720px);
    margin: 0 auto;
    padding: 70px 0 54px;
  }
  .op-hero-media,.op-hero-media img { min-height: 470px; }
  .op-breadcrumbs { margin-bottom: 30px; }
  .op-process-list {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 34px 28px;
  }
  .op-process-list li:nth-child(2)::after { display: none; }
  .op-story-grid,.op-story-alt .op-story-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 42px;
  }
  .op-story-alt .op-story-grid { grid-template-columns: 1.2fr 1fr; }
  .op-scenario-grid,.op-related-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .op-delivery-copy { width: 56%; padding-left: 42px; }
}

@media (max-width:720px) {
  .op-shell { width: min(calc(100% - 40px),600px); }
  .op-hero { min-height: 0; }
  .op-hero-copy {
    width: min(calc(100% - 40px),600px);
    padding: 48px 0 44px;
  }
  .op-breadcrumbs { margin-bottom: 28px; }
  .op-hero h1 { font-size: clamp(37px,10.8vw,50px); line-height: 1.1; }
  .op-lead { margin-top: 20px; font-size: 16px; line-height: 1.72; }
  .op-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
    margin-top: 28px;
  }
  .op-hero-media,.op-hero-media img { min-height: 320px; }
  .op-hero-media img { object-position: 57% center; }
  .op-process { padding: 62px 0 66px; }
  .op-section-heading { margin-bottom: 34px; }
  .op-section-heading h2,.op-story-copy h2,.op-delivery-copy h2 { font-size: 34px; }
  .op-process-list { grid-template-columns: 1fr; gap: 24px; }
  .op-process-list li { padding-right: 0; }
  .op-process-list li::after { display: none; }
  .op-story,.op-story-alt { padding: 72px 0 0; }
  .op-story-alt { padding-bottom: 76px; }
  .op-story-grid,.op-story-alt .op-story-grid { grid-template-columns: 1fr; gap: 38px; }
  .op-story-alt .op-story-media { order: 2; }
  .op-story-copy { max-width: none; }
  .op-scenarios { padding: 72px 0 78px; }
  .op-scenario-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
  .op-scenario-grid div { padding: 16px; }
  .op-delivery { padding: 72px 0; }
  .op-delivery-inner { display: block; min-height: 0; }
  .op-delivery-copy { width: auto; padding: 38px 28px 32px; }
  .op-delivery-inner > img {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 1.75/1;
    object-fit: cover;
    opacity: 1;
    mask-image: none;
    -webkit-mask-image: none;
  }
  .op-faq { padding: 72px 0 66px; }
  .op-faq-grid { grid-template-columns: 1fr; }
  .op-related { padding: 62px 0 70px; }
  .op-related-grid { grid-template-columns: 1fr; }
  .op-qr-popover {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: min(calc(100% - 24px),330px);
    max-height: calc(100dvh - 24px);
    overflow: auto;
  }
}

@media (max-width:430px) {
  .op-hero h1 {
    font-size: 34px;
    letter-spacing: -.06em;
    line-height: 1.08;
  }
  .op-hero h1 br { display: none; }
  .op-eyebrow { font-size: 13px; }
  .op-scenario-grid { grid-template-columns: 1fr; }
  .op-scenario-grid img { aspect-ratio: 1.8/1; }
}

@media (prefers-reduced-motion:reduce) {
  .online-print-page *,
  .online-print-page *::before,
  .online-print-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
