:root {
  --ink: #101411;
  --ink-soft: #1d231f;
  --graphite: #3f4942;
  --muted: #6d786f;
  --paper: #f6f7f2;
  --surface: #ffffff;
  --surface-soft: #eef1ea;
  --surface-dark: #151a17;
  --signal: #b8f319;
  --signal-strong: #9fd20e;
  --line: #d8ded4;
  --line-strong: #bbc4b8;
  --white: #ffffff;
  --max-width: 1260px;
  --header-height: 78px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-xs: 0 1px 2px rgba(16,20,17,.04), 0 4px 12px rgba(16,20,17,.05);
  --shadow-sm: 0 8px 24px rgba(16,20,17,.07);
  --shadow-md: 0 18px 50px rgba(16,20,17,.09);
  --shadow-lg: 0 30px 80px rgba(16,20,17,.13);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 3%, rgba(184,243,25,.07), transparent 28rem),
    linear-gradient(180deg, #fbfcf9 0%, var(--paper) 38%, #f3f5ef 100%);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--signal); color: var(--ink); }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 52px), var(--max-width));
  margin-inline: auto;
}

/* Header: calm, credible, conversion-led */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(251,252,249,.88);
  border-bottom: 1px solid rgba(16,20,17,.08);
  backdrop-filter: blur(18px) saturate(120%);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .13em;
  white-space: nowrap;
}

.site-header .brand-logo {
  display: block;
  width: auto;
  height: 46px;
}

.brand-mark {
  position: relative;
  width: 19px;
  height: 19px;
  border: 1.5px solid var(--ink);
  border-radius: 4px;
  background: var(--surface);
  box-shadow: inset 0 0 0 3px var(--paper);
}
.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: var(--signal);
  border-radius: 999px;
}
.brand-mark::before { width: 9px; height: 2px; top: 7px; left: 4px; }
.brand-mark::after { width: 2px; height: 9px; top: 4px; left: 7px; }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(16,20,17,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.70);
  box-shadow: 0 3px 18px rgba(16,20,17,.045);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav > a,
.nav-dropdown-trigger {
  position: relative;
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #313a34;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible {
  background: var(--surface-soft);
  color: var(--ink);
}
.desktop-nav > a::after,
.nav-dropdown-trigger::after { display: none; }

.desktop-nav > a[href="#contact"] {
  padding-inline: 15px;
  background: var(--ink);
  color: var(--white);
}
.desktop-nav > a[href="#contact"]:hover,
.desktop-nav > a[href="#contact"]:focus-visible {
  background: #000;
  transform: translateY(-1px);
}

.language {
  margin-left: 2px;
  padding: 8px 10px 7px;
  border: 0;
  border-radius: 999px;
  background: var(--signal);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.nav-dropdown { position: relative; display: flex; align-items: center; height: 100%; }
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 360px;
  height: 16px;
  transform: translateX(-50%);
}
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: 7px; }
.nav-dropdown-trigger::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: 340px;
  padding: 8px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.desktop-nav .nav-dropdown-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 9px;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 750;
  color: var(--graphite);
}
.desktop-nav .nav-dropdown-menu a:hover,
.desktop-nav .nav-dropdown-menu a:focus-visible {
  background: var(--surface-soft);
  color: var(--ink);
}
.desktop-nav .nav-dropdown-menu a::after { display: none; }

.mobile-nav { display: none; position: relative; }
.mobile-nav > summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(310px, calc(100vw - 36px));
  display: grid;
  padding: 8px;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.mobile-nav nav > a,
.mobile-nav nav .language {
  display: block;
  padding: 12px 13px;
  border: 0;
  border-radius: 9px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}
.mobile-nav nav > a:hover { background: var(--surface-soft); }
.mobile-services-menu { border: 0; }
.mobile-services-menu summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 13px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 750;
}
.mobile-services-menu summary::after { content: "+"; float: right; font-weight: 900; }
.mobile-services-menu[open] summary::after { content: "−"; }
.mobile-services-links {
  display: grid;
  margin: 2px 0 6px;
  padding: 6px 8px 6px 14px;
  border-left: 2px solid var(--signal);
}
.mobile-nav nav .mobile-services-links a {
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: var(--graphite);
}
.mobile-nav nav .language { justify-self: start; margin: 5px 8px; padding: 7px 9px; }

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, .97fr);
  gap: 78px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 54px;
  min-height: calc(100vh - var(--header-height));
}

.hero-copy { max-width: 690px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 24px;
  color: #4b564e;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .14em;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(184,243,25,.16);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(54px, 6.3vw, 88px);
  line-height: .94;
  letter-spacing: -.057em;
  font-weight: 760;
}
.hero h1 span {
  display: inline;
  position: relative;
  z-index: 0;
  white-space: nowrap;
}
.hero h1 span::after {
  content: "";
  position: absolute;
  left: .01em;
  right: -.02em;
  bottom: .04em;
  height: .16em;
  border-radius: 999px;
  background: var(--signal);
  z-index: -1;
  transform: rotate(-.6deg);
}
.hero-kicker {
  margin: 32px 0 10px;
  max-width: 650px;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.28;
  font-weight: 760;
  letter-spacing: -.02em;
}
.hero-body {
  max-width: 630px;
  margin: 0;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 11px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease, border-color 150ms ease;
}
.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(16,20,17,.14);
}
.button-primary::after {
  content: "↗";
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
}
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: #000;
  box-shadow: 0 12px 24px rgba(16,20,17,.18);
}
.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.7);
  color: var(--ink);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: var(--surface);
}
.turnaround {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}
.turnaround strong { color: var(--ink); }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal-strong);
  box-shadow: 0 0 0 4px rgba(184,243,25,.15);
}

