/* Full-width first-screen business summary. */
.hero {
  grid-template-columns: 1fr;
  min-height: 0;
  gap: clamp(94px, 10vw, 142px);
  padding: 72px 0 0;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr);
  column-gap: clamp(48px, 8vw, 140px);
  align-items: end;
}

.hero-copy .section-tag {
  grid-column: 1 / -1;
}

.hero-copy h1 {
  grid-column: 1;
}

.hero-copy .hero-lead {
  grid-column: 2;
  grid-row: 2;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-copy .hero-actions {
  grid-column: 2;
  grid-row: 3;
  margin-top: 23px;
}

.hero-summary {
  width: 100%;
  min-height: 0;
  padding: 0;
  overflow: visible;
  color: var(--ink);
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
}

.summary-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  column-gap: 28px;
  align-items: end;
  padding: 31px 0 26px;
  border-bottom: 2px solid var(--ink);
}

.summary-heading > span {
  grid-column: 1 / -1;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: .95rem;
  font-weight: 850;
}

.summary-heading h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.16;
  text-wrap: balance;
}

.summary-heading p {
  max-width: 430px;
  margin: 0;
  color: var(--body);
  font-size: 1.04rem;
  line-height: 1.78;
}

.summary-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 428px;
}

.summary-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 428px;
  padding: 35px 33px 31px;
  overflow: hidden;
  border-right: 1px solid var(--line);
}

.summary-panel:last-child {
  border-right: 0;
}

@media (min-width: 981px) {
  .hero-copy h1 {
    transform: translateY(74px);
  }
}

.delivery-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.delivery-steps li {
  position: relative;
  display: flex;
  min-height: 182px;
  padding: 23px 21px;
  overflow: hidden;
  border: 0;
  background: oklch(.35 .12 266);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}

.delivery-steps li:nth-child(1) {
  color: var(--ink);
  background: var(--white);
}

.delivery-steps li:nth-child(2) {
  background: oklch(.28 .09 266);
}

.delivery-steps li:nth-child(3) {
  background: var(--blue);
}

.delivery-steps li:nth-child(4) {
  color: var(--ink);
  background: var(--orange);
}

.delivery-steps li > span {
  position: absolute;
  right: 15px;
  bottom: -14px;
  color: color-mix(in oklch, var(--white) 17%, transparent);
  font-size: 4.45rem;
  font-weight: 850;
  line-height: 1;
}

.delivery-steps li:nth-child(1) > span,
.delivery-steps li:nth-child(4) > span {
  color: color-mix(in oklch, var(--ink) 13%, transparent);
}

.delivery-steps li > div {
  position: relative;
  z-index: 1;
}

.delivery-steps b {
  font-size: 1.16rem;
  line-height: 1.3;
}

.delivery-steps p {
  margin-top: 11px;
  color: oklch(.87 .02 265);
  font-size: .94rem;
  line-height: 1.65;
}

.delivery-steps li:nth-child(1) p,
.delivery-steps li:nth-child(4) p {
  color: var(--body);
}

@media (hover: hover) and (pointer: fine) {
  .delivery-steps li:hover {
    z-index: 2;
    transform: translateY(-6px);
    box-shadow: 0 11px 18px color-mix(in oklch, var(--ink) 28%, transparent);
  }
}

@media (max-width: 680px) {
  .delivery-steps {
    grid-template-columns: 1fr;
  }

  .delivery-steps li {
    min-height: 152px;
  }
}

@media (min-width: 981px) {
  .delivery-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 51px;
  }

  .delivery-steps li {
    min-height: 378px;
    padding: 21px 17px;
  }

  .delivery-steps li:nth-child(1) {
    color: var(--ink);
    background: var(--white);
  }

  .delivery-steps li:nth-child(2) {
    color: var(--blue-deep);
    background: oklch(.91 .045 264);
  }

  .delivery-steps li:nth-child(3) {
    color: var(--white);
    background: var(--blue);
  }

  .delivery-steps li:nth-child(4) {
    color: var(--ink);
    background: var(--white);
    border-top: 6px solid var(--orange);
  }

  .delivery-steps li > span {
    right: 10px;
    bottom: -9px;
    color: color-mix(in oklch, var(--blue-deep) 16%, transparent);
    font-size: 3.65rem;
  }

  .delivery-steps li:nth-child(3) > span {
    color: color-mix(in oklch, var(--white) 22%, transparent);
  }

  .delivery-steps b {
    display: block;
    font-size: 1.08rem;
    line-height: 1.34;
  }

  .delivery-steps p,
  .delivery-steps li:nth-child(1) p,
  .delivery-steps li:nth-child(2) p,
  .delivery-steps li:nth-child(4) p {
    margin-top: 13px;
    color: var(--body);
    font-size: .88rem;
    line-height: 1.72;
  }

  .delivery-steps li:nth-child(3) p {
    color: oklch(.92 .02 264);
  }

  .delivery-steps li::after {
    content: "";
    position: absolute;
    top: 21px;
    left: 17px;
    width: 25px;
    height: 3px;
    background: var(--orange);
  }

  .delivery-steps li:nth-child(4)::after {
    background: var(--blue);
  }

  .delivery-steps li > div {
    padding-top: 24px;
  }
}

