:root {
  --xm-ink: #14201d;
  --xm-ink-soft: #24342f;
  --xm-green: #1f5d4a;
  --xm-green-light: #dfece5;
  --xm-red: #b7252d;
  --xm-red-dark: #8f1921;
  --xm-gold: #c8a96b;
  --xm-paper: #f4f4ef;
  --xm-white: #ffffff;
  --xm-muted: #66716d;
  --xm-line: rgba(20, 32, 29, 0.14);
  --xm-shadow: 0 22px 70px rgba(13, 31, 25, 0.12);
  --xm-radius: 3px;
  --xm-container: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body.xm-site {
  margin: 0;
  width: 100% !important;
  min-width: 0 !important;
  color: var(--xm-ink);
  background: var(--xm-paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.xm-site a {
  color: inherit;
  text-decoration: none;
}

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

.xm-shell {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
}

.xm-container {
  width: var(--xm-container);
  margin-inline: auto;
}

.xm-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 88px;
  color: var(--xm-white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: height 0.25s ease, color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.xm-header.is-solid,
.xm-header.xm-header--inner {
  height: 76px;
  color: var(--xm-ink);
  background: rgba(248, 248, 244, 0.96);
  border-color: var(--xm-line);
  box-shadow: 0 8px 35px rgba(20, 32, 29, 0.08);
  backdrop-filter: blur(16px);
}

.xm-header__inner {
  width: var(--xm-container);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

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

.xm-brand__mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.xm-brand__name {
  display: grid;
  line-height: 1.08;
}

.xm-brand__name strong {
  font-size: 20px;
  letter-spacing: 0.1em;
}

.xm-brand__name small {
  margin-top: 6px;
  color: currentColor;
  opacity: 0.7;
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.xm-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.6vw, 38px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 600;
}

.xm-nav > a,
.xm-nav__group > button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  color: inherit;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.xm-nav > a::after,
.xm-nav__group > button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 2px;
  background: var(--xm-red);
  transition: right 0.22s ease;
}

.xm-nav > a:hover::after,
.xm-nav__group:hover > button::after {
  right: 0;
}

.xm-nav__group {
  position: relative;
}

.xm-nav__group > button span {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.xm-nav__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 250px;
  padding: 12px;
  color: var(--xm-ink);
  background: var(--xm-white);
  box-shadow: var(--xm-shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: 0.2s ease;
}

.xm-nav__group:hover .xm-nav__dropdown,
.xm-nav__group:focus-within .xm-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.xm-nav__dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--xm-line);
  font-weight: 500;
}

.xm-nav__dropdown a:last-child {
  border-bottom: 0;
}

.xm-nav__dropdown a:hover {
  color: var(--xm-red);
  background: #f7f4ef;
}

.xm-lang {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  opacity: 0.88;
}

.xm-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.xm-menu-toggle span {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: 0.2s ease;
}

.xm-main {
  min-height: 60vh;
}

.xm-hero {
  position: relative;
  min-height: 790px;
  height: 100vh;
  max-height: 980px;
  display: flex;
  align-items: center;
  color: var(--xm-white);
  background-color: var(--xm-ink);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.xm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 27, 23, 0.88) 0%, rgba(11, 27, 23, 0.67) 43%, rgba(11, 27, 23, 0.18) 78%);
}

.xm-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, rgba(11, 27, 23, 0.58), transparent);
}

.xm-hero__content {
  position: relative;
  z-index: 2;
  width: var(--xm-container);
  margin-inline: auto;
  padding-top: 80px;
}

.xm-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--xm-gold);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.xm-kicker::before {
  content: "";
  width: 44px;
  height: 1px;
  background: currentColor;
}

.xm-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 6.7vw, 104px);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.xm-hero__lead {
  max-width: 680px;
  margin: 30px 0 38px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.85;
}

.xm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.xm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: 0.22s ease;
}

.xm-button::after {
  content: "→";
  font-size: 18px;
  transition: transform 0.22s ease;
}

.xm-button:hover::after {
  transform: translateX(5px);
}

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

.xm-site .xm-button--primary:hover {
  color: var(--xm-white);
  background: var(--xm-red-dark);
}

