.v9-page {
  --v9-ink: #0b1522;
  --v9-deep: #06101c;
  --v9-navy: #102238;
  --v9-blue: #2857e6;
  --v9-blue-dark: #1d49d2;
  --v9-blue-soft: #eaf0ff;
  --v9-paper: #ffffff;
  --v9-soft: #f3f6f8;
  --v9-muted: #5f6e7d;
  --v9-line: #d8e0e7;
  color: var(--v9-ink);
  background: var(--v9-paper);
}

.v9-page .shell {
  width: min(calc(100% - 48px), var(--fz-shell));
}

.v9-page h1,
.v9-page h2,
.v9-page h3,
.v9-page h4,
.v9-page p,
.v9-page span,
.v9-page strong,
.v9-page a {
  letter-spacing: 0;
}

.v9-page h1,
.v9-page h2,
.v9-page h3,
.v9-page h4 {
  word-break: keep-all;
  text-wrap: balance;
}

.v9-page p {
  word-break: keep-all;
}

.v9-page
  :where(
    #experience,
    #products,
    #configurations,
    #process,
    #business-models,
    #training-space,
    #startup,
    #inquiry
  ) {
  scroll-margin-top: calc(var(--fz-header) + 20px);
}

.v9-section {
  padding: 112px 0;
}

.v9-section.is-soft {
  background: var(--v9-soft);
}

.v9-section.is-dark {
  color: #fff;
  background: var(--v9-deep);
}

.v9-section.is-blue {
  color: #fff;
  background: var(--v9-blue-dark);
}

.v9-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.v9-section-head.is-single {
  grid-template-columns: minmax(0, 820px);
}

.v9-kicker {
  color: var(--v9-blue);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.is-dark .v9-kicker,
.is-blue .v9-kicker,
.v9-hero .v9-kicker,
.v9-final .v9-kicker {
  color: #b8cbff;
}

.v9-title {
  max-width: 900px;
  margin-top: 16px;
  font-size: 58px;
  line-height: 1.04;
  font-weight: 950;
}

.v9-lead {
  color: var(--v9-muted);
  font-size: 18px;
  line-height: 1.72;
  font-weight: 620;
}

.is-dark .v9-lead,
.is-blue .v9-lead {
  color: rgb(255 255 255 / 70%);
}

.v9-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.v9-actions .btn {
  min-height: 52px;
  padding-inline: 22px;
}

.v9-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--v9-blue);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-link::after {
  content: "→";
}

.v9-status {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  border: 1px solid var(--v9-line);
  border-radius: 4px;
  color: var(--v9-muted);
  background: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.v9-status.is-current {
  color: #fff;
  border-color: var(--v9-blue);
  background: var(--v9-blue);
}

.v9-status.is-prototype,
.v9-status.is-pilot {
  color: #17366f;
  border-color: #bdcdf5;
  background: var(--v9-blue-soft);
}

.v9-status.is-development,
.v9-status.is-concept {
  color: #526171;
  border-color: #cbd4dc;
  background: #edf1f4;
}

.v9-hero {
  height: calc(100svh - var(--fz-header) - 42px);
  min-height: 560px;
  max-height: 780px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: var(--v9-deep);
}

.v9-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.v9-hero-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.v9-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v9-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      90deg,
      rgb(3 9 17 / 96%) 0%,
      rgb(3 9 17 / 82%) 43%,
      rgb(3 9 17 / 16%) 78%
    ),
    linear-gradient(0deg, rgb(3 9 17 / 85%) 0%, transparent 62%);
}

.v9-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(220px, 1fr);
  gap: 64px;
  align-items: end;
  padding: 96px 0 38px;
}

.v9-hero-copy {
  min-width: 0;
}

.v9-hero h1 {
  max-width: 820px;
  margin-top: 18px;
  font-size: 76px;
  line-height: 0.98;
  font-weight: 950;
}

.v9-hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: rgb(255 255 255 / 76%);
  font-size: 19px;
  line-height: 1.68;
  font-weight: 650;
}

.v9-hero .v9-actions {
  margin-top: 30px;
}

.v9-hero-rail {
  border-top: 1px solid rgb(255 255 255 / 28%);
  border-bottom: 1px solid rgb(255 255 255 / 28%);
}

.v9-hero-rail li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.v9-hero-rail li:last-child {
  border-bottom: 0;
}

.v9-hero-rail span {
  color: #b8cbff;
  font-size: 11px;
  font-weight: 900;
}

.v9-hero-rail strong {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.v9-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-flow li {
  min-width: 0;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--v9-line);
}

.v9-flow li:last-child {
  border-right: 0;
}

.v9-flow small,
.v9-step-list small,
.v9-model small {
  color: var(--v9-blue);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-flow h3 {
  margin-top: auto;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 930;
}

.v9-flow p {
  margin-top: 12px;
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 0;
  align-items: stretch;
}

.v9-split-media {
  min-width: 0;
  min-height: 620px;
  position: relative;
  overflow: hidden;
  background: var(--v9-deep);
}

.v9-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v9-split-media figcaption,
.v9-media-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  width: fit-content;
  padding: 8px 10px;
  color: #fff;
  background: rgb(3 9 17 / 80%);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 820;
}

.v9-split-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px;
  background: var(--v9-soft);
}

.v9-split-copy h2 {
  margin-top: 16px;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 950;
}