.about-section .about {
  grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
  align-items: stretch;
}

.about-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: oklch(.87 .02 265);
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.38;
}

.about-logo-lockup img {
  width: 73px;
  height: auto;
}

.about-title h2 {
  max-width: 580px;
  margin-top: 31px;
  font-size: 2.72rem;
  line-height: 1.18;
}

.about-title h2 span {
  color: oklch(.77 .08 264);
}

.about-mark {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: auto;
  padding-top: 55px;
  color: var(--orange);
  font-size: 3.15rem;
  font-weight: 850;
  line-height: 1;
}

.about-mark span {
  max-width: 250px;
  margin: 0;
  color: oklch(.78 .02 265);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.55;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p:first-child {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 20px;
}

.about-section .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  border: 0;
}

.about-section .badges span,
.about-section .badges span:nth-child(n) {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid color-mix(in oklch, var(--white) 32%, transparent);
  border-radius: 999px;
  color: oklch(.92 .015 265);
  background: color-mix(in oklch, var(--white) 8%, transparent);
  font-size: .86rem;
  font-weight: 750;
  line-height: 1.3;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}

.about-section .badges span::before {
  display: none;
}

.about-section .badges span:nth-child(2) {
  color: oklch(.91 .02 264);
  background: var(--blue);
  border-color: var(--blue);
}

.about-section .badges span:nth-child(3) {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--white);
}

.about-section .badges span:nth-child(5) {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

@media (hover: hover) and (pointer: fine) {
  .about-section .badges span:hover {
    transform: translateY(-3px);
    color: var(--ink);
    background: var(--white);
    border-color: var(--white);
  }
}

@media (max-width: 680px) {
  .about-logo-lockup {
    margin-top: 25px;
  }

  .about-logo-lockup img {
    width: 61px;
  }

  .about-title h2 {
    margin-top: 24px;
    font-size: 2.22rem;
  }

  .about-mark {
    display: block;
    margin-top: 42px;
    padding-top: 0;
    font-size: 2.85rem;
  }

  .about-mark span {
    display: block;
    margin-top: 8px;
  }

  .about-section .badges {
    gap: 8px;
  }

  .about-section .badges span,
  .about-section .badges span:nth-child(n) {
    min-height: 36px;
    font-size: .8rem;
  }
}

@media (min-width: 981px) {
  .delivery-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 51px;
  }

  .delivery-steps li,
  .delivery-steps li:nth-child(n) {
    position: relative;
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 19px;
    min-height: 98px;
    padding: 0 0 15px;
    overflow: visible;
    color: var(--white);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .delivery-steps li > span,
  .delivery-steps li:nth-child(n) > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    border: 2px solid color-mix(in oklch, var(--white) 78%, transparent);
    background: var(--white);
    border-radius: 50%;
    font-size: .86rem;
    font-weight: 850;
    line-height: 1;
    transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out);
  }

  .delivery-steps li > span,
  .delivery-steps li:nth-child(2) > span,
  .delivery-steps li:nth-child(3) > span,
  .delivery-steps li:nth-child(4) > span {
    color: var(--blue-deep);
    background: var(--white);
  }

  .delivery-steps li::after {
    content: none;
  }

  .delivery-steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 48px;
    left: 23px;
    width: 2px;
    height: calc(100% - 48px);
    background: color-mix(in oklch, var(--white) 42%, transparent);
  }

  .delivery-steps li:not(:last-child)::before {
    content: none;
    position: absolute;
    top: 21px;
    right: 8px;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-top: 2px solid color-mix(in oklch, var(--white) 58%, transparent);
    border-right: 2px solid color-mix(in oklch, var(--white) 58%, transparent);
    transform: rotate(45deg);
  }

  .delivery-steps li > div {
    position: relative;
    z-index: 2;
    padding: 4px 0 0;
    transition: transform 220ms var(--ease-out);
  }

  .delivery-steps b {
    display: block;
    color: var(--white);
    font-size: 1.16rem;
    line-height: 1.32;
  }

  .delivery-steps p,
  .delivery-steps li:nth-child(n) p {
    margin-top: 7px;
    color: oklch(.84 .02 265);
    font-size: .96rem;
    line-height: 1.62;
  }

  .delivery-steps li:hover {
    transform: none;
    box-shadow: none;
  }

  .delivery-steps li:hover > span {
    color: var(--blue-deep);
    background: var(--orange);
    border-color: var(--orange);
    transform: scale(1.1);
  }

  .delivery-steps li:hover > div {
    transform: translateX(7px);
  }
}