.xm-site .xm-button--ghost {
  color: var(--xm-white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
}

.xm-site .xm-button--ghost:hover {
  color: var(--xm-white);
  background: rgba(255, 255, 255, 0.14);
}

.xm-site .xm-button--dark {
  color: var(--xm-white);
  background: var(--xm-ink);
}

.xm-site .xm-button--dark:hover {
  color: var(--xm-white);
  background: var(--xm-green);
}

.xm-hero__facts {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 0;
  width: var(--xm-container);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.xm-hero__fact {
  min-height: 104px;
  padding: 22px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.xm-hero__fact:first-child {
  padding-left: 0;
}

.xm-hero__fact:last-child {
  border-right: 0;
}

.xm-hero__fact strong,
.xm-hero__fact span {
  display: block;
}

.xm-hero__fact strong {
  font-size: 21px;
  font-weight: 600;
}

.xm-hero__fact span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.xm-section {
  padding: clamp(76px, 9vw, 132px) 0;
}

.xm-section--white {
  background: var(--xm-white);
}

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

.xm-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 52px;
}

.xm-section__head h2,
.xm-section__title {
  max-width: 820px;
  margin: 0;
  font-size: clamp(36px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.xm-section__head p:last-child {
  max-width: 470px;
  margin: 0 0 6px;
  color: var(--xm-muted);
}

.xm-section--dark .xm-section__head p:last-child,
.xm-section--dark .xm-muted {
  color: rgba(255, 255, 255, 0.64);
}

.xm-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.xm-intro__mark {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 20px;
}

.xm-intro__mark span {
  color: var(--xm-red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.xm-intro__mark strong {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.32;
}

.xm-intro__content {
  padding-top: 8px;
}

.xm-intro__content > p {
  margin: 0;
  color: #44504c;
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.95;
}

.xm-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
  gap: 1px;
  margin-top: 52px;
  background: var(--xm-line);
  border: 1px solid var(--xm-line);
}

.xm-feature-list article {
  min-width: 0;
  min-height: 160px;
  padding: 27px;
  background: var(--xm-paper);
}

.xm-feature-list strong,
.xm-feature-list span {
  display: block;
}

.xm-feature-list strong {
  color: var(--xm-red);
  font-size: 28px;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.xm-feature-list span {
  margin-top: 16px;
  color: var(--xm-muted);
  font-size: 14px;
}

.xm-section--group {
  background:
    radial-gradient(circle at 84% 12%, rgba(163, 30, 35, 0.09), transparent 25%),
    radial-gradient(circle at 12% 82%, rgba(20, 62, 51, 0.08), transparent 30%),
    linear-gradient(180deg, #edf2ee 0%, #e5ece7 100%);
}

.xm-group-ecosystem {
  position: relative;
  margin-top: 10px;
}

.xm-group-core {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 4vw, 50px);
  color: var(--xm-white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(120deg, rgba(163, 30, 35, 0.2), transparent 48%),
    var(--xm-green);
  box-shadow: 0 30px 70px rgba(15, 52, 43, 0.2);
  overflow: hidden;
}

.xm-group-core::after {
  content: "XIANGMAO";
  position: absolute;
  right: -18px;
  bottom: -31px;
  color: rgba(255, 255, 255, 0.045);
  font-family: Arial, sans-serif;
  font-size: clamp(70px, 10vw, 140px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.xm-group-core__eyebrow,
.xm-group-core__content,
.xm-group-core__stats {
  position: relative;
  z-index: 1;
}

.xm-group-core__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.xm-group-core__eyebrow span {
  color: var(--xm-gold);
}

.xm-group-core__eyebrow b {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 9px;
}

.xm-group-core__content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  align-items: end;
  gap: 44px;
  margin-top: 34px;
}

.xm-group-core__number {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, 0.34);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.xm-group-core h3 {
  margin: 0;
  font-size: clamp(27px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.3;
}

.xm-group-core__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.85;
}

.xm-group-core__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.xm-group-core__stats span {
  display: flex;
  align-items: baseline;
  gap: 9px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.xm-group-core__stats span + span {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.xm-group-core__stats strong {
  color: var(--xm-white);
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.xm-group-categories {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-top: 70px;
}

.xm-group-categories::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 25%;
  right: 25%;
  height: 1px;
  background: rgba(20, 62, 51, 0.24);
}

.xm-group-categories::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 35px;
  background: rgba(20, 62, 51, 0.24);
}

.xm-group-cluster {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(20, 47, 39, 0.14);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 20px 48px rgba(22, 45, 38, 0.07);
  overflow: hidden;
}

.xm-group-cluster::before {
  content: "";
  position: absolute;
  top: -36px;
  left: 50%;
  z-index: 2;
  width: 1px;
  height: 36px;
  background: rgba(20, 62, 51, 0.24);
}

.xm-group-cluster__media {
  position: relative;
  height: 190px;
  color: var(--xm-white);
  background: var(--xm-green);
  overflow: hidden;
}

.xm-group-cluster__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 23, 0.08), rgba(10, 28, 23, 0.83));
}

.xm-group-cluster__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.04);
  transition: transform 0.65s ease;
}

.xm-group-cluster:hover .xm-group-cluster__media img {
  transform: scale(1.035);
}

.xm-group-cluster__media > div {
  position: absolute;
  right: 24px;
  bottom: 20px;
  left: 24px;
  z-index: 1;
}

.xm-group-cluster__media span,
.xm-group-cluster__media small {
  display: block;
}

.xm-group-cluster__media span {
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.xm-group-cluster__media small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.xm-group-cluster__body {
  padding: clamp(24px, 3vw, 34px);
}

.xm-group-cluster__title,
.xm-group-cluster__title > div {
  display: flex;
  align-items: center;
}

.xm-group-cluster__title {
  justify-content: space-between;
  gap: 22px;
}

.xm-group-cluster__title > div {
  min-width: 0;
  gap: 15px;
}

.xm-group-cluster__title span {
  color: var(--xm-red);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.xm-group-cluster__title h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 550;
  line-height: 1.35;
}

.xm-group-cluster__title > b {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--xm-green);
  border: 1px solid rgba(20, 62, 51, 0.16);
  font-size: 10px;
  font-weight: 700;
}

.xm-group-cluster__description {
  margin: 18px 0 0;
  color: var(--xm-muted);
  font-size: 13px;
  line-height: 1.8;
}

.xm-company-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.xm-group-cluster--materials .xm-company-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.xm-company-node {
  min-width: 0;
  padding: 18px 18px 17px;
  border-left: 3px solid rgba(20, 62, 51, 0.46);
  background: #f2f5f2;
}

.xm-company-node--historical {
  border-left-color: rgba(103, 111, 107, 0.48);
  background: #f2f2f0;
}

.xm-company-node__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.xm-company-node__head span {
  color: var(--xm-red);
}

.xm-company-node__head b {
  padding: 4px 6px;
  color: var(--xm-green);
  background: rgba(20, 62, 51, 0.08);
  font-size: 8px;
  text-align: right;
}

.xm-company-node--historical .xm-company-node__head span,
.xm-company-node--historical .xm-company-node__head b {
  color: #777f7b;
}

.xm-company-node--historical .xm-company-node__head b {
  background: rgba(88, 96, 92, 0.1);
}

.xm-company-node h4 {
  margin: 12px 0 0;
  color: var(--xm-ink);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.xm-company-node p {
  margin: 10px 0 0;
  color: #65716d;
  font-size: 12px;
  line-height: 1.75;
}

.xm-company-node > small {
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  color: #7a837f;
  border-top: 1px solid rgba(20, 47, 39, 0.1);
  font-size: 11px;
  line-height: 1.7;
}

.xm-company-node__source,
.xm-group-cluster__credit {
  display: block;
  width: fit-content;
  color: var(--xm-green);
  font-size: 10px;
  font-weight: 700;
}

.xm-company-node__source {
  margin-top: 11px;
}

.xm-group-cluster__credit {
  margin-top: 18px;
  color: #7a837f;
}

.xm-group-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(20, 47, 39, 0.13);
  background: rgba(255, 255, 255, 0.72);
}

.xm-group-more p {
  max-width: 760px;
  margin: 0;
  color: var(--xm-muted);
  font-size: 13px;
  line-height: 1.75;
}

.xm-group-note {
  max-width: 960px;
  margin: 30px 0 0;
  padding-left: 18px;
  color: #65716d;
  border-left: 3px solid rgba(163, 30, 35, 0.58);
  font-size: 13px;
  line-height: 1.8;
}

.xm-section--group-compact .xm-group-core {
  max-width: 820px;
}

.xm-section--group-compact .xm-group-cluster__media {
  height: 135px;
}

.xm-section--group-compact .xm-group-cluster__body {
  padding: 24px;
}

.xm-section--group-compact .xm-company-list,
.xm-section--group-compact .xm-group-cluster--materials .xm-company-list {
  grid-template-columns: 1fr;
  margin-top: 18px;
}

.xm-section--group-compact .xm-company-node {
  padding: 14px 15px;
}

.xm-section--group-compact .xm-company-node h4 {
  margin-top: 9px;
  font-size: 14px;
}

.xm-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.xm-business-card {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--xm-white);
  background: var(--xm-ink-soft);
  overflow: hidden;
}

.xm-business-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 27, 23, 0.94), rgba(12, 27, 23, 0.14) 74%);
  z-index: 1;
}