/* Hero technical visual: premium production-proof object */
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 550px;
  display: grid;
  place-items: center;
  isolation: isolate;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 5% 3% 6% 7%;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
    linear-gradient(rgba(16,20,17,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,20,17,.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.4deg);
  z-index: -1;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 62%;
  height: 58%;
  right: 1%;
  top: 15%;
  border-radius: 30px;
  background: var(--signal);
  opacity: .9;
  transform: rotate(4deg);
  z-index: -2;
}
.artboard {
  position: relative;
  width: min(88%, 520px);
  aspect-ratio: 1 / 1.09;
  padding: 20px;
  border: 1px solid #c8cec4;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9f5 100%);
  box-shadow: 0 18px 38px rgba(16,20,17,.16), 0 2px 5px rgba(16,20,17,.06);
  transform: rotate(1deg);
}
.artboard::before {
  content: "PRODUCTION PROOF";
  position: absolute;
  right: 18px;
  top: 47px;
  padding: 5px 7px;
  border-radius: 5px;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .1em;
}
.artboard-topline,
.artboard-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #606a62;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .1em;
}
.artboard-footer {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 17px;
}
.artboard-footer span:first-child {
  padding: 4px 6px 3px;
  border-radius: 5px;
  background: var(--signal);
  color: var(--ink);
}
.dieline { position: absolute; inset: 12% 4% 12%; }
.dieline::before {
  content: "";
  position: absolute;
  left: 2.5%;
  top: 34%;
  width: 7.5%;
  height: 36%;
  background:
    repeating-linear-gradient(135deg, transparent 0 5px, rgba(184,243,25,.72) 5px 7px),
    #f8f9f5;
  border: 2px solid var(--ink);
  clip-path: polygon(16% 3%, 100% 0, 100% 100%, 16% 97%, 0 91%, 0 9%);
  z-index: 1;
}
.panel, .flap, .crop, .reg-dot { position: absolute; }
.panel {
  top: 34%;
  height: 36%;
  background: #f8f9f5;
  border-left: 1px dashed var(--signal-strong);
  z-index: 2;
}
.panel-a { left: 10%; width: 26%; border-top: 1px dashed var(--signal-strong); border-bottom: 2px solid var(--ink); }
.panel-b { left: 36%; width: 16%; border-top: 1px dashed var(--signal-strong); border-bottom: 1px dashed var(--signal-strong); }
.panel-c { left: 52%; width: 26%; border-top: 2px solid var(--ink); border-bottom: 1px dashed var(--signal-strong); }
.panel-d { left: 78%; width: 16%; border-top: 1px dashed var(--signal-strong); border-bottom: 1px dashed var(--signal-strong); border-right: 2px solid var(--ink); }
.flap-one {
  left: 10%; top: 10%; width: 26%; height: 24%;
  background: #f8f9f5; border: 2px solid var(--ink); border-bottom: 1px dashed var(--signal-strong);
  border-radius: 17px 17px 0 0; z-index: 1;
}
.flap-two {
  left: 36%; top: 22%; width: 16%; height: 12%;
  background: #f8f9f5; border: 2px solid var(--ink); border-bottom: 1px dashed var(--signal-strong);
  clip-path: polygon(0 0, 78% 0, 96% 100%, 0 100%); z-index: 1;
}
.flap-three {
  left: 52%; top: 70%; width: 26%; height: 24%;
  background: #f8f9f5; border: 2px solid var(--ink); border-top: 1px dashed var(--signal-strong);
  border-radius: 0 0 17px 17px; z-index: 1;
}
.panel-b::after {
  content: "";
  position: absolute; left: -1px; top: 100%; width: calc(100% + 1px); height: 31%;
  background: #f8f9f5; border: 2px solid var(--ink); border-top: 1px dashed var(--signal-strong);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 14% 100%); z-index: -1;
}
.panel-d::before,
.panel-d::after {
  content: "";
  position: absolute; left: -1px; width: calc(100% + 1px); height: 31%;
  background: #f8f9f5; border: 2px solid var(--ink); z-index: -1;
}
.panel-d::before { bottom: 100%; border-bottom: 1px dashed var(--signal-strong); clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%); }
.panel-d::after { top: 100%; border-top: 1px dashed var(--signal-strong); clip-path: polygon(0 0, 100% 0, 88% 100%, 18% 100%); }
.crop { width: 18px; height: 18px; }
.crop::before, .crop::after { content: ""; position: absolute; background: var(--ink); }
.crop::before { width: 18px; height: 1px; top: 8px; }
.crop::after { width: 1px; height: 18px; left: 8px; }
.crop-tl { left: -9px; top: -9px; }
.crop-tr { right: -9px; top: -9px; }
.crop-bl { left: -9px; bottom: -9px; }
.crop-br { right: -9px; bottom: -9px; }
.reg-dot { bottom: 3.5%; width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--ink); }
.reg-one { left: 8%; background: var(--ink); }
.reg-two { left: 14%; background: var(--signal); }
.reg-three { left: 20%; background: var(--white); }

/* Trust proof strip */
.trust-layer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr .8fr 1fr;
  gap: 1px;
  margin-top: 26px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.trust-layer > div {
  min-height: 116px;
  padding: 22px 24px;
  background: var(--surface);
}
.trust-layer > div + div { border-left: 0; }
.trust-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink) !important;
  color: var(--white);
}
.trust-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 11px;
  padding: 5px 7px 4px;
  border-radius: 5px;
  background: var(--signal);
  color: var(--ink);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .11em;
}
.trust-group strong { max-width: 450px; font-size: 20px; line-height: 1.25; letter-spacing: -.02em; }
.trust-metric { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.trust-metric strong { font-size: 26px; line-height: 1; letter-spacing: -.04em; }
.trust-metric span { color: var(--muted); font-size: 13px; line-height: 1.45; }
.trust-production strong { font-size: 17px; letter-spacing: .035em; }

/* Generic sections */
.section { padding: 112px 0; border-top: 1px solid var(--line); }
.section-heading { margin-bottom: 50px; }
.section-heading h2,
.conf-intro h2 {
  margin: 0 0 17px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 780;
}
.section-heading p {
  margin: 8px auto 0;
  max-width: 860px;
  color: var(--graphite);
}
.section-heading .lead { color: var(--ink); font-size: 19px; line-height: 1.55; }
.section-heading .process-support-highlight {
  display: inline-flex;
  margin-top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(114,151,10,.25);
  border-radius: 999px;
  background: rgba(184,243,25,.16);
  color: #33400e;
  font-size: 14px;
  font-weight: 800;
}
.centered { text-align: center; }
.split-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: end; }
.split-heading p { margin: 0; max-width: 640px; }

