@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/barlow-condensed-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --wb-ink: #111a22;
  --wb-ink-soft: #3f4c57;
  --wb-muted: #596773;
  --wb-paper: #ffffff;
  --wb-page: #f2f4f1;
  --wb-steel: #dfe4e4;
  --wb-steel-strong: #bbc4c8;
  --wb-line: #c7ced1;
  --wb-line-strong: #8e9ba3;
  --wb-blue: #075fd8;
  --wb-blue-dark: #064aa5;
  --wb-blue-soft: #e9f2ff;
  --wb-green: #117a4b;
  --wb-green-soft: #e5f5ec;
  --wb-amber: #a76308;
  --wb-amber-soft: #fff0cf;
  --wb-red: #b73b32;
  --wb-red-soft: #fdecea;
  --wb-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --wb-body: "Roboto", "Segoe UI", system-ui, sans-serif;
  --wb-mono: "Cascadia Mono", Consolas, monospace;
  --wb-width: min(1480px, calc(100% - 64px));
  --wb-radius-sm: 6px;
  --wb-radius: 12px;
  --wb-radius-lg: 16px;
  --wb-shadow-small: 0 8px 26px rgba(17, 26, 34, 0.09);
  --wb-shadow-large: 0 28px 70px rgba(17, 26, 34, 0.16);
  --wb-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --header-height: 78px;
}

* {
  scrollbar-color: var(--wb-line-strong) var(--wb-page);
  scrollbar-width: thin;
}

*::selection {
  background: var(--wb-blue);
  color: #fff;
}

html {
  background: var(--wb-page);
  color-scheme: light;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  background: var(--wb-page);
  color: var(--wb-ink);
  font-family: var(--wb-body);
  letter-spacing: 0;
}

a {
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

button,
input,
select,
textarea {
  font: inherit;
  caret-color: var(--wb-blue);
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #0b63ce;
  outline-offset: 4px;
}

.container {
  width: var(--wb-width);
  max-width: none;
  margin-inline: auto;
}

.ambient-network,
.ambient-grid,
.journey-rail,
.hero-grid,
.hero-rail,
.hero-next {
  display: none !important;
}

.skip-link {
  border: 1px solid var(--wb-ink);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-small);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--wb-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--wb-ink);
  box-shadow: 0 8px 24px rgba(17, 26, 34, 0.045);
}

.header-inner {
  width: var(--wb-width);
  max-width: none;
  height: 100%;
  padding: 0;
}

.brand {
  color: var(--wb-ink);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid #c8d8f1;
  border-radius: 50%;
  background: var(--wb-paper);
  box-shadow: 0 5px 14px rgba(7, 95, 216, 0.14);
}

.brand strong {
  color: var(--wb-blue);
}

.desktop-nav a {
  position: relative;
  color: var(--wb-ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--wb-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms var(--wb-ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--wb-ink);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-control {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
}

.language-control button {
  color: var(--wb-muted);
}

.language-control button:hover {
  color: var(--wb-ink);
}

.language-control button[aria-pressed="true"] {
  background: var(--wb-paper);
  color: var(--wb-blue-dark);
  box-shadow: 0 2px 7px rgba(17, 26, 34, 0.08);
}

.scroll-progress {
  height: 2px;
  background: var(--wb-blue);
  box-shadow: none;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--wb-radius-sm);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition:
    transform 180ms var(--wb-ease),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:disabled,
.button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
  transform: none;
}

.button-primary {
  border-color: var(--wb-blue);
  background: var(--wb-blue);
  color: #fff;
  box-shadow: 0 8px 20px rgba(7, 95, 216, 0.18);
}

.button-primary:hover {
  border-color: var(--wb-blue-dark);
  background: var(--wb-blue-dark);
  box-shadow: 0 12px 26px rgba(7, 95, 216, 0.22);
}

.button-secondary,
.button-outline {
  border-color: var(--wb-line-strong);
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.hero .button-secondary {
  border-color: var(--wb-line-strong);
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.hero .button-secondary:hover {
  border-color: var(--wb-blue);
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: var(--wb-blue);
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

/* Keep every section readable before its optional entrance motion runs. */
.motion-ready [data-reveal] {
  opacity: 1;
}

.button-small {
  min-height: 40px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  padding: 58px 0 42px;
  overflow: hidden;
  border-bottom: 1px solid var(--wb-line-strong);
  background: #f7f8f5;
  color: var(--wb-ink);
}

.hero::before {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.58)),
    linear-gradient(100deg, #d8dddc 0%, #f8f9f7 38%, #ccd3d4 72%, #edf0ef 100%);
  box-shadow: inset 0 12px 30px rgba(17, 26, 34, 0.08);
}

#particle-canvas {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  min-height: auto;
  padding: 0;
}

.hero-copy {
  max-width: 690px;
  padding-left: 12px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: clamp(4.4rem, 7.4vw, 6rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: none;
}

.hero-lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--wb-ink-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 28px;
}

.hero-disclaimer {
  display: flex;
  max-width: 560px;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0;
  color: var(--wb-muted);
  font-size: 0.87rem;
}

.hero-disclaimer::before {
  width: 28px;
  height: 1px;
  content: "";
  background: var(--wb-green);
}

.evidence-rail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 1fr) 208px minmax(310px, 1fr) minmax(270px, 0.78fr);
  align-items: center;
  margin-top: 44px;
  padding: 50px 12px 104px;
  isolation: isolate;
}

.rail-track {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 220px;
  left: 0;
  height: 54px;
  border: 1px solid #869197;
  background:
    linear-gradient(180deg, #f8f9f8 0 12%, #aeb7ba 12% 20%, #dbe0e0 20% 80%, #8f999e 80% 88%, #f5f6f5 88% 100%);
  box-shadow: 0 12px 26px rgba(17, 26, 34, 0.12);
  transform: translateY(-50%);
}

.rail-track::before,
.rail-track::after,
.rail-track span {
  position: absolute;
  top: 50%;
  height: 3px;
  content: "";
  background: var(--wb-blue);
  transform: translateY(-50%);
}

.rail-track::before {
  right: 50%;
  left: 0;
}

.rail-track::after {
  right: 0;
  left: 50%;
  background: var(--wb-green);
}

.rail-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  gap: 10px;
}

.rail-tag {
  position: relative;
  display: grid;
  min-height: 88px;
  place-items: center;
  align-content: center;
  gap: 4px;
  margin: 0;
  padding: 10px 8px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: 0 9px 20px rgba(17, 26, 34, 0.1);
  text-align: center;
  transition: transform 260ms var(--wb-ease), box-shadow 260ms ease, border-color 260ms ease;
}

.rail-tag::after {
  position: absolute;
  top: -11px;
  width: 2px;
  height: 11px;
  content: "";
  background: var(--wb-line-strong);
}

.rail-tag:hover {
  border-color: var(--wb-blue);
  box-shadow: 0 15px 30px rgba(17, 26, 34, 0.15);
  transform: translateY(-5px);
}

.rail-flow-after .rail-tag:hover {
  border-color: var(--wb-green);
}

.rail-tag svg {
  width: 22px;
  height: 22px;
  color: var(--wb-blue);
  stroke-width: 1.7;
}

.rail-flow-after .rail-tag svg {
  color: var(--wb-green);
}

.rail-tag span {
  font-size: 0.84rem;
  font-weight: 800;
}

.rail-tag small {
  color: var(--wb-muted);
  font-family: var(--wb-mono);
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}

.rail-station {
  position: relative;
  z-index: 3;
  margin: 0 -2px;
}

.station-label {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border: 1px solid var(--wb-blue-dark);
  border-radius: var(--wb-radius-sm) var(--wb-radius-sm) 0 0;
  background: var(--wb-blue);
  color: #fff;
  font-family: var(--wb-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.station-label b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #b7ec59;
  box-shadow: 0 0 0 4px rgba(183, 236, 89, 0.16);
}

.station-bay {
  display: grid;
  min-height: 150px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 18px;
  border: 1px solid #5d666b;
  border-top: 0;
  border-radius: 0 0 var(--wb-radius-sm) var(--wb-radius-sm);
  background:
    linear-gradient(180deg, rgba(247, 248, 245, 0.02) 0 60%, rgba(247, 248, 245, 0.86) 100%),
    url("assets/evidence/optipc-evidence-substrate-1672.webp") center 50% / 245% auto no-repeat,
    #d9dede;
  box-shadow: 0 16px 34px rgba(17, 26, 34, 0.18);
  color: var(--wb-ink);
  text-align: center;
}

.station-bay svg {
  display: none;
}

.station-bay span {
  max-width: 150px;
  margin-top: auto;
  padding: 5px 8px;
  border: 1px solid rgba(139, 151, 159, 0.7);
  border-radius: 4px;
  background: rgba(247, 248, 245, 0.9);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.35;
}

.rail-report {
  position: relative;
  align-self: stretch;
  min-height: 250px;
  margin: -12px 0 -12px 22px;
  padding: 20px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  box-shadow: var(--wb-shadow-large);
}

.rail-report::before {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 58px;
  height: 24px;
  border: 1px solid #525b61;
  border-radius: 3px;
  background: #20272b;
  content: "";
  transform: translateX(-50%);
}

.rail-report-head {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wb-line);
}