.about-section .badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 9px;
}

.about-section .badges span,
.about-section .badges span:nth-child(n) {
  display: inline-flex;
  width: auto;
  min-height: 37px;
  flex: 0 0 auto;
  align-items: center;
  padding: 8px 12px;
  border-radius: 4px;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

@media (min-width: 981px) {
  .delivery-steps li:nth-child(n) > span {
    color: var(--blue-deep);
  }
}

.foundation-tags {
  margin-bottom: 30px;
}

.foundation-grid dl {
  margin-top: 0;
}

.ai-capability-strip {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 34px;
  align-items: center;
  margin-top: 18px;
  padding: 29px 31px;
  color: var(--white);
  background: oklch(.35 .12 266);
}

.ai-capability-strip p {
  color: oklch(.78 .08 264);
  font-size: .88rem;
  font-weight: 850;
}

.ai-capability-strip h3 {
  margin-top: 9px;
  font-size: 1.42rem;
  line-height: 1.35;
  text-wrap: balance;
}

.ai-capability-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.ai-capability-strip li {
  padding: 7px 10px;
  border: 1px solid color-mix(in oklch, var(--white) 30%, transparent);
  font-size: .88rem;
  font-weight: 750;
}

.ai-capability-strip li b {
  margin-right: 5px;
  color: var(--orange);
}

.foundation-grid {
  gap: 14px;
}

.foundation-grid article,
.foundation-grid article:first-child,
.foundation-grid article:last-child {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 31px;
  overflow: hidden;
  color: var(--white);
  border: 0;
  border-radius: 0;
  background: oklch(.39 .15 266);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out);
}

.foundation-grid article:last-child {
  background: oklch(.31 .11 266);
}

.foundation-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.foundation-card-top > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue-deep);
  background: var(--white);
  font-size: .88rem;
  font-weight: 850;
}

.foundation-software .foundation-card-top > span {
  color: var(--ink);
  background: var(--orange);
}

.foundation-grid .foundation-index {
  margin: 0;
  color: oklch(.86 .06 264);
  font-size: .93rem;
  font-weight: 850;
}

.foundation-grid article h3 {
  max-width: 520px;
  margin-top: 29px;
  color: var(--white);
  font-size: 1.72rem;
  line-height: 1.3;
}

.foundation-grid > article > p:not(.foundation-index) {
  max-width: 520px;
  margin-top: 18px;
  color: oklch(.89 .02 265);
  font-size: 1rem;
  line-height: 1.8;
}

.foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.foundation-tags li {
  padding: 6px 9px;
  color: var(--white);
  border: 1px solid color-mix(in oklch, var(--white) 31%, transparent);
  font-size: .82rem;
  font-weight: 750;
}

.foundation-grid dl {
  display: grid;
  gap: 0;
  margin-top: auto;
  padding-top: 26px;
  border-top: 1px solid color-mix(in oklch, var(--white) 31%, transparent);
}

.foundation-grid dl div {
  padding: 14px 0;
  border-top: 1px solid color-mix(in oklch, var(--white) 19%, transparent);
}

.foundation-grid dl div:first-child {
  border-top: 0;
}

.foundation-grid dt {
  color: var(--white);
  font-size: 1rem;
}

.foundation-grid dd {
  color: oklch(.82 .02 265);
  font-size: .91rem;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .foundation-grid article:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 23px color-mix(in oklch, var(--ink) 22%, transparent);
  }
}