.v9-split-copy > p {
  margin-top: 24px;
  color: var(--v9-muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 620;
}

.v9-rule-list {
  margin-top: 34px;
  border-top: 1px solid var(--v9-line);
}

.v9-rule-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-rule-list strong {
  color: var(--v9-blue);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
}

.v9-rule-list span {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 620;
}

.is-dark .v9-rule-list strong,
.is-dark .v9-cycle span {
  color: #b8cbff;
}

.is-dark .v9-rule-list span {
  color: rgb(255 255 255 / 72%);
}

.v9-audience {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-audience article {
  min-width: 0;
  min-height: 210px;
  padding: 24px 20px;
  border-right: 1px solid var(--v9-line);
}

.v9-audience article:last-child {
  border-right: 0;
}

.v9-audience small {
  color: var(--v9-blue);
  font-size: 11px;
  font-weight: 900;
}

.v9-audience h3 {
  margin-top: 56px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 930;
}

.v9-audience p {
  margin-top: 11px;
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 620;
}

.v9-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v9-products + .v9-link {
  margin-top: 26px;
}

.v9-product-lineup {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-product-lineup article {
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-right: 1px solid var(--v9-line);
}

.v9-product-lineup article:last-child {
  border-right: 0;
}

.v9-product-lineup article.is-highlight {
  background: var(--v9-blue-soft);
}

.v9-product-visual {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin: -28px -28px 0;
  background: var(--v9-deep);
}

.v9-product-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(transparent, rgb(5 13 24 / 84%));
  pointer-events: none;
}

.v9-product-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.v9-product-visual figcaption {
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 16px;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 850;
}

.v9-product-visual + .v9-status {
  margin-top: 20px;
}

.v9-product-visual ~ small {
  margin-top: 16px;
}

.v9-product-visual ~ h3 {
  margin-top: 24px;
}

.v9-product-lineup small {
  margin-top: 26px;
  color: var(--v9-blue);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 900;
}

.v9-product-lineup h3 {
  margin-top: 42px;
  font-size: 34px;
  line-height: 1.04;
  font-weight: 950;
}

.v9-product-lineup p {
  margin-top: 18px;
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-product-lineup > article > strong {
  margin-top: auto;
  padding-top: 28px;
  color: var(--v9-blue);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 920;
}

.v9-product-lineup ul {
  margin-top: auto;
  padding-top: 24px;
}

.v9-product-lineup li {
  padding: 9px 0;
  border-top: 1px solid var(--v9-line);
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 680;
}

.v9-product-lineup.is-detailed article {
  min-height: 430px;
}

.v9-product-lineup + .v9-link,
.v9-operation-strip + .v9-link {
  margin-top: 26px;
}

.v9-product-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
}

.v9-product-cta .btn {
  min-height: 50px;
}

.v9-product-decision {
  margin-top: 30px;
  padding: 34px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  align-items: end;
  gap: 32px;
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-product-decision h3 {
  max-width: 680px;
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  font-weight: 940;
}

.v9-product-decision h3 + p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--v9-muted);
  font-size: 15px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-product-decision .v9-actions {
  width: 100%;
}

.v9-product-decision .btn {
  width: 100%;
}

.v9-home #products .v9-product-lineup .v9-status {
  color: #17324f;
  border-color: #d5dde5;
  background: #f3f6f8;
}

.v9-home #products .v9-product-lineup small {
  color: #315b86;
}

.v9-home #products .v9-product-lineup > article > strong {
  padding-top: 18px;
  color: var(--v9-ink);
  border-top: 1px solid var(--v9-line);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 860;
}

.v9-guide-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 72px;
  align-items: end;
  padding: 38px 0;
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-guide-file {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #9eb5ce;
  border-radius: 4px;
  color: var(--v9-blue);
  background: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.v9-guide-callout h3 {
  max-width: 760px;
  margin-top: 22px;
  font-size: 40px;
  line-height: 1.08;
  font-weight: 950;
}

.v9-guide-points {
  max-width: 820px;
  margin-top: 30px;
  border-top: 1px solid var(--v9-line);
}

.v9-guide-points li {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-guide-points strong {
  font-size: 14px;
  font-weight: 900;
}

.v9-guide-points span {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.v9-guide-callout .v9-actions {
  align-items: stretch;
}

.v9-guide-callout .v9-actions .btn {
  width: 100%;
}

.v9-product {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--v9-line);
  border-radius: 8px;
  background: #fff;
}

.v9-product.is-pro {
  color: #fff;
  border-color: #17304d;
  background: var(--v9-deep);
}

.v9-product-copy {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  padding: 38px;
}

.v9-product-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.v9-product h3 {
  margin-top: 64px;
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
}

.v9-product-copy > p {
  margin-top: 18px;
  color: var(--v9-muted);
  font-size: 15px;
  line-height: 1.68;
  font-weight: 620;
}

.v9-product.is-pro .v9-product-copy > p {
  color: rgb(255 255 255 / 68%);
}

.v9-specs {
  margin-top: auto;
  padding-top: 36px;
}

.v9-specs div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--v9-line);
}

.v9-product.is-pro .v9-specs div {
  border-color: rgb(255 255 255 / 16%);
}

.v9-specs dt {
  color: var(--v9-blue);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
}

.v9-product.is-pro .v9-specs dt {
  color: #b8cbff;
}

.v9-specs dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 820;
}

.v9-product figure {
  height: 300px;
  position: relative;
  overflow: hidden;
  background: #07111f;
}

.v9-product figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.v9-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 30%);
  border-bottom: 1px solid rgb(255 255 255 / 24%);
}

