@charset "UTF-8";

/*
  R293 — whole-site control, navigation and route-family UX system.
  R292 Home composition is preserved. This layer unifies interaction quality
  without flattening services, pricing, work, cases and editorial pages into
  one generic card language.
*/

body[data-r293-ui="whole-site"] {
  --r293-ink: #0b0d12;
  --r293-ink-2: #151820;
  --r293-paper: #f5f5f2;
  --r293-white: #fdfdfb;
  --r293-soft: #eaebe7;
  --r293-soft-blue: #e6e9ff;
  --r293-accent: #5b67f4;
  --r293-accent-deep: #3948da;
  --r293-text: #101319;
  --r293-muted: #5c626d;
  --r293-muted-dark: #b7bdc8;
  --r293-line: rgba(14, 17, 23, .14);
  --r293-line-dark: rgba(255, 255, 255, .16);
  --r293-focus: #6474ff;
  --r293-danger: #c53131;
  --r293-success: #177a52;
  --r293-gutter: clamp(1.25rem, 4.8vw, 5.75rem);
  --r293-content: 88rem;
  --r293-reading: 48rem;
  --r293-section: clamp(4.75rem, 8.2vw, 8rem);
  --r293-control-height: 3rem;
  --r293-radius-control: .55rem;
  --r293-radius-surface: .9rem;
  --r293-ease: cubic-bezier(.2, .78, .2, 1);
  min-width: 320px;
  overflow-x: clip;
}

body[data-r293-ui="whole-site"] *,
body[data-r293-ui="whole-site"] *::before,
body[data-r293-ui="whole-site"] *::after {
  box-sizing: border-box;
}

body[data-r293-ui="whole-site"] :is(a, button, summary, input, select, textarea) {
  -webkit-tap-highlight-color: transparent;
}

body[data-r293-ui="whole-site"] :is(a, button, summary, input, select, textarea):focus-visible {
  outline: .1875rem solid var(--r293-focus) !important;
  outline-offset: .2rem;
}

body[data-r293-ui="whole-site"] :is(.r270-skip, .r280-skip) {
  position: fixed;
  z-index: 250;
  top: .75rem;
  left: .75rem;
  display: inline-flex;
  align-items: center;
  min-width: 2.75rem;
  min-height: 2.8rem;
  transform: translateY(-200%);
}

body[data-r293-ui="whole-site"] :is(.r270-skip, .r280-skip):focus-visible {
  transform: none;
}

/* The legacy fixed transition layer sat one translated viewport below the page.
   Full-page capture painted that hidden canvas as a large empty black section. */
body[data-r293-ui="whole-site"] .r270-route-transition {
  visibility: hidden;
  opacity: 0;
}

body[data-r293-ui="whole-site"].r270-route-leaving .r270-route-transition {
  visibility: visible;
  opacity: 1;
}

/* Content remains readable even when IntersectionObserver has not visited an
   off-screen section yet (full-page capture, anchor navigation, print, or a
   throttled mobile browser). Interaction never owns information visibility. */
body[data-r293-ui="whole-site"] .r270-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* The generated source-path register duplicates the accessible route directory
   immediately after it. Keep one useful disclosure instead of two blank bands. */
body[data-r293-ui="whole-site"] .r270-source-paths {
  display: none !important;
}

body[data-r293-ui="whole-site"] main:has(> .r270-route-directory) > .r270-preserved > details:last-child {
  display: none !important;
}

body[data-r293-ui="whole-site"] :is(h1, h2, h3, p, li, a, button, label, summary) {
  overflow-wrap: normal;
  word-break: keep-all;
}

body[data-r293-ui="whole-site"] :is(h1, h2, h3) {
  text-wrap: balance;
}

body[data-r293-ui="whole-site"] :is(p, li) {
  text-wrap: pretty;
}

body[data-r293-ui="whole-site"][data-r293-ready="true"] :is(a, button, summary, input, select, textarea) {
  transition-duration: .2s;
  transition-timing-function: var(--r293-ease);
}

/* One interaction grammar, several information morphologies. */
body[data-r293-ui="whole-site"] [data-r293-control] {
  position: relative;
  font-size: max(.875rem, 13px);
  font-weight: 650;
  letter-spacing: -.012em;
}

