:root {
  --corp-ink: #12171c;
  --corp-ink-soft: #293138;
  --corp-paper: #f4f6f3;
  --corp-surface: #ffffff;
  --corp-line: #d8ddd9;
  --corp-muted: #68736d;
  --corp-green: #19a36f;
  --corp-green-dark: #087451;
  --corp-blue: #1e6d9e;
  --corp-coral: #d65c3f;
  --corp-container: min(1280px, calc(100vw - 80px));
}

html {
  scroll-behavior: smooth;
}

body.corporate-page,
body.labbridge-page,
body.tbflow-page,
body.contact-corporate-page {
  color: var(--corp-ink);
  background: var(--corp-paper);
  letter-spacing: 0;
  word-break: keep-all;
  overflow-x: hidden;
}

body.corporate-page *,
body.labbridge-page *,
body.tbflow-page *,
body.contact-corporate-page * {
  letter-spacing: 0;
}

.corp-container {
  width: var(--corp-container);
  margin: 0 auto;
}

.corporate-header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 76px;
  border-bottom: 1px solid rgba(18, 23, 28, 0.12);
  background: #fff;
  backdrop-filter: none;
}

.corporate-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.corporate-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 4px;
  color: var(--corp-ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.corporate-brand i {
  width: 7px;
  height: 7px;
  margin-bottom: 1px;
  display: block;
  background: var(--corp-green);
  border-radius: 50%;
}

.corporate-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.official-wordmark-image {
  display: block;
  width: 178px;
  height: auto;
}

.corporate-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}

.corporate-nav > a,
.corporate-nav__trigger {
  position: relative;
  color: #273039;
  font-size: 0.91rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.corporate-nav__group {
  position: relative;
  display: flex;
  align-items: center;
}

.corporate-nav__trigger {
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.corporate-nav > a:not(.corporate-nav__cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--corp-green);
  transition: right 180ms ease;
}

.corporate-nav__trigger::before {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--corp-green);
  transition: right 180ms ease;
}

.corporate-nav > a:hover::after,
.corporate-nav > a[aria-current="page"]::after,
.corporate-nav__trigger:hover::before,
.corporate-nav__trigger.is-current::before,
.corporate-nav__group.is-open .corporate-nav__trigger::before {
  right: 0;
}

.corporate-nav__chevron {
  width: 7px;
  height: 7px;
  margin-top: -4px;
  display: block;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}

.corporate-nav__group.is-open .corporate-nav__chevron {
  margin-top: 4px;
  transform: rotate(225deg);
}

.corporate-nav__submenu {
  position: absolute;
  top: calc(100% + 22px);
  left: 50%;
  z-index: 120;
  width: 310px;
  padding: 8px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  background: #fff;
  border: 1px solid #d7ddd9;
  border-radius: 4px;
  box-shadow: 0 18px 45px rgba(23, 33, 30, 0.14);
  transform: translate(-50%, -8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.corporate-nav__group.is-open .corporate-nav__submenu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.corporate-nav__submenu a {
  min-height: 66px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--corp-ink);
  border-radius: 3px;
}

.corporate-nav__submenu a:hover,
.corporate-nav__submenu a:focus-visible,
.corporate-nav__submenu a[aria-current="page"] {
  background: #edf3ef;
}

.corporate-nav__submenu a > span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.corporate-nav__submenu strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.corporate-nav__submenu small {
  color: var(--corp-muted);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
}

.corporate-nav__submenu i {
  color: var(--corp-green-dark);
  font-size: 0.9rem;
  font-style: normal;
}

.corporate-nav .corporate-nav__cta {
  min-height: 40px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: var(--corp-ink);
  border: 1px solid var(--corp-ink);
  border-radius: 4px;
}

.corporate-nav .corporate-nav__cta:hover {
  background: var(--corp-green-dark);
  border-color: var(--corp-green-dark);
}

.corporate-menu-toggle {
  width: 42px;
  height: 42px;
  padding: 9px;
  display: none;
  border: 1px solid var(--corp-line);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
}

.corporate-menu-toggle span {
  width: 100%;
  height: 2px;
  display: block;
  margin: 4px 0;
  background: var(--corp-ink);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.corporate-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.corporate-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.corporate-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--corp-green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em !important;
  line-height: 1.4;
}

.eyebrow--light {
  color: #7ee0b8;
}

.company-hero,
.product-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #17201e;
}

.company-hero {
  min-height: clamp(580px, 76svh, 760px);
}

.product-hero {
  min-height: clamp(600px, 78svh, 780px);
}

.company-hero__image,
.product-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 52%;
}

.company-hero__shade,
.product-hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7, 12, 12, 0.64);
}