.v9-support-grid article {
  min-width: 0;
  min-height: 250px;
  padding: 26px 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.v9-support-grid article:last-child {
  border-right: 0;
}

.v9-support-grid small {
  color: #b8cbff;
  font-size: 11px;
  font-weight: 900;
}

.v9-support-grid h3 {
  margin-top: 70px;
  font-size: 26px;
  line-height: 1.18;
  font-weight: 930;
}

.v9-support-grid p {
  margin-top: 12px;
  color: rgb(255 255 255 / 66%);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-validation {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 64px;
  align-items: center;
}

.v9-validation figure {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: var(--v9-deep);
}

.v9-validation figure img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.v9-validation h2 {
  margin-top: 16px;
  font-size: 54px;
  line-height: 1.04;
  font-weight: 950;
}

.v9-validation > div > p {
  margin-top: 22px;
  color: var(--v9-muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 620;
}

.v9-cycle {
  margin-top: 34px;
  border-top: 1px solid var(--v9-ink);
}

.v9-cycle li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-cycle span {
  color: var(--v9-blue);
  font-size: 11px;
  font-weight: 900;
}

.v9-cycle strong {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 850;
}

.v9-option-stack {
  border-top: 1px solid var(--v9-ink);
}

.v9-option {
  display: grid;
  grid-template-columns: 160px minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: 28px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-option-code {
  color: var(--v9-blue);
  font-size: 12px;
  font-weight: 900;
}

.v9-option h3 {
  font-size: 28px;
  line-height: 1.15;
  font-weight: 930;
}

.v9-option p {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-config {
  border-top: 1px solid var(--v9-ink);
}

.v9-config li {
  display: grid;
  grid-template-columns: minmax(170px, 0.55fr) minmax(240px, 0.85fr) minmax(
      320px,
      1.6fr
    );
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-config small {
  color: var(--v9-blue);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-config strong {
  font-size: 16px;
  line-height: 1.45;
  font-weight: 900;
}

.v9-config span {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 620;
}

.v9-maturity {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-maturity article {
  min-width: 0;
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--v9-line);
}

.v9-maturity article:last-child {
  border-right: 0;
}

.v9-maturity h3 {
  margin-top: 54px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 930;
}

.v9-maturity ul {
  margin-top: 16px;
}

.v9-maturity li {
  padding: 8px 0;
  color: var(--v9-muted);
  border-top: 1px solid var(--v9-line);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 620;
}

.v9-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v9-price-grid.is-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v9-price {
  min-width: 0;
  padding: 36px;
  border: 1px solid var(--v9-line);
  border-radius: 8px;
  background: #fff;
}

.v9-price h3 {
  margin-top: 44px;
  font-size: 31px;
  line-height: 1.12;
  font-weight: 950;
}

.v9-price strong {
  display: block;
  margin-top: 18px;
  color: var(--v9-blue);
  font-size: 34px;
  line-height: 1.1;
  font-weight: 950;
}

.v9-price p {
  margin-top: 18px;
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-diagnosis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-diagnosis article {
  min-width: 0;
  min-height: 220px;
  padding: 24px;
  border-right: 1px solid var(--v9-line);
}

.v9-diagnosis article:last-child {
  border-right: 0;
}

.v9-diagnosis small {
  color: var(--v9-blue);
  font-size: 11px;
  font-weight: 900;
}

.v9-diagnosis h3 {
  margin-top: 62px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 930;
}

.v9-diagnosis p {
  margin-top: 10px;
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 620;
}

.v9-step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 28%);
  border-bottom: 1px solid rgb(255 255 255 / 22%);
}

.v9-step-list li {
  min-width: 0;
  min-height: 230px;
  padding: 24px 20px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.v9-step-list li:last-child {
  border-right: 0;
}

.v9-step-list small {
  color: #b8cbff;
}

.v9-step-list h3 {
  margin-top: 68px;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 930;
}

.v9-step-list p {
  margin-top: 10px;
  color: rgb(255 255 255 / 64%);
  font-size: 13px;
  line-height: 1.6;
  font-weight: 620;
}

.v9-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.v9-model-compare {
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-model-compare article {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.4fr);
  gap: 48px;
  padding: 30px 24px;
  border-bottom: 1px solid var(--v9-line);
}

.v9-model-compare article:last-child {
  border-bottom: 0;
}

.v9-model-compare article.is-highlight {
  background: var(--v9-blue-soft);
}

.v9-model-compare small {
  color: var(--v9-blue);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-model-compare h3 {
  margin-top: 18px;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 950;
}

.v9-model-compare p {
  margin-top: 10px;
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 620;
}

.v9-model-compare dl {
  align-self: center;
}

.v9-model-compare dl div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  padding: 10px 0;
  border-top: 1px solid var(--v9-line);
}

.v9-model-compare dt {
  color: var(--v9-blue);
  font-size: 12px;
  font-weight: 900;
}

.v9-model-compare dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 760;
}

.v9-operation-strip,
.v9-responsibility-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--v9-ink);
  border-bottom: 1px solid var(--v9-line);
}

.v9-operation-strip li,
.v9-responsibility-map article {
  min-width: 0;
  padding: 26px 24px;
  border-right: 1px solid var(--v9-line);
}

.v9-operation-strip li:last-child,
.v9-responsibility-map article:last-child {
  border-right: 0;
}

.v9-operation-strip span,
.v9-responsibility-map small {
  color: var(--v9-blue);
  font-size: 11px;
  font-weight: 900;
}

.v9-operation-strip strong,
.v9-responsibility-map h3 {
  display: block;
  margin-top: 34px;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 930;
}

.v9-operation-strip p,
.v9-responsibility-map p {
  margin-top: 10px;
  color: var(--v9-muted);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 620;
}

.is-dark .v9-responsibility-map {
  border-color: rgb(255 255 255 / 28%);
}

.is-dark .v9-responsibility-map article {
  border-color: rgb(255 255 255 / 18%);
}

.is-dark .v9-responsibility-map small {
  color: #b8cbff;
}

.is-dark .v9-responsibility-map p {
  color: rgb(255 255 255 / 66%);
}

.v9-settlement-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 44px;
  border-top: 1px solid rgb(255 255 255 / 28%);
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.v9-settlement-flow li {
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgb(255 255 255 / 18%);
}

.v9-settlement-flow li:last-child {
  border-right: 0;
}

.v9-settlement-flow span {
  display: block;
  color: #b8cbff;
  font-size: 10px;
  font-weight: 900;
}

.v9-settlement-flow strong {
  display: block;
  margin-top: 26px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

.v9-scope-note {
  margin-top: 24px;
  color: var(--v9-muted);
  font-size: 12px;
  line-height: 1.65;
  font-weight: 680;
}

.is-dark .v9-scope-note {
  color: rgb(255 255 255 / 60%);
}

.v9-model {
  min-width: 0;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--v9-line);
  border-radius: 8px;
  background: #fff;
}

.v9-model h3 {
  margin-top: 54px;
  font-size: 31px;
  line-height: 1.1;
  font-weight: 950;
}

.v9-model > p {
  margin-top: 16px;
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.66;
  font-weight: 620;
}

.v9-model dl {
  margin-top: auto;
}

.v9-model dl div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--v9-line);
}

.v9-model dt {
  color: var(--v9-blue);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 900;
}

.v9-model dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 720;
}

.v9-boundaries {
  border-top: 1px solid var(--v9-ink);
}

.v9-boundaries li {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--v9-line);
}