/* Who we support: audience-specific, premium role cards */
.support-section { background: var(--surface); }
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border: 0;
}
.support-card {
  position: relative;
  min-height: 455px;
  padding: 30px 28px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fbfcf9 100%);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.support-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--signal);
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform 180ms ease;
}
.support-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.support-card:hover::before { transform: scaleX(1); }
.support-card + .support-card { border-left: 1px solid var(--line); }
.support-card:nth-child(2) { background: linear-gradient(180deg, #f7f9f4 0%, #fff 100%); }
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 26px;
  margin-bottom: 54px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
}
.support-card h3 {
  margin: 0 0 18px;
  max-width: 300px;
  font-size: 27px;
  line-height: 1.04;
  letter-spacing: -.04em;
}
.support-card p { margin: 0 0 14px; color: var(--graphite); }
.support-card .card-lead { color: var(--ink); font-weight: 780; line-height: 1.45; }
.support-bullets { margin: 18px 0 14px; padding: 0; list-style: none; }
.support-bullets li {
  position: relative;
  padding-left: 21px;
  color: var(--graphite);
  line-height: 1.5;
  font-size: 15px;
}
.support-bullets li + li { margin-top: 9px; }
.support-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal-strong);
}
.support-bullets strong { color: var(--ink); font-weight: 850; }
.card-note {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 25px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

/* Services: make comparison easy for owners and procurement */
.services-section { background: var(--paper); }
.service-list { display: grid; gap: 14px; border-top: 0; }
.service-row {
  display: grid;
  grid-template-columns: minmax(220px,.82fr) minmax(0,1.42fr) auto;
  gap: 36px;
  align-items: center;
  padding: 27px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 2px 8px rgba(16,20,17,.025);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}
.service-row:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.service-row-featured {
  margin-inline: 0;
  padding: 31px 28px;
  border: 1px solid #28312b;
  background:
    radial-gradient(circle at 100% 0, rgba(184,243,25,.12), transparent 24rem),
    var(--surface-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.service-row-featured .service-copy p,
.service-row-featured .price span { color: #c8d0c9; }
.service-row-featured .service-title h3 a { color: var(--white); }
.service-row-ppwr { position: relative; }
.service-row-ppwr::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 999px 999px 0;
  background: var(--signal);
}
.service-title h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.13;
  letter-spacing: -.03em;
}
.service-title h3 a { text-decoration: none; }
.service-title h3 a:hover,
.service-title h3 a:focus-visible { text-decoration: underline; text-decoration-color: var(--signal); text-underline-offset: 5px; text-decoration-thickness: 2px; }
.price { margin: 0; color: var(--ink); font-size: 23px; font-weight: 850; letter-spacing: -.035em; }
.service-row-featured .price { color: var(--white); }
.price span { display: block; margin-top: 4px; color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.4; letter-spacing: 0; }
.service-copy p { margin: 0 0 8px; color: var(--graphite); font-size: 15px; line-height: 1.58; }
.service-copy p:last-child { margin-bottom: 0; }
.service-copy .disclaimer { color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.5; }
.ppwr-service-tag {
  display: inline-flex;
  margin: 6px 0 0;
  padding: 5px 8px 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(184,243,25,.18);
  color: #465711;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.service-copy .ppwr-service-lead { color: var(--ink); font-size: 16px; }
.service-mini-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px 18px;
  margin: 16px 0 14px;
  padding: 0;
  list-style: none;
}
.service-mini-list li {
  position: relative;
  padding-left: 18px;
  color: var(--graphite);
  font-size: 13px;
  font-weight: 720;
  line-height: 1.4;
}
.service-mini-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: #739b00; font-weight: 900; }
.service-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 10px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
}
.service-link::after { content: "↗"; margin-left: 7px; font-size: 14px; }
.service-link:hover,
.service-link:focus-visible { transform: translateY(-1px); border-color: var(--ink); background: var(--signal); }
.service-link-explore { box-shadow: none; }
.service-row-featured .service-link,
.service-row-featured .service-link-explore { border-color: rgba(255,255,255,.2); background: var(--signal); color: var(--ink); box-shadow: none; }

/* PPWR: distinct expert capability, not a compliance gimmick */
.process-section {
  position: relative;
  overflow: hidden;
  background: #121713;
  color: var(--white);
}
.process-section::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,243,25,.14), rgba(184,243,25,0) 68%);
}
.process-shell { position: relative; }
.ppwr-main-heading { max-width: 980px; margin-left: auto; margin-right: auto; }
.ppwr-main-heading h2 { font-size: clamp(36px, 4.1vw, 58px); line-height: 1.02; }
.ppwr-main-heading .lead { max-width: 820px; margin-inline: auto; color: #c5cec6; font-weight: 500; }
.compact { margin-bottom: 58px; }
.process-section .section-heading p { color: #c7cfc8; }
.ppwr-process {
  margin-top: 50px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.035);
  box-shadow: 0 26px 70px rgba(0,0,0,.22);
  overflow: hidden;
}
.ppwr-output-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 26px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035);
  color: var(--white);
}
.ppwr-output-heading span { color: var(--signal); font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.ppwr-output-heading p { margin: 0; max-width: 580px; color: #bfc8c1; font-size: 13px; font-weight: 600; }
.ppwr-output-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.ppwr-output-grid article {
  position: relative;
  min-height: 280px;
  padding: 26px 24px 28px;
  transition: background 170ms ease;
}
.ppwr-output-grid article:hover { background: rgba(255,255,255,.035); }
.ppwr-output-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--signal);
}
.ppwr-output-grid article + article { border-left: 1px solid rgba(255,255,255,.09); }
.ppwr-output-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 24px;
  margin-bottom: 52px;
  border: 1px solid rgba(184,243,25,.32);
  border-radius: 999px;
  color: var(--signal);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.ppwr-output-grid h4 { margin: 0 0 10px; color: var(--white); font-size: 18px; line-height: 1.12; }
.ppwr-output-grid p { margin: 0; color: #bdc6be; font-size: 13px; line-height: 1.55; }

.ppwr-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.ppwr-cta-button {
  border-color: var(--signal);
  background: var(--signal);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.ppwr-cta-button::after {
  content: "↗";
  margin-left: 10px;
  font-size: 16px;
  line-height: 1;
}
.ppwr-cta-button:hover,
.ppwr-cta-button:focus-visible {
  transform: translateY(-2px);
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 14px 28px rgba(0,0,0,.22);
}

/* Confidentiality: reassure printers, agencies and procurement */
.confidentiality-section { background: var(--surface); }
.confidentiality-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 74px;
  align-items: center;
  padding: 42px 44px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(184,243,25,.08), transparent 44%),
    #f8faf5;
}
.conf-intro h2 { margin-bottom: 12px; }
.conf-intro .lead { margin: 0; color: var(--graphite); font-size: 20px; }
.conf-list { margin: 0; padding: 0; list-style: none; border-top: 0; }
.conf-list li {
  position: relative;
  padding: 13px 14px 13px 36px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 750;
}
.conf-list li:last-child { border-bottom: 0; }
.conf-list li::before {
  content: "✓";
  position: absolute;
  left: 8px;
  top: 13px;
  color: #709300;
  font-weight: 900;
}

