:root {
  --ink: #131817;
  --ink-soft: #252c2a;
  --paper: #f4f7f6;
  --white: #ffffff;
  --line: #ccd4d1;
  --muted: #697572;
  --red: #e84235;
  --red-deep: #be3027;
  --teal: #167965;
  --citron: #d8f36a;
  --header-height: 74px;
  --wrap: 1240px;
  --radius: 4px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--citron);
  outline-offset: 4px;
}

[data-lang="en"] {
  display: none !important;
}

html[data-locale="en"] [data-lang="zh"] {
  display: none !important;
}

html[data-locale="en"] [data-lang="en"] {
  display: revert !important;
}

.wrap {
  width: min(calc(100% - 64px), var(--wrap));
  margin-inline: auto;
}

.band {
  position: relative;
  padding-block: 112px;
}

.band-light {
  background: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding-inline: 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(244, 247, 246, 0.97);
  color: var(--ink);
  border-bottom-color: var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  border: 1px solid currentColor;
  overflow: hidden;
}

.brand-mark i,
.brand-mark b {
  position: absolute;
  display: block;
  background: currentColor;
}

.brand-mark i {
  width: 26px;
  height: 2px;
  left: -5px;
  top: 11px;
  transform: rotate(-28deg);
}

.brand-mark b {
  width: 9px;
  height: 9px;
  right: 5px;
  bottom: 5px;
  background: var(--red);
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", serif;
  font-size: 19px;
  font-weight: 700;
}

.brand-name small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 30px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--red);
  transition: right 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locale-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 36px);
  border: 1px solid currentColor;
  border-radius: var(--radius);
  overflow: hidden;
}

.locale-switch button {
  height: 30px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.locale-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--citron);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding-inline: 16px;
  color: var(--white);
  background: var(--red);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--red-deep);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  height: 86svh;
  min-height: 700px;
  max-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background: rgba(7, 11, 11, 0.17);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-top: 72px;
  padding-bottom: 128px;
}

.eyebrow,
.section-index,
.offer-kicker,
.status-label {
  margin: 0;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  padding-left: 50px;
}

.eyebrow::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 2px;
  margin-top: 6px;
  margin-left: -50px;
  background: var(--red);
}

.hero h1 {
  margin: 20px 0 8px;
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", Georgia, serif;
  font-size: 88px;
  line-height: 0.98;
  font-weight: 700;
  letter-spacing: 0;
}

html[data-locale="en"] .hero h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
}

.hero-claim {
  margin: 22px 0 0;
  max-width: 760px;
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", Georgia, serif;
  font-size: 34px;
  line-height: 1.28;
  font-weight: 600;
}

html[data-locale="en"] .hero-claim {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 180px;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

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

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(10, 14, 13, 0.26);
}