@media (max-width: 980px) {
  .ai-capability-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .ai-capability-strip {
    gap: 21px;
    padding: 25px 22px;
  }

  .ai-capability-strip h3 {
    font-size: 1.26rem;
  }

  .foundation-grid article,
  .foundation-grid article:first-child,
  .foundation-grid article:last-child {
    min-height: 0;
    padding: 25px 22px;
  }

  .foundation-grid article h3 {
    font-size: 1.45rem;
  }
}

.summary-panel > span {
  position: relative;
  z-index: 1;
  font-size: .9rem;
  font-weight: 850;
}

.summary-panel h3 {
  position: relative;
  z-index: 1;
  margin-top: 25px;
  font-size: 2.18rem;
  line-height: 1.13;
  text-wrap: balance;
}

.summary-panel > p {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin-top: 19px;
  font-size: 1rem;
  line-height: 1.76;
}

.summary-panel ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.summary-panel li {
  position: relative;
  padding-left: 14px;
  font-size: .91rem;
  font-weight: 750;
}

.summary-panel li::before {
  content: "";
  position: absolute;
  top: .66em;
  left: 0;
  width: 5px;
  height: 5px;
}

.summary-panel > b {
  position: absolute;
  right: -13px;
  bottom: -33px;
  font-size: 8.5rem;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

.panel-ai {
  color: var(--white);
  background: var(--blue);
}

.panel-ai > span,
.panel-ai > p {
  color: oklch(.91 .03 264);
}

.panel-ai li::before {
  background: var(--orange);
}

.panel-ai > b {
  color: color-mix(in oklch, var(--white) 19%, transparent);
}

.panel-cc {
  color: var(--white);
  background: var(--ink);
}

.panel-cc > span {
  color: oklch(.74 .09 264);
}

.panel-cc > p {
  color: oklch(.82 .02 265);
}

.panel-cc li::before {
  background: var(--blue);
}

.panel-cc > b {
  color: color-mix(in oklch, var(--white) 10%, transparent);
}

.panel-sd {
  background: oklch(.98 .008 265);
  border-top: 6px solid var(--orange);
}

.panel-sd > span {
  color: var(--orange);
}

.panel-sd li::before {
  background: var(--blue);
}

.panel-sd > b {
  color: color-mix(in oklch, var(--blue) 11%, transparent);
}

.business-overview {
  display: none;
}

@media (max-width: 980px) {
  .hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-copy .section-tag,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-copy .hero-lead {
    margin-top: 22px;
  }

  .summary-panels {
    min-height: 0;
  }

  .summary-panel {
    min-height: 390px;
    padding: 30px 25px;
  }

  .summary-panel h3 {
    font-size: 1.82rem;
  }
}

@media (max-width: 680px) {
  .hero {
    gap: 66px;
    padding-top: 52px;
  }

  .summary-heading {
    grid-template-columns: 1fr;
    gap: 17px;
    padding-bottom: 22px;
  }

  .summary-heading > span {
    margin-bottom: 8px;
    font-size: .86rem;
  }

  .summary-heading h2 {
    font-size: 2.15rem;
  }

  .summary-heading p {
    font-size: 1rem;
  }

  .summary-panels {
    grid-template-columns: 1fr;
  }

  .summary-panel,
  .summary-panel:last-child {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .summary-panel {
    padding: 29px 23px;
  }

  .summary-panel h3 {
    margin-top: 18px;
    font-size: 2rem;
  }

  .summary-panel > p {
    font-size: .98rem;
  }

  .summary-panel li {
    font-size: .91rem;
  }

  .summary-panel > b {
    font-size: 7rem;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  max-width: none;
  white-space: nowrap;
}

.brand-symbol {
  display: block;
  width: 60px;
  flex: 0 0 60px;
}

.brand-symbol img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-title {
  color: var(--white);
  font-family: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: 0;
}

@media (max-width: 680px) {
  .brand {
    gap: 8px;
    max-width: none;
  }

  .brand-symbol {
    width: 45px;
    flex-basis: 45px;
  }

  .brand-title {
    font-size: .83rem;
  }

  .footer-inner .brand {
    max-width: none;
  }
}

.products-section {
  padding: clamp(76px, 8vw, 118px) 0;
  background: oklch(.965 .018 262);
}

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

.product-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
  border: 0;
}

.product-matrix article,
.product-matrix article:nth-child(3n + 2),
.product-matrix article:nth-child(3n + 3),
.product-matrix article:nth-child(n + 4) {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 276px;
  padding: 29px 27px 27px;
  overflow: hidden;
  border: 0;
  background: var(--white);
  box-shadow: 0 5px 11px color-mix(in oklch, var(--blue-deep) 9%, transparent);
  transition: transform 240ms var(--ease-out), box-shadow 240ms var(--ease-out), background 240ms var(--ease-out);
}

.product-matrix article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--blue);
  transform: scaleX(.24);
  transform-origin: left;
  transition: transform 240ms var(--ease-out), background 240ms var(--ease-out);
}