body[data-r293-ui="whole-site"] [data-r293-control="primary"],
body[data-r293-ui="whole-site"] [data-r293-control="secondary"] {
  display: inline-flex;
  min-height: var(--r293-control-height);
  align-items: center;
  justify-content: center;
  gap: .7rem;
  width: max-content;
  max-width: 100%;
  padding: .75rem 1.15rem;
  border: 0;
  border-radius: var(--r293-radius-control);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

body[data-r293-ui="whole-site"] [data-r293-control="primary"] {
  color: var(--r293-white);
  background: var(--r293-ink);
  box-shadow: 0 .5rem 1.3rem rgba(7, 9, 14, .12);
}

body[data-r293-ui="whole-site"] [data-r293-control="primary"]:is(:hover, :focus-visible) {
  color: #fff;
  background: #202532;
  box-shadow: 0 .7rem 1.7rem rgba(7, 9, 14, .18);
  transform: translateY(-.125rem);
}

body[data-r293-ui="whole-site"] [data-r293-control="secondary"] {
  color: var(--r293-text);
  background: var(--r293-soft);
  box-shadow: inset 0 0 0 1px rgba(17, 20, 27, .04);
}

body[data-r293-ui="whole-site"] [data-r293-control="secondary"]:is(:hover, :focus-visible) {
  color: var(--r293-text);
  background: #dfe1dd;
  transform: translateY(-.125rem);
}

body[data-r293-ui="whole-site"] [data-r293-control="tertiary"],
body[data-r293-ui="whole-site"] [data-r293-control="phone"] {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: .55rem;
  width: max-content;
  max-width: 100%;
  padding: .45rem 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

body[data-r293-ui="whole-site"] [data-r293-control="tertiary"]::after {
  width: .45rem;
  height: .45rem;
  border-top: .1rem solid currentColor;
  border-right: .1rem solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform .2s var(--r293-ease);
}

body[data-r293-ui="whole-site"] [data-r293-control="tertiary"]:is(:hover, :focus-visible)::after {
  transform: translateX(.2rem) rotate(45deg);
}

body[data-r293-ui="whole-site"] [data-r293-control="icon"] {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--r293-white);
  background: var(--r293-ink);
  cursor: pointer;
}

body[data-r293-ui="whole-site"] [data-r293-control="icon"]:is(:hover, :focus-visible) {
  background: var(--r293-accent-deep);
  transform: translateY(-.125rem);
}

body[data-r293-ui="whole-site"] [data-r293-control="filter"],
body[data-r293-ui="whole-site"] [data-r293-control="tab"] {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: .65rem .2rem;
  border: 0;
  border-radius: 0;
  color: var(--r293-muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

body[data-r293-ui="whole-site"] button[data-r270-topic-filter] {
  min-width: 2.75rem !important;
}

body[data-r293-ui="whole-site"] [data-r293-control="filter"]::after,
body[data-r293-ui="whole-site"] [data-r293-control="tab"]::after {
  position: absolute;
  inset: auto 0 .1rem;
  height: .125rem;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--r293-ease);
}

body[data-r293-ui="whole-site"] [data-r293-control="filter"][aria-pressed="true"],
body[data-r293-ui="whole-site"] [data-r293-control="tab"][aria-selected="true"] {
  color: var(--r293-text);
}

body[data-r293-ui="whole-site"] [data-r293-control="filter"][aria-pressed="true"]::after,
body[data-r293-ui="whole-site"] [data-r293-control="tab"][aria-selected="true"]::after {
  transform: scaleX(1);
}

body[data-r293-ui="whole-site"] [data-r293-control="filter"]:is(:hover, :focus-visible),
body[data-r293-ui="whole-site"] [data-r293-control="tab"]:is(:hover, :focus-visible) {
  color: var(--r293-text);
}

body[data-r293-ui="whole-site"] [data-r293-control="menu"] {
  min-width: 3rem;
  min-height: 3rem;
  padding: .65rem .85rem;
  border: 0;
  border-radius: var(--r293-radius-control);
  color: inherit;
  background: rgba(255, 255, 255, .1);
  cursor: pointer;
}

body[data-r293-ui="whole-site"] [aria-current="page"]:not([role="tab"]) {
  color: inherit;
  font-weight: 720;
}

body[data-r293-ui="whole-site"] [aria-current="page"]:not([role="tab"])::before {
  opacity: 1;
}

/* Header and navigation continuity between R270 and R280 shells. */
body[data-r293-ui="whole-site"] :is(.r270-header, .r280-header) {
  min-height: 4.5rem;
  padding-inline: var(--r293-gutter);
  gap: clamp(1rem, 2.8vw, 2.5rem);
  border-bottom-color: rgba(255, 255, 255, .1);
  background: rgba(10, 12, 17, .88);
  color: var(--r293-white);
  backdrop-filter: blur(1.25rem) saturate(1.1);
}

body[data-r293-ui="whole-site"] :is(.r270-brand, .r280-brand) {
  width: 7.2rem;
  min-width: 7.2rem;
  height: 2.65rem;
}

body[data-r293-ui="whole-site"] :is(.r270-brand, .r280-brand) img {
  width: 7.2rem;
  height: 2.65rem;
  object-fit: contain;
  object-position: left center;
}

body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) {
  align-items: center;
  gap: clamp(1rem, 2.35vw, 2.25rem);
}

body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > a {
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  font-size: max(.875rem, 13px);
  font-weight: 570;
}

body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > a::before {
  position: absolute;
  inset: auto 0 .35rem;
  height: .1rem;
  content: "";
  background: currentColor;
  opacity: 0;
  transform: scaleX(.5);
  transition: opacity .2s ease, transform .2s var(--r293-ease);
}

body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > a:is(:hover, :focus-visible)::before,
body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > a[aria-current="page"]::before {
  opacity: .9;
  transform: scaleX(1);
}

body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > [data-r293-control="tertiary"] {
  min-height: 2.75rem;
  padding: .65rem 1rem;
  border-radius: var(--r293-radius-control);
  color: var(--r293-ink);
  background: var(--r293-white);
}

/* Form semantics and real states. */
body[data-r293-ui="whole-site"] [data-r293-form="true"] {
  gap: 1.15rem;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] label {
  gap: .5rem;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] label > span {
  color: inherit;
  font-size: max(.8125rem, 13px);
  font-weight: 680;
  letter-spacing: .015em;
  text-transform: none;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] :is(input, select, textarea) {
  width: 100%;
  min-height: 3.35rem;
  padding: .85rem 1rem;
  border: 1px solid #cfd3d9;
  border-radius: .55rem;
  color: var(--r293-text);
  background-color: #f9faf8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] textarea {
  min-height: 8.75rem;
  resize: vertical;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] :is(input, select, textarea)::placeholder {
  color: #777e89;
  opacity: 1;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] :is(input, select, textarea):is(:hover, :focus-visible) {
  border-color: #858d9a;
  background-color: #fff;
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] [data-r293-invalid="true"] > span {
  color: var(--r293-danger);
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] [data-r293-invalid="true"] :is(input, select, textarea) {
  border-color: var(--r293-danger);
  box-shadow: 0 0 0 .2rem rgba(197, 49, 49, .1);
}

body[data-r293-ui="whole-site"] [data-r293-form="true"] :is(button, input, select, textarea):disabled {
  cursor: not-allowed;
  opacity: .58;
}

body[data-r293-ui="whole-site"] .r280-form-end {
  align-items: flex-end;
}

body[data-r293-ui="whole-site"] .r280-form-status {
  min-height: 1.5rem;
  color: inherit;
  font-size: max(.8125rem, 13px);
}

/* Dialogs are calm task surfaces, not floating collage frames. */
body[data-r293-ui="whole-site"] .r280-dialog {
  width: min(48rem, calc(100vw - 2rem));
  max-height: min(52rem, calc(100dvh - 2rem));
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 1rem;
  color: var(--r293-text);
  background: var(--r293-white);
  box-shadow: 0 2.5rem 7rem rgba(0, 0, 0, .32);
}

body[data-r293-ui="whole-site"] .r280-dialog::backdrop {
  background: rgba(5, 7, 11, .74);
  backdrop-filter: blur(.65rem);
}

body[data-r293-ui="whole-site"] .r280-dialog-bar {
  min-height: 4rem;
  padding-inline: clamp(1.1rem, 3vw, 1.75rem);
  background: rgba(253, 253, 251, .92);
  box-shadow: inset 0 -1px var(--r293-line);
}

body[data-r293-ui="whole-site"] .r280-dialog-bar button {
  min-width: 3rem;
  min-height: 3rem;
  border-radius: var(--r293-radius-control);
}

body[data-r293-ui="whole-site"] .r280-dialog-bar button:is(:hover, :focus-visible) {
  background: var(--r293-soft);
}

body[data-r293-ui="whole-site"] .r280-dialog-body {
  padding: clamp(1.5rem, 4.5vw, 3.25rem);
}

body[data-r293-ui="whole-site"] .r280-dialog-body h2 {
  max-width: 15ch;
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  line-height: .98;
}

/* R280 route families. */
body[data-r293-family]:not([data-r293-family="home"]):is([data-r280-theme="dark"], [data-r280-theme="light"]) .r280-hero-inner {
  min-height: clamp(28rem, 58svh, 38rem);
  padding-inline: var(--r293-gutter);
}

body[data-r293-ui="whole-site"][data-r284-system][data-r293-family]:not([data-r293-family="home"]) .r280-hero-inner {
  min-height: clamp(28rem, 54svh, 34rem);
  padding: clamp(7rem, 10vw, 8.25rem) var(--r293-gutter) clamp(3.5rem, 6vw, 4.75rem);
}

body[data-r293-family]:not([data-r293-family="home"]) .r280-hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: .91;
  letter-spacing: -.062em;
}

body[data-r293-ui="whole-site"][data-r284-system][data-r293-family]:not([data-r293-family="home"]) .r280-hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.9rem, 6vw, 5.6rem);
  line-height: .94;
}

/* Services index: one precise editorial ledger. The former four-colour tile
   collage fought the information hierarchy and made every discipline look like
   a disconnected product card. */
