:root {
  color-scheme: light;
  --ink: #111820;
  --ink-strong: #07111b;
  --ink-soft: #34414d;
  --muted: #62717d;
  --line: #d4dde0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --dark-text: #f8fbff;
  --dark-body: rgba(248, 251, 255, 0.88);
  --dark-muted: rgba(226, 237, 246, 0.76);
  --dark-subtle: rgba(214, 228, 239, 0.66);
  --dark-panel: rgba(13, 34, 51, 0.84);
  --dark-panel-strong: rgba(5, 18, 30, 0.9);
  --dark-border: rgba(206, 225, 238, 0.18);
  --dark-border-strong: rgba(255, 255, 255, 0.28);
  --paper: #f3f5f3;
  --paper-warm: #fafaf7;
  --paper-strong: #ffffff;
  --navy: #0f406a;
  --navy-deep: #061827;
  --navy-ink: #02070c;
  --blue-signal: #1b6ca8;
  --yokogawa-yellow: #fff200;
  --green: #3fae49;
  --teal: #00a2ae;
  --focus: #1f6feb;
  --shadow-soft: 0 22px 70px rgba(17, 24, 32, 0.12);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.32);
  --ease-premium: cubic-bezier(0.23, 1, 0.32, 1);
  --content-max: 1180px;
  --wide-max: 1240px;
  --shell-max: 1680px;
  --header-h: 4.45rem;
  --hero-x: clamp(1.5rem, 4vw, 4.5rem);
  --page-x: clamp(1.25rem, 5vw, 5.75rem);
  --content-x: max(var(--page-x), calc((100% - var(--content-max)) / 2));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  background:
    linear-gradient(90deg, var(--navy-deep), var(--navy-deep)) fixed,
    var(--navy-deep);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

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

a {
  color: inherit;
}

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

.skip-link {
  background: var(--paper-strong);
  border: 2px solid var(--focus);
  left: 1rem;
  padding: 0.6rem 0.8rem;
  position: fixed;
  top: 1rem;
  transform: translateY(-150%);
  transition: transform 160ms ease;
  z-index: 30;
}

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

.site-header {
  background: rgba(250, 250, 247, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 24, 32, 0.08);
  margin: 0 auto;
  max-width: var(--shell-max);
  min-height: var(--header-h);
  position: sticky;
  top: 0;
  width: min(100%, var(--shell-max));
  z-index: 20;
}

.header-inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--shell-max);
  min-height: var(--header-h);
  padding: 0 var(--hero-x);
  width: 100%;
}

main,
.site-footer {
  margin-inline: auto;
  max-width: var(--shell-max);
  width: min(100%, var(--shell-max));
}

main {
  background: var(--paper-warm);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
  flex: 1 0 auto;
}

.brand {
  align-items: center;
  display: inline-flex;
  text-decoration: none;
}

.brand-logo {
  height: clamp(2rem, 2.35vw, 2.75rem);
  max-width: min(260px, 56vw);
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  color: var(--ink-soft);
  display: flex;
  font-size: 0.9rem;
  font-weight: 780;
  gap: clamp(0.75rem, 1.55vw, 1.45rem);
  margin-left: auto;
  margin-right: max(0px, calc((min(100vw, var(--shell-max)) - (2 * var(--hero-x)) - var(--content-max)) / 2));
}

.site-nav a {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  min-height: 2.05rem;
  padding: 0.32rem 0;
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  background: var(--yokogawa-yellow);
  bottom: -0.46rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
  width: 100%;
}