.xm-business-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.xm-business-card:hover img {
  transform: scale(1.05);
}

.xm-business-card__body {
  position: relative;
  z-index: 2;
}

.xm-business-card__number {
  display: block;
  margin-bottom: 18px;
  color: var(--xm-gold);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.xm-business-card h3 {
  margin: 0 0 11px;
  font-size: 27px;
  font-weight: 500;
}

.xm-business-card p {
  min-height: 50px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.xm-business-card__link {
  display: inline-flex;
  margin-top: 24px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.xm-capability {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(420px, 0.85fr);
  min-height: 650px;
  background: var(--xm-white);
  box-shadow: var(--xm-shadow);
}

.xm-capability__image {
  min-height: 540px;
  background-position: center;
  background-size: cover;
}

.xm-capability__content {
  padding: clamp(42px, 6vw, 82px);
}

.xm-capability__content h2 {
  margin: 0 0 22px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.18;
}

.xm-capability__content > p {
  color: var(--xm-muted);
  font-size: 17px;
}

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

.xm-capability__list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid var(--xm-line);
}

.xm-capability__list b {
  color: var(--xm-red);
  font-family: Arial, sans-serif;
}

.xm-data-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
  background: var(--xm-green);
}

.xm-data-band article {
  min-height: 188px;
  padding: 34px;
  color: var(--xm-white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.xm-data-band article:last-child {
  border-right: 0;
}

.xm-data-band strong {
  display: block;
  font-size: clamp(31px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1;
}

.xm-data-band span {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.xm-sustainability {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.82fr);
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
}

.xm-sustainability__copy h2 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 78px);
  font-weight: 500;
  line-height: 1.12;
}

.xm-sustainability__copy p {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.xm-sustainability__panel {
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.xm-sustainability__panel article {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.xm-sustainability__panel article:last-child {
  border-bottom: 0;
}

.xm-sustainability__panel strong,
.xm-sustainability__panel span {
  display: block;
}

.xm-sustainability__panel strong {
  font-size: 19px;
}

.xm-sustainability__panel span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.xm-news-grid,
.xm-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.xm-news-card,
.xm-product-card {
  min-width: 0;
  background: var(--xm-white);
  border: 1px solid var(--xm-line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.xm-news-card:hover,
.xm-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--xm-shadow);
}

.xm-news-card__image,
.xm-product-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e6e8e4;
}

.xm-news-card__image img,
.xm-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.xm-news-card:hover img,
.xm-product-card:hover img {
  transform: scale(1.04);
}

.xm-news-card__body,
.xm-product-card__body {
  padding: 27px;
}

.xm-news-card time {
  color: var(--xm-red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.xm-news-card h3,
.xm-product-card h2 {
  margin: 13px 0 10px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.4;
}

.xm-news-card p,
.xm-product-card p {
  margin: 0;
  color: var(--xm-muted);
  font-size: 14px;
}

.xm-product-card .xm-product-card__summary {
  min-height: 66px;
  margin-top: 13px;
  line-height: 1.75;
}

.xm-news-card__more,
.xm-product-card__more {
  display: flex;
  justify-content: space-between;
  margin-top: 26px;
  padding-top: 15px;
  border-top: 1px solid var(--xm-line);
  color: var(--xm-green);
  font-size: 13px;
  font-weight: 700;
}

.xm-cta {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  color: var(--xm-white);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.xm-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 27, 23, 0.92), rgba(12, 27, 23, 0.46));
}

.xm-cta__content {
  position: relative;
  z-index: 1;
  width: var(--xm-container);
  margin-inline: auto;
}

.xm-cta h2 {
  max-width: 760px;
  margin: 0 0 28px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  line-height: 1.18;
}

.xm-inner-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: end;
  padding: 150px 0 74px;
  color: var(--xm-white);
  background-position: center;
  background-size: cover;
}

.xm-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 27, 23, 0.88), rgba(12, 27, 23, 0.28));
}