/* FAQ: minimal friction */
.faq-section { background: var(--surface); }
.faq-heading { margin-bottom: 34px; }
.faq-accordion { display: grid; gap: 10px; border-top: 0; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item[open] { box-shadow: var(--shadow-xs); }
.faq-item summary {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 16px;
  align-items: center;
  min-height: 76px;
  padding: 15px 18px;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-number {
  display: inline-flex;
  width: 32px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}
.faq-question { color: var(--ink); font-size: 18px; line-height: 1.25; font-weight: 780; letter-spacing: -.015em; }
.faq-icon { position: relative; width: 22px; height: 22px; justify-self: end; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 140ms ease; }
.faq-icon::before { width: 14px; height: 1.5px; left: 4px; top: 10px; }
.faq-icon::after { width: 1.5px; height: 14px; left: 10px; top: 4px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-item[open] summary { background: #fbfcf9; }
.faq-answer { padding: 0 58px 23px 82px; background: #fbfcf9; }
.faq-answer p { margin: 0; max-width: 900px; color: var(--graphite); font-size: 15px; line-height: 1.7; }
.faq-item summary:hover .faq-question,
.faq-item summary:focus-visible .faq-question { text-decoration: underline; text-decoration-color: var(--signal); text-decoration-thickness: 2px; text-underline-offset: 5px; }
.faq-item summary:focus-visible { outline: 3px solid rgba(184,243,25,.6); outline-offset: -3px; }

/* Contact: strong close, straightforward procurement feel */
.contact-section {
  padding: 112px 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 0, rgba(184,243,25,.12), transparent 26rem),
    #eef1ea;
}
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: stretch;
}
.contact-copy {
  padding: 38px 36px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.contact-copy .eyebrow { color: var(--signal); }
.contact-copy h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: .96;
  letter-spacing: -.055em;
}
.contact-copy > p:not(.eyebrow) { max-width: 520px; margin-top: 24px; color: #c4ccc5; font-size: 17px; }
.contact-details {
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: #d1d7d2;
  font-size: 14px;
}
.contact-details p { margin: 0 0 14px; }
.contact-details strong { color: var(--white); }
.contact-details a { color: var(--signal); font-weight: 800; text-underline-offset: 4px; }
.contact-form {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.form-row.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 16px; }
.contact-form label > span { color: var(--graphite); font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: #fafbf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, background 150ms ease;
}
.contact-form input:hover,
.contact-form textarea:hover { border-color: #98a394; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: #809e2b; background: var(--white); box-shadow: 0 0 0 4px rgba(184,243,25,.18); }
.contact-form textarea { resize: vertical; min-height: 138px; }
.submit-button { width: 100%; margin-top: 2px; border: 0; background: var(--ink); color: var(--white); }
.form-note { margin: 16px 0 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.form-note a { color: var(--ink); font-weight: 800; }

/* Footer */
.site-footer { padding: 30px 0; background: #0e120f; color: var(--white); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; }
.footer-brand .brand-mark { border-color: rgba(255,255,255,.7); background: #151a17; box-shadow: none; }
.footer-inner p { margin: 0; color: #939d95; font-size: 13px; text-align: center; }
.footer-inner > a:last-child { color: #d6ddd7; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; text-underline-offset: 4px; }

/* Focused service pages keep the same visual language */
.service-page-main { min-height: 70vh; }
.service-page-hero { padding: 94px 0 72px; border-bottom: 1px solid var(--line); }
.service-page-hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 72px; align-items: end; }
.service-page-hero h1 { margin: 0; max-width: 850px; font-size: clamp(48px, 6vw, 86px); line-height: .95; letter-spacing: -.055em; }
.service-page-hero .service-page-lead { margin: 28px 0 0; max-width: 760px; color: var(--graphite); font-size: 20px; line-height: 1.55; }
.service-page-summary { padding: 22px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); box-shadow: var(--shadow-xs); }
.service-page-summary strong { display: block; margin-bottom: 8px; font-size: 14px; }
.service-page-summary p { margin: 0; color: var(--graphite); font-size: 14px; }
.service-detail-section { padding: 88px 0; border-bottom: 1px solid var(--line); }
.service-detail-section.alt { background: var(--surface); }
.service-detail-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 72px; align-items: start; }
.service-detail-grid h2 { margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.02; letter-spacing: -.04em; }
.service-detail-copy { max-width: 760px; }
.service-detail-copy > p { margin: 0 0 20px; color: var(--graphite); font-size: 18px; line-height: 1.65; }
.detail-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.detail-list li { position: relative; padding: 14px 10px 14px 28px; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 700; }
.detail-list li::before { content: "✓"; position: absolute; left: 5px; top: 13px; color: #709300; font-weight: 900; }
.process-cards, .related-services { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; border: 0; }
.process-card, .related-service { min-height: 190px; padding: 26px 24px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); box-shadow: var(--shadow-xs); }
.process-card + .process-card, .related-service + .related-service { border-left: 1px solid var(--line); }
.process-card:nth-child(2) { background: #fafbf8; }
.process-card h3 { margin: 32px 0 12px; font-size: 20px; line-height: 1.15; letter-spacing: -.025em; }
.process-card p, .related-service p { margin: 0; color: var(--graphite); }
.process-card .mini-label { display: inline-flex; padding: 5px 7px 4px; border: 0; border-radius: 999px; background: rgba(184,243,25,.18); font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.related-service h3 { margin: 0 0 12px; font-size: 19px; line-height: 1.15; }
.related-service p { margin: 0 0 16px; font-size: 15px; }
.related-service a { font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; text-underline-offset: 4px; }
.service-cta { padding: 76px 0; border-bottom: 1px solid #8eb414; background: var(--signal); }
.service-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.service-cta h2 { margin: 0 0 10px; font-size: clamp(32px,4vw,54px); line-height: 1; letter-spacing: -.045em; }
.service-cta p { margin: 0; max-width: 720px; color: #35400f; }
.service-cta .button { background: var(--ink); color: var(--white); }
.ppwr-legal-note { margin-top: 28px; padding: 18px 20px; border: 1px solid var(--line); border-radius: 12px; background: #f8faf5; color: var(--graphite); font-size: 14px; font-weight: 700; line-height: 1.55; }

/* Responsive */
@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
  .hero { grid-template-columns: 1fr; gap: 52px; padding-top: 66px; }
  .hero-copy { max-width: 820px; }
  .hero-visual { min-height: 520px; }
  .artboard { width: min(72%, 520px); }
  .trust-layer { grid-template-columns: 1fr 1fr; }
  .trust-group { grid-column: 1 / -1; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card { min-height: 0; padding-bottom: 76px; }
  .support-card + .support-card { border-left: 1px solid var(--line); }
  .card-index { margin-bottom: 34px; }
  .service-row { grid-template-columns: .85fr 1.15fr; }
  .service-link { grid-column: 1 / -1; justify-self: start; }
  .ppwr-output-grid { grid-template-columns: 1fr 1fr; }
  .ppwr-output-grid article:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .ppwr-output-grid article:nth-child(4) { border-top: 1px solid rgba(255,255,255,.09); }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .service-page-hero-inner, .service-detail-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-page-summary { max-width: 620px; }
  .process-cards, .related-services { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --header-height: 68px; }
  .shell { width: min(calc(100% - 30px), var(--max-width)); }
  .brand { font-size: 11px; letter-spacing: .1em; }
  .site-header .brand-logo { height: 38px; }
  .hero { padding-top: 44px; padding-bottom: 34px; }
  .hero-eyebrow { margin-bottom: 18px; font-size: 10px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero h1 span { white-space: normal; }
  .hero-kicker { margin-top: 26px; }
  .hero-actions { align-items: stretch; }
  .button { width: 100%; }
  .turnaround { align-items: flex-start; flex-wrap: wrap; }
  .hero-visual { min-height: 390px; }
  .hero-visual::before { inset: 5% 2% 7% 2%; border-radius: 20px; }
  .hero-visual::after { width: 76%; height: 66%; right: 0; top: 14%; border-radius: 20px; }
  .artboard { width: 87%; border-radius: 14px; }
  .trust-layer { grid-template-columns: 1fr; border-radius: 14px; }
  .trust-layer > div { min-height: 0; padding: 18px 17px; }
  .section, .contact-section { padding: 76px 0; }
  .section-heading { margin-bottom: 36px; }
  .split-heading { grid-template-columns: 1fr; gap: 16px; }
  .support-grid { gap: 12px; }
  .support-card { padding: 26px 21px 76px; border-radius: 14px; }
  .card-note { left: 21px; right: 21px; }
  .service-list { gap: 10px; }
  .service-row, .service-row-featured { grid-template-columns: 1fr; gap: 18px; padding: 24px 19px; border-radius: 14px; }
  .service-link { grid-column: auto; width: auto; }
  .service-mini-list { grid-template-columns: 1fr; }
  .ppwr-process { margin-top: 36px; border-radius: 14px; }
  .ppwr-output-heading { display: block; padding: 18px 20px; }
  .ppwr-output-heading p { margin-top: 7px; }
  .ppwr-output-grid { grid-template-columns: 1fr; }
  .ppwr-output-grid article { min-height: 0; padding: 23px 20px; }
  .ppwr-output-grid article + article,
  .ppwr-output-grid article:nth-child(3),
  .ppwr-output-grid article:nth-child(4) { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .ppwr-output-number { margin-bottom: 30px; }
  .confidentiality-grid { grid-template-columns: 1fr; gap: 28px; padding: 28px 22px; border-radius: 16px; }
  .faq-item { border-radius: 12px; }
  .faq-item summary { grid-template-columns: 38px 1fr 24px; gap: 11px; min-height: 70px; padding: 13px 12px; }
  .faq-question { font-size: 16px; }
  .faq-answer { padding: 0 20px 20px 61px; }
  .faq-answer p { font-size: 14px; }
  .contact-copy { padding: 30px 24px; border-radius: 18px; }
  .contact-form { padding: 20px; border-radius: 18px; }
  .form-row.two-col { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; justify-items: start; }
  .footer-inner p { text-align: left; }
  .service-page-hero { padding: 58px 0 48px; }
  .service-page-hero h1 { font-size: clamp(44px,14vw,68px); }
  .service-detail-section { padding: 66px 0; }
  .service-cta-inner { grid-template-columns: 1fr; }
  .service-cta .button { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}


/* ========================================================================== 
   PREPRESS STANDARD — proof-room visual system
   Personality comes from production language: crop marks, job tickets, grids,
   hard edges and annotation-like typography. Deliberately avoids gradient blobs,
   floating 3D decoration, rainbow accents, pill-everything and generic card UI.
   ========================================================================== */
:root {
  --ink: #0c0f0d;
  --ink-soft: #181d19;
  --graphite: #404941;
  --muted: #6b756d;
  --paper: #f1f1ea;
  --surface: #fbfcf7;
  --surface-soft: #e9ece4;
  --surface-dark: #101411;
  --signal: #c8ff28;
  --signal-strong: #a8db12;
  --proof-red: #e75836;
  --line: #cdd2c9;
  --line-strong: #aeb7ab;
  --white: #ffffff;
  --radius-sm: 2px;
  --radius-md: 3px;
  --radius-lg: 4px;
  --radius-xl: 4px;
  --shadow-xs: 0 2px 0 rgba(12,15,13,.08);
  --shadow-sm: 0 5px 0 rgba(12,15,13,.08);
  --shadow-md: 0 8px 0 rgba(12,15,13,.10);
  --shadow-lg: 0 12px 0 rgba(12,15,13,.10);
}

body {
  background: var(--paper);
  background-image:
    linear-gradient(rgba(12,15,13,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,15,13,.024) 1px, transparent 1px);
  background-size: 32px 32px;
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Technical labels use a real production-document voice. */
.eyebrow,
.hero-eyebrow,
.artboard-topline,
.artboard-footer,
.trust-label,
.card-index,
.price span,
.ppwr-output-heading span,
.ppwr-output-number,
.faq-number,
.form-note,
.contact-form label > span,
.mini-label,
.language {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

/* Header: workstation toolbar, not a floating pill. */
.site-header {
  background: rgba(251,252,247,.96);
  border-bottom: 1px solid var(--ink);
  backdrop-filter: blur(10px);
}
.brand { gap: 12px; font-size: 12px; font-weight: 900; }
.brand-mark {
  width: 21px;
  height: 21px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand-mark::before,
.brand-mark::after { border-radius: 0; background: var(--ink); }
.brand-mark::before { width: 13px; height: 1px; top: 9px; left: 3px; }
.brand-mark::after { width: 1px; height: 13px; top: 3px; left: 9px; }

.desktop-nav {
  gap: 0;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
}
.desktop-nav > a,
.nav-dropdown-trigger {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-right: 1px solid var(--line);
  border-radius: 0;
  font-size: 12px;
}
.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger:focus-visible { background: var(--signal); }
.desktop-nav > a[href$="#contact"] {
  background: var(--ink);
  color: var(--white);
  padding-inline: 15px;
}
.desktop-nav > a[href$="#contact"]:hover,
.desktop-nav > a[href$="#contact"]:focus-visible { background: var(--signal); color: var(--ink); transform: none; }
.language {
  margin: 0;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 0;
  background: var(--signal);
}
.nav-dropdown-menu {
  top: calc(100% + 10px);
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  box-shadow: 7px 7px 0 rgba(12,15,13,.12);
}
.desktop-nav .nav-dropdown-menu a { border-radius: 0; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.desktop-nav .nav-dropdown-menu a:last-child { border-bottom: 0; }
.desktop-nav .nav-dropdown-menu a:hover,
.desktop-nav .nav-dropdown-menu a:focus-visible { background: var(--signal); }
.mobile-nav > summary,
.mobile-nav nav,
.mobile-services-menu summary,
.mobile-nav nav > a,
.mobile-nav nav .mobile-services-links a { border-radius: 0; }
.mobile-nav > summary { border-color: var(--ink); background: var(--surface); }
.mobile-nav nav { border-color: var(--ink); box-shadow: 6px 6px 0 rgba(12,15,13,.12); }

/* Hero: oversized editorial type + a proof sheet, no decorative blob. */
.hero {
  position: relative;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
  gap: 64px;
  padding-top: 82px;
  padding-bottom: 48px;
}
.hero::before {
  content: "PS / JOB 0001";
  position: absolute;
  top: 34px;
  left: 0;
  font: 700 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .13em;
  color: var(--muted);
}
.hero-copy { position: relative; max-width: 740px; }
.hero-copy::after {
  content: "BLEED 3 MM  •  PDF/X  •  CMYK";
  display: block;
  margin-top: 28px;
  padding-top: 12px;
  border-top: 1px dashed var(--line-strong);
  color: var(--muted);
  font: 700 10px/1.3 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .09em;
}
.hero-eyebrow {
  display: block;
  margin: 0 0 18px;
  color: var(--graphite);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.hero-eyebrow::before { display: none; }
.hero h1 {
  max-width: 790px;
  font-size: clamp(58px, 6.4vw, 94px);
  line-height: .91;
  letter-spacing: -.063em;
  font-weight: 800;
}
.hero h1 span { white-space: normal; }
.hero h1 span::after {
  left: -.02em;
  right: -.04em;
  bottom: -.005em;
  height: .34em;
  border-radius: 0;
  background: var(--signal);
  transform: none;
}
.hero-kicker { margin-top: 30px; max-width: 670px; font-size: clamp(21px, 1.75vw, 26px); }
.hero-body { max-width: 650px; }
.button {
  min-height: 48px;
  padding: 12px 17px;
  border-radius: 0;
  font-size: 14px;
  box-shadow: none;
}
.button-primary { box-shadow: 4px 4px 0 var(--signal); }
.button-primary:hover,
.button-primary:focus-visible { transform: translate(-1px,-1px); box-shadow: 6px 6px 0 var(--signal); }
.button-secondary { background: var(--surface); border-color: var(--ink); }
.button-secondary:hover,
.button-secondary:focus-visible { transform: translate(-1px,-1px); box-shadow: 4px 4px 0 var(--line-strong); }
.turnaround { border-top: 0; padding-top: 0; font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }
.status-dot { width: 9px; height: 9px; border-radius: 0; box-shadow: none; background: var(--signal); border: 1px solid var(--ink); }

.hero-visual { min-height: 560px; overflow: visible; }
.hero-visual::before {
  inset: 6% 2% 4% 7%;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--signal);
  background-image:
    linear-gradient(rgba(12,15,13,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,15,13,.09) 1px, transparent 1px);
  background-size: 24px 24px;
  box-shadow: none;
  transform: translate(14px, 14px);
}
.hero-visual::after {
  content: "PRESS CHECK / READY";
  width: auto;
  height: auto;
  right: -18px;
  top: 14%;
  padding: 7px 10px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  color: var(--ink);
  opacity: 1;
  transform: rotate(90deg) translateX(100%);
  transform-origin: top right;
  z-index: 3;
  font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
}
.artboard {
  width: min(90%, 520px);
  padding: 20px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: #fff;
  box-shadow: 10px 10px 0 rgba(12,15,13,.12);
  transform: rotate(-.5deg);
}
.artboard::before {
  right: 18px;
  top: 46px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--signal);
  color: var(--ink);
}
.artboard-footer span:first-child { border-radius: 0; border: 1px solid var(--ink); }
.dieline::before { background: #fff; }
.panel { background: #fff; }
.flap-one,.flap-two,.flap-three,.panel-b::after,.panel-d::before,.panel-d::after { background: #fff; border-radius: 0; }
.reg-dot { border-radius: 0; width: 11px; height: 11px; }
.reg-one { background: var(--ink); }
.reg-two { background: var(--signal); }
.reg-three { background: var(--proof-red); }

/* Trust layer becomes a compact job ticket. */
.trust-layer {
  margin-top: 34px;
  grid-template-columns: 1.35fr .75fr .95fr;
  gap: 0;
  padding: 0;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  box-shadow: 6px 6px 0 rgba(12,15,13,.08);
}
.trust-layer > div { min-height: 108px; padding: 20px 22px; background: var(--surface); border-right: 1px solid var(--ink); }
.trust-layer > div:last-child { border-right: 0; }
.trust-group { background: var(--ink) !important; }
.trust-label { border-radius: 0; border: 1px solid var(--signal); }

/* Section rhythm: editorial, precise, fewer floating surfaces. */
.section { padding: 104px 0; border-top: 1px solid var(--ink); }
.section-heading { margin-bottom: 44px; }
.section-heading h2,
.conf-intro h2 { font-size: clamp(34px, 3.4vw, 50px); letter-spacing: -.052em; }
.centered { text-align: left; }
.section-heading p { margin-left: 0; }
.section-heading .process-support-highlight {
  display: inline-block;
  margin-top: 22px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--signal);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  letter-spacing: .04em;
}

/* Audience section: deliberately non-identical compositions. */
.support-section { background: var(--surface); }
.support-grid {
  grid-template-columns: 1.18fr .92fr .90fr;
  gap: 0;
  border: 1px solid var(--ink);
}
.support-card {
  min-height: 450px;
  padding: 30px 27px 72px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.support-card::before { left: 0; right: 0; top: 0; height: 6px; background: var(--signal); transform: none; }
.support-card + .support-card { border-left: 1px solid var(--ink); }
.support-card:nth-child(2) { background: var(--paper); }
.support-card:nth-child(2)::before { background: var(--proof-red); }
.support-card:nth-child(3) { background: var(--ink); color: var(--white); }
.support-card:nth-child(3)::before { background: var(--signal); }
.support-card:nth-child(3) h3,
.support-card:nth-child(3) .card-lead,
.support-card:nth-child(3) .support-bullets strong { color: var(--white); }
.support-card:nth-child(3) p,
.support-card:nth-child(3) .support-bullets li { color: #c6cec7; }
.support-card:nth-child(3) .support-bullets li::before { background: var(--signal); }
.support-card:nth-child(3) .card-note { border-color: rgba(255,255,255,.22); color: var(--signal); }
.support-card:hover { transform: none; box-shadow: inset 0 -6px 0 var(--signal); }
.card-index {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 64px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .12em;
}
.support-card:nth-child(3) .card-index { color: #9fa8a0; }
.support-card h3 { font-size: clamp(25px, 2.1vw, 31px); }
.support-bullets li::before { content: ""; width: 10px; height: 2px; border-radius: 0; background: var(--ink); top: 10px; }
.card-note { left: 27px; right: 27px; border-radius: 0; background: transparent; padding: 12px 0 0; border-top: 1px dashed var(--line-strong); }

/* Services: job docket rows rather than floating cards. */
.services-section { background: var(--paper); }
.service-list { counter-reset: service; gap: 0; border-top: 1px solid var(--ink); }
.service-row {
  counter-increment: service;
  position: relative;
  grid-template-columns: .84fr 1.22fr auto;
  gap: 34px;
  padding: 28px 18px 28px 62px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.service-row::before {
  content: "0" counter(service);
  position: absolute;
  left: 0;
  top: 32px;
  color: var(--muted);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
}
.service-row:hover { transform: none; background: var(--surface); box-shadow: inset 6px 0 0 var(--signal); }
.service-row-featured {
  background: var(--ink);
  color: var(--white);
  box-shadow: inset 6px 0 0 var(--signal);
}
.service-row-featured:hover { background: #151a17; box-shadow: inset 8px 0 0 var(--signal); }
.service-title h3 { font-size: 23px; }
.service-link {
  min-width: 158px;
  padding: 10px 11px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--surface);
  box-shadow: none;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  letter-spacing: .04em;
}
.service-link:hover,
.service-link:focus-visible { transform: translate(-1px,-1px); background: var(--signal); box-shadow: 3px 3px 0 var(--ink); }
.service-row-featured .service-link,
.service-row-featured .service-link-explore { border-color: var(--signal); background: var(--signal); }

/* PPWR: black technical plate with rule-based layout. */
.process-section { background: var(--ink); }
.process-section::before {
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 40px 40px;
}
.ppwr-main-heading { margin-left: 0; margin-right: 0; max-width: 1040px; text-align: left; }
.ppwr-main-heading h2 { max-width: 900px; }
.ppwr-main-heading .lead { margin-left: 0; margin-right: 0; }
.ppwr-process { border: 1px solid rgba(255,255,255,.32); border-radius: 0; overflow: hidden; }
.ppwr-output-heading { border-bottom: 1px solid rgba(255,255,255,.32); }
.ppwr-output-grid article { background: transparent; }
.ppwr-output-grid article:hover { background: rgba(200,255,40,.06); }
.ppwr-output-number { width: auto; height: auto; border: 0; border-radius: 0; color: var(--signal); }
.ppwr-output-grid article::before { background: var(--signal); height: 3px; }
.ppwr-cta-button { border-radius: 0; }

/* Confidentiality: terse legal-production note, not another card. */
.confidentiality-section { background: var(--surface); }
.confidentiality-grid {
  grid-template-columns: .65fr 1.35fr;
  gap: 64px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.conf-intro { border-left: 8px solid var(--signal); padding-left: 22px; }
.conf-list { border-top: 1px solid var(--ink); }
.conf-list li { border-bottom: 1px solid var(--line-strong); }
.conf-list li::before { content: "NDA"; width: auto; height: auto; border: 0; border-radius: 0; background: transparent; color: var(--muted); font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; letter-spacing: .08em; top: 20px; }

/* FAQ: functional accordion, reduced decoration. */
.faq-section { background: var(--paper); }
.faq-accordion { gap: 0; border-top: 1px solid var(--ink); }
.faq-item { border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; background: transparent; }
.faq-item:hover { border-color: var(--ink); }
.faq-item[open] { box-shadow: none; background: var(--surface); }
.faq-item[open] summary,
.faq-answer { background: transparent; }
.faq-number { width: auto; height: auto; border: 0; border-radius: 0; background: transparent; color: var(--muted); }
.faq-icon::before,.faq-icon::after { background: var(--ink); }

/* Contact: quote/brief sheet with hard edge and proof-green keyline. */
.contact-section { background: var(--ink); }
.contact-copy { border-radius: 0; background: transparent; border: 1px solid rgba(255,255,255,.24); box-shadow: none; }
.contact-copy::before {
  content: "NEW JOB / INTAKE";
  display: block;
  margin-bottom: 26px;
  color: var(--signal);
  font: 800 10px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
}
.contact-copy h2 { max-width: 570px; }
.contact-form { position: relative; border-radius: 0; border: 1px solid var(--signal); box-shadow: 8px 8px 0 rgba(200,255,40,.15); }
.contact-form::before {
  content: "BRIEF / 01";
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--muted);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .1em;
}
.contact-form input,
.contact-form textarea { border-radius: 0; background: #fff; border-color: var(--line-strong); }
.submit-button { box-shadow: 4px 4px 0 var(--signal); }

/* Footer */
.site-footer { border-top: 1px solid #293029; }
.footer-brand .brand-mark { border-radius: 0; }

/* Service pages: same proof-room system, with asymmetry and hard geometry. */
.service-page-main { background: var(--paper); }
.service-page-hero {
  position: relative;
  padding: 90px 0 76px;
  border-bottom: 1px solid var(--ink);
  background: var(--surface);
  overflow: hidden;
}
.service-page-hero::after {
  content: "PREPRESS STANDARD / SERVICE SHEET";
  position: absolute;
  right: 20px;
  top: 50%;
  color: var(--muted);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .14em;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right top;
}
.service-page-hero-inner { grid-template-columns: 1.28fr .72fr; gap: 78px; }
.service-page-hero h1 { font-size: clamp(50px, 6.2vw, 90px); }
.service-page-summary {
  position: relative;
  padding: 24px 22px 28px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--signal);
  box-shadow: 7px 7px 0 rgba(12,15,13,.12);
}
.service-page-summary::before {
  content: "SPEC";
  display: block;
  margin-bottom: 28px;
  font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
}
.service-detail-section { border-bottom: 1px solid var(--ink); }
.service-detail-section.alt { background: var(--surface); }
.service-detail-grid { grid-template-columns: .62fr 1.38fr; }
.detail-list { border-top-color: var(--ink); }
.detail-list li { border-bottom-color: var(--line-strong); }
.detail-list li::before { content: "—"; color: var(--ink); }
.process-cards,
.related-services { gap: 0; border: 1px solid var(--ink); }
.process-card,
.related-service {
  min-height: 210px;
  padding: 25px 23px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.process-card + .process-card,
.related-service + .related-service { border-left: 1px solid var(--ink); }
.process-card:nth-child(2) { background: var(--paper); }
.process-card:nth-child(3) { background: var(--ink); color: var(--white); }
.process-card:nth-child(3) p { color: #bdc6be; }
.process-card:nth-child(3) .mini-label { color: var(--ink); }
.process-card .mini-label {
  padding: 5px 7px;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--signal);
}
.related-service:nth-child(even) { background: var(--paper); }
.related-service a { text-decoration-thickness: 2px; text-decoration-color: var(--signal); }
.service-cta { border-bottom: 1px solid var(--ink); background: var(--signal); }
.service-cta .button { border: 1px solid var(--ink); box-shadow: 5px 5px 0 rgba(12,15,13,.20); }
.ppwr-legal-note { border-radius: 0; border-color: var(--ink); background: var(--surface); }

@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; }
  .hero::before { top: 28px; }
  .trust-layer { grid-template-columns: 1fr 1fr; }
  .trust-group { grid-column: 1 / -1; }
  .support-grid { grid-template-columns: 1fr; }
  .support-card + .support-card { border-left: 0; border-top: 1px solid var(--ink); }
  .service-row { grid-template-columns: .9fr 1.1fr; }
  .service-page-hero-inner,
  .service-detail-grid { grid-template-columns: 1fr; }
  .process-card + .process-card,
  .related-service + .related-service { border-left: 0; border-top: 1px solid var(--ink); }
}

@media (max-width: 720px) {
  body { background-size: 24px 24px; }
  .hero { padding-top: 54px; }
  .hero::before { top: 24px; }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-copy::after { font-size: 9px; }
  .hero-visual { min-height: 405px; }
  .hero-visual::before { border-radius: 0; inset: 7% 2% 5% 4%; transform: translate(8px,8px); }
  .hero-visual::after { right: -22px; }
  .artboard { border-radius: 0; box-shadow: 6px 6px 0 rgba(12,15,13,.12); }
  .trust-layer { border-radius: 0; grid-template-columns: 1fr; }
  .trust-layer > div { border-right: 0; border-bottom: 1px solid var(--ink); }
  .trust-layer > div:last-child { border-bottom: 0; }
  .support-card { border-radius: 0; }
  .service-row,
  .service-row-featured { grid-template-columns: 1fr; padding: 24px 18px 24px 48px; border-radius: 0; }
  .service-row::before { top: 29px; }
  .service-link { width: 100%; }
  .ppwr-process,
  .confidentiality-grid,
  .faq-item,
  .contact-copy,
  .contact-form { border-radius: 0; }
  .confidentiality-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-copy { padding: 28px 22px; }
  .service-page-hero::after { display: none; }
  .process-cards,
  .related-services { grid-template-columns: 1fr; }
}

/* Final anti-blob correction: full technical grid rather than a decorative radial shape. */
.process-section::before { inset: 0; width: auto; height: auto; right: 0; top: 0; border-radius: 0; background-color: transparent; }
.ppwr-output-grid article::before { border-radius: 0; }

/* 2026-08-31 homepage polish: hero label, service numbering, confidentiality markers */
.hero-eyebrow {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 28px 0 20px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  background: var(--signal);
  color: var(--ink);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: .11em;
}

.service-row::before {
  left: 16px;
  z-index: 2;
  color: var(--muted);
}
.service-row-featured::before { color: #c8d0c9; }

.conf-list { counter-reset: confidentiality-item; }
.conf-list li { counter-increment: confidentiality-item; }
.conf-list li::before {
  content: "0" counter(confidentiality-item);
  min-width: 20px;
  color: var(--muted);
  font: 700 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .08em;
}

@media (max-width: 720px) {
  .hero-eyebrow {
    margin-top: 24px;
    font-size: 9px;
    letter-spacing: .08em;
  }
  .service-row::before { left: 16px; }
}


/* Homepage hero artwork only. Keep the site's layout and shared tokens intact. */
.hero-visual.hero-visual-refined {
  min-width: 0;
  padding: 22px 0;
}
.hero-visual-refined::before,
.hero-visual-refined::after,
.hero-visual-refined .artboard::before {
  content: none;
}
.hero-visual-refined .proof-stage {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1.16;
  isolation: isolate;
}
.hero-visual-refined .proof-backing {
  position: absolute;
  inset: 14px 0 0 14px;
  border: 1px solid var(--ink);
  background-color: var(--signal);
  background-image:
    linear-gradient(rgba(12,15,13,.065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,15,13,.065) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-visual-refined .artboard {
  position: absolute;
  inset: 0 22px 14px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: auto;
  aspect-ratio: auto;
  min-width: 0;
  padding: 20px;
  border: 1px solid #4d5648;
  border-radius: 0;
  background: #fff;
  transform: none;
  box-shadow: 1px 2px 2px rgba(12,15,13,.09), 5px 8px 14px rgba(12,15,13,.12);
}
.hero-visual-refined .artboard-topline {
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: .09em;
  white-space: nowrap;
}
.hero-visual-refined .proof-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  font: 600 8px/1.3 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .05em;
  color: var(--muted);
  white-space: nowrap;
}
.hero-visual-refined .proof-caption strong {
  padding: 5px 6px;
  border: 1px solid var(--ink);
  background: var(--signal);
  color: var(--ink);
  font-weight: 700;
}
.hero-visual-refined .proof-dieline {
  display: block;
  width: 100%;
  height: 0;
  min-height: 0;
  flex: 1 1 auto;
  object-fit: contain;
  margin: 14px 0 10px;
}
.hero-visual-refined .proof-key {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 13px;
  color: var(--graphite);
  font: 600 9px/1.2 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .03em;
}
.hero-visual-refined .proof-key span {
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.hero-visual-refined .proof-key i {
  display: inline-block;
  width: 17px;
  flex: 0 0 17px;
}
.hero-visual-refined .proof-key-cut { border-top: 1.5px solid #24301f; }
.hero-visual-refined .proof-key-crease { border-top: 1.5px dashed #648b35; }
.hero-visual-refined .proof-key-bleed { height: 6px; background: #c8e9a8; }
.hero-visual-refined .artboard-footer {
  position: static;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  line-height: 1.3;
}
.hero-visual-refined .artboard-footer span:first-child {
  padding: 4px 6px;
  border-radius: 0;
}
.hero-visual-refined .proof-side-label {
  position: absolute;
  top: 42px;
  right: 5px;
  writing-mode: vertical-rl;
  color: var(--ink);
  font: 700 8px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .1em;
}
@media (max-width: 720px) {
  .hero-visual.hero-visual-refined { min-height: 405px; padding: 0; }
  .hero-visual-refined .artboard { padding: clamp(12px, 3vw, 20px); }
  .hero-visual-refined .artboard-topline { font-size: 8px; padding-bottom: 10px; }
  .hero-visual-refined .proof-caption { font-size: 7px; padding-top: 10px; gap: 5px; }
  .hero-visual-refined .proof-caption strong { padding: 4px; }
  .hero-visual-refined .proof-dieline { margin: 10px 0 8px; }
  .hero-visual-refined .proof-key { font-size: 8px; padding-bottom: 10px; gap: 6px; }
  .hero-visual-refined .proof-key i { width: 12px; flex-basis: 12px; }
  .hero-visual-refined .artboard-footer { font-size: 8px; padding-top: 10px; }
}

/* Homepage graphic family: sharp vector artwork in the existing proof palette. */
.support-card .audience-icon {
  position: absolute;
  top: 26px;
  right: 27px;
  display: block;
  width: 96px;
  height: 80px;
  object-fit: contain;
  pointer-events: none;
}
.service-title .service-graphic {
  display: block;
  width: 224px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 224 / 116;
  margin: 0 0 20px;
  object-fit: contain;
  pointer-events: none;
}
@media (max-width: 720px) {
  .support-card .audience-icon { top: 22px; right: 21px; }
  .service-title .service-graphic { width: 208px; margin-bottom: 22px; }
}

/* Service-page hero illustrations: scale the homepage graphic family into a
   stronger visual anchor while keeping the existing proof-room language. */
.service-page-hero-inner { align-items: center; }
.service-page-hero-aside {
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
}
.service-page-hero-graphic {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 224px;
  padding: 42px 28px 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: 7px 7px 0 rgba(200,255,40,.72);
  overflow: hidden;
}
.service-page-hero-graphic::before {
  content: attr(data-label);
  position: absolute;
  top: 15px;
  left: 17px;
  color: var(--muted);
  font: 800 9px/1 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  letter-spacing: .12em;
}
.service-page-hero-graphic::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 7px;
  background: var(--signal);
}
.service-page-hero-graphic img {
  display: block;
  width: min(100%, 360px);
  height: auto;
  pointer-events: none;
}
.service-page-hero-aside-dark .service-page-hero-graphic {
  background: var(--ink);
  box-shadow: 7px 7px 0 rgba(200,255,40,.35);
}
.service-page-hero-aside-dark .service-page-hero-graphic::before { color: #a7b49d; }
.service-detail-heading-illustrated img {
  display: block;
  width: min(100%, 260px);
  height: auto;
  margin: 0 0 30px;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .service-page-hero-aside { max-width: 620px; }
}

@media (max-width: 720px) {
  .service-page-hero-graphic {
    min-height: 182px;
    padding: 38px 18px 22px;
    box-shadow: 5px 5px 0 rgba(200,255,40,.72);
  }
  .service-page-hero-graphic img { width: min(100%, 300px); }
  .service-page-hero-aside-dark .service-page-hero-graphic { box-shadow: 5px 5px 0 rgba(200,255,40,.35); }
  .service-detail-heading-illustrated img { width: min(100%, 224px); margin-bottom: 24px; }
}