.button-ghost:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-rail {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
  background: rgba(17, 23, 22, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-rail > div {
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-rail > div:last-child {
  border-right: 0;
}

.hero-rail b {
  align-self: start;
  color: var(--citron);
  font-size: 10px;
}

.hero-rail span {
  font-size: 13px;
  line-height: 1.45;
  font-weight: 650;
}

.section-index {
  color: var(--red);
}

.section-title {
  margin: 24px 0 0;
  font-family: "Songti SC", STSong, "Noto Serif CJK SC", Georgia, serif;
  font-size: 52px;
  line-height: 1.2;
  font-weight: 600;
}

html[data-locale="en"] .section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
}

.section-lede {
  margin: 0;
  max-width: 530px;
  color: var(--muted);
  font-size: 18px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 60px;
}

.section-head-inverse .section-lede {
  color: rgba(255, 255, 255, 0.68);
}

.opening {
  background: var(--paper);
}

.opening-grid {
  display: grid;
  grid-template-columns: 130px minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 50px;
  align-items: start;
}

.opening-grid .section-title {
  margin-top: 0;
}

.opening-copy {
  padding-top: 4px;
  color: var(--muted);
  font-size: 17px;
}

.opening-copy p {
  margin: 0;
}

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

.offer {
  position: relative;
  min-height: 530px;
  display: flex;
  flex-direction: column;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--red);
}

.offer-fde::before {
  background: var(--teal);
}

.offer-no {
  align-self: flex-end;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-family: Georgia, serif;
  font-size: 22px;
}

.offer-kicker {
  margin-top: 16px;
  color: var(--red);
}

.offer-fde .offer-kicker {
  color: var(--teal);
}

.offer h3 {
  margin: 18px 0;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 36px;
  line-height: 1.25;
  font-weight: 600;
}

html[data-locale="en"] .offer h3 {
  font-family: Georgia, "Times New Roman", serif;
}

.offer > p:not(.offer-kicker) {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.offer > .partner-status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -4px 0 20px;
  padding: 7px 9px;
  color: var(--red);
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 800;
}

.partner-status i {
  width: 7px;
  height: 7px;
  display: block;
  background: currentColor;
}

.offer ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 22px;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.offer li {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 12px;
  background: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.offer small {
  display: block;
  margin-top: auto;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.method,
.network,
.contact {
  color: var(--white);
  background: var(--ink);
}

.operating-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 72px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.operating-line li {
  position: relative;
  min-height: 280px;
  padding: 32px 25px 30px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.operating-line li:not(:first-child) {
  padding-left: 25px;
}

.operating-line li:last-child {
  padding-right: 0;
  border-right: 0;
}

.operating-line li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--citron);
}

.operating-line b {
  color: var(--citron);
  font-size: 11px;
}

.operating-line h3 {
  margin: 70px 0 14px;
  font-size: 18px;
}

.operating-line p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.band-signal {
  background: var(--citron);
}

.helm-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: 80px;
}

.helm-word {
  margin: 34px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 110px;
  line-height: 0.9;
  font-weight: 700;
}

.helm-brand h2 {
  margin: 18px 0 0;
  font-size: 18px;
}

.helm-lede {
  max-width: 730px;
  margin: 0;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 28px;
  line-height: 1.45;
  font-weight: 600;
}

html[data-locale="en"] .helm-lede {
  font-family: Georgia, "Times New Roman", serif;
}

.helm-capabilities {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid rgba(19, 24, 23, 0.4);
}

.helm-capabilities article {
  padding-right: 20px;
}

.helm-capabilities span {
  font-size: 10px;
  font-weight: 800;
}

.helm-capabilities h3 {
  margin: 30px 0 10px;
  font-size: 16px;
}

.helm-capabilities p {
  margin: 0;
  font-size: 12px;
}

.apparel-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
}

.status-label {
  display: flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 30px;
  padding: 8px 11px;
  color: var(--teal);
  border: 1px solid currentColor;
  border-radius: var(--radius);
}

.status-label i {
  width: 7px;
  height: 7px;
  background: var(--teal);
}

.apparel-copy .section-lede {
  margin-top: 30px;
  font-size: 16px;
}

.apparel-model {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
}

.model-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--white);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.model-head b {
  color: var(--citron);
}

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