.site-nav a:hover {
  color: var(--ink-strong);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav .nav-assessment,
.site-nav .nav-assessment-current {
  background: var(--yokogawa-yellow);
  border: 1px solid #d8cd00;
  box-shadow: 0 9px 20px rgba(17, 24, 32, 0.14);
  color: var(--ink-strong);
  margin-left: clamp(0.1rem, 0.5vw, 0.35rem);
  padding-inline: 0.82rem;
}

.site-nav .nav-assessment::after,
.site-nav .nav-assessment-current::after {
  display: none;
}

.site-nav .nav-assessment:hover,
.site-nav .nav-assessment-current {
  background: #fff76a;
  border-color: var(--ink-strong);
  color: var(--ink-strong);
}

.site-nav .nav-brief-current {
  color: var(--ink-strong);
  font-weight: 900;
}

.site-nav .nav-brief-current::after {
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
  margin-left: auto;
  position: relative;
  z-index: 25;
}

.mobile-nav summary {
  align-items: center;
  background: var(--ink-strong);
  border: 1px solid rgba(17, 24, 32, 0.16);
  border-radius: 999px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 860;
  gap: 0.45rem;
  list-style: none;
  min-height: 2.4rem;
  padding: 0.52rem 0.78rem;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav summary::after {
  border: solid currentColor;
  border-width: 0 2px 2px 0;
  content: "";
  height: 0.42rem;
  margin-top: -0.16rem;
  transform: rotate(45deg);
  transition: transform 160ms ease;
  width: 0.42rem;
}

.mobile-nav[open] summary::after {
  margin-top: 0.18rem;
  transform: rotate(-135deg);
}

.mobile-nav nav {
  background: rgba(250, 250, 247, 0.98);
  border: 1px solid rgba(17, 24, 32, 0.12);
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
  display: grid;
  gap: 0.18rem;
  min-width: min(84vw, 19rem);
  padding: 0.55rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
}

.mobile-nav a {
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 820;
  min-height: 2.55rem;
  padding: 0.58rem 0.72rem;
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(15, 64, 106, 0.08);
  color: var(--ink-strong);
}

.mobile-nav .nav-assessment {
  background: var(--yokogawa-yellow);
  color: var(--ink-strong);
}

.mobile-nav .nav-assessment-current {
  background: var(--yokogawa-yellow);
  color: var(--ink-strong);
}

.mobile-nav .nav-brief-current {
  background: rgba(15, 64, 106, 0.08);
  color: var(--ink-strong);
}

.hero {
  background:
    linear-gradient(180deg, rgba(2, 7, 12, 0.94), rgba(2, 7, 12, 0.98)),
    var(--navy-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 76px 76px;
  content: "";
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  position: absolute;
}

.hero-stack {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: var(--shell-max);
  min-height: clamp(640px, calc(92svh - var(--header-h)), 860px);
  padding: clamp(1.2rem, 2.2vw, 2.2rem) var(--hero-x);
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-lead {
  align-items: center;
  display: grid;
  gap: clamp(2.25rem, 4.2vw, 5.25rem);
  grid-template-columns: minmax(540px, 0.92fr) minmax(520px, 1.08fr);
  width: 100%;
}

.hero .hero-content {
  max-width: 760px;
}

.hero h1 {
  color: #ffffff;
  font-size: clamp(3.05rem, 3.55vw, 3.8rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0.85rem;
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero .hero-copy {
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.13rem);
  line-height: 1.42;
  margin-bottom: 1rem;
  max-width: 720px;
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
  transform: translateX(clamp(1.25rem, 2.1vw, 2.75rem));
  width: 100%;
}

.hero-video-frame {
  aspect-ratio: 16 / 9;
  background: #02070c;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  box-shadow: var(--shadow-dark);
  max-width: min(620px, 48vw);
  overflow: hidden;
  width: 100%;
}

.hero-video-frame.hero-video-large {
  max-height: none;
  max-width: min(100%, 900px);
}

.hero-video-frame iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
}

.video-poster {
  background: #02070c;
  border: 0;
  cursor: pointer;
  display: block;
  height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}

.video-poster::after {
  background: linear-gradient(180deg, rgba(2, 7, 12, 0.02), rgba(2, 7, 12, 0.22));
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.video-poster::before {
  background: linear-gradient(180deg, #02070c 0%, rgba(2, 7, 12, 0.72) 55%, rgba(2, 7, 12, 0) 100%);
  content: "";
  height: clamp(1.55rem, 2.4vw, 2.65rem);
  inset: 0 0 auto;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.video-poster img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.035);
  transform-origin: center center;
  width: 100%;
}

.video-fallback {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  display: flex;
  font-weight: 850;
  inset: 0;
  justify-content: center;
  padding: 1rem;
  position: absolute;
  text-align: center;
  text-decoration: none;
}

.fact-rail {
  align-items: stretch;
  display: grid;
  margin: 0 auto;
  max-width: var(--content-max);
  position: relative;
  width: 100%;
  z-index: 1;
}

.fact-rail {
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
}

.fact-rail span {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  font-weight: 780;
  min-height: 4.1rem;
  padding: 1rem 1.15rem;
}

.fact-rail span:last-child {
  border-right: 0;
}

.hero-message,
.section {
  padding-block: clamp(4.4rem, 7vw, 7rem);
  padding-inline: var(--content-x);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.hero-message {
  background: linear-gradient(180deg, #ffffff, #f8f9f6);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

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

.section-inner {
  margin: 0 auto;
  max-width: var(--content-max);
}

.hero-message-inner,
.workflow-grid,
.kinetic-grid,
.split-grid,
.proof-grid,
.sample-grid,
.contact-grid {
  align-items: center;
  display: grid;
  gap: clamp(2.4rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1fr);
}

.hero-message-inner {
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.62fr);
}

.hero-content,
.workflow-copy,
.kinetic-copy,
.split-grid > *,
.proof-grid > *,
.sample-grid > *,
.contact-grid > *,
.section-heading {
  min-width: 0;
}

.hero-content {
  max-width: 720px;
  position: relative;
}

.hero-content::before {
  background: var(--yokogawa-yellow);
  content: "";
  display: block;
  height: 0.42rem;
  margin-bottom: 1.6rem;
  width: 4.8rem;
}

.resource-type,
.kinetic-panel-title,
.kinetic-view-label {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 880;
  letter-spacing: 0.16em;
  line-height: 1.2;
  margin: 0 0 1.05rem;
  text-transform: uppercase;
}

.eyebrow,
.section-kicker {
  color: var(--navy);
  font-size: clamp(1rem, 1.28vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1.1;
  margin: 0 0 clamp(1.1rem, 1.8vw, 1.65rem);
  text-transform: uppercase;
}

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

h1,
.section h2 {
  color: var(--ink-strong);
  letter-spacing: 0;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.85rem, 4.8vw, 4rem);
  margin-bottom: 1.2rem;
  max-width: 720px;
}

.section h2 {
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  margin-bottom: 1.25rem;
}

.workflow-fit h2 {
  color: #ffffff;
  font-size: clamp(2.25rem, 3.25vw, 3.2rem);
}

.heading-line {
  display: block;
  max-width: 100%;
  text-wrap: balance;
}

.hero-copy,
.section p:not(.section-kicker),
.text-stack p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  text-wrap: pretty;
}

.hero-copy {
  line-height: 1.52;
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.hero-assessment-helper {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
  margin: 0.75rem 0 0;
  max-width: 590px;
  text-wrap: pretty;
}

.hero-actions,
.footer-inner,
.contact-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-actions {
  max-width: 100%;
  width: fit-content;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-flex;
  font-weight: 860;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.8rem 1rem;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

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

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.button:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.mobile-nav summary:focus-visible,
.mobile-nav a:focus-visible,
.email-link:focus-visible,
.video-poster:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.primary {
  background: var(--navy);
  color: #fff;
}

.primary:hover {
  background: var(--navy-deep);
}

.secondary,
.outline {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  color: var(--ink);
}

.ebook {
  background: var(--yokogawa-yellow);
  border-color: var(--ink-strong);
  border-width: 2px;
  box-shadow: 0 16px 34px rgba(17, 24, 32, 0.2);
  color: var(--ink-strong);
}

.ebook:hover {
  background: #fff76a;
  border-color: #fff76a;
  color: var(--ink-strong);
}

.hero-product {
  align-items: center;
  display: flex;
  justify-content: center;
  min-width: 0;
  position: relative;
}

.hero-product::before {
  display: none;
}

.hero-product img {
  filter: drop-shadow(0 34px 34px rgba(17, 24, 32, 0.22));
  height: auto;
  max-width: min(430px, 100%);
  position: relative;
  width: 100%;
}

.workflow-fit {
  background: linear-gradient(180deg, var(--navy-deep), #07111b);
  color: #ffffff;
}

.workflow-fit .workflow-grid {
  gap: clamp(3rem, 6vw, 6.5rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(430px, 1fr);
}

.workflow-copy {
  max-width: 700px;
}

.workflow-fit .section-kicker,
.workflow-fit p {
  color: rgba(255, 255, 255, 0.72);
}

.workflow-board,
.kinetic-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  box-shadow: var(--shadow-dark);
  display: grid;
  gap: 0.9rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  position: relative;
}

.workflow-board {
  background: rgba(2, 7, 12, 0.58);
  border-color: rgba(255, 255, 255, 0.16);
}

.workflow-board::before {
  display: none;
}

.workflow-node {
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  column-gap: 0.9rem;
  display: grid;
  grid-template-columns: 2.35rem minmax(0, 1fr);
  padding: 1rem;
  position: relative;
  z-index: 1;
}

.workflow-core {
  background: rgba(15, 64, 106, 0.22);
  border-color: rgba(255, 242, 0, 0.38);
  box-shadow: inset 4px 0 0 var(--yokogawa-yellow);
}

.node-index {
  align-items: center;
  align-self: start;
  background: var(--yokogawa-yellow);
  border-radius: 50%;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.68rem;
  font-weight: 920;
  grid-row: 1 / span 3;
  height: 2.25rem;
  justify-content: center;
  letter-spacing: 0.04em;
  width: 2.25rem;
}

.workflow-node h3 {
  color: #ffffff;
  font-size: 1.02rem;
  grid-column: 2;
  line-height: 1.2;
  margin-bottom: 0.38rem;
}

.workflow-node p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  grid-column: 2;
  line-height: 1.34;
  margin-bottom: 0;
}

.signal-chart {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  grid-column: 2;
  height: 3.5rem;
  margin: 0.15rem 0 0.55rem;
  overflow: hidden;
  position: relative;
}

.signal-chart::before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  bottom: 0.55rem;
  content: "";
  left: 0.65rem;
  position: absolute;
  right: 0.65rem;
  top: 0.55rem;
}

.signal-chart span {
  border-radius: 999px;
  height: 2px;
  left: 0.8rem;
  position: absolute;
  right: 0.8rem;
  transform-origin: left center;
}

.signal-chart span:nth-child(1) {
  background: var(--yokogawa-yellow);
  top: 1.2rem;
  transform: rotate(5deg);
}

.signal-chart span:nth-child(2) {
  background: var(--green);
  top: 1.72rem;
  transform: rotate(14deg);
}

.signal-chart span:nth-child(3) {
  background: var(--teal);
  top: 2.28rem;
  transform: rotate(-7deg);
}

.intro,
.decision,
.industries,
.resources,
.guardrails {
  background: var(--paper);
}

.kinetic-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(390px, 1fr);
}

.kinetic-grid h2,
.split-grid h2,
.proof-grid h2,
.sample-grid h2,
.contact-grid h2 {
  font-size: clamp(2.25rem, 3.4vw, 3.35rem);
}

.split .split-grid,
.guardrails .split-grid {
  gap: clamp(2.4rem, 4vw, 4.4rem);
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
}

.split-grid .text-stack {
  justify-self: end;
  max-width: 680px;
  width: 100%;
}

.split-grid h2 {
  font-size: clamp(2.25rem, 3.05vw, 3.05rem);
  max-width: 820px;
}

.kinetic-panel {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow-soft);
}

.kinetic-panel-title {
  margin-bottom: 1rem;
}

.kinetic-view {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 0.85fr) minmax(220px, 1fr);
  padding: 1rem;
}

.kinetic-view + .kinetic-view {
  margin-top: 0.9rem;
}

.argen-view {
  border-color: rgba(15, 64, 106, 0.34);
  box-shadow: inset 4px 0 0 var(--navy);
}

.kinetic-view h3 {
  color: var(--ink-strong);
  font-size: 1.03rem;
  line-height: 1.18;
  margin-bottom: 0.45rem;
}

.kinetic-view p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.34;
  margin-bottom: 0;
}

.endpoint-timeline,
.trace-chart {
  align-self: stretch;
  background:
    linear-gradient(90deg, rgba(98, 113, 125, 0.11) 1px, transparent 1px),
    #f8faf9;
  background-size: 3.5rem 100%, auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 126px;
  overflow: hidden;
  position: relative;
}

.endpoint-timeline::before {
  background: rgba(15, 64, 106, 0.24);
  content: "";
  height: 2px;
  left: 1.1rem;
  position: absolute;
  right: 1.1rem;
  top: 50%;
  z-index: 1;
}

.endpoint-timeline::after {
  background: rgba(255, 242, 0, 0.42);
  bottom: calc(50% - 2.18rem);
  content: "";
  left: 35%;
  position: absolute;
  right: 35%;
  top: calc(50% - 2.18rem);
  z-index: 0;
}

.timeline-check {
  background: #ffffff;
  border: 2px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 860;
  padding: 0.35rem 0.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.start-check {
  left: 0.8rem;
}

.end-check {
  right: 0.8rem;
}

.timeline-gap {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 860;
  left: 50%;
  line-height: 1.15;
  max-width: 8.5rem;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: calc(50% - 3.75rem);
  transform: translateX(-50%);
  z-index: 2;
}

.trace-chart {
  min-height: 156px;
}

.trace-chart::before {
  border-bottom: 2px solid rgba(17, 24, 32, 0.28);
  border-left: 2px solid rgba(17, 24, 32, 0.28);
  bottom: 2.15rem;
  content: "";
  left: 2rem;
  position: absolute;
  right: 1rem;
  top: 2rem;
}

.trace-axis {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  position: absolute;
  text-transform: uppercase;
}

.y-axis {
  background: #f8faf9;
  left: 2.35rem;
  padding-right: 0.35rem;
  top: 0.65rem;
  z-index: 2;
}

.x-axis {
  bottom: 0.5rem;
  right: 1rem;
}

.trace-svg {
  bottom: 2.22rem;
  left: 2.05rem;
  position: absolute;
  right: 1.15rem;
  top: 2.1rem;
}

.trace-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

.trace-path-baseline {
  stroke: var(--navy);
}

.trace-path-divergent {
  stroke: var(--teal);
}

.trace-marker {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yokogawa-yellow);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
  padding: 0.38rem 0.42rem;
  position: absolute;
  text-transform: uppercase;
}

.onset-marker {
  left: 37%;
  top: 43%;
}

.decision-marker {
  right: 1rem;
  top: 25%;
}

.split {
  background: var(--paper-warm);
}

.text-stack {
  align-self: center;
  display: grid;
  gap: 1.35rem;
}

.text-stack p {
  margin-bottom: 0;
}

.section-heading {
  max-width: 880px;
}

.uses .section-heading,
.industries .section-heading {
  max-width: 1160px;
}

.uses h2,
.industries h2 {
  font-size: clamp(2.5rem, 4.05vw, 3.9rem);
}

@media (min-width: 1121px) {
  .uses #applications-title .heading-line,
  .industries #industries-title .heading-line {
    white-space: nowrap;
  }

  .logo-proof-heading .heading-line {
    white-space: nowrap;
  }
}

.card-grid,
.use-grid,
.industry-grid,
.resource-grid {
  display: grid;
  gap: 0.9rem;
  grid-auto-rows: 1fr;
  margin-top: 1.8rem;
}

.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.use-grid {
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.use-card,
.industry-card,
.resource-card,
.sample-panel,
.contact-panel {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(17, 24, 32, 0.06);
}

.info-card,
.use-card,
.industry-card,
.resource-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.1rem 1.15rem;
}

.use-card {
  align-items: start;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 4rem minmax(0, 1fr);
  padding: 1rem;
}

.use-icon {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  border: 0;
  color: var(--yokogawa-yellow);
  display: inline-flex;
  justify-content: center;
  width: 4rem;
}

.use-icon svg {
  height: 2.5rem;
  overflow: visible;
  width: 2.5rem;
}

.use-icon path,
.use-icon circle,
.use-icon rect {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.45;
}

.use-card-copy {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.info-card {
  border-top: 4px solid var(--navy);
}

.info-card:nth-child(4) {
  border-top-color: var(--yokogawa-yellow);
}

.info-card h3,
.use-card h3,
.industry-card h3,
.resource-card h3 {
  color: var(--ink-strong);
  font-size: 1.08rem;
  line-height: 1.24;
  margin-bottom: 0.75rem;
}

.use-card h3 {
  margin-bottom: 0;
}

.info-card p,
.use-card p,
.industry-card p,
.resource-card p:not(.resource-type) {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.36;
  margin-bottom: 0;
}

.industry-card {
  border-top: 4px solid var(--navy);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  padding: clamp(1.2rem, 2vw, 1.55rem);
}

.service-card {
  border-top-color: var(--yokogawa-yellow);
}

.industry-label {
  color: var(--navy) !important;
  font-size: 0.7rem !important;
  font-weight: 880;
  letter-spacing: 0.14em;
  line-height: 1.15 !important;
  margin-bottom: 0.8rem !important;
  text-transform: uppercase;
}

.industry-card a,
.industry-page-card a {
  color: var(--navy);
  font-weight: 850;
  margin-top: 0;
  padding-top: 1.1rem;
  text-decoration: none;
}

.industry-card a:hover,
.industry-page-card a:hover {
  text-decoration: underline;
}

.logo-proof {
  background: #ffffff;
  border-block: 1px solid var(--line);
  padding: clamp(3.4rem, 6vw, 5rem) var(--content-x);
}

.logo-proof-heading {
  margin: 0 auto clamp(2rem, 3.5vw, 3rem);
  max-width: 1180px;
  text-align: center;
}

.logo-proof-heading h2 {
  color: var(--ink-strong);
  font-size: clamp(2.55rem, 3.7vw, 3.65rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
}

.client-logo-grid {
  align-items: center;
  display: grid;
  gap: clamp(1.2rem, 2.6vw, 2.2rem) clamp(1.7rem, 4vw, 3.2rem);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1040px;
}

.client-logo {
  align-items: center;
  display: flex;
  grid-column: span 2;
  justify-content: center;
  min-height: clamp(3.4rem, 5.5vw, 4.7rem);
  padding: 0.25rem;
}

.client-logo img {
  filter: grayscale(1) brightness(0) invert(1);
  max-height: clamp(2.1rem, 3.35vw, 2.95rem);
  max-width: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.client-logo--flagship img {
  max-height: clamp(2.45rem, 4vw, 3.45rem);
  opacity: 0.88;
}

.client-logo--bms img {
  max-height: clamp(2.8rem, 4.65vw, 4rem);
  max-width: 100%;
}

.client-logo--merck-serono img {
  max-height: clamp(3rem, 5vw, 4.45rem);
  max-width: 100%;
}

.sample-test {
  background: linear-gradient(180deg, #07111b, var(--navy-deep));
  color: #ffffff;
}

.sample-test h2,
.sample-test .section-kicker {
  color: #ffffff;
}

.sample-test .section-kicker {
  color: var(--yokogawa-yellow);
}

.sample-panel {
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.35rem, 2.5vw, 2rem);
}

.sample-panel p {
  color: var(--ink-soft);
  margin-bottom: 0;
}

.sample-steps {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-steps span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yokogawa-yellow);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 860;
  line-height: 1.25;
  min-height: 4.1rem;
  padding: 0.8rem;
}

.resource-heading {
  align-items: end;
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) auto;
}

.resource-heading h2 {
  margin-bottom: 0;
}

.resource-card a {
  color: var(--navy);
  display: inline-flex;
  line-height: 1.15;
  align-self: flex-start;
  font-weight: 850;
  margin-top: auto;
  padding-top: 1.1rem;
  text-decoration: none;
}

.resource-card a:hover {
  text-decoration: underline;
}

.resource-footer {
  display: flex;
  margin-top: 1.1rem;
}

.resource-footer .ebook {
  min-height: 3.55rem;
  padding-inline: 1.45rem;
}

.section.proof {
  background: #ffffff;
}

.uses {
  background: var(--paper-warm);
  padding-top: clamp(1.5rem, 3vw, 2.7rem);
}

.guardrails {
  background-color: var(--paper);
}

.contact {
  background: linear-gradient(180deg, var(--navy-deep), #02070c);
  color: #ffffff;
}

.contact h2,
.contact .section-kicker {
  color: #ffffff;
}

.contact .section-kicker {
  color: var(--yokogawa-yellow);
}

.contact-panel {
  background: rgba(255, 255, 255, 0.96);
  border-left: 4px solid var(--yokogawa-yellow);
  box-shadow: var(--shadow-dark);
  justify-self: start;
  max-width: 680px;
  padding: clamp(1.15rem, 2.2vw, 1.55rem);
}

.contact-panel p {
  color: var(--ink-soft);
  line-height: 1.28;
  margin-bottom: 1rem;
  max-width: 560px;
}

.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  flex: 0 0 auto;
  padding: 1.4rem var(--content-x);
}

.footer-inner {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 0 auto;
  max-width: var(--content-max);
  width: 100%;
}

.footer-link {
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.plain-content {
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(3rem, 8vw, 7rem) 4vw;
}

.plain-brand {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: inline-flex;
  margin-bottom: 3rem;
  padding: 0.55rem 0.8rem;
}

.plain-content h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: none;
}

.plain-content p {
  color: var(--ink-soft);
  font-size: 1.1rem;
}

@media (max-width: 1120px) {
  :root {
    --page-x: clamp(1rem, 4vw, 2rem);
  }

  .hero-message-inner,
  .hero-lead,
  .workflow-grid,
  .kinetic-grid,
  .split-grid,
  .proof-grid,
  .sample-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-lead {
    grid-template-columns: 1fr;
  }

  .workflow-fit .workflow-grid {
    gap: clamp(2rem, 5vw, 3rem);
    grid-template-columns: 1fr;
  }

  .split .split-grid,
  .guardrails .split-grid {
    grid-template-columns: 1fr;
  }

  .hero-product img {
    max-width: min(460px, 88vw);
  }

  .hero .hero-content {
    max-width: 880px;
  }

  .hero-visual {
    justify-content: center;
    transform: none;
  }

  .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .hero-title-line::after {
    content: " ";
  }

  .hero-video-frame {
    max-width: none;
  }

  .fact-rail,
  .card-grid,
  .use-grid,
  .industry-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resource-heading {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .sample-steps {
    grid-template-columns: 1fr;
  }

  .industry-hero-grid,
  .industry-split,
  .industry-cta-box {
    grid-template-columns: 1fr;
  }

  .industry-cta-box .button {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 4.15rem;
  }

  .header-inner {
    min-height: var(--header-h);
    padding-bottom: 0.55rem;
    padding-top: 0.55rem;
  }

  .brand-logo {
    height: 2.05rem;
    max-width: min(210px, 64vw);
  }

  .site-nav {
    display: none;
    margin-right: 0;
  }

  .mobile-nav {
    display: block;
  }
}

@media (max-width: 620px) {
  .hero-stack {
    min-height: auto;
    padding: 1.2rem var(--hero-x) 1.6rem;
  }

  .hero-lead {
    gap: 1.1rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.05rem);
    line-height: 0.98;
  }

  .hero .hero-copy {
    font-size: 1rem;
    line-height: 1.45;
    margin-bottom: 1.15rem;
  }

  h1,
  .section h2,
  .workflow-fit h2 {
    font-size: clamp(1.78rem, 11vw, 2.35rem);
    line-height: 1.04;
  }

  .heading-line {
    white-space: normal;
  }

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

  .contact-actions {
    width: 100%;
  }

  .button {
    min-height: 2.75rem;
    padding: 0.68rem 0.9rem;
  }

  .hero-product img {
    max-width: min(310px, 86vw);
  }

  .hero-video-frame {
    box-shadow: none;
  }

  .hero-video-frame.hero-video-large {
    max-width: 100%;
  }

  .contact-panel {
    box-shadow: none;
  }

  .fact-rail,
  .card-grid,
  .use-grid,
  .industry-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .logo-proof-heading {
    text-align: left;
  }

  .logo-proof-heading h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.35rem);
    line-height: 1.04;
  }

  .industry-hero-actions {
    width: 100%;
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo {
    grid-column: auto;
  }

  .industry-stat-strip,
  .industry-page-grid {
    grid-template-columns: 1fr;
  }

  .industry-hero {
    padding-top: clamp(2.2rem, 8vw, 3rem);
  }

  .industry-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.25rem);
    line-height: 1.02;
  }

  .kinetic-view {
    grid-template-columns: 1fr;
  }

  .endpoint-timeline,
  .trace-chart {
    min-height: 136px;
  }

  .fact-rail span {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    font-size: 0.9rem;
    min-height: 3.25rem;
    padding: 0.75rem 1rem;
  }

  .fact-rail span:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    align-items: flex-start;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (max-width: 360px) {
  .site-nav {
    font-size: 0.68rem;
  }

  h1,
  .section h2,
  .workflow-fit h2 {
    font-size: 1.56rem;
  }
}

.hero-message,
.intro,
.decision,
.resources,
.guardrails {
  background-image: none !important;
}

.workflow-fit {
  background: linear-gradient(180deg, var(--navy-deep), #07111b) !important;
}

.hero-product::before,
.workflow-board::before {
  display: none !important;
}

.ebook,
.ebook:visited {
  background: var(--yokogawa-yellow);
  border-color: var(--ink-strong);
  border-width: 2px;
  box-shadow: 0 16px 34px rgba(17, 24, 32, 0.2);
  color: var(--ink-strong);
}

.ebook:hover {
  background: #fff76a;
  border-color: #fff76a;
  color: var(--ink-strong);
}

.signal-chart span {
  background: transparent !important;
  border-top: 3px solid currentColor;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  height: 2.45rem;
  left: 0.95rem;
  right: 0.75rem;
  transform-origin: center;
}

.signal-chart span:nth-child(1) {
  color: var(--yokogawa-yellow);
  top: 1.05rem;
  transform: rotate(3deg);
}

.signal-chart span:nth-child(2) {
  color: var(--green);
  top: 1.38rem;
  transform: rotate(18deg);
}

.signal-chart span:nth-child(3) {
  color: var(--teal);
  top: 1.7rem;
  transform: rotate(-9deg);
}

.endpoint-timeline,
.trace-chart {
  background: #f8faf9 !important;
  background-size: auto !important;
}

.endpoint-timeline::after {
  bottom: calc(50% - 2.18rem);
  left: 35%;
  right: 35%;
  top: calc(50% - 2.18rem);
}

.timeline-gap {
  background: rgba(248, 250, 249, 0.9);
  border-radius: 4px;
  left: 50%;
  max-width: 7.8rem;
  padding: 0.16rem 0.32rem;
  top: calc(50% - 3.75rem);
}

.industry-page {
  background: var(--paper-warm);
}

.industry-hero,
.industry-band,
.industry-cta {
  padding-inline: var(--content-x);
}

.industry-hero {
  background: linear-gradient(180deg, #ffffff, #f8f9f6);
  padding-block: clamp(3.4rem, 7vw, 6.5rem) clamp(2.6rem, 5vw, 4.6rem);
}

.industry-hero-grid {
  align-items: end;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3.4rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
}

.industry-hero h1 {
  color: var(--ink-strong);
  font-size: clamp(3rem, 6vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.96;
  margin-bottom: 1.1rem;
  max-width: 900px;
}

.industry-hero-copy {
  color: var(--ink-soft);
  font-size: clamp(1.12rem, 1.45vw, 1.28rem);
  line-height: 1.55;
  margin-bottom: 0;
  max-width: 760px;
}

.industry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.industry-hero-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yokogawa-yellow);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.industry-hero-panel p {
  color: var(--muted);
  margin: 0;
}

.industry-stat-strip {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

.industry-stat-strip span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 820;
  min-height: 4.8rem;
  padding: 1rem;
}

.industry-band {
  background: var(--paper);
  padding-block: clamp(3rem, 5vw, 4.8rem);
}

.industry-band.alt {
  background: #ffffff;
}

.industry-band.dark {
  background: linear-gradient(180deg, var(--navy-deep), #07111b);
  color: #ffffff;
}

.industry-band.dark h2,
.industry-band.dark .section-kicker {
  color: #ffffff;
}

.industry-band.dark .section-kicker {
  color: var(--yokogawa-yellow);
}

.industry-band.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.industry-split {
  align-items: start;
  display: grid;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
}

.industry-band h2 {
  color: var(--ink-strong);
  font-size: clamp(2.25rem, 4vw, 4.1rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 1rem;
}

.industry-page-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-page-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(17, 24, 32, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 12rem;
  padding: clamp(1.15rem, 2vw, 1.45rem);
}

.industry-band.dark .industry-page-card {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.industry-page-card h3 {
  color: var(--ink-strong);
  font-size: 1.1rem;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}

.industry-band.dark .industry-page-card h3 {
  color: #ffffff;
}

.industry-page-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.42;
  margin-bottom: 0;
}

.case-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--navy);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.case-panel h3 {
  color: var(--ink-strong);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.16;
  margin-bottom: 0.8rem;
}

.case-panel p {
  color: var(--ink-soft);
}

.case-list {
  display: grid;
  gap: 0.65rem;
  margin: 1.2rem 0 0;
  padding: 0;
}

.case-list li {
  background: #f8faf9;
  border: 1px solid var(--line);
  border-left: 4px solid var(--yokogawa-yellow);
  border-radius: 4px;
  color: var(--ink-soft);
  font-weight: 720;
  list-style: none;
  padding: 0.8rem 0.9rem;
}

.industry-cta {
  background: var(--paper-warm);
  padding-block: clamp(3rem, 5vw, 5rem);
}

.industry-cta-box {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(1.35rem, 2.8vw, 2rem);
}

.industry-cta-box h2 {
  color: var(--ink-strong);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.02;
  margin-bottom: 0.6rem;
}

.industry-cta-box p {
  color: var(--muted);
  margin: 0;
}

.resource-page {
  background: var(--paper-warm);
}

.resource-hero,
.resource-band {
  padding-inline: var(--content-x);
}

.resource-hero {
  background: linear-gradient(180deg, #ffffff, #f8f9f6);
  padding-block: clamp(1rem, 2vw, 1.8rem) clamp(2rem, 3.8vw, 3rem);
}

.resource-hero-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  grid-template-columns: minmax(420px, 0.95fr) minmax(520px, 1.05fr);
}

.resource-copy-card {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: clamp(1rem, 2vw, 1.8rem);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  margin-top: clamp(0.9rem, 1.8vw, 1.35rem);
  padding: clamp(1.15rem, 2.2vw, 1.85rem);
}

.resource-copy h1,
.lead-form-card h1 {
  color: var(--ink-strong);
  font-size: clamp(2.45rem, 4.4vw, 4.85rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 0.65rem;
  max-width: 14ch;
}

.resource-copy h2 {
  color: var(--ink-strong);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0.8rem;
  max-width: 18ch;
}

.lead-form-card h1 {
  font-size: clamp(1.95rem, 2.35vw, 2.65rem);
  max-width: 16ch;
}

.resource-copy p,
.lead-form-card p,
.resource-band p {
  color: var(--muted);
}

.resource-subtitle {
  color: var(--ink-soft) !important;
  font-size: clamp(1.2rem, 1.65vw, 1.6rem);
  font-weight: 780;
  line-height: 1.18;
  margin-bottom: 0.8rem;
  max-width: 24ch;
}

.resource-callout {
  background: rgba(255, 242, 0, 0.22);
  border-left: 4px solid var(--yokogawa-yellow);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  line-height: 1.45;
  margin-top: 0;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.brief-preview {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  display: flex;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(0.55rem, 1vw, 0.8rem);
  width: 100%;
}

.brief-preview img {
  border: 1px solid rgba(15, 64, 106, 0.12);
  border-radius: 4px;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  width: 100%;
}

.lead-form-card {
  align-self: stretch;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  padding: clamp(0.95rem, 1.55vw, 1.35rem);
  width: 100%;
}

.lead-form-card h2 {
  color: var(--ink-strong);
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0.18rem 0 0.48rem;
}

.field-help {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 680;
  line-height: 1.35;
}

.lead-form {
  display: grid;
  gap: 0.62rem 0.82rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0.72rem;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-wide,
.form-actions-row {
  grid-column: 1 / -1;
}

.field {
  color: var(--ink-soft);
  display: grid;
  gap: 0.32rem;
  font-size: 0.82rem;
  font-weight: 820;
}

.hp-field {
  display: none !important;
}

.field input,
.field select,
.field textarea {
  appearance: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-strong);
  font-size: 0.92rem;
  font-weight: 650;
  min-height: 2.35rem;
  padding: 0.52rem 0.66rem;
  width: 100%;
}

.field textarea {
  line-height: 1.4;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(31, 111, 235, 0.18);
  outline-offset: 0;
}

.checkbox-field {
  align-items: start;
  color: var(--ink-soft);
  display: grid;
  font-size: 0.78rem;
  font-weight: 720;
  gap: 0.65rem;
  grid-template-columns: auto minmax(0, 1fr);
  line-height: 1.4;
}

.checkbox-field input {
  accent-color: var(--navy);
  height: 1.05rem;
  margin-top: 0.15rem;
  width: 1.05rem;
}

.lead-form[aria-busy="true"] {
  opacity: 0.82;
}

.form-note,
.form-status {
  font-size: 0.78rem;
  line-height: 1.4;
  margin-bottom: 0;
}

.form-status[data-state="success"] {
  color: var(--navy);
  font-weight: 820;
}

.form-status[data-state="error"] {
  color: #8a1f11;
  font-weight: 820;
}

.form-actions-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

.form-note a {
  color: var(--navy);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-confirmation {
  background: rgba(15, 64, 106, 0.07);
  border: 1px solid rgba(15, 64, 106, 0.16);
  border-radius: 6px;
  margin-top: 1rem;
  padding: 1rem;
}

.download-confirmation h3 {
  color: var(--ink-strong);
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.resource-band {
  background: var(--paper);
  padding-block: clamp(2rem, 4vw, 3.35rem);
}

.resource-band-preview {
  background: #ffffff;
}

.resource-band h2 {
  color: var(--ink-strong);
  font-size: clamp(2.2rem, 3.8vw, 4.15rem);
  letter-spacing: 0;
  line-height: 0.98;
  margin-bottom: 1rem;
  max-width: 760px;
}

.learning-list {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.learning-list article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 12rem;
  padding: 1.25rem;
}

.learning-list h3 {
  color: var(--ink-strong);
  font-size: 1.08rem;
  line-height: 1.22;
  margin-bottom: 0.7rem;
}

.resource-band-dark {
  background: linear-gradient(180deg, var(--navy-deep), #07111b);
  color: #ffffff;
}

.resource-band-dark .section-kicker,
.resource-band-dark h2 {
  color: #ffffff;
}

.resource-band-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.resource-split,
.brief-cta-strip {
  align-items: center;
  display: grid;
  gap: clamp(1.15rem, 2.8vw, 2.4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
}

.brief-cta-strip {
  align-items: start;
  grid-template-columns: minmax(0, 820px);
}

.brief-cta-strip .button {
  margin-top: 1rem;
  justify-self: start;
}

.resource-figure {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  margin: 0;
  overflow: hidden;
  padding: clamp(0.55rem, 1vw, 0.8rem);
}

.resource-figure img {
  border: 1px solid rgba(15, 64, 106, 0.12);
  border-radius: 4px;
  width: 100%;
}

.resource-figure figcaption {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1.35;
  margin-top: 0.6rem;
}

.featured-resource-card {
  border-color: rgba(15, 64, 106, 0.28);
  box-shadow: inset 4px 0 0 var(--yokogawa-yellow);
}

@media (max-width: 1120px) {
  .resource-hero-grid,
  .resource-copy-card,
  .resource-split,
  .brief-cta-strip {
    grid-template-columns: 1fr;
  }

  .industry-hero-grid,
  .industry-split,
  .industry-cta-box {
    grid-template-columns: 1fr;
  }

  .brief-preview {
    max-width: 560px;
    min-height: auto;
  }

  .brief-preview img {
    height: auto;
    object-fit: contain;
  }

  .brief-cta-strip .button {
    justify-self: start;
  }

  .industry-cta-box .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .lead-form,
  .form-grid,
  .learning-list,
  .industry-stat-strip,
  .industry-page-grid {
    grid-template-columns: 1fr;
  }

  .field-wide,
  .form-actions-row {
    grid-column: auto;
  }

  .resource-copy h1,
  .lead-form-card h1 {
    max-width: none;
  }

  .industry-hero {
    padding-top: clamp(2.2rem, 8vw, 3rem);
  }

  .industry-hero h1 {
    font-size: clamp(2rem, 8.2vw, 2.25rem);
    line-height: 1.02;
  }

  .industry-hero-copy {
    font-size: 1rem;
    line-height: 1.5;
  }
}

/* Yokogawa dark-blue field theme */
body,
main,
.resource-page,
.industry-page {
  background: var(--navy-deep);
  color: #ffffff;
}

main {
  background: var(--navy-deep);
}

.hero-message,
.section,
.uses,
.intro,
.decision,
.industries,
.resources,
.guardrails,
.split,
.section.proof,
.logo-proof,
.industry-hero,
.industry-band,
.industry-band.alt,
.industry-cta,
.resource-hero,
.resource-band,
.resource-band-preview,
.plain-page {
  background:
    linear-gradient(180deg, rgba(15, 64, 106, 0.48), rgba(6, 24, 39, 0.96)),
    var(--navy-deep) !important;
  color: #ffffff;
}

.hero-message {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

h1,
.section h2,
.logo-proof-heading h2,
.industry-hero h1,
.industry-band h2,
.industry-cta-box h2,
.resource-band h2,
.plain-content h1 {
  color: #ffffff;
}

.hero-copy,
.kinetic-copy > p:not(.section-kicker),
.workflow-copy > p:not(.section-kicker),
.resource-heading p:not(.section-kicker),
.text-stack p,
.industry-hero-copy,
.resource-band p,
.plain-content p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.eyebrow,
.section-kicker,
.resource-type,
.kinetic-panel-title,
.kinetic-view-label,
.industry-label {
  color: var(--yokogawa-yellow) !important;
}

.hero-product img {
  filter: drop-shadow(0 34px 40px rgba(0, 0, 0, 0.42));
}

.info-card,
.use-card,
.industry-card,
.resource-card,
.industry-page-card {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.16);
}

.info-card h3,
.use-card h3,
.industry-card h3,
.resource-card h3,
.industry-page-card h3 {
  color: #ffffff;
}

.info-card p,
.use-card p,
.industry-card p,
.resource-card p:not(.resource-type),
.industry-page-card p {
  color: rgba(255, 255, 255, 0.82);
}

.industry-card a,
.industry-page-card a,
.resource-card a {
  color: var(--yokogawa-yellow);
}

.logo-proof {
  border-color: rgba(255, 255, 255, 0.14);
}

.secondary,
.outline {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: #ffffff;
}

.secondary:hover,
.outline:hover {
  background: rgba(255, 255, 255, 0.14);
}

.industry-hero-panel,
.industry-stat-strip span,
.case-panel,
.industry-cta-box,
.resource-copy-card,
.brief-preview,
.lead-form-card,
.learning-list article,
.resource-figure,
.kinetic-panel,
.kinetic-view,
.sample-panel,
.download-confirmation {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(212, 221, 224, 0.92);
  color: var(--ink-strong);
}

.industry-hero-panel p,
.industry-stat-strip span,
.case-panel p,
.case-list li,
.industry-cta-box p,
.resource-copy-card p,
.resource-copy p,
.resource-subtitle,
.resource-callout,
.field-help,
.lead-form-card p,
.lead-form-card .field,
.learning-list article p,
.resource-figure figcaption,
.kinetic-panel p,
.kinetic-view p,
.sample-panel p,
.download-confirmation p {
  color: var(--ink-soft) !important;
}

.plain-content .secondary {
  color: #ffffff !important;
}

.industry-hero-panel strong,
.case-panel h3,
.case-list li,
.industry-cta-box h2,
.resource-copy h1,
.resource-copy h2,
.resource-copy-card h1,
.resource-copy-card h2,
.lead-form-card h1,
.lead-form-card h2,
.learning-list h3,
.kinetic-panel-title,
.kinetic-view h3,
.sample-panel h3,
.download-confirmation h3 {
  color: var(--ink-strong) !important;
}

.kinetic-panel > .kinetic-panel-title {
  color: var(--dark-text) !important;
}

.kinetic-panel .kinetic-view-label {
  color: var(--navy) !important;
}

.case-list li,
.resource-callout,
.download-confirmation {
  background: rgba(255, 242, 0, 0.14);
}

.field input,
.field select,
.field textarea {
  background: #ffffff;
  color: var(--ink-strong);
}

.form-note,
.form-status {
  color: var(--ink-soft);
}

.contact-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(2, 13, 22, 0.5);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: var(--yokogawa-yellow);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: #ffffff;
}

.contact-panel p {
  color: rgba(255, 255, 255, 0.8) !important;
}

.contact-panel .primary {
  background: var(--yokogawa-yellow);
  border-color: var(--yokogawa-yellow);
  color: var(--ink-strong);
}

.contact-panel .primary:hover {
  background: #fff76a;
  border-color: #fff76a;
  color: var(--ink-strong);
}

.contact-panel .outline {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.contact-panel .outline:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.46);
  color: #ffffff;
}

.endpoint-timeline,
.trace-chart {
  background: #f8faf9 !important;
}

/* Premium UI branch: instrument-led dark system */
body {
  color: var(--dark-text);
}

.hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(0, 162, 174, 0.13), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(255, 242, 0, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(2, 7, 12, 0.96), rgba(3, 12, 20, 0.98) 52%, var(--navy-deep)),
    var(--navy-ink);
}

.hero::before {
  opacity: 0.13;
}

.hero-lead {
  gap: clamp(2.25rem, 3.6vw, 4.25rem);
  grid-template-columns: minmax(560px, 0.92fr) minmax(560px, 1.08fr);
}

.hero .hero-content {
  max-width: 840px;
}

.hero h1 {
  color: var(--dark-text);
  font-size: clamp(3.45rem, 4.35vw, 5.15rem);
  line-height: 0.96;
  margin-bottom: 1rem;
  max-width: 13.2ch;
}

.hero .hero-copy {
  color: var(--dark-body);
  font-size: clamp(1.06rem, 1.22vw, 1.22rem);
  line-height: 1.45;
  max-width: 760px;
}

.hero-proof-strip {
  border: 1px solid var(--dark-border);
  border-left: 4px solid var(--yokogawa-yellow);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.15rem, 1.9vw, 1.65rem);
  max-width: 760px;
}

.hero-proof-strip span {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border-right: 1px solid var(--dark-border);
  color: var(--dark-body);
  display: flex;
  font-size: 0.79rem;
  font-weight: 780;
  line-height: 1.25;
  min-height: 3.65rem;
  padding: 0.72rem 0.82rem;
}

.hero-proof-strip span:last-child {
  border-right: 0;
}

.hero-proof-strip strong {
  color: var(--yokogawa-yellow);
  font-size: 1.12rem;
  line-height: 1;
  margin-right: 0.35rem;
}

.instrument-stage {
  isolation: isolate;
  max-width: 950px;
  padding: clamp(0.6rem, 1.25vw, 1.15rem);
  position: relative;
  width: 100%;
}

.instrument-stage::before {
  background:
    linear-gradient(90deg, rgba(255, 242, 0, 0.85), rgba(0, 162, 174, 0.05)),
    rgba(255, 255, 255, 0.1);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 18%;
  top: 0;
  z-index: 2;
}

.instrument-stage::after {
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.instrument-stage .hero-video-frame {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.44), 0 0 0 1px rgba(255, 255, 255, 0.03);
  max-width: none;
}

.hero-signal-panel {
  background:
    linear-gradient(180deg, rgba(7, 17, 27, 0.94), rgba(5, 18, 30, 0.96)),
    var(--navy-deep);
  border: 1px solid var(--dark-border-strong);
  border-left: 4px solid var(--yokogawa-yellow);
  bottom: clamp(-1rem, -1.2vw, -0.45rem);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.42);
  left: clamp(-0.85rem, -1.4vw, -0.4rem);
  min-height: 9rem;
  padding: 0.8rem;
  pointer-events: none;
  position: absolute;
  width: min(22rem, 42%);
  z-index: 4;
}

.signal-panel-header,
.signal-legend {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.signal-panel-header span,
.signal-legend span {
  color: var(--dark-muted);
  font-size: 0.64rem;
  font-weight: 860;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-panel-header span:first-child {
  color: var(--dark-text);
}

.hero-signal-panel svg {
  height: 5.9rem;
  margin: 0.35rem 0 0.25rem;
  width: 100%;
}

.panel-gridline {
  fill: none;
  opacity: 0.38;
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.panel-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.panel-trace-a {
  stroke: var(--yokogawa-yellow);
}

.panel-trace-b {
  stroke: var(--teal);
}

.panel-trace-c {
  stroke: #79d0ff;
}

.hero-sample-rail {
  display: grid;
  gap: 0.28rem;
  grid-template-columns: repeat(8, 1fr);
  pointer-events: none;
  position: absolute;
  right: clamp(0.7rem, 1.4vw, 1.25rem);
  top: -2.05rem;
  width: min(22rem, 52%);
  z-index: 4;
}

.hero-sample-rail span {
  align-items: center;
  background: rgba(2, 7, 12, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--dark-body);
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 900;
  height: 1.65rem;
  justify-content: center;
}

.hero-sample-rail span:nth-child(3),
.hero-sample-rail span:nth-child(6) {
  border-color: rgba(255, 242, 0, 0.72);
  color: var(--yokogawa-yellow);
}

.button {
  border-radius: 4px;
  transition: background 160ms var(--ease-premium), border-color 160ms var(--ease-premium), color 160ms var(--ease-premium), transform 160ms var(--ease-premium), box-shadow 160ms var(--ease-premium);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.primary,
.ebook,
.contact-panel .primary {
  box-shadow: 0 15px 34px rgba(0, 0, 0, 0.26);
}

.secondary,
.outline {
  backdrop-filter: blur(16px);
}

.section {
  position: relative;
}

.section::before {
  background: linear-gradient(90deg, rgba(255, 242, 0, 0.18), rgba(0, 162, 174, 0.06), transparent);
  content: "";
  height: 1px;
  left: var(--content-x);
  opacity: 0.8;
  position: absolute;
  right: var(--content-x);
  top: 0;
}

.hero-message,
.section,
.uses,
.intro,
.decision,
.industries,
.resources,
.guardrails,
.split,
.section.proof,
.logo-proof,
.evidence-console {
  background:
    linear-gradient(180deg, rgba(15, 64, 106, 0.45), rgba(6, 24, 39, 0.94)),
    var(--navy-deep) !important;
  color: var(--dark-text);
}

.evidence-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4.8vw, 5rem);
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1fr);
}

.evidence-copy {
  max-width: 720px;
}

.evidence-copy p:not(.section-kicker) {
  color: var(--dark-body) !important;
  font-size: clamp(1rem, 1.28vw, 1.15rem);
}

.console-panel {
  background:
    linear-gradient(180deg, rgba(5, 18, 30, 0.94), rgba(2, 7, 12, 0.95)),
    var(--navy-ink);
  border: 1px solid var(--dark-border-strong);
  border-radius: 8px;
  box-shadow: 0 28px 85px rgba(0, 0, 0, 0.36);
  color: var(--dark-text);
  overflow: hidden;
}

.console-header,
.console-metrics {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 1rem 1.1rem;
}

.console-header {
  align-items: center;
  border-bottom: 1px solid var(--dark-border);
}

.console-header strong {
  color: var(--dark-text);
  display: block;
  font-size: 1rem;
  line-height: 1.2;
}

.console-label,
.console-status {
  color: var(--yokogawa-yellow);
  display: inline-flex;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.console-status {
  align-items: center;
  background: rgba(255, 242, 0, 0.12);
  border: 1px solid rgba(255, 242, 0, 0.34);
  color: var(--yokogawa-yellow);
  min-height: 1.85rem;
  padding: 0.38rem 0.55rem;
}

.console-body {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 0.34fr);
}

.console-plot {
  min-height: 320px;
  padding: 1rem;
  position: relative;
}

.console-plot svg {
  bottom: 2.2rem;
  left: 1rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.plot-grid {
  fill: none;
  opacity: 0.7;
  stroke: rgba(255, 255, 255, 0.09);
  stroke-width: 1;
}

.console-trace {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.trace-control {
  stroke: rgba(121, 208, 255, 0.76);
}

.trace-warning {
  stroke: var(--yokogawa-yellow);
}

.trace-decision {
  stroke: var(--teal);
}

.plot-axis {
  color: var(--dark-muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  position: absolute;
  text-transform: uppercase;
}

.plot-axis-y {
  left: 1.05rem;
  top: 0.82rem;
}

.plot-axis-x {
  bottom: 0.72rem;
  right: 1.05rem;
}

.plot-marker {
  background: rgba(255, 242, 0, 0.14);
  border: 1px solid rgba(255, 242, 0, 0.38);
  color: var(--yokogawa-yellow);
  font-size: 0.66rem;
  font-weight: 900;
  left: 42%;
  letter-spacing: 0.1em;
  padding: 0.38rem 0.5rem;
  position: absolute;
  text-transform: uppercase;
  top: 28%;
}

.console-rank {
  border-left: 1px solid var(--dark-border);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
}

.console-rank ol {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.console-rank li {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--dark-border);
  border-left: 3px solid var(--yokogawa-yellow);
  display: grid;
  gap: 0.2rem;
  padding: 0.7rem;
}

.console-rank strong {
  color: var(--dark-text);
  font-size: 1.1rem;
}

.console-rank span {
  color: var(--dark-muted);
  font-size: 0.78rem;
  font-weight: 720;
}

.console-metrics {
  border-top: 1px solid var(--dark-border);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.console-metrics span {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--dark-border);
  color: var(--dark-muted);
  display: grid;
  font-size: 0.82rem;
  gap: 0.2rem;
  line-height: 1.3;
  padding: 0.78rem;
}

.console-metrics strong {
  color: var(--dark-text);
}

.info-card,
.use-card,
.industry-card,
.resource-card,
.industry-page-card,
.workflow-node {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.052)),
    var(--dark-panel) !important;
  border-color: var(--dark-border-strong) !important;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.2);
  position: relative;
}

.info-card::before,
.use-card::before,
.industry-card::before,
.resource-card::before {
  background: linear-gradient(90deg, var(--yokogawa-yellow), rgba(0, 162, 174, 0));
  content: "";
  height: 3px;
  left: 0;
  opacity: 0.9;
  position: absolute;
  right: 24%;
  top: 0;
}

.use-card {
  gap: 1rem;
  min-height: 10.4rem;
  padding: 1.25rem;
}

.use-icon {
  color: var(--yokogawa-yellow);
  width: 4.25rem;
}

.use-icon svg {
  height: 2.85rem;
  width: 2.85rem;
}

.info-card h3,
.use-card h3,
.industry-card h3,
.resource-card h3,
.industry-page-card h3,
.workflow-node h3 {
  color: var(--dark-text) !important;
}

body .info-card p,
body .use-card p,
body .industry-card p:not(.industry-label),
body .resource-card p:not(.resource-type),
body .industry-page-card p,
body .workflow-node p,
body .text-stack p,
body .resource-heading p:not(.section-kicker),
body .workflow-copy > p:not(.section-kicker),
body .kinetic-copy > p:not(.section-kicker) {
  color: var(--dark-body) !important;
}

.workflow-fit .section-kicker,
.workflow-fit p,
.sample-test p:not(.section-kicker),
.contact-panel p {
  color: var(--dark-body) !important;
}

.industry-label,
.resource-type,
.section-kicker,
.eyebrow {
  color: var(--yokogawa-yellow) !important;
}

.industry-card a,
.industry-page-card a,
.resource-card a {
  color: var(--yokogawa-yellow) !important;
}

.resource-card a,
.industry-card a {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.1rem;
}

.card-grid,
.use-grid,
.industry-grid,
.resource-grid {
  gap: clamp(0.85rem, 1.2vw, 1.15rem);
}

.logo-proof {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.logo-proof-heading {
  max-width: 980px;
}

.client-logo-stage {
  display: grid;
  gap: clamp(1.25rem, 2vw, 1.85rem);
  margin: 0 auto;
  max-width: 1120px;
}

.client-logo-stage.client-logo-grid {
  grid-template-columns: 1fr;
}

.client-logo-row {
  display: grid;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.client-logo-row--flagship {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 880px;
}

.client-logo-row--secondary {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.client-logo {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  grid-column: auto;
  min-height: clamp(4.1rem, 6vw, 5.4rem);
  padding: 0.8rem;
}

.client-logo img {
  filter: grayscale(1) brightness(0) invert(1);
  opacity: 0.82;
}

.client-logo--flagship {
  min-height: clamp(5rem, 7vw, 6.8rem);
}

.client-logo--flagship img {
  opacity: 0.94;
}

.client-logo--bms img {
  max-height: clamp(3.6rem, 5.4vw, 4.8rem);
}

.client-logo--merck-serono img {
  max-height: clamp(3.25rem, 5.25vw, 4.6rem);
}

.kinetic-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.045)),
    var(--dark-panel-strong);
  border-color: var(--dark-border-strong);
  color: var(--dark-text);
}

.kinetic-panel .kinetic-panel-title,
.kinetic-panel .kinetic-view-label {
  color: var(--yokogawa-yellow) !important;
}

.kinetic-view {
  background: rgba(248, 250, 249, 0.97);
}

.sample-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(2, 13, 22, 0.58) !important;
  border-color: var(--dark-border-strong) !important;
  border-left: 4px solid var(--yokogawa-yellow);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.sample-panel p {
  color: var(--dark-body) !important;
}

.sample-steps span {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--dark-border);
  color: var(--dark-text);
}

/* Premium UI corrective pass: remove decorative overlap and restore clear contrast. */
.instrument-stage {
  padding: 0;
}

.instrument-stage::before,
.instrument-stage::after,
.hero-signal-panel,
.hero-sample-rail {
  display: none !important;
}

.instrument-stage .hero-video-frame {
  border-color: rgba(255, 255, 255, 0.18);
}

.kinetic-panel > .kinetic-panel-title {
  color: var(--dark-text) !important;
}

.kinetic-panel .kinetic-view-label {
  color: var(--navy) !important;
}

.use-grid {
  gap: 0.55rem;
  margin-top: 0.9rem;
}

.use-card {
  gap: 0.62rem;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  min-height: 6.95rem;
  padding: 0.78rem 0.9rem;
}

.use-card-copy {
  gap: 0.24rem;
}

.use-icon {
  width: 2.75rem;
}

.use-icon svg {
  height: 1.92rem;
  width: 1.92rem;
}

.use-card h3 {
  font-size: 1rem;
  line-height: 1.18;
}

body .use-card p {
  font-size: 0.89rem;
  line-height: 1.26;
}

.console-plot {
  min-height: 300px;
}

.trace-control {
  stroke: #79d0ff;
}

.trace-warning {
  stroke: var(--yokogawa-yellow);
}

.trace-decision {
  stroke: var(--teal);
}

.plot-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: absolute;
  right: 1rem;
  top: 0.9rem;
  z-index: 3;
}

.plot-legend span {
  align-items: center;
  color: var(--dark-body);
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 840;
  gap: 0.28rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.plot-legend span::before {
  border-radius: 999px;
  content: "";
  height: 0.48rem;
  width: 0.48rem;
}

.plot-legend .legend-control::before {
  background: #79d0ff;
}

.plot-legend .legend-warning::before {
  background: var(--yokogawa-yellow);
}

.plot-legend .legend-decision::before {
  background: var(--teal);
}

.plot-marker {
  background: rgba(2, 7, 12, 0.9);
  color: var(--dark-text);
  left: 37%;
  top: 3.75rem;
  z-index: 4;
}

/* GPT Image 2 atmospheric backgrounds: physical depth without competing with copy. */
:root {
  --image2-hero-particles: url("/assets/images2/argen-hero-particle-inertia-field-20260701-150010.webp");
  --image2-kinetic-pathway: url("/assets/images2/argen-kinetic-pathway-field-20260701-150153.webp");
  --image2-kinetic-pathway-flipped: url("/assets/images2/argen-kinetic-pathway-field-flipped-20260702-081420.webp");
  --image2-workflow-lanes: url("/assets/images2/argen-workflow-sample-lanes-20260701-150332.webp");
  --image2-industries: url("/assets/images2/argen-industries-services-physicality-20260701-150526.webp");
  --image2-sample-evaluation: url("/assets/images2/argen-sample-evaluation-lab-20260701-150702.webp");
  --image2-sample-evaluation-flipped: url("/assets/images2/argen-sample-evaluation-lab-flipped-20260702-1512.webp");
  --image2-platform-evidence: url("/assets/images2/argen-platform-evidence-console-20260702-080634.webp");
  --image2-resources-method: url("/assets/images2/argen-resources-method-brief-20260702-080953.webp");
  --image2-guardrails-contact: url("/assets/images2/argen-guardrails-contact-instrument-20260702-081244.webp");
}

.hero {
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.92) 0%, rgba(2, 7, 12, 0.74) 38%, rgba(2, 7, 12, 0.18) 100%),
    radial-gradient(circle at 72% 42%, rgba(0, 162, 174, 0.2), transparent 34%),
    radial-gradient(circle at 18% 20%, rgba(255, 242, 0, 0.07), transparent 24%),
    var(--image2-hero-particles),
    var(--navy-ink) !important;
  background-position: center, center, center, center right, center;
  background-repeat: no-repeat;
  background-size: cover;
}

#intelligence,
#applications,
#industries,
#platform,
.decision,
.evidence-console,
.sample-test,
#resources,
.section.proof,
.guardrails,
.contact {
  isolation: isolate;
  overflow: hidden;
}

#intelligence .section-inner,
#applications .section-inner,
#industries .section-inner,
#platform .section-inner,
.decision .section-inner,
.evidence-console .section-inner,
.sample-test .section-inner,
#resources .section-inner,
.section.proof .section-inner,
.guardrails .section-inner,
.contact .section-inner {
  position: relative;
  z-index: 1;
}

#intelligence::after,
#applications::after,
#industries::after,
#platform::after,
.decision::after,
.evidence-console::after,
.sample-test::after,
#resources::after,
.section.proof::after,
.guardrails::after,
.contact::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

#intelligence::after {
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.72), rgba(6, 24, 39, 0.58) 44%, rgba(6, 24, 39, 0.24)),
    var(--image2-kinetic-pathway-flipped);
  background-position: left center;
  opacity: 0.96;
}

