:root {
  --clab-ink: #202a2c;
  --clab-ink-soft: #4e5b5d;
  --clab-line: #d7e1df;
  --clab-line-dark: #344345;
  --clab-white: #ffffff;
  --clab-mist: #f2f7f6;
  --clab-sand: #f6f4ee;
  --clab-dark: #1f2d2f;
  --clab-teal: #2f9692;
  --clab-teal-dark: #247b78;
  --clab-teal-light: #dff1ef;
  --clab-orange: #ef6f3f;
  --clab-container: 1180px;
  --clab-shadow: 0 20px 60px rgba(25, 47, 48, .10);
  --clab-radius: 2px;
}

#wrapper {
  overflow: initial;
}


/* =========================================================
   Scoped Base / Reset for Clab Area (.clab-page)
   ========================================================= */
.clab-page {
  box-sizing: border-box;
  color: var(--clab-ink);
  background: var(--clab-white);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

.clab-page *,
.clab-page *::before,
.clab-page *::after {
  box-sizing: border-box;
}

.clab-page img,
.clab-page svg {
  max-width: 100%;
  vertical-align: initial;
}

.clab-page a {
  /* color: inherit; */
  text-decoration: none;
}

.clab-page a:focus-visible {
  outline: 3px solid var(--clab-orange);
  outline-offset: 4px;
}

.clab-page h1,
.clab-page h2,
.clab-page h3 {
  font-weight: bold;
  line-height: 1.9;
}

.clab-page ul,
.clab-page ol {
  padding: 0;
}

.clab-page p,
.clab-page dt,
.clab-page dd {
  line-height: 1.9;
}

.clab-page em {
  font-style: normal;
}

/* =========================================================
   Components & Sections
   ========================================================= */
.clab-container {
  width: min(calc(100% - 48px), var(--clab-container));
  margin-inline: auto;
}

.clab-skip {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  transform: translateY(-150%);
  background: var(--clab-ink);
  color: #fff;
  padding: 8px 14px;
}
.clab-skip:focus { transform: none; }

/* Common */
.clab-section { padding: clamp(82px, 8.5vw, 132px) 0; }
.clab-section--white { background: #fff; }
.clab-section--mist { background: var(--clab-mist); }
.clab-section--sand { background: var(--clab-sand); }
.clab-section--dark { background: var(--clab-dark); color: #fff; }
.clab-section--teal { background: var(--clab-teal); color: #fff; }
.clab-kicker {
  color: var(--clab-teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  line-height: 1.4;
}
.clab-heading { max-width: 820px; margin-bottom: clamp(42px, 5.5vw, 72px); }
.clab-heading--center { margin-inline: auto; text-align: center; }
.clab-heading--center p { text-align: center; }
.clab-heading h2 {
  margin-top: 14px;
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.36;
  letter-spacing: -.035em;
}
.clab-heading > p:last-child { margin-top: 22px; color: var(--clab-ink-soft); font-size: 16px; line-height: 2; }
.clab-heading--light .clab-kicker { color: #70d0cb; }
.clab-heading--light > p:last-child { color: rgba(255,255,255,.72); }
.clab-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--clab-ink);
  padding: 15px 22px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.clab-button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(22,45,47,.12); }
.clab-button span { font-size: 18px; line-height: 1; }
.clab-button--primary { border-color: var(--clab-teal); background: var(--clab-teal); color: #fff; }
.clab-button--primary:hover { background: var(--clab-teal-dark); }
.clab-button--ghost { background: #fff; }
.clab-button--orange { border-color: var(--clab-orange); background: var(--clab-orange); color: #fff; }
.clab-button--light { border-color: rgba(255,255,255,.55); background: transparent; color: #fff; }
.clab-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.clab-actions--center { justify-content: center; }
.clab-caption { margin-top: 24px; color: #718082; font-size: 12px; line-height: 1.8; }
.clab-caption--light { color: rgba(255,255,255,.7); text-align: center; }
.clab-center-action { margin-top: 42px; text-align: center; }
.clab-text-button { display: inline-flex; align-items: center; gap: 32px; border-bottom: 1px solid var(--clab-ink); padding: 8px 0; font-size: 14px; font-weight: 700; }

/* Hero */
.clab-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #f8fbfa 0%, #fff 55%, #edf7f5 100%);
}
.clab-hero__grid,
.clab-final__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(47,150,146,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(47,150,146,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, #000 0%, transparent 72%);
}
.clab-hero::before {
  content: "";
  position: absolute;
  top: -280px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(47,150,146,.15);
  border-radius: 50%;
}
.clab-hero__inner {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(480px, .95fr);
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
  padding-block: 70px 84px;
}
.clab-hero__content { max-width: 670px; }
.clab-hero h1 {
  margin-top: 16px;
  font-size: clamp(46px, 5.4vw, 72px);
  line-height: 1.16;
  letter-spacing: -.055em;
}
.clab-hero__lead { margin-top: 28px; font-size: clamp(23px, 2.5vw, 34px); font-weight: 700; line-height: 1.65; letter-spacing: -.025em; }
.clab-hero__lead em { position: relative; color: var(--clab-teal-dark); }
.clab-hero__lead em::after { content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 5px; background: var(--clab-teal-light); z-index: -1; }
.clab-hero__body { margin-top: 28px; max-width: 630px; color: var(--clab-ink-soft); font-size: 15px; }
.clab-hero__body p + p { margin-top: 12px; }
.clab-hero__note { margin-top: 24px; padding-left: 15px; border-left: 2px solid var(--clab-teal); color: #6a7779; font-size: 12px; }
.clab-hero__visual { min-height: 520px; display: grid; place-items: center; }
.clab-orbit { position: relative; width: 470px; aspect-ratio: 1; }
.clab-orbit::before,
.clab-orbit::after { content: ""; position: absolute; inset: 60px; border: 1px solid rgba(47,150,146,.26); border-radius: 50%; }
.clab-orbit::after { inset: 105px; border-style: dashed; animation: clab-spin 35s linear infinite; }
@keyframes clab-spin { to { transform: rotate(360deg); } }
.clab-orbit__core {
  position: absolute;
  inset: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clab-dark);
  color: #fff;
  box-shadow: 0 28px 60px rgba(26,55,56,.22);
  text-align: center;
}
.clab-orbit__core span,
.clab-orbit__core small { font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .16em; color: #83d5d1; }
.clab-orbit__core strong { margin-block: 5px; font-size: 25px; }
.clab-orbit__item {
  position: absolute;
  width: 142px;
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(47,150,146,.3);
  background: rgba(255,255,255,.95);
  padding: 13px 15px;
  box-shadow: 0 12px 28px rgba(31,63,64,.09);
  font-size: 13px;
  font-weight: 700;
}
.clab-orbit__item span { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; }
.clab-orbit__item--01 { top: 10px; left: 164px; }
.clab-orbit__item--02 { top: 130px; right: -12px; }
.clab-orbit__item--03 { right: 20px; bottom: 55px; }
.clab-orbit__item--04 { left: 6px; bottom: 55px; }
.clab-orbit__item--05 { top: 130px; left: -22px; }
.clab-hero__facts { position: relative; border-top: 1px solid rgba(47,150,146,.18); background: rgba(255,255,255,.78); }
.clab-hero__facts-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.clab-hero__facts p { min-height: 108px; display: flex; flex-direction: column; justify-content: center; padding: 20px 32px; border-left: 1px solid rgba(47,150,146,.18); }
.clab-hero__facts p:last-child { border-right: 1px solid rgba(47,150,146,.18); }
.clab-hero__facts strong { color: var(--clab-teal-dark); font-family: Arial, sans-serif; font-size: 21px; letter-spacing: .04em; }
.clab-hero__facts span { margin-top: 3px; color: #667376; font-size: 11px; }

/* Basic */
.clab-basic { display: grid; grid-template-columns: .78fr 1.22fr; gap: clamp(50px, 7vw, 100px); align-items: start; }
.clab-basic__intro { position: sticky; top: 30px; padding-top: 14px; }
.clab-basic__statement { font-size: clamp(25px, 3vw, 38px); font-weight: 700; line-height: 1.65; letter-spacing: -.03em; }
.clab-basic__statement em { color: var(--clab-teal); }
.clab-basic__intro > p:nth-child(2) { margin-top: 26px; color: var(--clab-ink-soft); font-size: 14px; }
.clab-basic__mark { position: relative; width: 160px; height: 140px; margin-top: 46px; }
.clab-basic__mark span { position: absolute; top: 20px; left: 20px; z-index: 2; font-family: Arial, sans-serif; font-size: 62px; font-weight: 800; letter-spacing: -.08em; color: var(--clab-dark); }
.clab-basic__mark::before,
.clab-basic__mark::after { content: ""; position: absolute; border: 1px solid var(--clab-teal); }
.clab-basic__mark::before { inset: 0 20px 20px 0; }
.clab-basic__mark::after { inset: 20px 0 0 20px; background: var(--clab-teal-light); z-index: -1; }
.clab-basic__mark i { position: absolute; right: 4px; top: 4px; width: 8px; height: 8px; background: var(--clab-orange); }
.clab-data-list { border-top: 2px solid var(--clab-dark); }
.clab-data-list > div { display: grid; grid-template-columns: 190px 1fr; gap: 28px; border-bottom: 1px solid var(--clab-line); padding: 20px 6px; }
.clab-data-list dt { color: #667477; font-size: 12px; font-weight: 700; }
.clab-data-list dd { margin: 0; font-size: 14px; font-weight: 600; }

/* Relationship */
.clab-relation { max-width: 930px; margin-inline: auto; }
.clab-relation__parent {
  width: min(580px, 80%);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--clab-line);
  background: #fff;
  padding: 28px 36px;
  box-shadow: var(--clab-shadow);
}
.clab-relation__parent span,
.clab-relation__tag { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.clab-relation__parent strong { margin-top: 5px; font-size: 23px; }
.clab-relation__parent small { margin-top: 4px; color: #778284; font-size: 12px; }
.clab-relation__line { position: relative; width: 58%; height: 66px; margin-inline: auto; border-left: 1px solid #98b9b6; border-right: 1px solid #98b9b6; border-bottom: 1px solid #98b9b6; }
.clab-relation__line::before { content: ""; position: absolute; top: 0; left: 50%; height: 100%; border-left: 1px solid #98b9b6; }
.clab-relation__children { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.clab-relation__card { position: relative; overflow: hidden; min-height: 310px; border: 1px solid var(--clab-line); background: #fff; padding: 34px; }
.clab-relation__card::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 180px; height: 180px; border: 1px solid rgba(47,150,146,.18); border-radius: 50%; }
.clab-relation__card--product { background: var(--clab-dark); color: #fff; }
.clab-relation__card h3 { margin-top: 18px; font-size: 30px; }
.clab-relation__meta { margin-top: 4px; color: var(--clab-teal); font-size: 13px; font-weight: 700; }
.clab-relation__card > p:last-child { margin-top: 20px; color: #667577; font-size: 14px; }
.clab-relation__card--product > p:last-child { color: rgba(255,255,255,.65); }
.clab-relation__icon { height: 58px; display: flex; align-items: end; gap: 7px; }
.clab-relation__icon i { display: block; width: 20px; background: var(--clab-teal); }
.clab-relation__icon i:nth-child(1) { height: 24px; }
.clab-relation__icon i:nth-child(2) { height: 42px; }
.clab-relation__icon i:nth-child(3) { height: 58px; }
.clab-relation__card--product .clab-relation__icon i { border: 1px solid #70d0cb; background: transparent; }
.clab-mini-notes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 36px; background: var(--clab-line); border: 1px solid var(--clab-line); }
.clab-mini-notes p { min-height: 126px; background: #fff; padding: 24px; color: #5e6b6d; font-size: 13px; }
.clab-mini-notes span { display: block; margin-bottom: 7px; color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; }
.clab-text-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.clab-text-links a { display: flex; justify-content: space-between; border-bottom: 1px solid var(--clab-dark); padding: 14px 2px; font-size: 13px; font-weight: 700; }

/* Services */
.clab-service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.18); border-left: 1px solid rgba(255,255,255,.18); }
.clab-service-card { min-height: 540px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); padding: 32px 28px; transition: background .25s ease; }
.clab-service-card:hover { background: rgba(255,255,255,.04); }
.clab-service-card__number { color: #70d0cb; font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; }
.clab-service-card__en { margin-top: 38px; color: rgba(255,255,255,.38); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.clab-service-card h3 { margin-top: 13px; min-height: 92px; font-size: 25px; line-height: 1.45; }
.clab-service-card > p:nth-of-type(3) { min-height: 132px; color: rgba(255,255,255,.65); font-size: 13px; }
.clab-service-card ul { margin-top: 18px; list-style: none; }
.clab-service-card li { position: relative; padding-left: 14px; color: rgba(255,255,255,.73); font-size: 12px; }
.clab-service-card li::before { content: ""; position: absolute; top: 13px; left: 0; width: 5px; height: 1px; background: #70d0cb; }
.clab-service-card a { margin-top: auto; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.22); padding-top: 18px; color: #fff; font-size: 12px; font-weight: 700; }

/* Scope */
.clab-scope { display: grid; grid-template-columns: 76px 1fr; border: 1px solid var(--clab-line); }
.clab-scope__rail { display: grid; grid-template-rows: repeat(3, 1fr); background: var(--clab-dark); }
.clab-scope__rail span { display: flex; align-items: center; justify-content: center; border-bottom: 1px solid rgba(255,255,255,.15); color: #70d0cb; writing-mode: vertical-rl; transform: rotate(180deg); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.clab-scope__list { display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; }
.clab-scope__list li { min-height: 190px; border-right: 1px solid var(--clab-line); border-bottom: 1px solid var(--clab-line); padding: 24px; }
.clab-scope__list li:nth-child(3n) { border-right: 0; }
.clab-scope__list li:nth-last-child(-n+3) { border-bottom: 0; }
.clab-scope__list span { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; }
.clab-scope__list strong { display: block; margin-top: 18px; font-size: 19px; }
.clab-scope__list p { margin-top: 9px; color: var(--clab-ink-soft); font-size: 12px; }

/* Fit */
.clab-fit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.clab-fit-grid article { position: relative; min-height: 150px; display: flex; align-items: center; gap: 22px; border: 1px solid #dcd9ce; background: rgba(255,255,255,.75); padding: 27px; }
.clab-fit-grid article::after { content: "✓"; position: absolute; right: 18px; bottom: 9px; color: #d8e8e5; font-family: Arial, sans-serif; font-size: 52px; font-weight: 800; line-height: 1; }
.clab-fit-grid span { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid var(--clab-teal); border-radius: 50%; color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; }
.clab-fit-grid p { position: relative; z-index: 1; font-size: 14px; font-weight: 700; line-height: 1.75; }
.clab-inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 36px; border-top: 1px solid #d4d1c7; padding-top: 30px; }
.clab-inline-cta p { color: var(--clab-ink-soft); font-size: 14px; }

/* Strength */
.clab-strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.clab-strength-card { min-height: 600px; border: 1px solid var(--clab-line); background: #fff; padding: 26px; box-shadow: 0 12px 34px rgba(30,55,57,.04); }
.clab-strength-card__visual { position: relative; height: 190px; overflow: hidden; margin-bottom: 30px; background: var(--clab-mist); }
.clab-strength-card__number { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.clab-strength-card h3 { margin-top: 12px; min-height: 94px; font-size: 26px; line-height: 1.45; }
.clab-strength-card > p:not(.clab-strength-card__number) { color: var(--clab-ink-soft); font-size: 13px; }
.clab-strength-card > p + p { margin-top: 12px; }
.clab-strength-card__visual--strategy i { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--clab-teal); }
.clab-strength-card__visual--strategy i:nth-child(1) { left: 16%; top: 60%; }
.clab-strength-card__visual--strategy i:nth-child(2) { left: 34%; top: 35%; }
.clab-strength-card__visual--strategy i:nth-child(3) { left: 51%; top: 53%; }
.clab-strength-card__visual--strategy i:nth-child(4) { left: 68%; top: 24%; }
.clab-strength-card__visual--strategy i:nth-child(5) { left: 83%; top: 42%; background: var(--clab-orange); }
.clab-strength-card__visual--strategy::before { content: ""; position: absolute; left: 17%; top: 52%; width: 67%; height: 1px; background: var(--clab-teal); transform: rotate(-11deg); }
.clab-strength-card__visual--strategy::after { content: "STRATEGY MAP"; position: absolute; right: 13px; bottom: 8px; color: #8fa4a2; font-family: Arial, sans-serif; font-size: 8px; letter-spacing: .15em; }
.clab-strength-card__visual--creative i { position: absolute; border: 1px solid var(--clab-teal); background: #fff; }
.clab-strength-card__visual--creative i:nth-child(1) { width: 52%; height: 58%; left: 10%; top: 18%; }
.clab-strength-card__visual--creative i:nth-child(2) { width: 42%; height: 48%; right: 10%; bottom: 12%; background: var(--clab-teal-light); }
.clab-strength-card__visual--creative i:nth-child(3) { width: 22%; height: 22%; left: 39%; top: 39%; background: var(--clab-orange); border: 0; }
.clab-strength-card__visual--analytics i { position: absolute; bottom: 28px; width: 10%; background: var(--clab-teal); }
.clab-strength-card__visual--analytics i:nth-child(1) { left: 13%; height: 28%; }
.clab-strength-card__visual--analytics i:nth-child(2) { left: 29%; height: 44%; }
.clab-strength-card__visual--analytics i:nth-child(3) { left: 45%; height: 35%; }
.clab-strength-card__visual--analytics i:nth-child(4) { left: 61%; height: 65%; }
.clab-strength-card__visual--analytics b { position: absolute; left: 13%; right: 13%; top: 31%; height: 2px; background: var(--clab-orange); transform: rotate(-11deg); transform-origin: left; }

/* Facts */
.clab-facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.clab-facts-grid article { min-height: 240px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); padding: 28px; text-align: center; }
.clab-facts-grid strong { display: inline-flex; align-items: baseline; justify-content: center; gap: 8px; font-family: Arial, sans-serif; line-height: 1; }
.clab-fact-number { font-size: clamp(50px, 5vw, 74px); font-weight: 700; letter-spacing: -.06em; }
.clab-fact-unit { font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif; font-size: clamp(16px, 1.45vw, 21px); font-weight: 700; letter-spacing: .02em; }
.clab-fact-wide { font-size: clamp(50px, 5vw, 74px); font-weight: 700; letter-spacing: -.06em; }
.clab-facts-grid strong em { font-size: 20px; letter-spacing: 0; }
.clab-facts-grid p { margin-top: 18px; color: rgba(255,255,255,.82); font-size: 13px; line-height: 1.8; text-align: center; }

/* Results */
.clab-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.clab-result-grid article { position: relative; overflow: hidden; min-height: 280px; border: 1px solid var(--clab-line); padding: 26px; }
.clab-result-grid article::after { content: ""; position: absolute; right: -42px; top: -42px; width: 120px; height: 120px; border-radius: 50%; background: var(--clab-teal-light); opacity: .7; }
.clab-result-card__type { position: relative; z-index: 1; font-size: 13px; font-weight: 700; }
.clab-result-grid strong { display: block; margin-top: 25px; color: var(--clab-teal-dark); font-family: Arial, sans-serif; font-size: 62px; line-height: 1; letter-spacing: -.06em; }
.clab-result-grid strong em { font-size: 24px; }
.clab-result-grid dl { margin-top: 32px; }
.clab-result-grid dl div { display: flex; justify-content: space-between; border-top: 1px solid var(--clab-line); padding: 9px 0; font-size: 11px; }
.clab-result-grid dt { color: #7c888a; }
.clab-result-grid dd { margin: 0; font-weight: 700; }

/* Process */
.clab-process { display: grid; grid-template-columns: repeat(7, 1fr); list-style: none; border-top: 1px solid var(--clab-line); border-left: 1px solid var(--clab-line); }
.clab-process li { position: relative; min-height: 210px; border-right: 1px solid var(--clab-line); border-bottom: 1px solid var(--clab-line); background: #fff; padding: 26px 18px; }
.clab-process li:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -11px; top: 50%; transform: translateY(-50%); display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: var(--clab-teal); color: #fff; font-size: 11px; }
.clab-process span { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.clab-process strong { display: block; margin-top: 50px; font-size: 14px; line-height: 1.7; }
.clab-process__note { margin-top: 22px; color: var(--clab-ink-soft); font-size: 13px; }

/* Price */
.clab-price { border-top: 2px solid var(--clab-dark); }
.clab-price__head,
.clab-price dl > div { display: grid; grid-template-columns: 1fr 1.35fr; }
.clab-price__head { background: var(--clab-dark); color: #fff; font-size: 11px; font-weight: 700; }
.clab-price__head span { padding: 13px 24px; }
.clab-price dl > div { border-bottom: 1px solid var(--clab-line); }
.clab-price dt,
.clab-price dd { padding: 22px 24px; }
.clab-price dt { background: var(--clab-mist); font-size: 13px; font-weight: 700; }
.clab-price dd { margin: 0; color: var(--clab-ink-soft); font-size: 13px; }
.clab-price dd strong { color: var(--clab-teal-dark); font-size: 17px; }

/* Knowledge */
.clab-knowledge-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.clab-knowledge-card { min-height: 560px; display: flex; flex-direction: column; border: 1px solid #dedbd2; background: #fff; padding: 25px; }
.clab-book-visual,
.clab-report-visual,
.clab-team-visual { position: relative; height: 200px; overflow: hidden; margin-bottom: 25px; background: var(--clab-mist); }
.clab-book-visual i { position: absolute; top: 25px; width: 96px; height: 145px; border: 1px solid var(--clab-teal); background: #fff; box-shadow: 12px 12px 0 var(--clab-teal-light); }
.clab-book-visual i:first-child { left: 24%; transform: rotate(-7deg); }
.clab-book-visual i:nth-child(2) { right: 22%; top: 35px; transform: rotate(8deg); background: var(--clab-dark); }
.clab-book-visual span { position: absolute; z-index: 2; left: 50%; top: 50%; transform: translate(-50%,-50%); color: var(--clab-orange); font-family: Arial, sans-serif; font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.clab-report-visual i { position: absolute; left: 15%; bottom: 30px; width: 12%; background: var(--clab-teal); }
.clab-report-visual i:nth-child(1) { height: 25%; }
.clab-report-visual i:nth-child(2) { left: 35%; height: 44%; }
.clab-report-visual i:nth-child(3) { left: 55%; height: 67%; }
.clab-report-visual b { position: absolute; left: 14%; right: 15%; top: 32%; height: 2px; background: var(--clab-orange); transform: rotate(-15deg); transform-origin: left; }
.clab-team-visual i { position: absolute; bottom: 34px; width: 58px; height: 58px; border-radius: 50%; background: var(--clab-teal-light); border: 1px solid var(--clab-teal); }
.clab-team-visual i::after { content: ""; position: absolute; left: 50%; top: 60px; width: 84px; height: 60px; transform: translateX(-50%); border: 1px solid var(--clab-teal); border-radius: 42px 42px 0 0; }
.clab-team-visual i:nth-child(1) { left: 15%; }
.clab-team-visual i:nth-child(2) { left: 42%; bottom: 52px; background: var(--clab-teal); }
.clab-team-visual i:nth-child(3) { right: 15%; }
.clab-knowledge-card__label { color: var(--clab-teal); font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.clab-knowledge-card h3 { margin-top: 8px; font-size: 25px; }
.clab-knowledge-card > p:not(.clab-knowledge-card__label) { margin-top: 15px; color: var(--clab-ink-soft); font-size: 13px; }
.clab-knowledge-card ul { margin-top: 14px; padding-left: 1.25em; color: var(--clab-ink-soft); font-size: 11px; }
.clab-knowledge-card ul li { list-style: initial; }
.clab-knowledge-card a { margin-top: auto; display: flex; justify-content: space-between; border-top: 1px solid var(--clab-line); padding-top: 17px; font-size: 12px; font-weight: 700; }

/* Official */
.clab-official-grid { display: grid; grid-template-columns: 1fr .72fr; gap: 42px; align-items: start; }
.clab-official-links { border-top: 2px solid var(--clab-dark); }
.clab-official-links a { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center; border-bottom: 1px solid var(--clab-line); padding: 19px 4px; }
.clab-official-links span { font-size: 13px; font-weight: 700; }
.clab-official-links small { color: #849092; font-family: Arial, sans-serif; font-size: 10px; }
.clab-official-links b { color: var(--clab-teal); font-size: 16px; }
.clab-citation-box { position: sticky; top: 24px; background: var(--clab-dark); color: #fff; padding: 38px; }
.clab-citation-box__label { color: #70d0cb; font-family: Arial, sans-serif; font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.clab-citation-box h3 { margin-top: 10px; font-size: 23px; line-height: 1.55; }
.clab-citation-box dl { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.2); }
.clab-citation-box dl > div { border-bottom: 1px solid rgba(255,255,255,.2); padding: 12px 0; }
.clab-citation-box dt { color: rgba(255,255,255,.5); font-size: 9px; }
.clab-citation-box dd { margin: 2px 0 0; overflow-wrap: anywhere; font-size: 12px; font-weight: 700; }
.clab-citation-box > a { margin-top: 25px; display: flex; justify-content: space-between; color: #fff; font-size: 11px; font-weight: 700; }

/* Final CTA */
.clab-final { position: relative; overflow: hidden; background: #263638; color: #fff; padding: clamp(90px, 10vw, 150px) 0; }
.clab-final__grid { mask-image: linear-gradient(to left, #000 0%, transparent 70%); background-image: linear-gradient(rgba(112,208,203,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(112,208,203,.08) 1px, transparent 1px); }
.clab-final::before { content: ""; position: absolute; width: 420px; height: 420px; right: -100px; top: -150px; border: 1px solid rgba(112,208,203,.25); border-radius: 50%; }
.clab-final__inner { position: relative; max-width: 900px; text-align: center; }
.clab-final .clab-kicker { color: #70d0cb; }
.clab-final h2 { margin-top: 15px; font-size: clamp(33px, 5vw, 56px); line-height: 1.45; letter-spacing: -.035em; }
.clab-final__inner > p:not(.clab-kicker) { max-width: 720px; margin: 24px auto 0; color: rgba(255,255,255,.72); font-size: 14px; }

/* Footer */
.clab-footer { background: #fff; border-top: 1px solid var(--clab-line); }
.clab-footer__inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 38px; min-height: 130px; }
.clab-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; color: #697577; font-size: 11px; }
.clab-footer__copy { color: #8b9697; font-family: Arial, sans-serif; font-size: 9px; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .clab-hero__inner { grid-template-columns: 1fr 430px; }
  .clab-orbit { width: 420px; }
  .clab-orbit__core { inset: 130px; }
  .clab-orbit__item { width: 132px; }
  .clab-orbit__item--01 { left: 144px; }
  .clab-service-grid { grid-template-columns: repeat(2, 1fr); }
  .clab-service-card { min-height: 480px; }
  .clab-process { grid-template-columns: repeat(4, 1fr); }
  .clab-process li:nth-child(4)::after { display: none; }
  .clab-footer__inner { grid-template-columns: 1fr; justify-items: center; padding-block: 36px; }
}

@media (max-width: 820px) {
  .clab-container { width: min(calc(100% - 36px), var(--clab-container)); }
  .clab-section { padding-block: 76px; }
  .clab-heading h2 { font-size: 34px; }
  .clab-hero__inner { min-height: auto; grid-template-columns: 1fr; padding-block: 64px; }
  .clab-hero__visual { min-height: 450px; }
  .clab-hero__facts-inner { grid-template-columns: repeat(2, 1fr); }
  .clab-hero__facts p:nth-child(2) { border-right: 1px solid rgba(47,150,146,.18); }
  .clab-basic { grid-template-columns: 1fr; gap: 48px; }
  .clab-basic__intro { position: static; }
  .clab-basic__mark { display: none; }
  .clab-relation__children { gap: 16px; }
  .clab-mini-notes { grid-template-columns: 1fr; }
  .clab-mini-notes p { min-height: auto; }
  .clab-scope__list { grid-template-columns: repeat(2, 1fr); }
  .clab-scope__list li:nth-child(3n) { border-right: 1px solid var(--clab-line); }
  .clab-scope__list li:nth-child(2n) { border-right: 0; }
  .clab-scope__list li:nth-last-child(-n+3) { border-bottom: 1px solid var(--clab-line); }
  .clab-scope__list li:nth-last-child(-n+2) { border-bottom: 0; }
  .clab-fit-grid { grid-template-columns: repeat(2, 1fr); }
  .clab-inline-cta { align-items: flex-start; flex-direction: column; }
  .clab-strength-grid,
  .clab-result-grid,
  .clab-knowledge-grid { grid-template-columns: 1fr; }
  .clab-strength-card { min-height: auto; display: grid; grid-template-columns: 220px 1fr; column-gap: 28px; }
  .clab-strength-card__visual { grid-row: 1 / span 5; margin: 0; height: 100%; min-height: 290px; }
  .clab-strength-card h3 { min-height: auto; }
  .clab-facts-grid { grid-template-columns: repeat(2, 1fr); }
  .clab-process { grid-template-columns: repeat(2, 1fr); }
  .clab-process li:nth-child(4)::after { display: grid; }
  .clab-process li:nth-child(2n)::after { display: none; }
  .clab-official-grid { grid-template-columns: 1fr; }
  .clab-citation-box { position: static; }
}

@media (max-width: 560px) {
  .clab-page { font-size: 15px; }
  .clab-container { width: min(calc(100% - 28px), var(--clab-container)); }
  .clab-breadcrumb ol { padding-block: 10px; }
  .clab-hero__inner { padding-block: 48px 56px; }
  .clab-hero h1 { font-size: 38px; }
  .clab-hero__lead { font-size: 21px; }
  .clab-actions { flex-direction: column; }
  .clab-button { width: 100%; }
  .clab-hero__visual { min-height: 360px; overflow: hidden; }
  .clab-orbit { transform: scale(.72); }
  .clab-hero__facts p { min-height: 88px; padding: 15px; }
  .clab-hero__facts strong { font-size: 17px; }
  .clab-heading { margin-bottom: 38px; }
  .clab-heading h2 { font-size: 29px; }
  .clab-heading > p:last-child { font-size: 14px; }
  .clab-data-list > div { grid-template-columns: 1fr; gap: 5px; padding-block: 16px; }
  .clab-relation__parent { width: 100%; padding: 22px 18px; text-align: center; }
  .clab-relation__parent strong { font-size: 20px; }
  .clab-relation__line { width: 70%; height: 44px; }
  .clab-relation__children { grid-template-columns: 1fr; }
  .clab-relation__line { border-right: 0; width: 1px; }
  .clab-relation__line::before { display: none; }
  .clab-text-links { grid-template-columns: 1fr; }
  .clab-service-grid { grid-template-columns: 1fr; }
  .clab-service-card { min-height: 440px; }
  .clab-scope { grid-template-columns: 42px 1fr; }
  .clab-scope__list { grid-template-columns: 1fr; }
  .clab-scope__list li,
  .clab-scope__list li:nth-child(2n),
  .clab-scope__list li:nth-child(3n),
  .clab-scope__list li:nth-last-child(-n+2) { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--clab-line); }
  .clab-scope__list li:last-child { border-bottom: 0; }
  .clab-fit-grid { grid-template-columns: 1fr; }
  .clab-fit-grid article { min-height: 125px; }
  .clab-strength-card { display: block; }
  .clab-strength-card__visual { height: 190px; min-height: 0; margin-bottom: 25px; }
  .clab-facts-grid { grid-template-columns: 1fr; }
  .clab-facts-grid article { min-height: 190px; }
  .clab-result-grid strong { font-size: 54px; }
  .clab-process { grid-template-columns: 1fr; }
  .clab-process li { min-height: 135px; }
  .clab-process li::after { display: none !important; }
  .clab-process strong { margin-top: 26px; }
  .clab-price__head { display: none; }
  .clab-price dl > div { grid-template-columns: 1fr; }
  .clab-price dt { padding-bottom: 8px; }
  .clab-price dd { padding-top: 8px; }
  .clab-official-links a { grid-template-columns: 1fr auto; gap: 10px; }
  .clab-official-links small { display: none; }
  .clab-citation-box { padding: 28px 22px; }
  .clab-final h2 { font-size: 31px; }
  .clab-footer__nav { gap: 8px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .clab-page * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* =========================================================
   Integrated refinements / 2026-08
   ========================================================= */

/* HERO: PC title 1 line / lead 2 lines */
@media (min-width: 821px) {
  .clab-hero__inner {
    grid-template-columns: minmax(650px, 1.18fr) minmax(400px, .82fr);
    gap: clamp(30px, 4vw, 58px);
  }
  .clab-hero__content { max-width: 740px; }
  .clab-hero h1 {
    font-size: clamp(48px, 4.3vw, 58px);
    white-space: nowrap;
  }
  .clab-hero__lead {
    font-size: clamp(24px, 2vw, 29px);
    line-height: 1.72;
  }
  .clab-hero__lead > span {
    display: block;
    white-space: nowrap;
  }
}

/* BASIC INFORMATION */
.clab-heading--basic {
  max-width: 920px;
  margin-bottom: 48px;
}
.clab-basic-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  gap: 28px;
  align-items: stretch;
}
.clab-basic-overview--single {
  display: block;
  width: min(100%, 900px);
  margin-inline: auto;
}
.clab-basic-overview--single .clab-basic-info {
  width: 100%;
  margin-inline: auto;
}
.clab-basic-diagram,
.clab-basic-info {
  border: 1px solid var(--clab-line);
  background: #fff;
}
.clab-basic-diagram {
  position: relative;
  min-height: 610px;
  padding: 46px 34px 34px;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(47,150,146,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,150,146,.055) 1px, transparent 1px);
  background-size: 42px 42px;
}
.clab-basic-diagram__inputs {
  position: relative;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(210px, .92fr) minmax(190px, 1fr);
  gap: 30px;
  align-items: center;
}
.clab-basic-diagram__inputs::before,
.clab-basic-diagram__inputs::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 45px;
  border-top: 2px solid var(--clab-teal);
}
.clab-basic-diagram__inputs::before { left: calc(33.333% - 8px); transform: translateX(-50%); }
.clab-basic-diagram__inputs::after { right: calc(33.333% - 8px); transform: translateX(50%); }
.clab-basic-node {
  position: relative;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(47,150,146,.55);
  background: rgba(255,255,255,.96);
  padding: 28px 20px;
  text-align: center;
  z-index: 2;
}
.clab-basic-node__label {
  position: absolute;
  top: -16px;
  left: 50%;
  min-width: 132px;
  transform: translateX(-50%);
  background: var(--clab-teal);
  color: #fff;
  padding: 6px 18px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .13em;
}
.clab-basic-node h3 {
  margin-top: 16px;
  font-size: 21px;
  line-height: 1.5;
}
.clab-basic-node > p:last-child {
  margin-top: 10px;
  color: var(--clab-ink-soft);
  font-size: 13px;
  line-height: 1.75;
}
.clab-basic-node__icon {
  position: relative;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--clab-mist);
}
.clab-basic-node__icon--value::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 21px;
  width: 28px;
  height: 28px;
  border: 2px solid var(--clab-teal);
  transform: rotate(30deg);
}
.clab-basic-node__icon--value::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 13px;
  width: 20px;
  height: 2px;
  background: var(--clab-teal);
  transform: rotate(-28deg);
}
.clab-basic-node__icon--user::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 14px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--clab-teal);
  border-radius: 50%;
}
.clab-basic-node__icon--user::after {
  content: "";
  position: absolute;
  left: 18px;
  bottom: 14px;
  width: 36px;
  height: 22px;
  border: 2px solid var(--clab-teal);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}
.clab-basic-engine {
  position: relative;
  z-index: 3;
  aspect-ratio: 1;
  max-width: 235px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--clab-dark);
  color: #fff;
  padding: 26px;
  text-align: center;
  box-shadow: 0 22px 48px rgba(25,47,48,.18);
}
.clab-basic-engine > p {
  color: #70d0cb;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}
.clab-basic-engine strong {
  margin-top: 10px;
  font-size: 27px;
  line-height: 1.25;
}
.clab-basic-engine strong span { color: #70d0cb; }
.clab-basic-engine small {
  margin-top: 12px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  line-height: 1.7;
}
.clab-basic-result {
  position: relative;
  width: min(80%, 560px);
  min-height: 128px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--clab-orange);
  background: rgba(255,255,255,.97);
  padding: 22px 30px;
}
.clab-basic-result::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  height: 44px;
  border-left: 2px solid var(--clab-orange);
}
.clab-basic-result p {
  color: var(--clab-orange);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.clab-basic-result strong {
  display: block;
  margin-top: 2px;
  color: var(--clab-orange);
  font-size: 29px;
  line-height: 1.4;
}
.clab-basic-result small {
  display: block;
  margin-top: 2px;
  color: var(--clab-ink-soft);
  font-size: 11px;
  line-height: 1.6;
}
.clab-basic-result__icon {
  position: relative;
  width: 66px;
  height: 58px;
}
.clab-basic-result__icon i {
  position: absolute;
  bottom: 4px;
  width: 13px;
  border: 2px solid var(--clab-orange);
  border-bottom-width: 3px;
}
.clab-basic-result__icon i:nth-child(1) { left: 5px; height: 20px; }
.clab-basic-result__icon i:nth-child(2) { left: 25px; height: 31px; }
.clab-basic-result__icon i:nth-child(3) { left: 45px; height: 45px; }
.clab-basic-result__icon b {
  position: absolute;
  left: 3px;
  top: 7px;
  width: 53px;
  height: 2px;
  background: var(--clab-orange);
  transform: rotate(-24deg);
  transform-origin: left;
}
.clab-basic-info {
  padding: 32px 30px;
}
.clab-basic-info__title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 22px;
}
.clab-basic-info__title h3 { font-size: 25px; }
.clab-basic-info__icon {
  position: relative;
  width: 36px;
  height: 42px;
  border: 2px solid var(--clab-teal);
}
.clab-basic-info__icon::before {
  content: "";
  position: absolute;
  inset: 7px 6px auto;
  height: 3px;
  box-shadow: 0 8px 0 var(--clab-teal), 0 16px 0 var(--clab-teal);
  background: var(--clab-teal);
}
.clab-basic-info .clab-data-list { border-top: 1px solid var(--clab-line); }
.clab-basic-info .clab-data-list > div {
  grid-template-columns: 145px 1fr;
  gap: 18px;
  padding: 15px 8px;
}
.clab-basic-info .clab-data-list dt { font-size: 11px; }
.clab-basic-info .clab-data-list dd { font-size: 12.5px; line-height: 1.65; }

/* SERVICES: image-led 2 x 2 cards */
.clab-services {
  background-image:
    linear-gradient(rgba(47,150,146,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,150,146,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.clab-service-grid--visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  border: 0;
}
.clab-service-card--visual {
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--clab-line);
  background: #fff;
  color: var(--clab-ink);
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
}
.clab-service-card--visual:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: var(--clab-shadow);
}
.clab-service-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 1120 / 600;
  object-fit: cover;
  border-bottom: 1px solid var(--clab-line);
}
.clab-service-card__body {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 28px 30px 26px;
}
.clab-service-card--visual .clab-service-card__number {
  color: var(--clab-teal);
  font-size: 11px;
}
.clab-service-card--visual h3 {
  min-height: 0;
  margin-top: 12px;
  font-size: 25px;
  line-height: 1.5;
}
.clab-service-card--visual .clab-service-card__description {
  min-height: 0;
  margin-top: 16px;
  color: var(--clab-ink-soft);
  font-size: 14px;
  line-height: 1.9;
  overflow-wrap: anywhere;
}
.clab-service-card--visual a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--clab-line);
  padding-top: 19px;
  color: var(--clab-teal-dark);
  font-size: 13px;
  font-weight: 700;
}

/* SERVICES: CVX full-width feature card */
.clab-service-card--cvx {
  grid-column: 1 / -1;
}
.clab-service-card--cvx .clab-service-card__image--cvx {
  aspect-ratio: 2048 / 470;
  object-fit: cover;
  object-position: center;
}
.clab-service-card__body--cvx {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
  padding: 30px 34px 32px;
}
.clab-service-card__cvx-heading h3 {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.45;
}
.clab-service-card__cvx-content {
  display: flex;
  min-width: 0;
  flex-direction: column;
  min-height: 100%;
}
.clab-service-card__cvx-content .clab-service-card__description {
  margin-top: 0;
  font-size: 14px;
  line-height: 1.9;
}
.clab-service-card__cvx-content a {
  margin-top: 22px;
}

@media (max-width: 820px) {
  .clab-service-card__body--cvx {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 24px;
  }
  .clab-service-card--cvx .clab-service-card__image--cvx {
    aspect-ratio: 16 / 6;
    object-position: 22% center;
  }
  .clab-service-card__cvx-heading h3 {
    font-size: 23px;
  }
}

@media (max-width: 1100px) {
  .clab-basic-overview { grid-template-columns: 1fr; }
  .clab-basic-info { padding-inline: 36px; }
}

@media (max-width: 820px) {
  .clab-hero h1 { white-space: normal; }
  .clab-hero__lead > span { white-space: normal; }
  .clab-basic-diagram { min-height: 0; padding: 38px 24px 28px; }
  .clab-basic-diagram__inputs { grid-template-columns: 1fr; gap: 28px; }
  .clab-basic-diagram__inputs::before,
  .clab-basic-diagram__inputs::after { display: none; }
  .clab-basic-node { min-height: 210px; }
  .clab-basic-engine { width: 220px; }
  .clab-basic-result { width: 100%; margin-top: 34px; }
  .clab-basic-result::before { height: 34px; }
  .clab-service-grid--visual { grid-template-columns: 1fr; }
  .clab-service-card__body { min-height: 310px; }
}

@media (max-width: 560px) {
  .clab-heading--basic { text-align: left; }
  .clab-basic-info { padding: 24px 18px; }
  .clab-basic-info .clab-data-list > div { grid-template-columns: 1fr; gap: 4px; }
  .clab-basic-result { grid-template-columns: 54px 1fr; padding: 18px; }
  .clab-basic-result__icon { transform: scale(.78); transform-origin: left center; }
  .clab-basic-result strong { font-size: 23px; }
  .clab-service-card__body { min-height: 0; padding: 24px 22px; }
  .clab-service-card--visual h3 { font-size: 22px; }
  .clab-service-card--visual .clab-service-card__description { font-size: 13px; }
  .clab-service-card--visual a { margin-top: 24px; }
}

@media (min-width: 1101px) {
  .clab-basic-node h3 {
    font-size: 18px;
    white-space: nowrap;
  }
}

/* =========================================================
   Fixes: coverage layout / relationship logos / 2026-08-24
   ========================================================= */

/* SCOPE / COVERAGE: explicit styles to prevent layout collapse */
.clab-coverage {
  background-image:
    linear-gradient(rgba(47,150,146,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47,150,146,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.clab-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.clab-coverage-card {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--clab-line);
  background: rgba(255,255,255,.96);
  padding: 26px 24px 24px;
  box-shadow: 0 10px 28px rgba(30,55,57,.045);
  cursor: default;
}
.clab-coverage-card__icon {
  width: 60px;
  height: 60px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(47,150,146,.26);
  border-radius: 50%;
  background: var(--clab-mist);
  color: var(--clab-teal);
}
.clab-coverage-card__icon svg {
  display: block;
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.clab-coverage-card__number {
  color: var(--clab-teal);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
}
.clab-coverage-card h3 {
  margin-top: 8px;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -.02em;
}
.clab-coverage-card > p:last-child {
  margin-top: 12px;
  color: var(--clab-ink-soft);
  font-size: 14px;
  line-height: 1.85;
}
.clab-coverage-card:hover {
  transform: none;
  box-shadow: 0 10px 28px rgba(30,55,57,.045);
  background: rgba(255,255,255,.96);
}

/* Preserve the previously requested larger text in the FIT cards. */
.clab-fit-grid p {
  font-size: 17px;
  line-height: 1.75;
}

/* RELATIONSHIP: use supplied brand logos as images */
.clab-relation__parent {
  min-height: 178px;
  justify-content: center;
}
.clab-relation__logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.clab-relation__logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.clab-relation__logo--postscape {
  margin-top: 15px;
}
.clab-relation__logo--postscape img {
  width: min(100%, 390px);
}
.clab-relation__parent small {
  margin-top: 14px;
}
.clab-relation__card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.clab-relation__card--product {
  background: #fff;
  color: var(--clab-ink);
}
.clab-relation__card::after {
  pointer-events: none;
}
.clab-relation__logo--conversion-labo {
  min-height: 92px;
  margin-top: 24px;
}
.clab-relation__logo--conversion-labo img {
  width: min(100%, 360px);
}
.clab-relation__logo--cvx {
  min-height: 104px;
  margin-top: 16px;
}
.clab-relation__logo--cvx img {
  width: min(100%, 230px);
  max-height: 104px;
}
.clab-relation__meta {
  margin-top: 18px;
  font-size: 14px;
}
.clab-relation__card > p:last-child,
.clab-relation__card--product > p:last-child {
  color: #667577;
  font-size: 15px;
  line-height: 1.85;
}
.clab-mini-notes p {
  min-height: 138px;
  padding: 25px 26px;
  color: #536163;
  font-size: 15px;
  line-height: 1.85;
}
.clab-mini-notes span {
  margin-bottom: 9px;
  font-size: 11px;
}

@media (max-width: 900px) {
  .clab-coverage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .clab-relation__children {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .clab-coverage-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 32px;
  }
  .clab-coverage-card {
    min-height: 0;
    padding: 22px 20px;
  }
  .clab-coverage-card__icon {
    width: 54px;
    height: 54px;
    margin-bottom: 15px;
  }
  .clab-coverage-card__icon svg {
    width: 28px;
    height: 28px;
  }
  .clab-coverage-card h3 {
    font-size: 21px;
  }
  .clab-coverage-card > p:last-child {
    font-size: 14px;
  }
  .clab-fit-grid p {
    font-size: 16px;
  }
  .clab-relation__children {
    grid-template-columns: 1fr;
  }
  .clab-relation__card {
    min-height: 0;
  }
  .clab-relation__logo--conversion-labo img {
    width: min(100%, 330px);
  }
  .clab-relation__logo--cvx img {
    width: min(100%, 210px);
  }
  .clab-mini-notes p {
    min-height: 0;
    font-size: 15px;
  }
}

/* Keep the relationship heading on one line on desktop, as previously requested. */
.clab-relationship .clab-heading {
  max-width: 1120px;
}
.clab-relationship .clab-heading p {
  text-align: center;
}
@media (min-width: 1000px) {
  .clab-relationship .clab-heading h2 {
    white-space: nowrap;
  }
}

/* =========================================================
   RELATIONSHIP TREE CONNECTOR
   POSTSCAPE -> CONVERSION LABO / CVX
   2026-08-24
========================================================= */
.clab-relation__line {
  position: relative;
  width: calc(50% + 17px);
  height: 92px;
  margin-inline: auto;
  border: 0;
  background:
    linear-gradient(#6fa9a6, #6fa9a6) center top / 2px 44px no-repeat,
    linear-gradient(#6fa9a6, #6fa9a6) center 44px / 100% 2px no-repeat,
    linear-gradient(#6fa9a6, #6fa9a6) left 44px / 2px calc(100% - 44px) no-repeat,
    linear-gradient(#6fa9a6, #6fa9a6) right 44px / 2px calc(100% - 44px) no-repeat;
}

.clab-relation__line::before,
.clab-relation__line::after {
  content: none;
}

/* Make the connection point read clearly against the card edges. */
.clab-relation__children {
  position: relative;
}

.clab-relation__card {
  z-index: 1;
}

@media (max-width: 900px) and (min-width: 621px) {
  .clab-relation__line {
    width: calc(50% + 8px);
    height: 76px;
    background:
      linear-gradient(#6fa9a6, #6fa9a6) center top / 2px 36px no-repeat,
      linear-gradient(#6fa9a6, #6fa9a6) center 36px / 100% 2px no-repeat,
      linear-gradient(#6fa9a6, #6fa9a6) left 36px / 2px calc(100% - 36px) no-repeat,
      linear-gradient(#6fa9a6, #6fa9a6) right 36px / 2px calc(100% - 36px) no-repeat;
  }
}

@media (max-width: 620px) {
  .clab-relation__line {
    width: 2px;
    height: 42px;
    background: #6fa9a6;
  }
}

/* Keep selected section headings on one line on PC */
@media (min-width: 821px) {
  .clab-fit-section .clab-heading,
  #strength .clab-heading {
    max-width: none;
    width: 100%;
  }

  .clab-fit-section .clab-heading h2,
  #strength .clab-heading h2 {
    font-size: clamp(38px, 3.45vw, 46px);
    white-space: nowrap;
    word-break: keep-all;
  }
}