.model-steps > span {
  min-height: 90px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.model-steps > span:nth-child(3n) {
  border-right: 0;
}

.model-steps b {
  color: var(--red);
  font-size: 9px;
}

.model-steps i {
  font-style: normal;
  font-size: 13px;
  font-weight: 700;
}

.model-output {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: var(--teal);
}

.model-output p {
  margin: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: var(--white);
  background: var(--teal);
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 12px;
  font-weight: 700;
}

.model-output p:last-child {
  border-right: 0;
}

.apparel-model > small {
  display: block;
  padding: 16px 20px;
  color: var(--muted);
  font-size: 10px;
}

.apparel-scene {
  position: relative;
  height: 390px;
  margin-top: 64px;
  overflow: hidden;
  border-radius: var(--radius);
}

.apparel-scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.apparel-scene figcaption {
  position: absolute;
  inset: auto 0 0;
  margin: 0;
  padding: 18px 22px;
  color: var(--white);
  background: rgba(19, 24, 23, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 700;
}

.industry-roadmap {
  margin-top: 84px;
  padding-top: 52px;
  border-top: 1px solid var(--line);
}

.industry-roadmap-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: end;
}

.industry-roadmap h3 {
  margin: 16px 0 0;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 38px;
  line-height: 1.2;
}

html[data-locale="en"] .industry-roadmap h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.industry-roadmap-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-grid > li {
  min-width: 0;
  min-height: 126px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-grid b {
  color: var(--red);
  font-size: 9px;
  line-height: 1;
}

.industry-grid strong {
  display: block;
  min-width: 0;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.industry-grid small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.industry-grid .industry-first {
  color: var(--white);
  background: var(--ink);
}

.industry-first b {
  color: var(--citron);
}

.industry-first small {
  color: rgba(255, 255, 255, 0.72);
}

.industry-grid .industry-open {
  grid-column: span 3;
  display: block;
  padding: 0;
  color: var(--white);
  background: var(--red);
}

.industry-open a {
  min-height: 125px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 24px;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
}

.industry-open b,
.industry-open small {
  color: var(--white);
}

.industry-open strong {
  font-size: 20px;
}

.industry-open small {
  display: block;
  max-width: 620px;
  margin-top: 5px;
  opacity: 0.82;
}

.industry-open i {
  font-style: normal;
  font-size: 20px;
}

.network-map {
  margin-top: 64px;
}

.network-hq {
  max-width: 680px;
  margin-inline: auto;
  padding: 30px;
  text-align: center;
  color: var(--ink);
  background: var(--citron);
  border-radius: var(--radius);
}

.network-hq > span {
  font-size: 10px;
  font-weight: 800;
}

.network-hq h3 {
  margin: 8px 0;
  font-size: 24px;
}

.network-hq p {
  margin: 0;
  font-size: 12px;
}

.network-trunk {
  position: relative;
  height: 88px;
  width: 68%;
  margin-inline: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.network-trunk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.network-trunk i {
  position: absolute;
  bottom: -4px;
  width: 8px;
  height: 8px;
  background: var(--red);
}

.network-trunk i:nth-child(1) { left: 0; }
.network-trunk i:nth-child(2) { left: calc(50% - 4px); }
.network-trunk i:nth-child(3) { right: 0; }

.network-nodes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 86%;
  margin: 0 auto;
}

.network-nodes article {
  min-height: 180px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
}

.network-nodes b {
  color: var(--citron);
  font-size: 10px;
}

.network-nodes h3 {
  margin: 42px 0 8px;
  font-size: 18px;
}

.network-nodes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 100px;
}

.trust-lede {
  margin: 0;
  font-family: "Songti SC", STSong, Georgia, serif;
  font-size: 25px;
  line-height: 1.55;
}

html[data-locale="en"] .trust-lede {
  font-family: Georgia, "Times New Roman", serif;
}

.trust-list {
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.trust-list b {
  color: var(--red);
  font-size: 10px;
}

.contact {
  background: var(--red);
}

.contact .section-index {
  color: var(--citron);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 90px;
  align-items: end;
}

.contact-panel {
  padding: 34px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.contact-panel > p:first-child {
  margin: 0;
  font-size: 17px;
}

.contact-options {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-options a {
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 18px;
  background: var(--white);
  transition: background-color 160ms ease;
}

.contact-options a:hover {
  background: var(--citron);
}

.contact-options b {
  font-size: 14px;
}

.contact-email {
  margin: 24px 0 0;
  color: var(--teal);
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
}

.site-footer {
  padding-block: 50px;
  color: var(--white);
  background: #080c0b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand p {
  display: grid;
  margin: 0;
  line-height: 1.1;
}

.footer-brand small {
  margin-top: 6px;
  font-size: 8px;
}

.footer-company p,
.footer-meta span {
  margin: 0;
  font-size: 12px;
}

.footer-company span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.footer-meta a {
  color: var(--citron);
  font-family: Georgia, serif;
}

.footer-meta span {
  color: rgba(255, 255, 255, 0.5);
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }
.reveal-delay-3 { transition-delay: 220ms; }
.reveal-delay-4 { transition-delay: 290ms; }

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 24px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-button {
    width: 36px;
    height: 34px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-button i {
    width: 16px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] i:first-of-type {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] i:last-of-type {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    padding: 18px 24px 30px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
  }

  .hero h1 {
    font-size: 68px;
  }

  html[data-locale="en"] .hero h1 {
    font-size: 58px;
  }

  .hero-rail > div {
    padding-inline: 18px;
  }

  .opening-grid {
    grid-template-columns: 90px minmax(0, 1.2fr) minmax(260px, 0.72fr);
    gap: 32px;
  }

  .section-head,
  .helm-grid,
  .apparel-grid,
  .trust-grid,
  .contact-grid {
    gap: 52px;
  }

  .offer {
    padding: 32px;
  }

  .offer ul {
    grid-template-columns: 1fr;
  }

  .offer li {
    min-height: 52px;
  }

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

  .operating-line li:nth-child(3) {
    border-right: 0;
  }

  .operating-line li:nth-child(n + 4) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

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

  .industry-grid .industry-open {
    grid-column: span 1;
  }

  .industry-open a {
    grid-template-columns: minmax(0, 1fr) 24px;
  }

  .industry-open b {
    grid-column: 1 / -1;
  }

  .network-nodes {
    width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .wrap {
    width: min(calc(100% - 36px), var(--wrap));
  }

  .band {
    padding-block: 76px;
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 18px;
  }

  .brand-name strong {
    font-size: 17px;
  }

  .brand-name small,
  .header-cta {
    display: none;
  }

  .locale-switch {
    grid-template-columns: repeat(2, 32px);
  }

  .hero {
    height: 92svh;
    min-height: 610px;
    max-height: 760px;
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background: rgba(7, 11, 11, 0.42);
  }

  .hero-content {
    justify-content: flex-start;
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .eyebrow {
    font-size: 9px;
  }

  .hero h1,
  html[data-locale="en"] .hero h1 {
    margin-top: 16px;
    font-size: 46px;
    line-height: 1.04;
  }

  html[data-locale="en"] .hero h1 {
    font-size: 42px;
  }

  .hero-claim,
  html[data-locale="en"] .hero-claim {
    margin-top: 16px;
    font-size: 25px;
    line-height: 1.3;
  }

  html[data-locale="en"] .hero-claim {
    font-size: 23px;
  }

  .hero-copy {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .button {
    min-width: 0;
    min-height: 40px;
    font-size: 12px;
  }

  .hero-rail {
    min-height: 82px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-rail > div {
    grid-template-columns: 26px 1fr;
    min-height: 41px;
    padding: 7px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-rail > div:nth-child(2) {
    border-right: 0;
  }

  .hero-rail > div:nth-child(n + 3) {
    border-bottom: 0;
  }

  .hero-rail span {
    font-size: 10px;
    line-height: 1.2;
  }

  .section-title,
  html[data-locale="en"] .section-title {
    font-size: 36px;
    line-height: 1.22;
  }

  html[data-locale="en"] .section-title {
    font-size: 34px;
  }

  .section-head,
  .opening-grid,
  .helm-grid,
  .apparel-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .section-head {
    margin-bottom: 42px;
  }

  .section-lede {
    font-size: 16px;
  }

  .opening-copy {
    font-size: 15px;
  }

  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer {
    min-height: 0;
    padding: 26px 22px;
  }

  .offer h3 {
    font-size: 30px;
  }

  .offer small,
  .text-link {
    margin-top: 26px;
  }

  .operating-line {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .operating-line li,
  .operating-line li:not(:first-child) {
    min-height: 0;
    padding: 22px 0 28px 34px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .operating-line li:nth-child(n + 4) {
    border-top: 0;
  }

  .operating-line li::before {
    top: 27px;
  }

  .operating-line h3 {
    margin: 18px 0 8px;
  }

  .helm-word {
    font-size: 82px;
  }

  .helm-lede {
    font-size: 23px;
  }

  .helm-capabilities {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 42px;
  }

  .helm-capabilities article {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 10px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(19, 24, 23, 0.25);
  }

  .helm-capabilities h3 {
    margin: 0 0 5px;
  }

  .helm-capabilities p {
    grid-column: 2;
  }

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

  .model-steps > span:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .model-steps > span:nth-child(2n) {
    border-right: 0;
  }

  .model-output {
    grid-template-columns: 1fr;
  }

  .model-output p {
    min-height: 54px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .apparel-scene {
    height: 280px;
    margin-top: 38px;
  }

  .apparel-scene img {
    object-position: 66% center;
  }

  .industry-roadmap {
    margin-top: 54px;
    padding-top: 38px;
  }

  .industry-roadmap-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .industry-roadmap h3,
  html[data-locale="en"] .industry-roadmap h3 {
    font-size: 30px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .industry-grid > li {
    min-height: 96px;
  }

  .industry-grid .industry-open {
    grid-column: auto;
  }

  .industry-open a {
    min-height: 122px;
  }

  .network-trunk {
    display: none;
  }

  .network-nodes {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .network-nodes article {
    min-height: 135px;
  }

  .network-nodes h3 {
    margin-top: 26px;
  }

  .trust-lede {
    font-size: 22px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-email {
    font-size: 20px;
  }

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

  .footer-meta {
    justify-items: start;
  }
}

@media (max-width: 390px) {
  .brand-name {
    display: none;
  }

  .hero-content {
    padding-top: 98px;
  }

  .hero h1,
  html[data-locale="en"] .hero h1 {
    font-size: 40px;
  }

  .hero-claim,
  html[data-locale="en"] .hero-claim {
    font-size: 21px;
  }

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

  .hero-actions {
    gap: 8px;
  }

  .button {
    width: 100%;
  }

  .model-head {
    flex-direction: column;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