.v9-boundaries strong {
  font-size: 14px;
  line-height: 1.5;
  font-weight: 900;
}

.v9-boundaries span {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-use-case {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: 64px;
  align-items: center;
  padding: 64px;
  border: 1px solid var(--v9-line);
  background: #fff;
}

.v9-use-case h2 {
  margin-top: 16px;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 950;
}

.v9-use-case p {
  color: var(--v9-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 620;
}

.v9-use-case.is-inline {
  margin-top: 30px;
  padding: 30px 32px;
  border-left: 4px solid var(--v9-blue);
  background: var(--v9-soft);
}

.v9-use-case.is-inline h3 {
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 930;
}

.v9-use-case.is-inline p {
  font-size: 14px;
}

.v9-opportunity {
  padding: 112px 0;
  color: #fff;
  background: var(--v9-deep);
}

.v9-opportunity.is-light {
  color: var(--v9-ink);
  background: var(--v9-soft);
}

.v9-opportunity-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

.v9-opportunity-title {
  max-width: 860px;
  margin-top: 16px;
  font-size: 54px;
  line-height: 1.05;
  font-weight: 950;
}

.v9-opportunity:not(.is-light) .v9-lead {
  color: #c8d1da;
}

.v9-opportunity-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  border-block: 1px solid rgb(255 255 255 / 20%);
}

.v9-opportunity.is-light .v9-opportunity-stage {
  border-color: var(--v9-line);
}

.v9-opportunity-media {
  position: relative;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-right: 1px solid rgb(255 255 255 / 20%);
  background: #02070c;
}

.v9-opportunity.is-light .v9-opportunity-media {
  border-color: var(--v9-line);
}

.v9-opportunity-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
}

.v9-opportunity-media figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 8px;
  border: 1px solid rgb(255 255 255 / 30%);
  color: #fff;
  background: rgb(3 10 18 / 78%);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
}

.v9-opportunity-modes {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.v9-opportunity-modes article {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
}

.v9-opportunity.is-light .v9-opportunity-modes article {
  border-color: var(--v9-line);
}

.v9-opportunity-modes article:last-child {
  border-bottom: 0;
}

.v9-opportunity-modes small,
.v9-dayparts small {
  color: #9eb6f5;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-opportunity.is-light .v9-opportunity-modes small,
.v9-opportunity.is-light .v9-dayparts small {
  color: var(--v9-blue-dark);
}

.v9-opportunity-modes strong {
  margin-top: 12px;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 930;
}

.v9-opportunity-modes p {
  margin-top: 12px;
  color: #c8d1da;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-opportunity.is-light .v9-opportunity-modes p {
  color: var(--v9-muted);
}

.v9-dayparts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 38px;
  border-block: 1px solid rgb(255 255 255 / 20%);
}

.v9-dayparts-label {
  margin-top: 36px;
  color: #c8d1da;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 700;
}

.v9-dayparts-label + .v9-dayparts {
  margin-top: 12px;
}

.v9-opportunity.is-light .v9-dayparts-label {
  color: var(--v9-muted);
}

.v9-opportunity.is-light .v9-dayparts {
  border-color: var(--v9-line);
}

.v9-dayparts li {
  min-width: 0;
  padding: 22px 24px;
  border-right: 1px solid rgb(255 255 255 / 20%);
}

.v9-opportunity.is-light .v9-dayparts li {
  border-color: var(--v9-line);
}

.v9-dayparts li:last-child {
  border-right: 0;
}

.v9-dayparts strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.v9-startup-boundary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--v9-line);
}

.v9-startup-boundary p {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 24px;
  border-right: 1px solid var(--v9-line);
}

.v9-startup-boundary p:last-child {
  border-right: 0;
}

.v9-startup-boundary strong {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 900;
}

.v9-startup-boundary span {
  color: var(--v9-muted);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 620;
}

.v9-opportunity-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.v9-opportunity-actions > p {
  max-width: 640px;
  color: #c8d1da;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
}