#applications::after {
  background-image:
    linear-gradient(180deg, rgba(6, 24, 39, 0.46), rgba(6, 24, 39, 0.58)),
    var(--image2-workflow-lanes);
  background-position: center 42%;
  opacity: 1;
}

#industries::after {
  background-image:
    linear-gradient(180deg, rgba(6, 24, 39, 0.48), rgba(6, 24, 39, 0.62)),
    var(--image2-industries);
  background-position: center;
  opacity: 0.98;
}

.evidence-console::after {
  background-image:
    radial-gradient(circle at 76% 42%, rgba(0, 162, 174, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(6, 24, 39, 0.34)),
    var(--image2-kinetic-pathway);
  background-position: center;
  opacity: 0.94;
}

.sample-test::after {
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.78), rgba(6, 24, 39, 0.22)),
    var(--image2-sample-evaluation);
  background-position: center right;
  opacity: 0.98;
}

#platform::after {
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.96), rgba(6, 24, 39, 0.62)),
    var(--image2-platform-evidence);
  background-position: center right;
  left: auto;
  opacity: 0.88;
  width: min(52vw, 820px);
}

#platform .text-stack {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(2, 13, 22, 0.78);
  border: 1px solid var(--dark-border-strong);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.decision::after {
  display: none;
}

#resources::after {
  background-image:
    linear-gradient(90deg, rgba(7, 31, 36, 0.94), rgba(7, 31, 36, 0.58)),
    var(--image2-resources-method);
  background-position: center right;
  left: auto;
  opacity: 0.86;
  width: min(54vw, 840px);
}