.rail-report-head img {
  border-radius: 50%;
}

.rail-report-head > div {
  display: grid;
}

.rail-report-head > div span {
  color: var(--wb-blue-dark);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rail-report-head > div strong {
  font-family: var(--wb-display);
  font-size: 1.25rem;
  line-height: 1;
}

.report-stamp {
  grid-column: 1 / -1;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  padding: 5px 8px;
  border: 1px solid #87b69d;
  border-radius: 4px;
  background: var(--wb-green-soft);
  color: var(--wb-green);
  font-family: var(--wb-mono);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.report-stamp svg {
  width: 14px;
  height: 14px;
}

.rail-report dl {
  display: grid;
  margin: 16px 0 0;
}

.rail-report dl div {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #e4e8e9;
}

.rail-report dt,
.rail-report dd {
  margin: 0;
  font-size: 0.75rem;
}

.rail-report dt {
  color: var(--wb-blue-dark);
  font-family: var(--wb-mono);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.rail-report dd {
  color: var(--wb-ink-soft);
  font-weight: 700;
}

.rail-report p {
  margin: 14px 0 0;
  color: var(--wb-muted);
  font-size: 0.7rem;
  line-height: 1.45;
}

.service-drawers {
  position: absolute;
  right: 300px;
  bottom: 18px;
  left: 31%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 8px;
}

.service-drawer {
  display: grid;
  min-height: 66px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: #fdfefd;
  color: var(--wb-ink);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(17, 26, 34, 0.1);
  text-align: left;
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms var(--wb-ease), box-shadow 180ms ease;
}

.service-drawer:hover {
  border-color: var(--wb-blue);
  box-shadow: 0 13px 28px rgba(17, 26, 34, 0.14);
  transform: translateY(-2px);
}

.service-drawer > svg:first-child {
  width: 24px;
  height: 24px;
  color: var(--wb-blue);
}

.service-drawer > svg:last-child {
  width: 18px;
  height: 18px;
}

.service-drawer span {
  display: grid;
}

.service-drawer strong {
  font-size: 0.86rem;
}

.service-drawer small {
  color: var(--wb-muted);
  font-size: 0.7rem;
}

.section {
  position: relative;
  padding: 112px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--wb-line);
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.section:nth-of-type(even) {
  background: var(--wb-page);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.62fr);
  align-items: end;
  gap: 64px;
  max-width: none;
  margin-bottom: 58px;
}

.section-heading > .eyebrow,
.compact-heading > .eyebrow,
.method-heading > .eyebrow,
.profile-studio-heading .eyebrow,
.faq-intro > .eyebrow,
.services-heading > .eyebrow,
.remote-intro > .eyebrow,
.final-cta .eyebrow {
  display: none;
}

.section-heading h2,
.faq-intro h2,
.final-cta h2,
.profile-studio-heading h3 {
  margin: 0;
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.032em;
}

.section-heading > p,
.faq-intro > p,
.profile-studio-heading > p {
  max-width: 65ch;
  margin: 0;
  color: var(--wb-ink-soft);
  font-size: 1.03rem;
  line-height: 1.72;
}

.diagnostic-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  overflow: visible;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: #d9dede;
  box-shadow: var(--wb-shadow-large);
}

.score-panel,
.inspection-panel {
  padding: 32px;
  border: 0;
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.inspection-panel {
  margin: 14px 14px 14px 0;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: #f6f7f5;
  box-shadow: inset 0 0 0 4px #ecefed;
}

.workbench-header {
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wb-line);
}

.workbench-label {
  color: var(--wb-blue-dark);
  font-family: var(--wb-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.workbench-header h3 {
  margin-top: 8px;
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: 2rem;
  line-height: 1;
}

.measurement-status {
  border: 1px solid #86b79d;
  border-radius: var(--wb-radius-sm);
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.measurement-status i {
  background: var(--wb-green);
  box-shadow: none;
}

.score-comparison {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.score-state {
  padding: 22px 10px;
}

.score-step,
.score-connector,
.inspection-count {
  color: var(--wb-blue-dark);
  font-family: var(--wb-mono);
  font-variant-numeric: tabular-nums;
}

.score-gauge {
  background: conic-gradient(var(--wb-blue) var(--score-angle), #dbe9fa 0);
}

.score-gauge::before {
  border-color: var(--wb-line);
  background: var(--wb-paper);
}

.score-gauge-after {
  background: conic-gradient(var(--wb-green) var(--score-angle), #dbeee4 0);
}

.score-state-heading .score-gauge span {
  color: var(--wb-blue-dark);
}

.score-state-heading .score-gauge-after span {
  color: var(--wb-green);
}

.score-state p,
.score-demo-label,
.score-note,
.inspection-list span {
  color: var(--wb-muted);
}

.score-note {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
}

.inspection-list li {
  border-color: var(--wb-line);
}

.inspection-list svg {
  border-color: #bcd2ee;
  border-radius: var(--wb-radius-sm);
  background: var(--wb-blue-soft);
  color: var(--wb-blue);
}

.evidence-method {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 72px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  box-shadow: var(--wb-shadow-small);
}

.evidence-method li {
  min-height: 170px;
  border-right: 1px solid var(--wb-line);
  border-bottom: 0;
  background: transparent;
}

.evidence-method li:last-child {
  border-right: 0;
}

.evidence-method > li > span {
  color: var(--wb-blue);
  font-family: var(--wb-display);
  font-size: 3rem;
}

.evidence-method h3 {
  color: var(--wb-ink);
}

.evidence-method p {
  color: var(--wb-muted);
}

.method-cta {
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
}

.method-cta p {
  color: var(--wb-ink-soft);
}

.process {
  background: #eef1ee;
}

.process-list {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: #dce1e0;
  box-shadow: var(--wb-shadow-large);
}

.process-list::before,
.process-list::after {
  left: 56px;
}

.process-list::before {
  background: var(--wb-line-strong);
}

.process-list::after {
  background: var(--wb-blue);
  box-shadow: none;
}

.process-list li {
  margin: 12px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: none;
}

.process-list li::after {
  left: 36px;
  border-color: var(--wb-blue);
  background: var(--wb-paper);
  box-shadow: 0 0 0 5px #dce8f7;
}

.process-list li.is-process-complete {
  border-color: #9fbadc;
}

.process-list li.is-process-complete::after {
  background: var(--wb-blue);
}

.process-index {
  color: var(--wb-blue-dark);
  font-family: var(--wb-mono);
}

.process-list > li > svg {
  border-color: #bcd2ee;
  border-radius: var(--wb-radius-sm);
  background: var(--wb-blue-soft);
  color: var(--wb-blue);
}

.process-list h3 {
  color: var(--wb-ink);
}

.process-list p {
  color: var(--wb-muted);
}

.profile-studio {
  margin-top: 88px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.profile-studio-heading {
  grid-template-columns: 1fr minmax(320px, 0.62fr);
  align-items: end;
  gap: 60px;
}

.profile-studio-heading h3 {
  font-size: clamp(2.7rem, 4.4vw, 4.4rem);
}

.profile-tabs {
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: #dce1e0;
}

.profile-tab {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  color: var(--wb-muted);
}

.profile-tab:hover,
.profile-tab:focus-visible {
  background: #eef1ef;
  color: var(--wb-ink);
}

.profile-tab.is-active {
  border-color: var(--wb-blue);
  background: var(--wb-paper);
  color: var(--wb-blue-dark);
  box-shadow: 0 4px 12px rgba(17, 26, 34, 0.09);
}

.profile-panels {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  box-shadow: var(--wb-shadow-small);
}

.profile-panel > div > span {
  color: var(--wb-blue);
  font-family: var(--wb-mono);
}

.profile-panel h4 {
  color: var(--wb-ink);
}

.profile-panel p,
.profile-panel li {
  color: var(--wb-muted);
}

section.section.remote {
  position: relative;
  border-bottom: 0;
  background: #0d3769;
  color: #fff;
}

section.section.remote::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 32px 32px;
}

.remote-grid {
  position: relative;
}

.remote h2 {
  color: #fff;
  font-family: var(--wb-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.remote-intro > p,
.permission-panel small,
.remote .eyebrow,
.remote-product-lockup,
.remote-connection-path span {
  color: #dbe9fb;
}

.permission-panel {
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--wb-radius-sm);
  background: #12477f;
  color: #fff;
  box-shadow: 0 24px 50px rgba(3, 24, 49, 0.24);
}

.permission-panel::after {
  background: #9ed3b8;
  box-shadow: none;
}

.permission-header,
.permission-panel li {
  border-color: rgba(255, 255, 255, 0.2);
}

.remote-connection-path span {
  border-color: rgba(255, 255, 255, 0.32);
  border-radius: var(--wb-radius-sm);
  background: rgba(255, 255, 255, 0.08);
}

.remote-connection-path b {
  background: #83caa4;
  box-shadow: none;
}

.services {
  background: var(--wb-paper);
}

.services-heading {
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.62fr);
  align-items: end;
  gap: 64px;
}

.services-heading h2 {
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.94;
}

.services-heading > p {
  color: var(--wb-ink-soft);
}

.service-grid {
  align-items: stretch;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: #d9dede;
  box-shadow: var(--wb-shadow-large);
}

.service-card {
  min-height: auto;
  padding: 34px;
  border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: none;
}

.service-card:hover {
  border-color: var(--wb-blue);
  box-shadow: 0 14px 30px rgba(17, 26, 34, 0.11);
  transform: translateY(-3px);
}

.service-card-primary {
  border-top-color: var(--wb-line);
}

.service-card:not(.service-card-primary) {
  border-top-color: var(--wb-line);
}

.service-icon {
  border: 1px solid #bdd3ef;
  border-radius: var(--wb-radius-sm);
  background: var(--wb-blue-soft);
  color: var(--wb-blue);
}

.service-icon-business {
  border-color: #a7cdb9;
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.service-tag {
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
  color: var(--wb-muted);
}

.service-card h3,
.proposal-note strong {
  color: var(--wb-ink);
}

.service-card > p,
.service-list,
.proposal-note span,
.price-alt,
.price-local {
  color: var(--wb-muted);
}

.service-list li,
.proposal-note,
.price-block {
  border-color: var(--wb-line);
}

.service-list svg {
  color: var(--wb-green);
}

.price-main {
  color: var(--wb-ink);
  font-family: var(--wb-display);
}

.faq {
  background: #eef1ee;
}

.faq-layout {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1fr);
  gap: 92px;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.faq-intro h2 {
  font-size: clamp(2.9rem, 4.7vw, 4.6rem);
}

.faq-list {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-small);
}

.faq-list details {
  border-color: var(--wb-line);
}

.faq-list summary {
  color: var(--wb-ink);
}

.faq-list summary svg {
  color: var(--wb-blue);
}

.faq-list details p {
  color: var(--wb-muted);
}

.text-link {
  color: var(--wb-blue-dark);
}

.final-cta {
  border: 0;
  background: #16212a;
  color: #fff;
}

.final-cta::before {
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 40px 40px;
}

.final-cta h2 {
  color: #fff;
}

.final-cta p {
  color: #d9e0e4;
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--wb-ink);
}

.button-ghost-light {
  border-color: #7f8a91;
  background: transparent;
  color: #fff;
}

.site-footer {
  border-top: 1px solid #33414b;
  background: #111920;
  color: #d5dde2;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand strong,
.site-footer .footer-grid nav h2 {
  color: #fff;
}

.site-footer .footer-brand p,
.site-footer .footer-grid nav a,
.site-footer .footer-bottom {
  color: #aeb9c0;
}

.site-footer .footer-grid nav a:hover {
  color: #fff;
}

.modal {
  max-height: min(90vh, 860px);
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-large);
}

.modal::backdrop {
  background: rgba(17, 26, 34, 0.55);
  backdrop-filter: blur(5px);
}

.modal-header {
  border-color: var(--wb-line);
}

.modal-kicker {
  color: var(--wb-blue-dark);
  font-family: var(--wb-mono);
}

.modal h2,
.modal h3 {
  color: var(--wb-ink);
}

.icon-button {
  border-color: var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
  color: var(--wb-ink);
}

.checkout-summary {
  border-radius: var(--wb-radius-sm);
  background: var(--wb-page);
}

.checkout-price,
.checkout-summary strong {
  color: var(--wb-ink);
}

.checkout-summary li,
.checkout-price-alt,
.checkout-price-local,
.field-hint,
.checkout-note,
.modal-copy {
  color: var(--wb-muted);
}

.field label,
.terms-check {
  color: var(--wb-ink-soft);
}

.field input,
.field select,
.field textarea,
.input-wrap,
.command-preview,
.service-code-row {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #7f8d95;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--wb-blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 216, 0.12);
}

.field input::placeholder,
.field textarea::placeholder,
.input-wrap input::placeholder {
  color: #697781;
}

.payment-button {
  border-radius: var(--wb-radius-sm);
}

.proposal-note,
.referral-field,
.result-steps > span {
  border-color: var(--wb-line);
  background: var(--wb-page);
}

.toast {
  border-color: var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-small);
}

/* Public client space */
.portal-grid {
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(17, 26, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 34, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
}

.portal-header {
  border-bottom: 1px solid var(--wb-line);
  background: rgba(255, 255, 255, 0.96);
  color: var(--wb-ink);
  box-shadow: 0 7px 24px rgba(17, 26, 34, 0.05);
}

.portal-brand {
  color: var(--wb-ink);
}

.portal-brand strong {
  color: var(--wb-blue);
}

.portal-header .button-ghost {
  border-color: var(--wb-line);
  color: var(--wb-ink-soft);
}

.access-shell {
  gap: 72px;
}

.access-copy h1,
.dashboard-intro h1 {
  max-width: 720px;
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: clamp(4rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.access-lead,
.access-proof small,
.access-panel-heading > p:last-child,
.privacy-note {
  color: var(--wb-muted);
}

.access-proof,
.access-panel,
.account-stamp,
.next-step,
.dashboard-panel {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-small);
}

.access-panel::before,
.score-track::before {
  background: var(--wb-blue);
}

.score-track::after {
  background: var(--wb-green);
}

.panel-index,
.panel-count,
.next-step-marker,
.record-title svg,
.record-action:hover {
  color: var(--wb-blue-dark);
}

.input-wrap:focus-within {
  border-color: var(--wb-blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 216, 0.12);
}

.access-feedback {
  border-color: #89b99f;
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.access-feedback.is-error {
  border-color: #dcaaa5;
  background: var(--wb-red-soft);
  color: var(--wb-red);
}

.record-action {
  border-color: var(--wb-line);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink-soft);
}

/* Onboarding */
body:has(.onboarding) {
  background: var(--wb-page);
  color: var(--wb-ink);
}

body:has(.onboarding) .site-header {
  width: min(100% - 32px, 960px);
  margin-inline: auto;
  border-bottom: 0;
  box-shadow: none;
}

body:has(.onboarding) .page {
  width: min(100% - 32px, 960px);
}

.onboarding {
  overflow: hidden;
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-large);
}

.page-heading,
.state-region,
.launcher-panel,
.permission-item,
.launcher-steps li,
.service-details,
.service-details > div {
  border-color: var(--wb-line);
}

.page-heading h1,
.state h2 {
  color: var(--wb-ink);
  font-family: var(--wb-display);
}

.section-kicker,
.status-label,
.code-label,
.onboarding .text-link {
  color: var(--wb-blue-dark);
}

.journey li {
  color: var(--wb-muted);
}

.journey-marker {
  border-color: var(--wb-line-strong);
  background: var(--wb-paper);
  color: var(--wb-muted);
}

.journey li[data-status="current"] {
  color: var(--wb-blue-dark);
}

.journey li[data-status="current"] .journey-marker {
  border-color: var(--wb-blue);
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

.journey li[data-status="complete"] {
  color: var(--wb-green);
}

.journey li[data-status="complete"] .journey-marker {
  border-color: var(--wb-green);
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.state-symbol {
  border-color: #9dbde5;
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

.state-symbol-error {
  border-color: #dcaaa5;
  background: var(--wb-red-soft);
  color: var(--wb-red);
}

.state-symbol-success {
  border-color: #8dbc9f;
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.launcher-panel,
.consent-control {
  background: var(--wb-page);
}

.permission-icon,
.launcher-steps li > span {
  border-color: #b9d0ed;
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

body:has(.onboarding) .site-footer {
  background: transparent;
  color: var(--wb-muted);
}

/* Legal surfaces */
body:has(.legal-main) {
  background: var(--wb-page);
  color: var(--wb-ink);
}

.legal-hero h1 {
  color: var(--wb-ink);
  font-family: var(--wb-display);
  font-size: clamp(3.8rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.legal-hero .eyebrow {
  display: none;
}

.legal-hero p,
.intro,
.legal-section p,
.legal-section li {
  color: var(--wb-muted);
}

.legal-section h2,
.legal-section h3,
.legal-section strong,
.intro strong {
  color: var(--wb-ink);
}

.toc,
.highlight-box,
.browser-card,
.legal-footer {
  border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm);
  background: var(--wb-paper);
  color: var(--wb-ink);
  box-shadow: var(--wb-shadow-small);
}

.toc h3,
.gradient,
.highlight-box strong,
.legal-footer-links a.current,
.cookie-table th,
.cookie-table td::before {
  color: var(--wb-blue-dark);
}

.toc a.active {
  border-left: 1px solid var(--wb-blue);
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

.highlight-box {
  border-left: 1px solid var(--wb-blue);
}

.essential {
  background: var(--wb-green-soft);
  color: var(--wb-green);
}

.local {
  background: var(--wb-blue-soft);
  color: var(--wb-blue-dark);
}

.third {
  background: #e8ecec;
  color: var(--wb-ink-soft);
}

@media (max-width: 1240px) {
  :root {
    --wb-width: min(100% - 44px, 1160px);
  }

  .evidence-rail {
    grid-template-columns: minmax(260px, 1fr) 180px minmax(260px, 1fr) 250px;
  }

  .rail-flow {
    grid-template-columns: repeat(3, minmax(76px, 1fr));
  }

  .rail-tag {
    min-height: 82px;
  }

  .rail-report {
    margin-left: 12px;
    padding: 16px;
  }

  .service-drawers {
    right: 250px;
    left: 25%;
  }
}

@media (max-width: 980px) {
  :root {
    --wb-width: min(100% - 36px, 900px);
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius-sm);
    background: var(--wb-page);
    color: var(--wb-ink);
  }

  .mobile-nav {
    top: var(--header-height);
    right: 18px;
    left: 18px;
    border: 1px solid var(--wb-line-strong);
    border-radius: var(--wb-radius-sm);
    background: var(--wb-paper);
    color: var(--wb-ink);
    box-shadow: var(--wb-shadow-large);
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: clamp(4rem, 11vw, 5.8rem);
  }

  .evidence-rail {
    grid-template-columns: 1fr 180px 1fr;
    padding-bottom: 150px;
  }

  .rail-report {
    grid-column: 1 / -1;
    width: min(100%, 620px);
    min-height: auto;
    margin: 58px auto 0;
  }

  .rail-track {
    right: 0;
  }

  .service-drawers {
    right: 12%;
    bottom: 0;
    left: 12%;
  }

  .section-heading,
  .services-heading,
  .profile-studio-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .section-heading > p,
  .services-heading > p,
  .profile-studio-heading > p {
    max-width: 720px;
  }

  .diagnostic-workbench {
    grid-template-columns: 1fr;
  }

  .inspection-panel {
    margin: 0 14px 14px;
  }

  .remote-grid,
  .service-grid,
  .faq-layout,
  .checkout-layout,
  .access-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .access-shell {
    gap: 42px;
    padding-top: 48px;
  }
}

@media (max-width: 720px) {
  :root {
    --wb-width: min(100% - 28px, 680px);
    --header-height: 68px;
  }

  body::before {
    background-size: 36px 36px;
  }

  .site-header {
    height: var(--header-height);
  }

  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand > span:last-child {
    display: none;
  }

  .language-control {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 38px 0 54px;
  }

  .hero::before {
    height: 67%;
  }

  .hero-copy {
    padding-left: 0;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.4rem);
  }

  .hero-lead {
    font-size: 1.04rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .evidence-rail {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 38px;
    padding: 28px 0 0 24px;
  }

  .rail-track {
    top: 0;
    right: auto;
    bottom: 150px;
    left: 17px;
    width: 16px;
    height: auto;
    border-radius: 8px;
    background: linear-gradient(90deg, #aab3b7 0 20%, #eef0ef 20% 80%, #7f898f 80% 100%);
    transform: none;
  }

  .rail-track::before,
  .rail-track::after,
  .rail-track span {
    top: auto;
    right: auto;
    left: 50%;
    width: 2px;
    height: 50%;
    transform: translateX(-50%);
  }

  .rail-track::before {
    top: 0;
  }

  .rail-track::after {
    bottom: 0;
  }

  .rail-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rail-tag {
    min-height: 62px;
    grid-template-columns: auto 1fr auto;
    justify-items: start;
    padding: 10px 14px;
    text-align: left;
  }

  .rail-tag::after {
    top: 50%;
    left: -25px;
    width: 25px;
    height: 2px;
  }

  .rail-tag small {
    justify-self: end;
  }

  .rail-station {
    margin: 0;
  }

  .station-bay {
    min-height: 120px;
  }

  .rail-report {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .service-drawers {
    position: static;
    grid-template-columns: 1fr;
    margin-top: 2px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .faq-intro h2,
  .final-cta h2,
  .services-heading h2,
  .profile-studio-heading h3,
  .remote h2 {
    font-size: clamp(2.7rem, 14vw, 4.3rem);
  }

  .score-panel,
  .inspection-panel,
  .service-card {
    padding: 24px;
  }

  .score-comparison {
    grid-template-columns: 1fr;
  }

  .score-connector {
    min-height: 52px;
    transform: rotate(90deg);
  }

  .score-connector small {
    transform: rotate(-90deg);
  }

  .evidence-method {
    grid-template-columns: 1fr;
  }

  .evidence-method li {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--wb-line);
  }

  .evidence-method li:last-child {
    border-bottom: 0;
  }

  .process-list::before,
  .process-list::after {
    left: 40px;
  }

  .process-list li {
    grid-template-columns: 42px 1fr;
    padding: 24px 18px 24px 14px;
  }

  .process-list li::after {
    left: 17px;
  }

  .process-index {
    display: none;
  }

  .profile-tabs {
    grid-template-columns: 1fr;
  }

  .final-actions,
  .payment-actions {
    display: grid;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .modal {
    width: calc(100% - 20px);
    max-height: calc(100dvh - 20px);
    margin: 10px;
    padding: 22px;
  }

  .proposal-grid {
    grid-template-columns: 1fr;
  }

  .access-copy h1,
  .dashboard-intro h1,
  .legal-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }
}

@media (hover: hover) and (pointer: fine) {
  .rail-tag,
  .service-drawer,
  .service-card,
  .button {
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .rail-tag:hover,
  .service-drawer:hover,
  .service-card:hover,
  .button:hover {
    transform: none;
  }
}

/* Selected composition: Order of service. This block owns the complete hero
   topology and intentionally resets the legacy rail implementation. */
.hero-service-order {
  display: block;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  border-bottom: 0;
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.hero-service-order::before,
.hero-service-order::after {
  display: none;
}

.hero-service-order .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 752px;
  grid-template-columns: minmax(430px, 31.5%) minmax(0, 1fr);
  align-items: stretch;
  margin: 0;
  padding: 0;
  text-align: left;
}

.hero-service-order .hero-copy {
  display: flex;
  max-width: none;
  min-width: 0;
  flex-direction: column;
  padding: 32px clamp(30px, 3vw, 52px) 28px;
  border-right: 1px solid var(--wb-line);
  background: rgba(255, 255, 255, 0.98);
}

.hero-scope-tabs {
  display: grid;
  min-height: 84px;
  grid-template-columns: 1fr 1fr;
  margin: -32px calc(clamp(30px, 3vw, 52px) * -1) 26px;
  border-bottom: 1px solid var(--wb-line);
}

.hero-scope-tab {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 16px;
  border: 0;
  border-right: 1px solid var(--wb-line);
  background: #f5f6f6;
  color: var(--wb-ink-soft);
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
}

.hero-scope-tab:last-child {
  border-right: 0;
}

.hero-scope-tab svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.6;
}

.hero-scope-tab.is-active {
  background: var(--wb-paper);
  color: var(--wb-ink);
}

.hero-scope-tab.is-active::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 3px;
  content: "";
  background: var(--wb-blue);
}

.service-order-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  color: var(--wb-blue);
  font-family: var(--wb-mono);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-order-meta time {
  display: grid;
  color: var(--wb-muted);
  font-weight: 700;
  letter-spacing: 0;
  text-align: right;
  text-transform: none;
}

.service-order-meta time small {
  color: var(--wb-muted);
  font: inherit;
  font-size: 0.68rem;
}

.hero-service-order h1 {
  max-width: 520px;
  margin: 0;
  color: #090d11;
  font-family: var(--wb-body);
  font-size: clamp(3.55rem, 3.85vw, 4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-align: left;
  text-wrap: balance;
}

.hero-service-order .hero-lead {
  max-width: 430px;
  margin: 20px 0 0;
  color: var(--wb-ink-soft);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero-service-order .hero-actions {
  margin-top: 24px;
}

.hero-service-order .hero-actions .button {
  min-width: 208px;
}

.hero-service-order .hero-actions .button-primary {
  border-color: var(--wb-blue);
  background: var(--wb-blue);
  color: #fff;
}

.hero-service-order .hero-actions .button-primary:hover {
  border-color: var(--wb-blue-dark);
  background: var(--wb-blue-dark);
  color: #fff;
}

.order-progress {
  position: relative;
  display: grid;
  gap: 0;
  margin: 26px 0 0;
  padding: 4px 0 0;
  border-top: 1px solid var(--wb-line);
  list-style: none;
}

.order-progress::before {
  position: absolute;
  top: 38px;
  bottom: 40px;
  left: 15px;
  width: 2px;
  content: "";
  background: var(--wb-blue);
}

.order-progress li {
  position: relative;
  display: grid;
  min-height: 82px;
  grid-template-columns: 32px 40px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}

.order-index {
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 2px solid var(--wb-blue);
  border-radius: 50%;
  background: var(--wb-paper);
  color: var(--wb-blue);
  font-family: var(--wb-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.order-progress li > svg {
  width: 32px;
  height: 32px;
  color: var(--wb-ink);
  stroke-width: 1.7;
}

.order-progress h2 {
  margin: 0 0 4px;
  color: var(--wb-ink);
  font-family: var(--wb-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.order-progress p {
  max-width: 28ch;
  margin: 0;
  color: var(--wb-muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.order-state {
  display: inline-flex;
  min-width: 126px;
  min-height: 30px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 9px;
  border: 1px solid var(--wb-line-strong);
  border-radius: 4px;
  color: var(--wb-muted);
  font-family: var(--wb-mono);
  font-size: 0.61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.order-state svg {
  width: 14px;
  height: 14px;
}

.order-progress .is-complete .order-state {
  border-color: #71af8d;
  color: var(--wb-green);
}

.order-progress .is-current .order-state {
  border-color: #76a7ec;
  color: var(--wb-blue-dark);
}

.report-workbench {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  padding: 40px 72px 34px 92px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.12), rgba(17, 26, 34, 0.08)),
    url("assets/evidence/optipc-workbench-surface-v2.webp") center / cover no-repeat,
    #c9cdce;
}

.report-workbench::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  box-shadow: inset 18px 0 36px rgba(17, 26, 34, 0.08);
}

.report-workbench .rail-report {
  position: relative;
  z-index: 1;
  width: min(780px, 86%);
  min-height: 620px;
  align-self: center;
  margin: 0;
  padding: 42px 44px 34px;
  border: 1px solid rgba(93, 102, 107, 0.58);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 28px 58px rgba(17, 26, 34, 0.27);
  transform: rotate(-2.4deg);
  transform-origin: center;
}

.report-workbench .rail-report::before {
  display: none;
}

.report-workbench .rail-report-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wb-line-strong);
}

.report-mark-lockup {
  display: flex;
  align-items: center;
  gap: 8px;
}

.report-mark-lockup img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.report-mark-lockup strong {
  color: #090d11;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.report-mark-lockup b {
  color: var(--wb-blue);
}

.report-title {
  display: grid;
  grid-column: 1;
}

.report-title strong {
  color: var(--wb-ink);
  font-family: var(--wb-body);
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.report-title span {
  color: var(--wb-ink-soft);
  font-size: 0.75rem;
}

.report-meta {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-content: start;
  gap: 7px;
  margin: 0;
}

.report-meta div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
}

.report-meta dt,
.report-meta dd {
  margin: 0;
  color: var(--wb-ink-soft);
  font-family: var(--wb-mono);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
}

.report-meta dd {
  color: var(--wb-ink);
}

.report-sample {
  width: max-content;
  padding: 3px 6px;
  border: 1px solid var(--wb-line);
  color: var(--wb-muted);
  font-family: var(--wb-mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.report-comparison {
  width: 100%;
  margin-top: 14px;
  border-collapse: collapse;
  table-layout: fixed;
}

.report-comparison thead th {
  height: 36px;
  color: var(--wb-blue);
  font-size: 1.15rem;
  font-weight: 900;
  text-align: center;
}

.report-comparison thead th:first-child {
  width: 29%;
}

.report-comparison thead .report-direction {
  width: 9%;
}

.report-comparison tbody th,
.report-comparison tbody td {
  height: 52px;
  padding: 7px 10px;
  border: 1px solid var(--wb-line);
  color: var(--wb-ink);
  font-size: 0.72rem;
}

.report-comparison tbody th {
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 0;
  font-weight: 800;
  text-align: left;
}

.report-comparison tbody th svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  stroke-width: 1.6;
}

.report-comparison tbody td {
  color: var(--wb-ink-soft);
  font-family: var(--wb-mono);
  font-size: 0.64rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}

.report-comparison tbody td:nth-child(3) {
  border-right: 0;
  border-left: 0;
  color: var(--wb-ink);
  font-family: var(--wb-body);
  font-size: 1.5rem;
}

.report-comparison tbody td:last-child {
  position: relative;
  color: var(--wb-ink);
}

.report-comparison tbody td:last-child svg {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 17px;
  height: 17px;
  fill: var(--wb-green);
  color: #fff;
  stroke-width: 2.2;
}

.report-verification {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--wb-line-strong);
}

.report-verification > span:first-child {
  display: grid;
  color: var(--wb-ink-soft);
  font-family: var(--wb-mono);
  font-size: 0.67rem;
  font-variant-numeric: tabular-nums;
}

.report-verification > span:first-child small {
  color: var(--wb-ink);
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.report-workbench .report-stamp {
  display: inline-flex;
  grid-column: auto;
  margin: 0;
  padding: 8px 12px;
  background: transparent;
  font-size: 0.68rem;
}

.hero-deliverables {
  display: grid;
  width: calc(100% - 16px);
  min-height: 154px;
  grid-template-columns: repeat(4, 1fr);
  margin: 24px 8px 0;
  padding: 34px 44px;
  border: 1px solid var(--wb-line);
  border-radius: 4px;
  background: var(--wb-paper);
  box-shadow: 0 8px 26px rgba(17, 26, 34, 0.06);
  list-style: none;
}

.hero-deliverables li {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 34px;
  border-right: 1px solid var(--wb-line);
}

.hero-deliverables li:first-child {
  padding-left: 0;
}

.hero-deliverables li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-deliverables svg {
  width: 43px;
  height: 43px;
  color: var(--wb-blue);
  stroke-width: 1.7;
}

.hero-deliverables div {
  display: grid;
  gap: 7px;
}

.hero-deliverables strong {
  color: var(--wb-ink);
  font-size: 0.95rem;
}

.hero-deliverables span {
  max-width: 28ch;
  color: var(--wb-muted);
  font-size: 0.73rem;
  line-height: 1.45;
}

@media (max-width: 1240px) {
  .hero-service-order .hero-content {
    grid-template-columns: minmax(390px, 36%) minmax(0, 1fr);
  }

  .hero-service-order .hero-copy {
    padding-inline: 30px;
  }

  .hero-scope-tabs {
    margin-inline: -30px;
  }

  .order-state {
    min-width: 104px;
  }

  .report-workbench {
    padding-inline: 34px;
  }

  .report-workbench .rail-report {
    width: min(700px, 94%);
    padding-inline: 34px;
  }

  .hero-deliverables {
    padding-inline: 28px;
  }

  .hero-deliverables li {
    gap: 14px;
    padding-inline: 22px;
  }
}

@media (max-width: 1020px) {
  .hero-service-order .hero-content {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-service-order .hero-copy {
    padding: 32px clamp(28px, 7vw, 70px) 44px;
    border-right: 0;
    border-bottom: 1px solid var(--wb-line);
  }

  .hero-scope-tabs {
    margin: -32px calc(clamp(28px, 7vw, 70px) * -1) 30px;
  }

  .hero-service-order h1,
  .hero-service-order .hero-lead {
    max-width: 650px;
  }

  .order-progress {
    max-width: 720px;
  }

  .report-workbench {
    min-height: 680px;
    padding: 42px 52px;
  }

  .report-workbench .rail-report {
    width: min(720px, 88%);
  }

  .hero-deliverables {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-deliverables li {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid var(--wb-line);
  }

  .hero-deliverables li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .hero-service-order .hero-copy {
    padding: 24px 18px 34px;
  }

  .hero-scope-tabs {
    min-height: 72px;
    margin: -24px -18px 24px;
  }

  .hero-scope-tab {
    padding: 14px 10px;
    font-size: 0.8rem;
  }

  .hero-scope-tab svg {
    width: 22px;
    height: 22px;
  }

  .service-order-meta {
    margin-bottom: 20px;
  }

  .hero-service-order h1 {
    font-size: clamp(3.15rem, 15vw, 4.4rem);
    letter-spacing: -0.04em;
  }

  .hero-service-order .hero-lead {
    font-size: 1rem;
  }

  .order-progress li {
    grid-template-columns: 32px 34px minmax(0, 1fr);
    gap: 9px;
  }

  .order-progress li > svg {
    width: 27px;
    height: 27px;
  }

  .order-state {
    grid-column: 3;
    width: max-content;
    min-width: 0;
    margin-top: -5px;
  }

  .report-workbench {
    min-height: 550px;
    padding: 34px 14px;
    background-position: 60% center;
  }

  .report-workbench .rail-report {
    width: min(100%, 520px);
    min-height: auto;
    padding: 25px 18px 22px;
    transform: rotate(-1deg);
  }

  .report-workbench .rail-report-head {
    gap: 10px;
  }

  .report-meta {
    display: none;
  }

  .report-title {
    grid-column: 1 / -1;
  }

  .report-sample {
    grid-column: 1 / -1;
  }

  .report-comparison thead th {
    font-size: 0.9rem;
  }

  .report-comparison thead th:first-child {
    width: 32%;
  }

  .report-comparison tbody th,
  .report-comparison tbody td {
    height: 45px;
    padding: 5px;
    font-size: 0.58rem;
  }

  .report-comparison tbody th {
    gap: 5px;
  }

  .report-comparison tbody th svg {
    width: 16px;
    height: 16px;
  }

  .report-comparison tbody td:nth-child(3) {
    font-size: 1rem;
  }

  .report-comparison tbody td:last-child svg {
    display: none;
  }

  .report-verification {
    align-items: start;
  }

  .hero-deliverables {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    margin-top: 16px;
    padding: 12px 22px;
  }

  .hero-deliverables li {
    min-height: 96px;
    padding: 16px 0;
    border-bottom: 1px solid var(--wb-line);
  }

  .hero-deliverables li:nth-last-child(2) {
    border-bottom: 1px solid var(--wb-line);
  }

  .hero-deliverables li:last-child {
    border-bottom: 0;
  }
}

/* The selected reference uses a quiet product header: logo on the left and
   locale/account controls on the right. Keep this ownership scoped to home. */
.home-order-service {
  --header-height: 86px;
}

.home-order-service .site-header,
.home-order-service .site-header.is-scrolled {
  height: var(--header-height);
  border-bottom-color: #e3e6e7;
  background: rgba(255, 255, 255, 0.98);
  color: var(--wb-ink);
  box-shadow: 0 4px 18px rgba(17, 26, 34, 0.045);
}

.home-order-service .header-inner {
  width: calc(100% - 96px);
  max-width: none;
}

.home-order-service .desktop-nav {
  display: none;
}

.home-order-service .brand {
  gap: 12px;
  color: #080b0d;
  font-size: 1.48rem;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.home-order-service .brand-mark {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-order-service .header-actions {
  gap: 22px;
}

.home-order-service .language-control {
  gap: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.home-order-service .language-control button {
  position: relative;
  min-width: 34px;
  min-height: 36px;
  padding: 4px 10px;
  border-radius: 0;
  color: #596066;
  font-size: 0.82rem;
  font-weight: 650;
}

.home-order-service .language-control button + button::before {
  position: absolute;
  top: 50%;
  left: -1px;
  content: "\00b7";
  color: #8d9499;
  transform: translateY(-52%);
}

.home-order-service .language-control button[aria-pressed="true"] {
  background: transparent;
  color: #090d11;
  box-shadow: none;
}

.home-order-service .desktop-cta {
  min-height: 48px;
  gap: 10px;
  padding-inline: 17px;
  border: 1px solid #cbd0d2;
  background: #fff;
  color: #11171b;
  box-shadow: none;
}

.home-order-service .desktop-cta:hover {
  border-color: #8e989e;
  background: #f8f9f9;
  color: #090d11;
}

.home-order-service .desktop-cta svg:first-child {
  width: 19px;
  height: 19px;
}

.home-order-service .desktop-cta svg:last-child {
  width: 14px;
  height: 14px;
}

@media (max-width: 1020px) {
  .home-order-service {
    --header-height: 76px;
  }

  .home-order-service .header-inner {
    width: calc(100% - 48px);
  }

  .home-order-service .brand {
    font-size: 1.28rem;
  }

  .home-order-service .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}

@media (max-width: 720px) {
  .home-order-service {
    --header-height: 68px;
  }

  .home-order-service .header-inner {
    width: calc(100% - 28px);
  }

  .home-order-service .brand {
    gap: 8px;
    font-size: 1.05rem;
  }

  .home-order-service .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .home-order-service .language-control,
  .home-order-service .desktop-cta {
    display: none;
  }
}

/* Full-site ownership: the selected reference is not a hero treatment. Every
   surface below continues the same physical order-of-service dossier. */
.home-order-service {
  background:
    repeating-linear-gradient(0deg, rgba(20, 28, 33, 0.018) 0 1px, transparent 1px 5px),
    linear-gradient(112deg, #eef0f0 0%, #d9dddd 48%, #f4f5f5 100%);
}

.home-order-service main {
  position: relative;
  isolation: isolate;
  background: transparent;
}

.home-order-service main > .section {
  position: relative;
  padding: 70px 0;
  overflow: visible;
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 22%, rgba(255, 255, 255, 0.2) 76%, transparent),
    repeating-linear-gradient(0deg, rgba(17, 26, 34, 0.02) 0 1px, transparent 1px 6px),
    #dfe2e2;
}

.home-order-service main > .section + .section {
  padding-top: 32px;
}

.home-order-service .dossier-sheet {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  padding: clamp(44px, 4.6vw, 72px);
  border: 1px solid #aeb5b8;
  border-radius: 2px;
  background:
    linear-gradient(rgba(17, 26, 34, 0.024) 1px, transparent 1px) 0 0 / 100% 32px,
    #fff;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.8) inset,
    0 24px 54px rgba(17, 26, 34, 0.14);
}

.home-order-service .dossier-sheet::before {
  position: absolute;
  z-index: 2;
  top: -29px;
  left: -1px;
  min-width: 236px;
  padding: 8px 18px 7px;
  border: 1px solid #aeb5b8;
  border-bottom: 0;
  background: #fff;
  color: var(--wb-blue);
  content: attr(data-sheet);
  font-family: var(--wb-mono);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-order-service .dossier-sheet::after {
  position: absolute;
  top: 20px;
  right: 22px;
  width: 72px;
  height: 12px;
  border-top: 1px solid #c5cbcd;
  border-bottom: 1px solid #c5cbcd;
  content: "";
  opacity: 0.72;
}

.home-order-service .section-heading,
.home-order-service .compact-heading,
.home-order-service .method-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.65fr);
  align-items: end;
  gap: clamp(34px, 5vw, 86px);
  margin-bottom: 42px;
  padding-bottom: 26px;
  border-bottom: 2px solid #161c20;
}

.home-order-service .section-heading > .eyebrow,
.home-order-service .compact-heading > .eyebrow,
.home-order-service .method-heading > .eyebrow,
.home-order-service .profile-studio-heading .eyebrow,
.home-order-service .faq-intro > .eyebrow,
.home-order-service .remote-intro > .eyebrow,
.home-order-service .final-cta .eyebrow {
  display: block;
  grid-column: 1 / -1;
  margin: 0 0 -20px;
  color: var(--wb-blue);
  font-family: var(--wb-mono);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.home-order-service .section-heading h2,
.home-order-service .faq-intro h2,
.home-order-service .final-cta h2,
.home-order-service .profile-studio-heading h3,
.home-order-service .remote h2 {
  max-width: 18ch;
  color: #080c0f;
  font-family: var(--wb-body);
  font-size: clamp(2.35rem, 3.8vw, 4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-align: left;
}

.home-order-service .section-heading > p,
.home-order-service .faq-intro > p,
.home-order-service .profile-studio-heading > p,
.home-order-service .remote-intro > p,
.home-order-service .final-cta p {
  color: #4a5359;
  font-size: 0.98rem;
  line-height: 1.62;
}

.home-order-service .diagnostic-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 10px;
  padding: 10px;
  overflow: visible;
  border: 1px solid #8c969b;
  border-radius: 1px;
  background:
    repeating-linear-gradient(0deg, rgba(17, 26, 34, 0.035) 0 1px, transparent 1px 4px),
    #ccd1d2;
  box-shadow: 0 14px 28px rgba(17, 26, 34, 0.12);
}

.home-order-service .score-panel,
.home-order-service .inspection-panel {
  margin: 0;
  padding: 30px;
  border: 1px solid #afb7ba;
  border-radius: 1px;
  background: #fff;
  box-shadow: 0 1px 0 #fff inset;
}

.home-order-service .workbench-header {
  min-height: 82px;
  padding-bottom: 18px;
  border-bottom: 1px solid #8f999e;
}

.home-order-service .workbench-header h3 {
  margin-top: 7px;
  font-family: var(--wb-body);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 820;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.home-order-service .measurement-status,
.home-order-service .order-state,
.home-order-service .report-stamp {
  border-radius: 2px;
  background: transparent;
  font-family: var(--wb-mono);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-order-service .score-comparison {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  margin-top: 22px;
  border: 1px solid #b8bfc2;
}

.home-order-service .score-state {
  display: grid;
  align-content: start;
  min-height: 255px;
  padding: 24px;
  background: #fff;
}

.home-order-service .score-state-before {
  background: #f7f8f8;
}

.home-order-service .score-state-after {
  background: #fbfffc;
}

.home-order-service .score-connector {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  border-right: 1px solid #b8bfc2;
  border-left: 1px solid #b8bfc2;
  background: #eef0f0;
}

.home-order-service .score-connector > span {
  width: 1px;
  height: 28px;
  background: #8f999e;
}

.home-order-service .score-connector svg {
  width: 28px;
  height: 28px;
  color: var(--wb-blue);
}

.home-order-service .score-connector small {
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.home-order-service .score-gauge {
  border-radius: 50%;
  box-shadow: none;
}

.home-order-service .score-demo-label {
  margin-top: 12px;
  font-family: var(--wb-mono);
  font-size: 0.64rem;
}

.home-order-service .score-note {
  margin-top: 18px;
  padding: 13px 15px;
  border-radius: 1px;
  background: #f3f5f5;
}

.home-order-service .inspection-count {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--wb-blue);
  border-radius: 50%;
  color: var(--wb-blue);
  font-weight: 900;
}

.home-order-service .inspection-list {
  margin-top: 15px;
}

.home-order-service .inspection-list li {
  min-height: 76px;
  padding: 13px 4px;
  border-bottom: 1px solid #c7ced1;
}

.home-order-service .inspection-list li:last-child {
  border-bottom: 0;
}

.home-order-service .inspection-list svg {
  width: 38px;
  height: 38px;
  padding: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #151b1f;
}

.home-order-service .evidence-method {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 1px solid #8f999e;
  border-radius: 1px;
  background: #fff;
  box-shadow: none;
}

.home-order-service .evidence-method li {
  display: grid;
  min-height: 166px;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid #c0c7ca;
  background: transparent;
}

.home-order-service .evidence-method > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--wb-blue);
  border-radius: 50%;
  font-family: var(--wb-mono);
  font-size: 0.72rem;
}

.home-order-service .evidence-method h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.home-order-service .evidence-method p {
  font-size: 0.79rem;
  line-height: 1.55;
}

.home-order-service .method-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  margin-top: 14px;
  padding: 18px 20px;
  border: 1px solid #aeb6ba;
  border-radius: 1px;
  background: #eef1f1;
}

.home-order-service .process {
  background: transparent;
}

.home-order-service .process-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #8f999e;
  border-radius: 1px;
  background: #fff;
  box-shadow: none;
  max-width: none;
  margin: 0;
}

.home-order-service .process-list::before,
.home-order-service .process-list::after,
.home-order-service .process-list li::before,
.home-order-service .process-list li::after {
  display: none;
}

.home-order-service .process-list li,
.home-order-service .process-list li:nth-child(even) {
  display: grid;
  min-height: 172px;
  grid-template-columns: 44px 48px minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  margin: 0;
  padding: 28px;
  border: 0;
  border-right: 1px solid #c2c9cc;
  border-bottom: 1px solid #c2c9cc;
  border-radius: 0;
  background: #fff;
  width: auto;
  margin-left: 0;
  transform: none;
}

.home-order-service .process-list li:nth-child(even) {
  border-right: 0;
  background: #f7f8f8;
}

.home-order-service .process-list li:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.home-order-service .process-index {
  padding-top: 11px;
  color: var(--wb-blue);
  font-family: var(--wb-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.home-order-service .process-list > li > svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid #98a2a7;
  border-radius: 1px;
  background: #eef0f0;
  color: #11171b;
}

.home-order-service .process-list h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.home-order-service .process-list p {
  max-width: 48ch;
  font-size: 0.8rem;
  line-height: 1.55;
}

.home-order-service .profile-studio {
  min-width: 0;
  margin-top: 40px;
  overflow: hidden;
  padding-top: 38px;
  border-top: 2px solid #161c20;
}

.home-order-service .profile-studio-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.65fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 26px;
}

.home-order-service .profile-studio-heading .eyebrow {
  margin: 0 0 12px;
}

.home-order-service .profile-studio-heading h3 {
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.home-order-service .profile-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border: 1px solid #969fa3;
  border-bottom: 0;
  border-radius: 0;
  background: #e3e6e6;
}

.home-order-service .profile-tab {
  min-height: 58px;
  gap: 8px;
  border: 0;
  border-right: 1px solid #b5bdc0;
  border-radius: 0;
  background: #eceeee;
  font-size: 0.78rem;
}

.home-order-service .profile-tab:last-child {
  border-right: 0;
}

.home-order-service .profile-tab.is-active {
  border: 0;
  border-top: 3px solid var(--wb-blue);
  background: #fff;
  color: #0b1115;
  box-shadow: none;
}

.home-order-service .profile-panels {
  border: 1px solid #969fa3;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.home-order-service .profile-panel {
  min-height: 230px;
  padding: 34px;
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(17, 26, 34, 0.05) 58% calc(58% + 1px), transparent calc(58% + 1px)),
    #fff;
}

.home-order-service .profile-panel > div > span {
  color: var(--wb-blue);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-order-service .profile-panel li::before {
  width: 12px;
  height: 12px;
  border: 1px solid var(--wb-green);
  border-radius: 50%;
  background: transparent;
}

.home-order-service section.section.remote {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 22%, rgba(255, 255, 255, 0.2) 76%, transparent),
    repeating-linear-gradient(0deg, rgba(17, 26, 34, 0.02) 0 1px, transparent 1px 6px),
    #dfe2e2;
  color: var(--wb-ink);
}

.home-order-service section.section.remote::before {
  display: none;
}

.home-order-service .remote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.home-order-service .remote-product-lockup {
  color: var(--wb-ink);
}

.home-order-service .remote-product-lockup small {
  color: var(--wb-muted);
}

.home-order-service .remote h2 {
  margin-top: 14px;
  color: #080c0f;
}

.home-order-service .remote-intro > p {
  color: #4a5359;
}

.home-order-service .remote .button-light {
  border-color: var(--wb-blue);
  background: var(--wb-blue);
  color: #fff;
}

.home-order-service .permission-panel {
  padding: 0;
  overflow: hidden;
  border: 1px solid #8d979c;
  border-radius: 1px;
  background: #f7f8f8;
  color: var(--wb-ink);
  box-shadow: 0 18px 34px rgba(17, 26, 34, 0.14);
}

.home-order-service .permission-panel::after {
  display: none;
}

.home-order-service .permission-header {
  min-height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid #aab2b6;
  background: #e8ebeb;
  color: #141a1e;
  font-family: var(--wb-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.home-order-service .permission-state {
  color: var(--wb-green);
}

.home-order-service .remote-connection-path {
  padding: 26px 24px 18px;
}

.home-order-service .remote-connection-path span {
  border: 1px solid #8f999e;
  border-radius: 50%;
  background: #fff;
  color: #11171b;
}

.home-order-service .remote-connection-path b {
  background: var(--wb-blue);
}

.home-order-service .permission-panel ul {
  padding: 0 24px 24px;
}

.home-order-service .permission-panel li {
  min-height: 76px;
  border-color: #c4cbce;
}

.home-order-service .permission-panel li > svg {
  color: var(--wb-blue);
}

.home-order-service .permission-panel strong {
  color: #11171b;
}

.home-order-service .permission-panel small {
  color: var(--wb-muted);
}

.home-order-service .services {
  background: transparent;
}

.home-order-service .service-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 10px;
  border: 1px solid #8f999e;
  background:
    repeating-linear-gradient(0deg, rgba(17, 26, 34, 0.035) 0 1px, transparent 1px 4px),
    #ccd1d2;
}

.home-order-service .service-card {
  min-height: 590px;
  padding: 34px;
  border: 1px solid #afb7ba;
  border-radius: 1px;
  background: #fff;
  color: var(--wb-ink);
  box-shadow: none;
  transform: none;
}

.home-order-service .service-card::before {
  height: 4px;
  background: var(--wb-blue);
}

.home-order-service .service-card:not(.service-card-primary)::before {
  background: var(--wb-green);
}

.home-order-service .service-card:hover {
  border-color: #7f8a90;
  box-shadow: none;
  transform: none;
}

.home-order-service .service-icon,
.home-order-service .service-icon-business {
  border: 1px solid #919ba0;
  border-radius: 1px;
  background: #eef0f0;
  color: #11171b;
}

.home-order-service .service-tag {
  padding: 7px 10px;
  border: 1px solid #b6bec1;
  border-radius: 1px;
  background: transparent;
  color: #465158;
  font-family: var(--wb-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.home-order-service .service-card h3 {
  font-family: var(--wb-body);
  font-size: clamp(1.65rem, 2.7vw, 2.45rem);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.home-order-service .service-list {
  border-top: 1px solid #bfc6c9;
}

.home-order-service .service-list li {
  min-height: 48px;
  border-bottom: 1px solid #d1d6d8;
}

.home-order-service .price-block,
.home-order-service .proposal-note {
  border: 1px solid #aab3b7;
  border-radius: 1px;
  background: #f3f5f5;
}

.home-order-service .price-main {
  font-family: var(--wb-body);
  font-size: 3.25rem;
  font-weight: 850;
  letter-spacing: -0.05em;
}

.home-order-service .faq {
  background: transparent;
}

.home-order-service .faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(44px, 7vw, 110px);
}

.home-order-service .faq-intro {
  position: static;
  padding-right: 10px;
}

.home-order-service .faq-intro h2 {
  margin-top: 16px;
  font-size: clamp(2.25rem, 3.7vw, 3.7rem);
}

.home-order-service .faq-list {
  border: 1px solid #939da2;
  border-radius: 1px;
  background: #fff;
  box-shadow: none;
}

.home-order-service .faq-list details {
  border-color: #bfc7ca;
}

.home-order-service .faq-list summary {
  min-height: 72px;
  padding: 18px 22px;
  font-size: 0.92rem;
}

.home-order-service .faq-list details[open] {
  background: #f7f8f8;
}

.home-order-service .faq-list details p {
  max-width: 68ch;
  padding: 0 22px 22px;
}

.home-order-service .final-cta {
  padding: 32px 0 70px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 22%, rgba(255, 255, 255, 0.2) 76%, transparent),
    repeating-linear-gradient(0deg, rgba(17, 26, 34, 0.02) 0 1px, transparent 1px 6px),
    #dfe2e2;
  color: var(--wb-ink);
}

.home-order-service .final-cta::before,
.home-order-service .final-cta::after {
  display: none;
}

.home-order-service .final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 54px;
  min-height: 260px;
}

.home-order-service .final-cta h2 {
  max-width: 17ch;
  color: #080c0f;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.home-order-service .final-cta .eyebrow {
  margin: 0 0 14px;
  color: var(--wb-blue);
}

.home-order-service .final-cta p {
  color: #4a5359;
}

.home-order-service .final-actions {
  display: grid;
  min-width: min(100%, 330px);
  gap: 10px;
}

.home-order-service .final-cta .button-light {
  border-color: var(--wb-blue);
  background: var(--wb-blue);
  color: #fff;
}

.home-order-service .final-cta .button-ghost-light {
  border-color: #9aa3a7;
  background: #fff;
  color: #11171b;
}

.home-order-service .site-footer {
  border-top: 1px solid #8f999e;
  background: #f5f6f6;
  color: var(--wb-ink);
}

.home-order-service .site-footer .brand,
.home-order-service .site-footer .brand strong,
.home-order-service .site-footer .footer-grid nav h2 {
  color: #11171b;
}

.home-order-service .site-footer .brand strong {
  color: var(--wb-blue);
}

.home-order-service .site-footer .footer-brand p,
.home-order-service .site-footer .footer-grid nav a,
.home-order-service .site-footer .footer-bottom {
  color: #59646b;
}

.home-order-service .site-footer .footer-grid nav {
  border-left: 1px solid #c5cbce;
  padding-left: 28px;
}

.home-order-service .site-footer .footer-grid nav a:hover {
  color: var(--wb-blue);
}

.home-order-service .footer-bottom {
  border-top-color: #c5cbce;
  font-family: var(--wb-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.home-order-service .button,
.home-order-service .profile-tab,
.home-order-service .hero-scope-tab {
  border-radius: 2px;
}

.home-order-service .dossier-sheet [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Sheet tabs already carry section context. Repeating a blue eyebrow above
   every title competes with the document hierarchy instead of helping it. */
.home-order-service .section-heading > .eyebrow,
.home-order-service .compact-heading > .eyebrow,
.home-order-service .method-heading > .eyebrow,
.home-order-service .profile-studio-heading .eyebrow,
.home-order-service .faq-intro > .eyebrow,
.home-order-service .remote-intro > .eyebrow,
.home-order-service .final-cta .eyebrow {
  display: none;
}

@media (max-width: 1080px) {
  .home-order-service .dossier-sheet {
    width: min(100% - 32px, 1440px);
    padding: 44px 36px;
  }

  .home-order-service .section-heading,
  .home-order-service .compact-heading,
  .home-order-service .method-heading,
  .home-order-service .profile-studio-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .home-order-service .section-heading > .eyebrow,
  .home-order-service .compact-heading > .eyebrow,
  .home-order-service .method-heading > .eyebrow {
    margin-bottom: -10px;
  }

  .home-order-service .diagnostic-workbench,
  .home-order-service .remote-layout {
    grid-template-columns: 1fr;
  }

  .home-order-service .profile-studio-heading > p {
    max-width: 72ch;
  }

  .home-order-service .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-order-service .final-actions {
    width: min(100%, 520px);
  }
}

@media (max-width: 780px) {
  .home-order-service main > .section {
    padding: 50px 0 30px;
  }

  .home-order-service main > .section + .section {
    padding-top: 30px;
  }

  .home-order-service .dossier-sheet {
    width: calc(100% - 20px);
    padding: 34px 18px 26px;
  }

  .home-order-service .dossier-sheet::before {
    top: -27px;
    min-width: 0;
    max-width: calc(100% - 40px);
    padding-inline: 12px;
    font-size: 0.58rem;
  }

  .home-order-service .dossier-sheet::after {
    right: 14px;
    width: 42px;
  }

  .home-order-service .section-heading,
  .home-order-service .compact-heading,
  .home-order-service .method-heading {
    margin-bottom: 26px;
    padding-bottom: 20px;
  }

  .home-order-service .section-heading h2,
  .home-order-service .faq-intro h2,
  .home-order-service .remote h2,
  .home-order-service .final-cta h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .home-order-service .diagnostic-workbench,
  .home-order-service .service-options {
    grid-template-columns: 1fr;
    padding: 6px;
  }

  .home-order-service .score-panel,
  .home-order-service .inspection-panel {
    padding: 20px 16px;
  }

  .home-order-service .workbench-header {
    min-height: 0;
  }

  .home-order-service .score-comparison {
    grid-template-columns: 1fr;
  }

  .home-order-service .score-state {
    min-height: 220px;
    padding: 20px;
  }

  .home-order-service .score-connector {
    grid-template-columns: 1fr auto 1fr;
    padding: 10px 18px;
    border: 0;
    border-top: 1px solid #b8bfc2;
    border-bottom: 1px solid #b8bfc2;
    transform: none;
  }

  .home-order-service .score-connector > span {
    width: 100%;
    height: 1px;
  }

  .home-order-service .score-connector small {
    display: none;
  }

  .home-order-service .score-connector svg {
    transform: rotate(90deg);
  }

  .home-order-service .report-meta dt,
  .home-order-service .report-meta dd,
  .home-order-service .report-sample,
  .home-order-service .report-comparison tbody th,
  .home-order-service .report-comparison tbody td,
  .home-order-service .report-verification > span:first-child,
  .home-order-service .report-workbench .report-stamp {
    font-size: 0.69rem;
  }

  .home-order-service .report-comparison tbody td:nth-child(3) {
    font-size: 1rem;
  }

  .home-order-service .evidence-method,
  .home-order-service .process-list,
  .home-order-service .service-options,
  .home-order-service .faq-layout {
    grid-template-columns: 1fr;
  }

  .home-order-service .evidence-method li,
  .home-order-service .process-list li,
  .home-order-service .process-list li:nth-child(even) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #c2c9cc;
  }

  .home-order-service .process-list li,
  .home-order-service .process-list li:nth-child(even) {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 16px;
  }

  .home-order-service .process-list .process-index {
    grid-column: 1;
    grid-row: 1;
    padding-top: 0;
  }

  .home-order-service .process-list > li > svg {
    grid-column: 1;
    grid-row: 2;
  }

  .home-order-service .process-list > li > div {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .home-order-service .evidence-method li:last-child,
  .home-order-service .process-list li:last-child {
    border-bottom: 0;
  }

  .home-order-service .process-list li:nth-last-child(2) {
    border-bottom: 1px solid #c2c9cc;
  }

  .home-order-service .method-cta {
    grid-template-columns: 1fr;
  }

  .home-order-service .profile-studio-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-order-service .profile-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .home-order-service .profile-tab {
    min-width: 136px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .home-order-service .profile-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    background: #fff;
  }

  .home-order-service .remote-layout {
    gap: 34px;
  }

  .home-order-service .permission-panel {
    box-shadow: 0 12px 24px rgba(17, 26, 34, 0.14);
  }

  .home-order-service .service-card {
    min-height: 0;
    padding: 28px 20px;
  }

  .home-order-service .faq-layout {
    gap: 28px;
  }

  .home-order-service .final-cta {
    padding: 30px 0 50px;
  }

  .home-order-service .final-cta-inner {
    min-height: 0;
    gap: 30px;
  }

  .home-order-service .site-footer .footer-grid nav {
    border-left: 0;
    padding-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-order-service .service-card,
  .home-order-service .profile-panel,
  .home-order-service [data-scene] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
