@charset "UTF-8";
:root {
  --paper: #f6f7f4;
  --white: #fff;
  --ink: #173b35;
  --muted: #65756f;
  --line: #dce3dd;
  --green: #195c4f;
  --mint: #d5e7bb;
  --coral: #deaa8d;
  --max: 1240px;
  font-family:
    Inter,
    "PingFang SC",
    "Microsoft YaHei",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #b6754e;
  outline-offset: 5px;
}
img,
svg {
  display: block;
  max-width: 100%;
}
figure {
  margin: 0;
}
p {
  line-height: 1.85;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-weight: 600;
  letter-spacing: -0.035em;
}
::selection {
  background: var(--mint);
  color: var(--ink);
}
.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.skip {
  position: absolute;
  z-index: 100;
  top: -100px;
  left: 20px;
  padding: 14px;
  background: #fff;
}
.skip:focus {
  top: 14px;
}
.site-header {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand img {
  width: 40px;
  height: 40px;
}
.brand-cn {
  font-size: 25px;
  letter-spacing: 0.12em;
  font-weight: 650;
}
.brand-en {
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  font-size: 13px;
}
.nav a {
  padding: 10px 0;
  white-space: nowrap;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 7px;
}
.nav .nav-contact {
  padding: 12px 19px;
  border: 1px solid #b9c7c0;
  border-radius: 5px;
  display: flex;
  gap: 22px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 19px;
  line-height: 1.6;
}
.eyebrow.light {
  color: #c4dcb9;
}
.status-dot,
.dot {
  width: 6px;
  height: 6px;
  display: inline-block;
  border-radius: 50%;
  background: #c1d89e;
  flex: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #103e35;
  transform: translateY(-2px);
}
.button > span {
  font-size: 20px;
  line-height: 1;
}
.button-light {
  background: #dce8c5;
  color: #173a30;
}
.button-light:hover {
  background: #ebf2df;
}
.actions {
  display: flex;
  align-items: center;
  gap: 27px;
  flex-wrap: wrap;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  border-bottom: 1px solid #adbfb3;
  padding: 10px 0;
}
.text-link:hover {
  border-color: var(--green);
}
.arrow {
  font-size: 20px;
}
.small-note {
  font-size: 11px;
  color: var(--muted);
}
/* Brand introduction */
.brand-hero {
  background: #163f35;
  color: #f4f6ee;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(
    ellipse at 90% 10%,
    #52755b4d,
    transparent 56%
  );
}
.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 52px;
  padding-bottom: 34px;
  min-height: 557px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-copy h1 {
  font-size: clamp(35px, 3.55vw, 51px);
  line-height: 1.44;
  letter-spacing: -0.055em;
  margin: 0 0 22px;
}
.hero-accent {
  color: #d8e6bd;
}
.hero-description {
  font-size: 15px;
  color: #c5d5cd;
  line-height: 1.9;
  margin-bottom: 28px;
}
.hero-link {
  color: #e0e9dd;
  font-size: 12px;
  display: flex;
  gap: 16px;
}
.hero-link:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.hero-details {
  display: flex;
  gap: 0;
  margin-top: 40px;
}
.hero-details > div {
  padding-right: 30px;
}
.hero-details > div + div {
  padding-left: 30px;
  border-left: 1px solid #577266;
}
.hero-details span {
  display: block;
  font-size: 9px;
  letter-spacing: 0.13em;
  color: #a7c2b4;
  margin-bottom: 8px;
}
.hero-details strong {
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.07em;
}
.hero-gallery {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-topline {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  letter-spacing: 0.1em;
  color: #b0c9bb;
  margin-bottom: 12px;
  padding-inline: 18px;
}
.gallery-composition {
  position: relative;
  height: 384px;
  isolation: isolate;
}
.gallery-card {
  position: absolute;
  background: #edf0e5;
  padding: 8px 8px 0;
  box-shadow: 0 14px 30px #051e2840;
  border-radius: 3px;
  overflow: hidden;
  transform-origin: center bottom;
}
.gallery-card > img {
  width: 100%;
  height: calc(100% - 31px);
  object-fit: cover;
}
.gallery-card > span {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #294f40;
  letter-spacing: 0.06em;
  height: 31px;
  align-items: center;
  white-space: nowrap;
}
.gallery-card > span b {
  font-weight: 400;
}
.gallery-card-front {
  height: 324px;
  width: 240px;
  left: 50%;
  top: 16px;
  transform: translateX(-50%) rotate(-5deg);
  z-index: 2;
}
.gallery-card-back {
  height: 270px;
  width: 202px;
  left: 5%;
  top: 47px;
  transform: rotate(-15deg);
  z-index: 1;
}
.gallery-card-side {
  height: 280px;
  width: 206px;
  right: 5%;
  top: 55px;
  transform: rotate(13deg);
}
.art-signature {
  position: absolute;
  top: 52%;
  left: 0;
  right: 0;
  text-align: center;
  color: #fcfae7;
  font-family: "Songti SC", STSong, serif;
  font-size: 33px;
  letter-spacing: 0.3em;
  text-shadow: 0 2px 14px #173b3570;
}
.art-signature small {
  display: block;
  font: 7px/2 sans-serif;
  letter-spacing: 0.2em;
  margin-top: 8px;
}
.flow-slip {
  position: absolute;
  z-index: 3;
  bottom: 3px;
  right: 6px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #f6f5eb;
  color: var(--ink);
  box-shadow: 0 14px 25px #05251c35;
  border-radius: 4px;
  width: 280px;
  transform: rotate(3deg);
}
.flow-symbol {
  font-size: 32px;
  color: #527255;
}
.flow-slip strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.01em;
}
.flow-slip small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 6px;
}
.slip-arrow {
  margin-left: auto;
  font-size: 20px;
}
.hero-gallery figcaption {
  font-size: 9px;
  color: #b7cabe;
  text-align: right;
  margin-top: 16px;
  padding-right: 2px;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0 21px;
  border-top: 1px solid #49675a;
  font-size: 10px;
  color: #b6cbbd;
  letter-spacing: 0.035em;
}
.hero-bottom > span:last-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.overview-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  padding-block: 28px;
}
.overview-strip > div {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-left: 38px;
  border-left: 1px solid var(--line);
}
.overview-strip > div:first-child {
  padding-left: 0;
  border-left: 0;
}
.overview-index {
  font:
    italic 24px Georgia,
    serif;
  color: #72907f;
}
.overview-strip p {
  margin: 0;
  line-height: 1.8;
}
.overview-strip strong {
  font-size: 14px;
  font-weight: 550;
  display: block;
}
.overview-strip p > span {
  font-size: 11px;
  color: var(--muted);
}
/* Product presentation */
.section {
  padding-block: 76px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 44px;
  margin-bottom: 34px;
}
h2 {
  font-size: 32px;
  line-height: 1.45;
  letter-spacing: -0.04em;
}
.section-heading h2 {
  margin: 0;
}
.section-heading > p {
  max-width: 340px;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.9;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.product-card {
  border: 1px solid var(--line);
  background: #fff;
  min-width: 0;
  border-radius: 9px;
  overflow: hidden;
}
.product-card-top {
  padding: 23px 27px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.label {
  font-size: 10px;
  border: 1px solid #c9d8cb;
  border-radius: 3px;
  padding: 4px 9px;
  letter-spacing: 0;
}
.discovery-card {
  background: #edf1e8;
}
.collection-preview {
  height: 249px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  overflow: hidden;
  padding: 23px 25px 12px;
}
.collection-preview > div {
  width: 126px;
  padding: 5px 5px 0;
  background: #fcfdf8;
  border-radius: 3px;
  box-shadow: 0 10px 20px #284b2b18;
  transform: rotate(-8deg);
}
.collection-preview > div:nth-child(2) {
  transform: translateY(-8px);
  z-index: 1;
}
.collection-preview > div:nth-child(3) {
  transform: rotate(8deg);
}
.collection-preview img {
  width: 100%;
  height: 157px;
  object-fit: cover;
}
.collection-preview span {
  display: block;
  text-align: center;
  padding: 10px 0;
  font-size: 7px;
  letter-spacing: 0.15em;
}
.product-copy {
  padding: 12px 29px 24px;
}
.product-copy h3 {
  font-size: 28px;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 15px;
}
.product-copy h3 > span {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  color: #586b60;
}
.product-copy > p {
  font-size: 13px;
  color: #566b5f;
  line-height: 1.9;
  margin-bottom: 20px;
}
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 11px;
  color: #56685b;
}
.feature-list li {
  display: flex;
  gap: 16px;
  border-top: 1px solid #d4ded1;
  padding: 12px 0;
  line-height: 1.6;
}
.feature-list li > span {
  color: #234435;
  min-width: 96px;
  font-size: 12px;
}
.product-footnote {
  font-size: 9px;
  color: #56685b;
  margin-top: 12px;
}
.workshop-card {
  background: #f5f1e8;
}
.workshop-card .label {
  border-color: #d9d1c4;
}
.workshop-card .feature-list li {
  border-color: #e0d9cd;
}
.editor-preview {
  height: 222px;
  margin: 20px 27px 7px;
  border: 1px solid #b9c3b8;
  border-radius: 5px;
  background: #e9ede4;
  overflow: hidden;
  box-shadow: 0 6px 20px #233d3514;
}
.editor-bar {
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  font-size: 8px;
  color: #5b6b5e;
  background: #fbfcf8;
  border-bottom: 1px solid #d2dbcf;
}
.editor-bar > span:first-child {
  display: flex;
  gap: 3px;
}
.editor-bar i {
  height: 4px;
  width: 4px;
  border-radius: 50%;
  background: #b7c4b7;
}
.editor-body {
  height: 159px;
  display: grid;
  grid-template-columns: 33px 1fr 113px;
}
.editor-tools {
  background: #f8faf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding-top: 13px;
  border-right: 1px solid #d4ded1;
  color: #556e5c;
}
.editor-tools b {
  font-size: 11px;
  font-weight: 400;
}
.editor-canvas {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(#d3dacd50 1px, transparent 1px),
    linear-gradient(90deg, #d3dacd50 1px, transparent 1px);
  background-size: 15px 15px;
}
.editor-canvas > img {
  height: 138px;
  width: 115px;
  object-fit: cover;
  object-position: center 60%;
}
.selection-mark {
  position: absolute;
  top: 58px;
  left: 50%;
  transform: translateX(-50%);
  border: 1px solid #e8f8c3;
  padding: 8px 13px;
  color: #fffdf0;
  white-space: nowrap;
  font:
    21px "Songti SC",
    STSong,
    serif;
  letter-spacing: 0.15em;
  text-align: center;
}
.selection-mark small {
  display: block;
  font: 5px sans-serif;
  letter-spacing: 0.2em;
  margin-top: 6px;
}
.selection-mark i {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #f8ffeb;
  border: 1px solid #6c8b59;
  top: -3px;
  left: -3px;
}
.selection-mark i:nth-of-type(2) {
  left: auto;
  right: -3px;
}
.selection-mark i:nth-of-type(3) {
  top: auto;
  bottom: -3px;
}
.selection-mark i:nth-of-type(4) {
  left: auto;
  right: -3px;
  top: auto;
  bottom: -3px;
}
.editor-layers {
  background: #f9faf5;
  padding: 11px 8px;
  border-left: 1px solid #d4ded1;
  font-size: 7px;
  color: #5e705f;
}
.editor-layers > small {
  font-size: 7px;
  display: block;
  margin-bottom: 8px;
}
.editor-layers > span {
  display: block;
  border: 1px solid #dce3d6;
  padding: 5px;
  margin-bottom: 4px;
  border-radius: 2px;
}
.editor-layers b {
  font-weight: 400;
  margin-right: 5px;
}
.editor-layers > div {
  line-height: 1.6;
  margin-top: 8px;
  color: #899381;
  font-size: 7px;
}
.editor-timeline {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 8px;
  background: #f9faf4;
  border-top: 1px solid #d1dccb;
}
.editor-timeline i {
  font-style: normal;
  color: #9caf9a;
}
.editor-timeline strong {
  font-weight: 400;
  color: #315837;
  background: #e3edcf;
  padding: 4px 7px;
  border-radius: 3px;
}
/* Audience and product journey */
.ecosystem-section {
  padding-block: 63px;
  background: #e9ede6;
  border-block: 1px solid #dce3d8;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.audience-grid article {
  border-top: 1px solid #adbdae;
  padding-top: 23px;
  position: relative;
}
.audience-icon {
  float: right;
  font-size: 32px;
  color: #436651;
  margin-top: 5px;
}
.audience-en {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #667b66;
}
.audience-grid h3 {
  font-size: 20px;
  margin: 11px 0 15px;
}
.audience-grid p {
  font-size: 13px;
  color: #62715f;
  margin-bottom: 20px;
  max-width: 330px;
}
.audience-grid a {
  font-size: 11px;
  display: flex;
  gap: 27px;
  align-items: center;
}
.audience-grid a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.journey-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 90px;
  align-items: start;
}
.journey-intro h2 {
  margin-bottom: 20px;
}
.journey-intro > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 25px;
}
.journey-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.journey-list li {
  display: flex;
  gap: 23px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.journey-list li:first-child {
  padding-top: 0;
}
.journey-list li > span {
  font:
    italic 24px Georgia,
    serif;
  color: #78917c;
  line-height: 1.3;
}
.journey-list h3 {
  font-size: 16px;
  margin-bottom: 7px;
}
.journey-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.company-section {
  background: #fff;
  border-block: 1px solid var(--line);
  padding-block: 55px;
}
.company-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.company-art {
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: #366959;
}
.company-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  filter: brightness(0.64) saturate(0.7);
}
.company-art > span {
  position: absolute;
  left: 28px;
  top: 27px;
  font-size: clamp(25px, 3.1vw, 40px);
  font-weight: 500;
  line-height: 1.3;
  color: #f0f2dc;
  letter-spacing: -0.055em;
}
.company-art i {
  font-family: Georgia, serif;
  font-weight: 400;
}
.company-art small {
  position: absolute;
  bottom: 23px;
  left: 29px;
  font-size: 10px;
  color: #e0e9d7;
  letter-spacing: 0.18em;
}
.company-copy h2 {
  font-size: 30px;
  margin-bottom: 18px;
}
.company-copy > p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.company-facts {
  font-size: 11px;
  margin: 0 0 17px;
}
.company-facts > div {
  display: grid;
  grid-template-columns: 73px 1fr;
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  line-height: 1.6;
}
.company-facts dt {
  color: var(--muted);
}
.company-facts dd {
  margin: 0;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
.faq-section h2 {
  font-size: 29px;
  margin-bottom: 26px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 28px 20px 0;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 18px;
  font-size: 22px;
  font-weight: 300;
  color: #4d715a;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.95;
  margin: 0 25px 21px 0;
}
.contact-cta {
  background: #214e40;
  padding: 43px 0;
  color: #f5f6ed;
}
.contact-cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact-cta .eyebrow {
  font-size: 9px;
  margin-bottom: 11px;
}
.contact-cta h2 {
  font-size: 26px;
  margin-bottom: 10px;
}
.contact-cta p {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #b7cabb;
  margin: 0;
}
/* Site footer and inner pages */
.footer {
  background: #f0f2eb;
  padding: 45px 0 23px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 60px;
  padding-bottom: 34px;
}
.footer-brand p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 17px;
  margin-bottom: 9px;
}
.footer-company {
  font-size: 10px;
  color: var(--muted);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1.45fr;
  gap: 30px;
  font-size: 11px;
  padding-top: 5px;
  color: #56685b;
}
.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.footer-links strong {
  font-weight: 550;
  color: #234836;
  margin-bottom: 5px;
}
.footer-links a:hover,
.footer-record a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  border-top: 1px solid #d6dfd1;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #56685b;
  font-size: 9px;
  line-height: 1.8;
}
.footer-bottom p {
  margin: 0;
}
.footer-record {
  margin: 10px 0 0;
  color: #56685b;
  font-size: 12px;
  line-height: 1.8;
}
.footer .brand-cn {
  font-size: 21px;
}
.footer .brand img {
  width: 34px;
  height: 34px;
}
.footer .brand-en {
  font-size: 8px;
}
.page-intro {
  padding: 57px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-intro h1 {
  font-size: clamp(31px, 3.5vw, 46px);
  line-height: 1.45;
  margin-bottom: 20px;
  max-width: 860px;
}
.page-intro p {
  font-size: 14px;
  max-width: 720px;
  color: var(--muted);
  margin-bottom: 0;
}
.subpage {
  padding-block: 48px 76px;
}
.content-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 57px;
}
.content-aside {
  font-size: 12px;
  line-height: 2;
  color: var(--muted);
  padding: 24px;
  background: #e9eee5;
  border-top: 2px solid #4c735b;
  border-radius: 2px;
  height: fit-content;
}
.content-aside strong {
  display: block;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 10px;
}
.prose {
  max-width: 780px;
  min-width: 0;
}
.prose h2 {
  font-size: 25px;
  line-height: 1.5;
  margin: 0 0 20px;
}
.prose h3 {
  font-size: 18px;
  margin: 25px 0 12px;
}
.prose p,
.prose li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.95;
}
.prose ul {
  padding-left: 20px;
}
.prose > section + section {
  border-top: 1px solid var(--line);
  margin-top: 33px;
  padding-top: 33px;
}
.prose a:not(.button) {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}
.info-card {
  background: #eaf0e3;
  border-left: 2px solid #94af83;
  border-radius: 2px;
  padding: 23px;
  margin: 25px 0;
}
.info-card p:last-child {
  margin: 0;
}
.info-card strong {
  font-weight: 600;
  color: var(--ink);
}
.email-large {
  font-size: clamp(20px, 3vw, 32px) !important;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.support-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}