.section.proof::after {
  display: none;
}

.guardrails::after {
  background-image:
    linear-gradient(90deg, rgba(5, 15, 26, 0.94), rgba(5, 15, 26, 0.56)),
    var(--image2-guardrails-contact);
  background-position: center right;
  left: auto;
  opacity: 0.88;
  width: min(52vw, 820px);
}

.contact::after {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 12, 0.96), rgba(2, 7, 12, 0.62)),
    var(--image2-guardrails-contact);
  background-position: center right;
  left: auto;
  opacity: 0.72;
  width: min(46vw, 760px);
}

#platform,
.decision,
#resources,
.section.proof,
.guardrails,
.contact {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

#platform {
  background:
    linear-gradient(180deg, #061827 0%, #082236 100%) !important;
}

.decision {
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 162, 174, 0.13), transparent 32%),
    linear-gradient(180deg, #04111d 0%, #071928 100%) !important;
}

#resources {
  background:
    linear-gradient(180deg, #072226 0%, #061925 100%) !important;
}

.section.proof {
  background:
    radial-gradient(circle at 34% 38%, rgba(255, 242, 0, 0.055), transparent 28%),
    linear-gradient(180deg, #091828 0%, #061420 100%) !important;
}

.guardrails {
  background:
    linear-gradient(180deg, #05131e 0%, #071a24 100%) !important;
}

.contact {
  background:
    radial-gradient(circle at 82% 50%, rgba(255, 242, 0, 0.09), transparent 28%),
    linear-gradient(180deg, #03090f 0%, #02070c 100%) !important;
}

.decision .info-card,
#resources .resource-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.042)),
    rgba(14, 36, 52, 0.88) !important;
}

/* Image sections use distinct tinted bands so generated visuals add depth without colliding. */
#applications {
  background:
    radial-gradient(circle at 18% 18%, rgba(121, 208, 255, 0.08), transparent 28%),
    linear-gradient(180deg, #04101b 0%, #061d2f 100%) !important;
}

#applications::after {
  background-image:
    linear-gradient(90deg, rgba(2, 10, 18, 0.82), rgba(6, 25, 41, 0.52) 46%, rgba(2, 10, 18, 0.8)),
    var(--image2-workflow-lanes);
  filter: saturate(0.82) contrast(1.05);
  opacity: 0.74;
}

#applications .use-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(8, 27, 43, 0.92) !important;
}