body[data-r293-family="services-index"] .r280-service-chapters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: none;
  padding: var(--r293-section) var(--r293-gutter);
  background: var(--r293-paper);
}

body[data-r293-family="services-index"] .r280-service-chapters article:nth-child(n) {
  display: grid;
  grid-template-columns: 4rem minmax(14rem, .75fr) minmax(18rem, 1fr) auto;
  column-gap: clamp(1.25rem, 4vw, 4rem);
  row-gap: 0;
  align-items: center;
  min-height: 10.5rem;
  padding: 1.5rem clamp(.25rem, 1.5vw, 1.5rem);
  border: 0;
  border-top: 1px solid var(--r293-line);
  border-radius: 0;
  color: var(--r293-text);
  background: transparent !important;
  box-shadow: none;
}

body[data-r293-family="services-index"] .r280-service-chapters article:last-child {
  border-bottom: 1px solid var(--r293-line);
}

body[data-r293-family="services-index"] .r280-service-chapters article:is(:hover, :focus-within) {
  background: rgba(91, 103, 244, .055) !important;
}

body[data-r293-family="services-index"] .r280-service-chapters article > span {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  padding-top: .45rem;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="services-index"] .r280-service-chapters article > div {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

body[data-r293-family="services-index"] .r280-service-chapters article h2 {
  max-width: 12ch;
  margin: .55rem 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.052em;
}

body[data-r293-family="services-index"] .r280-service-chapters article > p {
  grid-column: 3;
  grid-row: 1;
  max-width: 35rem;
  margin: 0;
  color: var(--r293-muted);
  font-size: clamp(.95rem, 1.3vw, 1.1rem);
  line-height: 1.55;
}

body[data-r293-family="services-index"] .r280-service-chapters article > a {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  white-space: nowrap;
}

body[data-r293-family="service-detail"] .r280-service-outcome {
  display: grid;
  grid-template-columns: minmax(17rem, .6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding-inline: var(--r293-gutter);
}

body[data-r293-family="service-detail"] .r280-service-outcome > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--r293-line);
}

body[data-r293-family="service-detail"] .r280-service-outcome article:nth-child(n) {
  display: grid;
  grid-template-columns: 3rem minmax(11rem, .8fr) minmax(14rem, 1.2fr);
  gap: clamp(1rem, 3vw, 2.75rem);
  align-items: start;
  min-height: 9.5rem;
  padding: clamp(1.5rem, 2.8vw, 2.5rem) .25rem;
  border: 0;
  border-bottom: 1px solid var(--r293-line);
  color: var(--r293-text);
  background: transparent !important;
  box-shadow: none;
}

body[data-r293-family="service-detail"] .r280-service-outcome article h3 {
  max-width: 19ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem);
  line-height: 1.04;
}

body[data-r293-family="service-detail"] .r280-service-outcome article > span {
  grid-column: 1;
  grid-row: 1;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="service-detail"] .r280-service-outcome article > h3 {
  grid-column: 2;
  grid-row: 1;
}

body[data-r293-family="service-detail"] .r280-service-outcome article > p {
  grid-column: 3;
  grid-row: 1;
  max-width: 32rem;
  margin: 0;
  color: var(--r293-muted);
  line-height: 1.55;
}

/* About: remove the duplicated opening and turn the legacy document body into
   one editorial company record with project, process and operating sections. */
body[data-r293-family="about"] .r270-preserved {
  max-width: none;
  padding: 0;
  background: var(--r293-white);
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal {
  max-width: var(--r293-content);
  margin-inline: auto;
  padding: 2rem var(--r293-gutter) 0;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:first-child ol {
  display: flex;
  gap: .75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:first-child li + li::before {
  content: "/";
  margin-right: .75rem;
  color: #9ba0a8;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding: 1rem 0 1.25rem;
  border-bottom: 1px solid var(--r293-line);
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) > span {
  color: var(--r293-text);
  font-size: max(.8125rem, 13px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) > div {
  display: flex;
  gap: clamp(1rem, 3vw, 2.25rem);
  overflow-x: auto;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: var(--r293-muted);
  text-decoration: none;
  white-space: nowrap;
}

body[data-r293-family="about"] .r270-preserved #system {
  display: none !important;
}

body[data-r293-family="about"] .r270-preserved :is(#proof, #decisions) {
  padding: var(--r293-section) 0;
}

body[data-r293-family="about"] .r270-preserved #proof header {
  display: grid;
  grid-template-columns: minmax(10rem, .45fr) minmax(18rem, 1.55fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

body[data-r293-family="about"] .r270-preserved #proof header p {
  margin: 0;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

body[data-r293-family="about"] .r270-preserved #proof h2,
body[data-r293-family="about"] .r270-preserved #decisions > h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .94;
  letter-spacing: -.055em;
}

body[data-r293-family="about"] .r270-preserved #proof > div,
body[data-r293-family="about"] .r270-preserved #decisions > div {
  border-top: 1px solid var(--r293-line);
}

body[data-r293-family="about"] .r270-preserved #proof article a {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.25rem .25rem;
  border-bottom: 1px solid var(--r293-line);
  color: var(--r293-text);
  text-decoration: none;
}

body[data-r293-family="about"] .r270-preserved #proof article a > span:first-child {
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="about"] .r270-preserved #proof article a > span:nth-child(2) {
  display: grid;
  gap: .35rem;
}

body[data-r293-family="about"] .r270-preserved #proof article strong {
  font-size: clamp(1.45rem, 2.5vw, 2.4rem);
  line-height: 1;
}

body[data-r293-family="about"] .r270-preserved #proof article small,
body[data-r293-family="about"] .r270-preserved #proof article em {
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
  font-style: normal;
}

body[data-r293-family="about"] .r270-preserved #decisions {
  display: grid;
  grid-template-columns: minmax(15rem, .55fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 8rem);
  counter-reset: about-step;
}

body[data-r293-family="about"] .r270-preserved #decisions article {
  display: grid;
  grid-template-columns: 3rem minmax(10rem, .7fr) minmax(14rem, 1.3fr);
  gap: 1.5rem;
  align-items: start;
  min-height: 7.5rem;
  padding: 1.5rem .25rem;
  border-bottom: 1px solid var(--r293-line);
  counter-increment: about-step;
}

body[data-r293-family="about"] .r270-preserved #decisions article::before {
  content: "0" counter(about-step);
  grid-column: 1;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="about"] .r270-preserved #decisions article > span:first-child {
  display: none;
}

body[data-r293-family="about"] .r270-preserved #decisions article > strong {
  grid-column: 2;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  line-height: 1.08;
}

