/* Base tokens */
:root {
  --steel: #262c31;
  --steel-2: #3a434a;
  --signal: #f4761b;
  --signal-deep: #c95a0c;
  --paper: #f0f3f5;
  --white: #ffffff;
  --rule: #d3dae0;
  --rule-soft: #e2e7eb;
  --muted: #5b6670;
  --tint-1: #e6ebef;
  --tint-2: #dce3e9;
  --tint-3: #fde9da;
  --mono: ui-monospace, "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --narrow: "Bahnschrift", "DIN Alternate", "Arial Narrow", "Roboto Condensed", var(--sans);
  --wrap: 1240px;
  --ease: cubic-bezier(.3, .7, .2, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.62;
  color: var(--steel);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(38, 44, 49, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 44, 49, .07) 1px, transparent 1px),
    linear-gradient(rgba(38, 44, 49, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 44, 49, .03) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--steel); text-decoration-color: var(--signal); text-underline-offset: 3px; transition: color .2s var(--ease); }
a:hover { color: var(--signal-deep); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
label:focus-within { outline: 2px solid var(--signal); outline-offset: 2px; }

h1, h2, h3, h4 { font-family: var(--narrow); font-weight: 700; line-height: 1.12; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 4.2vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); }
h3 { font-size: 1.28rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }

.PSV-SKIP { position: absolute; left: -9999px; top: 0; background: var(--steel); color: var(--white); padding: 10px 14px; z-index: 100; }
.PSV-SKIP:focus { left: 10px; }

