:root {
  --company-sans: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --company-display: "HarmonyOS Sans SC", "MiSans", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --company-serif: var(--company-display);
  --company-mono: ui-monospace, "SFMono-Regular", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
  --font-inter-tight: var(--company-sans);
  --font-ibm-plex-mono: var(--company-mono);
  --font-instrument-serif: var(--company-serif);
  --font-manrope: var(--company-sans);
  --font-sora: var(--company-sans);
}

body {
  background: #f6f7f9;
  color: #171b2a;
  font-family: var(--company-sans);
  line-height: 1.6;
  margin: 0;
  font-feature-settings: "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

html {
  background: #f6f7f9;
  scroll-behavior: smooth;
}

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

body.overflow-hidden {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

main {
  background: #f6f7f9;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

[data-company-hidden="true"] {
  display: none !important;
}

header nav .nav-item > div {
  display: none !important;
}

header nav .nav-item > a > span:not(:first-child) {
  display: none;
}

.company-site-nav {
  left: 0;
  position: fixed;
  right: 0;
  top: 20px;
  transition: top .3s ease;
  width: 100%;
  z-index: 50;
}

.company-site-nav[data-has-scrolled="true"] {
  top: 12px;
}

.company-nav-shell {
  align-items: center;
  background: rgb(13 16 23 / 64%);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1290px;
  min-height: 60px;
  padding: 10px 12px 10px 18px;
  width: calc(100% - 32px);
}

.company-brand {
  align-items: center;
  display: flex;
  gap: 12px;
  text-decoration: none;
}

.company-brand-mark {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgb(0 0 0 / 16%);
  flex: 0 0 auto;
  height: 38px;
  width: 38px;
}

.company-brand-text {
  display: grid;
  gap: 4px;
}

.company-nav-links {
  align-items: center;
  display: flex;
  gap: clamp(22px, 3vw, 42px);
}

.company-nav-links a,
.company-nav-action {
  font-family: var(--company-sans);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.company-nav-links a {
  color: rgb(255 255 255 / 64%);
}

.company-nav-links a:hover {
  color: #fff;
}

.company-nav-action {
  background: #f8f9fa;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 4px;
  color: #171b2a;
  font-weight: 600;
  padding: 10px 17px;
}

.company-nav-action:hover {
  background: #fff;
}

.nav-hamburger {
  align-items: flex-end;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  margin: 0;
  padding: 9px 5px;
}

.company-mobile-menu-trigger {
  position: fixed;
  right: 30px;
  top: 39px;
  z-index: 60;
}

.nav-hamburger span:not(.sr-only) {
  background: #fff;
  display: block;
  height: 1px;
  width: 34px;
}

.nav-hamburger span:not(.sr-only):nth-last-of-type(2) {
  width: 34px;
}

.nav-hamburger span:not(.sr-only):last-child {
  width: 24px;
}

.sidebar {
  background: #fff;
  box-shadow: -24px 0 80px rgb(17 24 39 / 14%);
  height: 100vh;
  max-width: 420px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform .28s ease;
  width: 100%;
  z-index: 9999;
}

.sidebar.show-sidebar {
  transform: translateX(0);
}

.company-mobile-panel {
  box-sizing: border-box;
  height: 100%;
  padding: 22px 24px;
}

.company-mobile-panel-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.nav-hamburger-close {
  align-items: center;
  background: #eef3f8;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  position: relative;
  width: 42px;
}

.nav-hamburger-close span:not(.sr-only) {
  background: #171b2a;
  display: block;
  height: 2px;
  position: absolute;
  width: 17px;
}

.nav-hamburger-close span:not(.sr-only):nth-last-of-type(2) {
  transform: rotate(45deg);
}

.nav-hamburger-close span:not(.sr-only):last-child {
  transform: rotate(-45deg);
}

.company-mobile-nav {
  display: grid;
  margin-top: 34px;
}

.company-mobile-nav a {
  border-bottom: 1px solid rgb(17 24 39 / 10%);
  color: #171b2a;
  font-family: var(--company-sans);
  font-size: 18px;
  padding: 18px 0;
  text-decoration: none;
}

@media (max-width: 960px) {
  .company-nav-links,
  .company-nav-action {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (min-width: 961px) {
  .company-mobile-menu-trigger,
  .sidebar {
    display: none;
  }
}

.company-wordmark {
  color: #fff;
  font-family: var(--company-display);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
}

.company-wordmark-subtitle {
  border-left: 1px solid rgb(255 255 255 / 35%);
  color: rgb(255 255 255 / 60%);
  font-family: var(--company-mono);
  font-size: 8px;
  letter-spacing: .08em;
  line-height: 1.2;
  padding-left: 9px;
}

.company-mobile-wordmark {
  align-items: center;
  color: #171b2a;
  display: inline-flex;
  font-family: var(--company-display);
  font-size: 21px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: .03em;
  text-decoration: none;
}

.company-mobile-wordmark img {
  border-radius: 999px;
  height: 36px;
  width: 36px;
}

.company-hero-background {
  background:
    radial-gradient(circle at 24% 18%, rgb(19 229 180 / 13%), transparent 28%),
    radial-gradient(circle at 78% 28%, rgb(5 114 253 / 15%), transparent 27%),
    radial-gradient(circle at 50% 93%, rgb(111 184 255 / 17%), transparent 29%),
    linear-gradient(180deg, #f7fbff 0%, #f6f8fb 70%, #edf8f6 100%);
  inset: 0;
  position: absolute;
  z-index: -1;
}

.company-hero {
  isolation: isolate;
  overflow: hidden;
  padding: clamp(126px, 10vw, 164px) 0 clamp(68px, 7.5vw, 112px);
  position: relative;
}

.company-hero-shell {
  margin: 0 auto;
  max-width: 1290px;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

.company-hero-copy {
  margin: 0 auto;
  max-width: 930px;
  text-align: center;
}

.company-hero-copy h1 {
  color: rgb(23 27 42 / 92%);
  font-family: var(--company-display);
  font-size: 82px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

.company-hero-copy h1 span {
  color: #0572fd;
  display: block;
  font-family: var(--company-display);
  font-size: 82px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0;
  white-space: nowrap;
}

.company-hero-copy p {
  color: rgb(23 27 42 / 70%);
  font-family: var(--company-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.78;
  margin: 24px auto 0;
  max-width: 820px;
}

.company-hero-label {
  align-items: center;
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(16 93 196 / 10%);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgb(31 78 124 / 8%);
  color: #265579 !important;
  display: inline-flex;
  font-family: var(--company-sans) !important;
  font-size: 14px !important;
  font-weight: 650;
  gap: 9px;
  line-height: 1 !important;
  margin: 0 auto 22px !important;
  max-width: none !important;
  padding: 8px 14px 8px 9px;
}

.company-hero-label img {
  border-radius: 999px;
  height: 24px;
  width: 24px;
}

.company-hero-actions {
  align-items: center;
  display: inline-flex;
  gap: 18px;
  justify-content: center;
  margin-top: 46px;
}

.company-hero-figure {
  backdrop-filter: blur(47px);
  -webkit-backdrop-filter: blur(47px);
  border-radius: 18px;
  box-shadow: 0 26px 90px rgb(34 84 143 / 12%);
  margin: clamp(44px, 4vw, 58px) 0 0;
  overflow: hidden;
  outline: 8px solid rgb(255 255 255 / 35%);
}

.company-hero-system-visual {
  aspect-ratio: 2 / 1;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

body > footer {
  background: #f6f7f9;
  border-top: 1px solid #dde4ec;
}

.company-hero-cta {
  align-items: center;
  background: #171b2a;
  border: 1px solid rgb(23 27 42 / 8%);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-family: var(--company-sans);
  font-size: 15px;
  font-weight: 650;
  justify-content: center;
  min-height: 48px;
  margin-top: 0;
  padding: 0 25px;
  text-decoration: none;
  transition: background-color .2s ease, transform .2s ease;
}

.company-hero-cta:hover {
  background: #0f1524;
  transform: translateY(-1px);
}

.company-hero-link {
  align-items: center;
  border-bottom: 1px solid rgb(23 27 42 / 24%);
  color: #26314a;
  display: inline-flex;
  font-family: var(--company-sans);
  font-size: 15px;
  font-weight: 650;
  min-height: 48px;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease;
}

.company-hero-link:hover {
  border-color: #0572fd;
  color: #0572fd;
}

@media (max-width: 1100px) {
  .company-hero-copy h1 {
    font-size: 64px;
  }

  .company-hero-copy h1 span {
    font-size: 64px;
  }

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

  .company-capability-card-featured {
    transform: none;
  }
}

.company-footer {
  color: #596173;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  margin: 0 auto;
  max-width: 1290px;
  padding: 54px 28px 34px;
}

.company-footer-name {
  align-items: center;
  color: #171b2a;
  display: flex;
  font-family: var(--company-display);
  font-size: 22px;
  font-weight: 750;
  gap: 10px;
  letter-spacing: .03em;
  margin: 0 0 8px;
}

.company-footer-name img {
  border-radius: 999px;
  height: 30px;
  width: 30px;
}

.company-footer p:not(.company-footer-name) {
  color: #5b6678;
  font-family: var(--company-sans);
  font-size: 13px;
  font-weight: 500;
  margin: 0;
}

.company-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.company-footer a {
  color: #52606f;
  font-family: var(--company-mono);
  font-size: 12px;
  text-decoration: none;
}

.company-footer a:hover {
  color: #171b2a;
}

.company-footer-copyright {
  border-top: 1px solid #dfe6ee;
  grid-column: 1 / -1;
  padding-top: 18px;
}

.company-page-content {
  background: #f6f7f9;
  overflow: hidden;
}

.company-section {
  padding: clamp(72px, 8.5vw, 122px) 0;
}

.company-shell {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1290px;
  padding: 0 28px;
}

.company-section-heading {
  max-width: 830px;
}

.company-section-heading-centered {
  margin: 0 auto;
  text-align: center;
}

.company-kicker {
  color: #59667f;
  font-family: var(--company-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  margin: 0 0 18px;
}

.company-section h2,
.company-contact h2 {
  color: #171b2a;
  font-family: var(--company-display);
  font-size: 58px;
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.13;
  margin: 0;
  text-wrap: balance;
}

.company-section h2 em,
.company-contact h2 em {
  color: #0572fd;
  font-family: var(--company-display);
  font-style: normal;
  font-weight: 680;
  white-space: nowrap;
}

.company-section h2 > span,
.company-section h2 > em {
  display: inline-block;
  white-space: nowrap;
}

.company-section-heading > p:last-child,
.company-products-copy > p:not(.company-kicker),
.company-contact-action > p {
  color: rgb(23 27 42 / 70%);
  font-family: var(--company-sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.8;
  margin: 24px 0 0;
  max-width: 720px;
}

.company-story {
  background:
    radial-gradient(circle at 88% 16%, rgb(193 213 255 / 44%), transparent 30%),
    radial-gradient(circle at 12% 78%, rgb(19 229 180 / 10%), transparent 32%),
    #f6f7f9;
}

.company-story .company-section-heading {
  max-width: none;
}

.company-story-layout {
  align-items: stretch;
  display: grid;
  gap: clamp(30px, 5vw, 76px);
  grid-template-columns: minmax(270px, .72fr) minmax(0, 1.28fr);
  margin-top: clamp(38px, 4.8vw, 66px);
}

.company-story-copy {
  align-self: center;
  border-top: 1px solid rgb(23 27 42 / 17%);
  padding-top: 24px;
}

.company-story-lead {
  color: #1b243e;
  font-family: var(--company-display);
  font-size: 34px;
  font-weight: 680;
  line-height: 1.22;
  margin: 0;
}

.company-story-lead span {
  display: block;
  white-space: nowrap;
}

.company-story-copy > p:not(.company-story-lead) {
  color: rgb(23 27 42 / 70%);
  font-family: var(--company-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  margin: 22px 0 0;
}

.company-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.company-tag-list span {
  background: rgb(255 255 255 / 72%);
  border: 1px solid rgb(23 27 42 / 11%);
  border-radius: 999px;
  color: #36415a;
  font-family: var(--company-mono);
  font-size: 12px;
  padding: 9px 12px;
}

.company-story-principles {
  border-top: 1px solid rgb(23 27 42 / 12%);
  display: grid;
  margin-top: 26px;
}

.company-story-principles > div {
  align-items: baseline;
  border-bottom: 1px solid rgb(23 27 42 / 12%);
  display: grid;
  gap: 12px;
  grid-template-columns: 102px 1fr;
  padding: 12px 0;
}

.company-story-principles span {
  color: #71809d;
  font-family: var(--company-mono);
  font-size: 10px;
  letter-spacing: .04em;
}

.company-story-principles strong {
  color: #26314a;
  font-family: var(--company-sans);
  font-size: 14px;
  font-weight: 550;
  line-height: 1.55;
}

.company-image-frame {
  background: #eef3ff;
  box-shadow: 0 24px 64px rgb(46 71 120 / 9%);
  margin: 0;
  overflow: hidden;
}

.company-image-frame img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.company-image-wide {
  border-radius: 22px;
  min-height: 410px;
}

.company-capabilities {
  background:
    radial-gradient(circle at 18% 12%, rgb(9 229 176 / 16%), transparent 28%),
    radial-gradient(circle at 78% 18%, rgb(5 114 253 / 24%), transparent 34%),
    #111827;
}

.company-capabilities .company-kicker {
  color: rgb(255 255 255 / 56%);
}

.company-capabilities .company-section-heading {
  max-width: 1000px;
}

.company-capabilities h2 {
  color: #fff;
}

.company-capabilities h2 em {
  color: rgb(255 255 255 / 55%);
}

.company-capabilities .company-section-heading > p:last-child {
  color: rgb(255 255 255 / 58%);
  margin-left: auto;
  margin-right: auto;
}

.company-capability-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(38px, 4.8vw, 66px);
}

.company-capability-card {
  background: rgb(255 255 255 / 7%);
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  min-height: 312px;
  padding: clamp(22px, 2.4vw, 34px);
}

.company-capability-card-featured {
  background:
    radial-gradient(circle at 80% 17%, rgb(9 229 176 / 26%), transparent 38%),
    rgb(38 112 230 / 34%);
  transform: translateY(-18px);
}

.company-index {
  color: rgb(255 255 255 / 55%);
  font-family: var(--company-mono);
  font-size: 13px;
  letter-spacing: .12em;
}

.company-capability-card h3 {
  color: #fff;
  font-family: var(--company-display);
  font-size: 25px;
  font-weight: 680;
  letter-spacing: 0;
  margin: 38px 0 12px;
}

.company-capability-card p {
  color: rgb(255 255 255 / 70%);
  font-family: var(--company-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.company-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: auto 0 0;
  padding: 24px 0 0;
}

.company-capability-list li {
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 999px;
  color: rgb(255 255 255 / 64%);
  font-family: var(--company-mono);
  font-size: 10px;
  padding: 7px 9px;
}

.company-products {
  background:
    radial-gradient(circle at 9% 23%, rgb(196 224 255 / 60%), transparent 29%),
    #f6f7f9;
}

.company-products-layout {
  align-items: center;
  display: grid;
  gap: clamp(36px, 5.6vw, 82px);
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
}

.company-image-square {
  aspect-ratio: 1;
  border-radius: 24px;
}

.company-products-copy {
  max-width: 560px;
}

.company-product-list {
  border-top: 1px solid rgb(23 27 42 / 17%);
  margin-top: 28px;
}

.company-product-list article {
  align-items: flex-start;
  border-bottom: 1px solid rgb(23 27 42 / 17%);
  display: grid;
  gap: 18px;
  grid-template-columns: 36px 1fr;
  padding: 20px 0;
}

.company-product-list article > span {
  color: #677491;
  font-family: var(--company-mono);
  font-size: 12px;
  padding-top: 5px;
}

.company-product-list h3 {
  color: #1b243e;
  font-family: var(--company-display);
  font-size: 22px;
  font-weight: 680;
  letter-spacing: 0;
  margin: 0;
}

.company-product-title {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-product-title span {
  border: 1px solid rgb(23 27 42 / 12%);
  border-radius: 999px;
  color: #65738e;
  font-family: var(--company-mono);
  font-size: 10px;
  padding: 4px 8px;
}

.company-product-list p {
  color: rgb(23 27 42 / 70%);
  font-family: var(--company-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  margin: 8px 0 0;
}

.company-method {
  background: #eceff4;
}

.company-method-list {
  counter-reset: method;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: clamp(34px, 4.4vw, 58px) 0 0;
  padding: 0;
}

.company-method-list li {
  background: #f7f8fa;
  display: flex;
  flex-direction: column;
  min-height: 272px;
  padding: clamp(26px, 3.6vw, 52px);
}

.company-method .company-section-heading {
  max-width: 1040px;
}

.company-method h2 span,
.company-method h2 em {
  display: inline-block;
}

.company-method-intro {
  color: rgb(23 27 42 / 62%);
  font-family: var(--company-sans);
  font-size: 17px;
  line-height: 1.8;
  margin: 20px 0 0;
}

.company-method-list span {
  color: #66738e;
  font-family: var(--company-mono);
  font-size: 13px;
  letter-spacing: .12em;
}

.company-method-list h3 {
  color: #1b243e;
  font-family: var(--company-display);
  font-size: 27px;
  font-weight: 680;
  letter-spacing: 0;
  margin: 34px 0 12px;
}

.company-method-stage {
  color: #72809a;
  font-family: var(--company-mono);
  font-size: 10px;
  letter-spacing: .1em;
  margin: 12px 0 0;
}

.company-method-list p {
  color: rgb(23 27 42 / 70%);
  font-family: var(--company-sans);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  margin: 0;
}

.company-method-list small {
  border-top: 1px solid rgb(23 27 42 / 12%);
  color: #697691;
  font-family: var(--company-sans);
  font-size: 12px;
  line-height: 1.55;
  margin-top: auto;
  padding-top: 16px;
}

.company-contact {
  background: #f6f7f9;
  padding: 18px 0 82px;
}

.company-contact-inner {
  align-items: end;
  background:
    radial-gradient(circle at 82% 14%, rgb(5 114 253 / 46%), transparent 38%),
    radial-gradient(circle at 14% 86%, rgb(9 229 176 / 20%), transparent 34%),
    #172037;
  border-radius: 24px;
  color: #fff;
  display: grid;
  gap: clamp(36px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, .7fr);
  padding: clamp(36px, 6vw, 88px);
}

.company-contact .company-kicker {
  color: rgb(255 255 255 / 58%);
}

.company-contact h2 {
  color: #fff;
}

.company-contact h2 em {
  color: #7ad9ff;
}

.company-contact h2 {
  font-size: 52px;
}

.company-contact h2 > span {
  display: inline-block;
  white-space: nowrap;
}

.company-contact-action > p {
  color: rgb(255 255 255 / 74%);
  font-size: 15px;
  margin: 0 0 28px;
}

.company-contact-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.company-contact-topics span {
  border: 1px solid rgb(255 255 255 / 21%);
  border-radius: 999px;
  color: rgb(255 255 255 / 74%);
  font-family: var(--company-mono);
  font-size: 10px;
  padding: 7px 10px;
}

.company-contact-action a {
  border-bottom: 1px solid rgb(255 255 255 / 43%);
  color: #fff;
  display: inline-flex;
  font-family: var(--company-mono);
  font-size: 15px;
  gap: 14px;
  padding: 0 0 10px;
  text-decoration: none;
}

.company-contact-action a:hover {
  border-color: #fff;
}

@media (max-width: 640px) {
  .nav-hamburger span:not(.sr-only) {
    background-color: #fff !important;
  }

  .nav-hamburger {
    display: flex !important;
    margin-left: auto;
  }

  .company-hero-copy h1 {
    font-size: 30px;
    line-height: 1.12 !important;
    margin-left: auto;
    margin-right: auto;
    max-width: 280px;
    overflow-wrap: anywhere;
    white-space: normal !important;
    width: 100%;
  }

  .company-hero-copy h1 span {
    display: block;
    font-size: 30px;
    line-height: 1.16 !important;
    margin-top: 4px;
    white-space: normal !important;
  }

  .company-hero-shell {
    box-sizing: border-box;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }

  .company-hero-copy {
    max-width: 100%;
    overflow: hidden;
  }

  .company-hero-copy p {
    font-size: 15px;
    line-height: 1.75;
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    overflow-wrap: anywhere;
  }

  .company-hero-copy br {
    display: none;
  }

  .company-hero-figure {
    margin-left: auto;
    margin-right: auto;
    margin-top: 42px;
    max-width: 100%;
    min-width: 0;
    width: calc(100vw - 32px);
  }

  .company-hero {
    padding-bottom: 78px;
    padding-top: 126px;
  }

  .company-hero-cta {
    margin-top: 0;
  }

  .company-hero-actions {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }

  .company-wordmark-subtitle {
    display: none;
  }

  .company-nav-shell {
    margin-left: 16px;
    margin-right: 16px;
    min-height: 58px;
    padding-left: 18px;
    width: auto;
  }

  .company-section h2 > span,
  .company-section h2 > em,
  .company-contact h2 > span,
  .company-contact h2 > em,
  .company-story-lead span {
    white-space: normal;
  }

  .company-section h2,
  .company-contact h2 {
    overflow-wrap: anywhere;
  }

  .company-section {
    padding: 76px 0;
  }

  .company-shell {
    padding: 0 20px;
  }

  .company-kicker {
    font-size: 10px;
    margin-bottom: 13px;
  }

  .company-section h2,
  .company-contact h2 {
    font-size: 35px;
    letter-spacing: 0;
  }

  .company-contact h2 {
    font-size: 26px;
    line-height: 1.18;
  }

  .company-section-heading > p:last-child,
  .company-products-copy > p:not(.company-kicker),
  .company-contact-action > p {
    font-size: 15px;
    margin-top: 18px;
  }

  .company-story-layout,
  .company-products-layout,
  .company-contact-inner {
    grid-template-columns: 1fr;
  }

  .company-story-layout {
    gap: 32px;
    margin-top: 38px;
  }

  .company-image-wide {
    min-height: 0;
  }

  .company-capability-grid,
  .company-method-list {
    grid-template-columns: 1fr;
  }

  .company-capability-card,
  .company-method-list li {
    min-height: 0;
  }

  .company-capability-card-featured {
    transform: none;
  }

  .company-capability-card h3,
  .company-method-list h3 {
    margin-top: 32px;
  }

  .company-story-principles > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 12px 0;
  }

  .company-story-lead {
    font-size: 26px;
  }

  .company-method-intro {
    font-size: 15px;
    margin-top: 16px;
  }

  .company-method-list li {
    min-height: 238px;
  }

  .company-products-layout {
    gap: 42px;
  }

  .company-image-square {
    max-width: 480px;
  }

  .company-contact {
    padding: 0 0 76px;
  }

  .company-contact-inner {
    gap: 30px;
    padding: 34px 28px;
  }

  .company-footer {
    grid-template-columns: 1fr;
    padding: 40px 24px 28px;
  }

  .company-footer-links {
    justify-content: flex-start;
  }
}