body[data-r293-family="about"] .r270-preserved #decisions article > span:last-child {
  grid-column: 3;
  color: var(--r293-muted);
  line-height: 1.55;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article {
  border-top: 1px solid var(--r293-line);
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article > section {
  display: grid;
  grid-template-columns: minmax(15rem, .6fr) minmax(0, 1.4fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-bottom: 1px solid var(--r293-line);
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article > section h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  line-height: .98;
  letter-spacing: -.045em;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article > section :is(p, li) {
  color: var(--r293-muted);
  line-height: 1.65;
}

body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article > blockquote {
  max-width: 30ch;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
  border: 0;
  color: var(--r293-text);
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.045em;
}

body[data-r293-family="about"] .r270-preserved #contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
  margin-top: var(--r293-section);
  padding: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  background: var(--r293-accent-deep);
}

body[data-r293-family="about"] .r270-preserved #contact a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 700;
  text-underline-offset: .25rem;
}

/* Audit intake: one coherent form workspace instead of a stack of detached
   grey field panels. The repeated opening copy is already owned by the hero. */
body[data-r293-family="audit"] .r270-preserved > section.r270-reveal > section > header > :not(div) {
  display: none !important;
}

body[data-r293-family="audit"] .r270-preserved > section.r270-reveal > section > header {
  min-height: 0;
  padding: 0;
  background: transparent;
}

body[data-r293-family="audit"] .r270-preserved > section.r270-reveal > section > header > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}

body[data-r293-family="audit"] #audit-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
  max-width: 62rem;
  margin: 2rem 0 0;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: var(--r293-radius-surface);
  color: var(--r293-text);
  background: var(--r293-white);
  box-shadow: 0 1.25rem 3.75rem rgba(11, 13, 18, .08);
}

body[data-r293-family="audit"] #audit-form > div:nth-of-type(-n + 3) {
  display: contents;
}

body[data-r293-family="audit"] #audit-form > div:nth-of-type(-n + 3) > div,
body[data-r293-family="audit"] #audit-form > div:nth-of-type(4) {
  display: grid;
  align-content: start;
  gap: .55rem;
  min-height: 0;
  margin: 0;
  padding: 0;
  background: transparent;
}

body[data-r293-family="audit"] #audit-form > div:nth-of-type(4),
body[data-r293-family="audit"] #audit-form > div:nth-of-type(5),
body[data-r293-family="audit"] #audit-form > button,
body[data-r293-family="audit"] #audit-form > [data-r280-form-status] {
  grid-column: 1 / -1;
}

body[data-r293-family="audit"] #audit-form label {
  min-height: 1.35rem;
  color: var(--r293-text);
  font-size: max(.8125rem, 13px);
  font-weight: 700;
}

body[data-r293-family="audit"] #audit-form :is(input:not([type="hidden"]), select, textarea) {
  width: 100%;
  min-height: 3.25rem;
}

body[data-r293-family="audit"] #audit-form textarea {
  min-height: 9rem;
}

body[data-r293-family="audit"] #audit-form > button {
  justify-self: end;
  margin-top: .5rem;
}

body[data-r293-family="audit"] #audit-form > div:nth-of-type(5) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: .75rem;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--r293-line);
  color: var(--r293-muted);
  background: transparent;
}

body[data-r293-family="audit"] #audit-form > div:nth-of-type(5) p {
  margin: 0;
  font-size: max(.8125rem, 13px);
  line-height: 1.55;
}

body[data-r293-family="pricing"] .r280-pricing-page {
  padding: var(--r293-section) var(--r293-gutter);
  background: var(--r293-paper);
}

body[data-r293-family="pricing"][data-r280-family="pricing"] .r280-hero-inner {
  min-height: clamp(28rem, 58svh, 34rem);
}

body[data-r293-family="pricing"] .r280-price-ledger {
  grid-template-columns: 1fr;
  max-width: var(--r293-content);
  margin-inline: auto;
  gap: .75rem;
}

body[data-r293-family="pricing"] .r280-price-ledger details {
  overflow: clip;
  border: 0;
  border-top: 1px solid var(--r293-line);
  border-radius: 0;
  color: var(--r293-text);
  background: transparent;
  box-shadow: none;
}

body[data-r293-family="pricing"] .r280-price-ledger details:last-child {
  border-bottom: 1px solid var(--r293-line);
}

body[data-r293-family="pricing"][data-r280-family="pricing"] .r280-pricing-page .r280-price-ledger details {
  min-height: 0;
}

body[data-r293-family="pricing"] .r280-price-ledger details:nth-child(n),
body[data-r293-family="pricing"] .r280-price-ledger details[open] {
  color: var(--r293-text);
  background: transparent;
}

body[data-r293-family="pricing"] .r280-price-ledger details[open] {
  box-shadow: none;
}

body[data-r293-family="pricing"] .r280-price-ledger summary {
  grid-template-columns: minmax(12rem, 1fr) minmax(10rem, auto) auto;
  min-height: 6.25rem;
  padding: 1.2rem clamp(1.25rem, 3.5vw, 2.5rem);
  gap: clamp(1rem, 3vw, 3rem);
}

body[data-r293-family="pricing"] .r280-price-ledger summary span {
  max-width: 22ch;
  font-size: clamp(1.3rem, 2.3vw, 2.1rem);
  line-height: 1.04;
}

body[data-r293-family="pricing"] .r280-price-ledger summary :is(span, strong, i) {
  grid-column: auto;
  grid-row: auto;
  align-self: center;
}

body[data-r293-family="pricing"] .r280-price-ledger summary strong {
  color: var(--r293-accent-deep);
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  white-space: nowrap;
}

body[data-r293-family="pricing"] .r280-price-ledger summary i {
  display: inline-flex;
  min-width: 4.5rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--r293-radius-control);
  color: var(--r293-muted);
  background: var(--r293-soft);
  font-size: max(.8125rem, 13px);
  letter-spacing: 0;
  text-transform: none;
}

body[data-r293-family="pricing"] .r280-price-ledger details > div {
  display: grid;
  grid-template-columns: minmax(14rem, .8fr) minmax(18rem, 1.2fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  max-width: none;
  padding: 0 clamp(1.25rem, 3.5vw, 2.5rem) clamp(1.75rem, 3.5vw, 2.75rem);
  color: var(--r293-muted);
}

body[data-r293-family="pricing"] .r280-price-ledger details > div ul {
  margin: 0;
  padding-left: 1.2rem;
}

body[data-r293-family="pricing"] .r280-price-ledger details > div button {
  align-self: end;
  color: var(--r293-text);
}

body[data-r293-family="pricing"] .r280-pricing-note {
  max-width: var(--r293-content);
  margin: 1.25rem auto 0;
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
}

body[data-r293-family="works"] .r280-work-browser {
  min-height: 0;
  padding: var(--r293-section) var(--r293-gutter);
}

body[data-r293-family="works"] .r280-work-browser > nav,
body[data-r293-family="blog-index"] .r280-guide-tools {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  overflow-x: auto;
  padding: 0 0 1rem;
  scrollbar-width: thin;
}

body[data-r293-family="works"] .r280-work-browser > nav button + button,
body[data-r293-family="blog-index"] .r280-guide-tools button + button {
  margin-left: 0;
}

body[data-r293-family="works"][data-r284-system] .r280-work-browser > nav button[data-r293-control="filter"],
body[data-r293-family="blog-index"][data-r284-system] .r280-guide-tools button[data-r293-control="filter"] {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: .65rem .15rem;
  border: 0;
  border-radius: 0;
  color: var(--r293-muted);
  background: transparent;
  box-shadow: none;
}

body[data-r293-family="works"][data-r284-system] .r280-work-browser > nav button[data-r293-control="filter"][aria-pressed="true"],
body[data-r293-family="blog-index"][data-r284-system] .r280-guide-tools button[data-r293-control="filter"][aria-pressed="true"] {
  color: var(--r293-text);
  background: transparent;
}

body[data-r293-family="works"][data-r284-system] .r280-work-browser > nav button[data-r293-control="filter"]::after,
body[data-r293-family="blog-index"][data-r284-system] .r280-guide-tools button[data-r293-control="filter"]::after,
body[data-r293-family="case-index"] .r270-identity-filters button[data-r293-control="filter"]::after {
  display: block !important;
}

body[data-r293-family="blog-index"][data-r284-system] .r280-guide-browser .r280-guide-tools button[data-r293-control="filter"] {
  border-radius: 0 !important;
  background: transparent !important;
}

body[data-r293-family="works"] .r280-work-browser-stage {
  min-height: clamp(27rem, 54vw, 38rem);
}

body[data-r293-family="works"] .r280-work-browser-stage article {
  grid-template-columns: minmax(15rem, .72fr) minmax(20rem, 1.28fr);
  gap: clamp(3rem, 8vw, 9rem);
  min-height: clamp(25rem, 52vw, 36rem);
}

body[data-r293-family="works"] .r280-work-object {
  grid-template-rows: minmax(8rem, 1fr) auto;
  min-height: 18rem;
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: var(--r293-radius-surface);
  background: var(--r293-white);
}

body[data-r293-family="works"] .r280-work-object img {
  width: min(12rem, 68%);
  height: 6.5rem;
  justify-self: center;
  object-fit: contain;
}

body[data-r293-family="works"] .r280-work-browser-stage article > div:last-child h2 {
  max-width: 15ch;
  font-size: clamp(2.6rem, 6vw, 6rem);
  line-height: .92;
}

body[data-r293-family="blog-index"] .r280-guide-feature {
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, .55fr);
  gap: 1rem;
}