.PSV-WRAP { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.PSV-TEXT { max-width: 68ch; }
.PSV-CODE { font-family: var(--mono); font-size: .88em; letter-spacing: .02em; }

/* Header and stepper */
.PSV-TOP {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--steel);
  color: var(--paper);
  border-bottom: 3px solid var(--signal);
}
.PSV-TOP-ROW { display: flex; align-items: center; gap: 28px; min-height: 64px; }
.PSV-BRAND { display: flex; align-items: center; gap: 10px; color: var(--white); text-decoration: none; flex-shrink: 0; }
.PSV-BRAND:hover { color: var(--white); }
.PSV-BRAND img { width: 34px; height: 34px; background: var(--steel-2); }
.PSV-BRAND span { font-family: var(--narrow); font-weight: 700; font-size: 1.25rem; letter-spacing: .01em; }
.PSV-BRAND small { display: block; font-family: var(--mono); font-size: .66rem; color: #aab4bc; font-weight: 400; margin-top: -2px; }

.PSV-STEPS { flex: 1; min-width: 0; overflow-x: auto; scrollbar-width: none; }
.PSV-STEPS::-webkit-scrollbar { display: none; }
.PSV-STEPS ol { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; min-width: max-content; }
.PSV-STEPS li { display: flex; align-items: center; }
.PSV-STEP {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 4px; color: #c5ced5; text-decoration: none;
  font-size: .86rem; white-space: nowrap;
  transition: color .2s var(--ease);
}
.PSV-STEP b {
  display: inline-grid; place-items: center;
  width: 24px; height: 24px;
  border: 1.5px solid #6d7881;
  font-family: var(--mono); font-size: .72rem; font-weight: 400;
  background: transparent;
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.PSV-STEP:hover { color: var(--white); }
.PSV-STEP:hover b { border-color: var(--signal); }
.PSV-STEP:active b { transform: scale(.92); }
.PSV-STEP.PSV-DONE b { background: var(--signal); border-color: var(--signal); color: var(--steel); }
.PSV-STEP.PSV-HERE { color: var(--white); }
.PSV-STEP.PSV-HERE b { border-color: var(--signal); color: var(--signal); }
.PSV-LINK-BAR { position: relative; width: 38px; height: 2px; background: #4c565e; margin: 0 8px; overflow: hidden; }
.PSV-LINK-BAR i { position: absolute; inset: 0; background: var(--signal); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }

.PSV-CALL {
  flex-shrink: 0;
  font-family: var(--mono); font-size: .85rem;
  color: var(--steel); background: var(--signal);
  padding: 9px 14px; text-decoration: none;
  transition: background-color .2s var(--ease), transform .15s var(--ease);
}
.PSV-CALL:hover { background: var(--white); color: var(--steel); }
.PSV-CALL:active { transform: translateY(1px); }

/* Sections and dimension lines */
.PSV-SEC { position: relative; }
.PSV-SEC::before,
.PSV-SEC::after { pointer-events: none; }
.PSV-DIM {
  position: absolute; top: 0; bottom: 0;
  width: 22px;
  pointer-events: none;
  z-index: 0;
}
.PSV-DIM::before {
  content: ""; position: absolute; left: 10px; top: 24px; bottom: 24px;
  border-left: 1px solid rgba(38, 44, 49, .35);
}
.PSV-DIM::after {
  content: ""; position: absolute; left: 4px; right: 4px; top: 24px; bottom: 24px;
  border-top: 1px solid rgba(38, 44, 49, .35);
  border-bottom: 1px solid rgba(38, 44, 49, .35);
}
.PSV-DIM span {
  position: absolute; top: 50%; left: 10px;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-family: var(--mono); font-size: .66rem; color: var(--muted);
  background: var(--paper); padding: 0 6px; white-space: nowrap;
}
.PSV-DIM-L { left: 4px; }
.PSV-DIM-R { right: 4px; }

/* Hero */
.PSV-HERO { padding: 58px 0 72px; }
.PSV-HERO-GRID { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: 44px; align-items: start; }
.PSV-HERO-GRID > * { min-width: 0; }
.PSV-HERO h1 { max-width: 16ch; }
.PSV-LEAD { font-size: 1.1rem; color: var(--steel-2); max-width: 60ch; }
.PSV-ACTS { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 34px; }

.PSV-BTN {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 11px 22px;
  font: 600 .96rem var(--sans);
  border: 2px solid var(--steel); border-radius: 0;
  background: var(--steel); color: var(--white);
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .15s var(--ease);
}
.PSV-BTN:hover { background: var(--signal); border-color: var(--signal); color: var(--steel); }
.PSV-BTN:active { transform: translateY(2px); }
.PSV-BTN-LINE { background: transparent; color: var(--steel); }
.PSV-BTN-LINE:hover { background: var(--steel); color: var(--white); border-color: var(--steel); }

.PSV-CODES { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--steel); border-left: 1px solid var(--rule); }
.PSV-CODES > div {
  min-width: 0;
  padding: 16px 16px 18px;
  border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  background: rgba(255, 255, 255, .72);
  transition: background-color .2s var(--ease);
}
.PSV-CODES > div:hover { background: var(--white); }
.PSV-CODES > div:nth-child(3n+2) { background: rgba(230, 235, 239, .85); }
.PSV-CODES p { margin: 6px 0 0; font-size: .86rem; line-height: 1.45; color: var(--steel-2); }

.PSV-MARK {
  position: relative; display: inline-block;
  font-family: var(--mono); font-weight: 700; font-size: 1.02rem;
  color: var(--steel); padding-bottom: 3px;
}
.PSV-MARK::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--signal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .6s var(--ease);
}
.PSV-SEEN .PSV-MARK::after,
.PSV-MARK.PSV-SEEN::after { transform: scaleX(1); }

.PSV-HERO-PIC { position: relative; margin: 0; }
.PSV-HERO-PIC img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; background: var(--tint-2); }
.PSV-HERO-PIC figcaption {
  display: flex; justify-content: space-between; gap: 12px;
  margin-top: 10px; font-family: var(--mono); font-size: .74rem; color: var(--muted);
  border-top: 1px solid var(--steel); padding-top: 6px;
}
.PSV-FRAME { position: relative; }
.PSV-FRAME::before {
  content: ""; position: absolute; inset: -10px 10px 10px -10px;
  border: 1px dashed rgba(38, 44, 49, .45);
  pointer-events: none;
}
.PSV-FRAME img { position: relative; clip-path: inset(0 0 100% 0); transition: clip-path .9s var(--ease); }
.PSV-FRAME.PSV-SEEN img { clip-path: inset(0 0 0 0); }