.company-hero__content,
.product-hero__content {
  min-height: inherit;
  padding-top: 80px;
  padding-bottom: 118px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.company-hero__content h1 {
  margin: 0;
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.02;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.company-hero__lead {
  margin: 25px 0 0;
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.company-hero__copy {
  max-width: 740px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-scope {
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  list-style: none;
}

.hero-scope li {
  display: flex;
  align-items: center;
}

.hero-scope li:not(:last-child)::after {
  width: 1px;
  height: 12px;
  margin: 0 14px;
  content: "";
  background: rgba(255, 255, 255, 0.36);
}

.product-hero__content h1 {
  max-width: 860px;
  margin: 0;
  color: #fff;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.13;
}

.product-hero__content > p:not(.eyebrow) {
  max-width: 800px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  line-height: 1.85;
}

.corporate-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.corp-button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.3;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.corp-button--primary {
  color: #071410;
  background: #65dca9;
  border-color: #65dca9;
}

.corp-button--primary:hover {
  background: #92ebc5;
  border-color: #92ebc5;
}

.corp-button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.corp-button--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.corp-button--dark {
  color: #fff;
  background: var(--corp-ink);
  border-color: var(--corp-ink);
}

.corp-button--dark:hover {
  background: var(--corp-green-dark);
  border-color: var(--corp-green-dark);
}

.company-hero__marker,
.product-hero__footer {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em !important;
}

.company-hero__marker i {
  width: 48px;
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.product-hero__footer {
  justify-content: space-between;
}

.proof-band {
  background: var(--corp-surface);
  border-bottom: 1px solid var(--corp-line);
}

.proof-band__inner {
  min-height: 98px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.proof-item {
  padding: 20px 34px;
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 20px;
}

.proof-item:first-child {
  padding-left: 0;
  border-right: 1px solid var(--corp-line);
}

.proof-item__label {
  color: var(--corp-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em !important;
}

.proof-item strong {
  color: var(--corp-ink-soft);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.5;
}

.corp-section {
  padding: 132px 0;
}

.flagship-section {
  background: #fff;
}

.flagship-section__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 100px;
}

.flagship-section__header h2 {
  margin: 0;
  color: var(--corp-ink);
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.08;
}

.flagship-section__header > p {
  margin: 0 0 4px;
  color: var(--corp-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.flagship-section__statement {
  margin-top: 90px;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  border-top: 1px solid #aeb7b1;
}

.flagship-section__statement h3 {
  max-width: 850px;
  margin: 0;
  color: var(--corp-ink);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.25;
}

.flagship-capabilities {
  margin: 72px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
  list-style: none;
}

.flagship-capabilities li {
  min-height: 230px;
  padding: 32px 40px 36px;
  border-right: 1px solid var(--corp-line);
  list-style: none;
}

.flagship-capabilities li::marker {
  content: "";
}

.flagship-capabilities li:first-child {
  padding-left: 0;
}

.flagship-capabilities li:last-child {
  padding-right: 0;
  border-right: 0;
}

.flagship-capabilities span {
  color: var(--corp-coral);
  font-size: 0.72rem;
  font-weight: 800;
}

.flagship-capabilities h3 {
  margin: 42px 0 12px;
  color: var(--corp-ink);
  font-size: 1.3rem;
}

.flagship-capabilities p {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.flagship-section__action {
  margin-top: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.flagship-section__action strong {
  color: var(--corp-ink);
  font-size: 1.15rem;
}

.flagship-section__action p {
  margin: 8px 0 0;
  color: var(--corp-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Main product 02 */
.tbflow-showcase {
  color: var(--corp-ink);
  background: #e9eff0;
  border-top: 1px solid #ced8d9;
}

.tbflow-showcase__header {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
  gap: 92px;
}

.tbflow-showcase__header h2 {
  margin: 0;
  font-size: 4.25rem;
  font-weight: 800;
  line-height: 1.08;
}

.tbflow-showcase__header h3 {
  margin: 0;
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.24;
}

.tbflow-showcase__header > div:last-child > p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #53636a;
  font-size: 1rem;
  line-height: 1.85;
}

.tbflow-showcase__visual {
  margin: 78px 0 0;
}

.tbflow-showcase__screen {
  height: clamp(460px, 50vw, 650px);
  overflow: hidden;
  background: #dcebe7;
  border: 1px solid #bfcfca;
  border-radius: 6px;
  box-shadow: 0 24px 55px rgba(24, 48, 43, 0.12);
}

.tbflow-showcase__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.tbflow-showcase__visual figcaption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #647278;
  font-size: 0.76rem;
  line-height: 1.5;
}

.tbflow-showcase__visual figcaption span {
  color: #1d6f75;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.tbflow-showcase__capabilities {
  margin: 70px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #b8c5c7;
  border-bottom: 1px solid #b8c5c7;
  list-style: none;
}

.tbflow-showcase__capabilities li {
  min-height: 230px;
  padding: 32px 30px 36px;
  border-right: 1px solid #c5d0d1;
  list-style: none;
}

.tbflow-showcase__capabilities li:first-child { padding-left: 0; }
.tbflow-showcase__capabilities li:last-child { padding-right: 0; border-right: 0; }

.tbflow-showcase__capabilities li > span {
  color: var(--corp-blue);
  font-size: 0.72rem;
  font-weight: 800;
}

.tbflow-showcase__capabilities h3 {
  margin: 38px 0 12px;
  font-size: 1.1rem;
}

.tbflow-showcase__capabilities p {
  margin: 0;
  color: #5b696e;
  font-size: 0.88rem;
  line-height: 1.75;
}

.tbflow-showcase__action {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.tbflow-showcase__action p {
  margin: 0;
  display: grid;
  gap: 8px;
}

.tbflow-showcase__action strong { font-size: 1.12rem; }
.tbflow-showcase__action span { color: #5b696e; font-size: 0.9rem; line-height: 1.7; }

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

.section-heading h2,
.security-copy h2,
.company-section h2,
.final-cta h2,
.product-workspace-heading h2,
.poc-copy h2 {
  margin: 0;
  color: var(--corp-ink);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.24;
}

.section-heading > p:not(.eyebrow),
.section-heading--split > p,
.section-heading--wide > p:not(.eyebrow) {
  margin: 28px 0 0;
  color: var(--corp-muted);
  font-size: 1rem;
  line-height: 1.85;
}

.section-heading--wide {
  max-width: 1000px;
}

.section-heading--wide > p:not(.eyebrow) {
  max-width: 750px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: end;
  gap: 100px;
}

.section-heading--split > p {
  margin: 0 0 4px;
}

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

.problem-list {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aeb7b1;
}

.problem-list article {
  min-height: 250px;
  padding: 32px 42px 20px 0;
  border-right: 1px solid var(--corp-line);
}

.problem-list article:not(:first-child) {
  padding-left: 42px;
}

.problem-list article:last-child {
  border-right: 0;
}

.problem-list article > span,
.partnership-list article > span,
.capability-grid article > span {
  color: var(--corp-coral);
  font-size: 0.75rem;
  font-weight: 800;
}

.problem-list h3,
.partnership-list h3,
.capability-grid h3 {
  margin: 52px 0 14px;
  color: var(--corp-ink);
  font-size: 1.35rem;
  line-height: 1.35;
}

.problem-list p,
.partnership-list p,
.capability-grid p {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.solution-section {
  background: #fff;
}

.solution-flow {
  margin: 76px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  list-style: none;
}

.solution-flow li {
  position: relative;
  min-height: 460px;
  padding: 28px 28px 34px;
  overflow: hidden;
  background: var(--corp-paper);
  border: 1px solid var(--corp-line);
  border-radius: 8px;
}

.solution-flow__number {
  color: var(--corp-green-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.solution-flow__visual {
  height: 220px;
  margin: 30px 0 26px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #e6ebe7;
  border-radius: 6px;
}

.solution-flow h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.solution-flow p {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.solution-flow__visual--monitor::before {
  content: "";
  width: 154px;
  height: 94px;
  border: 9px solid #263139;
  border-bottom-width: 14px;
  border-radius: 5px;
  background: #f7faf7;
  box-shadow: 0 50px 0 -44px #263139;
}

.solution-flow__visual--monitor i {
  position: absolute;
  width: 42px;
  height: 3px;
  left: calc(50% - 55px);
  background: var(--corp-blue);
}

.solution-flow__visual--monitor i:nth-child(1) { top: 90px; }
.solution-flow__visual--monitor i:nth-child(2) { top: 102px; width: 72px; }
.solution-flow__visual--monitor i:nth-child(3) { top: 114px; width: 56px; }

.solution-flow__visual--verify::before {
  content: "";
  width: 105px;
  height: 132px;
  background: #fff;
  border: 2px solid #5b6861;
  border-radius: 4px;
  box-shadow: 12px 12px 0 #c9d1cc;
}

.solution-flow__visual--verify i {
  position: absolute;
  width: 46px;
  height: 24px;
  border-left: 7px solid var(--corp-green);
  border-bottom: 7px solid var(--corp-green);
  transform: rotate(-45deg) translate(2px, -8px);
}

.solution-flow__visual--verify b {
  position: absolute;
  bottom: 44px;
  font-size: 0.64rem;
  letter-spacing: 0.08em !important;
}

.solution-flow__visual--chart {
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 42px;
}

.solution-flow__visual--chart i {
  width: 28px;
  background: var(--corp-blue);
  border-radius: 3px 3px 0 0;
}

.solution-flow__visual--chart i:nth-child(1) { height: 46px; }
.solution-flow__visual--chart i:nth-child(2) { height: 96px; background: var(--corp-green); }
.solution-flow__visual--chart i:nth-child(3) { height: 70px; }
.solution-flow__visual--chart i:nth-child(4) { height: 124px; background: var(--corp-coral); }

.product-section {
  background: #e9eeea;
}

.labbridge-console {
  margin-top: 68px;
  overflow: hidden;
  color: #26303a;
  background: #f7f9f8;
  border: 1px solid #b9c2bd;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(22, 33, 28, 0.14);
}

.console-topbar {
  min-height: 66px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: 210px 1fr 112px;
  align-items: center;
  gap: 18px;
  background: #fff;
  border-bottom: 1px solid #d8dfdb;
}

.console-brand,
.workspace-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
}

.console-brand__mark,
.workspace-logo > span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--corp-green-dark);
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 800;
}

.console-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.console-tabs button {
  min-height: 36px;
  padding: 0 14px;
  color: #69736e;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.console-tabs button[aria-selected="true"] {
  color: #142019;
  background: #e7f4ed;
  border-color: #b8dbca;
}

.console-demo-label {
  justify-self: end;
  color: #8b5d1f;
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.1em !important;
  background: #fff1cf;
  border: 1px solid #f0d99e;
  border-radius: 3px;
  padding: 5px 7px;
}

.console-body {
  min-height: 545px;
  display: grid;
  grid-template-columns: 170px 1fr;
}

.console-sidebar {
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #18221e;
}

.console-sidebar span {
  padding: 10px 12px;
  color: #aab7b1;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
}

.console-sidebar span.is-active {
  color: #fff;
  background: #2e3a35;
}

.console-content {
  min-width: 0;
  padding: 34px;
}

.console-panel {
  min-height: 470px;
}

.console-panel[hidden] {
  display: none;
}

.console-panel__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.console-panel__heading > div > span {
  color: var(--corp-green-dark);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em !important;
}

.console-panel__heading h3 {
  margin: 5px 0 0;
  font-size: 1.18rem;
}

.status-live,
.console-filter {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c5952;
  background: #fff;
  border: 1px solid #d4ddd8;
  border-radius: 4px;
  font-size: 0.68rem;
  white-space: nowrap;
}

.status-live i,
.agent-row i {
  width: 7px;
  height: 7px;
  display: block;
  background: var(--corp-green);
  border-radius: 50%;
}

.console-stat-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.console-stat-grid > div {
  min-height: 108px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe2de;
  border-radius: 5px;
}

.console-stat-grid span,
.console-stat-grid small {
  display: block;
  color: #77817c;
  font-size: 0.67rem;
}

.console-stat-grid strong {
  margin-top: 7px;
  display: inline-block;
  font-size: 1.52rem;
  line-height: 1;
}

.console-stat-grid small {
  margin-left: 5px;
  display: inline;
}

.console-data-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 12px;
}

.console-list-block,
.console-chart-block {
  min-height: 240px;
  padding: 18px;
  background: #fff;
  border: 1px solid #dbe2de;
  border-radius: 5px;
}

.console-block-title {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #77817c;
  font-size: 0.67rem;
}

.console-block-title strong {
  color: #2b3530;
  font-size: 0.74rem;
}

.agent-row {
  min-height: 42px;
  display: grid;
  grid-template-columns: 12px 1fr 70px 58px;
  align-items: center;
  gap: 7px;
  border-top: 1px solid #edf0ee;
  font-size: 0.66rem;
}

.agent-row b { font-size: 0.7rem; }
.agent-row span { color: #7a8580; }
.agent-row em { color: var(--corp-green-dark); font-style: normal; }

.bar-chart {
  height: 170px;
  padding: 16px 8px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  border-bottom: 1px solid #d3dad6;
}

.bar-chart i {
  width: 100%;
  height: var(--bar);
  display: block;
  background: var(--corp-green);
  border-radius: 2px 2px 0 0;
}

.file-table {
  margin-top: 28px;
  background: #fff;
  border: 1px solid #dbe2de;
  border-radius: 5px;
  overflow: hidden;
}

.file-row {
  min-height: 76px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) 0.7fr 0.8fr 0.5fr;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #e7ece9;
  font-size: 0.72rem;
}

.file-row--head {
  min-height: 44px;
  color: #6f7a74;
  background: #f2f5f3;
  border-top: 0;
  font-size: 0.66rem;
  font-weight: 700;
}

.file-row b,
.file-row small {
  display: block;
}

.file-row small {
  margin-top: 4px;
  color: #87908b;
}

.verified {
  color: var(--corp-green-dark) !important;
  font-weight: 700;
}

.analysis-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 14px;
}

.analysis-meta,
.line-chart {
  min-height: 330px;
  padding: 20px;
  background: #fff;
  border: 1px solid #dbe2de;
  border-radius: 5px;
}

.analysis-meta > span {
  color: var(--corp-green-dark);
  font-size: 0.6rem;
  font-weight: 800;
}

.analysis-meta > strong {
  margin-top: 6px;
  display: block;
  font-size: 0.82rem;
}

.analysis-meta dl {
  margin: 28px 0 0;
  display: grid;
  grid-template-columns: 72px 1fr;
  row-gap: 16px;
  font-size: 0.69rem;
}

.analysis-meta dt { color: #87908b; }
.analysis-meta dd { margin: 0; font-weight: 600; }

.line-chart {
  position: relative;
  padding: 42px 20px 25px 42px;
}

.line-chart svg,
.workspace-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.chart-grid {
  fill: none;
  stroke: #e2e7e4;
  stroke-width: 1;
}

.chart-line {
  fill: none;
  stroke: var(--corp-green);
  stroke-width: 4;
  stroke-linecap: round;
}

.chart-line--alt {
  stroke: var(--corp-blue);
  stroke-width: 3;
}

.line-chart__y,
.line-chart__x {
  position: absolute;
  color: #87908b;
  font-size: 0.58rem;
}

.line-chart__y { left: 12px; top: 16px; }
.line-chart__x { right: 20px; bottom: 10px; }

.demo-caption {
  margin: 16px 0 0;
  color: #758079;
  font-size: 0.74rem;
  text-align: right;
}

.security-band {
  padding: 122px 0;
  color: #fff;
  background: #111a17;
}

.security-band__inner {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 100px;
}

.security-copy h2,
.company-section h2 {
  color: #fff;
}

.security-copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: #aab6b0;
  line-height: 1.85;
}

.text-arrow {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  color: var(--corp-ink);
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.91rem;
  font-weight: 700;
}

.text-arrow--light {
  color: #d7e1dc;
}

.security-diagram {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: stretch;
}

.security-node {
  min-height: 210px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #202b27;
  border: 1px solid #3b4943;
  border-radius: 6px;
}

.security-node--accent {
  background: #0d6d4d;
  border-color: #4eb88f;
}

.security-node span {
  margin-bottom: auto;
  color: #75d9b0;
  font-size: 0.68rem;
  font-weight: 800;
}

.security-node strong {
  font-size: 1rem;
}

.security-node small {
  margin-top: 7px;
  color: #aebbb5;
  font-size: 0.7rem;
  line-height: 1.5;
}

.security-node--accent small { color: #d1eee2; }

.security-diagram > i {
  position: relative;
}

.security-diagram > i::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 50%;
  height: 1px;
  background: #59665f;
}

.security-diagram > i::after {
  content: "";
  position: absolute;
  right: 6px;
  top: calc(50% - 3px);
  width: 6px;
  height: 6px;
  border-top: 1px solid #8b9891;
  border-right: 1px solid #8b9891;
  transform: rotate(45deg);
}

.roadmap-section {
  background: #fff;
}

.roadmap {
  margin: 78px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 2px solid #cdd4d0;
}

.roadmap li {
  position: relative;
  min-height: 210px;
  padding: 34px 38px 0 0;
}

.roadmap li::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  background: #aab4ae;
  border: 2px solid #fff;
  border-radius: 50%;
}

.roadmap li.is-current::before {
  background: var(--corp-green);
}

.roadmap span {
  color: var(--corp-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.roadmap h3 {
  margin: 28px 0 12px;
  font-size: 1.28rem;
}

.roadmap p {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.partnership-section {
  background: #e7eee9;
}

.partnership-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aeb9b2;
  border-bottom: 1px solid #aeb9b2;
}

.partnership-list article {
  min-height: 270px;
  padding: 30px 40px 34px 0;
  border-right: 1px solid #c1cac4;
}

.partnership-list article:not(:first-child) { padding-left: 40px; }
.partnership-list article:last-child { border-right: 0; }
.partnership-list h3 { margin-top: 58px; }

.partnership-action {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.partnership-action p {
  max-width: 660px;
  margin: 0;
  color: var(--corp-muted);
  line-height: 1.7;
}

.projects-intro {
  background: #fff;
}

.projects-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 88px;
}

.projects-intro__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dce4e8;
  border-radius: 8px;
}

.projects-intro__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.projects-intro__copy h2 {
  margin: 0;
  color: var(--corp-ink);
  font-size: 2.65rem;
  line-height: 1.3;
}

.projects-intro__copy > p:not(.eyebrow) {
  margin: 26px 0 0;
  color: var(--corp-muted);
  line-height: 1.85;
}

.company-section {
  padding: 132px 0;
  background: #17211e;
  color: #fff;
}

.company-section__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 110px;
}

.company-section__body {
  padding-top: 38px;
}

.company-section__lead {
  margin: 0;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.75;
}

.company-section__body > p:not(.company-section__lead) {
  margin: 24px 0 0;
  color: #aab6b0;
  line-height: 1.85;
}

.company-section__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 30px;
}

.company-section__links .text-arrow {
  margin-top: 30px;
}

.final-cta {
  padding: 100px 0;
  background: #f0f3f0;
}

.final-cta__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
}

.final-cta h2 {
  font-size: 2.65rem;
}

.corporate-footer {
  color: #66716b;
  background: #fff;
  border-top: 1px solid #d8ded9;
}

.corporate-footer__top {
  min-height: 150px;
  padding: 42px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid #dfe4e1;
}

.corporate-brand--footer {
  color: #fff;
}

.corporate-footer__top nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
}

.corporate-footer__top nav a {
  font-size: 0.82rem;
  font-weight: 600;
}

.corporate-footer__top nav a:hover,
.corporate-footer__bottom a:hover {
  color: var(--corp-ink);
}

.corporate-footer__bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.72rem;
}

.corporate-footer__bottom p { margin: 0; }
.corporate-footer__bottom div { display: flex; gap: 24px; }

/* LabBridge product page */
.product-intro {
  background: #fff;
}

.product-intro__grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 120px;
}

.product-intro__body {
  padding-top: 42px;
}

.product-intro__body p {
  margin: 24px 0 0;
  color: var(--corp-muted);
  line-height: 1.9;
}

.product-intro__body .large-copy {
  margin: 0;
  color: var(--corp-ink);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.75;
}

.architecture-section {
  padding: 132px 0;
  background: #e7ece8;
}

.architecture-flow {
  margin: 80px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #bec8c1;
  border: 1px solid #bec8c1;
  list-style: none;
}

.architecture-flow li {
  min-height: 430px;
  padding: 26px;
  background: #fff;
}

.architecture-flow__tag {
  min-height: 34px;
  display: block;
  color: var(--corp-green-dark);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.architecture-flow__icon {
  height: 150px;
  margin: 38px 0 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #edf1ee;
  border-radius: 6px;
}

.architecture-flow h3 {
  margin: 0 0 12px;
  font-size: 1.08rem;
}

.architecture-flow p {
  margin: 0;
  color: var(--corp-muted);
  font-size: 0.85rem;
  line-height: 1.72;
}

.architecture-flow__icon--device::before {
  content: "";
  width: 94px;
  height: 64px;
  border: 7px solid #26312c;
  border-radius: 4px;
  box-shadow: 0 34px 0 -29px #26312c;
}

.architecture-flow__icon--agent i {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 2px solid var(--corp-green-dark);
  transform: rotate(45deg);
}

.architecture-flow__icon--agent i:nth-child(2) {
  width: 26px;
  height: 26px;
  background: var(--corp-green);
  border-color: var(--corp-green);
}

.architecture-flow__icon--server {
  flex-direction: column;
  gap: 6px;
}

.architecture-flow__icon--server i {
  width: 100px;
  height: 25px;
  display: block;
  background: #27322d;
  border-radius: 3px;
  box-shadow: inset 68px 0 0 #394640;
}

.architecture-flow__icon--search::before {
  content: "";
  width: 64px;
  height: 64px;
  border: 8px solid var(--corp-blue);
  border-radius: 50%;
}

.architecture-flow__icon--search i {
  position: absolute;
  width: 48px;
  height: 8px;
  background: var(--corp-blue);
  transform: translate(40px, 40px) rotate(45deg);
  border-radius: 3px;
}

.product-features-section {
  background: #fff;
}

.mobile-title-break {
  display: none;
}

.capability-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aeb7b1;
}

.capability-grid article {
  min-height: 250px;
  padding: 28px 34px 28px 0;
  border-right: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
}

.capability-grid article:nth-child(3n + 2),
.capability-grid article:nth-child(3n + 3) {
  padding-left: 34px;
}

.capability-grid article:nth-child(3n) {
  border-right: 0;
}

.capability-grid h3 {
  margin-top: 48px;
}

.product-workspace-section {
  padding: 124px 0;
  color: #fff;
  background: #17211e;
}

.product-workspace-heading {
  display: grid;
  grid-template-columns: 1fr 0.5fr;
  align-items: end;
  gap: 90px;
}

.product-workspace-heading h2 {
  color: #fff;
}

.product-workspace-heading > p {
  margin: 0 0 5px;
  color: #9faca5;
  font-size: 0.8rem;
  line-height: 1.7;
}

.product-workspace {
  min-height: 620px;
  margin-top: 64px;
  display: grid;
  grid-template-columns: 190px 1fr;
  overflow: hidden;
  color: #243029;
  background: #f5f7f6;
  border: 1px solid #4c5a54;
  border-radius: 8px;
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

.product-workspace > aside {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  color: #dce4df;
  background: #101815;
}

.product-workspace aside nav {
  margin-top: 46px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-workspace aside nav span {
  padding: 11px 12px;
  color: #92a099;
  border-radius: 4px;
  font-size: 0.72rem;
}

.product-workspace aside nav span.is-active {
  color: #fff;
  background: #26332d;
}

.product-workspace aside > small {
  margin-top: auto;
  color: #7f8d86;
  font-size: 0.59rem;
  letter-spacing: 0.1em !important;
}

.workspace-main {
  min-width: 0;
  padding: 36px;
}

.workspace-main > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.workspace-main > header span {
  color: var(--corp-green-dark);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.workspace-main > header h3 {
  margin: 5px 0 0;
  font-size: 1.35rem;
}

.workspace-main > header button {
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: var(--corp-green-dark);
  border: 0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.71rem;
  font-weight: 700;
}

.workspace-meta {
  margin-top: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid #d8dfdb;
  border-radius: 5px;
}

.workspace-meta dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, auto 1fr);
  align-items: center;
  gap: 8px 18px;
  font-size: 0.7rem;
}

.workspace-meta dt { color: #85908a; }
.workspace-meta dd { margin: 0; font-weight: 700; }

.workspace-chart {
  margin-top: 16px;
  padding: 20px 26px;
  background: #fff;
  border: 1px solid #d8dfdb;
  border-radius: 5px;
}

.workspace-chart__top {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.71rem;
}

.workspace-chart__top span { color: #7e8983; }

.format-section {
  background: #e9eeea;
}

.format-section__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: end;
  gap: 100px;
}

.format-list {
  border-top: 1px solid #9faaa4;
}

.format-list > div {
  min-height: 106px;
  display: grid;
  grid-template-columns: 170px 80px 1fr;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid #b9c3bd;
}

.format-list strong { font-size: 1.08rem; }
.format-list span { color: var(--corp-green-dark); font-size: 0.74rem; font-weight: 800; }
.format-list p { margin: 0; color: var(--corp-muted); font-size: 0.87rem; }

.security-band--detail {
  padding: 132px 0;
}

.security-detail-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 110px;
}

.security-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #405048;
}

.security-checklist li {
  min-height: 132px;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  border-bottom: 1px solid #405048;
}

.security-checklist li > span {
  color: #70d4aa;
  font-size: 0.69rem;
  font-weight: 800;
}

.security-checklist strong { font-size: 1.08rem; }
.security-checklist p { margin: 9px 0 0; color: #aab6b0; font-size: 0.87rem; line-height: 1.7; }

.poc-section {
  background: #fff;
}

.poc-section__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
  gap: 90px;
}

.poc-status {
  min-height: 400px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  background: #e8eeea;
  border-left: 5px solid var(--corp-green);
  border-radius: 0 6px 6px 0;
}

.poc-status > span {
  color: var(--corp-green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em !important;
}

.poc-status strong {
  margin-top: auto;
  font-size: 4.6rem;
  line-height: 1;
}

.poc-status small {
  margin-top: 12px;
  color: var(--corp-muted);
}

.poc-copy {
  padding-top: 30px;
}

.poc-copy > p:not(.eyebrow):not(.support-note) {
  margin: 28px 0 0;
  color: var(--corp-muted);
  line-height: 1.9;
}

.support-note {
  margin: 34px 0 0;
  padding: 18px 20px;
  color: #34413a;
  background: #eef4ef;
  border-left: 3px solid var(--corp-green);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.6;
}

.final-cta--product {
  background: #e5ece7;
}

/* TB-FLOW product page */
.tbflow-hero {
  position: relative;
  min-height: clamp(680px, 80svh, 820px);
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background: #dcece8;
}

.tbflow-hero__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: right top;
}

.tbflow-hero__shade {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 57%;
  background: rgba(10, 35, 32, 0.95);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.tbflow-hero__content {
  min-height: inherit;
  padding-top: 88px;
  padding-bottom: 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.tbflow-hero__content h1 {
  margin: 0;
  color: #fff;
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
}

.tbflow-hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}

.tbflow-mobile-break { display: none; }

.tbflow-hero__copy {
  max-width: 630px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.85;
}

.tbflow-hero__footer {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em !important;
}

.tbflow-source-band {
  background: #fff;
  border-bottom: 1px solid var(--corp-line);
}

.tbflow-source-band__inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: stretch;
}

.tbflow-source-band__inner > p {
  margin: 0;
  display: flex;
  align-items: center;
  color: var(--corp-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em !important;
}

.tbflow-source-band ul {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.tbflow-source-band li {
  min-width: 0;
  padding: 18px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #334149;
  border-left: 1px solid var(--corp-line);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.4;
}

.tbflow-problem {
  background: #f4f6f3;
}

.tbflow-problem-list {
  margin-top: 82px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid #aeb7b1;
}

.tbflow-problem-list article {
  min-height: 250px;
  padding: 32px 42px 24px 0;
  border-right: 1px solid var(--corp-line);
}

.tbflow-problem-list article:not(:first-child) { padding-left: 42px; }
.tbflow-problem-list article:last-child { padding-right: 0; border-right: 0; }
.tbflow-problem-list span { color: var(--corp-blue); font-size: 0.72rem; font-weight: 800; }
.tbflow-problem-list h3 { margin: 48px 0 14px; font-size: 1.25rem; }
.tbflow-problem-list p { margin: 0; color: var(--corp-muted); font-size: 0.9rem; line-height: 1.75; }

.tbflow-flow-section {
  background: #fff;
}

.tbflow-flow-list {
  --tbflow-line: #cbd5d1;
  position: relative;
  isolation: isolate;
  margin: 72px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid #aeb9b4;
  border-bottom: 1px solid #aeb9b4;
  list-style: none;
}

.tbflow-flow-list::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 86px;
  left: 28px;
  right: 28px;
  height: 1px;
  background: var(--tbflow-line);
}

.tbflow-flow-step {
  --tbflow-step-color: #0c776d;
  position: relative;
  min-width: 0;
  min-height: 414px;
  padding: 28px 28px 32px;
  border-right: 1px solid var(--corp-line);
  list-style: none;
}

.tbflow-flow-step:last-child { border-right: 0; }
.tbflow-flow-step--collect { --tbflow-step-color: #2e73a4; }
.tbflow-flow-step--normalize { --tbflow-step-color: #bd7f19; }
.tbflow-flow-step--observe { --tbflow-step-color: #0f514b; }
.tbflow-flow-step--access { --tbflow-step-color: #b84d42; }

.tbflow-flow-step__module {
  margin: 0;
  color: var(--tbflow-step-color);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
}

.tbflow-flow-step__marker {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  margin-top: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--tbflow-step-color);
  border-radius: 4px;
  box-shadow: 0 0 0 9px #fff;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
}

.tbflow-flow-step__body { margin-top: 30px; }

.tbflow-flow-step__body h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.42;
}

.tbflow-flow-step__body > p {
  min-height: 88px;
  margin: 12px 0 0;
  color: var(--corp-muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

.tbflow-flow-keywords {
  margin: 22px 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  border-top: 1px solid var(--corp-line);
  list-style: none;
}

.tbflow-flow-keywords li {
  padding-left: 7px;
  display: inline-flex;
  align-items: center;
  color: #586762;
  border-left: 2px solid var(--tbflow-step-color);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.4;
  list-style: none;
}

.tbflow-views-section {
  padding: 132px 0;
  color: #fff;
  background: #142421;
}

.tbflow-views__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
  align-items: end;
  gap: 90px;
}

.tbflow-views__heading h2,
.tbflow-trust__heading h2 {
  margin: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.24;
}

.tbflow-views__heading h2 { color: #fff; }

.tbflow-views__heading > p {
  margin: 0 0 4px;
  color: #aebdb8;
  font-size: 0.9rem;
  line-height: 1.8;
}

.tbflow-view-tabs {
  margin-top: 58px;
  display: inline-flex;
  border: 1px solid #4a5b56;
  border-radius: 4px;
  overflow: hidden;
}

.tbflow-view-tabs button {
  min-height: 48px;
  padding: 0 20px;
  color: #b9c7c2;
  background: transparent;
  border: 0;
  border-right: 1px solid #4a5b56;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
}

.tbflow-view-tabs button:last-child { border-right: 0; }
.tbflow-view-tabs button:hover { color: #fff; background: #263a35; }
.tbflow-view-tabs button[aria-selected="true"] { color: #081510; background: #69d9ad; }
.tbflow-view-tabs button:focus-visible { outline: 2px solid #9af0cf; outline-offset: -3px; }

.tbflow-view-panels figure {
  margin: 30px 0 0;
}

.tbflow-view-panels figure[hidden] { display: none; }

.tbflow-view-frame {
  height: clamp(560px, 58vw, 760px);
  overflow: hidden;
  background: #e3f0ec;
  border: 1px solid #4e625c;
  border-radius: 6px;
}

.tbflow-view-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.tbflow-view-panels figcaption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #92a39d;
  font-size: 0.74rem;
}

.tbflow-view-panels figcaption span {
  color: #80dfbb;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.tbflow-trust-section {
  padding: 132px 0;
  color: var(--corp-ink);
  background: #dfe9ed;
}

.tbflow-trust__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 110px;
}

.tbflow-trust__heading .eyebrow { color: var(--corp-blue); }
.tbflow-trust__heading > p:not(.eyebrow) { margin: 28px 0 0; color: #53636a; line-height: 1.85; }

.tbflow-trust-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #aebfc7;
  list-style: none;
}

.tbflow-trust-list li {
  min-height: 112px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid #aebfc7;
}

.tbflow-trust-list li > span { padding-top: 3px; color: var(--corp-blue); font-size: 0.7rem; font-weight: 800; }
.tbflow-trust-list strong { font-size: 1.02rem; }
.tbflow-trust-list p { margin: 8px 0 0; color: #53636a; font-size: 0.88rem; line-height: 1.7; }

.tbflow-usecases {
  background: #fff;
}

.tbflow-usecase-grid {
  margin-top: 78px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #aeb7b1;
  border-bottom: 1px solid #aeb7b1;
}

.tbflow-usecase-grid article {
  min-height: 255px;
  padding: 32px 30px 34px;
  border-right: 1px solid var(--corp-line);
}

.tbflow-usecase-grid article:first-child { padding-left: 0; }
.tbflow-usecase-grid article:last-child { padding-right: 0; border-right: 0; }
.tbflow-usecase-grid span { color: var(--corp-coral); font-size: 0.7rem; font-weight: 800; }
.tbflow-usecase-grid h3 { margin: 46px 0 14px; font-size: 1.12rem; }
.tbflow-usecase-grid p { margin: 0; color: var(--corp-muted); font-size: 0.88rem; line-height: 1.75; }

.final-cta--tbflow {
  color: #fff;
  background: #17354a;
}

.final-cta--tbflow h2 { color: #fff; }
.final-cta--tbflow .eyebrow { color: #83d8c3; }

/* Corporate contact */
.contact-corporate-main {
  padding: 110px 0 130px;
  background: #eef1ee;
}

.contact-corporate-header {
  max-width: 900px;
}

.contact-corporate-header h1 {
  margin: 0;
  font-size: 4rem;
  line-height: 1.2;
}

.contact-corporate-header > p:not(.eyebrow) {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--corp-muted);
  font-size: 1.05rem;
  line-height: 1.85;
}

.contact-corporate-grid {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1px;
  background: #c7cfca;
  border: 1px solid #c7cfca;
}

.contact-primary,
.contact-guide {
  min-height: 440px;
  padding: 48px;
  background: #fff;
}

.contact-primary h2,
.contact-guide h2 {
  margin: 0;
  font-size: 1.5rem;
}

.contact-primary > p,
.contact-guide > p {
  margin: 16px 0 0;
  color: var(--corp-muted);
  line-height: 1.75;
}

.contact-email-box {
  margin-top: 52px;
  padding: 26px 0;
  border-top: 1px solid var(--corp-line);
  border-bottom: 1px solid var(--corp-line);
}

.contact-email-box > span {
  display: block;
  color: var(--corp-green-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em !important;
}

.contact-email-row {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-email-row strong {
  min-width: 0;
  font-size: 1.35rem;
  overflow-wrap: anywhere;
}

.contact-email-row button {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--corp-ink);
  background: #eef3ef;
  border: 1px solid #ccd6d0;
  border-radius: 4px;
  cursor: pointer;
}

.contact-email-row button svg { width: 18px; height: 18px; }
.contact-email-row button.is-copied { color: #fff; background: var(--corp-green-dark); border-color: var(--corp-green-dark); }

.contact-feedback {
  min-height: 24px;
  margin: 12px 0 0 !important;
  color: var(--corp-green-dark) !important;
  font-size: 0.78rem;
}

.contact-guide ol {
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--corp-line);
}

.contact-guide li {
  min-height: 66px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--corp-line);
  color: #3d4942;
  font-size: 0.9rem;
}

.contact-guide li span {
  color: var(--corp-coral);
  font-size: 0.7rem;
  font-weight: 800;
}

@media (max-width: 1100px) {
  :root {
    --corp-container: min(100% - 48px, 1040px);
  }

  .corporate-nav { gap: 20px; }
  .company-hero__content h1 { font-size: 4.25rem; }
  .product-hero__content h1 { font-size: 3.65rem; }
  .section-heading h2,
  .security-copy h2,
  .company-section h2,
  .product-workspace-heading h2,
  .poc-copy h2 { font-size: 2.6rem; }

  .section-heading--split { gap: 60px; }
  .flagship-section__header { gap: 60px; }
  .flagship-section__header h2 { font-size: 3.7rem; }
  .tbflow-showcase__header { gap: 60px; }
  .tbflow-showcase__header h2 { font-size: 3.7rem; }
  .tbflow-showcase__header h3 { font-size: 2.4rem; }
  .security-band__inner { grid-template-columns: 1fr; gap: 68px; }
  .projects-intro__grid { gap: 56px; }
  .company-section__grid { gap: 70px; }
  .architecture-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace-meta dl { grid-template-columns: repeat(3, auto 1fr); }
  .format-section__grid { gap: 60px; }
  .tbflow-hero__shade { width: 64%; }
  .tbflow-flow-step__body h3 { min-height: 3.3rem; }
  .tbflow-views__heading h2,
  .tbflow-trust__heading h2 { font-size: 2.6rem; }
  .tbflow-trust__grid { gap: 70px; }
}

@media (max-width: 880px) {
  :root {
    --corp-container: calc(100% - 36px);
  }

  .corporate-header.site-header,
  .corporate-header__inner { min-height: 68px; }

  .corporate-menu-toggle { display: block; }

  .corporate-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    max-height: 0;
    padding: 0 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    background: #fff;
    border-bottom: 0 solid #d7ddd9;
    transition: max-height 220ms ease, padding 220ms ease, border-width 220ms ease;
  }

  .corporate-nav.is-open {
    max-height: 620px;
    padding-top: 10px;
    padding-bottom: 18px;
    border-bottom-width: 1px;
  }

  .corporate-nav > a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #edf0ee;
  }

  .corporate-nav > a::after { display: none; }
  .corporate-nav .corporate-nav__cta { margin-top: 10px; justify-content: space-between; border-bottom: 0; }

  .corporate-nav__group {
    display: block;
    border-bottom: 1px solid #edf0ee;
  }

  .corporate-nav__trigger {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
  }

  .corporate-nav__trigger::before { display: none; }

  .corporate-nav__submenu {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    visibility: hidden;
    opacity: 1;
    pointer-events: none;
    overflow: hidden;
    background: #f4f7f5;
    border: 0;
    border-radius: 3px;
    box-shadow: none;
    transform: none;
    transition: max-height 180ms ease, padding 180ms ease;
  }

  .corporate-nav__group.is-open .corporate-nav__submenu {
    max-height: 170px;
    padding: 6px;
    pointer-events: auto;
    transform: none;
  }

  .corporate-nav__submenu a {
    min-height: 68px;
    padding: 11px 12px;
  }

  .company-hero,
  .product-hero { min-height: 650px; }

  .company-hero__image,
  .product-hero__image { object-position: 60% center; }
  .company-hero__content,
  .product-hero__content { padding-top: 64px; padding-bottom: 100px; }
  .company-hero__content h1 { font-size: 3.8rem; }
  .company-hero__lead { font-size: 1.5rem; }
  .product-hero__content h1 { font-size: 3.2rem; }

  .proof-band__inner { grid-template-columns: 1fr; }
  .proof-item { padding: 20px 0; grid-template-columns: 110px 1fr; }
  .proof-item:first-child { border-right: 0; border-bottom: 1px solid var(--corp-line); }

  .flagship-section__header,
  .flagship-section__statement { grid-template-columns: 1fr; gap: 32px; }
  .flagship-section__header > p { max-width: 680px; }
  .flagship-section__statement { margin-top: 68px; padding-top: 52px; }
  .flagship-capabilities { grid-template-columns: 1fr; }
  .flagship-capabilities li,
  .flagship-capabilities li:first-child,
  .flagship-capabilities li:last-child {
    min-height: 0;
    padding: 30px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }
  .flagship-capabilities li:last-child { border-bottom: 0; }
  .flagship-capabilities h3 { margin-top: 24px; }

  .tbflow-showcase__header { grid-template-columns: 1fr; gap: 32px; }
  .tbflow-showcase__header > div:last-child > p { max-width: 680px; }
  .tbflow-showcase__visual { margin-top: 58px; }
  .tbflow-showcase__screen { height: clamp(420px, 67vw, 560px); }
  .tbflow-showcase__capabilities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tbflow-showcase__capabilities li { min-height: 210px; }
  .tbflow-showcase__capabilities li:nth-child(2) { padding-right: 0; border-right: 0; }
  .tbflow-showcase__capabilities li:nth-child(3) { padding-left: 0; border-top: 1px solid #c5d0d1; }
  .tbflow-showcase__capabilities li:nth-child(4) { padding-right: 0; border-top: 1px solid #c5d0d1; border-right: 0; }

  .corp-section,
  .architecture-section,
  .company-section { padding: 100px 0; }
  .security-band,
  .security-band--detail,
  .product-workspace-section { padding: 100px 0; }

  .section-heading--split,
  .product-intro__grid,
  .product-workspace-heading,
  .format-section__grid,
  .security-detail-grid,
  .poc-section__grid,
  .company-section__grid { grid-template-columns: 1fr; gap: 42px; }
  .section-heading--split > p { margin-top: 0; }
  .product-intro__body { padding-top: 0; }

  .problem-list,
  .solution-flow,
  .partnership-list,
  .capability-grid { grid-template-columns: 1fr; }
  .problem-list article,
  .problem-list article:not(:first-child),
  .partnership-list article,
  .partnership-list article:not(:first-child),
  .capability-grid article,
  .capability-grid article:nth-child(3n + 2),
  .capability-grid article:nth-child(3n + 3) {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }
  .problem-list h3,
  .partnership-list h3,
  .capability-grid h3 { margin-top: 34px; }

  .solution-flow { gap: 14px; }
  .solution-flow li { min-height: 0; display: grid; grid-template-columns: 46px 190px 1fr; column-gap: 24px; align-items: center; }
  .solution-flow__number { align-self: start; }
  .solution-flow__visual { width: 190px; height: 180px; margin: 0; grid-row: span 2; }
  .solution-flow h3 { align-self: end; }
  .solution-flow p { align-self: start; }

  .console-topbar { grid-template-columns: 1fr auto; }
  .console-tabs { grid-column: 1 / -1; grid-row: 2; padding-bottom: 12px; }
  .console-demo-label { grid-column: 2; grid-row: 1; }
  .console-body { grid-template-columns: 130px 1fr; }
  .console-content { padding: 24px; }
  .console-data-grid { grid-template-columns: 1fr; }
  .console-body { min-height: 760px; }
  .analysis-layout { grid-template-columns: 1fr; }
  .analysis-meta { min-height: 0; }
  .analysis-meta dl { grid-template-columns: 72px 1fr 72px 1fr; }

  .roadmap { grid-template-columns: 1fr; border-top: 0; border-left: 2px solid #cdd4d0; }
  .roadmap li { min-height: 160px; padding: 0 0 34px 34px; }
  .roadmap li::before { top: 0; left: -7px; }
  .roadmap h3 { margin-top: 20px; }

  .partnership-action { align-items: flex-start; flex-direction: column; }
  .projects-intro__grid { grid-template-columns: 1fr; }
  .projects-intro__visual { order: 2; }
  .company-section__body { padding-top: 0; }

  .architecture-flow li { min-height: 400px; }
  .product-workspace { grid-template-columns: 140px 1fr; }
  .workspace-main { padding: 28px 22px; }
  .workspace-meta dl { grid-template-columns: auto 1fr auto 1fr; }
  .format-list > div { grid-template-columns: 140px 70px 1fr; }
  .poc-status { min-height: 300px; }

  .tbflow-hero { min-height: 720px; }
  .tbflow-hero__shade { width: 76%; }
  .tbflow-hero__content { padding-top: 72px; padding-bottom: 110px; }
  .tbflow-hero__content h1 { font-size: 4.2rem; }
  .tbflow-hero__lead { font-size: 1.7rem; }
  .tbflow-source-band__inner { grid-template-columns: 1fr; }
  .tbflow-source-band__inner > p { min-height: 54px; }
  .tbflow-source-band ul { grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--corp-line); }
  .tbflow-source-band li { min-height: 58px; }
  .tbflow-source-band li:nth-child(3n + 1) { border-left: 0; }
  .tbflow-source-band li:nth-child(n + 4) { border-top: 1px solid var(--corp-line); }
  .tbflow-problem-list { grid-template-columns: 1fr; }
  .tbflow-problem-list article,
  .tbflow-problem-list article:not(:first-child),
  .tbflow-problem-list article:last-child {
    min-height: 0;
    padding: 28px 0 34px;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }
  .tbflow-problem-list article:last-child { border-bottom: 0; }
  .tbflow-problem-list h3 { margin-top: 32px; }
  .tbflow-flow-list {
    display: block;
  }
  .tbflow-flow-list::before {
    top: 49px;
    right: auto;
    bottom: 49px;
    left: 21px;
    width: 1px;
    height: auto;
  }
  .tbflow-flow-step {
    min-height: 0;
    padding: 28px 0 34px 74px;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }
  .tbflow-flow-step:last-child { border-bottom: 0; }
  .tbflow-flow-step__marker {
    position: absolute;
    top: 28px;
    left: 0;
    margin: 0;
  }
  .tbflow-flow-step__body { margin-top: 12px; }
  .tbflow-flow-step__body h3 { min-height: 0; }
  .tbflow-flow-step__body > p { min-height: 0; max-width: 640px; }
  .tbflow-flow-keywords { max-width: 640px; }
  .tbflow-views-section,
  .tbflow-trust-section { padding: 100px 0; }
  .tbflow-views__heading,
  .tbflow-trust__grid { grid-template-columns: 1fr; gap: 42px; }
  .tbflow-views__heading > p { max-width: 640px; }
  .tbflow-view-frame { height: clamp(500px, 70vw, 650px); }
  .tbflow-usecase-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tbflow-usecase-grid article { min-height: 220px; }
  .tbflow-usecase-grid article:nth-child(2) { padding-right: 0; border-right: 0; }
  .tbflow-usecase-grid article:nth-child(3) { padding-left: 0; border-top: 1px solid var(--corp-line); }
  .tbflow-usecase-grid article:nth-child(4) { padding-right: 0; border-top: 1px solid var(--corp-line); border-right: 0; }

  .contact-corporate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  :root { --corp-container: calc(100% - 28px); }

  .company-hero,
  .product-hero { min-height: 620px; }

  .company-hero__image,
  .product-hero__image { object-position: 63% center; }
  .company-hero__shade,
  .product-hero__shade { background: rgba(7, 12, 12, 0.72); }
  .company-hero__content h1 { font-size: 3.05rem; }
  .company-hero__lead { margin-top: 20px; font-size: 1.25rem; }
  .company-hero__copy { font-size: 0.92rem; line-height: 1.72; }
  .company-hero__copy br,
  .product-hero__content > p br { display: none; }
  .product-hero__content h1 { font-size: 2.55rem; }
  .mobile-title-break { display: block; }
  .product-hero__content > p:not(.eyebrow) { margin-top: 20px; font-size: 0.92rem; line-height: 1.72; }
  .corporate-actions { width: 100%; margin-top: 28px; }
  .corp-button { width: 100%; justify-content: space-between; }
  .company-hero__marker { bottom: 20px; }
  .product-hero__footer { bottom: 20px; font-size: 0.58rem; }

  .proof-item { grid-template-columns: 1fr; gap: 7px; }
  .proof-item strong { font-size: 0.82rem; }

  .flagship-section__header h2 { font-size: 3rem; }
  .flagship-section__statement h3 { font-size: 2rem; }
  .flagship-capabilities { margin-top: 48px; }
  .flagship-section__action { margin-top: 42px; align-items: stretch; flex-direction: column; gap: 26px; }

  .tbflow-showcase__header h2 { font-size: 3rem; }
  .tbflow-showcase__header h3 { font-size: 2rem; }
  .tbflow-showcase__header > div:last-child > p { font-size: 0.9rem; }
  .tbflow-showcase__screen { height: 360px; }
  .tbflow-showcase__screen img { width: 100%; height: 100%; object-fit: cover; object-position: left top; }
  .tbflow-showcase__visual figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .tbflow-showcase__capabilities { margin-top: 48px; grid-template-columns: 1fr; }
  .tbflow-showcase__capabilities li,
  .tbflow-showcase__capabilities li:first-child,
  .tbflow-showcase__capabilities li:nth-child(2),
  .tbflow-showcase__capabilities li:nth-child(3),
  .tbflow-showcase__capabilities li:nth-child(4) {
    min-height: 0;
    padding: 28px 0 32px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #c5d0d1;
  }
  .tbflow-showcase__capabilities li:last-child { border-bottom: 0; }
  .tbflow-showcase__capabilities h3 { margin-top: 22px; }
  .tbflow-showcase__action { margin-top: 42px; align-items: stretch; flex-direction: column; gap: 26px; }

  .corp-section,
  .architecture-section,
  .company-section { padding: 78px 0; }
  .security-band,
  .security-band--detail,
  .product-workspace-section { padding: 78px 0; }

  .section-heading h2,
  .security-copy h2,
  .company-section h2,
  .product-workspace-heading h2,
  .poc-copy h2,
  .final-cta h2,
  .projects-intro__copy h2 { font-size: 2rem; }
  .section-heading > p:not(.eyebrow),
  .section-heading--wide > p:not(.eyebrow) { margin-top: 20px; font-size: 0.9rem; }

  .problem-list,
  .solution-flow,
  .partnership-list,
  .capability-grid { margin-top: 52px; }

  .solution-flow li { padding: 22px; display: block; }
  .solution-flow__visual { width: 100%; height: 190px; margin: 24px 0; }

  .labbridge-console { margin-top: 44px; }
  .console-topbar { padding: 14px; gap: 12px; }
  .console-brand strong { display: none; }
  .console-tabs { width: 100%; justify-content: stretch; overflow-x: auto; }
  .console-tabs button { flex: 1 0 auto; padding: 0 10px; }
  .console-body { min-height: 650px; display: block; }
  .console-sidebar { display: none; }
  .console-content { padding: 18px 14px 24px; }
  .console-panel { min-height: 590px; }
  .console-panel__heading { flex-direction: column; }
  .console-stat-grid { grid-template-columns: 1fr 1fr; }
  .console-stat-grid > div:first-child { grid-column: 1 / -1; }
  .console-data-grid { grid-template-columns: 1fr; }
  .console-chart-block { display: none; }
  .agent-row { grid-template-columns: 12px 1fr 54px; }
  .agent-row span { display: none; }
  .file-row { grid-template-columns: minmax(150px, 1fr) 68px 52px; gap: 8px; padding: 0 10px; }
  .file-row span:nth-child(3) { display: none; }
  .analysis-layout { display: block; }
  .analysis-meta dl { grid-template-columns: 68px 1fr; }
  .line-chart { min-height: 250px; margin-top: 12px; padding: 34px 12px 20px 30px; }
  .demo-caption { text-align: left; line-height: 1.6; }

  .security-diagram { grid-template-columns: 1fr; gap: 0; }
  .security-node { min-height: 150px; }
  .security-diagram > i { height: 42px; }
  .security-diagram > i::before { top: 6px; bottom: 6px; left: 50%; right: auto; width: 1px; height: auto; }
  .security-diagram > i::after { right: auto; left: calc(50% - 3px); top: auto; bottom: 6px; transform: rotate(135deg); }

  .projects-intro__grid { gap: 42px; }
  .partnership-action .corp-button { width: 100%; }
  .final-cta { padding: 72px 0; }
  .final-cta__inner { align-items: stretch; flex-direction: column; gap: 34px; }

  .corporate-footer__top { min-height: 0; flex-direction: column; }
  .corporate-footer__top nav { justify-content: flex-start; }
  .corporate-footer__bottom { padding: 22px 0; align-items: flex-start; flex-direction: column; }

  .corporate-logo {
    flex-basis: auto;
  }

  .official-wordmark-image {
    width: 162px;
  }

  .architecture-flow { grid-template-columns: 1fr; }
  .architecture-flow li { min-height: 360px; }

  .product-workspace { min-height: 500px; display: block; }
  .product-workspace > aside { display: none; }
  .workspace-main { padding: 22px 14px; }
  .workspace-main > header { align-items: stretch; flex-direction: column; }
  .workspace-main > header button { align-self: flex-start; }
  .workspace-meta dl { grid-template-columns: 78px 1fr; row-gap: 12px; }
  .workspace-chart { padding: 14px; }
  .workspace-chart__top { align-items: flex-start; flex-direction: column; gap: 4px; }

  .format-list > div { min-height: 110px; grid-template-columns: 1fr 56px; }
  .format-list p { grid-column: 1 / -1; margin-top: -22px; }
  .security-checklist li { grid-template-columns: 36px 1fr; }
  .poc-status { min-height: 260px; padding: 28px; }
  .poc-status strong { font-size: 3.7rem; }

  .tbflow-hero { min-height: 690px; }
  .tbflow-hero__image { object-position: 38% top; }
  .tbflow-hero__shade { width: 100%; background: rgba(10, 35, 32, 0.9); border-right: 0; }
  .tbflow-hero__content h1 { font-size: 3.2rem; }
  .tbflow-hero__lead { margin-top: 22px; font-size: 1.45rem; }
  .tbflow-mobile-break { display: block; }
  .tbflow-hero__copy { margin-top: 16px; font-size: 0.9rem; line-height: 1.75; }
  .tbflow-hero__footer { bottom: 20px; font-size: 0.56rem; }
  .tbflow-hero__footer span:last-child { display: none; }
  .tbflow-source-band__inner > p { min-height: 50px; }
  .tbflow-source-band ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tbflow-source-band li:nth-child(3n + 1) { border-left: 1px solid var(--corp-line); }
  .tbflow-source-band li:nth-child(2n + 1) { border-left: 0; }
  .tbflow-source-band li:nth-child(n + 3) { border-top: 1px solid var(--corp-line); }
  .tbflow-problem-list { margin-top: 52px; }
  .tbflow-flow-list { margin-top: 50px; }
  .tbflow-flow-list::before {
    top: 45px;
    bottom: 45px;
    left: 18px;
  }
  .tbflow-flow-step { padding: 27px 0 31px 58px; }
  .tbflow-flow-step__marker {
    top: 27px;
    width: 36px;
    height: 36px;
    box-shadow: 0 0 0 7px #fff;
    font-size: 0.62rem;
  }
  .tbflow-flow-step__body { margin-top: 10px; }
  .tbflow-flow-step__body h3 { font-size: 1.08rem; }
  .tbflow-flow-step__body > p { margin-top: 8px; }
  .tbflow-flow-keywords { margin-top: 18px; padding-top: 14px; }
  .tbflow-views-section,
  .tbflow-trust-section { padding: 78px 0; }
  .tbflow-views__heading h2,
  .tbflow-trust__heading h2 { font-size: 2rem; }
  .tbflow-view-tabs { width: 100%; margin-top: 42px; overflow-x: auto; }
  .tbflow-view-tabs button { flex: 1 0 auto; min-height: 46px; padding: 0 14px; }
  .tbflow-view-frame { height: 410px; }
  .tbflow-view-frame img { width: 100%; height: 100%; object-fit: cover; object-position: left top; }
  .tbflow-view-panels figcaption { align-items: flex-start; flex-direction: column; gap: 5px; line-height: 1.5; }
  .tbflow-trust-list li { grid-template-columns: 36px 1fr; }
  .tbflow-usecase-grid { margin-top: 52px; grid-template-columns: 1fr; }
  .tbflow-usecase-grid article,
  .tbflow-usecase-grid article:first-child,
  .tbflow-usecase-grid article:nth-child(2),
  .tbflow-usecase-grid article:nth-child(3),
  .tbflow-usecase-grid article:nth-child(4) {
    min-height: 0;
    padding: 28px 0 32px;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--corp-line);
  }
  .tbflow-usecase-grid article:last-child { border-bottom: 0; }
  .tbflow-usecase-grid h3 { margin-top: 26px; }

  .contact-corporate-main { padding: 78px 0 90px; }
  .contact-corporate-header h1 { font-size: 2.7rem; }
  .contact-corporate-grid { margin-top: 48px; }
  .contact-primary,
  .contact-guide { min-height: 0; padding: 32px 24px; }
  .contact-email-row { align-items: flex-start; }
  .contact-email-row strong { font-size: 1.02rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .corporate-nav,
  .corporate-nav__submenu,
  .corporate-nav__chevron,
  .corporate-menu-toggle span,
  .corp-button { transition: none; }
}