.v9-opportunity.is-light .v9-opportunity-actions > p {
  color: var(--v9-muted);
}

.v9-opportunity-actions .v9-actions {
  margin: 0;
}

.v9-final {
  padding: 82px 0;
  color: #fff;
  background: var(--v9-deep);
}

.v9-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.v9-final h2 {
  max-width: 780px;
  margin-top: 14px;
  font-size: 48px;
  line-height: 1.04;
  font-weight: 950;
}

.v9-final p:not(.v9-kicker) {
  max-width: 650px;
  margin-top: 18px;
  color: rgb(255 255 255 / 68%);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 620;
}

.v9-contact {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: #dbe5ff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 800;
}

.v9-page .site-footer .footer-info > span:not(:first-of-type) {
  margin-top: 6px;
  color: #aeb9c5;
  font-size: 11px;
  font-weight: 850;
}

@media (max-width: 1080px) {
  .v9-title {
    font-size: 50px;
  }

  .v9-hero h1 {
    font-size: 64px;
  }

  .v9-hero-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 42px;
  }

  .v9-split-copy {
    padding: 52px;
  }

  .v9-split-copy h2,
  .v9-validation h2 {
    font-size: 46px;
  }

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

  .v9-audience article:nth-child(3) {
    border-right: 0;
  }

  .v9-audience article:nth-child(n + 4) {
    border-top: 1px solid var(--v9-line);
  }

  .v9-models {
    grid-template-columns: 1fr;
  }

  .v9-model {
    min-height: 360px;
  }
}

@media (max-width: 980px) {
  .v9-page .shell {
    width: min(calc(100% - 40px), var(--fz-shell));
  }
}

