:root {
  --v2-bg: #ffffff;
  --v2-bg-soft: #f7f7f8;
  --v2-bg-elevated: #eff1f3;
  --v2-surface: #ffffff;
  --v2-surface-strong: #ffffff;
  --v2-text: #111319;
  --v2-text-soft: #4b5260;
  --v2-line: #e3e7ef;
  --v2-white: #ffffff;
  --v2-platform-col-a: 15%;
  --v2-platform-col-b: 23.1%;
  --v2-platform-col-flow: 8%;
  --v2-platform-col-c: 30.8%;
  --v2-platform-col-d: calc(100% - var(--v2-platform-col-a) - var(--v2-platform-col-b) - var(--v2-platform-col-flow) - var(--v2-platform-col-c));
  --v2-channel-card-fixed-width: 176px;
  --v2-channel-cards-gap: 8px;
  --v2-channel-cards-block-width: calc(var(--v2-channel-card-fixed-width) * 2 + var(--v2-channel-cards-gap));
  --v2-channel-inline-title-width: 84px;
  --v2-channel-inline-row-height: 66px;
  --v2-channel-roam-row-height: 222px;
  --v2-channel-message-row-height: 132px;
  --v2-platform-rows-gap: 10px;
  --v2-flow-label-width: 28px;
  --v2-flow-label-gap: 6px;
  --v2-flow-arrow-width: 52px;
  --v2-flow-arrow-beta-width: 80px;
  --v2-flow-beta-anchor-left: -16px;
  --v2-flow-arrow-beta-vertical-width: 45px;
  --v2-flow-arrow-beta-shift-x: 8px;
  --v2-flow-arrow-beta-vertical-length: 80%;
  --v2-flow-arrow-beta-head-size: calc(var(--v2-flow-arrow-beta-vertical-width) * 0.866);
  --v2-flow-arrow-beta-stem-left: 24.5%;
  --v2-flow-arrow-beta-stem-right: 75.5%;
  --v2-flow-label-outside-height: calc(var(--v2-channel-message-row-height) + var(--v2-platform-rows-gap) + (var(--v2-channel-inline-row-height) * 0.55));
  --v2-channel-product-icon-url: url("https://storage.googleapis.com/insightx-images/service-site-v2/Group%202.png");
  --v2-channel-product-icon-size: 14px;
  --v2-input-to-inference-arrow-width: 42px;
  --v2-input-to-inference-arrow-offset: 1px;
  --v2-input-to-inference-arrow-height: 72%;
  --v2-input-to-inference-arrow-notch: 26%;
  --v2-input-to-inference-arrow-shoulder: calc(100% - var(--v2-input-to-inference-arrow-notch));
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.v2-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--v2-text);
  background: var(--v2-surface);
  line-height: 1.6;
  padding-top: 64px;
}

#concept,
#platform,
#cases,
#news {
  scroll-margin-top: 84px;
}

a {
  color: inherit;
}

.v2-container {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.v1-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  height: 64px;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.v1-header__inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.v1-header__logo-image {
  display: block;
  width: auto;
  height: 26px;
  max-width: min(260px, 52vw);
}

.v1-header__nav {
  display: none;
}

.v1-header__cta {
  margin-left: auto;
}

.v1-header__cta--desktop {
  display: none;
}

.v1-header__cta--mobile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.v1-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #111111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.v1-header__btn--outline {
  color: #111111;
  background: #ffffff;
}

.v1-header__btn--solid {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}

.v1-header__btn--compact {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.v1-header__menu-button {
  position: relative;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.v1-header__menu-button span {
  position: absolute;
  left: 6px;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.v1-header__menu-button span:nth-child(1) {
  top: 10px;
}

.v1-header__menu-button span:nth-child(2) {
  top: 16px;
}

.v1-header__menu-button span:nth-child(3) {
  top: 22px;
}

.v1-header__menu-button.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.v1-header__menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.v1-header__menu-button.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.v1-offcanvas {
  position: fixed;
  inset: 0;
  z-index: 45;
  visibility: hidden;
  pointer-events: none;
}

.v1-offcanvas.is-open {
  visibility: visible;
  pointer-events: auto;
}

.v1-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.v1-offcanvas.is-open .v1-offcanvas__backdrop {
  opacity: 1;
}

.v1-offcanvas__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(360px, 88vw);
  height: 100%;
  padding: 14px 22px 24px;
  background: #ffffff;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.v1-offcanvas.is-open .v1-offcanvas__panel {
  transform: translateX(0);
}

.v1-offcanvas__close {
  margin-left: auto;
  display: block;
  border: 0;
  background: transparent;
  color: #002d7c;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.v1-offcanvas__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  border-top: 1px solid #e5e7eb;
}

.v1-offcanvas__list + .v1-offcanvas__list {
  margin-top: 0;
  border-top: 0;
}

.v1-offcanvas__list li {
  border-bottom: 1px solid #e5e7eb;
}

.v1-offcanvas__list a {
  display: block;
  padding: 13px 0;
  color: #111319;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.v1-offcanvas__cta {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

body.v1-offcanvas-open {
  overflow: hidden;
}

.v1-footer {
  margin-top: 0;
  padding: 50px 20px 14px;
  background: #000000;
  color: #ffffff;
}

.v1-footer__inner,
.v1-footer__bottom,
.v1-footer__copyright {
  width: min(1240px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.v1-footer__inner {
  display: grid;
  gap: 38px;
}

.v1-footer__logo {
  width: min(250px, 70vw);
  height: auto;
  display: block;
}

.v1-footer__company-name {
  margin: 10px 0 0;
  font-size: 14px;
}

.v1-footer__address p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}

.v1-footer__address {
  margin-top: 10px;
}

.v1-footer__nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.v1-footer__nav > div:nth-child(3) {
  grid-column: 2;
}

.v1-footer__nav h3 {
  margin: 0 0 10px;
  font-size: 12px;
}

.v1-footer__nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.v1-footer__nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
}

.v1-footer__divider {
  width: min(1240px, 100%);
  height: 1px;
  margin: 26px auto 20px;
  background: #666666;
}

.v1-footer__bottom {
  display: grid;
  gap: 14px;
}

.v1-footer__policy-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.v1-footer__policy-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: 10px;
}

.v1-footer__badges {
  display: flex;
  gap: 6px;
  align-items: center;
}

.v1-footer__badges img {
  width: auto;
  height: 34px;
  display: block;
}

.v1-footer__copyright {
  margin-top: 16px;
  text-align: center;
  font-size: 10px;
}

@media (min-width: 1080px) {
  body.v2-body {
    padding-top: 80px;
  }

  .v1-header {
    height: 80px;
  }

  .v1-header__logo-image {
    height: 34px;
    max-width: 320px;
  }

  .v1-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .v1-header__nav a {
    position: relative;
    color: #040000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
  }

  .v1-header__nav-about-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .v1-header__nav-separator {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1;
  }

  .v1-header__nav-about {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .v1-header__nav-about-arrow {
    font-size: 12px;
    line-height: 1;
  }

  .v1-header__nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #111111;
    transition: width 0.25s ease;
  }

  .v1-header__nav a:hover::after {
    width: 100%;
  }

  .v1-header__cta--desktop {
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .v1-header__cta--mobile {
    display: none;
  }

  .v1-header__btn {
    min-height: 40px;
    font-size: 13px;
    padding: 0 18px;
  }

  .v1-footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 60px;
  }

  .v1-footer__nav {
    display: flex;
    gap: 90px;
  }

  .v1-footer__nav > div:nth-child(3) {
    grid-column: auto;
  }

  .v1-footer__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
  }

  .v1-footer__policy-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  .v1-footer__badges img {
    height: 62px;
  }

  .v1-footer__copyright {
    margin-top: 12px;
    text-align: left;
  }
}

.v2-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--v2-line);
}