.xm-inner-hero__content {
  position: relative;
  z-index: 1;
  width: var(--xm-container);
  margin-inline: auto;
}

.xm-inner-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 500;
  line-height: 1.1;
}

.xm-inner-hero p {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.xm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.xm-prose {
  max-width: 920px;
  margin-inline: auto;
  color: #35423e;
  font-size: 18px;
  line-height: 2;
}

.xm-prose p,
.xm-prose li {
  color: inherit;
}

.xm-prose img {
  height: auto !important;
  margin: 34px auto;
  border-radius: var(--xm-radius);
}

.xm-prose h2,
.xm-prose h3 {
  margin: 48px 0 18px;
  color: var(--xm-ink);
  line-height: 1.35;
}

.xm-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.xm-product-detail__media {
  position: sticky;
  top: 110px;
}

.xm-product-detail__media > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #ecece7;
}

.xm-product-detail__content h1,
.xm-product-detail__content h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.12;
}

.xm-product-detail__subtitle {
  margin: 20px 0 0;
  color: var(--xm-red);
  font-size: 20px;
}

.xm-product-detail__content .xm-prose {
  margin-top: 38px;
  font-size: 16px;
}

.xm-product-introduction {
  margin-top: 34px;
}

.xm-product-introduction__lead {
  margin: 0;
  color: var(--xm-muted);
  font-size: 17px;
  line-height: 1.95;
}