body[data-r293-family="blog-index"] .r280-guide-feature > a,
body[data-r293-family="blog-index"] .r280-guide-feature > div {
  border-radius: var(--r293-radius-surface);
}

body[data-r293-family="blog-index"] .r280-guide-feature > a {
  min-height: clamp(22rem, 48vw, 35rem);
  box-shadow: 0 1rem 3rem rgba(11, 13, 18, .06);
}

body[data-r293-family="blog-index"] .r280-guide-feature > a::before {
  display: none;
}

body[data-r293-family="blog-index"] .r280-guide-feature > a h2 {
  max-width: 18ch;
  margin-top: clamp(2rem, 6vw, 5rem);
}

/* Standalone guide hub: real filters and evenly weighted editorial cards. */
body[data-r293-family="guide"] .r270-guide-region {
  padding: var(--r293-section) var(--r293-gutter);
  background: #f1f3f5;
}

body[data-r293-family="guide"] .r270-editorial-taxonomy {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  overflow-x: auto;
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--r293-line);
  background: transparent;
}

body[data-r293-family="guide"] .r270-editorial-taxonomy button {
  position: relative;
  width: max-content;
  min-width: 2.75rem;
  min-height: 3rem;
  padding: .6rem .1rem .85rem;
  border: 0;
  color: var(--r293-muted);
  background: transparent;
  font: inherit;
  font-size: max(.8125rem, 13px);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

body[data-r293-family="guide"] .r270-editorial-taxonomy button::after {
  position: absolute;
  right: 0;
  bottom: -.0625rem;
  left: 0;
  height: .125rem;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s var(--r293-ease);
}

body[data-r293-family="guide"] .r270-editorial-taxonomy button[aria-pressed="true"] {
  color: var(--r293-text);
}

body[data-r293-family="guide"] .r270-editorial-taxonomy button[aria-pressed="true"]::after {
  transform: scaleX(1);
}

body[data-r293-family="guide"] .r270-stories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto;
  grid-auto-rows: auto;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  min-height: 0;
  max-width: var(--r293-content);
  margin-inline: auto;
}

body[data-r293-family="guide"] .r270-story:nth-child(n) {
  grid-row: auto !important;
  grid-column: auto !important;
  height: auto !important;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

body[data-r293-family="guide"] .r270-story[hidden] {
  display: none !important;
}

body[data-r293-family="guide"] .r270-story a {
  position: static;
  display: block;
  height: auto !important;
  min-height: 0;
  color: var(--r293-text);
  text-decoration: none;
}

body[data-r293-family="guide"] .r270-story a::before,
body[data-r293-family="guide"] .r270-story a::after,
body[data-r293-family="guide"] .r270-story::before,
body[data-r293-family="guide"] .r270-story::after {
  display: none !important;
}

body[data-r293-family="guide"] .r270-story img {
  position: static;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--r293-radius-surface);
  filter: saturate(.82) contrast(1.04);
  transform: none;
}

body[data-r293-family="guide"] .r270-story a > div {
  position: static;
  display: block;
  height: auto !important;
  min-height: 0;
  padding: 1.35rem .2rem .5rem;
  color: var(--r293-text);
  background: transparent;
  transform: none;
}

body[data-r293-family="guide"] .r270-story .r270-kicker {
  margin: 0;
  color: var(--r293-muted);
}

body[data-r293-family="guide"] .r270-story h2 {
  margin: .75rem 0 0;
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  line-height: 1;
  letter-spacing: -.042em;
}

body[data-r293-family="guide"] .r270-guide-index:empty,
body[data-r293-family="guide"] .r272-guide-more[hidden],
body[data-r293-family="guide"] .r270-guide-empty[hidden] {
  display: none !important;
}

body[data-r293-family="guide"] .r270-guide-empty {
  margin: 2rem 0 0;
  color: var(--r293-muted);
  font-size: max(.875rem, 13px);
}

body[data-r293-family="blog-index"] .r280-guide-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 2rem;
}

body[data-r293-family="blog-index"] .r280-guide-list article {
  min-height: 10rem;
  padding: 1.6rem 0;
  border-radius: 0;
  border-top: 1px solid var(--r293-line);
  background: transparent;
}

body[data-r293-family="blog-index"] .r280-guide-list article h2 a {
  display: flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
}

body[data-r293-family="blog-index"] .r280-guide-list article:is(:hover, :focus-within) {
  color: var(--r293-text);
  background: transparent;
  transform: translateX(.25rem);
}

body[data-r293-family="blog-index"] .r280-guide-list article:is(:hover, :focus-within) p {
  color: var(--r293-muted);
}

body[data-r293-family="blog-article"] .r293-reading-progress {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: .2rem;
  pointer-events: none;
}

body[data-r293-family="blog-article"] .r293-reading-progress i {
  display: block;
  width: calc(var(--r293-reading, 0) * 100%);
  height: 100%;
  background: var(--r293-accent);
  transform-origin: left;
}

body[data-r293-family="blog-article"] .r280-reading-shell {
  grid-template-columns: minmax(12rem, 15rem) minmax(0, var(--r293-reading));
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
}

body[data-r293-family="blog-article"] .r280-reading-shell > aside {
  position: sticky;
  top: 6.5rem;
  max-height: calc(100dvh - 8rem);
  overflow: auto;
}

body[data-r293-family="blog-article"] .r280-reading-shell > aside a {
  display: block;
  min-height: 2.75rem;
  padding: .55rem 0 .55rem 1rem;
  border-left: .125rem solid var(--r293-line);
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
  line-height: 1.35;
}