#applications .use-card::before {
  background: linear-gradient(90deg, var(--yokogawa-yellow), rgba(121, 208, 255, 0.22));
  right: 34%;
}

#industries {
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 242, 0, 0.06), transparent 30%),
    linear-gradient(180deg, #061f24 0%, #082b30 100%) !important;
  padding-bottom: clamp(2.8rem, 4vw, 4rem);
}

#industries + .workflow-fit {
  padding-top: clamp(2.8rem, 4vw, 4rem);
}

#industries::after {
  background-image:
    linear-gradient(180deg, rgba(6, 24, 39, 0.48), rgba(6, 24, 39, 0.62)),
    var(--image2-industries);
  background-position: center;
  filter: none;
  left: 0;
  opacity: 0.98;
  right: 0;
  width: auto;
}

#industries .industry-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.042)),
    rgba(10, 38, 47, 0.93) !important;
}

#industries .industry-card::before {
  background: linear-gradient(90deg, var(--yokogawa-yellow), rgba(0, 162, 174, 0.28));
  right: 18%;
}

.evidence-console {
  background:
    radial-gradient(circle at 82% 38%, rgba(0, 162, 174, 0.12), transparent 28%),
    linear-gradient(180deg, #061625 0%, #071b2a 100%) !important;
}

.evidence-console::after {
  background-image:
    linear-gradient(90deg, rgba(6, 22, 37, 0.58), rgba(6, 22, 37, 0.88)),
    var(--image2-kinetic-pathway-flipped);
  background-position: left center;
  filter: saturate(0.86) contrast(1.04);
  left: 0;
  opacity: 0.78;
  right: auto;
  width: min(58vw, 900px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 54%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.9) 54%, transparent 100%);
}

