:root {
  --blue: #2d60bb;
  --blue-deep: #17458f;
  --ink: #252525;
  --muted: #8b8b8b;
  --soft: #f5f5f5;
  --line: #eaeaea;
  --page-width: 1600px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  font: inherit;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 80px;
  padding: 0 max(3.75vw, 62px);
  background: #fff;
}

.brand {
  position: absolute;
  left: max(3.75vw, 62px);
  display: block;
  line-height: 0;
}

.brand img {
  height: 46px;
  max-width: none;
}

.main-nav {
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 41px;
}

.main-nav>a,
.nav-item>a {
  position: relative;
  display: grid;
  min-width: 58px;
  color: #777;
  font-size: 15px;
  place-items: center;
  transition: color 0.25s ease;
}

.main-nav>a::after,
.nav-item>a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.main-nav>a:hover,
.main-nav>a.is-active,
.nav-item:hover>a,
.nav-item:focus-within>a,
.nav-item>a.is-active {
  color: var(--blue);
}

.main-nav>a:hover::after,
.main-nav>a.is-active::after,
.nav-item:hover>a::after,
.nav-item:focus-within>a::after,
.nav-item>a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
  height: 100%;
}

.nav-submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  display: grid;
  min-width: 190px;
  padding: 8px 0;
  border: 1px solid #edf0f5;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 37, 65, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  visibility: hidden;
}

.nav-submenu a {
  display: flex;
  min-height: 38px;
  align-items: center;
  padding: 0 18px;
  color: #667080;
  font-size: 13px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--blue);
  background: #f4f8ff;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu-toggle {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: 692px;
  overflow: hidden;
  background: #07122e;
}

.hero-visuals,
.hero-visual {
  position: absolute;
  inset: 0;
}

.hero-visual {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.025);
  transition:
    opacity 0.8s ease,
    transform 6.2s ease;
}

.hero-visual.is-current {
  opacity: 1;
  transform: scale(1);
}

.visual-board {
  background-image: url("../images/hero-board.png");
}

.visual-factory {
  background-image: url("../images/factory-board.png");
}

.visual-lab {
  background-image: url("../images/about-lab.png");
}

.hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(4, 11, 28, 0.76) 0%,
      rgba(4, 11, 28, 0.36) 43%,
      rgba(4, 11, 28, 0.04) 72%);
  content: "";
}

.hero-scan {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  opacity: 0.45;
  pointer-events: none;
}

.hero-scan::before {
  position: absolute;
  top: -20%;
  bottom: -20%;
  left: -26%;
  width: 18%;
  background: rgba(116, 173, 255, 0.16);
  content: "";
  filter: blur(1px);
  transform: skewX(-22deg);
  animation: hero-scan 8s ease-in-out infinite;
}

.hero-corner {
  position: absolute;
  z-index: 2;
  width: 120px;
  height: 120px;
  border-color: rgba(115, 170, 255, 0.42);
  pointer-events: none;
}

.hero-corner-top {
  top: 34px;
  right: 44px;
  border-top: 1px solid;
  border-right: 1px solid;
  animation: corner-pulse 3.5s ease-in-out infinite;
}

.hero-corner-bottom {
  bottom: 34px;
  left: 44px;
  border-bottom: 1px solid;
  border-left: 1px solid;
  animation: corner-pulse 3.5s ease-in-out 0.5s infinite;
}

