:root {
  --paper: #f2ede1;
  --paper-bright: #fbf8f0;
  --paper-deep: #ded5c2;
  --ink: #111216;
  --ink-soft: #2f3035;
  --muted: #6e6b63;
  --line: rgba(17, 18, 22, 0.18);
  --line-strong: rgba(17, 18, 22, 0.42);
  --blue: #2455ff;
  --blue-deep: #1537b8;
  --cyan: #00b9dc;
  --magenta: #dc3d83;
  --yellow: #f2cc22;
  --white: #ffffff;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page-x: clamp(1.2rem, 4.7vw, 5.5rem);
  --shadow-paper: 0 2px 1px rgba(17, 18, 22, 0.05), 0 20px 40px rgba(32, 27, 18, 0.12), 0 70px 110px rgba(32, 27, 18, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 255, 255, 0.8), transparent 25rem),
    repeating-linear-gradient(0deg, rgba(80, 69, 45, 0.018) 0, rgba(80, 69, 45, 0.018) 1px, transparent 1px, transparent 4px),
    var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--white); background: var(--blue); }

:focus-visible {
  outline: 3px solid var(--magenta);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 200;
  padding: 0.85rem 1.1rem;
  color: var(--white);
  background: var(--ink);
  font-size: 0.75rem;
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.print-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 180;
  height: 3px;
  pointer-events: none;
}
.print-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan) 0 28%, var(--magenta) 28% 53%, var(--yellow) 53% 72%, var(--blue) 72%);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 76px;
  padding: 0 var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: min-height 260ms ease, background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}