/* Requirements expanded */
.PSV-REQS { padding: 88px 0 64px; background: rgba(255, 255, 255, .55); border-top: 1px solid var(--rule); }
.PSV-HEAD-SPLIT { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 36px; align-items: end; margin-bottom: 38px; }
.PSV-HEAD-SPLIT > * { min-width: 0; }
.PSV-HEAD-SPLIT p { color: var(--steel-2); }

.PSV-REQ {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 260px);
  gap: 28px;
  padding: 26px 26px 24px;
  border-left: 4px solid var(--steel);
  margin-bottom: 12px;
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.PSV-REQ > * { min-width: 0; }
.PSV-REQ:hover { border-left-color: var(--signal); transform: translateX(3px); }
.PSV-REQ:nth-child(odd) { background: var(--tint-1); }
.PSV-REQ:nth-child(even) { background: var(--white); }
.PSV-REQ:nth-child(3) { background: var(--tint-2); }
.PSV-REQ:nth-child(5) { background: var(--tint-3); }
.PSV-REQ h3 { margin-bottom: .4em; }
.PSV-REQ p { margin-bottom: .6em; }
.PSV-REQ-SIDE { font-size: .86rem; border-left: 1px dashed var(--muted); padding-left: 16px; color: var(--steel-2); }
.PSV-REQ-SIDE dt { font-family: var(--mono); font-size: .72rem; color: var(--muted); margin-top: 8px; }
.PSV-REQ-SIDE dt:first-child { margin-top: 0; }
.PSV-REQ-SIDE dd { margin: 0; }
.PSV-REQ-TAG { font-family: var(--mono); font-size: .76rem; color: var(--muted); display: block; margin-top: 6px; }

/* Services */
.PSV-SERV { padding: 30px 0 96px; }
.PSV-SERV-LIST { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px 30px; }
.PSV-CARD {
  display: grid; grid-template-rows: auto 1fr;
  background: var(--white);
  border: 1px solid var(--rule);
  outline: 2px solid transparent; outline-offset: -2px;
  transition: outline-color .25s var(--ease), box-shadow .25s var(--ease);
  min-width: 0;
}
.PSV-CARD:nth-child(2) { margin-top: 46px; }
.PSV-CARD:nth-child(4) { margin-top: 46px; }
.PSV-CARD.PSV-LIT { outline-color: var(--signal); box-shadow: 8px 8px 0 rgba(244, 118, 27, .18); }
.PSV-CARD-PIC { overflow: hidden; }
.PSV-CARD-PIC img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--tint-2); transition: transform .5s var(--ease), filter .5s var(--ease); filter: grayscale(.35); }
.PSV-CARD:hover .PSV-CARD-PIC img { transform: scale(1.04); filter: grayscale(0); }
.PSV-CARD-BODY { padding: 22px 24px 24px; display: flex; flex-direction: column; }
.PSV-CARD-BODY p { font-size: .95rem; }
.PSV-COVER { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 14px; padding: 0; list-style: none; }
.PSV-COVER li { font-family: var(--mono); font-size: .74rem; padding: 3px 7px; border: 1px solid var(--steel); background: var(--paper); }
.PSV-EXTRA { margin-top: auto; border-top: 1px solid var(--rule); padding-top: 12px; font-size: .88rem; }
.PSV-EXTRA table { width: 100%; border-collapse: collapse; }
.PSV-EXTRA td { padding: 4px 0; vertical-align: top; }
.PSV-EXTRA td:last-child { text-align: right; font-family: var(--mono); white-space: nowrap; padding-left: 12px; color: var(--signal-deep); }
.PSV-MORE { display: inline-block; margin-top: 12px; font-weight: 600; font-size: .92rem; }