.xm-product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.xm-product-highlights article {
  min-width: 0;
  padding: 20px 18px;
  background: var(--xm-off-white);
  border-top: 3px solid var(--xm-green);
}

.xm-product-highlights b {
  display: block;
  margin-bottom: 20px;
  color: var(--xm-red);
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.xm-product-highlights strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.xm-product-information {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.xm-product-information section {
  padding: 28px;
  border: 1px solid var(--xm-line);
}

.xm-product-information h3 {
  margin: 9px 0 18px;
  font-size: 21px;
  font-weight: 600;
}

.xm-product-information ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.xm-product-information li {
  position: relative;
  padding-left: 18px;
  color: var(--xm-muted);
  font-size: 14px;
  line-height: 1.65;
}

.xm-product-information li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--xm-red);
  border-radius: 50%;
  content: "";
}

.xm-product-source {
  margin: 26px 0 0;
  padding: 15px 18px;
  background: #f5f6f2;
  color: var(--xm-muted);
  font-size: 13px;
  line-height: 1.7;
}

.xm-product-source strong {
  color: var(--xm-ink);
}

.xm-product-notice {
  margin-top: 24px;
  padding: 24px 26px;
  background: var(--xm-green);
  color: var(--xm-white);
}

.xm-product-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.xm-product-notice p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.75;
}

.xm-product-actions {
  margin-top: 34px;
}

.xm-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.xm-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #ecece7;
}

.xm-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: clamp(48px, 9vw, 120px);
  align-items: start;
}

.xm-contact-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4.6vw, 64px);
  font-weight: 500;
  line-height: 1.18;
}

.xm-contact-copy > p {
  color: var(--xm-muted);
  font-size: 17px;
}

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

.xm-contact-list li {
  padding: 19px 0;
  border-bottom: 1px solid var(--xm-line);
}

.xm-contact-list span,
.xm-contact-list strong {
  display: block;
}

.xm-contact-list span {
  color: var(--xm-muted);
  font-size: 12px;
}

.xm-contact-list strong {
  margin-top: 4px;
  font-size: 17px;
}

.xm-contact-emails a {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--xm-green);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.xm-contact-emails a + a {
  margin-top: 5px;
}

.xm-contact-entity small {
  display: block;
  margin-top: 4px;
  color: var(--xm-muted);
  font-size: 12px;
  font-weight: 400;
}

.xm-contact-list .xm-contact-emails {
  margin-top: 10px;
  font-size: 14px;
}

.xm-contact-note {
  margin: 24px 0 0;
  padding: 16px 18px;
  color: #65716d;
  border-left: 3px solid rgba(163, 30, 35, 0.58);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px !important;
  line-height: 1.75;
}