.v2-header__inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.v2-logo__image {
  display: block;
  height: 28px;
  width: auto;
  max-width: min(320px, 52vw);
}

.v2-nav {
  margin-left: auto;
  display: flex;
  gap: 18px;
}

.v2-nav a {
  color: #444c5d;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.v2-menu-button {
  display: none;
  margin-left: auto;
  border: 1px solid #ced5e4;
  background: #ffffff;
  color: #374151;
  border-radius: 8px;
  padding: 8px 12px;
}

.v2-hero {
  --v2-hero-top-padding: 116px;
  background: transparent;
  color: var(--v2-text);
  padding: var(--v2-hero-top-padding) 0 56px;
}

.v2-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr);
  grid-template-areas:
    "content media"
    "cta media";
  align-items: center;
  column-gap: 32px;
  row-gap: 0;
}

.v2-hero__content {
  grid-area: content;
  min-width: 0;
}

.v2-hero__pretitle {
  margin: 0 0 10px;
  color: #000000;
  font-size: clamp(13px, 1.7vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.v2-hero__service-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  margin: 0 0 22px;
}

.v2-hero__cta {
  --v2-hero-cta-gap: 32px;
  grid-area: cta;
  margin-top: var(--v2-hero-cta-gap);
}

.v2-hero h1 {
  margin: 0;
  max-width: 15em;
  font-size: clamp(30px, 5vw, 50px);
  line-height: 1.3;
}

.v2-hero__focus {
  font-size: 1.24em;
  font-weight: 800;
}

.v2-hero__after-focus {
  font-size: 1.24em;
  font-weight: 600;
}

.v2-lead {
  margin-top: 18px;
  max-width: 42em;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--v2-text-soft);
}

.v2-hero__title-break-pc {
  display: inline;
}

.v2-lead__desktop {
  display: inline;
}

.v2-lead__mobile {
  display: none;
}

.v2-lead__emphasis {
  font-weight: 700;
}

.v2-hero__actions {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-hero__actions .v2-btn--primary {
  min-height: 56px;
  padding: 0 28px;
  font-size: clamp(17px, 1.8vw, 21px);
  border-radius: 12px;
}

.v2-hero__award {
  margin-top: var(--v2-hero-cta-gap);
}

.v2-hero__award-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
}

.v2-hero__media {
  grid-area: media;
  min-width: 0;
}

.v2-hero__image-wrap {
  display: block;
}

.v2-hero__image {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 961px) {
  .v2-hero__media {
    align-self: stretch;
    display: flex;
    margin-top: calc(-1 * var(--v2-hero-top-padding));
    min-height: calc(100% + var(--v2-hero-top-padding));
  }

  .v2-hero__image {
    width: 100%;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: 10% center;
  }
}

.v2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.v2-btn--primary {
  color: var(--v2-white);
  background: linear-gradient(135deg, #20232b 0%, #151820 100%);
  border-color: #151820;
  box-shadow: 0 8px 18px rgba(17, 19, 25, 0.18);
}

.v2-btn--primary:hover {
  background: linear-gradient(135deg, #2a2f39 0%, #1b1f28 100%);
  border-color: #1b1f28;
  transform: translateY(-1px);
}

.v2-btn--ghost {
  color: #374151;
  border-color: #cfd6e5;
  background: rgba(255, 255, 255, 0.85);
}

.v2-btn--ghost:hover {
  background: #ffffff;
  border-color: #a8afbc;
}

.v2-download-popup {
  position: fixed;
  right: 20px;
  bottom: 16px;
  z-index: 24;
  width: min(196px, calc(100% - 24px));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.v2-download-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.v2-download-popup__close {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 21px;
  height: 21px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 19, 25, 0.72);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: grid;
  place-items: center;
  padding: 0;
  cursor: pointer;
  transition: background 0.18s ease;
}

.v2-download-popup__close:hover {
  background: rgba(17, 19, 25, 0.88);
}

.v2-download-popup__close:focus-visible {
  outline: 2px solid #111827;
  outline-offset: 2px;
}

.v2-download-popup__link {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 7px 14px rgba(15, 18, 26, 0.2);
}

.v2-download-popup__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.v2-main {
  background: var(--v2-surface);
}

.v2-scroll-reveal {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--v2-reveal-delay, 0ms);
}

.v2-scroll-reveal.v2-scroll-reveal--ready {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

.v2-scroll-reveal.v2-scroll-reveal--visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.v2-logo-area {
  padding: 8px 0 30px;
  background: transparent;
}

.v2-logo-area h2 {
  margin: 0;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.25;
}

.v2-logo-marquee {
  margin-top: 0;
  overflow: hidden;
}

.v2-logo-marquee__track {
  display: flex;
  width: max-content;
  animation: v2-logo-marquee-scroll 26s linear infinite;
}

.v2-logo-marquee__group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
}

.v2-logo-area__item {
  min-height: 64px;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #6b7280;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.v2-logo-area__image {
  width: auto;
  max-width: 150px;
  max-height: 34px;
  display: block;
}

@keyframes v2-logo-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.v2-case-area {
  padding: 8px 0 52px;
  background: transparent;
}

.v2-case-area h2 {
  margin: 0;
  font-size: clamp(24px, 3.8vw, 36px);
  line-height: 1.25;
}

.v2-case-slider {
  margin-top: 18px;
  display: block;
}

.v2-case-slider__control {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #cfd4de;
  background: rgba(255, 255, 255, 0.95);
  color: #2e3645;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

.v2-case-slider__control:disabled {
  opacity: 0.35;
  cursor: default;
}

.v2-case-slider__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.v2-case-slider__viewport::-webkit-scrollbar {
  display: none;
}

.v2-case-slider__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 2.5);
  gap: 16px;
}