.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(242, 237, 225, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(35, 30, 22, 0.06);
  backdrop-filter: blur(18px) saturate(1.1);
}
.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
}
.site-brand-mark {
  width: 40px;
  height: 40px;
  overflow: hidden;
  background: #061126;
  border: 1px solid rgba(17, 18, 22, 0.2);
  box-shadow: 4px 4px 0 var(--blue);
}
.site-brand-mark img { width: 100%; height: 100%; object-fit: cover; }
.site-brand-type { display: grid; line-height: 1; }
.site-brand-type strong { font-size: 0.94rem; letter-spacing: -0.04em; }
.site-brand-type small {
  margin-top: 0.35rem;
  color: var(--muted);
  font: 500 0.48rem/1 var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-nav { display: flex; align-items: center; gap: clamp(1.15rem, 2.4vw, 2.8rem); }
.site-nav > a:not(.header-demo) {
  position: relative;
  padding: 0.4rem 0;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav > a:not(.header-demo)::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}
.site-nav > a:not(.header-demo):hover::after { transform: scaleX(1); transform-origin: left; }
.header-demo {
  min-height: 42px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--white);
  background: var(--blue);
  border: 1px solid var(--blue);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.header-demo:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.menu-toggle { display: none; }

.section-pad { padding: clamp(6rem, 10vw, 10rem) var(--page-x); }
.eyebrow {
  margin: 0 0 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--blue);
  font: 700 clamp(0.57rem, 0.7vw, 0.69rem)/1.3 var(--mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; flex: 0 0 auto; background: currentColor; }
.eyebrow.light { color: #75d8ff; }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; font-weight: 400; }
h1, h2 { font-family: var(--serif); letter-spacing: -0.055em; }
h1 em, h2 em { color: var(--blue); font-weight: 400; }
.section-index { display: flex; align-items: flex-start; gap: 1rem; }
.section-index > span {
  width: 37px;
  height: 37px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--paper-bright);
  background: var(--ink);
  border-radius: 50%;
  font: 700 0.56rem/1 var(--mono);
}
.section-index p { margin: 0; color: var(--muted); font: 500 0.61rem/1.45 var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.section-index.light > span { color: var(--ink); background: var(--paper-bright); }
.section-index.light p { color: #a7a59e; }
.register-mark::before, .register-mark::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid currentColor;
  opacity: 0.65;
  pointer-events: none;
}
.register-mark::before { left: -13px; top: -13px; border-width: 1px 0 0 1px; }
.register-mark::after { right: -13px; bottom: -13px; border-width: 0 1px 1px 0; }

.button {
  min-height: 54px;
  padding: 0.85rem 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.7rem;
  border: 1px solid var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.button-primary { color: var(--white); background: var(--blue); border-color: var(--blue); box-shadow: 6px 6px 0 var(--ink); }
.button-primary:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.button-quiet { background: rgba(255, 255, 255, 0.3); }
.button-quiet:hover { color: var(--white); background: var(--ink); }

/* Hero: the browser scene physically hands a job to print output. */
.sales-hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(8.5rem, 12vw, 10.5rem) var(--page-x) 3rem;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(580px, 1.22fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 3rem clamp(2rem, 4vw, 5rem);
  isolation: isolate;
  overflow: hidden;
}
.sales-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(17, 18, 22, 0.055) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(rgba(17, 18, 22, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 18, 22, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  mask-image: linear-gradient(to bottom, black 60%, transparent 97%);
}
.sales-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 36vw;
  height: 36vw;
  right: -18vw;
  top: -18vw;
  border-radius: 50%;
  border: 10vw solid rgba(36, 85, 255, 0.05);
}
.hero-register { position: absolute; left: 2rem; top: 7.3rem; width: 36px; height: 36px; color: var(--ink); }
.hero-register::before, .hero-register::after { width: 22px; height: 22px; }
.hero-copy { position: relative; z-index: 4; align-self: center; }
.hero-copy h1 { font-size: clamp(5.5rem, 8.4vw, 9.2rem); line-height: 0.76; }
.hero-copy h1 em { display: inline-block; transform: translateX(clamp(0.6rem, 2.4vw, 2.8rem)); }
.hero-lede { max-width: 630px; margin: 2.35rem 0 0; color: var(--ink-soft); font-size: clamp(0.98rem, 1.2vw, 1.18rem); line-height: 1.72; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.9rem; }
.hero-facts { margin: clamp(2.5rem, 5vw, 4.7rem) 0 0; padding: 1.15rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid var(--line-strong); }
.hero-facts li { min-width: 0; padding: 0 1rem; border-left: 1px solid var(--line); }
.hero-facts li:first-child { padding-left: 0; border-left: 0; }
.hero-facts b, .hero-facts span { display: block; }
.hero-facts b { font: 700 0.56rem/1.3 var(--mono); letter-spacing: 0.07em; text-transform: uppercase; }
.hero-facts span { margin-top: 0.4rem; color: var(--muted); font-size: 0.65rem; }

.hero-machine {
  position: relative;
  width: min(100%, 850px);
  min-height: clamp(610px, 53vw, 785px);
  margin: 0;
  justify-self: end;
  perspective: 1400px;
}
.machine-grid {
  position: absolute;
  inset: 6% 1% 7% 5%;
  color: rgba(17, 18, 22, 0.16);
  background:
    linear-gradient(90deg, currentColor 1px, transparent 1px),
    linear-gradient(currentColor 1px, transparent 1px),
    var(--paper-deep);
  background-size: 22px 22px;
  border: 1px solid var(--ink);
  box-shadow: 13px 13px 0 rgba(17, 18, 22, 0.12);
  transform: rotate(1.5deg);
}
.machine-grid::before {
  content: "DIGITAL → PHYSICAL";
  position: absolute;
  right: 1rem;
  top: 1rem;
  padding: 0.45rem 0.6rem;
  color: var(--paper-bright);
  background: var(--ink);
  font: 600 0.47rem/1 var(--mono);
  letter-spacing: 0.09em;
}
.hero-parallax { --move-x: 0px; --move-y: 0px; translate: var(--move-x) var(--move-y); }
.screen-frame {
  position: absolute;
  left: 0;
  top: 1%;
  z-index: 3;
  width: 73%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-paper);
  transform: rotate(-2.4deg) rotateY(3deg);
}
.screen-bar { height: 34px; padding: 0 0.75rem; display: flex; align-items: center; justify-content: space-between; color: #aaa; background: var(--ink); }
.screen-bar > span { display: flex; gap: 4px; }
.screen-bar i { width: 6px; height: 6px; display: block; border-radius: 50%; background: var(--paper); }
.screen-bar i:nth-child(1) { background: var(--magenta); }
.screen-bar i:nth-child(2) { background: var(--yellow); }
.screen-bar i:nth-child(3) { background: var(--cyan); }
.screen-bar b { font: 600 0.46rem/1 var(--mono); letter-spacing: 0.1em; }
.screen-frame > img { width: 100%; height: clamp(245px, 24vw, 365px); object-fit: cover; object-position: top; }
.screen-caption { display: block; padding: 0.65rem 0.8rem; font: 500 0.47rem/1.2 var(--mono); letter-spacing: 0.05em; text-transform: uppercase; }
.screen-frame::before, .screen-frame::after {
  content: "";
  position: absolute;
  z-index: 4;
  width: 16px;
  height: 16px;
  border: solid var(--magenta);
}
.screen-frame::before { left: 6px; top: 40px; border-width: 1px 0 0 1px; }
.screen-frame::after { right: 6px; bottom: 31px; border-width: 0 1px 1px 0; }
.transfer-track {
  position: absolute;
  left: 45%;
  top: 52%;
  z-index: 5;
  width: 43%;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transform: rotate(4deg);
}
.transfer-track i { height: 1px; flex: 1; background: var(--ink); }
.transfer-track b { font: 700 0.45rem/1 var(--mono); letter-spacing: 0.12em; }
.transfer-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 4px rgba(36, 85, 255, 0.18); animation: travel 2.8s ease-in-out infinite; }
.transfer-arrow { font-size: 1.3rem; }
.proof-ticket {
  position: absolute;
  left: 7%;
  bottom: 5%;
  z-index: 6;
  width: 37%;
  min-height: 190px;
  padding: 1rem 1rem 1.2rem;
  color: var(--ink);
  background: #fffdf5;
  border: 1px solid var(--ink);
  box-shadow: 9px 9px 0 var(--yellow), 10px 10px 0 var(--ink);
  transform: rotate(-4deg);
}
.proof-ticket::before { content: ""; position: absolute; inset: 5px; border: 1px dashed rgba(17, 18, 22, 0.25); pointer-events: none; }
.ticket-kicker { display: block; color: var(--blue); font: 700 0.47rem/1 var(--mono); letter-spacing: 0.1em; }
.proof-ticket > strong { max-width: 180px; margin-top: 0.8rem; display: block; font: 400 1.65rem/0.98 var(--serif); }
.proof-ticket dl { margin: 1.15rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-ticket dl div { border-left: 1px solid var(--line); padding-left: 0.5rem; }
.proof-ticket dl div:first-child { border-left: 0; padding-left: 0; }
.proof-ticket dt { color: var(--muted); font: 600 0.42rem/1 var(--mono); text-transform: uppercase; }
.proof-ticket dd { margin: 0.3rem 0 0; font: 600 0.52rem/1.2 var(--mono); }
.approval-stamp { position: absolute; right: 0.8rem; top: 1rem; padding: 0.35rem; color: var(--magenta); border: 2px solid currentColor; font: 800 0.48rem/1 var(--mono); transform: rotate(7deg); }
.output-frame {
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 4;
  width: 52%;
  padding: 0.5rem 0.5rem 0.65rem;
  background: var(--paper-bright);
  border: 1px solid var(--ink);
  box-shadow: var(--shadow-paper);
  transform: rotate(5.4deg) translateZ(45px);
}
.output-frame img { width: 100%; aspect-ratio: 1.22; object-fit: cover; }
.output-frame > span { display: block; margin-top: 0.55rem; font: 700 0.46rem/1 var(--mono); letter-spacing: 0.1em; }
.process-dots { position: absolute; z-index: 8; right: 3%; top: 4%; display: flex; gap: 6px; }
.process-dots i { width: 11px; height: 11px; border-radius: 50%; border: 1px solid rgba(17, 18, 22, 0.25); }
.dot-c { background: var(--cyan); }.dot-m { background: var(--magenta); }.dot-y { background: var(--yellow); }.dot-k { background: var(--ink); }
.hero-machine figcaption { position: absolute; right: 1%; bottom: 0; width: 47%; color: var(--muted); font: 500 0.52rem/1.45 var(--mono); text-transform: uppercase; }
.hero-sequence { grid-column: 1 / -1; margin: 0; padding: 1rem 0 0; display: grid; grid-template-columns: repeat(5, 1fr); list-style: none; border-top: 1px solid var(--ink); }
.hero-sequence li { position: relative; padding-left: 0.85rem; font: 700 0.56rem/1 var(--mono); letter-spacing: 0.06em; text-transform: uppercase; border-left: 1px solid var(--line); }
.hero-sequence li:first-child { padding-left: 0; border-left: 0; }
.hero-sequence span { margin-right: 0.55rem; color: var(--blue); }

.material-strip { overflow: hidden; color: var(--paper-bright); background: var(--blue); border-block: 1px solid var(--ink); }
.material-strip p { width: max-content; min-width: 100%; margin: 0; padding: 0.9rem var(--page-x); display: flex; align-items: center; justify-content: space-around; gap: clamp(1rem, 3vw, 3rem); font: 700 0.55rem/1 var(--mono); letter-spacing: 0.1em; text-transform: uppercase; }
.material-strip i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); }
.material-strip i:nth-of-type(2) { background: var(--cyan); }.material-strip i:nth-of-type(3) { background: var(--magenta); }

.opening-statement { position: relative; display: grid; grid-template-columns: 0.25fr 1.05fr 0.52fr; gap: clamp(2rem, 5vw, 6rem); align-items: start; background: var(--paper-bright); }
.opening-statement::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(115deg, transparent 70%, rgba(36, 85, 255, 0.05) 70% 70.15%, transparent 70.15%); }
.opening-head h2 { max-width: 850px; font-size: clamp(4rem, 7.2vw, 7.7rem); line-height: 0.84; }
.opening-copy { padding-top: 2.1rem; border-top: 1px solid var(--ink); }
.opening-copy p { margin: 0; color: var(--ink-soft); font-size: 0.86rem; line-height: 1.75; }
.opening-copy p + p { margin-top: 1.3rem; }
.opening-rule { grid-column: 2 / -1; margin-top: clamp(2rem, 4vw, 4rem); display: flex; align-items: center; gap: 1rem; font: 700 0.53rem/1 var(--mono); letter-spacing: 0.12em; }
.opening-rule i { height: 1px; flex: 1; background: var(--ink); }
.opening-rule b { width: 42px; height: 42px; display: grid; place-items: center; color: var(--white); background: var(--blue); border-radius: 50%; }