.xm-form {
  padding: clamp(30px, 5vw, 58px);
  background: var(--xm-white);
  box-shadow: var(--xm-shadow);
}

.xm-form-notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  border-left: 4px solid;
  font-size: 14px;
  line-height: 1.65;
}

.xm-form-notice--success {
  background: #edf6ef;
  border-color: var(--xm-green);
  color: #285e38;
}

.xm-form-notice--error {
  background: #fff0ef;
  border-color: var(--xm-red);
  color: #8b3028;
}

.xm-form .form-group,
.xm-form .inquiry__item {
  margin-bottom: 23px;
}

.xm-form label,
.xm-form .inquiry__title {
  display: block;
  margin: 0 0 9px;
  color: var(--xm-ink);
  font-size: 13px;
  font-weight: 700;
}

.xm-form input[type="text"],
.xm-form input[type="email"],
.xm-form textarea,
.xm-form select,
.xm-form .inquiry__input,
.xm-form .inquiry__textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--xm-line);
  border-radius: 0;
  color: var(--xm-ink);
  background: #fafaf7;
  box-shadow: none;
}

.xm-form textarea,
.xm-form .inquiry__textarea {
  min-height: 150px;
  resize: vertical;
}

.xm-form input:focus,
.xm-form textarea:focus {
  outline: 2px solid rgba(31, 93, 74, 0.2);
  border-color: var(--xm-green);
}

.xm-form .inquiry__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-right: 24px;
  font-weight: 500;
}

.xm-form .submit-wrapper {
  margin-top: 28px;
}

.xm-form button,
.xm-form .c-button--submit {
  width: 100%;
  min-height: 56px;
  color: var(--xm-white);
  border: 0;
  border-radius: 0;
  background: var(--xm-red);
  font-size: 15px;
  font-weight: 700;
}

.xm-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  margin-top: 22px;
  color: var(--xm-muted);
  font-size: 13px;
}

.xm-article-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 60px;
}

.xm-article-nav a {
  padding: 22px;
  border: 1px solid var(--xm-line);
  background: var(--xm-white);
}

.xm-pagination,
.pagination {
  margin-top: 44px;
}

.pagination > li > a,
.pagination > li > span {
  color: var(--xm-ink);
  border-color: var(--xm-line);
  border-radius: 0 !important;
}

.xm-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #0f1b18;
}

.xm-footer__top {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(34px, 6vw, 90px);
  padding: 74px 0 56px;
}

.xm-footer__brand .xm-brand {
  color: var(--xm-white);
}

.xm-footer__brand > p {
  max-width: 420px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.xm-footer__column h3 {
  margin: 0 0 19px;
  color: var(--xm-white);
  font-size: 14px;
  font-weight: 700;
}

.xm-footer__column a,
.xm-footer__column span {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.xm-footer__column a:hover {
  color: var(--xm-white);
}

.xm-footer__entities span {
  margin-bottom: 15px;
}

.xm-footer__entities strong,
.xm-footer__entities small {
  display: block;
}

.xm-footer__entities strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.xm-footer__entities small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  line-height: 1.55;
}

.xm-footer__entities .xm-footer__matrix-link {
  width: fit-content;
  margin-top: 20px;
  padding-bottom: 4px;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 12px;
  font-weight: 700;
}

.xm-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.xm-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
  :root {
    --xm-container: min(100% - 44px, 1080px);
  }

  .xm-nav {
    gap: 18px;
    font-size: 14px;
  }

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

  .xm-group-cluster--materials .xm-company-list {
    grid-template-columns: 1fr;
  }

  .xm-group-core__content {
    gap: 28px;
  }

  .xm-capability,
  .xm-sustainability,
  .xm-contact-grid,
  .xm-product-detail {
    grid-template-columns: 1fr;
  }

  .xm-product-detail__media {
    position: relative;
    top: auto;
    max-width: 680px;
  }

  .xm-product-card .xm-product-card__summary {
    min-height: 0;
  }
}