@keyframes hero-scan {

  0%,
  24% {
    transform: translateX(0) skewX(-22deg);
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  72%,
  100% {
    transform: translateX(780%) skewX(-22deg);
    opacity: 0;
  }
}

@keyframes corner-pulse {

  0%,
  100% {
    opacity: 0.25;
  }

  50% {
    opacity: 1;
  }
}

.hero-slides {
  position: relative;
  z-index: 2;
  width: min(var(--page-width), calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
}

.hero-slide {
  position: absolute;
  top: 50%;
  left: 0;
  width: 660px;
  opacity: 0;
  transform: translate(-30px, -42%);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero-slide.is-current {
  opacity: 1;
  transform: translate(0, -42%);
}

.hero-kicker {
  margin: 0 0 22px;
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.12;
}

.hero-copy {
  max-width: 550px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.62;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 30px;
  font-size: 15px;
  transition: background-color 0.2s ease;
}

.button:hover {
  background: var(--blue-deep);
}

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

.button b {
  margin-left: 5px;
  font-size: 21px;
  font-weight: 400;
  line-height: 1;
}

.hero-button {
  width: 135px;
  margin-top: 34px;
}

.hero-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  display: grid;
  width: 44px;
  height: 64px;
  padding: 0;
  place-items: center;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.hero-arrow img {
  width: 26px;
  filter: brightness(0) invert(1);
}

.hero-arrow-left {
  left: 24px;
}

.hero-arrow-right {
  right: 24px;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 27px;
  display: grid;
  gap: 10px;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 46px;
  border-radius: 8px;
  background: #fff;
}

.notice-strip {
  height: 92px;
  background: #fff;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 13px;
  width: min(var(--page-width), calc(100% - 80px));
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.notice-inner img {
  width: 22px;
  flex: 0 0 auto;
}

.notice-inner p {
  margin: 0;
  color: #777;
  font-size: 17px;
  white-space: nowrap;
}

.section {
  padding: 102px 24px;
}

.section-heading {
  width: min(var(--page-width), 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.partners h2 {
  margin: 0;
  color: #2d2d2d;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.3;
}

.section-heading>span,
.partners>span {
  display: block;
  width: 34px;
  height: 2px;
  margin: 19px auto 22px;
  background: var(--blue);
}

.section-heading p {
  margin: 0;
  color: #969696;
  font-size: 14px;
  line-height: 1.7;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.metrics [data-reveal]:nth-child(2),
.product-grid [data-reveal]:nth-child(2),
.cases-track [data-reveal]:nth-child(2),
.case-grid [data-reveal]:nth-child(2),
.insight-grid [data-reveal]:nth-child(2),
.news-list [data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.metrics [data-reveal]:nth-child(3),
.product-grid [data-reveal]:nth-child(3),
.cases-track [data-reveal]:nth-child(3),
.case-grid [data-reveal]:nth-child(3),
.insight-grid [data-reveal]:nth-child(3),
.news-list [data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

.metrics [data-reveal]:nth-child(4),
.product-grid [data-reveal]:nth-child(4),
.cases-track [data-reveal]:nth-child(4),
.case-grid [data-reveal]:nth-child(4),
.insight-grid [data-reveal]:nth-child(4),
.news-list [data-reveal]:nth-child(4) {
  transition-delay: 0.24s;
}

.metrics [data-reveal]:nth-child(5),
.product-grid [data-reveal]:nth-child(5),
.cases-track [data-reveal]:nth-child(5),
.case-grid [data-reveal]:nth-child(5),
.insight-grid [data-reveal]:nth-child(5),
.news-list [data-reveal]:nth-child(5) {
  transition-delay: 0.32s;
}

.metrics [data-reveal]:nth-child(6),
.product-grid [data-reveal]:nth-child(6),
.cases-track [data-reveal]:nth-child(6),
.case-grid [data-reveal]:nth-child(6),
.insight-grid [data-reveal]:nth-child(6),
.news-list [data-reveal]:nth-child(6) {
  transition-delay: 0.4s;
}

.section-why {
  padding-top: 86px;
  padding-bottom: 72px;
}

.section-why .section-heading {
  margin-bottom: 45px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.metric {
  min-width: 0;
  text-align: center;
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 38px;
  font-weight: 400;
  line-height: 1;
}

.metric p {
  margin: 12px 0 0;
  color: #999;
  font-size: 15px;
  line-height: 1.25;
}

.section-products {
  padding-top: 100px;
  padding-bottom: 102px;
  background: #f6f6f6;
}

.section-products .section-heading {
  margin-bottom: 62px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  overflow: hidden;
}

.product-card {
  min-width: 0;
  min-height: 202px;
}

.product-card-image {
  overflow: hidden;
  background: #eceef1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card-image:hover img {
  transform: scale(1.07);
}

.product-card-copy {
  position: relative;
  padding: 55px 29px 28px;
  background: #fff;
}

.product-card-copy:nth-child(6n + 1),
.product-card-copy:nth-child(5) {
  background: #fafafa;
}

.product-card-copy h3 {
  margin: 0;
  color: #3e3e3e;
  font-size: 16px;
  font-weight: 400;
}

.product-card-copy i {
  display: block;
  width: 38px;
  height: 1px;
  margin: 10px 0 12px;
  background: var(--blue);
}

.product-card-copy p {
  margin: 0;
  color: #909090;
  font-size: 14px;
  line-height: 1.48;
}

.section-button {
  display: flex;
  width: 120px;
  min-height: 50px;
  margin: 44px auto 0;
}

.section-cases {
  padding-top: 100px;
  padding-bottom: 104px;
}

.section-cases .section-heading {
  margin-bottom: 44px;
}

.cases-viewport {
  position: relative;
  width: min(var(--page-width), 100%);
  margin: 0 auto;
  overflow: hidden;
}

.cases-track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.case-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e7e9ee;
  background: #fff;
}

.case-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.68/1;
  background: #172238;
}

.case-media::after {
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 42, 0.18);
  content: "";
  transition: background-color 0.35s ease;
}

.case-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.case-media span {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.case-body {
  min-height: 155px;
  padding: 20px 22px 22px;
  border-top: 2px solid transparent;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease;
}

.case-body>p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-body h3 {
  margin: 0 0 11px;
  color: #30343d;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.3;
}

.case-body>span {
  display: block;
  color: #8b919c;
  font-size: 13px;
  line-height: 1.62;
}

.case-card:hover .case-media img {
  transform: scale(1.075);
}

.case-card:hover .case-media::after {
  background: rgba(12, 57, 131, 0.05);
}

.case-card:hover .case-body {
  border-top-color: var(--blue);
  background: #f8fbff;
}

.case-arrow {
  position: absolute;
  z-index: 2;
  top: 38%;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  place-items: center;
  background: rgba(32, 88, 183, 0.86);
  box-shadow: 0 5px 16px rgba(17, 41, 83, 0.26);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.case-arrow img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.case-arrow-left {
  left: 12px;
}

.case-arrow-right {
  right: 12px;
}

.case-arrow:hover,
.case-arrow:focus-visible {
  background: var(--blue-deep);
}

.case-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1100px) {
  .case-card {
    flex-basis: calc((100% - 22px) / 2);
  }
}

.section-about {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 548px;
  margin: 0;
  padding: 106px max(24px, calc((100% - var(--page-width)) / 2));
  overflow: hidden;
  background: #061634 url("../images/about-lab.png") center/cover no-repeat;
  isolation: isolate;
}

.section-about::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(3, 15, 39, 0.78);
  content: "";
}

.section-about::after {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  width: 48%;
  border-right: 1px solid rgba(147, 189, 255, 0.18);
  background: rgba(2, 14, 35, 0.22);
  content: "";
}

.about-copy {
  width: min(620px, 100%);
  min-width: 0;
}

.section-heading-left {
  margin: 0 0 30px;
  text-align: left;
}

.section-heading-left>span {
  margin: 17px 0 0;
}

.section-about .section-heading h2 {
  color: #fff;
}

.section-about .section-heading>span {
  background: #79a9ff;
}

.about-copy>p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.9;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 28px 0 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.about-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-highlights span::before {
  width: 5px;
  height: 5px;
  background: #79a9ff;
  content: "";
}

.about-copy .button {
  min-width: 116px;
  margin-top: 15px;
}

.section-insights {
  padding-top: 98px;
  padding-bottom: 102px;
  background: #f7f7f7;
}

.section-insights .section-heading {
  margin-bottom: 50px;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.insight-card {
  min-width: 0;
  padding: 0 0 28px;
  border-bottom: 1px solid #dedede;
  background: transparent;
  transition: border-color 0.2s ease;
}

.insight-card:hover {
  border-bottom-color: var(--blue);
}

.insight-date {
  margin: 0 0 12px;
  color: #a0a0a0;
  font-size: 13px;
}

.insight-card h3 {
  min-height: 44px;
  margin: 0 0 12px;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.insight-card>p:not(.insight-date) {
  min-height: 72px;
  margin: 0 0 21px;
  color: #888;
  font-size: 14px;
  line-height: 1.65;
}

.insight-tag {
  display: inline-block;
  padding: 5px 9px;
  border: 1px solid #ddd;
  border-radius: 0;
  color: #999;
  background: #fff;
  font-size: 13px;
}

.partners {
  padding: 84px 24px 80px;
  text-align: center;
}

.partners-viewport {
  width: min(var(--page-width), 100%);
  margin: 42px auto 0;
  overflow: hidden;
}

.partners-track {
  display: flex;
  width: max-content;
  animation: partner-scroll 30s linear infinite;
  will-change: transform;
}

.partners-viewport:hover .partners-track,
.partners-viewport:focus-within .partners-track {
  animation-play-state: paused;
}

.partner-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  flex: 0 0 auto;
  min-width: 100%;
  padding-right: 42px;
}

.partner-list img {
  width: 132px;
  height: 46px;
  flex: 0 0 132px;
  max-width: 132px;
  max-height: 46px;
  object-fit: contain;
  opacity: 0.68;
  transition: opacity 0.25s ease;
}

.partner-list img:hover {
  opacity: 1;
}

@keyframes partner-scroll {
  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  padding: 57px 24px 22px;
  color: #8c8c8c;
  background: #1f1f1f;
}

.footer-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: min(var(--page-width), 100%);
  margin: 0 auto;
}

.footer-inner p,
.footer-note {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}

.footer-inner p:nth-child(2) {
  text-align: center;
}

.footer-inner p:nth-child(3) {
  text-align: right;
}

.footer-note {
  width: min(var(--page-width), 100%);
  margin: 38px auto 0;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.float-tools {
  position: fixed;
  z-index: 25;
  right: 30px;
  bottom: 24px;
  display: grid;
  gap: 10px;
}

.tool-button {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  place-items: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.13);
  cursor: pointer;
}

.tool-button img {
  width: 23px;
  height: 23px;
}

.tool-avatar {
  width: 60px;
  height: 60px;
  margin-left: -5px;
  background: #e8f0ff;
}

.tool-avatar img {
  width: 50px;
  height: 50px;
}

.tool-avatar {
  display: none;
}

.tool-button:not(.tool-avatar)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: calc(100% + 12px);
  padding: 10px 13px;
  border: 1px solid rgba(31, 31, 31, 0.06);
  color: #4d4d4d;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.14);
  content: attr(data-tip);
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(7px, -50%);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
  white-space: nowrap;
}

.tool-button:not(.tool-avatar)::before {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: calc(100% + 7px);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #fff;
  content: "";
  filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.04));
  opacity: 0;
  pointer-events: none;
  transform: translate(7px, -50%);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.tool-button:not(.tool-avatar):hover::after,
.tool-button:not(.tool-avatar):focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%);
}

.tool-button:not(.tool-avatar):hover::before,
.tool-button:not(.tool-avatar):focus-visible::before {
  opacity: 1;
  transform: translate(0, -50%);
}

.tool-button[data-service="contact-card"]::after,
.tool-button[data-service="contact-card"]::before {
  display: none;
}

.service-popover {
  position: absolute;
  right: 62px;
  bottom: 0;
  display: flex;
  width: 164px;
  padding: 14px;
  border: 1px solid #edf0f5;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 35, 61, 0.15);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.tool-button[data-service="contact-card"]:hover+.service-popover,
.tool-button[data-service="contact-card"]:focus-visible+.service-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.service-popover strong {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.service-popover img {
  width: 118px;
  height: 118px;
  align-self: center;
}

@media (min-width: 768px) and (max-width: 1000px) {
  .site-header {
    justify-content: center;
    padding: 0 24px;
  }

  .brand {
    display: none;
  }

  .main-nav {
    gap: 36px;
  }

  .hero {
    height: 596px;
  }

  .hero-slides {
    width: min(960px, calc(100% - 96px));
  }
}

@media (max-width: 767px) {
  .site-header {
    height: 52px;
    justify-content: center;
    padding: 0 15px;
  }

  .brand {
    position: static;
  }

  .brand img {
    height: 27px;
  }

  .menu-toggle {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    width: 52px;
    height: 52px;
    padding: 0;
    place-items: center;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle img {
    width: 25px;
  }

  .main-nav {
    position: absolute;
    z-index: 30;
    top: 52px;
    left: 0;
    display: grid;
    width: 100%;
    height: auto;
    max-height: 0;
    gap: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
    transition: max-height 0.35s ease;
  }

  .main-nav.is-open {
    max-height: 760px;
    overflow-y: auto;
  }

  .main-nav>a,
  .nav-item>a {
    min-height: 45px;
    padding: 0 24px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    justify-content: start;
  }

  .main-nav>a::after,
  .nav-item>a::after {
    right: auto;
    width: 3px;
    height: 100%;
    transform: none;
  }

  .nav-item {
    display: block;
    width: 100%;
    height: auto;
  }

  .nav-submenu-toggle {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 8px;
    display: grid;
    width: 44px;
    height: 45px;
    padding: 0;
    place-items: center;
    background: transparent;
    cursor: pointer;
  }

  .nav-submenu-toggle span {
    width: 9px;
    height: 9px;
    border-right: 1px solid #6d7787;
    border-bottom: 1px solid #6d7787;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.2s ease;
  }

  .nav-item.is-expanded .nav-submenu-toggle span {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    max-height: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    background: #f8faff;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition:
      max-height 0.25s ease,
      padding 0.25s ease;
    visibility: visible;
    transform: translate(0, 0) !important;
  }

  .nav-item.is-expanded .nav-submenu {
    max-height: 500px;
    padding: 4px 0 8px;
  }

  .nav-submenu a {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 0 44px;
    border-bottom: 1px solid #eef1f6;
    color: #4d5c73 !important;
    background: #f8faff;
    font-size: 14px;
    line-height: 1.35;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .hero {
    height: 514px;
    background-position: 59% center;
  }

  .hero::after {
    background: linear-gradient(90deg,
        rgba(4, 11, 28, 0.68),
        rgba(4, 11, 28, 0.18));
  }

  .hero-visual {
    background-position: 59% center;
  }

  .hero-slides {
    width: calc(100% - 56px);
  }

  .hero-slide {
    top: 42px;
    width: 100%;
    transform: translate(-18px, 0);
  }

  .hero-slide.is-current {
    transform: translate(0, 0);
    text-align: center;
  }

  .hero-kicker {
    max-width: 620px;
    margin-bottom: 13px;
    font-size: 28px;
  }

  .hero-copy {
    max-width: 610px;
    font-size: 13px;
    line-height: 1.34;
  }

  .hero-button {
    width: min(308px, 100%);
    min-height: 41px;
    margin: 11px auto 0;
  }

  .hero-arrow {
    display: none;
  }

  .hero-dots {
    right: 50%;
    bottom: 5px;
    display: flex;
    gap: 4px;
    transform: translateX(50%);
  }

  .hero-dots button,
  .hero-dots button.is-active {
    width: 8px;
    height: 4px;
    border: 0;
    border-radius: 3px;
  }

  .hero-dots button.is-active {
    background: #fff;
  }

  .notice-strip {
    height: 40px;
  }

  .notice-inner {
    width: calc(100% - 68px);
    gap: 9px;
  }

  .notice-inner img {
    width: 20px;
  }

  .notice-inner p {
    font-size: 16px;
  }

  .section {
    padding-right: 28px;
    padding-left: 28px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .partners h2 {
    font-size: 22px;
  }

  .section-heading>span,
  .partners>span {
    margin-top: 15px;
    margin-bottom: 14px;
  }

  .section-heading p {
    font-size: 14px;
  }

  .section-why {
    padding-top: 39px;
    padding-bottom: 42px;
  }

  .section-why .section-heading {
    margin-bottom: 15px;
  }

  .metrics {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
  }

  .metric strong {
    font-size: 38px;
  }

  .metric p {
    font-size: 14px;
  }

  .section-products {
    padding-top: 33px;
    padding-bottom: 42px;
  }

  .section-products .section-heading {
    margin-bottom: 29px;
  }

  .product-grid {
    display: flex;
    flex-direction: column;
  }

  .product-card {
    min-height: auto;
  }

  .product-card-image {
    aspect-ratio: 1.13/1;
  }

  .product-card-copy {
    padding: 31px 27px;
  }

  .product-card-copy h3 {
    font-size: 16px;
  }

  .product-card-copy p {
    font-size: 13px;
  }

  .section-button {
    width: 308px;
    max-width: 100%;
    margin-top: 33px;
  }

  .section-cases {
    padding-top: 38px;
    padding-bottom: 47px;
  }

  .section-cases .section-heading {
    margin-bottom: 24px;
  }

  .cases-viewport {
    overflow: hidden;
  }

  .cases-track {
    gap: 0;
    overflow: visible;
    border-radius: 10px;
  }

  .case-card {
    flex-basis: 100%;
    border-radius: 0;
    aspect-ratio: auto;
  }

  .case-media {
    aspect-ratio: 1.4/1;
  }

  .case-body {
    min-height: 160px;
    padding: 19px 21px 21px;
  }

  .case-body h3 {
    font-size: 17px;
  }

  .case-arrow {
    top: 35%;
    width: 40px;
    height: 40px;
  }

  .case-arrow-left {
    left: 8px;
  }

  .case-arrow-right {
    right: 8px;
  }

  .case-arrow img {
    width: 15px;
  }

  .section-about {
    min-height: 500px;
    padding: 72px 28px;
    background-position: 63% center;
  }

  .section-about::after {
    width: 76%;
  }

  .section-heading-left {
    margin-bottom: 21px;
  }

  .about-copy>p {
    font-size: 14px;
  }

  .section-insights {
    padding-top: 43px;
    padding-bottom: 49px;
  }

  .section-insights .section-heading {
    margin-bottom: 29px;
  }

  .insight-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .insight-card h3,
  .insight-card>p:not(.insight-date) {
    min-height: 0;
  }

  .partners {
    padding: 43px 28px 46px;
  }

  .partners-viewport {
    margin-top: 31px;
  }

  .partners-track {
    animation-duration: 22s;
  }

  .partner-list {
    justify-content: space-between;
    gap: 26px;
    padding-right: 26px;
  }

  .partner-list img {
    width: 105px;
    height: 38px;
    flex-basis: 105px;
    max-width: 105px;
    max-height: 38px;
  }

  .site-footer {
    padding: 35px 28px 18px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .footer-inner p:nth-child(2),
  .footer-inner p:nth-child(3) {
    text-align: left;
  }

  .footer-note {
    margin-top: 22px;
  }

  .float-tools {
    right: 16px;
    bottom: 120px;
    gap: 10px;
  }

  .tool-button {
    width: 45px;
    height: 45px;
  }

  .tool-avatar {
    width: 56px;
    height: 56px;
    margin-left: -5px;
  }

  .tool-avatar img {
    width: 47px;
    height: 47px;
  }

  .service-popover {
    right: 59px;
    width: 164px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .partners-track {
    animation: none;
  }
}

@media (max-width: 430px) {
  .hero-kicker {
    font-size: 26px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .section-about {
    padding-right: 20px;
    padding-left: 20px;
  }

  .metric strong {
    font-size: 32px;
  }
}