.sample-test {
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 242, 0, 0.05), transparent 26%),
    linear-gradient(180deg, #081522 0%, #06131f 100%) !important;
}

.sample-test::after {
  background-image:
    linear-gradient(90deg, rgba(8, 21, 34, 0.5), rgba(8, 21, 34, 0.9)),
    var(--image2-sample-evaluation-flipped);
  background-position: left center;
  filter: saturate(0.98) contrast(1.08);
  left: 0;
  opacity: 0.86;
  right: auto;
  width: min(58vw, 900px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 54%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.86) 54%, transparent 100%);
}

.sample-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.045)),
    rgba(8, 25, 38, 0.9) !important;
  border-color: var(--dark-border-strong) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.sample-panel p,
.sample-steps span {
  color: var(--dark-body) !important;
}

.sample-steps span {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--dark-border-strong);
}

.guardrails {
  background:
    radial-gradient(circle at 24% 24%, rgba(0, 162, 174, 0.1), transparent 28%),
    linear-gradient(180deg, #061321 0%, #071927 100%) !important;
}

.guardrails::after {
  display: none;
}

.contact::after {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 12, 0.88), rgba(2, 7, 12, 0.38)),
    var(--image2-guardrails-contact);
  background-position: center right;
  filter: saturate(1.08) contrast(1.08);
  opacity: 0.9;
  width: min(58vw, 900px);
}