/* Signature scroll/tap production line. */
.production-section { color: var(--paper-bright); background: var(--ink); }
.production-head { padding-bottom: clamp(3rem, 5vw, 5rem); display: grid; grid-template-columns: 0.25fr 1.05fr 0.52fr; gap: clamp(2rem, 5vw, 6rem); align-items: end; }
.production-head h2 { font-size: clamp(4rem, 7vw, 7.5rem); line-height: 0.84; }
.production-head h2 em { color: #75d8ff; }
.production-intro { margin: 0 0 0.6rem; color: #a8a6a0; font-size: 0.82rem; line-height: 1.7; }
.production-shell { position: relative; display: grid; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.production-sticky { position: sticky; top: 64px; grid-area: 1 / 1; z-index: 2; min-height: calc(100svh - 64px); display: grid; grid-template-columns: minmax(185px, 0.24fr) 1fr; background: var(--ink); }
.production-tabs { padding: 1rem 0; display: flex; flex-direction: column; border-right: 1px solid rgba(255, 255, 255, 0.16); }
.production-tabs button {
  position: relative;
  min-height: 0;
  flex: 1;
  padding: 0.9rem var(--page-x) 0.9rem clamp(1rem, 2.3vw, 2.6rem);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0.75rem;
  text-align: left;
  cursor: pointer;
  color: #706f6b;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: color 240ms ease, background 240ms ease;
}
.production-tabs button:last-child { border-bottom: 0; }
.production-tabs button::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--blue); transform: scaleY(0); transition: transform 240ms ease; }
.production-tabs button span { grid-row: 1 / 3; align-self: center; font: 600 0.47rem/1 var(--mono); }
.production-tabs button b { color: inherit; font: 400 clamp(1.15rem, 1.6vw, 1.7rem)/1 var(--serif); }
.production-tabs button small { margin-top: 0.3rem; color: inherit; font: 500 0.45rem/1 var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.production-tabs button[aria-selected="true"] { color: var(--paper-bright); background: #191a1e; }
.production-tabs button[aria-selected="true"]::before { transform: scaleY(1); }
.production-view { position: relative; min-width: 0; overflow: hidden; }
.production-view::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 36px 36px; }
.production-counter { position: absolute; z-index: 8; left: clamp(1rem, 2.5vw, 2.7rem); right: clamp(1rem, 2.5vw, 2.7rem); top: 1rem; display: flex; align-items: center; gap: 0.8rem; font: 700 0.48rem/1 var(--mono); letter-spacing: 0.12em; }
.production-counter span { color: #75d8ff; }
.production-counter i { height: 1px; flex: 1; background: rgba(255, 255, 255, 0.2); }
.line-panel { position: absolute; inset: 0; padding: 3.6rem clamp(1rem, 2.5vw, 2.7rem) 1.5rem; display: grid; grid-template-columns: minmax(0, 1.28fr) minmax(250px, 0.72fr); gap: clamp(1.5rem, 3.2vw, 3.8rem); align-items: center; opacity: 0; visibility: hidden; transform: translateY(25px); pointer-events: none; transition: opacity 380ms ease, transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s 500ms; }
.line-panel.is-active { position: relative; min-height: calc(100svh - 64px); opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition-delay: 0s; }
.line-media { position: relative; min-width: 0; height: min(66vh, 610px); overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.28); background: #25262a; box-shadow: 14px 14px 0 rgba(255, 255, 255, 0.055); }
.line-media::before, .line-media::after { content: ""; position: absolute; z-index: 4; width: 22px; height: 22px; border: solid rgba(255, 255, 255, 0.55); pointer-events: none; }
.line-media::before { left: 8px; top: 8px; border-width: 1px 0 0 1px; }.line-media::after { right: 8px; bottom: 8px; border-width: 0 1px 1px 0; }
.line-media > img { width: 100%; height: 100%; object-fit: cover; }
.line-browser > img { object-position: top; }
.media-label { position: absolute; z-index: 5; left: 1rem; bottom: 1rem; padding: 0.5rem 0.65rem; color: var(--ink); background: var(--paper-bright); font: 700 0.47rem/1 var(--mono); letter-spacing: 0.09em; }
.line-product > img { object-position: top; filter: saturate(0.92); }
.capture-required { padding: clamp(2rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: flex-end; color: var(--ink); background: var(--paper-deep); }
.capture-required::before { border-color: var(--ink); }.capture-required::after { border-color: var(--ink); }
.capture-required::after { right: 8px; bottom: 8px; }
.capture-required > *:not(.capture-cross) { position: relative; z-index: 2; }
.capture-cross { position: absolute; inset: 0; background: linear-gradient(33deg, transparent calc(50% - 0.5px), rgba(17,18,22,.22) 50%, transparent calc(50% + 0.5px)), linear-gradient(-33deg, transparent calc(50% - 0.5px), rgba(17,18,22,.22) 50%, transparent calc(50% + 0.5px)); }
.capture-cross::before { content: ""; position: absolute; width: 36%; aspect-ratio: 1; left: 50%; top: 12%; transform: translateX(-50%); border: 1px solid var(--ink); border-radius: 50%; box-shadow: 0 0 0 34px rgba(36,85,255,.09), 0 0 0 68px rgba(36,85,255,.045); }
.capture-code { color: var(--blue); font: 700 0.53rem/1 var(--mono); letter-spacing: 0.12em; }
.capture-required strong { margin-top: 0.8rem; font: 400 clamp(2.6rem, 4vw, 4.6rem)/0.9 var(--serif); }
.capture-required p { max-width: 560px; margin: 1rem 0 0; font-size: 0.75rem; line-height: 1.55; }
.capture-required small { margin-top: 1.2rem; width: max-content; padding: 0.5rem; color: var(--paper-bright); background: var(--ink); font: 600 0.47rem/1 var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.proof-board { display: grid; place-items: center; background: linear-gradient(135deg, #223d96 0 48%, #244ee1 48% 52%, #10215b 52%); }
.proof-sheet { position: relative; width: min(72%, 480px); min-height: 65%; padding: clamp(1.5rem, 3vw, 3rem); color: var(--ink); background: var(--paper-bright); box-shadow: 16px 18px 0 rgba(0,0,0,.28); transform: rotate(-3deg); }
.proof-sheet > span { color: var(--blue); font: 700 0.5rem/1 var(--mono); letter-spacing: 0.11em; }
.proof-sheet > strong { margin-top: 2.2rem; display: block; font: 400 clamp(2.4rem, 4vw, 4.5rem)/0.88 var(--serif); }
.proof-sheet > p { max-width: 340px; margin: 1rem 0 0; color: var(--muted); font-size: 0.72rem; }
.proof-sheet dl { margin: 2rem 0; display: grid; grid-template-columns: repeat(3,1fr); border-block: 1px solid var(--line); }
.proof-sheet dl div { padding: 0.8rem 0.4rem; border-left: 1px solid var(--line); }.proof-sheet dl div:first-child { border-left: 0; }
.proof-sheet dt { color: var(--muted); font: 600 0.43rem/1 var(--mono); text-transform: uppercase; }.proof-sheet dd { margin: 0.45rem 0 0; font: 700 0.5rem/1 var(--mono); }
.proof-sheet > b { display: inline-block; padding: 0.55rem; color: var(--paper-bright); background: var(--magenta); font: 700 0.48rem/1 var(--mono); letter-spacing: 0.09em; transform: rotate(2deg); }
.output-board > img { filter: saturate(0.95); }
.production-slip { position: absolute; z-index: 5; left: 1.1rem; right: 1.1rem; bottom: 1.1rem; padding: 0.9rem 1rem; display: grid; grid-template-columns: 1fr auto; color: var(--ink); background: rgba(251,248,240,.96); border: 1px solid var(--ink); }
.production-slip span { grid-column: 1/-1; color: var(--blue); font: 700 0.45rem/1 var(--mono); letter-spacing: .09em; }.production-slip b { margin-top: .5rem; font: 400 1.6rem/1 var(--serif); }.production-slip small { grid-column: 1; margin-top: .35rem; font: 500 .47rem/1.4 var(--mono); }.production-slip i { grid-column: 2; grid-row: 2/4; align-self: center; padding: .5rem; color: var(--white); background: var(--blue); font: 800 .5rem/1 var(--mono); font-style: normal; }
.line-copy { align-self: center; }
.line-copy h3 { max-width: 520px; font: 400 clamp(2.3rem, 3.6vw, 4.2rem)/0.94 var(--serif); letter-spacing: -0.04em; }
.line-copy > p:not(.eyebrow) { margin: 1.25rem 0 0; color: #aaa9a3; font-size: 0.76rem; line-height: 1.7; }
.line-copy dl { margin: clamp(1.5rem, 4vh, 3rem) 0 0; border-top: 1px solid rgba(255,255,255,.2); }
.line-copy dl div { padding: .85rem 0; display: grid; grid-template-columns: .35fr 1fr; border-bottom: 1px solid rgba(255,255,255,.13); }
.line-copy dt { color: #777773; font: 600 .48rem/1 var(--mono); text-transform: uppercase; }.line-copy dd { margin: 0; font-size: .62rem; }
.production-sentinels { grid-area: 1/1; z-index: 1; width: 2px; justify-self: end; pointer-events: none; }
.production-sentinels i { display: block; height: 54vh; }

/* Memorable, product-specific print guide inspector. */
.press-check { position: relative; min-height: 920px; padding: clamp(6rem, 10vw, 10rem) var(--page-x); display: grid; grid-template-columns: minmax(320px, .72fr) minmax(500px, 1.28fr); align-items: center; gap: clamp(3rem, 8vw, 9rem); overflow: hidden; color: var(--paper-bright); background: #0c2453; }
.press-check::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 80% 48%, rgba(0,185,220,.17), transparent 30%), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 45px 45px, 45px 45px; }
.press-copy { position: relative; z-index: 2; }
.press-copy .section-index { margin-bottom: clamp(3rem, 7vw, 6rem); }
.press-copy h2 { max-width: 700px; font-size: clamp(4rem, 6.3vw, 7rem); line-height: .84; }
.press-copy h2 em { color: #77ddf4; }
.press-copy > p:not(.eyebrow) { max-width: 560px; margin: 1.7rem 0 0; color: #b8c4dc; font-size: .83rem; line-height: 1.7; }
.inspection-control { margin-top: clamp(2rem, 5vw, 4rem); max-width: 610px; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.25); }
.inspection-control label { display: flex; justify-content: space-between; align-items: center; font: 600 .52rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }
.inspection-control label strong { color: #77ddf4; font-size: .67rem; }
.inspection-control input { width: 100%; margin: 1.35rem 0 .7rem; accent-color: #77ddf4; cursor: ew-resize; }
.inspection-control input::-webkit-slider-runnable-track { height: 4px; background: linear-gradient(90deg,var(--magenta),var(--yellow),var(--cyan),var(--white)); border: 1px solid rgba(255,255,255,.3); }
.inspection-control input::-webkit-slider-thumb { width: 20px; height: 20px; margin-top: -9px; border: 3px solid #0c2453; border-radius: 0; background: var(--white); box-shadow: 0 0 0 1px var(--white); -webkit-appearance: none; }
.inspection-control input::-moz-range-track { height: 4px; background: linear-gradient(90deg,var(--magenta),var(--yellow),var(--cyan),var(--white)); border: 1px solid rgba(255,255,255,.3); }
.inspection-control input::-moz-range-thumb { width: 16px; height: 16px; border: 3px solid #0c2453; border-radius: 0; background: var(--white); }
.inspection-ticks { display: flex; justify-content: space-between; color: #7585a5; font: 500 .43rem/1 var(--mono); text-transform: uppercase; }
.inspection-control > p { min-height: 2.6em; margin: 1.2rem 0 0; color: #dce4f5; font-size: .7rem; line-height: 1.5; }
.press-visual { position: relative; z-index: 2; min-height: 670px; margin: 0; display: grid; place-items: center; perspective: 1200px; }
.stock-shadow { position: absolute; width: 76%; height: 65%; background: rgba(0,0,0,.32); filter: blur(30px); transform: translate(6%,10%) rotate(-4deg); }
.press-sheet { position: relative; width: min(90%, 790px); aspect-ratio: 1.32; padding: 5.5%; background: var(--paper-bright); border: 1px solid var(--ink); box-shadow: 0 4px 0 #c7bdab, 0 8px 0 #a99e8b, 0 30px 65px rgba(0,0,0,.3); transform: rotate(-4deg) rotateY(-4deg); transition: transform 500ms cubic-bezier(.2,.75,.2,1); }
.press-sheet > img { width: 100%; height: 100%; object-fit: cover; }
.guide { position: absolute; display: block; opacity: 0; pointer-events: none; transition: opacity 280ms ease; }
.guide span { position: absolute; right: .4rem; top: .35rem; padding: .3rem .4rem; color: var(--ink); background: currentColor; font: 800 .42rem/1 var(--mono); letter-spacing: .08em; }
.guide span::first-line { color: var(--ink); }
.guide-bleed { inset: 3.8%; color: var(--magenta); border: 2px dashed currentColor; }.guide-trim { inset: 8%; color: var(--yellow); border: 2px solid currentColor; }.guide-safe { inset: 14%; color: var(--cyan); border: 2px dashed currentColor; }
.guide-bleed span { color: var(--magenta); }.guide-trim span { color: var(--yellow); }.guide-safe span { color: var(--cyan); }
.guide span { text-indent: -9999px; width: 12px; height: 12px; padding: 0; }
.crop { position: absolute; width: 30px; height: 30px; opacity: 0; transition: opacity 280ms ease; }
.crop::before, .crop::after { content: ""; position: absolute; background: var(--paper-bright); box-shadow: 0 0 0 1px var(--ink); }.crop::before { width: 24px; height: 1px; top: 14px; }.crop::after { width: 1px; height: 24px; left: 14px; }
.crop-tl { left: -18px; top: -18px; }.crop-tr { right: -18px; top: -18px; }.crop-bl { left: -18px; bottom: -18px; }.crop-br { right: -18px; bottom: -18px; }
[data-press-check][data-mode="1"] .guide-bleed { opacity: 1; }
[data-press-check][data-mode="2"] .guide-bleed { opacity: .3; } [data-press-check][data-mode="2"] .guide-trim, [data-press-check][data-mode="2"] .crop { opacity: 1; }
[data-press-check][data-mode="3"] .guide-bleed { opacity: .18; } [data-press-check][data-mode="3"] .guide-trim { opacity: .35; } [data-press-check][data-mode="3"] .guide-safe, [data-press-check][data-mode="3"] .crop { opacity: 1; }
[data-press-check][data-mode="3"] .press-sheet { transform: rotate(-1.5deg) rotateY(0deg) scale(1.02); }
.press-visual figcaption { position: absolute; left: 3%; bottom: 1%; color: #8694b1; font: 500 .48rem/1 var(--mono); letter-spacing: .08em; text-transform: uppercase; }

.platform-section { background: var(--paper-bright); }
.platform-heading { display: grid; grid-template-columns: .25fr 1.05fr .52fr; align-items: end; gap: clamp(2rem,5vw,6rem); }
.platform-heading h2 { font-size: clamp(4rem,7vw,7.5rem); line-height: .84; }
.platform-heading > p { margin: 0 0 .5rem; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.capability-ledger { margin-top: clamp(4rem,8vw,7rem); border-top: 1px solid var(--ink); }
.capability-ledger article { min-height: 165px; padding: 1.5rem .6rem; display: grid; grid-template-columns: .15fr .54fr .82fr .3fr; align-items: center; gap: clamp(1rem,3vw,3rem); border-bottom: 1px solid var(--line-strong); transition: padding 250ms ease, background 250ms ease; }
.capability-ledger article:hover { padding-left: 1.2rem; padding-right: 1.2rem; background: #f0eadc; }
.ledger-number { color: var(--blue); font: 400 2.4rem/1 var(--serif); }
.capability-ledger h3 { font: 400 clamp(1.8rem,2.7vw,3.1rem)/1 var(--serif); letter-spacing: -.035em; }
.capability-ledger article > div .eyebrow { margin-bottom: .6rem; }
.capability-ledger article > p { color: var(--muted); font-size: .77rem; line-height: 1.65; }
.capability-ledger article > strong { justify-self: end; font: 700 .5rem/1.4 var(--mono); letter-spacing: .06em; text-align: right; text-transform: uppercase; }
.evidence-sheet { position: relative; margin: clamp(5rem,10vw,10rem) 0 0; display: grid; grid-template-columns: minmax(0,1.45fr) minmax(260px,.55fr); background: var(--paper-deep); border: 1px solid var(--ink); box-shadow: 14px 14px 0 rgba(17,18,22,.12); transform: rotate(.5deg); }
.evidence-image { position: relative; min-height: 610px; overflow: hidden; border-right: 1px solid var(--ink); }
.evidence-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.evidence-image > span { position: absolute; left: 1rem; bottom: 1rem; padding: .55rem .7rem; color: var(--white); background: var(--ink); font: 700 .47rem/1 var(--mono); letter-spacing: .1em; }
.evidence-sheet figcaption { padding: clamp(1.5rem,3.5vw,3.5rem); display: flex; flex-direction: column; }
.evidence-sheet figcaption b { font: 400 clamp(2.4rem,4vw,4.5rem)/.92 var(--serif); }
.evidence-sheet figcaption > span { margin-top: 1.2rem; color: var(--muted); font-size: .76rem; line-height: 1.65; }
.evidence-sheet figcaption a { margin-top: auto; padding-top: 1rem; display: flex; justify-content: space-between; border-top: 1px solid var(--ink); font: 700 .56rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.evidence-sheet figcaption a i { font-style: normal; }

.outputs-section { padding-bottom: clamp(5rem,9vw,9rem); background: var(--paper); }
.outputs-head { display: grid; grid-template-columns: .25fr 1.05fr .52fr; align-items: end; gap: clamp(2rem,5vw,6rem); }
.outputs-head h2 { font-size: clamp(4rem,7vw,7.5rem); line-height: .84; }
.outputs-head > p { margin: 0 0 .5rem; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.product-wall { position: relative; min-height: 1160px; max-width: 1500px; margin: 0 auto; padding-inline: var(--page-x); }
.product-piece { position: absolute; z-index: 2; display: block; background: var(--paper-bright); border: 1px solid var(--ink); box-shadow: var(--shadow-paper); transition: transform 350ms cubic-bezier(.2,.8,.2,1), box-shadow 350ms ease; }
.product-piece img { width: 100%; aspect-ratio: 1.27; object-fit: cover; }
.product-piece > span { padding: 1rem; display: grid; grid-template-columns: 1fr auto; align-items: end; gap: .45rem; border-top: 1px solid var(--ink); }
.product-piece small { grid-column: 1/-1; color: var(--blue); font: 700 .45rem/1 var(--mono); letter-spacing: .1em; }
.product-piece b { font: 400 clamp(1.5rem,2.4vw,2.8rem)/1 var(--serif); }
.product-piece i { font: 700 .46rem/1 var(--mono); font-style: normal; text-transform: uppercase; }
.product-piece:hover { z-index: 8; box-shadow: 0 30px 70px rgba(20,17,11,.22); }
.piece-cards { left: 4%; top: 2%; width: 37%; transform: rotate(-4deg); }.piece-cards:hover { transform: rotate(-1deg) translateY(-12px); }
.piece-flyers { right: 3%; top: 9%; width: 31%; transform: rotate(4.5deg); }.piece-flyers:hover { transform: rotate(1deg) translateY(-12px); }
.piece-brochure { left: 17%; bottom: 1%; width: 34%; transform: rotate(2deg); }.piece-brochure:hover { transform: rotate(0) translateY(-12px); }
.piece-book { right: 7%; bottom: 5%; width: 38%; transform: rotate(-3.5deg); }.piece-book:hover { transform: rotate(-.5deg) translateY(-12px); }
.wall-note { position: absolute; z-index: 5; left: 43%; top: 39%; width: 25%; min-height: 230px; padding: 1.6rem; display: flex; flex-direction: column; color: var(--paper-bright); background: var(--blue); border: 1px solid var(--ink); box-shadow: 8px 8px 0 var(--yellow); transform: rotate(1deg); }
.wall-note > span { font: 700 .48rem/1 var(--mono); letter-spacing: .1em; }.wall-note strong { margin: auto 0; font: 400 clamp(1.7rem,2.6vw,2.8rem)/.98 var(--serif); }.wall-note small { font: 500 .48rem/1 var(--mono); text-transform: uppercase; }

.implementation-section { display: grid; grid-template-columns: .68fr 1.32fr; align-items: center; gap: clamp(4rem,10vw,12rem); background: #f0d75d; }
.implementation-mark { position: relative; width: min(100%,520px); aspect-ratio: .82; padding: 2rem; display: grid; grid-template: auto 1fr auto / 1fr 1fr; color: var(--paper-bright); background: var(--blue); border: 1px solid var(--ink); box-shadow: 16px 16px 0 var(--ink); transform: rotate(-2deg); }
.implementation-mark > span { grid-column: 1/-1; font: 700 .55rem/1 var(--mono); letter-spacing: .13em; }.implementation-mark b,.implementation-mark i { align-self: center; font: 400 clamp(7rem,13vw,14rem)/1 var(--serif); }.implementation-mark b { color: var(--white); }.implementation-mark i { color: transparent; -webkit-text-stroke: 1px var(--white); font-style: italic; }.implementation-mark small { grid-column: 1/-1; align-self: end; font: 700 .5rem/1 var(--mono); letter-spacing: .13em; text-align: right; }
.implementation-copy h2 { max-width: 900px; font-size: clamp(4rem,6.7vw,7.3rem); line-height: .82; }.implementation-copy h2 em { color: var(--ink); text-decoration: underline; text-decoration-color: var(--blue); text-decoration-thickness: .08em; text-underline-offset: .08em; }
.implementation-copy > p:not(.eyebrow) { max-width: 660px; margin: 1.8rem 0 0; font-size: .86rem; line-height: 1.7; }
.implementation-copy ul { max-width: 720px; margin: 2.5rem 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.implementation-copy li { padding: .9rem 0; display: flex; gap: 1rem; border-bottom: 1px solid rgba(17,18,22,.35); font-size: .7rem; font-weight: 600; }.implementation-copy li span { color: var(--blue); font: 700 .5rem/1.4 var(--mono); }
.text-link { display: inline-flex; align-items: center; gap: 2rem; padding-bottom: .4rem; border-bottom: 1px solid currentColor; font: 700 .58rem/1 var(--mono); letter-spacing: .06em; text-transform: uppercase; }

.final-cta { position: relative; min-height: 90svh; padding: 8rem var(--page-x); display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; color: var(--white); text-align: center; background: var(--blue); }
.final-cta::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px),linear-gradient(rgba(255,255,255,.07) 1px,transparent 1px); background-size: 55px 55px; mask-image: radial-gradient(circle,black,transparent 75%); }
.final-cta > *:not(.final-cmyk) { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(4.5rem,9vw,10rem); line-height: .79; }.final-cta h2 em { color: var(--white); }.final-cta > p:not(.eyebrow) { max-width: 620px; margin: 1.8rem 0 0; color: #cbd7ff; font-size: .88rem; line-height: 1.7; }
.final-actions { margin-top: 2rem; display: flex; justify-content: center; gap: .9rem; }
.button-paper { color: var(--ink); background: var(--paper-bright); border-color: var(--paper-bright); box-shadow: 6px 6px 0 var(--ink); }.button-paper:hover { transform: translate(3px,3px); box-shadow: 3px 3px 0 var(--ink); }
.button-outline { color: var(--white); border-color: rgba(255,255,255,.65); }.button-outline:hover { color: var(--blue); background: var(--white); }
.final-cta > small { margin-top: 2rem; color: #9db0f1; font: 500 .46rem/1 var(--mono); letter-spacing: .07em; text-transform: uppercase; }
.final-cmyk { position: absolute; inset: 0; pointer-events: none; }
.final-cmyk i { position: absolute; width: clamp(240px,28vw,480px); aspect-ratio: 1; border-radius: 50%; mix-blend-mode: screen; opacity: .16; }.final-cmyk i:nth-child(1) { left: -8%; top: 13%; background: var(--cyan); }.final-cmyk i:nth-child(2) { right: -7%; top: 8%; background: var(--magenta); }.final-cmyk i:nth-child(3) { left: 42%; bottom: -28%; background: var(--yellow); }

.site-footer { padding: 1.35rem var(--page-x); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; color: #86837b; background: var(--ink); border-top: 1px solid rgba(255,255,255,.13); font: 500 .5rem/1.4 var(--mono); text-transform: uppercase; }
.site-footer .site-brand { color: var(--paper-bright); }.site-footer .site-brand-mark { width: 34px; height: 34px; box-shadow: 3px 3px 0 var(--blue); }.site-footer .site-brand-type small { color: #777773; }.site-footer p { margin: 0; }.site-footer p:last-child { text-align: right; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 700ms ease, transform 800ms cubic-bezier(.2,.75,.2,1); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@keyframes travel { 0%,100% { transform: translateX(0); } 50% { transform: translateX(45px); } }

@media (max-width: 1200px) {
  .sales-hero { grid-template-columns: minmax(330px,.8fr) minmax(500px,1.2fr); }
  .hero-copy h1 { font-size: clamp(5rem,8vw,7.3rem); }
  .hero-machine { min-height: 650px; }
  .opening-statement,.production-head,.platform-heading,.outputs-head { grid-template-columns: .22fr 1fr .48fr; gap: 2.5rem; }
  .line-panel { grid-template-columns: minmax(0,1.12fr) minmax(235px,.88fr); gap: 2rem; }
  .product-wall { min-height: 980px; }
}

@media (max-width: 980px) {
  :root { --page-x: clamp(1.2rem,5vw,3.5rem); }
  .sales-hero { padding-top: 9rem; grid-template-columns: 1fr; grid-template-rows: auto auto auto; }
  .hero-copy { max-width: 760px; }.hero-copy h1 { font-size: clamp(5.5rem,14vw,8.5rem); }
  .hero-machine { width: min(100%,820px); min-height: 720px; justify-self: center; }
  .hero-sequence { grid-column: 1; }
  .opening-statement,.production-head,.platform-heading,.outputs-head { grid-template-columns: .3fr 1fr; }
  .opening-statement > .opening-copy,.production-head > .production-intro,.platform-heading > p,.outputs-head > p { grid-column: 2; }
  .opening-rule { grid-column: 1/-1; }
  .production-sticky { min-height: auto; position: relative; top: auto; grid-template-columns: 1fr; }
  .production-tabs { position: sticky; top: 64px; z-index: 15; padding: 0; flex-direction: row; overflow-x: auto; background: rgba(17,18,22,.96); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); scrollbar-width: thin; }
  .production-tabs button { min-width: 150px; min-height: 76px; padding: .8rem; flex: 1 0 150px; border-right: 1px solid rgba(255,255,255,.12); border-bottom: 0; }
  .production-tabs button::before { inset: auto 0 0; width: auto; height: 3px; transform: scaleX(0); }.production-tabs button[aria-selected="true"]::before { transform: scaleX(1); }
  .production-view { min-height: 820px; }.line-panel { grid-template-columns: 1fr; align-content: start; }.line-panel.is-active { min-height: 820px; }.line-media { height: 500px; }.line-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 2rem; }.line-copy .eyebrow { grid-column:1/-1; }.line-copy h3 { grid-column:1; }.line-copy > p:not(.eyebrow) { grid-column:2; margin-top: 0; }.line-copy dl { grid-column:1/-1; }
  .production-sentinels { display: none; }
  .press-check { grid-template-columns: 1fr; min-height: auto; }.press-copy { max-width: 760px; }.press-visual { min-height: 640px; }
  .evidence-sheet { grid-template-columns: 1fr; }.evidence-image { min-height: 560px; border-right:0; border-bottom:1px solid var(--ink); }.evidence-sheet figcaption { min-height: 320px; }
  .product-wall { min-height: 1240px; }.piece-cards { width:44%; }.piece-flyers { width:38%; }.piece-brochure { left:6%; width:43%; }.piece-book { right:3%; width:45%; }.wall-note { left:40%; top:40%; width:31%; }
  .implementation-section { grid-template-columns: 1fr; }.implementation-mark { width:min(78%,520px); margin-inline:auto; }.implementation-copy { max-width:900px; }
}

@media (max-width: 720px) {
  .site-header { width: 100%; min-height: 66px; padding-inline: 1rem; }
  .site-header.is-scrolled { min-height: 60px; }
  .site-brand-mark { width: 34px; height: 34px; box-shadow: 3px 3px 0 var(--blue); }
  .site-brand-type small { display: none; }
  .menu-toggle { position: relative; z-index: 3; min-height: 42px; margin-left: auto; padding: 0 .7rem; display: inline-flex; flex: 0 0 auto; align-items: center; gap: .7rem; cursor:pointer; background: var(--paper-bright); border: 1px solid var(--ink); font: 700 .55rem/1 var(--mono); text-transform: uppercase; }
  .menu-toggle i,.menu-toggle i::before { width: 18px; height: 1px; display:block; background:var(--ink); transition: transform 200ms ease; }.menu-toggle i::before { content:""; transform:translateY(5px); }
  .menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg); }
  .site-nav { position: fixed; inset: 0; padding: 7rem 1.25rem 2rem; z-index: 2; display: flex; flex-direction: column; align-items: stretch; justify-content: center; gap: 0; color: var(--paper-bright); background: var(--ink); opacity: 0; visibility:hidden; transform: translateY(-10px); transition: opacity 220ms ease,transform 220ms ease,visibility 0s 220ms; }
  .site-nav.is-open { opacity:1; visibility:visible; transform:none; transition-delay:0s; }
  .site-nav > a:not(.header-demo) { padding: 1rem 0; font:400 2.6rem/1 var(--serif); letter-spacing:-.03em; text-transform:none; border-bottom:1px solid rgba(255,255,255,.18); }.site-nav > a:not(.header-demo)::after { display:none; }.header-demo { margin-top:2rem; justify-content:space-between; box-shadow:5px 5px 0 var(--paper-bright); }
  .sales-hero { min-height:auto; padding: 8.3rem 1rem 2rem; gap: 2.5rem; }
  .sales-hero > *, .hero-copy { min-width: 0; max-width: 100%; }
  .hero-register { display:none; }.hero-copy h1 { max-width: 100%; font-size: clamp(4.1rem,19vw,5rem); line-height:.77; }.hero-copy h1 em { transform:none; }.hero-lede { max-width:100%; font-size:.91rem; line-height:1.65; overflow-wrap:break-word; }.hero-actions { align-items:stretch; flex-direction:column; }.button { width:100%; justify-content:space-between; }.hero-facts { grid-template-columns:1fr; gap:0; }.hero-facts li { padding:.8rem 0; border-left:0; border-bottom:1px solid var(--line); }.hero-facts li:last-child { border-bottom:0; }.hero-machine { min-height:550px; }.machine-grid { inset:4% 0 5% 2%; }.screen-frame { width:88%; }.screen-frame > img { height:235px; }.output-frame { width:60%; bottom:9%; }.proof-ticket { left:3%; bottom:4%; width:46%; min-height:160px; }.proof-ticket > strong { font-size:1.25rem; }.proof-ticket dl { grid-template-columns:1fr; gap:.3rem; }.proof-ticket dl div { display:flex; justify-content:space-between; border-left:0; border-bottom:1px solid var(--line); padding:.25rem 0; }.proof-ticket dd { margin:0; }.approval-stamp { top:.7rem; right:.5rem; }.transfer-track { left:35%; top:51%; width:58%; }.hero-machine figcaption { width:58%; font-size:.4rem; }.hero-sequence { max-width:100%; overflow-x:auto; grid-template-columns:repeat(5,minmax(100px,1fr)); }.hero-sequence li { white-space:nowrap; }
  .material-strip p { justify-content:flex-start; overflow:hidden; }.material-strip span:nth-of-type(n+4),.material-strip i:nth-of-type(n+4) { display:none; }
  .opening-statement,.production-head,.platform-heading,.outputs-head { grid-template-columns:1fr; gap:1.8rem; }.opening-statement > .opening-copy,.production-head > .production-intro,.platform-heading > p,.outputs-head > p { grid-column:1; }.opening-head h2,.production-head h2,.platform-heading h2,.outputs-head h2 { font-size: clamp(3.7rem,17vw,5.3rem); }.opening-rule { margin-top:1rem; }
  .production-head { padding-bottom:3rem; }.production-tabs { top:60px; }.production-tabs button { min-width:125px; flex-basis:125px; }.production-tabs button small { display:none; }.production-view { min-height:780px; }.line-panel { padding:3.5rem 1rem 1rem; gap:1.4rem; }.line-panel.is-active { min-height:780px; }.line-media { height:380px; box-shadow:7px 7px 0 rgba(255,255,255,.055); }.line-copy { display:block; }.line-copy h3 { font-size:2.5rem; }.line-copy > p:not(.eyebrow) { margin-top:1rem; }.line-copy dl { margin-top:1.2rem; }.capture-required { padding:1.5rem; }.capture-required strong { font-size:2.7rem; }.proof-sheet { width:78%; min-height:75%; padding:1.3rem; }.proof-sheet > strong { margin-top:1.3rem; font-size:2.7rem; }.proof-sheet dl { margin:1.2rem 0; }
  .press-check { padding:5rem 1rem; gap:2rem; }.press-copy h2 { font-size:clamp(3.7rem,17vw,5.4rem); }.press-copy .section-index { margin-bottom:3rem; }.press-visual { min-height:420px; }.press-sheet { width:94%; }.guide-bleed { inset:3%; }.press-visual figcaption { bottom:0; }
  .capability-ledger { margin-top:3rem; }.capability-ledger article { padding:1.4rem 0; grid-template-columns:auto 1fr; gap:1rem; }.capability-ledger article > div { grid-column:2; }.capability-ledger article > p { grid-column:2; margin:0; }.capability-ledger article > strong { grid-column:2; justify-self:start; text-align:left; }.ledger-number { grid-row:1/4; align-self:start; font-size:1.7rem; }
  .evidence-sheet { margin-top:4rem; box-shadow:7px 7px 0 rgba(17,18,22,.12); }.evidence-image { min-height:340px; }.evidence-sheet figcaption { min-height:300px; }.evidence-sheet figcaption b { font-size:2.7rem; }
  .outputs-section { padding-bottom:4rem; }.product-wall { min-height:0; padding:0 1rem; display:grid; grid-template-columns:1fr; gap:2rem; }.product-piece,.piece-cards,.piece-flyers,.piece-brochure,.piece-book { position:relative; inset:auto; width:100%; transform:none; }.product-piece:hover { transform:translateY(-5px); }.product-piece:nth-child(even) { transform:rotate(1deg); }.product-piece:nth-child(odd) { transform:rotate(-1deg); }.wall-note { position:relative; inset:auto; width:calc(100% - 2rem); min-height:220px; margin:1rem; transform:rotate(1deg); }
  .implementation-section { padding:5rem 1rem; gap:4rem; }.implementation-mark { width:85%; padding:1.2rem; box-shadow:10px 10px 0 var(--ink); }.implementation-copy h2 { font-size:clamp(3.7rem,16vw,5.2rem); }.implementation-copy > p:not(.eyebrow) { font-size:.8rem; }
  .final-cta { min-height:82svh; padding:6rem 1rem; }.final-cta h2 { font-size:clamp(4.2rem,19vw,6.7rem); }.final-actions { width:100%; flex-direction:column; }
  .site-footer { grid-template-columns:1fr; justify-items:center; text-align:center; }.site-footer p:last-child { text-align:center; }
}

@media (max-width: 420px) {
  .hero-machine { min-height:500px; }.screen-frame > img { height:205px; }.proof-ticket { width:52%; }.output-frame { width:63%; }.hero-machine figcaption { display:none; }.process-dots { right:1%; }.press-visual { min-height:360px; }
}

@media (hover: none) {
  .product-piece:hover,.capability-ledger article:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
  .hero-parallax { translate: none !important; }
  .production-sticky { position: relative; top: auto; }
  .production-sentinels { display: none; }
}

@media print {
  .site-header,.print-progress,.material-strip,.production-sentinels { display:none !important; }
  body { color:#000; background:#fff; }
  .sales-hero,.production-section,.press-check,.final-cta { min-height:auto; color:#000; background:#fff; }
}