@media (max-width: 820px) {
  .v9-section {
    padding: 84px 0;
  }

  .v9-section-head,
  .v9-validation,
  .v9-use-case,
  .v9-opportunity-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .v9-opportunity {
    padding: 84px 0;
  }

  .v9-opportunity-title {
    font-size: 46px;
  }

  .v9-opportunity-stage {
    grid-template-columns: 1fr;
  }

  .v9-opportunity-media {
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .v9-opportunity.is-light .v9-opportunity-media {
    border-color: var(--v9-line);
  }

  .v9-opportunity-modes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
  }

  .v9-opportunity-modes article {
    border-right: 1px solid rgb(255 255 255 / 20%);
    border-bottom: 0;
  }

  .v9-opportunity.is-light .v9-opportunity-modes article {
    border-color: var(--v9-line);
  }

  .v9-opportunity-modes article:last-child {
    border-right: 0;
  }

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

  .v9-startup-boundary {
    grid-template-columns: 1fr;
  }

  .v9-startup-boundary p,
  .v9-startup-boundary p:last-child {
    border-right: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .v9-startup-boundary p:last-child {
    border-bottom: 0;
  }

  .v9-dayparts li:nth-child(2n) {
    border-right: 0;
  }

  .v9-dayparts li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .v9-opportunity.is-light .v9-dayparts li:nth-child(-n + 2) {
    border-color: var(--v9-line);
  }

  .v9-opportunity-actions {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .v9-title {
    font-size: 44px;
  }

  .v9-hero {
    height: calc(100svh - var(--fz-header) - 30px);
    min-height: 530px;
  }

  .v9-hero-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 70px 0 30px;
  }

  .v9-hero h1 {
    max-width: 680px;
    font-size: 54px;
  }

  .v9-hero-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v9-hero-rail li {
    grid-template-columns: 34px minmax(0, 1fr);
    border-right: 1px solid rgb(255 255 255 / 18%);
    border-bottom: 0;
  }

  .v9-hero-rail li:last-child {
    border-right: 0;
  }

  .v9-kickoff .v9-hero-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v9-kickoff .v9-hero-rail li:nth-child(2n) {
    border-right: 0;
  }

  .v9-kickoff .v9-hero-rail li:nth-child(-n + 2) {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .v9-flow,
  .v9-diagnosis,
  .v9-maturity {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v9-flow li:nth-child(2),
  .v9-diagnosis article:nth-child(2),
  .v9-maturity article:nth-child(2) {
    border-right: 0;
  }

  .v9-flow li:nth-child(n + 3),
  .v9-diagnosis article:nth-child(n + 3),
  .v9-maturity article:nth-child(n + 3) {
    border-top: 1px solid var(--v9-line);
  }

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

  .v9-split-media {
    min-height: 430px;
  }

  .v9-products,
  .v9-price-grid,
  .v9-price-grid.is-three {
    grid-template-columns: 1fr;
  }

  .v9-product-lineup {
    grid-template-columns: 1fr;
  }

  .v9-product-lineup article,
  .v9-product-lineup article:last-child {
    min-height: 300px;
    border-right: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .v9-product-lineup article:last-child {
    border-bottom: 0;
  }

  .v9-model-compare article {
    grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
    gap: 30px;
  }

  .v9-support-grid {
    grid-template-columns: 1fr;
  }

  .v9-support-grid article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .v9-support-grid article:last-child {
    border-bottom: 0;
  }

  .v9-validation figure,
  .v9-validation figure img {
    min-height: 420px;
  }

  .v9-option {
    grid-template-columns: 130px minmax(220px, 0.8fr) minmax(0, 1.2fr);
  }

  .v9-config li {
    grid-template-columns: 130px minmax(210px, 0.8fr) minmax(0, 1.2fr);
  }

  .v9-step-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v9-step-list li {
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .v9-step-list li:nth-child(2n) {
    border-right: 0;
  }

  .v9-step-list li:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
  }

  .v9-final-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .v9-guide-callout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 600px) {
  .v9-section {
    padding: 72px 0;
  }

  .v9-opportunity {
    padding: 72px 0;
  }

  .v9-opportunity-head {
    gap: 22px;
    margin-bottom: 34px;
  }

  .v9-opportunity-title {
    font-size: 37px;
    line-height: 1.08;
  }

  .v9-opportunity-media {
    aspect-ratio: 4 / 3;
    order: 2;
    border-top: 1px solid rgb(255 255 255 / 20%);
    border-bottom: 0;
  }

  .v9-opportunity.is-light .v9-opportunity-media {
    border-color: var(--v9-line);
  }

  .v9-opportunity-modes {
    grid-template-columns: 1fr;
    order: 1;
  }

  .v9-opportunity-modes article {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
  }

  .v9-opportunity.is-light .v9-opportunity-modes article {
    border-color: var(--v9-line);
  }

  .v9-opportunity-modes article:last-child {
    border-bottom: 0;
  }

  .v9-opportunity-modes strong {
    font-size: 25px;
  }

  .v9-dayparts {
    margin-top: 28px;
  }

  .v9-dayparts li {
    padding: 18px 14px;
  }

  .v9-startup-boundary {
    grid-template-columns: 1fr;
  }

  .v9-startup-boundary p,
  .v9-startup-boundary p:last-child {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .v9-startup-boundary p:last-child {
    border-bottom: 0;
  }

  .v9-opportunity-actions .v9-actions,
  .v9-opportunity-actions .btn {
    width: 100%;
  }

  .v9-section-head {
    gap: 20px;
    margin-bottom: 34px;
  }

  .v9-title {
    font-size: 38px;
    line-height: 1.08;
  }

  .v9-lead {
    font-size: 16px;
  }

  .v9-hero {
    height: auto;
    min-height: calc(100svh - 102px);
    max-height: none;
  }

  .v9-hero::after {
    background:
      linear-gradient(0deg, rgb(3 9 17 / 96%) 0%, rgb(3 9 17 / 58%) 72%),
      linear-gradient(90deg, rgb(3 9 17 / 65%) 0%, transparent 88%);
  }

  .v9-hero-inner {
    gap: 20px;
    padding: 54px 0 22px;
  }

  .v9-hero h1 {
    font-size: 40px;
    line-height: 1.02;
  }

  .v9-hero-lead {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .v9-hero .v9-actions {
    margin-top: 22px;
  }

  .v9-actions .btn {
    width: 100%;
  }

  .v9-product-cta {
    align-items: stretch;
  }

  .v9-product-cta .btn,
  .v9-product-cta .v9-link {
    width: 100%;
    justify-content: center;
  }

  .v9-product-decision {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .v9-guide-callout {
    padding: 30px 0;
  }

  .v9-guide-callout h3 {
    font-size: 32px;
  }

  .v9-guide-points li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .v9-hero-rail {
    display: none;
  }

  .v9-flow,
  .v9-audience,
  .v9-diagnosis,
  .v9-maturity {
    grid-template-columns: 1fr;
  }

  .v9-flow li,
  .v9-audience article,
  .v9-diagnosis article,
  .v9-maturity article {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .v9-flow li:last-child,
  .v9-audience article:last-child,
  .v9-diagnosis article:last-child,
  .v9-maturity article:last-child {
    border-bottom: 0;
  }

  .v9-flow h3,
  .v9-audience h3,
  .v9-diagnosis h3,
  .v9-maturity h3 {
    margin-top: 24px;
  }

  .v9-split-media {
    min-height: 320px;
  }

  .v9-split-copy {
    padding: 42px 20px;
  }

  .v9-split-media figcaption {
    right: 20px;
    left: 20px;
  }

  .v9-split-copy h2,
  .v9-validation h2 {
    font-size: 38px;
  }

  .v9-rule-list li {
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .v9-product-copy {
    min-height: 390px;
    padding: 28px 24px;
  }

  .v9-product h3 {
    margin-top: 44px;
    font-size: 38px;
  }

  .v9-product figure {
    height: 240px;
  }

  .v9-support-grid article {
    padding-inline: 0;
  }

  .v9-validation figure,
  .v9-validation figure img {
    min-height: 320px;
  }

  .v9-option,
  .v9-config li {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .v9-price {
    padding: 28px 24px;
  }

  .v9-price h3 {
    margin-top: 34px;
    font-size: 28px;
  }

  .v9-price strong {
    font-size: 29px;
  }

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

  .v9-step-list li,
  .v9-step-list li:last-child {
    grid-column: auto;
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .v9-step-list li:last-child {
    border-bottom: 0;
  }

  .v9-step-list h3 {
    margin-top: 28px;
  }

  .v9-model {
    min-height: 410px;
    padding: 26px 22px;
  }

  .v9-model h3 {
    margin-top: 40px;
    font-size: 28px;
  }

  .v9-boundaries li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .v9-use-case {
    padding: 38px 24px;
  }

  .v9-product-lineup article,
  .v9-product-lineup.is-detailed article {
    min-height: auto;
    padding: 26px 0;
    background: transparent;
  }

  .v9-product-visual {
    margin: 0;
    border-radius: 4px;
  }

  .v9-product-lineup h3 {
    margin-top: 28px;
    font-size: 30px;
  }

  .v9-product-lineup > article > strong,
  .v9-product-lineup ul {
    margin-top: 28px;
    padding-top: 0;
  }

  .v9-model-compare article {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 0;
    background: transparent;
  }

  .v9-model-compare dl div {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .v9-operation-strip,
  .v9-responsibility-map,
  .v9-settlement-flow {
    grid-template-columns: 1fr;
  }

  .v9-operation-strip li,
  .v9-responsibility-map article,
  .v9-settlement-flow li {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .is-dark .v9-responsibility-map article,
  .v9-settlement-flow li {
    border-color: rgb(255 255 255 / 18%);
  }

  .v9-operation-strip li:last-child,
  .v9-responsibility-map article:last-child,
  .v9-settlement-flow li:last-child {
    border-bottom: 0;
  }

  .v9-operation-strip strong,
  .v9-responsibility-map h3,
  .v9-settlement-flow strong {
    margin-top: 20px;
  }

  .v9-use-case.is-inline {
    padding: 28px 22px;
  }

  .v9-use-case h2 {
    font-size: 36px;
  }

  .v9-final {
    padding: 66px 0;
  }

  .v9-final h2 {
    font-size: 38px;
  }

  .v9-contact {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 380px) {
  .v9-page .shell {
    width: min(calc(100% - 36px), var(--fz-shell));
  }

  .v9-split-copy {
    padding-inline: 18px;
  }

  .v9-split-media figcaption {
    right: 18px;
    left: 18px;
  }

  .v9-title,
  .v9-split-copy h2,
  .v9-validation h2,
  .v9-final h2 {
    font-size: 34px;
  }

  .v9-hero h1 {
    font-size: 40px;
  }

  .v9-product h3 {
    font-size: 34px;
  }

  .v9-specs div,
  .v9-model dl div {
    grid-template-columns: 78px minmax(0, 1fr);
  }
}

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

/* Page-owned compositions keep the brand system consistent without repeating one template. */
.v9-media-disclosure {
  width: fit-content;
  margin-top: 12px;
  padding: 6px 9px;
  border: 1px solid rgb(255 255 255 / 28%);
  color: rgb(255 255 255 / 72%);
  background: rgb(5 13 24 / 42%);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

.v9-kickoff .v9-hero-media {
  left: 42%;
  background: #07111f;
}

.v9-kickoff .v9-hero-media img {
  object-position: center;
}

.v9-kickoff .v9-hero::after {
  background:
    linear-gradient(90deg, #07111f 0%, #07111f 40%, rgb(7 17 31 / 86%) 53%, rgb(7 17 31 / 8%) 82%),
    linear-gradient(0deg, rgb(3 9 17 / 88%) 0%, transparent 58%);
}

.v9-partner .v9-hero-media img {
  object-position: 62% center;
}

.v9-partner .v9-diagnosis + .v9-link {
  margin-top: 26px;
}

@media (min-width: 821px) {
  .v9-home #products .v9-product-lineup {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .v9-home #products .v9-product-lineup article:first-child {
    grid-row: auto;
  }

  .v9-home #products .v9-product-lineup article:nth-child(n + 2) {
    min-height: 360px;
    border-right: 1px solid var(--v9-line);
  }

  .v9-home #products .v9-product-lineup article:last-child {
    border-right: 0;
  }

  .v9-home #products .v9-product-lineup article:nth-child(n + 2) .v9-product-visual {
    display: block;
  }

  .v9-kickoff #products .v9-product-lineup {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v9-kickoff #products .v9-product-lineup article:first-child {
    min-height: 420px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-content: center;
    column-gap: 36px;
    border-right: 0;
    border-bottom: 1px solid var(--v9-line);
  }

  .v9-kickoff #products .v9-product-lineup article:first-child .v9-product-visual {
    height: calc(100% + 56px);
    grid-column: 1;
    grid-row: 1 / 7;
    margin: -28px 0 -28px -28px;
    aspect-ratio: auto;
  }

  .v9-kickoff #products .v9-product-lineup article:first-child > :not(.v9-product-visual) {
    grid-column: 2;
  }

  .v9-kickoff #products .v9-product-lineup article:nth-child(2) {
    border-bottom: 0;
  }

  .v9-partner .v9-responsibility-map {
    grid-template-columns: 1fr;
  }

  .v9-partner .v9-responsibility-map article {
    display: grid;
    grid-template-columns: 150px minmax(180px, 0.45fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 18%);
  }

  .v9-partner .v9-responsibility-map article:last-child {
    border-bottom: 0;
  }

  .v9-partner .v9-responsibility-map h3,
  .v9-partner .v9-responsibility-map p {
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  .v9-kickoff .v9-hero-media {
    left: 0;
  }

  .v9-kickoff .v9-hero-media img {
    object-position: 64% center;
  }

  .v9-kickoff .v9-hero::after {
    background:
      linear-gradient(0deg, rgb(3 9 17 / 97%) 0%, rgb(3 9 17 / 70%) 68%, rgb(3 9 17 / 26%) 100%),
      linear-gradient(90deg, rgb(3 9 17 / 58%) 0%, transparent 88%);
  }
}

/* Home play flow pairs each decision step with one observable training scene. */
.v9-home .v9-flow li {
  min-height: 0;
  padding: 0;
  background: #fff;
}

.v9-home .v9-flow-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #07111f;
}

.v9-home .v9-flow-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 360ms ease;
}

.v9-home .v9-flow li:hover .v9-flow-media img {
  transform: scale(1.025);
}

.v9-home .v9-flow-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  margin: 0;
  padding: 5px 7px;
  border: 1px solid rgb(255 255 255 / 30%);
  color: #fff;
  background: rgb(5 13 24 / 72%);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 780;
}

.v9-home .v9-flow-copy {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 24px;
}

.v9-home .v9-flow-copy h3 {
  margin-top: auto;
}

@media (max-width: 820px) {
  .v9-home .v9-flow li:nth-child(n + 3) {
    border-top: 1px solid var(--v9-line);
  }

  .v9-home .v9-flow-copy {
    min-height: 178px;
  }
}

@media (max-width: 640px) {
  .v9-home .v9-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v9-home .v9-flow li {
    border-right: 1px solid var(--v9-line);
    border-bottom: 0;
  }

  .v9-home .v9-flow li:nth-child(2n) {
    border-right: 0;
  }

  .v9-home .v9-flow li:nth-child(n + 3) {
    border-top: 1px solid var(--v9-line);
  }

  .v9-home .v9-flow-copy {
    min-height: 164px;
    padding: 17px 14px 19px;
  }

  .v9-home .v9-flow-copy h3 {
    margin-top: 22px;
    font-size: 24px;
  }

  .v9-home .v9-flow-copy p {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.55;
  }

  .v9-home .v9-flow-media figcaption {
    right: 7px;
    bottom: 7px;
  }
}

@media (max-width: 350px) {
  .v9-home .v9-flow {
    grid-template-columns: 1fr;
  }

  .v9-home .v9-flow li,
  .v9-home .v9-flow li:nth-child(2n) {
    border-right: 0;
    border-top: 1px solid var(--v9-line);
  }

  .v9-home .v9-flow li:first-child {
    border-top: 0;
  }
}

/* Product architecture: hardware stays together; operations software stands alone. */
.v9-software-entry {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr) auto;
  gap: 36px;
  align-items: center;
  padding: 34px;
  color: #fff;
  border-radius: 8px;
  background: #132233;
}

.v9-software-entry h3,
.v9-ops-standalone h2 {
  margin-top: 14px;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
  word-break: keep-all;
}

.v9-software-entry > div > p:last-child,
.v9-ops-standalone-grid > div:first-child > p:last-child {
  margin-top: 18px;
  color: rgb(255 255 255 / 70%);
  line-height: 1.65;
  word-break: keep-all;
}

.v9-software-entry ul,
.v9-ops-standalone ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 34%);
}

.v9-software-entry li,
.v9-ops-standalone li {
  min-height: 48px;
  display: flex;
  align-items: center;
  color: rgb(255 255 255 / 82%);
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  font-size: 14px;
  font-weight: 800;
}

.v9-product-gateway {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.72fr);
  gap: 14px;
  margin-bottom: 68px;
}

.v9-product-gateway-group {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--v9-line);
  border-radius: 8px;
  background: #fff;
}

.v9-product-gateway-group.is-software {
  color: #fff;
  border-color: #132233;
  background: #132233;
}

.v9-product-gateway-group > p {
  margin-bottom: 16px;
  color: var(--v9-muted);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 900;
}

.v9-product-gateway-group.is-software > p {
  color: #b8ccff;
}

.v9-product-gateway-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.v9-product-gateway-group.is-software .v9-product-gateway-links {
  grid-template-columns: 1fr;
}

.v9-product-gateway-links a {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  color: var(--v9-ink);
  border: 1px solid var(--v9-line);
  border-radius: 6px;
  background: var(--v9-soft);
}

.v9-product-gateway-group.is-software a {
  color: #fff;
  border-color: rgb(255 255 255 / 16%);
  background: rgb(255 255 255 / 5%);
}

.v9-product-gateway-links small {
  color: var(--v9-blue);
  font-size: 10px;
  font-weight: 900;
}

.v9-product-gateway-group.is-software small {
  color: #b8ccff;
}

.v9-product-gateway-links strong {
  margin-top: 22px;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 900;
  word-break: keep-all;
}

.v9-product-gateway-links span {
  margin-top: auto;
  padding-top: 18px;
  color: var(--v9-muted);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  word-break: keep-all;
}

.v9-product-gateway-group.is-software span {
  color: rgb(255 255 255 / 68%);
}

.v9-subsection-head {
  margin-bottom: 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.v9-subsection-head h3 {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 950;
}

.v9-ops-standalone {
  padding: 80px 0;
  color: #fff;
  background: #132233;
}

.v9-ops-standalone-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.7fr) auto;
  gap: 54px;
  align-items: center;
}