.v2-case-area__card {
  border: 1px solid var(--v2-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  overflow: hidden;
  scroll-snap-align: start;
}

.v2-case-area__card--placeholder {
  border-style: dashed;
  background: #fafbfc;
}

.v2-case-area__placeholder {
  height: 100%;
}

.v2-case-area__card--placeholder .v2-case-area__image--fallback {
  background: linear-gradient(135deg, #f3f5f9 0%, #e8ecf3 100%);
}

.v2-case-area__card--placeholder .v2-case-area__empty-text {
  color: #7a8291;
  font-weight: 600;
}

.v2-case-area__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.v2-case-area__image-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.v2-case-area__image-frame::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.v2-case-area__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-case-area__image--fallback {
  position: absolute;
  inset: 0;
  background: #f2f4f7;
}

.v2-case-area__date {
  display: block;
  margin: 14px 16px 0;
  color: #6b7280;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.v2-case-area__card h3 {
  margin: 8px 16px 0;
  font-size: 18px;
  line-height: 1.45;
}

.v2-case-area__more,
.v2-case-area__empty-text {
  display: block;
  margin: 10px 16px 16px;
  color: var(--v2-text-soft);
  font-size: 14px;
}

.v2-case-area__more {
  font-weight: 600;
}

.v2-case-area__footer {
  margin: 24px 0 0;
  text-align: center;
}

.v2-case-area__all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.v2-case-area__all-link:hover {
  background: #2a2f39;
}

.v2-intro {
  padding: 28px 0 70px;
  background: transparent;
}

.v2-intro__title {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 46px);
  line-height: 1.25;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.v2-intro__title-break-sp {
  display: none;
}

.v2-intro__lead {
  margin: 16px 0 0;
  max-width: 52em;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.8;
  color: var(--v2-text-soft);
}

.v2-intro__media {
  margin-top: 56px;
}

.v2-intro__cta {
  margin: 56px 0 0;
  text-align: center;
}

.v2-intro__cta .v2-btn--primary {
  min-height: 56px;
  padding: 0 30px;
  border-radius: 12px;
  font-size: clamp(17px, 1.8vw, 21px);
}

.v2-intro__image-wrap {
  display: block;
}

.v2-intro__image {
  width: 100%;
  height: auto;
  display: block;
}

.v2-shelf-concepts {
  padding: 0 0 48px;
  background: transparent;
}

.v2-shelf-concepts__stack {
  display: grid;
  gap: 18px;
}

.v2-shelf-concepts__intro {
  display: grid;
  gap: 16px;
}

.v2-shelf-concepts__intro-head {
  margin: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
}

.v2-shelf-concepts__intro-logo {
  width: min(296px, 38.4vw);
  margin-top: 10px;
  height: auto;
  display: block;
}

.v2-shelf-concepts__intro-tail {
  color: #111111;
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 700;
  line-height: 1;
  transform: translateY(-6px);
}

.v2-shelf-concepts__intro-columns {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 28px;
  align-items: end;
}

.v2-shelf-concepts__intro-column {
  margin: 0;
  color: #111111;
  font-size: clamp(14px, 1.8vw, 31px);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.v2-shelf-concepts__shelf-word {
  font-size: 2em;
  line-height: 1;
}

.v2-shelf-concepts__image {
  width: 100%;
  height: auto;
  display: block;
}

.v2-shelf-concepts__text {
  margin: 0;
  color: #111111;
  font-size: clamp(22px, 3vw, 46px);
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.v2-shelf-concepts__text-emphasis {
  display: inline-block;
  padding: 0.08em 0.22em;
  background: #000000;
  color: #ffffff;
  font-size: 1.5em;
  line-height: 1;
}

.v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__text {
  margin-top: 56px;
}

.v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__image {
  margin-top: 56px;
}

.v2-shelf-concepts__stack > .v2-shelf-concepts__image:last-child {
  margin-bottom: 56px;
}

@media (min-width: 961px) {
  .v2-logo-area {
    padding-top: 25px;
  }

  .v2-case-area {
    padding-top: 50px;
  }

  .v2-shelf-concepts__intro {
    margin-top: 100px;
  }

  .v2-shelf-concepts__stack > picture + .v2-shelf-concepts__text,
  .v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__text {
    margin-top: 100px;
  }

  .v2-shelf-concepts__stack > picture + picture,
  .v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__image {
    margin-top: 220px;
  }

  .v2-shelf-concepts__stack > picture:last-child,
  .v2-shelf-concepts__stack > .v2-shelf-concepts__image:last-child {
    margin-bottom: 220px;
  }

  .v2-intro {
    padding-top: 50px;
  }
}

.v2-platform-overview {
  display: none;
}

.v2-platform-overview h2 {
  margin: 0;
  font-size: clamp(26px, 4.2vw, 40px);
  line-height: 1.28;
}

.v2-platform-overview__title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-platform-overview__title-logo {
  display: block;
  width: auto;
  height: clamp(30px, 3.8vw, 52px);
}

.v2-platform-overview__title-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background: #000000;
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.v2-platform-overview__lead {
  margin: 14px 0 0;
  color: var(--v2-text-soft);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.7;
}

.v2-platform-overview__table {
  margin-top: 18px;
  display: grid;
  grid-template-columns: var(--v2-platform-col-a) var(--v2-platform-col-b) var(--v2-platform-col-flow) var(--v2-platform-col-c) var(--v2-platform-col-d);
  gap: 16px;
}

.v2-platform-overview__bridge-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: var(--v2-platform-col-a) var(--v2-platform-col-b) var(--v2-platform-col-flow) var(--v2-platform-col-c) var(--v2-platform-col-d);
  gap: 16px;
}

.v2-platform-overview__bridge {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4f5768;
}

.v2-platform-overview__bridge--ab {
  grid-column: 1 / 3;
}

.v2-platform-overview__bridge--c {
  grid-column: 4 / 5;
  font-weight: 700;
  color: #2a303d;
  background: transparent;
}

.v2-platform-overview__column {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}

.v2-platform-overview__column-focus {
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;
  color: #2f3748;
  text-align: center;
}

.v2-platform-overview__column--end-user {
  grid-template-rows: 1fr;
  gap: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.v2-platform-overview__column--end-user::before {
  content: "";
  position: absolute;
  left: var(--v2-flow-beta-anchor-left);
  top: -6px;
  bottom: -6px;
  width: var(--v2-flow-arrow-beta-width);
  background: #d9d9d9ff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  z-index: 0;
  pointer-events: none;
}

.v2-platform-overview__column--end-user::after {
  content: "";
  position: absolute;
  left: calc(var(--v2-flow-beta-anchor-left) - (var(--v2-flow-arrow-beta-vertical-width) / 2) + var(--v2-flow-arrow-beta-shift-x));
  top: 50%;
  width: var(--v2-flow-arrow-beta-vertical-width);
  height: var(--v2-flow-arrow-beta-vertical-length);
  transform: translateY(-50%);
  background: linear-gradient(180deg, #595959ff 0%, #999999ff 100%);
  clip-path: polygon(50% 0, 100% var(--v2-flow-arrow-beta-head-size), var(--v2-flow-arrow-beta-stem-right) var(--v2-flow-arrow-beta-head-size), var(--v2-flow-arrow-beta-stem-right) calc(100% - var(--v2-flow-arrow-beta-head-size)), 100% calc(100% - var(--v2-flow-arrow-beta-head-size)), 50% 100%, 0 calc(100% - var(--v2-flow-arrow-beta-head-size)), var(--v2-flow-arrow-beta-stem-left) calc(100% - var(--v2-flow-arrow-beta-head-size)), var(--v2-flow-arrow-beta-stem-left) var(--v2-flow-arrow-beta-head-size), 0 var(--v2-flow-arrow-beta-head-size));
  z-index: 0;
  pointer-events: none;
}

.v2-platform-overview__cross-cx-label {
  position: absolute;
  left: calc(var(--v2-flow-beta-anchor-left) - (var(--v2-flow-arrow-beta-vertical-width) / 2) + var(--v2-flow-arrow-beta-shift-x));
  top: 50%;
  width: var(--v2-flow-arrow-beta-vertical-width);
  height: var(--v2-flow-arrow-beta-vertical-length);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 17.6px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  z-index: 1;
  pointer-events: none;
}

.v2-platform-overview__column--flow-guide {
  grid-template-rows: 1fr;
  gap: 0;
  position: relative;
}

.v2-platform-overview__flow-guide-lane {
  position: relative;
  height: 100%;
  --v2-channel-rows-total-height: calc(var(--v2-channel-roam-row-height) + (var(--v2-channel-inline-row-height) * 2) + var(--v2-channel-message-row-height));
  --v2-flow-gap-equal: calc((100% - var(--v2-channel-rows-total-height)) / 3);
}

.v2-platform-overview__flow-arrow {
  position: absolute;
  left: 0;
  width: var(--v2-flow-arrow-width);
  top: -6px;
  bottom: -6px;
  background: #eceff3;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.v2-platform-overview__flow-label {
  position: absolute;
  right: 0;
  width: var(--v2-flow-label-width);
  border: 1px solid transparent;
  background: #d9d9d9ff;
  color: #2f3748;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.v2-platform-overview__flow-label--inside {
  top: 0;
  bottom: auto;
  height: calc(100% - var(--v2-flow-label-outside-height) - var(--v2-flow-gap-equal));
}

.v2-platform-overview__flow-label--outside {
  bottom: 0;
  height: var(--v2-flow-label-outside-height);
}

.v2-platform-overview__end-user-icon {
  width: clamp(92px, 11vw, 132px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #d5d9e1;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 24, 44, 0.12);
  position: relative;
  z-index: 2;
}

.v2-platform-overview__end-user-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v2-platform-overview__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  align-content: start;
}

.v2-platform-overview__row {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--v2-line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 24, 44, 0.05);
}

.v2-platform-overview__row--rounded {
  border-radius: 12px;
}

.v2-platform-overview__row-title {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--v2-text);
}

.v2-platform-overview__row-description {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--v2-text-soft);
}

.v2-platform-overview__products {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(126px, 1fr));
  gap: 8px;
}

.v2-platform-overview__products--two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-platform-overview__products--inline-single {
  grid-template-columns: 1fr;
}

.v2-platform-overview__product {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 8px;
  border: 1px solid #cfd5e2;
  border-radius: 0;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #2f3748;
  text-align: center;
}

.v2-platform-overview__product--rounded {
  border-radius: 8px;
}

.v2-platform-overview__nested-headline {
  margin: 8px 0 0;
  min-height: 54px;
  padding: 6px 8px;
  border: 1px solid #cfd5e2;
  border-radius: 0;
  background: #ffffff;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
  color: #2f3748;
  text-align: center;
}

.v2-platform-overview__nested-headline--image {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 6px;
}

.v2-platform-overview__nested-headline--image img {
  width: min(100%, 260px);
  height: auto;
  display: block;
  margin-inline: auto;
}

.v2-platform-overview__nested-headline-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #2f3748;
}