#platform::after {
  background-image:
    linear-gradient(90deg, rgba(6, 24, 39, 0.9), rgba(6, 24, 39, 0.64) 44%, rgba(6, 24, 39, 0.84)),
    var(--image2-platform-evidence);
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.1);
  left: 0;
  opacity: 0.88;
  right: 0;
  width: auto;
}

#resources::after {
  background-image:
    linear-gradient(90deg, rgba(5, 22, 34, 0.95), rgba(5, 22, 34, 0.76) 48%, rgba(5, 22, 34, 0.9)),
    var(--image2-resources-method);
  background-position: center;
  background-size: cover;
  filter: grayscale(1) saturate(0.2) brightness(0.78) contrast(1.12);
  left: 0;
  opacity: 0.68;
  right: 0;
  width: auto;
}

.contact {
  background:
    linear-gradient(180deg, #03090f 0%, #02070c 100%) !important;
}

.contact::after {
  background-image:
    linear-gradient(90deg, rgba(2, 7, 12, 0.84), rgba(2, 7, 12, 0.54) 48%, rgba(2, 7, 12, 0.76)),
    var(--image2-guardrails-contact);
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.1);
  left: 0;
  opacity: 0.96;
  right: 0;
  width: auto;
}

.assessment-page main {
  background:
    radial-gradient(circle at 78% 16%, rgba(0, 162, 174, 0.16), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(255, 242, 0, 0.06), transparent 22%),
    linear-gradient(180deg, #02070c 0%, #061827 46%, #082236 100%);
  color: var(--dark-text);
}

.assessment-landing {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) var(--content-x) clamp(3.5rem, 7vw, 6rem);
  position: relative;
}