.product-matrix article:nth-child(2)::before,
.product-matrix article:nth-child(5)::before {
  background: var(--orange);
}

.product-matrix article:nth-child(3)::before,
.product-matrix article:nth-child(6)::before {
  background: var(--ink);
}

.product-matrix span {
  position: relative;
  width: fit-content;
  padding: 4px 8px;
  color: var(--blue);
  background: var(--blue-soft);
  font-size: .84rem;
  font-weight: 850;
  transition: transform 240ms var(--ease-out), color 240ms var(--ease-out), background 240ms var(--ease-out);
}

.product-matrix article:nth-child(2) span,
.product-matrix article:nth-child(5) span {
  color: oklch(.58 .18 38);
  background: oklch(.97 .035 38);
}

.product-matrix h3 {
  position: relative;
  margin-top: 23px;
  font-size: 1.48rem;
  line-height: 1.24;
  transition: transform 240ms var(--ease-out), color 240ms var(--ease-out);
}

.product-matrix p {
  position: relative;
  margin-top: 13px;
  color: var(--body);
  font-size: .97rem;
  line-height: 1.76;
  transition: transform 240ms var(--ease-out), color 240ms var(--ease-out);
}

.product-matrix article::after {
  content: "+";
  position: absolute;
  right: 25px;
  bottom: 20px;
  color: var(--blue);
  font-size: 1.65rem;
  font-weight: 400;
  opacity: .28;
  transition: transform 240ms var(--ease-out), opacity 240ms var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .product-matrix article:hover {
    transform: translateY(-8px);
    background: oklch(.99 .004 265);
    box-shadow: 0 15px 24px color-mix(in oklch, var(--blue-deep) 16%, transparent);
  }

  .product-matrix article:hover::before {
    transform: scaleX(1);
  }

  .product-matrix article:hover span,
  .product-matrix article:hover h3,
  .product-matrix article:hover p {
    transform: translateX(7px);
  }

  .product-matrix article:hover::after {
    opacity: 1;
    transform: rotate(90deg);
  }
}

@media (max-width: 980px) {
  .product-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

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

  .product-matrix {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-matrix article,
  .product-matrix article:nth-child(3n + 2),
  .product-matrix article:nth-child(3n + 3),
  .product-matrix article:nth-child(n + 4) {
    min-height: 244px;
    padding: 25px 23px;
  }

  .product-matrix h3 {
    font-size: 1.36rem;
  }
}

.products-section {
  margin-top: clamp(64px, 7vw, 112px);
}

.about-section {
  color: var(--white);
  background: var(--ink);
}

.about-section .about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(62px, 10vw, 154px);
  padding: clamp(82px, 9vw, 128px) 0;
}

.about-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-title .section-tag {
  color: oklch(.78 .08 264);
}

.about-title h2 {
  color: var(--white);
}

.about-mark {
  margin-top: auto;
  padding-top: 54px;
  color: var(--orange);
  font-size: 3.4rem;
  font-weight: 850;
  line-height: 1;
}

.about-mark span {
  display: block;
  margin-top: 9px;
  color: oklch(.73 .02 265);
  font-size: .9rem;
  font-weight: 700;
}

.about-copy {
  max-width: 590px;
}

.about-copy p {
  color: oklch(.88 .02 265);
  font-size: 1.07rem;
  line-height: 1.9;
}

.about-copy p + p {
  margin-top: 18px;
}

.badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 31px;
}

.badges span {
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 11px 12px;
  border: 0;
  color: var(--white);
  background: oklch(.30 .09 265);
  font-size: .87rem;
  font-weight: 800;
  line-height: 1.45;
  transition: transform 200ms var(--ease-out), background 200ms var(--ease-out), color 200ms var(--ease-out);
}