body[data-r293-family="blog-article"] .r280-reading-shell > aside a[aria-current="true"] {
  border-left-color: var(--r293-accent);
  color: var(--r293-text);
  font-weight: 690;
}

body[data-r293-family="blog-article"] .r270-reading {
  color: var(--r293-text);
}

body[data-r293-family="blog-article"] .r270-reading :is(p, li) {
  color: #353b45;
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.78;
}

body[data-r293-family="blog-article"] .r270-reading > div > a,
body[data-r293-family="industries-index"] .r270-preserved article > a,
body[data-r293-family="industry-detail"] .r270-preserved nav a,
body[data-r293-family="industry-detail"] .r270-preserved article > div > a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
}

body[data-r293-family="blog-article"] .r270-reading h2 {
  margin-top: clamp(3.5rem, 7vw, 6rem);
  scroll-margin-top: 7rem;
}

body[data-r293-family="blog-article"] .r270-reading table {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--r293-line);
  border-radius: var(--r293-radius-surface);
  font-size: max(.875rem, 13px);
}

body[data-r293-family="blog-article"] .r270-reading :is(th, td) {
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--r293-line);
  text-align: left;
  vertical-align: top;
}

body[data-r293-family="blog-article"] .r270-reading th {
  color: var(--r293-text);
  background: var(--r293-soft);
}

body[data-r293-family="blog-article"] .r270-reading tr:last-child td {
  border-bottom: 0;
}

body[data-r293-family="contact"] .r280-contact-page {
  grid-template-columns: minmax(16rem, .7fr) minmax(24rem, 1.3fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding-inline: var(--r293-gutter);
  background: var(--r293-ink);
}

body[data-r293-family="contact"] .r280-contact-page > .r280-form {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  border-radius: var(--r293-radius-surface);
  color: var(--r293-text);
  background: var(--r293-white);
}

/* Case detail: the media is one authored proof stage, not a screenshot collage. */
body[data-r293-family="case-detail"][data-r289-case] .r289-case-hero {
  padding-block: clamp(7rem, 9vw, 8.5rem) clamp(4rem, 6.5vw, 6rem);
}

body[data-r293-family="case-detail"][data-r289-case] .r289-case-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(17rem, .5fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

body[data-r293-family="case-detail"][data-r289-case] .r289-case-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: .93;
}

body[data-r293-family="case-detail"][data-r289-case] .r289-case-brand {
  align-self: center;
  width: 100%;
  min-height: 19rem;
  height: clamp(19rem, 31vw, 26rem);
  max-height: 26rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border-radius: var(--r293-radius-surface);
}

body[data-r293-family="case-detail"][data-r289-case] .r289-case-brand-logo {
  max-width: 7.5rem;
  height: 3.25rem;
}

body[data-r293-family="case-detail"][data-r289-case] .r289-case-actions :is(a, button) {
  min-height: 3rem;
  padding: .75rem 1.1rem;
  border-radius: var(--r293-radius-control);
}

body[data-r293-family="case-detail"] .r289-case-stage {
  overflow: clip;
  border-radius: var(--r293-radius-surface);
  box-shadow: 0 1.75rem 5rem rgba(5, 8, 15, .24);
}

body[data-r293-family="case-detail"] .r289-case-panel {
  min-height: clamp(31rem, 64vw, 48rem);
}

body[data-r293-family="case-detail"] .r289-case-panel-copy {
  max-width: 40rem;
}

body[data-r293-family="case-detail"] .r289-case-tabs {
  display: grid;
  grid-template-columns: repeat(var(--r289-tab-count, 5), minmax(0, 1fr));
  gap: 0;
  overflow-x: auto;
  background: var(--r293-ink-2);
}

body[data-r293-family="case-detail"] .r289-case-tabs [data-r293-control="tab"] {
  min-height: 5rem;
  padding: 1rem;
  color: var(--r293-muted-dark);
  white-space: normal;
}

body[data-r293-family="case-detail"] .r289-case-tabs [data-r293-control="tab"][aria-selected="true"] {
  color: var(--r293-white);
  background: rgba(91, 103, 244, .18);
}

body[data-r293-family="case-detail"] .r289-case-tabs [data-r293-control="tab"]::after {
  inset: auto 1rem 0;
  background: var(--r293-accent);
}

/* Legacy R270 families receive the same polish without becoming R280 pages. */
body[data-r293-ui="whole-site"] .r270-opening {
  min-height: clamp(34rem, 72svh, 48rem);
  padding-inline: var(--r293-gutter);
}

body[data-r293-ui="whole-site"] .r270-opening h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .91;
}

body[data-r293-ui="whole-site"] .r270-opening-actions .r270-button[data-r293-control] {
  min-height: 3rem;
  padding: .75rem 1.1rem;
  border-radius: var(--r293-radius-control);
}

body[data-r293-family="industries-index"] .r270-map,
body[data-r293-family="industry-detail"] .r270-map {
  padding-inline: var(--r293-gutter);
}

body[data-r293-family="industries-index"] .r270-map-track,
body[data-r293-family="industry-detail"] .r270-map-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--r293-line);
}

body[data-r293-family="industries-index"] .r270-map-node,
body[data-r293-family="industry-detail"] .r270-map-node {
  min-height: 14rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 0;
  border-right: 1px solid var(--r293-line);
  border-bottom: 1px solid var(--r293-line);
  border-radius: 0;
  background: transparent;
}

body[data-r293-family="industries-index"] .r270-map-node:last-child,
body[data-r293-family="industry-detail"] .r270-map-node:last-child {
  border-right: 0;
}

/* Case architecture is an editorial sequence, not another four-card wall. */
body[data-r293-family="case-index"] .r270-capability {
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: start;
  padding: var(--r293-section) var(--r293-gutter);
  background: #f2f4f6;
}