.support-option {
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 23px;
  background: #fff;
}
.support-option h3 {
  margin-top: 0;
}
.support-option p {
  font-size: 13px;
  margin-bottom: 0;
}
.page-status {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #c5d1c2;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--green);
  margin-bottom: 22px;
}
.page-status .dot {
  background: #6c8c51;
}
.legal-date {
  font-size: 12px !important;
}
.not-found {
  text-align: center;
  padding: 80px 0;
}
.not-found .eyebrow {
  justify-content: center;
}
.not-found h1 {
  font-size: 38px;
}
.not-found p {
  color: var(--muted);
  margin-bottom: 30px;
}
@media (min-width: 1500px) {
  .hero-layout {
    min-height: 588px;
  }
  .gallery-composition {
    height: 400px;
  }
  .gallery-card-front {
    width: 253px;
    height: 342px;
  }
  .gallery-card-back {
    width: 213px;
    height: 286px;
  }
  .gallery-card-side {
    width: 215px;
    height: 296px;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 20px;
    font-size: 12px;
  }
  .hero-copy h1 {
    font-size: 36px;
  }
  .hero-layout {
    gap: 19px;
  }
  .gallery-composition {
    height: 348px;
  }
  .gallery-card-front {
    width: 202px;
    height: 280px;
    top: 26px;
  }
  .gallery-card-back {
    width: 167px;
    height: 233px;
    top: 54px;
  }
  .gallery-card-side {
    width: 174px;
    height: 241px;
    top: 65px;
  }
  .flow-slip {
    width: 249px;
    bottom: 0;
    padding: 14px 15px;
    right: 0;
  }
  .gallery-topline {
    font-size: 7px;
    padding-inline: 6px;
  }
  .overview-strip > div {
    padding-left: 22px;
    gap: 14px;
  }
  .overview-strip p > span {
    font-size: 10px;
  }
  .product-card-top {
    padding-inline: 22px;
    font-size: 8px;
  }
  .collection-preview {
    gap: 10px;
  }
  .collection-preview > div {
    width: 108px;
  }
  .collection-preview img {
    height: 148px;
  }
  .product-copy {
    padding-inline: 22px;
  }
  .product-copy h3 {
    font-size: 25px;
    gap: 10px;
  }
  .product-copy h3 > span {
    font-size: 11px;
  }
  .editor-preview {
    margin-inline: 22px;
  }
  .editor-body {
    grid-template-columns: 30px 1fr 95px;
  }
  .journey-section {
    gap: 55px;
  }
  .company-layout,
  .faq-section {
    gap: 43px;
  }
  .company-copy h2 {
    font-size: 27px;
  }
  .footer-top {
    gap: 30px;
  }
  .footer-links {
    gap: 20px;
  }
  .footer-links a {
    overflow-wrap: anywhere;
  }
  .content-grid {
    grid-template-columns: 210px 1fr;
    gap: 35px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    padding-block: 17px;
    min-height: 80px;
    flex-wrap: wrap;
    gap: 17px;
  }
  .brand-cn {
    font-size: 22px;
  }
  .brand img {
    width: 35px;
    height: 35px;
  }
  .brand-en {
    font-size: 7px;
  }
  .nav {
    gap: 20px;
    font-size: 11px;
  }
  .nav .nav-contact {
    padding: 8px 12px;
    gap: 12px;
  }
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-top: 40px;
    min-height: 475px;
  }
  .hero-copy h1 {
    font-size: 30px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-copy .actions {
    gap: 16px;
  }
  .hero-copy .button {
    font-size: 11px;
    gap: 18px;
    padding: 12px 15px;
    min-height: 42px;
  }
  .hero-link {
    font-size: 10px;
    gap: 9px;
  }
  .hero-details {
    margin-top: 27px;
  }
  .hero-details > div {
    padding-right: 18px;
  }
  .hero-details > div + div {
    padding-left: 18px;
  }
  .hero-details strong {
    font-size: 11px;
  }
  .hero-details span {
    font-size: 7px;
  }
  .gallery-topline > span:last-child {
    display: none;
  }
  .gallery-card-front {
    width: 171px;
    height: 248px;
    top: 38px;
  }
  .gallery-card-back {
    width: 136px;
    height: 209px;
    top: 65px;
    left: 1%;
  }
  .gallery-card-side {
    width: 137px;
    height: 217px;
    top: 65px;
    right: 0;
  }
  .gallery-card > span {
    font-size: 6px;
  }
  .gallery-composition {
    height: 323px;
  }
  .flow-slip {
    width: 223px;
    gap: 10px;
    padding: 12px;
  }
  .flow-slip strong {
    font-size: 12px;
  }
  .flow-slip small {
    font-size: 8px;
  }
  .hero-gallery figcaption {
    font-size: 8px;
  }
  .hero-bottom {
    font-size: 9px;
    gap: 15px;
  }
  .overview-strip {
    padding-block: 22px;
  }
  .overview-strip > div {
    gap: 11px;
    padding-left: 15px;
  }
  .overview-strip p > span {
    font-size: 9px;
  }
  .overview-index {
    font-size: 20px;
  }
  .overview-strip strong {
    font-size: 12px;
  }
  .section {
    padding-block: 57px;
  }
  .section-heading {
    gap: 30px;
    align-items: flex-start;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading > p {
    max-width: 275px;
    font-size: 12px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 16px;
  }
  .product-grid {
    gap: 17px;
  }
  .product-card-top {
    padding-inline: 18px;
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .label {
    font-size: 9px;
    padding: 3px 6px;
  }
  .product-copy {
    padding-inline: 18px;
  }
  .product-copy h3 {
    display: block;
    font-size: 24px;
  }
  .product-copy h3 > span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
  }
  .product-copy > p {
    font-size: 12px;
  }
  .feature-list li {
    display: block;
    padding: 10px 0;
    font-size: 10px;
  }
  .feature-list li > span {
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
  }
  .collection-preview {
    height: 219px;
    padding: 20px 17px 9px;
    gap: 7px;
  }
  .collection-preview > div {
    width: 88px;
    padding: 4px 4px 0;
  }
  .collection-preview img {
    height: 122px;
  }
  .collection-preview span {
    font-size: 6px;
    padding: 8px 0;
  }
  .editor-preview {
    height: 195px;
    margin: 17px 18px 7px;
  }
  .editor-body {
    height: 134px;
    grid-template-columns: 25px 1fr 77px;
  }
  .editor-canvas > img {
    height: 116px;
    width: 94px;
  }
  .editor-tools {
    gap: 11px;
  }
  .editor-layers {
    padding: 8px 5px;
    font-size: 6px;
  }
  .editor-layers > div {
    font-size: 6px;
  }
  .selection-mark {
    top: 45px;
    font-size: 16px;
    padding: 7px;
  }
  .editor-timeline {
    gap: 7px;
    font-size: 7px;
  }
  .ecosystem-section {
    padding-block: 50px;
  }
  .audience-grid {
    gap: 24px;
  }
  .audience-grid h3 {
    font-size: 17px;
  }
  .audience-grid p {
    font-size: 12px;
  }
  .audience-icon {
    font-size: 25px;
  }
  .audience-en {
    font-size: 8px;
  }
  .journey-section {
    gap: 38px;
    grid-template-columns: 0.85fr 1fr;
  }
  .journey-intro h2 {
    font-size: 27px;
  }
  .journey-intro > p {
    font-size: 12px;
  }
  .journey-list h3 {
    font-size: 14px;
  }
  .journey-list p {
    font-size: 11px;
  }
  .journey-list li {
    gap: 17px;
  }
  .company-layout {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .company-art {
    height: 324px;
  }
  .company-art > span {
    left: 20px;
    font-size: 26px;
  }
  .company-copy h2 {
    font-size: 25px;
  }
  .company-copy > p {
    font-size: 12px;
  }
  .company-facts > div {
    grid-template-columns: 61px 1fr;
    gap: 10px;
    font-size: 10px;
  }
  .faq-section {
    gap: 30px;
    grid-template-columns: 0.8fr 1.2fr;
  }
  .faq-section h2 {
    font-size: 25px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .contact-cta h2 {
    font-size: 22px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr 1.4fr;
    font-size: 11px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 8px;
  }
  .content-grid {
    grid-template-columns: 180px 1fr;
    gap: 28px;
  }
  .content-aside {
    padding: 18px;
    font-size: 11px;
  }
  .support-options {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .site-header {
    gap: 15px;
    padding-block: 16px 12px;
  }
  .brand-cn {
    font-size: 21px;
  }
  .brand-en {
    font-size: 7px;
    letter-spacing: 0.18em;
  }
  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 10px;
    border-top: 1px solid var(--line);
    padding-top: 6px;
  }
  .nav .nav-contact {
    border: 0;
    padding: 9px 0;
    gap: 5px;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 33px;
    padding-bottom: 22px;
    gap: 24px;
  }
  .hero-copy h1 {
    font-size: clamp(30px, 7.5vw, 42px);
    line-height: 1.42;
    margin-bottom: 18px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 17px;
  }
  .hero-description {
    font-size: 13px;
    line-height: 1.85;
    margin-bottom: 22px;
  }
  .hero-copy .button {
    font-size: 12px;
    padding: 13px 20px;
    min-height: 45px;
    gap: 24px;
  }
  .hero-copy .actions {
    gap: 22px;
  }
  .hero-link {
    font-size: 11px;
  }
  .hero-details {
    margin-top: 25px;
  }
  .hero-details strong {
    font-size: 11px;
  }
  .hero-details span {
    font-size: 8px;
  }
  .hero-details > div {
    padding-right: 27px;
  }
  .hero-details > div + div {
    padding-left: 27px;
  }
  .hero-gallery {
    width: 100%;
    max-width: 400px;
    margin-inline: auto;
    border-top: 1px solid #4b695a;
    padding-top: 20px;
  }
  .gallery-topline {
    font-size: 7px;
    padding-inline: 3px;
  }
  .gallery-topline > span:last-child {
    display: block;
  }
  .gallery-composition {
    height: 319px;
    width: 100%;
  }
  .gallery-card-front {
    height: 269px;
    width: 194px;
    top: 13px;
  }
  .gallery-card-back {
    height: 219px;
    width: 161px;
    top: 49px;
    left: 22px;
    transform: rotate(-8deg);
  }
  .gallery-card-side {
    height: 231px;
    width: 168px;
    top: 45px;
    right: 24px;
    transform: rotate(8deg);
  }
  .art-signature {
    font-size: 29px;
  }
  .flow-slip {
    bottom: 0;
    right: 8px;
    width: 233px;
    padding: 13px 14px;
  }
  .hero-gallery figcaption {
    font-size: 8px;
    margin-top: 11px;
  }
  .hero-bottom {
    font-size: 8px;
    padding: 16px 0;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 9px;
  }
  .overview-strip {
    padding-block: 20px;
    gap: 0;
  }
  .overview-strip > div {
    display: block;
    padding-left: 14px;
  }
  .overview-index {
    font-size: 18px;
    display: block;
    margin-bottom: 6px;
  }
  .overview-strip strong {
    font-size: 12px;
  }
  .overview-strip p > span {
    font-size: 9px;
    display: block;
    line-height: 1.65;
    max-width: 92px;
    margin-top: 4px;
  }
  .section {
    padding-block: 44px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading h2 {
    font-size: 27px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 12px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card-top {
    padding: 20px 21px 0;
    font-size: 8px;
  }
  .label {
    font-size: 10px;
  }
  .collection-preview {
    height: 234px;
    gap: 10px;
    padding: 23px 24px 9px;
  }
  .collection-preview > div {
    width: 100px;
  }
  .collection-preview img {
    height: 140px;
  }
  .collection-preview span {
    font-size: 6px;
  }
  .product-copy {
    padding: 10px 23px 23px;
  }
  .product-copy h3 {
    display: flex;
    align-items: baseline;
    font-size: 27px;
    gap: 14px;
  }
  .product-copy h3 > span {
    display: inline;
    font-size: 12px;
    margin: 0;
  }
  .product-copy > p {
    font-size: 12px;
  }
  .feature-list li {
    display: flex;
    font-size: 10px;
    gap: 13px;
    padding: 11px 0;
  }
  .feature-list li > span {
    margin: 0;
    min-width: 88px;
  }
  .product-footnote {
    font-size: 9px;
  }
  .editor-preview {
    height: 212px;
    margin: 20px 22px 12px;
  }
  .editor-body {
    height: 151px;
    grid-template-columns: 29px 1fr 89px;
  }
  .editor-canvas > img {
    height: 130px;
    width: 106px;
  }
  .selection-mark {
    top: 54px;
    font-size: 19px;
  }
  .editor-layers {
    font-size: 7px;
    padding: 9px 6px;
  }
  .editor-layers > small {
    font-size: 7px;
  }
  .editor-layers > span {
    padding: 5px;
  }
  .editor-layers > div {
    font-size: 7px;
  }
  .editor-timeline {
    font-size: 8px;
    gap: 10px;
  }
  .ecosystem-section {
    padding-block: 42px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .audience-grid article {
    padding-top: 20px;
  }
  .audience-grid h3 {
    font-size: 20px;
    margin: 9px 0 12px;
  }
  .audience-grid p {
    max-width: 100%;
    margin-bottom: 14px;
  }
  .audience-en {
    font-size: 9px;
  }
  .audience-icon {
    font-size: 30px;
  }
  .audience-grid a {
    font-size: 11px;
  }
  .journey-section {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .journey-intro > p {
    margin-bottom: 14px;
  }
  .journey-list li {
    padding: 17px 0;
    gap: 20px;
  }
  .journey-list h3 {
    font-size: 15px;
  }
  .journey-list p {
    font-size: 12px;
  }
  .company-section {
    padding-block: 39px;
  }
  .company-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .company-art {
    height: 240px;
  }
  .company-art > img {
    object-position: center 59%;
  }
  .company-art > span {
    font-size: 30px;
    left: 24px;
    top: 19px;
  }
  .company-art small {
    bottom: 20px;
    left: 25px;
  }
  .company-copy h2 {
    font-size: 27px;
  }
  .company-facts > div {
    font-size: 11px;
    grid-template-columns: 65px 1fr;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .faq-section h2 {
    font-size: 27px;
    margin-bottom: 13px;
  }
  .faq-list summary {
    font-size: 13px;
    padding-block: 18px;
  }
  .faq-list summary:after {
    top: 15px;
  }
  .faq-list details p {
    font-size: 12px;
  }
  .contact-cta {
    padding: 32px 0;
  }
  .contact-cta .wrap {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
  }
  .contact-cta h2 {
    font-size: 23px;
    max-width: 310px;
    line-height: 1.5;
  }
  .footer {
    padding-top: 32px;
  }
  .footer-top {
    gap: 28px;
    padding-bottom: 26px;
  }
  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    font-size: 10px;
  }
  .footer-links > div:last-child {
    grid-column: 1 / -1;
  }
  .footer-links > div {
    gap: 10px;
  }
  .footer-bottom {
    font-size: 8px;
    display: block;
    padding-top: 16px;
  }
  .footer-bottom p + p {
    margin-top: 5px;
  }
  .page-intro {
    padding: 35px 0 30px;
  }
  .page-intro h1 {
    font-size: 29px;
  }
  .page-intro p {
    font-size: 13px;
  }
  .subpage {
    padding-block: 30px 50px;
  }
  .content-grid {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .content-aside {
    font-size: 11px;
    padding: 20px;
  }
  .prose h2 {
    font-size: 23px;
  }
  .prose p,
  .prose li {
    font-size: 13px;
  }
  .prose h3 {
    font-size: 17px;
  }
  .info-card {
    padding: 20px;
  }
  .support-options {
    gap: 15px;
  }
  .not-found {
    padding: 58px 0;
  }
  .not-found h1 {
    font-size: 31px;
  }
}
@media (max-width: 350px) {
  .nav {
    gap: 8px;
    font-size: 9px;
  }
  .nav .nav-contact {
    gap: 3px;
  }
  .gallery-card-front {
    width: 169px;
    height: 246px;
  }
  .gallery-card-back {
    width: 138px;
    height: 206px;
  }
  .gallery-card-side {
    width: 143px;
    height: 213px;
  }
  .gallery-composition {
    height: 301px;
  }
  .flow-slip {
    width: 213px;
    right: 4px;
  }
  .flow-slip strong {
    font-size: 11px;
  }
  .product-copy h3 {
    gap: 10px;
  }
  .product-copy h3 > span {
    font-size: 10px;
  }
  .product-copy {
    padding-inline: 18px;
  }
  .feature-list li {
    font-size: 9px;
    gap: 8px;
  }
  .feature-list li > span {
    font-size: 10px;
    min-width: 83px;
  }
  .editor-preview {
    margin-inline: 18px;
  }
  .editor-body {
    grid-template-columns: 24px 1fr 73px;
  }
  .editor-layers {
    font-size: 6px;
  }
  .editor-timeline {
    gap: 6px;
  }
  .collection-preview {
    gap: 7px;
    padding-inline: 18px;
  }
  .overview-strip > div {
    padding-left: 10px;
  }
  .overview-strip p > span {
    font-size: 8px;
  }
  .overview-strip strong {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}