.v2-platform-overview__nested-boxes {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.v2-platform-overview__nested-boxes > .v2-platform-overview__nested-box:nth-child(3) {
  grid-column: 1 / -1;
}

.v2-platform-overview__nested-box {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 5px 6px;
  border: 1px solid #cfd5e2;
  border-radius: 0;
  background: #ffffff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  color: #3a4252;
  text-align: center;
}

.v2-platform-overview__column--input {
  padding: 8px;
  border: 1px solid #d5d9e1;
  border-color: transparent;
  border-radius: 0;
  background: #eceff3;
  align-self: stretch;
  position: relative;
}

.v2-platform-overview__column--input .v2-platform-overview__column-focus {
  padding: 4px 8px;
  border: 1px solid transparent;
  background: transparent;
  font-weight: 800;
  font-size: 13px;
}

.v2-platform-overview__column--input .v2-platform-overview__rows {
  gap: 6px;
  height: 100%;
  align-content: stretch;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.v2-platform-overview__column--input .v2-platform-overview__row {
  background: #ffffff;
  width: 82%;
  justify-self: center;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: visible;
}

.v2-platform-overview__column--input .v2-platform-overview__row::after {
  content: "";
  position: absolute;
  right: calc(-1 * (var(--v2-input-to-inference-arrow-width) + var(--v2-input-to-inference-arrow-offset)));
  top: 50%;
  width: var(--v2-input-to-inference-arrow-width);
  height: var(--v2-input-to-inference-arrow-height);
  transform: translateY(-50%);
  background: #ffffff;
  border: 1px solid transparent;
  clip-path: polygon(0 0, var(--v2-input-to-inference-arrow-shoulder) 0, 100% 50%, var(--v2-input-to-inference-arrow-shoulder) 100%, 0 100%, var(--v2-input-to-inference-arrow-notch) 50%);
  z-index: 8;
  pointer-events: none;
}

.v2-platform-overview__column--input .v2-platform-overview__row::before {
  content: "";
  position: absolute;
  right: calc(-1 * (var(--v2-input-to-inference-arrow-width) + var(--v2-input-to-inference-arrow-offset)));
  top: 50%;
  width: var(--v2-input-to-inference-arrow-width);
  height: var(--v2-input-to-inference-arrow-height);
  transform: translateY(-50%) translate(3px, 3px);
  background: rgba(15, 24, 44, 0.24);
  clip-path: polygon(0 0, var(--v2-input-to-inference-arrow-shoulder) 0, 100% 50%, var(--v2-input-to-inference-arrow-shoulder) 100%, 0 100%, var(--v2-input-to-inference-arrow-notch) 50%);
  filter: blur(1.5px);
  z-index: 7;
  pointer-events: none;
}

.v2-platform-overview__column--input .v2-platform-overview__row-title {
  font-size: 15px;
  line-height: 1.35;
}

.v2-platform-overview__column--input .v2-platform-overview__row-description {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.45;
}

.v2-platform-overview__column--inference {
  position: relative;
}

.v2-platform-overview__column--inference::before {
  content: "";
  position: absolute;
  inset: -6px;
  border: 2px solid #111111;
  border-radius: 0;
  background: transparent;
  pointer-events: none;
  z-index: 10;
}

.v2-platform-overview__column--inference .v2-platform-overview__rows {
  height: 100%;
  align-content: stretch;
  grid-template-rows: auto 1fr;
}

.v2-platform-overview__column--inference .v2-platform-overview__column-focus {
  border-color: transparent;
  background: transparent;
  position: relative;
  z-index: 1;
}

.v2-platform-overview__column--inference .v2-platform-overview__row {
  background: #f9fbff;
  position: relative;
  z-index: 1;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--engine .v2-platform-overview__row-title {
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--engine .v2-platform-overview__row-title::before {
  content: "";
  display: block;
  width: min(100%, 240px);
  aspect-ratio: 1024 / 247;
  margin: 0 auto 8px;
  background-image: url("https://storage.googleapis.com/insightx-images/service-site-v2/logo_service_name_white.png?t=1780893352");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--engine {
  width: calc(100% - 32px);
  min-height: 160px;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #000000 0%, #666666ff 100%);
  border-width: 4px;
  border-style: solid;
  border-color: #111111;
  color: #ffffff;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--engine .v2-platform-overview__row-title {
  color: #ffffff;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--rounded {
  min-height: 200px;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--engine.v2-platform-overview__row--rounded {
  min-height: 160px;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data {
  align-self: end;
  position: relative;
  border-color: #d5d9e1;
  border-color: transparent;
  background: #eceff3;
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data .v2-platform-overview__nested-headline {
  min-height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 4px solid #111111;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data .v2-platform-overview__nested-headline--image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data .v2-platform-overview__nested-boxes {
  margin-top: auto;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data .v2-platform-overview__nested-box {
  border: 2px dashed #111111;
}

.v2-platform-overview__column--inference .v2-platform-overview__row--insight-data::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -17px;
  width: 17px;
  background: #eceff3;
  border-top: 1px solid #d5d9e1;
  border-bottom: 1px solid #d5d9e1;
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.v2-platform-overview__column--channel .v2-platform-overview__column-focus {
  border-color: transparent;
  background: transparent;
}

.v2-platform-overview__column--channel {
  grid-template-rows: 1fr;
}

.v2-platform-overview__column--channel .v2-platform-overview__row {
  background: #d9d9d9ff;
  border-color: transparent;
}

.v2-platform-overview__column--channel .v2-platform-overview__rows {
  grid-row: 1 / -1;
  height: 100%;
  align-content: space-between;
  grid-template-rows: var(--v2-channel-roam-row-height) var(--v2-channel-inline-row-height) var(--v2-channel-inline-row-height) var(--v2-channel-message-row-height);
  gap: 0;
}

.v2-platform-overview__column--channel .v2-platform-overview__rows > .v2-platform-overview__row:first-child {
  height: var(--v2-channel-roam-row-height);
  min-height: var(--v2-channel-roam-row-height);
}

.v2-platform-overview__column--channel .v2-platform-overview__row--search,
.v2-platform-overview__column--channel .v2-platform-overview__row--lp-feature {
  display: grid;
  grid-template-columns: var(--v2-channel-inline-title-width) minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: var(--v2-channel-inline-row-height);
  height: var(--v2-channel-inline-row-height);
  padding: 8px 12px 16px;
}

.v2-platform-overview__column--channel .v2-platform-overview__row--message {
  display: grid;
  grid-template-columns: var(--v2-channel-inline-title-width) minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: var(--v2-channel-message-row-height);
  height: var(--v2-channel-message-row-height);
  padding: 8px 12px;
}

.v2-platform-overview__column--channel .v2-platform-overview__row--search .v2-platform-overview__row-title,
.v2-platform-overview__column--channel .v2-platform-overview__row--lp-feature .v2-platform-overview__row-title,
.v2-platform-overview__column--channel .v2-platform-overview__row--message .v2-platform-overview__row-title {
  margin: 0;
  font-size: 17px;
  white-space: nowrap;
}

.v2-platform-overview__column--channel .v2-platform-overview__row--search .v2-platform-overview__products,
.v2-platform-overview__column--channel .v2-platform-overview__row--lp-feature .v2-platform-overview__products {
  margin-top: 0;
  transform: translateY(8px);
}

.v2-platform-overview__column--channel .v2-platform-overview__row--message .v2-platform-overview__products {
  margin-top: 0;
  transform: none;
}

.v2-platform-overview__column--channel .v2-platform-overview__row--search .v2-platform-overview__product,
.v2-platform-overview__column--channel .v2-platform-overview__row--lp-feature .v2-platform-overview__product,
.v2-platform-overview__column--channel .v2-platform-overview__row--message .v2-platform-overview__product {
  min-height: 32px;
  padding: 5px 10px;
}

.v2-platform-overview__column--channel .v2-platform-overview__row--search .v2-platform-overview__product,
.v2-platform-overview__column--channel .v2-platform-overview__row--lp-feature .v2-platform-overview__product,
.v2-platform-overview__column--channel .v2-platform-overview__row--message .v2-platform-overview__product {
  width: min(var(--v2-channel-card-fixed-width), 100%);
  justify-self: start;
  border-radius: 8px;
}

.v2-platform-overview__column--channel .v2-platform-overview__products--two-column .v2-platform-overview__product {
  width: min(var(--v2-channel-card-fixed-width), 100%);
  justify-self: start;
}

.v2-platform-overview__column--channel .v2-platform-overview__products--two-column {
  grid-template-columns: repeat(2, minmax(0, var(--v2-channel-card-fixed-width)));
  gap: var(--v2-channel-cards-gap);
  justify-content: start;
}

.v2-platform-overview__column--channel .v2-platform-overview__product {
  border: 2px solid #111111;
  color: #111111;
  justify-content: flex-start;
  text-align: left;
  gap: 6px;
}

.v2-platform-overview__column--channel .v2-platform-overview__product::before {
  content: "";
  width: var(--v2-channel-product-icon-size);
  height: var(--v2-channel-product-icon-size);
  flex: 0 0 var(--v2-channel-product-icon-size);
  background-image: var(--v2-channel-product-icon-url);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.v2-platform-overview__column--channel .v2-platform-overview__rows > .v2-platform-overview__row:first-child .v2-platform-overview__product:nth-child(5) {
  font-size: 11px;
  white-space: nowrap;
}

.v2-platform-overview__column--channel .v2-platform-overview__row-title {
  font-size: 18px;
}

.v2-platform-overview__column--channel .v2-platform-overview__row-description {
  margin-top: 4px;
  font-weight: 600;
}

.v2-section {
  padding: 72px 0;
}

.v2-section--alt {
  background: #f6f7f8;
}

.v2-section h2 {
  margin: 0 0 24px;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.25;
  color: var(--v2-text);
}

.v2-platform-v2 {
  background: #1c1c1eff;
  color: #ffffff;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

.v2-platform-v2.is-observing {
  opacity: 0;
  transform: translateY(16px);
}

.v2-platform-v2.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.v2-platform-v2__title-row {
  margin: 0 0 14px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.v2-platform-v2__service-logo {
  display: block;
  width: min(250px, 100%);
  height: auto;
  transform: translateY(3px);
}

.v2-platform-v2__tagline {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(17.6px, 2.56vw, 33.6px);
  font-weight: 700;
  line-height: 1.2;
}

@media (min-width: 961px) {
  .v2-platform-v2__title-row {
    margin: 0 0 18px;
    gap: 16px;
  }

  .v2-platform-v2__service-logo {
    width: min(320px, 100%);
    transform: translateY(5px);
  }

  .v2-platform-v2__tagline {
    margin-top: 14px;
    font-size: clamp(22px, 2.9vw, 40px);
  }
}

.v2-platform-v2__subtitle {
  margin: 32px 0;
  color: #ffffff;
  font-size: clamp(14px, 1.7vw, 22px);
  line-height: 1.5;
  text-align: left;
}

.v2-platform-v2__subtitle-break {
  display: none;
}

.v2-platform-v2__visual {
  margin: 0 0 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  overflow: hidden;
}

.v2-platform-v2__visual-image {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms ease-out 180ms, transform 900ms ease-out 180ms;
}

.v2-platform-v2.is-observing .v2-platform-v2__visual-image {
  opacity: 0;
  transform: translateY(12px);
}

.v2-platform-v2.is-visible .v2-platform-v2__visual-image {
  opacity: 1;
  transform: translateY(0);
}

.v2-platform-canvas-area {
  background: #1c1c1eff;
  padding: 8px 0 40px;
}

.v2-platform-canvas-area__canvas {
  min-height: 220px;
  padding: 24px 28px;
  border-radius: 18px;
  background: #ffffff;
}

.v2-platform-canvas-area__title {
  margin: 0 0 30px;
  color: #111111;
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.2;
}

.v2-platform-canvas-area__sections {
  display: grid;
  gap: 50.4px;
  margin-bottom: 28px;
}

.v2-platform-canvas-area__item {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 13fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
}

.v2-platform-canvas-area__item--wide-gap {
  column-gap: 26px;
}

.v2-platform-canvas-area__triplet {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.v2-platform-canvas-area__item--stacked {
  grid-template-columns: 1fr;
  align-items: start;
  align-content: start;
  gap: 14px;
  height: 100%;
}

.v2-platform-canvas-area__item--stacked .v2-platform-canvas-area__text h4 {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.v2-platform-canvas-area__item--stacked .v2-platform-canvas-area__heading-logo {
  transform: none;
}

.v2-platform-canvas-area__item--stacked .v2-platform-canvas-area__media {
  height: auto;
  align-items: center;
  justify-content: center;
  padding: 7.5%;
}

.v2-platform-canvas-area__media--stacked img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.v2-platform-canvas-area__item--reverse .v2-platform-canvas-area__text {
  order: 2;
}

.v2-platform-canvas-area__item--reverse .v2-platform-canvas-area__media {
  order: 1;
}

.v2-platform-canvas-area__item--reverse {
  grid-template-columns: minmax(0, 13fr) minmax(0, 7fr);
}

.v2-platform-canvas-area__text h4 {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111111;
  font-size: clamp(20px, 2.2vw, 31px);
  line-height: 1.3;
}

.v2-platform-canvas-area__heading-logo {
  width: auto;
  height: clamp(20.7px, 2.07vw, 27.6px);
  flex: 0 0 auto;
  display: block;
  transform: translateY(2px);
}

.v2-platform-canvas-area__keyphrase {
  margin: 12px 0 0;
  color: #161618;
  font-size: clamp(13.4px, calc(1.33vw + 1.5px), 18.3px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.v2-platform-canvas-area__keyphrase-break {
  display: none;
}

@media (min-width: 961px) {
  .v2-platform-canvas-area__keyphrase-break {
    display: block;
  }
}

.v2-platform-canvas-area__description {
  margin: 12px 0 0;
  color: #4b5260;
  font-size: clamp(10.8px, calc(1.015vw + 1px), 13.6px);
  line-height: 1.7;
}

.v2-platform-canvas-area__media {
  height: clamp(180px, 22vw, 240px);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.v2-platform-canvas-area__media--large {
  height: clamp(270px, 33vw, 360px);
}

.v2-platform-canvas-area__media--x115 {
  height: clamp(310.5px, 37.95vw, 414px);
}

.v2-platform-canvas-area__media img {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: contain;
  object-position: center;
}

.v2-platform-canvas-area__media--align-width img {
  width: 100%;
  max-width: none;
  height: auto;
}

.v2-platform-canvas-area__image-placeholder {
  min-height: 168px;
  border: 1px dashed #cbd3e3;
  border-radius: 12px;
  background: #f0f3f9;
  color: #687184;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .v2-scroll-reveal,
  .v2-scroll-reveal.v2-scroll-reveal--ready,
  .v2-scroll-reveal.v2-scroll-reveal--visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
    will-change: auto;
  }

  .v2-platform-v2,
  .v2-platform-v2.is-observing,
  .v2-platform-v2.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v2-platform-v2__visual-image {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .v2-platform-v2.is-observing .v2-platform-v2__visual-image,
  .v2-platform-v2.is-visible .v2-platform-v2__visual-image {
    opacity: 1;
    transform: none;
  }
}

.v2-grid {
  display: grid;
  gap: 16px;
}

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

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

.v2-card,
.v2-feature {
  border: 1px solid var(--v2-line);
  border-radius: 16px;
  padding: 22px;
  background: var(--v2-surface-strong);
  box-shadow: 0 10px 26px rgba(15, 24, 44, 0.05);
}

.v2-card h3,
.v2-feature h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.v2-card p,
.v2-feature p {
  margin: 0;
  color: var(--v2-text-soft);
}

.v2-news-area {
  background: transparent;
}

.v2-news-area__lead {
  margin: 0;
  max-width: 52em;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.75;
  color: var(--v2-text-soft);
}

.v2-news-area__list {
  margin-top: 20px;
  display: grid;
  gap: 30px;
}

.v2-news-area__item {
  border: 0;
  background: #ffffff;
}

.v2-news-area__item-link {
  width: 100%;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 20px;
  color: inherit;
  text-decoration: none;
}

.v2-news-area__thumb-wrap {
  min-width: 0;
}

.v2-news-area__thumb {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  display: block;
}

.v2-news-area__body {
  min-width: 0;
}

.v2-news-area__meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  color: #21426a;
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.v2-news-area__date {
  color: inherit;
  font-size: inherit;
  letter-spacing: inherit;
}

.v2-news-area__category {
  color: #6b7280;
  font-size: inherit;
  letter-spacing: inherit;
}

.v2-news-area__title {
  margin: 10px 0 0;
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.75;
  color: var(--v2-text);
  word-break: break-word;
}

.v2-news-area__more {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #8c95a5;
  border-radius: 999px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 600;
  color: #2f3748;
}

.v2-news-area__footer {
  margin: 24px 0 0;
  text-align: center;
}

.v2-news-area__all-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 10px;
  background: #111111;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.v2-news-area__all-link:hover {
  background: #2a2f39;
}

.v2-cta {
  padding: 80px 0;
  background: transparent;
  color: var(--v2-text);
  text-align: center;
  border-top: 1px solid var(--v2-line);
  border-bottom: 1px solid var(--v2-line);
}

.v2-cta .v2-container {
  position: static;
}

.v2-cta h2 {
  margin: 0;
  font-size: clamp(24px, 4vw, 34px);
}

.v2-cta p {
  margin: 12px 0 22px;
  color: var(--v2-text-soft);
}

.v2-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.v2-cta__actions .v1-header__btn {
  min-height: 40px;
  padding: 0 18px;
}

.v2-cta .v2-btn--primary {
  color: #ffffff;
  background: linear-gradient(135deg, #20232b 0%, #151820 100%);
  border-color: #151820;
  box-shadow: 0 8px 18px rgba(17, 19, 25, 0.18);
}

.v2-cta .v2-btn--primary:hover {
  background: linear-gradient(135deg, #2a2f39 0%, #1b1f28 100%);
  border-color: #1b1f28;
}

.v2-footer {
  background: #ffffff;
  color: #6b7280;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid var(--v2-line);
}

@media (max-width: 960px) {
  .v2-logo-marquee__track {
    animation-duration: 24s;
  }

  .v2-logo-marquee__group {
    gap: 18px;
    padding-right: 18px;
  }

  .v2-logo-area__item {
    min-width: 126px;
  }

  .v2-case-slider {
    margin-top: 16px;
  }

  .v2-case-slider__track {
    grid-auto-columns: minmax(260px, calc((100% - 24px) / 2.3));
    gap: 12px;
  }

  .v2-hero__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "cta";
    gap: 24px;
  }

  .v2-hero__cta {
    margin-top: 0;
  }

  .v2-hero__media {
    max-width: 760px;
    margin: 0 auto;
  }

  .v2-grid--3 {
    grid-template-columns: 1fr;
  }

  .v2-grid--2 {
    grid-template-columns: 1fr;
  }

  .v2-platform-overview__table {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v2-platform-overview__bridge-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .v2-platform-overview__bridge--ab,
  .v2-platform-overview__bridge--c {
    grid-column: auto;
  }

  .v2-platform-overview__column {
    gap: 10px;
  }

  .v2-platform-overview__column--flow-guide {
    display: none;
  }

  .v2-platform-overview__column--end-user::before {
    display: none;
  }

  .v2-platform-overview__column--end-user::after {
    display: none;
  }

  .v2-platform-overview__cross-cx-label {
    display: none;
  }

  .v2-platform-overview__column--input .v2-platform-overview__row::after {
    display: none;
  }

  .v2-platform-overview__column--input .v2-platform-overview__row::before {
    display: none;
  }

  .v2-platform-overview__column--input .v2-platform-overview__rows,
  .v2-platform-overview__column--inference .v2-platform-overview__rows {
    height: auto;
    align-content: start;
    grid-template-rows: none;
  }

  .v2-platform-overview__column--inference .v2-platform-overview__row--insight-data {
    align-self: auto;
    min-height: 0;
  }

  .v2-platform-overview__column--inference .v2-platform-overview__row--insight-data .v2-platform-overview__nested-headline {
    min-height: 34px;
    display: block;
  }

  .v2-platform-overview__column--inference .v2-platform-overview__row--insight-data::before {
    display: none;
  }

  .v2-platform-overview__column--inference .v2-platform-overview__row--rounded {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .v2-hero__content {
    text-align: center;
  }

  .v2-hero__service-logo {
    width: min(240px, 72vw);
    margin: 0 auto 18px;
  }

  .v2-hero h1 {
    font-size: clamp(20px, 6.2vw, 32px);
    line-height: 1.42;
    margin-inline: auto;
    text-align: center;
  }

  .v2-hero__title-break-pc {
    display: inline;
  }

  .v2-hero__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .v2-hero__actions {
    justify-content: center;
  }

  .v2-hero__actions .v2-btn--primary {
    min-height: 52px;
    padding: 0 24px;
    font-size: 18px;
  }

  .v2-hero__award {
    margin-top: 24px;
    display: flex;
    justify-content: center;
  }

  .v2-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .v2-lead__desktop {
    display: none;
  }

  .v2-lead__mobile {
    display: inline;
  }

  .v2-download-popup {
    display: none;
    right: 12px;
    bottom: 12px;
    width: min(189px, calc(100% - 20px));
  }

  .v2-download-popup__image {
    border-radius: 9px;
  }

  .v2-cta__actions {
    gap: 8px;
  }

  .v2-cta__actions .v1-header__btn {
    min-height: 38px;
    padding: 0 14px;
    font-size: 12px;
  }

  .v2-logo-area {
    padding: 4px 0 22px;
  }

  .v2-logo-marquee {
    margin-top: 0;
  }

  .v2-logo-marquee__track {
    animation-duration: 20s;
  }

  .v2-logo-marquee__group {
    gap: 12px;
    padding-right: 12px;
  }

  .v2-logo-area__item {
    min-height: 58px;
    min-width: 118px;
  }

  .v2-logo-area__image {
    max-width: 128px;
    max-height: 30px;
  }

  .v2-case-area {
    padding: 8px 0 36px;
  }

  .v2-case-slider {
    margin-top: 14px;
  }

  .v2-case-slider__track {
    grid-auto-columns: minmax(262px, 84vw);
    gap: 12px;
  }

  .v2-case-area__all-link {
    min-height: 44px;
    padding: 0 22px;
  }

  .v2-case-area__date {
    margin: 12px 14px 0;
  }

  .v2-case-area__card h3 {
    margin: 8px 14px 0;
    font-size: 16px;
  }

  .v2-case-area__more,
  .v2-case-area__empty-text {
    margin: 8px 14px 14px;
  }

  .v2-logo__image {
    height: 24px;
    max-width: min(260px, 58vw);
  }

  .v2-intro {
    padding: 16px 0 52px;
  }

  .v2-intro__title {
    font-size: clamp(23px, 6.8vw, 34px);
    line-height: 1.3;
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .v2-intro__title-break-sp {
    display: block;
  }

  .v2-intro__lead {
    margin-top: 14px;
    line-height: 1.75;
  }

  .v2-intro__media {
    margin-top: 40px;
  }

  .v2-intro__cta {
    margin-top: 36px;
  }

  .v2-intro__cta .v2-btn--primary {
    min-height: 50px;
    padding: 0 24px;
    font-size: 16px;
  }

  .v2-news-area__list {
    margin-top: 14px;
    gap: 14px;
  }

  .v2-news-area__item-link {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .v2-news-area__meta {
    gap: 10px;
    font-size: 11px;
  }

  .v2-news-area__title {
    font-size: clamp(15px, 2vw, 19px);
    margin-top: 8px;
  }

  .v2-news-area__more {
    min-height: 36px;
    padding: 0 14px;
    font-size: 13px;
  }

  .v2-news-area__footer {
    margin-top: 18px;
  }

  .v2-news-area__all-link {
    min-height: 44px;
    padding: 0 22px;
  }

  .v2-shelf-concepts {
    padding: 0 0 36px;
  }

  .v2-shelf-concepts__stack {
    gap: 12px;
  }

  .v2-shelf-concepts__intro {
    gap: 10px;
  }

  .v2-shelf-concepts__intro,
  .v2-shelf-concepts__text {
    display: none;
  }

  .v2-shelf-concepts__intro-head {
    gap: 6px;
    align-items: center;
  }

  .v2-shelf-concepts__intro-logo {
    width: min(176px, 51.2vw);
    margin-top: 6px;
  }

  .v2-shelf-concepts__intro-tail {
    font-size: clamp(16px, 4.8vw, 27px);
    transform: translateY(-4px);
  }

  .v2-shelf-concepts__intro-columns {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .v2-shelf-concepts__intro-column {
    font-size: clamp(12px, 3.4vw, 18px);
    line-height: 1.4;
  }

  .v2-shelf-concepts__text {
    font-size: clamp(16px, 4.8vw, 27px);
    line-height: 1.45;
  }

  .v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__text {
    margin-top: 32px;
  }

  .v2-shelf-concepts__stack > .v2-shelf-concepts__image + .v2-shelf-concepts__image {
    margin-top: 32px;
  }

  .v2-shelf-concepts__stack > .v2-shelf-concepts__image:last-child {
    margin-bottom: 32px;
  }

  .v2-platform-v2__title-row {
    margin: 14px 0 24px;
    gap: 14px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .v2-platform-v2__service-logo {
    width: min(220px, 72vw);
  }

  .v2-platform-v2__tagline {
    margin: 0;
    font-size: clamp(14.4px, 4.64vw, 22.4px);
    line-height: 1.25;
    text-align: center;
  }

  .v2-platform-v2__subtitle {
    margin: 48px 0 24px;
    font-size: clamp(12px, 4.2vw, 16px);
    text-align: center;
  }

  .v2-platform-v2__subtitle-break {
    display: block;
  }

  .v2-platform-canvas-area {
    padding: 6px 0 28px;
  }

  .v2-platform-canvas-area__canvas {
    min-height: 180px;
    padding: 18px 18px;
    border-radius: 14px;
  }

  .v2-platform-canvas-area__title {
    margin-bottom: 24px;
    font-size: clamp(22px, 6vw, 32px);
  }

  .v2-platform-canvas-area__sections {
    gap: 33.6px;
    margin-bottom: 22px;
  }

  .v2-platform-canvas-area__item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .v2-platform-canvas-area__triplet {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v2-platform-canvas-area__item--stacked {
    gap: 10px;
  }

  .v2-platform-canvas-area__item--stacked .v2-platform-canvas-area__text h4 {
    gap: 4px;
  }

  .v2-platform-canvas-area__item--reverse .v2-platform-canvas-area__text,
  .v2-platform-canvas-area__item--reverse .v2-platform-canvas-area__media {
    order: initial;
  }

  .v2-platform-canvas-area__text h4 {
    font-size: clamp(18px, 5.2vw, 24px);
    gap: 8px;
  }

  .v2-platform-canvas-area__heading-logo {
    height: clamp(18.4px, 4.83vw, 23px);
  }

  .v2-platform-canvas-area__keyphrase {
    margin-top: 10px;
    font-size: clamp(12px, calc(3.01vw + 1.5px), 14.8px);
    line-height: 1.6;
  }

  .v2-platform-canvas-area__description {
    margin-top: 8px;
    font-size: clamp(10.1px, calc(2.73vw + 1px), 11.5px);
  }

  .v2-platform-canvas-area__media {
    height: clamp(140px, 46vw, 200px);
  }

  .v2-platform-canvas-area__media--large {
    height: clamp(210px, 69vw, 300px);
  }

  .v2-platform-canvas-area__media--x115 {
    height: clamp(241.5px, 79.35vw, 345px);
  }

  .v2-platform-canvas-area__image-placeholder {
    min-height: 138px;
  }

  .v2-platform-overview {
    padding: 0 0 52px;
  }

  .v2-platform-overview h2 {
    line-height: 1.3;
  }

  .v2-platform-overview__lead {
    margin-top: 12px;
    line-height: 1.65;
  }

  .v2-platform-overview__table {
    margin-top: 14px;
    gap: 10px;
  }

  .v2-platform-overview__bridge-grid {
    gap: 8px;
  }

  .v2-platform-overview__bridge {
    padding: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .v2-platform-overview__column-focus {
    margin-top: 0;
    padding: 0;
    font-size: 13px;
  }

  .v2-platform-overview__row {
    padding: 12px 14px;
  }

  .v2-platform-overview__row-title {
    font-size: 16px;
  }

  .v2-platform-overview__products {
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 6px;
  }

  .v2-platform-overview__product {
    min-height: 32px;
    font-size: 12px;
  }

  .v2-platform-overview__nested-boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-menu-button {
    display: inline-flex;
  }

  .v2-nav {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--v2-line);
    padding: 14px 20px 18px;
    display: none;
    flex-direction: column;
    gap: 10px;
  }

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