@media (max-width: 860px) {
  :root {
    --xm-container: calc(100% - 36px);
  }

  .xm-header,
  .xm-header.is-solid,
  .xm-header.xm-header--inner {
    height: 70px;
  }

  .xm-brand__mark {
    width: 44px;
    height: 44px;
  }

  .xm-brand__name strong {
    font-size: 17px;
  }

  .xm-brand__name small {
    font-size: 8px;
  }

  .xm-menu-toggle {
    display: block;
  }

  .xm-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: none;
    max-height: calc(100vh - 70px);
    padding: 22px 18px 32px;
    color: var(--xm-ink);
    background: var(--xm-paper);
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(20, 32, 29, 0.18);
  }

  .xm-nav.is-open {
    display: grid;
    gap: 4px;
  }

  .xm-nav > a,
  .xm-nav__group > button {
    width: 100%;
    min-height: 52px;
    justify-content: space-between;
    padding: 0 4px;
    border-bottom: 1px solid var(--xm-line);
  }

  .xm-nav__dropdown {
    position: static;
    width: 100%;
    padding: 0 0 8px 16px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
  }

  .xm-nav__dropdown a {
    min-height: 44px;
    padding: 8px 4px;
  }

  .xm-lang {
    margin-top: 14px;
    width: fit-content;
    color: var(--xm-ink);
  }

  .xm-hero {
    min-height: 780px;
    height: auto;
  }

  .xm-hero__content {
    padding: 130px 0 250px;
  }

  .xm-hero__facts {
    grid-template-columns: 1fr;
  }

  .xm-hero__fact {
    min-height: 72px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .xm-hero__fact:last-child {
    border-bottom: 0;
  }

  .xm-hero__fact strong {
    font-size: 16px;
  }

  .xm-intro {
    grid-template-columns: 1fr;
  }

  .xm-intro__mark {
    position: static;
  }

  .xm-group-core__content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .xm-group-categories {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .xm-group-categories::before,
  .xm-group-categories::after,
  .xm-group-cluster::before {
    display: none;
  }

  .xm-data-band,
  .xm-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 600px) {
  :root {
    --xm-container: calc(100% - 28px);
  }

  .xm-brand__name small {
    display: none;
  }

  .xm-hero {
    background-position: 63% center;
  }

  .xm-hero::before {
    background: linear-gradient(180deg, rgba(11, 27, 23, 0.84), rgba(11, 27, 23, 0.54));
  }

  .xm-hero h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .xm-hero__lead {
    font-size: 16px;
  }

  .xm-actions,
  .xm-actions .xm-button {
    width: 100%;
  }

  .xm-section__head {
    display: block;
  }

  .xm-section__head p:last-child {
    margin-top: 20px;
  }

  .xm-feature-list,
  .xm-business-grid,
  .xm-data-band,
  .xm-news-grid,
  .xm-product-grid,
  .xm-footer__top,
  .xm-article-nav {
    grid-template-columns: 1fr;
  }

  .xm-group-core {
    padding: 28px 23px;
  }

  .xm-group-core__eyebrow,
  .xm-group-more {
    align-items: flex-start;
    flex-direction: column;
  }

  .xm-group-core__stats {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .xm-group-core__stats span,
  .xm-group-core__stats span + span {
    padding: 11px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .xm-group-core__stats span:last-child {
    border-bottom: 0;
  }

  .xm-group-cluster__media {
    height: 155px;
  }

  .xm-group-cluster__media > div {
    right: 18px;
    bottom: 17px;
    left: 18px;
  }

  .xm-group-cluster__body,
  .xm-section--group-compact .xm-group-cluster__body {
    padding: 22px 18px;
  }

  .xm-company-node__head {
    align-items: flex-start;
  }

  .xm-group-more {
    padding: 22px;
  }

  .xm-group-more .xm-button {
    width: 100%;
  }

  .xm-business-card {
    min-height: 360px;
  }

  .xm-capability__image {
    min-height: 330px;
  }

  .xm-capability__content,
  .xm-sustainability__panel {
    padding: 30px 24px;
  }

  .xm-data-band article {
    min-height: 130px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .xm-inner-hero {
    min-height: 450px;
    padding-bottom: 54px;
  }

  .xm-footer__bottom {
    display: grid;
  }

  .xm-gallery {
    grid-template-columns: 1fr;
  }

  .xm-product-highlights,
  .xm-product-information {
    grid-template-columns: 1fr;
  }

  .xm-product-highlights {
    gap: 10px;
  }

  .xm-product-information section {
    padding: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .xm-reveal {
    opacity: 1;
    transform: none;
  }
}
