:root {
  --ink: #08202c;
  --ink-2: #123543;
  --ink-3: #3e5862;
  --paper: #f7f8f4;
  --paper-2: #eef2ee;
  --white: #ffffff;
  --navy: #071f2c;
  --navy-2: #0b2d3b;
  --blue: #146b89;
  --cyan: #49bed0;
  --cyan-light: #bceaf0;
  --lime: #c7e46c;
  --line: #ced9d8;
  --line-dark: rgba(255, 255, 255, 0.18);
  --warning: #fff1c8;
  --warning-border: #d4a72c;
  --shadow: 0 28px 70px rgba(7, 31, 44, 0.12);
  --radius-sm: 0.45rem;
  --radius: 0.85rem;
  --radius-lg: 1.3rem;
  --shell: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: linear-gradient(rgba(7, 31, 44, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 31, 44, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

a {
  color: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 730;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.65rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.55rem);
}

h3 {
  font-size: 1.25rem;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 850px;
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  background: var(--lime);
  color: var(--navy);
  font-weight: 800;
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

.development-ribbon {
  padding: 0.45rem 1rem;
  background: var(--lime);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  background: rgba(247, 248, 244, 0.96);
  border-bottom: 1px solid var(--line);
}

.utility-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 34px;
}

.utility-links {
  display: flex;
  gap: 1.25rem;
}

.utility-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.nav-shell {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-logo-link {
  display: block;
  flex: 0 0 auto;
  line-height: 0;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: none;
  object-fit: contain;
}

.brand-logo-header {
  width: 124px;
}

.brand-logo-footer {
  width: 180px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  color: var(--ink);
  font-size: 1.28rem;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-copy small {
  max-width: 230px;
  margin-top: 0.28rem;
  color: var(--ink-3);
  font-size: 0.63rem;
  letter-spacing: 0.025em;
  line-height: 1.2;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.primary-nav > a {
  padding: 0.8rem 0.1rem;
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:hover {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-left: 0.25rem;
}

.mobile-contact-actions {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-ghost:hover {
  border-color: var(--blue);
  background: var(--white);
}

.button-light {
  background: var(--lime);
  color: var(--navy);
}

.button-light-outline {
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-weight: 780;
  text-underline-offset: 0.3rem;
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  color: var(--white);
}

.home-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(7, 31, 44, 0.02) 0%,
    rgba(7, 31, 44, 0.08) 46%,
    rgba(7, 31, 44, 0.78) 65%,
    rgba(7, 31, 44, 0.97) 100%
  );
  content: "";
  pointer-events: none;
}

.home-hero::after {
  content: none;
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: clamp(620px, 60vw, 760px);
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.76fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.home-hero-media {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  display: block;
  width: 100vw;
  overflow: hidden;
  background: var(--navy);
  transform: translateX(-50%);
}

.home-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.home-hero .hero-copy {
  position: relative;
  z-index: 2;
  grid-column: 2;
  max-width: 600px;
  padding: 4.5rem 0;
}

.home-hero h1 {
  max-width: 850px;
  margin-bottom: 1.8rem;
  color: var(--white);
}

.home-hero .eyebrow {
  color: var(--lime);
}

.hero-lead {
  max-width: 760px;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
}

.hero-boundary {
  max-width: 700px;
  padding-left: 1rem;
  border-left: 2px solid var(--cyan);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.home-hero .button-primary {
  background: var(--lime);
  color: var(--navy);
}

.hero-micro {
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.media-placeholder {
  position: relative;
  display: grid;
  min-height: 300px;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  padding: clamp(1.4rem, 4vw, 2.3rem);
  overflow: hidden;
  border: 1px dashed rgba(199, 228, 108, 0.72);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.media-placeholder::after {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(199, 228, 108, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.018);
  content: "";
}

.media-placeholder-mark {
  position: relative;
  display: block;
  width: 76px;
  height: 62px;
  border: 2px solid var(--lime);
  border-radius: var(--radius-sm);
}

.media-placeholder-mark::before,
.media-placeholder-mark::after,
.media-placeholder-mark i {
  position: absolute;
  content: "";
}

.media-placeholder-mark::before {
  width: 12px;
  height: 12px;
  right: 12px;
  top: 10px;
  border: 2px solid var(--lime);
  border-radius: 50%;
}

.media-placeholder-mark::after {
  width: 46px;
  height: 24px;
  left: 12px;
  bottom: 10px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: skewY(-28deg) rotate(-10deg);
}

.media-placeholder-mark i:first-child {
  width: 8px;
  height: 8px;
  left: -5px;
  bottom: -5px;
  border-radius: 50%;
  background: var(--lime);
}

.media-placeholder-mark i:last-child {
  width: 16px;
  height: 2px;
  right: -8px;
  top: 29px;
  background: var(--lime);
}

.media-placeholder figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
}

.media-placeholder-kicker,
.media-placeholder em {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.media-placeholder strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.2;
}

.media-placeholder small {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  line-height: 1.55;
}

.media-placeholder em {
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.58rem;
}

.media-placeholder-hero {
  min-height: 430px;
  margin: 0;
}

.media-placeholder-wide,
.media-placeholder-content {
  margin: 2rem 0 0;
}

.media-placeholder-wide {
  min-height: 260px;
}

.media-placeholder-compact {
  min-height: 220px;
  margin: 0 0 1.25rem;
  box-shadow: none;
}

.owner-media {
  display: block;
  width: 100%;
  margin: 2rem 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.owner-media picture,
.owner-media img {
  display: block;
}

.owner-media img {
  width: 100%;
  height: auto;
}

.owner-media-hero {
  min-height: 430px;
  aspect-ratio: 3 / 4;
  margin: 0;
}

.owner-media-hero picture,
.owner-media-hero img {
  width: 100%;
  height: 100%;
}

.owner-media-hero img {
  object-fit: cover;
  object-position: center;
}

.owner-media-content {
  max-width: 620px;
}

.owner-media-wide {
  display: grid;
  min-height: 420px;
  place-items: center;
}

.owner-media-wide picture {
  display: grid;
  width: 100%;
  place-items: center;
}

.owner-media-wide img {
  width: auto;
  max-width: 100%;
  max-height: 640px;
  object-fit: contain;
}

.owner-media-compact {
  max-width: 560px;
  margin: 0 0 1.25rem;
  box-shadow: none;
}

.technology-media-stack {
  display: grid;
}

.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.trust-grid span {
  color: var(--ink-3);
  font-size: 0.76rem;
}

.home-section,
.content-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  border-bottom: 1px solid var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.65fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3.2rem;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 0;
  color: var(--ink-3);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: clamp(1.6rem, 4vw, 2.7rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card::after {
  position: absolute;
  width: 150px;
  height: 150px;
  right: -88px;
  bottom: -90px;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(20, 107, 137, 0.025), 0 0 0 55px rgba(20, 107, 137, 0.02);
  content: "";
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card-top {
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 470px;
  margin: 2.5rem 0 1.2rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.service-card p {
  max-width: 530px;
  color: var(--ink-3);
}

.service-card .output {
  font-size: 0.86rem;
}

.service-card .boundary {
  margin-top: auto;
  color: var(--ink-2);
  font-family: var(--mono);
  font-size: 0.67rem;
  text-transform: uppercase;
}

.service-card > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: var(--blue);
  font-weight: 790;
}

.principles-section {
  background: var(--white);
}

.principles-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.35fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.principles-grid > div:first-child {
  position: sticky;
  top: 2rem;
}

.principles-grid > div:first-child p:not(.eyebrow) {
  color: var(--ink-3);
}

.principle-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.info-card {
  position: relative;
  min-height: 230px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.info-card .card-index {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.info-card h3 {
  margin-top: 2.5rem;
}

.info-card p {
  margin-bottom: 0;
  color: var(--ink-3);
  font-size: 0.92rem;
}

.process-section {
  background: var(--navy);
  color: var(--white);
}

.process-section h2,
.process-section h3,
.process-section .eyebrow {
  color: var(--white);
}

.process-section .eyebrow {
  color: var(--lime);
}

.process-section .split-heading > p,
.process-section .process-list p {
  color: rgba(255, 255, 255, 0.62);
}

.process-evidence-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: end;
}

.process-evidence-layout .process-list {
  min-width: 0;
}

.owner-media-process {
  align-self: end;
  width: 100%;
  margin: 1.7rem 0 0;
  border: 1px solid var(--line-dark);
  background: transparent;
  box-shadow: none;
}

.owner-media-process picture,
.owner-media-process img {
  width: 100%;
  height: auto;
}

.process-list-final {
  margin-top: 0;
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}

.process-section .process-list li {
  border-color: var(--line-dark);
}

.process-list > li > span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.process-section .process-list > li > span {
  color: var(--cyan);
}

.process-list h3 {
  margin-bottom: 0.35rem;
}

.process-list p {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--ink-3);
}

.technology-grid,
.limitations-grid,
.coverage-grid,
.learning-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.technology-grid > div:first-child > p:not(.eyebrow),
.coverage-grid > div:first-child > p:not(.eyebrow) {
  color: var(--ink-3);
}

.method-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.method-list span {
  position: relative;
  padding: 1.25rem 1rem 1.25rem 3rem;
  border-bottom: 1px solid var(--line);
  font-weight: 740;
}

.method-list span::before {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border: 3px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--blue);
  content: "";
  transform: translateY(-50%);
}

.limitations-section {
  background: #e9eff0;
}

.limitation-panel {
  padding: clamp(1.8rem, 5vw, 3.4rem);
  border-left: 5px solid var(--warning-border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.limitation-panel strong {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 1.3;
}

.limitation-panel p {
  color: var(--ink-3);
}

.limitation-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.limitation-panel a {
  color: var(--blue);
  font-weight: 750;
}

.evidence-section {
  background: var(--white);
}

.case-governance-panel {
  align-self: stretch;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.case-governance-panel h2 {
  color: var(--white);
}

.case-governance-panel ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.case-governance-panel li {
  position: relative;
  padding: 0.8rem 0 0.8rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.case-governance-panel li::before {
  position: absolute;
  left: 0;
  top: 1.33rem;
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  content: "";
}

.case-framework-preview-note,
.case-library-empty {
  padding: 1rem 1.2rem;
  margin: 0 0 1.25rem;
  border-left: 4px solid var(--lime);
  background: var(--paper-2);
  color: var(--ink-2);
}

.case-framework-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.case-framework-card,
.case-study-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.case-framework-cover {
  display: grid;
  min-height: 190px;
  place-items: center;
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(73, 190, 208, 0.17), rgba(199, 228, 108, 0.08)),
    var(--navy);
}

.case-framework-cover span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 760;
  letter-spacing: -0.06em;
}

.case-framework-copy,
.case-study-card-copy {
  padding: 1.5rem;
}

.case-framework-card p,
.case-study-card p {
  color: var(--ink-3);
  font-size: 0.9rem;
}

.case-framework-card h3,
.case-study-card h3 {
  overflow-wrap: anywhere;
}

.case-framework-support {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.76rem !important;
}

.case-framework-support strong {
  color: var(--ink-2);
}

.case-study-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.case-study-cover {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy);
}

.case-study-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-card-copy {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
}

.case-study-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.case-study-card h3 a:hover {
  color: var(--blue);
}

.case-card-facts {
  display: grid;
  gap: 0;
  margin: 0 0 1.25rem;
}

.case-card-facts > div {
  padding: 0.7rem 0;
  border-top: 1px solid var(--line);
}

.case-card-facts dt,
.case-detail-facts dt {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-card-facts dd,
.case-detail-facts dd {
  margin: 0.25rem 0 0;
  overflow-wrap: anywhere;
  color: var(--ink-2);
}

.case-result-status {
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--lime);
  background: var(--white);
  color: var(--ink-2) !important;
  font-weight: 760;
}

.case-study-card .text-link {
  margin-top: auto;
}

.media-placeholder-card {
  min-height: 240px;
  margin: 0;
  border: 0;
  border-bottom: 1px dashed rgba(199, 228, 108, 0.72);
  border-radius: 0;
  box-shadow: none;
}

.media-placeholder-card .media-placeholder-mark {
  width: 58px;
  height: 48px;
}

.media-placeholder-card em {
  display: none;
}

.status-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--blue) !important;
  font-family: var(--mono);
  font-size: 0.62rem !important;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.todo-marker {
  color: #5a4100 !important;
}

p.todo-marker,
small.todo-marker {
  padding-left: 0.75rem;
  border-left: 3px solid var(--warning-border);
}

.status-chip.todo-marker {
  border-color: var(--warning-border);
  background: var(--warning);
}

.status-chip.owner-media-status {
  border-color: rgba(199, 228, 108, 0.9);
  background: rgba(199, 228, 108, 0.2);
  color: var(--ink-2) !important;
}

.lp-case-study-main {
  min-width: 0;
}

.lp-case-study-main > .breadcrumbs {
  padding-top: 1.1rem;
}

.lp-case-study-detail {
  width: var(--shell);
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.case-detail-header {
  max-width: 900px;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.case-detail-header h1 {
  max-width: 850px;
}

.case-detail-header .case-result-status {
  width: fit-content;
  max-width: 720px;
  margin-top: 2rem;
}

.case-detail-section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(1.2rem, 4vw, 3.5rem);
  padding: clamp(2.3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid var(--line);
}

.case-detail-section > div {
  min-width: 0;
}

.case-section-key {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 800;
}

.case-detail-section h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.case-detail-section h3 {
  margin-top: 2rem;
}

.case-detail-section p {
  max-width: 800px;
  color: var(--ink-3);
}

.case-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}

.case-detail-facts > div {
  min-width: 0;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-detail-limitations > div {
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-left: 5px solid var(--warning-border);
  background: var(--white);
  box-shadow: var(--shadow);
}

.case-evidence-gallery img {
  height: auto;
  border-radius: var(--radius-sm);
}

.lp-case-study-empty .case-detail-header {
  padding-bottom: 3rem;
}

.section-link-row {
  margin-top: 1.6rem;
  text-align: right;
}

.coverage-section {
  background: var(--paper-2);
}

.coverage-orbit {
  position: relative;
  display: grid;
  width: min(320px, 80vw);
  aspect-ratio: 1;
  margin: 0 auto 2rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.coverage-orbit::before,
.coverage-orbit::after {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
}

.coverage-orbit::before { inset: 18%; }
.coverage-orbit::after { inset: 36%; background: var(--navy); }

.coverage-orbit span {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-weight: 800;
}

.coverage-orbit i {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
}

.coverage-orbit i:nth-of-type(1) { left: 12%; top: 46%; }
.coverage-orbit i:nth-of-type(2) { right: 17%; top: 21%; background: var(--lime); }
.coverage-orbit i:nth-of-type(3) { right: 23%; bottom: 15%; }

.coverage-tags,
.region-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
}

.coverage-tags span,
.region-grid span {
  padding: 0.45rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.map-note {
  margin: 1.3rem auto 0;
  color: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.65rem;
  text-align: center;
}

.learning-section {
  background: var(--white);
}

.learning-grid {
  align-items: stretch;
}

.mini-faq article {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.mini-faq h3 {
  margin-bottom: 0.35rem;
}

.mini-faq p {
  margin-bottom: 0;
  color: var(--ink-3);
}

.resource-gateway {
  position: relative;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: var(--white);
}

.resource-gateway::after {
  position: absolute;
  width: 270px;
  height: 270px;
  right: -150px;
  bottom: -150px;
  border: 1px solid rgba(73, 190, 208, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 0 44px rgba(255, 255, 255, 0.025), 0 0 0 90px rgba(255, 255, 255, 0.02);
  content: "";
}

.resource-gateway h2,
.resource-gateway .text-link {
  color: var(--white);
}

.resource-gateway p {
  color: rgba(255, 255, 255, 0.68);
}

.resource-gateway .eyebrow {
  color: var(--lime);
}

.resource-gateway .cadence {
  margin-top: 2rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.final-cta {
  background: var(--blue);
  color: var(--white);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 4rem;
  align-items: center;
}

.final-cta h2,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta .eyebrow {
  color: var(--lime);
}

.final-cta p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
}

.cta-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.cta-stack small {
  color: rgba(255, 255, 255, 0.57);
  text-align: center;
}

.breadcrumbs {
  padding-top: 1.15rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--ink-3);
  font-size: 0.75rem;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 0.45rem;
  color: var(--line);
  content: "/";
}

.breadcrumbs a {
  text-underline-offset: 0.2rem;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7.5rem) 0;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.65fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.7rem, 6vw, 5.1rem);
}

.page-hero .lead {
  max-width: 780px;
  color: var(--ink-3);
  font-size: 1.15rem;
}

.page-hero-contact,
.page-hero-assessment {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.page-hero-contact .page-hero-grid,
.page-hero-assessment .page-hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.page-hero-contact .page-hero-copy,
.page-hero-assessment .page-hero-copy,
.page-hero-contact .page-hero-grid > div:first-child,
.page-hero-assessment .page-hero-grid > div:first-child {
  align-self: center;
}

.contact-hero-panel {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 3.5vw, 2.5rem);
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: var(--white);
}

.contact-hero-panel::after {
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(207, 233, 104, 0.26);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(207, 233, 104, 0.04), 0 0 0 70px rgba(207, 233, 104, 0.025);
  content: "";
  pointer-events: none;
}

.contact-hero-panel .eyebrow {
  position: relative;
  z-index: 1;
  margin-bottom: 0.65rem;
  color: var(--lime);
}

.contact-hero-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.contact-hero-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.65rem;
}

.contact-hero-actions .button,
.contact-hero-actions .wp-block-button,
.contact-hero-actions .wp-block-button__link {
  width: 100%;
}

.contact-hero-actions .button,
.contact-hero-actions .wp-block-button__link {
  display: flex;
  min-height: 48px;
  flex-direction: column;
  gap: 0.1rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 1rem;
  text-align: center;
}

.contact-hero-panel .contact-hero-actions .button,
.contact-hero-panel .contact-hero-actions .wp-block-button__link {
  padding-block: 0.25rem;
}

.contact-action-label,
.contact-action-value {
  display: block;
  max-width: 100%;
}

.contact-action-label {
  line-height: 1.15;
}

.contact-action-value {
  overflow-wrap: anywhere;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: 1.15;
  opacity: 0.8;
}

.contact-hero-panel .lp-button-outline .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.contact-hero-details {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.2rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-hero-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.contact-hero-details strong,
.contact-hero-response {
  color: var(--white);
}

.contact-hero-response {
  padding-top: 0.55rem;
  font-weight: 650;
}

.assessment-preparation {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--white);
}

.assessment-preparation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.assessment-preparation-grid > div > p:not(.eyebrow) {
  color: var(--ink-3);
}

.assessment-preparation-grid .check-list {
  margin-top: 0;
}

.content-section {
  background: rgba(255, 255, 255, 0.44);
}

.content-section:nth-of-type(even) {
  background: var(--paper-2);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.section-heading {
  position: sticky;
  top: 2rem;
}

.section-heading > span {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
}

.section-body > p {
  max-width: 760px;
  color: var(--ink-3);
  font-size: 1.04rem;
}

.section-body > p:first-child {
  color: var(--ink-2);
  font-size: 1.16rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}

.check-list {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.8rem 1rem 0.8rem 2.6rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}

.check-list li::before {
  position: absolute;
  left: 0.7rem;
  top: 1.25rem;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  content: "";
}

.section-notice {
  background: var(--warning) !important;
  border-top: 1px solid var(--warning-border);
  border-bottom-color: var(--warning-border);
}

.region-grid {
  justify-content: flex-start;
}

.region-grid span {
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
}

.resource-list {
  display: grid;
  gap: 0;
}

.resource-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.3rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.resource-line {
  width: 42px;
  height: 3px;
  margin-top: 0.7rem;
  background: var(--cyan);
}

.resource-list h3 {
  margin-bottom: 0.3rem;
}

.resource-list p {
  margin-bottom: 0;
  color: var(--ink-3);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card {
  min-height: 260px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-card h3,
.contact-card a {
  overflow-wrap: anywhere;
}

.contact-card-wide {
  grid-column: span 2;
  min-height: 0;
}

.contact-card .wp-block-buttons,
.contact-card .button {
  margin-top: 1rem;
}

.contact-response {
  font-weight: 650;
}

.contact-links-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.2rem;
  margin: 0;
}

.contact-links-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--blue);
  font-weight: 750;
  text-underline-offset: 0.25rem;
}

.assessment-contact-alternatives {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--white);
}

.assessment-contact-alternatives h2 {
  max-width: 820px;
}

.contact-alternative-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-card.featured {
  grid-column: span 2;
  background: var(--navy);
  color: var(--white);
}

.contact-card.featured h3,
.contact-card.featured .eyebrow {
  color: var(--white);
}

.contact-card.featured .eyebrow {
  color: var(--lime);
}

.contact-card p:not(.eyebrow) {
  color: var(--ink-3);
}

.contact-card.featured p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 55px 1fr;
  min-height: 72px;
  align-items: center;
  padding: 0 1.2rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 760;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.faq-list details > div {
  padding: 0 1.2rem 1.3rem 4.6rem;
  color: var(--ink-3);
}

.assessment-section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper-2);
}

.assessment-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.assessment-layout aside {
  position: sticky;
  top: 2rem;
}

.assessment-layout aside > p:not(.eyebrow) {
  color: var(--ink-3);
}

.assessment-form {
  display: grid;
  gap: 1.4rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.prototype-notice {
  padding: 1rem;
  border-left: 4px solid var(--warning-border);
  background: var(--warning);
  font-size: 0.88rem;
}

.assessment-form fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

.assessment-form legend,
.assessment-form label > span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--ink-2);
  font-size: 0.84rem;
  font-weight: 750;
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.choice-grid label {
  position: relative;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: flex !important;
  min-height: 56px;
  align-items: center;
  padding: 0.75rem 1rem;
  margin: 0 !important;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.choice-grid input:checked + span {
  border-color: var(--blue);
  background: #e3f3f5;
  box-shadow: inset 0 0 0 1px var(--blue);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.assessment-form input[type="text"],
.assessment-form select,
.assessment-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem;
  border: 1px solid #aebfbe;
  border-radius: var(--radius-sm);
  background: #fbfcfa;
  color: var(--ink);
}

.assessment-form textarea {
  resize: vertical;
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.65rem;
  align-items: start;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
}

.consent-row span {
  margin: 0 !important;
  font-weight: 500 !important;
}

.form-status {
  min-height: 1.6rem;
  margin: 0;
  color: var(--blue);
  font-weight: 730;
}

.cta-band {
  padding: 3.5rem 0;
  background: var(--blue);
  color: var(--white);
}

.cta-band > .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band .eyebrow {
  margin-bottom: 0.5rem;
  color: var(--lime);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.6vw, 3rem);
}

.site-footer {
  padding: 5rem 0 1.4rem;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.67);
}

.site-footer .brand-copy strong,
.site-footer .brand-copy small {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand p {
  max-width: 420px;
  margin-top: 1.5rem;
}

.footer-brand .registration {
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: var(--white);
  font-size: 0.84rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact-list li {
  display: grid;
  gap: 0.15rem;
}

.footer-contact-list span {
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.footer-contact-list a,
.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-hours,
.footer-response {
  margin-top: 1.25rem;
  line-height: 1.65;
}

.footer-response {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer a {
  color: inherit;
  text-underline-offset: 0.25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.43);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 1121px) {
  .home-hero .hero-copy {
    transform: translateY(72px);
  }
}

@media (max-width: 1120px) {
  .brand-logo-header {
    width: 116px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: transparent;
  }

  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1rem max(20px, calc((100vw - 1180px) / 2));
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 22px 35px rgba(7, 31, 44, 0.14);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 0.85rem;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
  }

  .mobile-contact-actions {
    display: grid;
    gap: 0.25rem;
    margin-top: 0.75rem;
  }

  .mobile-contact-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0.75rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 750;
    text-decoration: none;
  }

  .nav-actions {
    width: 100%;
    margin: 1rem 0 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(400px, 0.85fr);
    gap: 2.5rem;
  }

  .page-hero-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 2.5rem;
  }

  .primary-nav .button {
    flex: 1;
  }

  .hero-grid {
    min-height: clamp(660px, 70vw, 740px);
  }

  .home-hero .hero-copy {
    transform: translateY(52px);
  }

  .footer-grid {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 3;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 28px, 720px);
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-links {
    display: none;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-copy small {
    max-width: 190px;
  }

  .hero-grid,
  .page-hero-grid,
  .principles-grid,
  .technology-grid,
  .limitations-grid,
  .coverage-grid,
  .learning-grid,
  .final-cta-grid,
  .content-grid,
  .assessment-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-contact,
  .page-hero-assessment {
    padding: 2.5rem 0 3rem;
  }

  .page-hero-contact .page-hero-grid,
  .page-hero-assessment .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  .contact-hero-panel {
    padding: 1.35rem;
  }

  .contact-hero-panel h2 {
    margin-bottom: 0.9rem;
    font-size: 1.55rem;
  }

  .contact-hero-details {
    padding-top: 1rem;
    margin-top: 1rem;
  }

  .assessment-preparation-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .home-hero {
    padding: 0;
  }

  .home-hero::before {
    content: none;
  }

  .hero-grid {
    min-height: 0;
    gap: 0;
  }

  .home-hero-media {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    order: 0;
    width: 100%;
    aspect-ratio: 3 / 2;
    transform: none;
  }

  .home-hero .hero-copy {
    order: 1;
    grid-column: 1;
    max-width: none;
    padding: 3.5rem 0 4rem;
    transform: none;
  }

  .media-placeholder-hero,
  .media-placeholder-wide {
    min-height: 400px;
  }

  .owner-media-hero {
    width: min(100%, 560px);
    min-height: 0;
    justify-self: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid > div:first-child {
    border-left: 0;
  }

  .trust-grid > div:nth-child(odd) {
    border-left: 1px solid var(--line);
  }

  .trust-grid > div:last-child {
    grid-column: span 2;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    min-height: 360px;
  }

  .principles-grid > div:first-child,
  .section-heading,
  .assessment-layout aside {
    position: static;
  }

  .content-grid {
    gap: 1rem;
  }

  .section-heading h2 {
    max-width: 700px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .case-framework-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .process-evidence-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .owner-media-process {
    align-self: auto;
    width: 100%;
    margin: 1rem 0 0;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .page-hero-contact,
  .page-hero-assessment {
    padding: 0.75rem 0 2rem;
  }

  .page-hero-contact .page-hero-grid,
  .page-hero-assessment .page-hero-grid {
    gap: 0.75rem;
  }

  .page-hero-contact h1,
  .page-hero-assessment h1 {
    margin-bottom: 0.8rem;
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .page-hero-contact .lead,
  .page-hero-assessment .lead {
    font-size: 1rem;
    line-height: 1.55;
  }

  .page-hero-contact .contact-hero-panel,
  .page-hero-assessment .contact-hero-panel {
    padding: 1.1rem;
  }

  .page-hero-contact .contact-hero-panel h2,
  .page-hero-assessment .contact-hero-panel h2 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
  }

  .development-ribbon {
    font-size: 0.6rem;
  }

  .brand-logo-header {
    width: 104px;
  }

  .brand-logo-footer {
    width: 160px;
  }

  .primary-nav {
    padding-right: max(1.25rem, env(safe-area-inset-right));
    padding-left: max(1.25rem, env(safe-area-inset-left));
  }

  .home-hero {
    padding: 0;
  }

  .home-hero-media {
    aspect-ratio: 4 / 3;
  }

  .home-hero .hero-copy {
    padding: clamp(2.75rem, 9vw, 3.5rem) 0 3.5rem;
  }

  .hero-actions,
  .nav-actions {
    flex-direction: column;
  }

  .hero-actions .button,
  .nav-actions .button,
  .cta-stack .button {
    width: 100%;
  }

  .media-placeholder {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .media-placeholder-hero,
  .media-placeholder-wide {
    min-height: 350px;
  }

  .media-placeholder-mark {
    justify-self: start;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div,
  .trust-grid > div:nth-child(odd),
  .trust-grid > div:last-child {
    grid-column: auto;
    min-height: 78px;
    border-left: 1px solid var(--line);
  }

  .service-grid,
  .principle-cards,
  .evidence-grid,
  .case-framework-grid,
  .cards-grid,
  .contact-grid,
  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .case-detail-section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 0.8rem;
  }

  .case-detail-facts {
    grid-template-columns: 1fr;
  }

  .case-detail-facts > div {
    border-right: 0;
  }

  .service-card .boundary {
    margin-top: 1rem;
  }

  .process-list li {
    grid-template-columns: 50px 1fr;
  }

  .contact-card.featured {
    grid-column: auto;
  }

  .contact-card-wide {
    grid-column: auto;
  }

  .contact-alternative-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-alternative-actions .button,
  .contact-alternative-actions .wp-block-button,
  .contact-alternative-actions .wp-block-button__link {
    width: 100%;
  }

  .cta-band > .shell {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .development-ribbon,
  .site-header,
  .site-footer,
  .hero-actions,
  .cta-band,
  .final-cta {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .home-section,
  .content-section,
  .page-hero {
    padding: 1.5rem 0;
    break-inside: avoid;
  }
}


:root{--preview-width:1440px}
body.public-case-preview{background:#dfe5e7}
.review-canvas{width:min(var(--preview-width),100%);margin:0 auto;background:var(--paper);box-shadow:0 18px 70px rgba(7,31,44,.16)}
.viewport-1440{--preview-width:1440px}.viewport-1280{--preview-width:1280px}.viewport-768{--preview-width:768px}.viewport-390{--preview-width:390px}.viewport-360{--preview-width:360px}
.public-ribbon{padding:.72rem 1rem;background:var(--lime);color:var(--navy);font:800 .72rem/1.3 var(--mono);letter-spacing:.07em;text-align:center;text-transform:uppercase}
.public-header{background:#fff;border-bottom:1px solid var(--line)}
.public-header .shell{display:flex;min-height:88px;align-items:center;justify-content:space-between;gap:1.25rem}
.public-logo{width:150px;height:auto}
.public-state{max-width:340px;margin:0;color:var(--ink-3);font-size:.76rem;text-align:right}
.case-hero{padding:clamp(4rem,8vw,8rem) 0 4.5rem;background:var(--navy);color:#fff}
.case-hero h1{max-width:950px;color:#fff;font-size:clamp(2.7rem,6vw,5.9rem)}
.case-hero .lead{max-width:830px;color:rgba(255,255,255,.8);font-size:clamp(1.08rem,1.8vw,1.34rem)}
.status-chip{display:inline-flex;margin-bottom:1.4rem;padding:.45rem .75rem;border:1px solid rgba(255,255,255,.28);border-radius:999px;color:var(--lime);font:750 .7rem/1.3 var(--mono);letter-spacing:.06em;text-transform:uppercase}
.hero-grid{display:grid;grid-template-areas:"copy media" "facts media";grid-template-columns:minmax(0,1.04fr) minmax(360px,.72fr);gap:clamp(2rem,5vw,5rem);align-items:start}
.hero-copy{grid-area:copy;min-width:0}
.hero-media{grid-area:media;min-width:0;overflow:hidden;border-radius:var(--radius-lg);background:#fff;box-shadow:0 30px 75px rgba(0,0,0,.28)}
.hero-media img{width:100%;height:auto;aspect-ratio:4/5;object-fit:cover}
.hero-media figcaption,.case-figure figcaption{padding:.85rem 1rem;background:#fff;color:var(--ink-3);font-size:.78rem;line-height:1.5}
.case-summary-strip{grid-area:facts;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin:0;background:rgba(255,255,255,.16)}
.case-summary-strip div{padding:1.15rem;background:rgba(255,255,255,.06)}
.case-summary-strip dt{color:rgba(255,255,255,.58);font:700 .67rem/1.4 var(--mono);letter-spacing:.05em;text-transform:uppercase}
.case-summary-strip dd{margin:.3rem 0 0;color:#fff;font-weight:720}
.story-flow{padding:1.1rem 0;background:#fff;border-bottom:1px solid var(--line)}
.story-flow ol{display:flex;max-width:100%;min-width:0;gap:.65rem;align-items:center;margin:0;padding:0;box-sizing:border-box;list-style:none;overflow-x:auto;overscroll-behavior-inline:contain;scrollbar-width:none;touch-action:pan-x;-webkit-overflow-scrolling:touch}
.story-flow ol:focus-visible{outline:2px solid var(--blue);outline-offset:5px}
.story-flow li{display:flex;flex:0 0 auto;gap:.65rem;align-items:center;white-space:nowrap;color:var(--ink-3);font-size:.76rem;font-weight:720}
.story-flow li:not(:last-child)::after{color:var(--blue);content:"→"}
.case-body{padding:clamp(4rem,8vw,8rem) 0}
.case-section{display:grid;grid-template-columns:72px minmax(0,1fr);gap:clamp(1.25rem,4vw,4rem);padding:clamp(3.5rem,7vw,7rem) 0;border-top:1px solid var(--line)}
.case-section:first-child{padding-top:0;border-top:0}
.section-key{display:grid;width:52px;height:52px;margin:0;border-radius:50%;place-items:center;background:var(--navy);color:var(--lime);font:800 .82rem/1 var(--mono)}
.section-content>h2{max-width:850px;margin-bottom:1.4rem}
.section-content>p,.section-content>.copy-limit{max-width:820px}
.section-grid{display:grid;grid-template-columns:minmax(0,.85fr) minmax(320px,1fr);gap:clamp(1.8rem,4vw,4rem);align-items:start}
.section-grid.reverse{grid-template-columns:minmax(320px,1fr) minmax(0,.85fr)}
.section-grid.reverse .copy-column{order:2}
.meter-grid{grid-template-areas:"copy media" "boundary media"}
.meter-grid .copy-column{grid-area:copy}
.meter-grid>.case-figure{grid-area:media}
.meter-grid>.evidence-boundary{grid-area:boundary}
.meter-grid>.case-figure img{aspect-ratio:auto;object-fit:contain}
.pipe-content{display:grid;grid-template-areas:"media header" "media body";grid-template-columns:minmax(320px,1fr) minmax(0,.85fr);gap:1.25rem clamp(1.8rem,4vw,4rem);align-items:start}
.pipe-content>.case-figure{grid-area:media}
.pipe-copy-header{grid-area:header;min-width:0}
.pipe-copy-body{grid-area:body;min-width:0}
.case-figure{margin:0;overflow:hidden;border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow)}
.case-figure img{width:100%;height:auto}
.case-figure.media-portrait img{aspect-ratio:4/5;object-fit:cover}
.case-figure.media-landscape img{aspect-ratio:16/10;object-fit:cover}
.case-figure.ni02-evidence-card{width:100%;align-self:start}
.case-figure.media-landscape.ni02-evidence-card img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:auto;object-fit:contain;object-position:center}
.evidence-boundary{padding:1.25rem 1.35rem;border-left:4px solid var(--warning-border);border-radius:0 var(--radius-sm) var(--radius-sm) 0;background:var(--warning)}
.evidence-boundary strong{display:block;margin-bottom:.35rem}
.fact-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;margin:2rem 0;background:var(--line)}
.fact-grid div{padding:1.15rem;background:#fff}
.fact-grid>div:last-child:nth-child(odd){grid-column:1/-1}
.fact-grid dt{color:var(--ink-3);font:700 .7rem/1.4 var(--mono);letter-spacing:.04em;text-transform:uppercase}
.fact-grid dd{margin:.35rem 0 0;font-weight:720}
.media-pair,.evidence-triptych,.related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.25rem;margin-top:2rem}
.evidence-triptych{grid-template-columns:repeat(3,minmax(0,1fr))}
.evidence-triptych .case-figure figcaption{min-height:92px}
.related-grid article{padding:1.5rem;border:1px solid var(--line);border-radius:var(--radius);background:#fff}
.related-grid h3{margin-bottom:.55rem}
.case-cta{padding:clamp(4rem,8vw,7rem) 0;background:var(--navy);color:#fff}
.case-cta h2{max-width:800px;color:#fff}
.case-cta p{max-width:700px;color:rgba(255,255,255,.72)}
.case-actions{display:flex;gap:.8rem;flex-wrap:wrap;margin-top:1.5rem}
.case-action{display:inline-flex;min-height:48px;padding:.75rem 1rem;align-items:center;border-radius:var(--radius-sm);background:var(--lime);color:var(--navy);font-weight:780}
.case-action.secondary{border:1px solid rgba(255,255,255,.3);background:transparent;color:#fff}
.public-footer{padding:2rem 0;background:#04151f;color:rgba(255,255,255,.68)}
.public-footer p{margin:0;font-size:.78rem}
.listing-stage{padding:4rem 0}
.listing-card{display:grid;grid-template-columns:minmax(340px,.78fr) minmax(0,1fr);width:min(980px,calc(100% - 40px));margin:0 auto;overflow:hidden;border:1px solid var(--line);border-radius:var(--radius-lg);background:#fff;box-shadow:var(--shadow)}
.listing-card figure{margin:0;background:#fff}
.listing-card figure img{width:100%;height:100%;min-height:560px;object-fit:cover}
.listing-copy{padding:clamp(2rem,5vw,4rem)}
.listing-copy h1{font-size:clamp(2.1rem,4vw,3.5rem)}
.listing-copy .eyebrow{color:var(--blue)}
.review-note{width:min(960px,calc(100% - 40px));margin:1.2rem auto;color:var(--ink-3);font-size:.78rem;text-align:center}
.focus-shell{width:min(1180px,calc(100% - 40px));margin:4rem auto}
.focus-title{margin-bottom:2rem}
.cover-comparison{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.5rem}
.cover-comparison .case-figure img{aspect-ratio:4/5;object-fit:cover}
.review-index{width:min(1050px,calc(100% - 40px));margin:4rem auto}
.review-index h1{font-size:clamp(2.4rem,5vw,4.5rem)}
.review-index ul{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.8rem;padding:0;list-style:none}
.review-index a{display:block;height:100%;padding:1rem 1.15rem;border:1px solid var(--line);border-radius:var(--radius-sm);background:#fff;color:var(--blue);font-weight:760;text-decoration:none}
.reveal-enabled [data-reveal]{--reveal-distance:46px;--reveal-scale:1;--reveal-duration:1000ms;--reveal-delay:0ms;opacity:0;transform:translate3d(0,var(--reveal-distance),0) scale(var(--reveal-scale));transition:opacity var(--reveal-duration) cubic-bezier(.22,1,.36,1) var(--reveal-delay),transform var(--reveal-duration) cubic-bezier(.22,1,.36,1) var(--reveal-delay)}
.reveal-enabled [data-reveal="media"],.reveal-enabled [data-reveal="card"]{--reveal-scale:.945}
.reveal-enabled [data-reveal].is-revealed{opacity:1;transform:translate3d(0,0,0) scale(1)}
@media(max-width:900px){
  .hero-grid{grid-template-areas:"copy" "media" "facts";grid-template-columns:minmax(0,1fr)}
  .section-grid,.section-grid.reverse,.listing-card{grid-template-columns:minmax(0,1fr)}
  .section-grid.reverse .copy-column{order:initial}
  .meter-grid{grid-template-areas:"copy" "media" "boundary"}
  .pipe-content{grid-template-areas:"header" "media" "body";grid-template-columns:minmax(0,1fr)}
  .hero-media{width:min(560px,100%);margin-inline:auto}
  .case-summary-strip{grid-template-columns:1fr}
  .listing-card figure img{min-height:0;aspect-ratio:4/5}
  .evidence-triptych{grid-template-columns:1fr 1fr}
  .evidence-triptych>.evidence-boundary{grid-column:1/-1}
  .media-pair,.related-grid{grid-template-columns:minmax(0,1fr)}
}
@media(max-width:620px){
  .public-header .shell{min-height:76px}.public-logo{width:116px}.public-state{max-width:190px;font-size:.62rem}
  .case-hero{padding-top:3.5rem}.case-hero h1{font-size:clamp(2.55rem,13vw,4rem)}
  .case-section{grid-template-columns:1fr;gap:1rem;padding:3.5rem 0}.section-key{width:42px;height:42px}
  .fact-grid,.media-pair,.evidence-triptych,.related-grid,.cover-comparison,.review-index ul{grid-template-columns:1fr}
  .case-figure.media-landscape img{aspect-ratio:auto}
  .case-actions{display:grid}.case-action{justify-content:center}
  .listing-stage{padding:2rem 0}.listing-card{width:calc(100% - 28px)}.listing-copy{padding:1.35rem}.listing-copy h1{font-size:2rem}
  .reveal-enabled [data-reveal]{--reveal-distance:26px;--reveal-duration:800ms}
}
body.viewport-768 .story-flow{width:100%;max-width:100%;box-sizing:border-box}
body.viewport-768 .story-flow ol{display:flex;width:100%;max-width:100%;min-width:0;margin:0;padding:0 24px;box-sizing:border-box;flex-wrap:nowrap;align-items:center;gap:15px;overflow-x:auto;overflow-y:hidden;overscroll-behavior-inline:contain;scroll-padding-inline:24px;scrollbar-width:none;touch-action:pan-x;-webkit-overflow-scrolling:touch}
body.viewport-768 .story-flow ol::-webkit-scrollbar{display:none}
body.viewport-768 .story-flow li{flex:0 0 auto;gap:8px;white-space:nowrap;font-size:13px;font-weight:500;line-height:1.2}
body.viewport-768 .story-flow li:not(:last-child)::after{font-weight:400;opacity:.65}
body.viewport-768 .public-footer p{font-weight:400}
body:where(.viewport-390,.viewport-360){--shell:calc(100% - 40px);font-size:16px;line-height:1.64}
body.viewport-360{--shell:calc(100% - 36px)}
body:where(.viewport-390,.viewport-360) :where(.review-canvas,.shell,.public-header,.case-hero,.hero-grid,.hero-copy,.hero-media,.case-summary-strip,.case-body,.case-section,.section-content,.section-grid,.copy-column,.pipe-content,.pipe-copy-header,.pipe-copy-body,.fact-grid,.media-pair,.evidence-triptych,.related-grid,.case-figure,.evidence-boundary,.case-cta,.case-actions,.case-action,.public-footer){min-width:0;max-width:100%;box-sizing:border-box}
body:where(.viewport-390,.viewport-360) .public-ribbon{padding:.7rem 1rem;font-size:.62rem;line-height:1.45;letter-spacing:.055em}
body:where(.viewport-390,.viewport-360) .public-header .shell{display:flex;min-height:0;padding:1.2rem 0;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:.7rem}
body:where(.viewport-390,.viewport-360) .public-logo{width:132px;max-width:100%}
body:where(.viewport-390,.viewport-360) .public-state{width:100%;max-width:none;margin:0;font-size:.68rem;line-height:1.5;text-align:left}
body:where(.viewport-390,.viewport-360) .case-hero{padding:3.6rem 0 3.25rem}
body:where(.viewport-390,.viewport-360) .hero-grid{display:grid;grid-template-areas:"copy" "media" "facts";grid-template-columns:minmax(0,1fr);gap:1.75rem;align-items:start}
body:where(.viewport-390,.viewport-360) .hero-copy{width:100%}
body:where(.viewport-390,.viewport-360) .status-chip{display:inline-flex;max-width:100%;margin-bottom:1.25rem;padding:.5rem .65rem;white-space:normal;font-size:.66rem;line-height:1.45}
body.viewport-390 .case-hero h1{width:100%;max-width:none;margin-bottom:1.35rem;font-size:42px;line-height:1.035;overflow-wrap:normal;word-break:normal}
body.viewport-360 .case-hero h1{width:100%;max-width:none;margin-bottom:1.35rem;font-size:39px;line-height:1.04;overflow-wrap:normal;word-break:normal}
body:where(.viewport-390,.viewport-360) .case-hero .lead{width:100%;max-width:none;margin-bottom:0;font-size:16.5px;line-height:1.68}
body:where(.viewport-390,.viewport-360) .hero-media{width:100%;margin:0}
body:where(.viewport-390,.viewport-360) .hero-media img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:auto;object-fit:contain}
body:where(.viewport-390,.viewport-360) .hero-media figcaption,
body:where(.viewport-390,.viewport-360) .case-figure figcaption{width:100%;min-height:0;padding:.9rem 1rem;font-size:13.5px;line-height:1.55;overflow-wrap:normal;word-break:normal}
body:where(.viewport-390,.viewport-360) .case-summary-strip{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:1px;margin:0}
body:where(.viewport-390,.viewport-360) .case-summary-strip div{width:100%;padding:1.05rem}
body:where(.viewport-390,.viewport-360) .case-summary-strip dt{font-size:.68rem}
body:where(.viewport-390,.viewport-360) .case-summary-strip dd{font-size:1rem;line-height:1.5;overflow-wrap:normal;word-break:normal}
body:where(.viewport-390,.viewport-360) .story-flow{position:relative;width:100%;padding:1rem 0 1.25rem}
body:where(.viewport-390,.viewport-360) .story-flow ol{display:flex;width:var(--shell);max-width:var(--shell);gap:.7rem;padding:0 4.8rem 0 0;overflow-x:auto;overscroll-behavior-inline:contain;scrollbar-width:thin}
body:where(.viewport-390,.viewport-360) .story-flow li{flex:0 0 auto;font-size:.74rem}
body:where(.viewport-390,.viewport-360) .story-flow::after{position:absolute;right:18px;bottom:.2rem;padding:.15rem .35rem;background:#fff;color:var(--blue);content:"Swipe →";font:750 .65rem/1.3 var(--mono);letter-spacing:.03em}
body:where(.viewport-390,.viewport-360) .case-body{padding:4rem 0}
body:where(.viewport-390,.viewport-360) .case-section{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:1rem;padding:4rem 0}
body:where(.viewport-390,.viewport-360) .case-section:first-child{padding-top:0}
body:where(.viewport-390,.viewport-360) .section-key{width:42px;height:42px}
body:where(.viewport-390,.viewport-360) .section-content{width:100%}
body:where(.viewport-390,.viewport-360) .section-content>h2,
body:where(.viewport-390,.viewport-360) .section-content>p,
body:where(.viewport-390,.viewport-360) .section-content>.copy-limit{width:100%;max-width:none}
body:where(.viewport-390,.viewport-360) .section-content h2,
body:where(.viewport-390,.viewport-360) .pipe-copy-header h2{width:100%;max-width:none;margin-bottom:1.25rem;font-size:34px;line-height:1.08;overflow-wrap:normal;word-break:normal}
body.viewport-360 .section-content h2,
body.viewport-360 .pipe-copy-header h2{font-size:32px}
body:where(.viewport-390,.viewport-360) .section-content p,
body:where(.viewport-390,.viewport-360) .pipe-copy-body p{width:100%;max-width:none;font-size:16px;line-height:1.68}
body:where(.viewport-390,.viewport-360) .eyebrow{font-size:.74rem;line-height:1.45}
body:where(.viewport-390,.viewport-360) .section-grid,
body:where(.viewport-390,.viewport-360) .section-grid.reverse{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:1.5rem}
body:where(.viewport-390,.viewport-360) .section-grid.reverse .copy-column{order:initial}
body:where(.viewport-390,.viewport-360) .meter-grid{grid-template-areas:"copy" "media" "boundary"}
body:where(.viewport-390,.viewport-360) .pipe-content{display:grid;width:100%;grid-template-areas:"header" "media" "body";grid-template-columns:minmax(0,1fr);gap:1.5rem}
body:where(.viewport-390,.viewport-360) .fact-grid{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:1px;margin:1.75rem 0}
body:where(.viewport-390,.viewport-360) .fact-grid>div{grid-column:auto!important;width:100%;padding:1.05rem}
body:where(.viewport-390,.viewport-360) .fact-grid dd{font-size:1rem;line-height:1.5;overflow-wrap:normal;word-break:normal}
body:where(.viewport-390,.viewport-360) .evidence-boundary{display:block;width:100%;padding:1.25rem 1.25rem;border-left-width:4px;font-size:16px;line-height:1.62;overflow-wrap:normal;word-break:normal}
body:where(.viewport-390,.viewport-360) .case-figure{display:block;width:100%;margin:0}
body:where(.viewport-390,.viewport-360) .case-figure img,
body:where(.viewport-390,.viewport-360) .case-figure.media-portrait img,
body:where(.viewport-390,.viewport-360) .case-figure.media-landscape img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:auto;object-fit:contain}
body:where(.viewport-390,.viewport-360) .case-figure.ni02-evidence-card img{display:block;width:100%;max-width:100%;height:auto;aspect-ratio:auto;object-fit:contain;object-position:center}
body:where(.viewport-390,.viewport-360) .media-pair,
body:where(.viewport-390,.viewport-360) .evidence-triptych,
body:where(.viewport-390,.viewport-360) .related-grid{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:1.15rem;margin-top:1.75rem}
body:where(.viewport-390,.viewport-360) .evidence-triptych>.evidence-boundary{grid-column:auto}
body:where(.viewport-390,.viewport-360) .related-grid article{width:100%;padding:1.35rem}
body:where(.viewport-390,.viewport-360) .check-list{width:100%;padding-left:0}
body:where(.viewport-390,.viewport-360) .check-list li{width:100%;padding-left:2rem;margin-bottom:1rem}
body:where(.viewport-390,.viewport-360) .case-cta{width:100%;padding:4rem 0}
body:where(.viewport-390,.viewport-360) .case-cta h2{width:100%;max-width:none;font-size:34px;line-height:1.08}
body.viewport-360 .case-cta h2{font-size:32px}
body:where(.viewport-390,.viewport-360) .case-cta p{width:100%;max-width:none;font-size:16px}
body:where(.viewport-390,.viewport-360) .case-actions{display:grid;width:100%;grid-template-columns:minmax(0,1fr);gap:.85rem;margin-top:1.5rem}
body:where(.viewport-390,.viewport-360) .case-action{display:flex;width:100%;min-height:48px;padding:.8rem 1rem;justify-content:center;text-align:center}
body:where(.viewport-390,.viewport-360) .public-footer{width:100%;padding:1.6rem 0}
body:where(.viewport-390,.viewport-360) .public-footer p{width:100%;font-size:.74rem;line-height:1.55}
.focus-preview .story-flow,.focus-preview .case-hero,.focus-preview .case-body,.focus-preview .case-cta{display:none}
.focus-preview.focus-story .story-flow{display:block}
.focus-preview .case-body{padding:3.5rem 0}
.focus-preview .case-body .case-section{display:none}
.focus-preview.focus-hero .case-hero,
.focus-preview.focus-cta .case-cta{display:block}
.focus-preview:is(.focus-facts,.focus-meter,.focus-investigation,.focus-suspected,.focus-pipe,.focus-post-repair,.focus-related) .case-body{display:block}
.focus-preview.focus-facts #case-overview,
.focus-preview.focus-meter #meter-system-evidence,
.focus-preview.focus-investigation #investigation-approach,
.focus-preview.focus-suspected #suspected-area-marked,
.focus-preview.focus-pipe #pipe-exposed-repaired,
.focus-preview.focus-post-repair #reinstatement-verification,
.focus-preview.focus-related #related-methods{display:grid;padding-top:0;border-top:0}
@media(prefers-reduced-motion:reduce){
  .reveal-enabled [data-reveal]{opacity:1!important;transform:none!important;transition:none!important}
}

.public-case-preview{background:#dfe5e7}
.public-header{background:#fff}
.public-header .shell.nav-shell{display:flex;min-height:88px;padding:0;align-items:center;justify-content:space-between;flex-direction:row;gap:1.25rem}
.public-header .brand-logo-header{width:150px}
.public-header .mobile-nav-only{display:none}
.public-header .menu-toggle{padding:0;place-items:center;line-height:0;color:var(--ink)}
.public-header .menu-toggle .menu-icon{display:block;width:24px;height:24px;overflow:visible;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.public-header .menu-toggle .menu-icon-close{display:none}
.public-header .menu-toggle[aria-expanded="true"] .menu-icon-open{display:none}
.public-header .menu-toggle[aria-expanded="true"] .menu-icon-close{display:block}
.case-action{text-decoration:none}
.public-footer{padding:2.5rem 0;background:#04151f;color:rgba(255,255,255,.82)}
.public-footer-grid{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:2rem;align-items:start}
.public-footer a{color:#fff}
.public-footer p{margin:.25rem 0;font-size:.82rem}
.listing-card a{color:inherit;text-decoration:none}
.listing-card .text-link{display:inline-flex;margin-top:1rem;color:var(--blue);font-weight:760}
@media(max-width:1120px){
  .public-header .primary-nav.is-open{max-height:calc(100vh - 88px);overflow-x:hidden;overflow-y:auto;overscroll-behavior:contain}
  .public-header .primary-nav>.mobile-nav-only{display:flex}
}
@media(max-width:860px){
  .public-header .primary-nav.is-open{max-height:calc(100vh - 76px)}
}
@media(max-width:620px){
  body:where(.viewport-390,.viewport-360) .public-header .shell.nav-shell{min-height:76px;padding:0;align-items:center;justify-content:space-between;flex-direction:row;gap:1rem}
  .public-header .brand-logo-header{width:104px}
  .public-footer-grid{grid-template-columns:1fr}
  .case-actions{display:grid}.case-action{justify-content:center}
}