.v9-ops-standalone .v9-kicker {
  color: #b8ccff;
}

.v9-ops-standalone .v9-actions {
  flex-direction: column;
}

@media (max-width: 980px) {
  .v9-software-entry,
  .v9-ops-standalone-grid {
    grid-template-columns: 1fr 1fr;
  }

  .v9-software-entry .btn,
  .v9-ops-standalone .v9-actions {
    grid-column: 1 / -1;
  }

  .v9-ops-standalone .v9-actions {
    flex-direction: row;
  }

  .v9-product-gateway {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .v9-software-entry {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px 20px;
  }

  .v9-software-entry h3,
  .v9-ops-standalone h2 {
    font-size: 35px;
  }

  .v9-software-entry .btn {
    grid-column: auto;
    width: 100%;
  }

  .v9-product-gateway {
    gap: 10px;
    margin-bottom: 54px;
  }

  .v9-product-gateway-group {
    padding: 18px;
  }

  .v9-product-gateway-links {
    grid-template-columns: 1fr;
  }

  .v9-product-gateway-links a {
    min-height: 122px;
  }

  .v9-subsection-head {
    display: block;
  }

  .v9-subsection-head h3 {
    margin-top: 12px;
    font-size: 30px;
  }

  .v9-ops-standalone {
    padding: 68px 0;
  }

  .v9-ops-standalone-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .v9-ops-standalone .v9-actions {
    grid-column: auto;
    flex-direction: column;
  }

  .v9-ops-standalone .btn {
    width: 100%;
  }
}