.assessment-landing::before {
  background:
    linear-gradient(90deg, rgba(2, 7, 12, 0.82), rgba(2, 7, 12, 0.42)),
    var(--image2-platform-evidence);
  background-position: center;
  background-size: cover;
  content: "";
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
}

.assessment-landing .section-inner {
  position: relative;
  z-index: 1;
}

.assessment-landing-grid {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5rem);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
}

.assessment-landing-copy {
  max-width: 900px;
}

.assessment-page h1,
.assessment-page .section h2 {
  color: #ffffff;
}

.assessment-page h1 {
  font-size: clamp(3rem, 5.2vw, 5.15rem);
  line-height: 0.96;
  max-width: 880px;
}

.assessment-landing-copy > p:not(.section-kicker),
.assessment-note,
.assessment-cta-copy p {
  color: var(--dark-body);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  max-width: 760px;
}

.assessment-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.65rem;
}

.assessment-note {
  color: var(--dark-muted);
  font-size: 0.95rem;
  margin: 1rem 0 0;
}

.assessment-result-card,
.assessment-step-card,
.assessment-cta-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.086), rgba(255, 255, 255, 0.043)),
    rgba(8, 27, 43, 0.9);
  border: 1px solid var(--dark-border-strong);
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.assessment-result-card {
  border-left: 5px solid var(--yokogawa-yellow);
  padding: clamp(1.25rem, 2.4vw, 2rem);
}

.assessment-card-kicker,
.assessment-step-card span {
  color: var(--yokogawa-yellow);
  font-size: 0.82rem;
  font-weight: 920;
  letter-spacing: 0.22em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.assessment-result-card h2 {
  color: #ffffff;
  font-size: clamp(1.75rem, 2.35vw, 2.45rem);
  line-height: 1.05;
  margin: 0 0 1.3rem;
}

.assessment-result-card ul {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.assessment-result-card li {
  border-top: 1px solid var(--dark-border);
  color: var(--dark-body);
  line-height: 1.48;
  padding-top: 1rem;
}

.assessment-result-card strong {
  color: #ffffff;
}

.assessment-process,
.assessment-cta-section {
  background: transparent !important;
  color: var(--dark-text);
}

.assessment-page .section p:not(.section-kicker) {
  color: var(--dark-body);
}

.assessment-step-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.assessment-step-card {
  min-height: 15rem;
  padding: clamp(1.1rem, 2vw, 1.45rem);
}

.assessment-step-card h3 {
  color: #ffffff;
  font-size: clamp(1.2rem, 1.55vw, 1.45rem);
  line-height: 1.18;
  margin: 0 0 0.75rem;
}

.assessment-step-card p {
  color: var(--dark-body) !important;
  margin: 0;
}

.assessment-cta-section {
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.assessment-cta-card {
  align-items: center;
  border-left: 5px solid var(--yokogawa-yellow);
  display: grid;
  gap: clamp(1.5rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.75fr) minmax(380px, 1fr);
  padding: clamp(1.35rem, 3vw, 2.6rem);
}

.assessment-cta-card h2 {
  margin-bottom: 0;
}

.assessment-cta-copy p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hero-lead,
  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    max-width: 13.8ch;
  }

  .instrument-stage {
    margin-inline: auto;
    max-width: 900px;
  }

  .hero-signal-panel {
    bottom: 0.3rem;
    left: 0.3rem;
    width: min(21rem, 46%);
  }

  .client-logo-row--secondary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .assessment-landing-grid,
  .assessment-cta-card {
    grid-template-columns: 1fr;
  }

  .assessment-step-grid {
    grid-template-columns: 1fr;
  }

  .assessment-page h1 {
    max-width: 11.5ch;
  }
}

@media (max-width: 760px) {
  .hero-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-proof-strip span:nth-child(2) {
    border-right: 0;
  }

  .hero-proof-strip span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--dark-border);
  }

  .hero-signal-panel,
  .hero-sample-rail {
    display: none;
  }

  .console-body,
  .console-metrics,
  .client-logo-row--flagship,
  .client-logo-row--secondary {
    grid-template-columns: 1fr;
  }

  .console-rank {
    border-left: 0;
    border-top: 1px solid var(--dark-border);
  }

  .assessment-actions,
  .assessment-actions .button {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    max-width: 11.5ch;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-proof-strip span {
    border-bottom: 1px solid var(--dark-border);
    border-right: 0;
    min-height: 3.1rem;
  }

  .hero-proof-strip span:last-child {
    border-bottom: 0;
  }

  .console-plot {
    min-height: 250px;
  }

  .assessment-landing {
    min-height: auto;
    padding-bottom: 2.8rem;
    padding-top: 2.4rem;
  }

  .assessment-page h1 {
    font-size: clamp(2.15rem, 10.5vw, 3rem);
    max-width: 100%;
  }

  .assessment-result-card,
  .assessment-step-card,
  .assessment-cta-card {
    box-shadow: none;
  }
}

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

}