body[data-r293-family="case-index"] .r270-capability > .r270-kicker {
  position: sticky;
  top: 7rem;
  margin: .25rem 0 0;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow {
  display: block !important;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li:nth-child(n) {
  position: relative;
  display: grid !important;
  grid-template-columns: 3.25rem minmax(12rem, .85fr) minmax(0, 1.15fr);
  gap: 1rem clamp(1.5rem, 4vw, 4rem);
  align-items: baseline;
  min-height: 0;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border: 0;
  border-top: 1px solid var(--r293-line);
  border-radius: 0;
  color: var(--r293-text);
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li:last-child {
  border-bottom: 1px solid var(--r293-line);
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li :is(span, strong, small) {
  position: static;
  inset: auto;
  margin: 0;
  transform: none;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li span {
  color: var(--r293-muted);
  font-size: max(.8125rem, 13px);
  font-weight: 700;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li strong {
  max-width: 18ch;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li small {
  color: var(--r293-muted);
  font-size: max(.875rem, 13px);
  line-height: 1.55;
}

body[data-r293-family="case-index"] .r270-capability .r270-flow > li i,
body[data-r293-family="case-index"] .r270-capability .r270-flow > li::before,
body[data-r293-family="case-index"] .r270-capability .r270-flow > li::after {
  display: none !important;
}

body[data-r293-family="case-index"] .r270-identity-filters {
  gap: clamp(1rem, 3vw, 2.5rem);
}

body[data-r293-family="case-index"] .r270-identity-filters button + button {
  margin-left: 0;
}

body[data-r293-family="case-index"] .r270-identity-filters button[data-r293-control="filter"] {
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: .65rem .1rem;
  border: 0;
  border-radius: 0;
  color: var(--r293-muted);
  background: transparent;
}

body[data-r293-family="case-index"] .r270-identity-filters button[data-r293-control="filter"][aria-pressed="true"] {
  color: var(--r293-text);
  background: transparent;
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-collection {
  display: block;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-list {
  display: flex;
  width: max-content;
  min-width: 100%;
  gap: 1rem;
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-package {
  flex: 0 0 clamp(42rem, 70vw, 56rem);
  display: grid;
  grid-template-columns: minmax(16rem, .72fr) minmax(20rem, 1.28fr);
  min-height: 32rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--r293-radius-surface);
  color: var(--r293-text);
  background: var(--r293-white);
  scroll-snap-align: start;
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-anchor {
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: #e7e4dc;
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-scope {
  min-width: 0;
  padding: clamp(2rem, 4vw, 3.75rem);
}

body[data-r293-family="case-index"][data-r280-legacy] .r270-scope h2 {
  max-width: 13ch;
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: .96;
}

body[data-r293-family="case-index"] .r270-identity-anchor img {
  max-width: 8.5rem;
  max-height: 4rem;
}

body[data-r293-family="bws"] .r270-bws-opening {
  background: var(--r293-ink);
}

body[data-r293-family="bws"] .r270-bws-mark {
  border: 0;
  border-radius: var(--r293-radius-surface);
  background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .025));
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, .28);
}

body[data-r293-family="bws"] .r270-bws-disciplines {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

body[data-r293-family="bws"] .r270-bws-disciplines article {
  min-height: 19rem;
  border: 0;
  border-right: 1px solid var(--r293-line-dark);
  background: transparent;
}

body[data-r293-family="bws"] .r270-bws-disciplines article:last-child {
  border-right: 0;
}

body[data-r293-ui="whole-site"] :is(.r270-footer, .r280-footer) {
  color: var(--r293-white);
  background: var(--r293-ink);
}

body[data-r293-ui="whole-site"] .r280-footer-grid > img,
body[data-r293-ui="whole-site"] .r270-footer-logo img {
  max-width: 7.5rem;
  max-height: 3.5rem;
  object-fit: contain;
  object-position: left center;
}

body[data-r293-ui="whole-site"] :is(.r270-footer, .r280-footer) :is(a, button) {
  color: inherit;
  font-size: max(.875rem, 13px);
}

/* App demos/admin keep their application morphology; only safe state floors apply. */
body[data-r293-family="demo"] [data-r293-control="link"],
body[data-r293-family="admin"] [data-r293-control="link"] {
  font: inherit;
}

/* The private workspace stays an application, but its entry state still follows
   the same legibility and minimum-target contract as the public site. */
body[data-r293-family="admin"] .admin-logo-img {
  width: 6.25rem;
  height: auto;
  max-width: none;
  object-fit: contain;
}

body[data-r293-family="admin"] .auth-brand-logo {
  width: 6.5rem;
  height: auto;
  max-width: none;
  object-fit: contain;
}

body[data-r293-family="admin"] :is(.admin-nav, .admin-nav-right, #auth-status) {
  min-width: 0;
}

body[data-r293-family="admin"] #auth-status {
  min-height: 2.75rem;
  font-size: max(.8125rem, 13px) !important;
  white-space: nowrap;
}

body[data-r293-family="admin"] :is(.admin-nav-links a, .auth-google-btn, .auth-logout-btn) {
  min-height: 2.75rem;
}

body[data-r293-family="demo"] :is(button, input:not([type="hidden"]), select, textarea) {
  min-height: 2.75rem;
}

body[data-r293-family="demo"] button {
  min-width: 2.75rem;
}

body[data-r293-family="demo"] label {
  font-size: max(.8125rem, 13px);
}

@media (max-width: 38.75rem) {
  body[data-r293-family="admin"] .admin-nav {
    gap: .75rem;
    padding-inline: 1rem;
  }

  body[data-r293-family="admin"] .admin-logo {
    flex: 1 1 auto;
    min-width: 0;
  }

  body[data-r293-family="admin"] .admin-logo-img {
    width: 5.75rem;
    height: auto;
    flex: 0 0 auto;
  }

  body[data-r293-family="admin"] .auth-brand-logo {
    width: 5.75rem;
  }

  body[data-r293-family="admin"] .admin-logo-badge,
  body[data-r293-family="admin"] .admin-nav-links {
    display: none;
  }

  body[data-r293-family="admin"] .admin-nav-right {
    flex: 0 0 auto;
  }

  body[data-r293-family="admin"] #auth-status {
    width: auto;
    padding-inline: .875rem;
  }

  body[data-r293-family="admin"] .auth-card {
    width: min(100%, 23rem);
  }
}

@media (max-width: 70rem) {
  body[data-r293-family="pricing"] .r280-price-ledger details > div {
    grid-template-columns: minmax(14rem, .85fr) minmax(18rem, 1.15fr);
  }

  body[data-r293-family="pricing"] .r280-price-ledger details > div button {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 56rem) {
  body[data-r293-ui="whole-site"] :is(.r270-header, .r280-header) {
    min-height: 4.25rem;
  }

  body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) {
    gap: .25rem;
  }

  body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > :is(a, button) {
    width: 100%;
    min-height: 3.25rem;
    justify-content: flex-start;
    padding: .75rem 0;
  }

  body[data-r293-ui="whole-site"] :is(.r270-menu, .r280-menu) > [data-r293-control="tertiary"] {
    justify-content: center;
    padding-inline: 1rem;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome > div,
  body[data-r293-family="industries-index"] .r270-map-track,
  body[data-r293-family="industry-detail"] .r270-map-track {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome article:nth-child(n),
  body[data-r293-family="industries-index"] .r270-map-node:nth-child(n),
  body[data-r293-family="industry-detail"] .r270-map-node:nth-child(n) {
    min-height: 0;
    border-right: 0;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome article:nth-child(n) {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: .75rem 1rem;
    padding: 1.5rem 0;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome article > :is(h3, p) {
    grid-column: 2;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome article > h3 {
    grid-row: 1;
  }

  body[data-r293-family="service-detail"] .r280-service-outcome article > p {
    grid-row: 2;
    margin-top: .55rem;
  }

  body[data-r293-family="about"] .r270-preserved #proof header,
  body[data-r293-family="about"] .r270-preserved #decisions,
  body[data-r293-family="about"] .r270-preserved > section.r270-reveal > article > section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  body[data-r293-family="about"] .r270-preserved #decisions article {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: .65rem 1rem;
  }

  body[data-r293-family="about"] .r270-preserved #decisions article > strong {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-r293-family="about"] .r270-preserved #decisions article > span:last-child {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-r293-family="audit"] #audit-form,
  body[data-r293-family="audit"] #audit-form > div:nth-of-type(5) {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="audit"] #audit-form > button {
    width: 100%;
    justify-self: stretch;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article:nth-child(n) {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: .65rem 1rem;
    min-height: 0;
    padding: 1.8rem 0;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > :is(div, p, a) {
    grid-column: 2;
    grid-row: auto;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > span {
    grid-row: 1;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > div {
    grid-row: 1;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > p {
    grid-row: 2;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > a {
    grid-row: 3;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > p {
    margin-top: .7rem;
  }

  body[data-r293-family="services-index"] .r280-service-chapters article > a {
    justify-self: start;
    margin-top: .4rem;
  }

  body[data-r293-family="works"] .r280-work-browser-stage article,
  body[data-r293-family="contact"] .r280-contact-page,
  body[data-r293-family="blog-index"] .r280-guide-feature {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="works"] .r280-work-browser-stage article {
    gap: 2.25rem;
  }

  body[data-r293-family="works"] .r280-work-browser-stage article > div:last-child h2 {
    font-size: clamp(2.6rem, 12vw, 4.8rem);
  }

  body[data-r293-family="blog-index"] .r280-guide-list {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="guide"] .r270-stories {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="blog-article"] .r280-reading-shell {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="blog-article"] .r280-reading-shell > aside {
    position: static;
    max-height: none;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(13rem, 72vw);
    overflow-x: auto;
    gap: .5rem;
    padding-bottom: .75rem;
  }

  body[data-r293-family="blog-article"] .r280-reading-shell > aside a {
    border: 0;
    border-bottom: .125rem solid var(--r293-line);
    padding: .7rem .25rem;
  }

  body[data-r293-family="blog-article"] .r280-reading-shell > aside a[aria-current="true"] {
    border-bottom-color: var(--r293-accent);
  }

  body[data-r293-family="case-detail"][data-r289-case] .r289-case-hero-inner {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="case-index"] .r270-capability {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  body[data-r293-family="case-index"] .r270-capability > .r270-kicker {
    position: static;
  }

  body[data-r293-family="case-index"] .r270-capability .r270-flow > li:nth-child(n) {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: .65rem 1rem;
    align-items: start;
  }

  body[data-r293-family="case-index"] .r270-capability .r270-flow > li strong {
    grid-column: 2;
    grid-row: 1;
  }

  body[data-r293-family="case-index"] .r270-capability .r270-flow > li small {
    grid-column: 2;
    grid-row: 2;
  }

  body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-package {
    flex-basis: calc(100vw - 2.5rem);
    grid-template-columns: 1fr;
    min-height: 34rem;
  }

  body[data-r293-family="case-index"][data-r280-legacy] .r270-identity-anchor {
    min-height: 13rem;
  }

  body[data-r293-family="case-index"][data-r280-legacy] .r270-scope {
    padding: 1.5rem;
  }

  body[data-r293-family="case-index"][data-r280-legacy] .r270-scope h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body[data-r293-family="case-detail"][data-r289-case] .r289-case-brand {
    height: 14rem;
    min-height: 14rem;
  }

  body[data-r293-family="bws"] .r270-bws-disciplines {
    grid-template-columns: 1fr;
  }

  body[data-r293-family="bws"] .r270-bws-disciplines article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--r293-line-dark);
  }

  body[data-r293-family="bws"] .r270-bws-disciplines article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 42rem) {
  body[data-r293-ui="whole-site"] {
    --r293-gutter: clamp(1.1rem, 5vw, 1.5rem);
    --r293-section: clamp(4rem, 16vw, 5.5rem);
  }

  body[data-r293-ui="whole-site"] :is(.r270-brand, .r280-brand),
  body[data-r293-ui="whole-site"] :is(.r270-brand, .r280-brand) img {
    width: 6.4rem;
    min-width: 6.4rem;
    height: 2.4rem;
  }

  body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-r293-family="about"] .r270-preserved > section.r270-reveal > nav:nth-child(2) > div {
    width: 100%;
  }

  body[data-r293-family="about"] .r270-preserved #proof article a {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: .75rem 1rem;
  }

  body[data-r293-family="about"] .r270-preserved #proof article em {
    grid-column: 2;
  }

  body[data-r293-family="about"] .r270-preserved #contact {
    align-items: flex-start;
    flex-direction: column;
  }

  body[data-r293-family]:not([data-r293-family="home"]) .r280-hero-copy h1,
  body[data-r293-ui="whole-site"] .r270-opening h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13.5vw, 4.3rem);
    line-height: .94;
    letter-spacing: -.052em;
  }

  body[data-r293-ui="whole-site"] [data-r293-control="primary"],
  body[data-r293-ui="whole-site"] [data-r293-control="secondary"] {
    min-height: 3.15rem;
  }

  body[data-r293-family="pricing"] .r280-price-ledger summary {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .6rem 1rem;
    padding: 1.15rem;
  }

  body[data-r293-family="pricing"] .r280-price-ledger summary span {
    grid-column: 1 / -1;
  }

  body[data-r293-family="pricing"] .r280-price-ledger summary strong {
    white-space: normal;
  }

  body[data-r293-family="pricing"] .r280-price-ledger summary i {
    min-width: 4rem;
  }

  body[data-r293-family="pricing"] .r280-price-ledger details > div {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-inline: 1.15rem;
  }

  body[data-r293-family="pricing"] .r280-price-ledger details > div button {
    grid-column: auto;
  }

  body[data-r293-family="works"] .r280-work-object {
    min-height: 14rem;
  }

  body[data-r293-family="works"] .r280-work-browser-nav {
    justify-content: space-between;
  }

  body[data-r293-family="case-detail"] .r289-case-tabs {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(9.5rem, 48vw);
    scroll-snap-type: x mandatory;
  }

  body[data-r293-family="case-detail"] .r289-case-tabs [data-r293-control="tab"] {
    scroll-snap-align: start;
  }

  body[data-r293-family="case-detail"] .r289-case-panel {
    min-height: clamp(31rem, 150vw, 40rem);
  }

  body[data-r293-family="blog-article"] .r270-reading table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: normal;
  }

  body[data-r293-ui="whole-site"] .r280-field-pair {
    grid-template-columns: 1fr;
  }

  body[data-r293-ui="whole-site"] .r280-form-end {
    align-items: stretch;
    flex-direction: column;
  }

  body[data-r293-ui="whole-site"] .r280-form-end [data-r293-control="primary"] {
    width: 100%;
  }

  body[data-r293-ui="whole-site"] .r280-dialog {
    width: calc(100vw - 1rem);
    max-height: calc(100dvh - 1rem);
    border-radius: .75rem;
  }
}

@media (max-height: 38rem) and (min-width: 42.01rem) {
  body[data-r293-ui="whole-site"] :is(.r270-header, .r280-header) {
    min-height: 3.75rem;
  }

  body[data-r293-family]:not([data-r293-family="home"]) .r280-hero-inner,
  body[data-r293-ui="whole-site"] .r270-opening {
    min-height: 30rem;
  }

  body[data-r293-ui="whole-site"] .r280-dialog {
    max-height: calc(100dvh - 1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-r293-ui="whole-site"] *,
  body[data-r293-ui="whole-site"] *::before,
  body[data-r293-ui="whole-site"] *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (forced-colors: active) {
  body[data-r293-ui="whole-site"] [data-r293-control] {
    border: 1px solid ButtonText;
  }
}