/* Verification */
.PSV-CHECK { padding: 92px 0 84px; background: var(--steel); color: var(--paper); }
.PSV-CHECK .PSV-DIM::before,
.PSV-CHECK .PSV-DIM::after { border-color: rgba(240, 243, 245, .3); }
.PSV-CHECK .PSV-DIM span { background: var(--steel); color: #9aa5ae; }
.PSV-CHECK a { color: var(--white); }
.PSV-CHECK-TOP { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 42px; align-items: center; margin-bottom: 44px; }
.PSV-CHECK-TOP > * { min-width: 0; }
.PSV-CHECK-TOP p { color: #cfd6dc; }
.PSV-CHECK-TOP img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: var(--steel-2); }
.PSV-TABLE-BOX { overflow-x: auto; border: 1px solid #4c565e; }
.PSV-TABLE { width: 100%; border-collapse: collapse; min-width: 680px; font-size: .92rem; }
.PSV-TABLE th,
.PSV-TABLE td { text-align: left; padding: 13px 16px; border-bottom: 1px solid #434c54; vertical-align: top; }
.PSV-TABLE th { font-family: var(--narrow); font-weight: 600; color: var(--signal); background: #2e353b; }
.PSV-TABLE td:first-child { font-family: var(--mono); color: var(--white); white-space: nowrap; }
.PSV-TABLE tbody tr { transition: background-color .2s var(--ease); }
.PSV-TABLE tbody tr:hover { background: #313940; }
.PSV-NOTE { margin-top: 18px; font-size: .88rem; color: #aab4bc; max-width: 70ch; }

/* Order: checker + form */
.PSV-ORDER { padding: 96px 0 100px; }
.PSV-ORDER-GRID { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.PSV-ORDER-GRID > * { min-width: 0; }
.PSV-TEST { background: var(--white); border: 1px solid var(--rule); border-top: 4px solid var(--signal); padding: 26px; }
.PSV-TEST h3 { margin-bottom: .3em; }
.PSV-TEST > p { font-size: .92rem; color: var(--steel-2); }
.PSV-OPTS { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 8px; }
.PSV-OPT label {
  display: grid; grid-template-columns: 26px 64px minmax(0, 1fr);
  gap: 10px; align-items: start;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid transparent;
  cursor: pointer;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.PSV-OPT label:hover { border-color: var(--steel); }
.PSV-OPT label:active { background: var(--tint-2); }
.PSV-OPT input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.PSV-BOX {
  width: 22px; height: 22px; margin-top: 1px;
  border: 2px solid var(--steel); background: var(--white);
  display: grid; place-items: center;
  transition: background-color .2s var(--ease), border-color .2s var(--ease);
}
.PSV-BOX::after {
  content: ""; width: 10px; height: 5px;
  border-left: 2.5px solid var(--steel); border-bottom: 2.5px solid var(--steel);
  transform: rotate(-45deg) scale(0); margin-top: -3px;
}
.PSV-OPT input:checked + .PSV-BOX { background: var(--signal); border-color: var(--signal); animation: psvPop .38s var(--ease); }
.PSV-OPT input:checked + .PSV-BOX::after { transform: rotate(-45deg) scale(1); transition: transform .25s cubic-bezier(.3, 1.6, .5, 1); }
.PSV-OPT input:focus-visible + .PSV-BOX { outline: 2px solid var(--signal); outline-offset: 2px; }
.PSV-OPT input:checked ~ .PSV-OPT-TXT strong { color: var(--signal-deep); }
.PSV-OPT .PSV-CODE { padding-top: 2px; }
.PSV-OPT-TXT { font-size: .92rem; line-height: 1.45; }
.PSV-OPT-TXT small { display: block; color: var(--muted); font-size: .82rem; }
@keyframes psvPop {
  0% { transform: scale(1); }
  45% { transform: scale(1.22); }
  75% { transform: scale(.94); }
  100% { transform: scale(1); }
}
.PSV-RESULT { margin-top: 18px; border-top: 1px dashed var(--muted); padding-top: 14px; min-height: 60px; }
.PSV-RESULT h4 { margin-bottom: .4em; }
.PSV-RESULT ul { margin: 0; padding-left: 18px; font-size: .9rem; }
.PSV-RESULT li { margin-bottom: 3px; }
.PSV-RESULT .PSV-EMPTY { color: var(--muted); font-size: .9rem; margin: 0; }
.PSV-RESULT-SERV { margin-top: 10px; font-size: .86rem; color: var(--steel-2); }

.PSV-FORM { background: var(--steel); color: var(--paper); padding: 30px 28px; position: sticky; top: 90px; }
.PSV-FORM h3 { color: var(--white); }
.PSV-FORM p { color: #c5ced5; font-size: .92rem; }
.PSV-FIELD { margin-bottom: 14px; }
.PSV-FIELD label { display: block; font-size: .84rem; margin-bottom: 5px; color: #dfe5ea; }
.PSV-FIELD input,
.PSV-FIELD select,
.PSV-FIELD textarea {
  width: 100%; padding: 11px 12px;
  font: .95rem var(--sans); color: var(--steel);
  background: var(--paper); border: 2px solid var(--paper); border-radius: 0;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.PSV-FIELD input:hover,
.PSV-FIELD select:hover,
.PSV-FIELD textarea:hover { border-color: #b9c3cb; }
.PSV-FIELD input:focus,
.PSV-FIELD select:focus,
.PSV-FIELD textarea:focus { border-color: var(--signal); background: var(--white); outline: none; }
.PSV-FIELD textarea { min-height: 120px; resize: vertical; }
.PSV-PAIR { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 12px; }
.PSV-AGREE { display: flex; gap: 10px; align-items: flex-start; font-size: .84rem; color: #c5ced5; margin: 6px 0 18px; }
.PSV-AGREE input { margin-top: 4px; accent-color: var(--signal); width: 16px; height: 16px; flex-shrink: 0; }
.PSV-AGREE a { color: var(--white); }
.PSV-HONEY { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.PSV-FORM .PSV-BTN { width: 100%; background: var(--signal); border-color: var(--signal); color: var(--steel); }
.PSV-FORM .PSV-BTN:hover { background: var(--white); border-color: var(--white); }

/* Outside scope */
.PSV-OUT { padding: 84px 0 90px; background: rgba(255, 255, 255, .6); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.PSV-OUT-GRID { display: grid; grid-template-columns: minmax(0, 320px) minmax(0, 1fr); gap: 50px; align-items: start; }
.PSV-OUT-GRID > * { min-width: 0; }
.PSV-OUT-ASIDE img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; background: var(--tint-2); margin-top: 18px; }
.PSV-OUT-ASIDE p { color: var(--steel-2); }
.PSV-LIMITS { list-style: none; margin: 0; padding: 0; counter-reset: lim; }
.PSV-LIMITS li {
  counter-increment: lim;
  display: grid; grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.PSV-LIMITS li:first-child { padding-top: 0; }
.PSV-LIMITS li::before {
  content: "X-" counter(lim, decimal-leading-zero);
  font-family: var(--mono); font-weight: 700; font-size: .9rem;
  color: var(--signal-deep);
  border: 1px solid var(--signal); height: 30px;
  display: grid; place-items: center;
}
.PSV-LIMITS h3 { font-size: 1.1rem; margin-bottom: .3em; }
.PSV-LIMITS p { margin: 0 0 .4em; font-size: .95rem; }
.PSV-LIMITS .PSV-DO { color: var(--steel-2); font-size: .9rem; padding-left: 12px; border-left: 2px solid var(--steel); }

/* Glossary */
.PSV-GLOSS { padding: 80px 0 110px; }
.PSV-GLOSS-TOP { max-width: 62ch; margin-bottom: 30px; }
.PSV-TERMS { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; border-top: 2px solid var(--steel); }
.PSV-TERM { padding: 18px 20px 20px 0; border-bottom: 1px solid var(--rule); min-width: 0; }
.PSV-TERM:nth-child(3n+2),
.PSV-TERM:nth-child(3n) { padding-left: 20px; border-left: 1px solid var(--rule); }
.PSV-TERM dt { font-family: var(--mono); font-weight: 700; font-size: 1rem; margin-bottom: 4px; overflow-wrap: anywhere; }
.PSV-TERM dd { margin: 0; font-size: .9rem; color: var(--steel-2); line-height: 1.5; }

/* Floating summary */
.PSV-DOCK {
  position: fixed; left: 50%; bottom: 16px; z-index: 35;
  transform: translate(-50%, 140%);
  display: flex; align-items: center; gap: 16px;
  max-width: calc(100% - 24px);
  background: var(--steel); color: var(--paper);
  border: 1px solid #4c565e; border-left: 5px solid var(--signal);
  padding: 10px 12px 10px 16px;
  box-shadow: 0 10px 28px rgba(20, 24, 27, .28);
  transition: transform .35s var(--ease);
}
.PSV-DOCK.PSV-ON { transform: translate(-50%, 0); }
.PSV-DOCK-NUM { font-family: var(--mono); font-size: 1.35rem; font-weight: 700; color: var(--signal); min-width: 2ch; text-align: center; }
.PSV-DOCK-TXT { font-size: .86rem; line-height: 1.35; min-width: 0; }
.PSV-DOCK-TXT span { display: block; font-family: var(--mono); font-size: .72rem; color: #aab4bc; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.PSV-DOCK .PSV-BTN { min-height: 38px; padding: 7px 14px; font-size: .86rem; background: var(--signal); border-color: var(--signal); color: var(--steel); flex-shrink: 0; }
.PSV-DOCK .PSV-BTN:hover { background: var(--white); border-color: var(--white); }

/* Cookie strip */
.PSV-COOKIE {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--white); border-top: 2px solid var(--steel);
  padding: 12px 0; font-size: .86rem;
  display: none;
}
.PSV-COOKIE.PSV-ON { display: block; }
.PSV-COOKIE-ROW { display: flex; align-items: center; gap: 18px; justify-content: space-between; }
.PSV-COOKIE p { margin: 0; }
.PSV-COOKIE .PSV-BTN { min-height: 36px; padding: 6px 16px; font-size: .86rem; flex-shrink: 0; }

/* Footer */
.PSV-FOOT { background: var(--steel); color: #c5ced5; padding: 58px 0 26px; font-size: .9rem; border-top: 3px solid var(--signal); }
.PSV-FOOT a { color: #e7ecf0; }
.PSV-FOOT a:hover { color: var(--signal); }
.PSV-FOOT-GRID { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.1fr); gap: 34px; }
.PSV-FOOT-GRID > * { min-width: 0; }
.PSV-FOOT h4 { color: var(--white); font-size: .98rem; }
.PSV-FOOT ul { list-style: none; margin: 0; padding: 0; }
.PSV-FOOT li { margin-bottom: 7px; }
.PSV-FOOT address { font-style: normal; line-height: 1.7; }
.PSV-FOOT-END { margin-top: 40px; padding-top: 18px; border-top: 1px solid #434c54; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; font-family: var(--mono); font-size: .76rem; color: #8f9aa3; }
.PSV-SIGN { margin-top: 14px; font-size: .84rem; color: #aab4bc; }
.PSV-SIGN strong { color: #e7ecf0; font-weight: 600; }

/* Inner pages */
.PSV-PAGE-HEAD { padding: 56px 0 40px; border-bottom: 1px solid var(--rule); background: rgba(255, 255, 255, .55); }
.PSV-PAGE-HEAD p { max-width: 64ch; color: var(--steel-2); font-size: 1.05rem; }
.PSV-CRUMBS { font-family: var(--mono); font-size: .76rem; color: var(--muted); margin-bottom: 18px; }
.PSV-CRUMBS a { color: var(--muted); }
.PSV-PAGE-BODY { padding: 50px 0 90px; }
.PSV-PAGE-GRID { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 300px); gap: 50px; align-items: start; }
.PSV-PAGE-GRID > * { min-width: 0; }
.PSV-PROSE { max-width: 70ch; }
.PSV-PROSE h2 { font-size: 1.55rem; margin-top: 1.6em; }
.PSV-PROSE h2:first-child { margin-top: 0; }
.PSV-PROSE h3 { margin-top: 1.3em; }
.PSV-PROSE ul,
.PSV-PROSE ol { padding-left: 22px; }
.PSV-PROSE li { margin-bottom: 6px; }
.PSV-PROSE figure { margin: 26px 0; }
.PSV-PROSE figure img { width: 100%; background: var(--tint-2); }
.PSV-PROSE figcaption { font-family: var(--mono); font-size: .74rem; color: var(--muted); margin-top: 6px; }
.PSV-SIDE { background: var(--white); border: 1px solid var(--rule); border-top: 4px solid var(--steel); padding: 22px; position: sticky; top: 90px; }
.PSV-SIDE h3 { font-size: 1.05rem; }
.PSV-SIDE ul { margin: 0 0 16px; padding-left: 18px; font-size: .9rem; }
.PSV-SIDE .PSV-BTN { width: 100%; }
.PSV-LEGAL h2 { font-family: var(--narrow); }
.PSV-LEGAL .PSV-PARA { font-family: var(--mono); color: var(--signal-deep); margin-right: 8px; }
.PSV-KEYVAL { width: 100%; border-collapse: collapse; margin: 18px 0 24px; font-size: .94rem; }
.PSV-KEYVAL th,
.PSV-KEYVAL td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.PSV-KEYVAL th { width: 34%; font-weight: 600; background: var(--tint-1); }
.PSV-CONTACT-GRID { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 40px; align-items: start; }
.PSV-CONTACT-GRID > * { min-width: 0; }
.PSV-CONTACT-GRID .PSV-FORM { position: static; }
.PSV-CENTER { min-height: 62vh; display: grid; place-items: center; padding: 60px 0; text-align: center; }
.PSV-CENTER .PSV-BIG { font-family: var(--mono); font-size: clamp(3.6rem, 12vw, 7rem); color: var(--signal); line-height: 1; margin-bottom: 12px; }
.PSV-CENTER p { max-width: 52ch; margin-left: auto; margin-right: auto; }
.PSV-CENTER .PSV-ACTS { justify-content: center; }

/* Reveal */
.PSV-REVEAL { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.PSV-REVEAL.PSV-SEEN { opacity: 1; transform: none; }
.PSV-SLIDE { opacity: 0; transform: translateX(-22px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.PSV-SLIDE.PSV-SEEN { opacity: 1; transform: none; }
.PSV-NOJS .PSV-REVEAL,
.PSV-NOJS .PSV-SLIDE { opacity: 1; transform: none; }
.PSV-NOJS .PSV-FRAME img { clip-path: none; }

/* Breakpoints */
@media (max-width: 1280px) {
  .PSV-WRAP { padding: 0 36px; }
  .PSV-TOP-ROW { gap: 20px; }
  .PSV-LINK-BAR { width: 20px; margin: 0 6px; }
  .PSV-STEP { font-size: .82rem; }
  .PSV-HERO-GRID { gap: 34px; }
}

@media (max-width: 1100px) {
  .PSV-TOP-ROW { gap: 18px; }
  .PSV-LINK-BAR { width: 22px; margin: 0 5px; }
  .PSV-STEP { font-size: .8rem; }
  .PSV-REQ { grid-template-columns: 120px minmax(0, 1fr) minmax(0, 220px); gap: 22px; }
  .PSV-FOOT-GRID { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

@media (max-width: 1000px) {
  .PSV-CALL { display: none; }
  .PSV-HERO-GRID { grid-template-columns: minmax(0, 1fr) minmax(0, 300px); }
  .PSV-CODES { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .PSV-CODES > div:nth-child(3n+2) { background: rgba(255, 255, 255, .72); }
  .PSV-CODES > div:nth-child(4n+2),
  .PSV-CODES > div:nth-child(4n+3) { background: rgba(230, 235, 239, .85); }
  .PSV-CHECK-TOP { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .PSV-TERMS { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .PSV-TERM:nth-child(3n+2),
  .PSV-TERM:nth-child(3n) { padding-left: 0; border-left: 0; }
  .PSV-TERM:nth-child(even) { padding-left: 20px; border-left: 1px solid var(--rule); }
}

@media (max-width: 850px) {
  .PSV-WRAP { padding: 0 24px; }
  .PSV-DIM { display: none; }
  .PSV-HERO { padding: 40px 0 56px; }
  .PSV-HERO-GRID { grid-template-columns: minmax(0, 1fr); }
  .PSV-HERO-PIC { max-width: 420px; }
  .PSV-HEAD-SPLIT { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .PSV-REQ { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .PSV-REQ-SIDE { border-left: 0; border-top: 1px dashed var(--muted); padding: 12px 0 0; }
  .PSV-ORDER-GRID { grid-template-columns: minmax(0, 1fr); }
  .PSV-FORM { position: static; }
  .PSV-OUT-GRID { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .PSV-OUT-ASIDE img { max-width: 320px; }
  .PSV-PAGE-GRID,
  .PSV-CONTACT-GRID { grid-template-columns: minmax(0, 1fr); }
  .PSV-SIDE { position: static; }
}

@media (max-width: 700px) {
  .PSV-TOP-ROW { flex-wrap: wrap; gap: 4px 12px; padding: 8px 0 4px; min-height: 0; }
  .PSV-STEPS { flex-basis: 100%; }
  .PSV-STEP span { display: none; }
  .PSV-STEP.PSV-HERE span { display: inline; }
  .PSV-SERV-LIST { grid-template-columns: minmax(0, 1fr); }
  .PSV-CARD:nth-child(2),
  .PSV-CARD:nth-child(4) { margin-top: 0; }
  .PSV-REQS, .PSV-CHECK, .PSV-ORDER, .PSV-OUT { padding-top: 64px; padding-bottom: 64px; }
  .PSV-DOCK-TXT span { max-width: 150px; }
  .PSV-COOKIE-ROW { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 520px) {
  .PSV-WRAP { padding: 0 18px; }
  .PSV-CODES { grid-template-columns: minmax(0, 1fr); }
  .PSV-CODES > div:nth-child(n) { background: rgba(255, 255, 255, .72); }
  .PSV-CODES > div:nth-child(even) { background: rgba(230, 235, 239, .85); }
  .PSV-TERMS { grid-template-columns: minmax(0, 1fr); }
  .PSV-TERM:nth-child(n) { padding-left: 0; border-left: 0; }
  .PSV-PAIR { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .PSV-TEST, .PSV-FORM { padding: 22px 18px; }
  .PSV-OPT label { grid-template-columns: 24px minmax(0, 1fr); }
  .PSV-OPT .PSV-CODE { grid-column: 2; padding-top: 0; }
  .PSV-OPT-TXT { grid-column: 2; }
  .PSV-LIMITS li { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .PSV-LIMITS li::before { width: 58px; }
  .PSV-ACTS .PSV-BTN { width: 100%; }
  .PSV-DOCK { gap: 10px; left: 12px; right: 12px; max-width: none; transform: translateY(140%); }
  .PSV-DOCK.PSV-ON { transform: none; }
  .PSV-DOCK-TXT { flex: 1; }
}

@media (max-width: 400px) {
  h1 { font-size: 1.9rem; }
  .PSV-BRAND small { display: none; }
  .PSV-DOCK-TXT span { display: none; }
  .PSV-FOOT-GRID { grid-template-columns: minmax(0, 1fr); }
}

@media (max-height: 640px) and (min-width: 851px) {
  .PSV-HERO { padding-top: 30px; }
  .PSV-HERO-PIC { max-height: 520px; }
  .PSV-HERO-PIC img { max-height: 470px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .PSV-REVEAL, .PSV-SLIDE { opacity: 1; transform: none; }
  .PSV-FRAME img { clip-path: none; }
  .PSV-MARK::after { transform: scaleX(1); }
}