.badges span:nth-child(2),
.badges span:nth-child(5) {
  color: var(--ink);
  background: var(--orange);
}

.badges span:nth-child(3) {
  color: var(--blue-deep);
  background: var(--white);
}

.badges span:nth-child(4) {
  background: var(--blue);
}

@media (hover: hover) and (pointer: fine) {
  .badges span:hover {
    transform: translateY(-5px);
    color: var(--ink);
    background: var(--white);
  }
}

.client-wall {
  padding: clamp(76px, 9vw, 126px) 0;
  background: var(--white);
}

.client-wall-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 39px;
}

.client-wall-heading h2 {
  margin: 0;
  font-size: 2.46rem;
  line-height: 1.2;
  text-wrap: balance;
}

.client-wall-heading .section-tag {
  align-self: start;
}

.client-wall img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .about-section .about,
  .client-wall-heading {
    grid-template-columns: 1fr;
  }

  .about-section .about {
    gap: 42px;
  }

  .about-mark {
    margin-top: 42px;
    padding-top: 0;
  }

  .client-wall-heading {
    gap: 19px;
  }
}

@media (max-width: 680px) {
  .products-section {
    margin-top: 52px;
  }

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

  .about-mark {
    font-size: 3rem;
  }

  .about-copy p {
    font-size: 1rem;
  }

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

  .badges span {
    min-height: 62px;
    font-size: .84rem;
  }

  .client-wall {
    padding: 72px 0;
  }

  .client-wall-heading h2 {
    font-size: 2.05rem;
  }
}

.panel-cc {
  background: oklch(.39 .15 266);
}

.panel-cc > span {
  color: oklch(.82 .08 264);
}

.panel-cc > b {
  color: color-mix(in oklch, var(--white) 14%, transparent);
}

.about-section {
  background: oklch(.34 .11 266);
}

@media (hover: hover) and (pointer: fine) and (min-width: 981px) {
  .summary-panels {
    display: flex;
  }

  .summary-panel {
    min-width: 0;
    flex: 1 1 0;
    transition: flex 340ms var(--ease-out), background 240ms var(--ease-out);
  }

  .summary-panels:hover .summary-panel {
    flex-grow: .84;
  }

  .summary-panels:hover .summary-panel:hover {
    flex-grow: 1.32;
  }

  .summary-panel h3,
  .summary-panel > p,
  .summary-panel ul,
  .summary-panel > b {
    transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
  }

  .summary-panels:hover .summary-panel:not(:hover) h3,
  .summary-panels:hover .summary-panel:not(:hover) > p,
  .summary-panels:hover .summary-panel:not(:hover) ul {
    opacity: .74;
  }

  .summary-panel:hover h3,
  .summary-panel:hover > p,
  .summary-panel:hover ul {
    transform: translateX(8px);
  }

  .summary-panel:hover > b {
    transform: translateX(-12px) translateY(-8px);
  }
}

.about-section .badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 35px;
  border-top: 1px solid color-mix(in oklch, var(--white) 30%, transparent);
}

.about-section .badges span,
.about-section .badges span:nth-child(n) {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  min-height: 66px;
  align-items: center;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid color-mix(in oklch, var(--white) 22%, transparent);
  color: oklch(.92 .015 265);
  background: transparent;
  font-size: .95rem;
  font-weight: 750;
  line-height: 1.45;
  transition: color 200ms var(--ease-out), transform 200ms var(--ease-out);
}

.about-section .badges span::before {
  color: var(--orange);
  font-size: .78rem;
  font-weight: 850;
}

.about-section .badges span:nth-child(1)::before { content: "01"; }
.about-section .badges span:nth-child(2)::before { content: "02"; }
.about-section .badges span:nth-child(3)::before { content: "03"; }
.about-section .badges span:nth-child(4)::before { content: "04"; }
.about-section .badges span:nth-child(5)::before { content: "05"; }

.about-section .badges span:nth-child(5) {
  grid-column: 1 / -1;
}

@media (hover: hover) and (pointer: fine) {
  .about-section .badges span:hover {
    transform: translateX(8px);
    color: var(--white);
    background: transparent;
  }
}

@media (max-width: 680px) {
  .about-section .badges {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-section .badges span:nth-child(5) {
    grid-column: auto;
  }
}

.summary-heading {
  border-bottom: 0;
}

.summary-panel,
.summary-panel:last-child {
  border-right: 0;
}
