:root {
  --bg: #fff9f2;
  --bg-warm: #fff6ec;
  --bg-cream: #faefe5;
  --surface: rgba(255, 252, 247, 0.86);
  --surface-solid: #fffdf9;
  --ink: #2b211c;
  --ink-soft: #3a2a22;
  --muted: #7b6b61;
  --line: rgba(108, 82, 64, 0.16);
  --terracotta: #c97858;
  --terracotta-deep: #a95f43;
  --apricot: #f3c6b6;
  --apricot-light: #f7d9c8;
  --tea: #7e9c7a;
  --tea-deep: #5f7d5c;
  --sand: #a67c52;
  --shadow: 0 24px 70px rgba(73, 47, 31, 0.12);
  --small-shadow: 0 12px 32px rgba(73, 47, 31, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 4%, rgba(243, 198, 182, 0.32), transparent 34%),
    linear-gradient(180deg, var(--bg), #fffaf4 46%, #fff6ee 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Source Han Sans SC", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

body.lightbox-open {
  overflow: hidden;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding: 0 42px;
  border-bottom: 1px solid rgba(108, 82, 64, 0.12);
  background: rgba(255, 249, 242, 0.8);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 12px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(73, 47, 31, 0.12);
}

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

.brand-text strong {
  font-size: 22px;
  line-height: 1;
  font-weight: 850;
}

.brand-text small {
  color: var(--sand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 760;
}

.site-nav a {
  padding: 11px 14px;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--terracotta-deep);
  background: rgba(216, 138, 106, 0.12);
  outline: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.88);
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
}

section {
  scroll-margin-top: 96px;
}

.section-pad {
  padding: 104px 34px;
}

.matrix.section-pad,
.capabilities.section-pad,
.contact.section-pad {
  padding: 68px 34px;
}

.capabilities.section-pad {
  padding-bottom: 58px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - 88px);
  padding: 48px 34px 46px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 auto 50%;
  width: 44vw;
  height: 44vw;
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  background: rgba(247, 217, 200, 0.15);
  filter: blur(4px);
}

.hero-inner,
.intro-grid,
.section-heading,
.project-grid,
.detail-grid,
.capability-grid,
.cooperate-panel,
.about-grid,
.site-footer {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(455px, 1.04fr);
  gap: 52px;
  align-items: center;
}

.hero-copy,
.detail-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.section-heading h2,
.detail-copy h2,
.about h2,
.intro h2 {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.8vw, 62px);
  line-height: 1.08;
}

.hero-lead {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-action {
  color: #fffaf4;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  box-shadow: 0 14px 32px rgba(201, 120, 88, 0.24);
}

.secondary-action {
  color: var(--ink);
  background: rgba(255, 253, 249, 0.78);
  border: 1px solid rgba(58, 42, 34, 0.24);
}

.hero-visual {
  position: relative;
  min-height: clamp(584px, calc(100svh - 136px), 630px);
}

.ecosystem-stage {
  position: relative;
  width: min(650px, 100%);
  height: clamp(584px, calc(100svh - 136px), 630px);
  margin-left: auto;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 249, 0.96), rgba(255, 246, 236, 0.38) 58%, rgba(255, 253, 249, 0.72)),
    rgba(255, 253, 249, 0.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ecosystem-lines {
  position: absolute;
  inset: 68px 0 auto;
  width: 100%;
  height: 490px;
  pointer-events: none;
}

.ecosystem-lines path {
  fill: none;
  stroke: rgba(126, 156, 122, 0.54);
  stroke-width: 2.4;
}

.core-card,
.ecosystem-node {
  position: absolute;
  border: 1px solid rgba(108, 82, 64, 0.13);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(10px);
}

.core-card {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 276px;
  min-height: 168px;
  padding: 28px;
  border-radius: 30px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.core-card span {
  color: var(--terracotta-deep);
  font-size: 14px;
  font-weight: 800;
}

.core-card strong {
  margin-top: 10px;
  font-size: 31px;
  line-height: 1.32;
  font-weight: 900;
}

.ecosystem-node {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  width: 258px;
  padding: 15px;
  border-radius: 22px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.ecosystem-node:hover,
.ecosystem-node:focus-visible {
  border-color: rgba(201, 120, 88, 0.34);
  outline: none;
  transform: translateY(-2px);
}

.ecosystem-node img {
  width: 74px;
  height: 74px;
  padding: 8px;
  object-fit: contain;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 16px;
  background: #fffdf9;
}

.ecosystem-node small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.ecosystem-node b {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.32;
}

.node-xingfu {
  left: 42px;
  top: 102px;
}

.node-tea {
  right: 42px;
  top: 112px;
}

.node-match {
  left: 50%;
  bottom: 76px;
  transform: translateX(-50%);
}

.node-match:hover,
.node-match:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.moon-scene {
  position: relative;
  width: min(520px, 100%);
  height: 520px;
  margin-left: auto;
}

.moon {
  position: absolute;
  top: 52px;
  right: 54px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, rgba(255, 255, 255, 0.9) 0 14%, transparent 15%),
    linear-gradient(135deg, #fffaf3, #f7d9c8);
  box-shadow: 0 24px 80px rgba(216, 138, 106, 0.28);
}

.ripple {
  position: absolute;
  left: 58px;
  bottom: 72px;
  border: 1px solid rgba(166, 124, 82, 0.28);
  border-radius: 50%;
}

.ripple-one {
  width: 360px;
  height: 176px;
}

.ripple-two {
  left: 96px;
  bottom: 110px;
  width: 260px;
  height: 122px;
}

.ripple-three {
  left: 140px;
  bottom: 144px;
  width: 170px;
  height: 76px;
}

.portrait-card {
  position: absolute;
  width: 172px;
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(12px);
}

.portrait-card small {
  color: var(--muted);
}

.portrait-card strong {
  display: block;
  margin-top: 7px;
  font-size: 20px;
}

.portrait-self {
  left: 26px;
  top: 118px;
}

.portrait-relation {
  right: 10px;
  bottom: 128px;
}

.relation-lines {
  position: absolute;
  inset: 112px 52px auto auto;
  width: 360px;
  height: 280px;
  overflow: visible;
}

.relation-lines path {
  fill: none;
  stroke: rgba(126, 156, 122, 0.66);
  stroke-width: 2;
}

.relation-lines circle {
  fill: var(--tea);
}

.tea-cup {
  position: absolute;
  left: 170px;
  bottom: 54px;
  width: 112px;
  height: 58px;
  border: 3px solid rgba(201, 120, 88, 0.62);
  border-top: 0;
  border-radius: 0 0 70px 70px;
}

.tea-cup::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -13px;
  width: 138px;
  height: 18px;
  border: 2px solid rgba(201, 120, 88, 0.38);
  border-radius: 50%;
}

.tea-cup span {
  position: absolute;
  right: -33px;
  top: 8px;
  width: 40px;
  height: 28px;
  border: 3px solid rgba(201, 120, 88, 0.46);
  border-left: 0;
  border-radius: 0 28px 28px 0;
}

.intro {
  background: rgba(255, 253, 249, 0.68);
}

.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.intro h2,
.about h2,
.section-heading h2,
.detail-copy h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
}

.intro-copy p,
.section-heading p,
.detail-copy p,
.about p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.86;
}

.matrix {
  background: linear-gradient(180deg, rgba(250, 239, 229, 0.5), rgba(255, 249, 242, 0.9));
}

.section-heading {
  margin-bottom: 40px;
}

.section-heading p {
  max-width: 760px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 350px;
  padding: 28px;
  flex-direction: column;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.project-card-top {
  display: flex;
  min-height: 122px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.project-icon {
  display: grid;
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--small-shadow);
}

.project-icon img {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
}

.project-card h3 {
  margin: 22px 0 0;
  font-size: 31px;
  line-height: 1.2;
}

.project-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.project-card a {
  color: var(--terracotta-deep);
  font-weight: 800;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.project-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(201, 120, 88, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.72);
  line-height: 1;
}

.project-links a:first-child {
  color: #fffaf4;
  border-color: rgba(201, 120, 88, 0);
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  box-shadow: 0 12px 26px rgba(201, 120, 88, 0.18);
}

.project-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--terracotta-deep);
  background: rgba(216, 138, 106, 0.13);
  font-size: 13px;
  font-weight: 800;
}

.card-art {
  position: absolute;
  right: -22px;
  top: -14px;
  width: 188px;
  height: 188px;
  opacity: 0.86;
}

.project-logo {
  padding: 18px;
  object-fit: contain;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--small-shadow);
  opacity: 1;
}

.tea-logo {
  border-radius: 50%;
}

.match-logo {
  border-radius: 28px;
}

.moon-art {
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 32%, #fffaf4 0 20%, transparent 21%),
    linear-gradient(135deg, #f3c6b6, #fff7ef);
  box-shadow: inset 24px 0 0 rgba(201, 120, 88, 0.12);
}

.tea-art {
  width: 210px;
  height: 160px;
  top: 12px;
  border: 2px solid rgba(126, 156, 122, 0.35);
  border-radius: 50%;
}

.tea-art::before,
.tea-art::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.tea-art::before {
  inset: 36px;
  border: 2px solid rgba(126, 156, 122, 0.34);
}

.tea-art::after {
  left: 72px;
  top: 54px;
  width: 66px;
  height: 40px;
  border: 3px solid rgba(201, 120, 88, 0.5);
  border-top: 0;
  border-radius: 0 0 44px 44px;
}

.match-art {
  background:
    radial-gradient(circle at 30% 62%, var(--tea) 0 6px, transparent 7px),
    radial-gradient(circle at 74% 32%, var(--terracotta) 0 6px, transparent 7px),
    radial-gradient(circle at 72% 74%, var(--sand) 0 6px, transparent 7px);
}

.match-art::before,
.match-art::after {
  content: "";
  position: absolute;
  inset: 58px 24px auto;
  height: 2px;
  background: rgba(126, 156, 122, 0.5);
  transform: rotate(-18deg);
}

.match-art::after {
  top: 112px;
  transform: rotate(18deg);
  background: rgba(201, 120, 88, 0.42);
}

.warm-band {
  background: #fff8f0;
}

.tea-band {
  background: #f4f2e7;
}

.blush-band {
  background: #fff3ef;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: 58px;
  align-items: center;
}

.detail-grid.reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
}

.project-slogan {
  color: var(--terracotta-deep) !important;
  font-size: 22px !important;
  font-weight: 800;
}

.detail-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.detail-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(201, 120, 88, 0.2);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.7);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.app-downloads {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
  max-width: 560px;
}

.download-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

a.download-card {
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

a.download-card:hover,
a.download-card:focus-visible {
  border-color: rgba(201, 120, 88, 0.34);
  box-shadow: 0 18px 42px rgba(73, 47, 31, 0.13);
  outline: none;
  transform: translateY(-2px);
}

.download-card img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: cover;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 10px;
  background: #fff;
}

.download-card small {
  color: var(--muted);
  font-weight: 700;
}

.download-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.wechat-mini-program {
  display: inline-grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(95, 125, 92, 0.22);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.wechat-mini-program img {
  display: block;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 10px;
  background: #fff;
}

.wechat-mini-program small {
  color: var(--tea-deep);
  font-weight: 800;
}

.wechat-mini-program strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.wechat-mini-program p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-phone {
  display: inline-grid;
  gap: 7px;
  margin-top: 30px;
  padding: 14px 18px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.service-phone small {
  color: var(--muted);
  font-weight: 700;
}

.service-phone a {
  color: var(--terracotta-deep);
  font-size: 24px;
  font-weight: 800;
}

.app-preview,
.tea-preview,
.match-preview {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 30% 18%, rgba(243, 198, 182, 0.45), transparent 32%),
    rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.app-card {
  position: absolute;
  padding: 20px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--small-shadow);
}

.top-card {
  left: 34px;
  top: 36px;
  width: 260px;
}

.top-card span,
.note-card small,
.score-card small {
  color: var(--muted);
}

.top-card strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.5;
}

.score-card {
  right: 34px;
  top: 154px;
  width: 220px;
}

.score-card b {
  display: block;
  margin-top: 8px;
  font-size: 54px;
  color: var(--terracotta);
}

.soft-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 88px;
  margin-top: 16px;
}

.soft-chart i {
  width: 26px;
  height: var(--h);
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--apricot), var(--terracotta));
}

.note-card {
  left: 54px;
  bottom: 48px;
  width: 300px;
}

.note-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.tea-preview-logo {
  position: absolute;
  left: 50%;
  top: 49%;
  width: min(292px, 66%);
  height: auto;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 28px;
  background: #fffdf9;
  box-shadow: var(--small-shadow);
  transform: translate(-50%, -50%);
}

.round-table {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  border: 1px solid rgba(126, 156, 122, 0.36);
  background: rgba(255, 253, 249, 0.68);
  transform: translate(-50%, -50%);
}

.round-table span {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tea), var(--tea-deep));
  color: #fffaf4;
  font-size: 28px;
  font-weight: 800;
}

.round-table i {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--apricot-light);
}

.round-table i:nth-child(2) {
  top: -20px;
}

.round-table i:nth-child(3) {
  right: -20px;
}

.round-table i:nth-child(4) {
  bottom: -20px;
}

.round-table i:nth-child(5) {
  left: -20px;
}

.tea-note {
  position: absolute;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--tea-deep);
  font-weight: 800;
  box-shadow: var(--small-shadow);
}

.note-left {
  left: 32px;
  top: 34px;
}

.note-right {
  right: 32px;
  top: 34px;
}

.note-bottom {
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.match-preview-logo {
  position: absolute;
  left: 50%;
  top: 30px;
  width: min(230px, 62%);
  height: auto;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 28px;
  background: #fffdf9;
  box-shadow: var(--small-shadow);
  transform: translateX(-50%);
}

.match-card,
.match-result {
  position: absolute;
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 20px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--small-shadow);
}

.match-card small,
.match-result span {
  color: var(--muted);
}

.match-card strong,
.match-result b {
  display: block;
  margin-top: 8px;
  line-height: 1.45;
}

.person-a {
  left: 34px;
  top: 235px;
  width: 184px;
}

.person-b {
  right: 32px;
  top: 235px;
  width: 194px;
}

.match-preview svg {
  position: absolute;
  left: 50%;
  top: 174px;
  width: 420px;
  height: 300px;
  transform: translateX(-50%);
}

.match-preview path {
  fill: none;
  stroke: rgba(126, 156, 122, 0.58);
  stroke-width: 3;
}

.match-result {
  left: 50%;
  bottom: 42px;
  width: 220px;
  text-align: center;
  transform: translateX(-50%);
}

.capabilities {
  background: rgba(255, 253, 249, 0.76);
}

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

.capability-grid article,
.cooperate-grid article {
  padding: 24px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--small-shadow);
}

.capability-grid span {
  display: inline-flex;
  width: 44px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(126, 156, 122, 0.16);
  color: var(--tea-deep);
  font-weight: 800;
}

.capability-grid h3,
.cooperate-grid h3 {
  margin: 22px 0 0;
  font-size: 22px;
}

.capability-grid p,
.cooperate-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.76;
}

.cooperate {
  background:
    linear-gradient(135deg, rgba(201, 120, 88, 0.14), rgba(126, 156, 122, 0.16)),
    var(--bg-warm);
}

.cooperate-panel {
  padding: 48px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: var(--shadow);
}

.cooperate-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.about {
  background: var(--bg);
}

.contact {
  background: rgba(255, 253, 249, 0.76);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
  scroll-margin-top: 104px;
}

.contact-layout-compact {
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
}

.contact-card {
  padding: 28px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.compact-contact-card {
  padding: 24px;
}

.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-card-heading span {
  display: inline-flex;
  width: 42px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(201, 120, 88, 0.14);
  color: var(--terracotta-deep);
  font-weight: 850;
}

.contact-card h3,
.contact-card-heading h3 {
  margin: 0;
  font-size: 22px;
}

.contact-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a {
  color: var(--terracotta-deep);
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
}

.contact-list div {
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 20px;
  background: rgba(255, 249, 242, 0.62);
}

.contact-list dt {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: 17px;
  font-weight: 760;
  line-height: 1.58;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  padding: 20px 22px;
  border: 1px solid rgba(166, 124, 82, 0.18);
  border-radius: 18px;
  background: #fffdf8;
  box-shadow: 0 12px 30px rgba(74, 50, 35, 0.04);
}

.contact-info-label {
  margin: 0 0 8px;
  color: #8a7466;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.contact-info-value {
  margin: 0;
  color: #2b211c;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.contact-info-value-email {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-info-value a,
.contact-card .contact-info-value a,
.site-footer .contact-info-value a {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.contact-info-value a:hover,
.contact-card .contact-info-value a:hover,
.site-footer .contact-info-value a:hover {
  color: var(--terracotta-deep);
}

.entry-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.contact-layout-compact .entry-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.entry-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 22px;
  background: rgba(255, 249, 242, 0.62);
}

.contact-layout-compact .entry-item {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 12px;
  min-height: 100%;
}

.qr-entry img,
.download-icon {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 18px;
  background: #fff;
}

.contact-layout-compact .qr-entry img,
.contact-layout-compact .download-icon {
  width: 92px;
  height: 92px;
}

.contact-layout-compact .wecom-entry.qr-entry img {
  width: 118px;
  height: 118px;
  padding: 6px;
  object-fit: contain;
}

.contact-layout-compact .download-icon img {
  width: 62px;
  height: 62px;
}

.qr-entry img {
  object-fit: cover;
}

.download-icon {
  display: grid;
  place-items: center;
}

.download-icon img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.entry-item strong {
  display: block;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-actions .primary-action,
.contact-actions .secondary-action {
  min-height: 42px;
  padding: 0 18px;
}

.contact-layout-compact .contact-actions {
  gap: 8px;
}

.contact-layout-compact .contact-actions .primary-action,
.contact-layout-compact .contact-actions .secondary-action {
  min-height: 38px;
  padding: 0 14px;
  font-size: 14px;
}

.subpage-hero {
  padding: 82px 34px 76px;
  background:
    radial-gradient(circle at 74% 18%, rgba(126, 156, 122, 0.18), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-warm));
}

.subpage-hero-inner,
.content-grid,
.step-grid,
.benefit-grid,
.merchant-panel,
.gallery-section .section-heading,
.video-section .section-heading,
.qr-panel {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.subpage-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 58px;
  align-items: center;
}

.subpage-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
}

.subpage-copy p,
.content-grid p,
.merchant-panel p,
.qr-panel p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.82;
}

.subpage-visual {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background:
    radial-gradient(circle at 38% 30%, rgba(126, 156, 122, 0.14), transparent 34%),
    radial-gradient(circle at 76% 72%, rgba(201, 120, 88, 0.12), transparent 30%),
    rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.subpage-logo {
  position: absolute;
  left: 50%;
  top: 45%;
  width: min(292px, 68%);
  height: auto;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 50%;
  background: #fffdf9;
  box-shadow: var(--small-shadow);
  transform: translate(-50%, -50%);
}

.tea-hero-visual {
  min-height: 470px;
}

.tea-photo-stack {
  position: absolute;
  inset: 34px 28px 34px;
}

.tea-hero-photo {
  position: absolute;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 46px rgba(73, 47, 31, 0.16);
}

.photo-main {
  right: 0;
  top: 64px;
  z-index: 2;
  width: 72%;
  height: 248px;
}

.photo-side {
  left: 0;
  top: 4px;
  z-index: 1;
  width: 48%;
  height: 170px;
  transform: rotate(-3deg);
}

.photo-bottom {
  left: 46px;
  bottom: 10px;
  z-index: 1;
  width: 56%;
  height: 168px;
  transform: rotate(2.4deg);
}

.tea-hero-logo-card,
.tea-scene-card {
  position: absolute;
  border: 1px solid rgba(108, 82, 64, 0.12);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(12px);
}

.tea-hero-logo-card {
  left: 30px;
  bottom: 34px;
  z-index: 5;
  display: grid;
  width: 164px;
  min-height: 188px;
  place-items: center;
  padding: 15px;
  border-radius: 24px;
  text-align: center;
  transform: rotate(-2deg);
}

.tea-hero-logo-card .subpage-logo {
  position: static;
  width: 96px;
  border-radius: 18px;
  transform: none;
}

.tea-hero-logo-card strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.2;
}

.tea-hero-logo-card span {
  margin-top: 6px;
  color: var(--tea-deep);
  font-weight: 800;
}

.tea-scene-card {
  z-index: 6;
  display: grid;
  gap: 7px;
  padding: 14px 16px;
  border-radius: 20px;
}

.tea-scene-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.tea-scene-card strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.3;
}

.scene-tea {
  left: 32px;
  top: 52px;
  transform: rotate(-3deg);
}

.scene-people {
  right: 26px;
  top: 50px;
  transform: rotate(3deg);
}

.scene-merchant {
  right: 34px;
  bottom: 44px;
  left: auto;
  transform: rotate(2deg);
}

.tea-hero-notes span {
  position: absolute;
  z-index: 6;
  padding: 12px 15px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.84);
  color: var(--tea-deep);
  font-weight: 800;
  box-shadow: var(--small-shadow);
}

.tea-hero-notes span:nth-child(1) {
  right: 154px;
  top: 24px;
}

.tea-hero-notes span:nth-child(2) {
  right: 162px;
  bottom: 24px;
  top: auto;
}

.tea-hero-notes span:nth-child(3) {
  left: 58%;
  bottom: 86px;
  transform: translateX(-50%);
}

.xingfu-page-hero {
  padding-bottom: 58px;
  background:
    radial-gradient(circle at 78% 18%, rgba(122, 92, 206, 0.12), transparent 34%),
    radial-gradient(circle at 15% 82%, rgba(243, 198, 182, 0.24), transparent 34%),
    linear-gradient(180deg, var(--bg), var(--bg-warm));
}

.xingfu-hero-visual {
  min-height: 470px;
  background:
    radial-gradient(circle at 50% 42%, rgba(122, 92, 206, 0.13), transparent 34%),
    radial-gradient(circle at 76% 72%, rgba(201, 120, 88, 0.12), transparent 30%),
    rgba(255, 253, 249, 0.78);
}

.xingfu-orbit {
  position: absolute;
  inset: 58px 52px;
  border: 1px solid rgba(122, 92, 206, 0.18);
  border-radius: 50%;
}

.xingfu-orbit::before,
.xingfu-orbit::after {
  content: "";
  position: absolute;
  inset: 46px;
  border: 1px solid rgba(201, 120, 88, 0.16);
  border-radius: 50%;
}

.xingfu-orbit::after {
  inset: 92px;
  border-color: rgba(126, 156, 122, 0.16);
}

.xingfu-logo-card,
.insight-card {
  position: absolute;
  border: 1px solid rgba(108, 82, 64, 0.12);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(12px);
}

.xingfu-logo-card {
  left: 50%;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 190px;
  min-height: 218px;
  place-items: center;
  padding: 18px;
  border-radius: 28px;
  text-align: center;
  transform: translate(-50%, -50%);
}

.xingfu-logo-card img {
  display: block;
  width: 112px;
  height: 112px;
  object-fit: contain;
  border-radius: 24px;
}

.xingfu-logo-card strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.xingfu-logo-card span {
  margin-top: 6px;
  color: #7254b7;
  font-weight: 850;
}

.hero-play-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 13px 0 9px;
  border-radius: 999px;
  color: #fffaf4;
  background: linear-gradient(135deg, #7a5cce, var(--terracotta));
  box-shadow: 0 12px 26px rgba(122, 92, 206, 0.18);
}

.hero-play-link i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.2);
  font-style: normal;
  font-size: 11px;
}

.hero-play-link em {
  font-style: normal;
  font-size: 13px;
  font-weight: 850;
}

.insight-card {
  z-index: 5;
  width: 178px;
  padding: 16px;
  border-radius: 22px;
}

.insight-card span {
  display: inline-flex;
  width: 38px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(122, 92, 206, 0.12);
  color: #7254b7;
  font-size: 13px;
  font-weight: 850;
}

.insight-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.insight-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.insight-profile {
  left: 34px;
  top: 44px;
  transform: rotate(-3deg);
}

.insight-relation {
  right: 30px;
  top: 108px;
  transform: rotate(2deg);
}

.insight-coach {
  left: 52px;
  bottom: 46px;
  transform: rotate(2.4deg);
}

.product-video-section {
  padding-top: 78px;
  background: rgba(255, 253, 249, 0.78);
}

.xingfu-page-hero + .product-video-section {
  padding-top: 58px;
}

.video-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.video-card {
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--shadow);
}

.video-card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 8px 14px;
}

.video-card-heading span {
  display: inline-flex;
  width: 36px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(122, 92, 206, 0.12);
  color: #7254b7;
  font-size: 13px;
  font-weight: 850;
}

.video-card-heading strong {
  color: var(--ink);
  font-size: 18px;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #1c1512;
  object-fit: contain;
}

.video-note {
  max-width: 980px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
}

.xingfu-capability-section {
  background: #fff8f0;
}

.xingfu-card-grid,
.scenario-grid,
.ecosystem-mini-grid {
  display: grid;
  width: min(1120px, 100%);
  margin: 0 auto;
  gap: 18px;
}

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

.xingfu-card-grid article,
.scenario-grid article,
.ecosystem-mini-grid article {
  border: 1px solid rgba(108, 82, 64, 0.13);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.xingfu-card-grid article {
  padding: 28px;
  border-radius: 28px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.xingfu-card-grid article:hover {
  box-shadow: 0 18px 42px rgba(73, 47, 31, 0.13);
  transform: translateY(-3px);
}

.xingfu-card-grid span {
  display: inline-flex;
  width: 48px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(122, 92, 206, 0.12);
  color: #7254b7;
  font-weight: 850;
}

.xingfu-card-grid h3,
.scenario-grid h3,
.ecosystem-mini-grid h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.32;
}

.xingfu-card-grid p,
.scenario-grid p,
.ecosystem-mini-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.76;
}

.xingfu-scenario-section {
  background: rgba(255, 253, 249, 0.76);
}

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

.scenario-grid article {
  padding: 24px;
  border-radius: 26px;
}

.xingfu-download-section {
  background:
    linear-gradient(135deg, rgba(122, 92, 206, 0.1), rgba(201, 120, 88, 0.12)),
    var(--bg-warm);
}

.product-video-section + .xingfu-download-section {
  padding-top: 72px;
}

.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: var(--shadow);
}

.download-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
}

.download-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.xingfu-downloads {
  margin: 0;
  max-width: none;
}

.ecosystem-relation-section {
  background: var(--bg);
}

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

.ecosystem-mini-grid article {
  display: grid;
  min-height: 238px;
  justify-items: start;
  padding: 24px;
  border-radius: 28px;
}

.ecosystem-mini-grid img {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 20px;
  background: #fffdf9;
  box-shadow: 0 10px 24px rgba(73, 47, 31, 0.08);
}

.yuelian-page-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(13, 55, 105, 0.1), transparent 34%),
    radial-gradient(circle at 16% 78%, rgba(231, 96, 83, 0.14), transparent 32%),
    linear-gradient(180deg, var(--bg), #fff4ef);
}

.yuelian-hero-visual {
  min-height: 470px;
  background:
    radial-gradient(circle at 28% 18%, rgba(231, 96, 83, 0.12), transparent 32%),
    radial-gradient(circle at 78% 72%, rgba(13, 55, 105, 0.1), transparent 34%),
    rgba(255, 253, 249, 0.82);
}

.yuelian-logo-panel,
.yuelian-dashboard-card,
.yuelian-mini-card {
  position: absolute;
  border: 1px solid rgba(108, 82, 64, 0.12);
  background: rgba(255, 253, 249, 0.9);
  box-shadow: var(--small-shadow);
  backdrop-filter: blur(12px);
}

.yuelian-logo-panel {
  left: 50%;
  top: 34px;
  z-index: 4;
  display: grid;
  width: min(300px, 72%);
  min-height: 170px;
  place-items: center;
  padding: 18px;
  border-radius: 28px;
  transform: translateX(-50%);
}

.yuelian-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.yuelian-dashboard-card {
  left: 50%;
  bottom: 38px;
  z-index: 3;
  width: min(340px, 78%);
  padding: 20px;
  border-radius: 24px;
  transform: translateX(-50%);
}

.yuelian-dashboard-card span,
.yuelian-mini-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.yuelian-dashboard-card strong,
.yuelian-mini-card strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  line-height: 1.42;
}

.dashboard-bars {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.dashboard-bars i {
  display: block;
  width: var(--w);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #143d73, #e76053);
}

.yuelian-mini-card {
  z-index: 5;
  width: 156px;
  padding: 15px;
  border-radius: 20px;
}

.yuelian-card-a {
  left: 32px;
  top: 156px;
  transform: rotate(-3deg);
}

.yuelian-card-b {
  right: 30px;
  top: 166px;
  transform: rotate(2.5deg);
}

.yuelian-card-c {
  right: 44px;
  bottom: 86px;
  transform: rotate(-2deg);
}

.single-video-gallery {
  grid-template-columns: minmax(0, 1fr);
  width: min(980px, 100%);
}

.single-video-card {
  width: 100%;
}

.yuelian-direction-section {
  background: rgba(255, 253, 249, 0.76);
}

.yuelian-value-section {
  background: rgba(255, 253, 249, 0.76);
}

.value-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.value-card {
  padding: 30px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--small-shadow);
}

.value-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
}

.pain-card span {
  color: var(--terracotta-deep);
  background: rgba(201, 120, 88, 0.12);
}

.capability-card span {
  color: #143d73;
  background: rgba(20, 61, 115, 0.1);
}

.value-card ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.value-card li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.value-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.yuelian-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.yuelian-direction-grid article {
  padding: 24px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: var(--small-shadow);
}

.yuelian-direction-grid span {
  display: inline-flex;
  min-width: 46px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(20, 61, 115, 0.1);
  color: #143d73;
  font-weight: 850;
}

.yuelian-direction-grid h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.34;
}

.yuelian-direction-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.yuelian-cooperate-section {
  background:
    linear-gradient(135deg, rgba(20, 61, 115, 0.1), rgba(231, 96, 83, 0.12)),
    var(--bg-warm);
}

.subpage-cta-section {
  background:
    linear-gradient(135deg, rgba(201, 120, 88, 0.12), rgba(126, 156, 122, 0.12)),
    var(--bg-warm);
}

.subpage-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 30px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.subpage-cta-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
}

.subpage-cta-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.subpage-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
}

.content-grid h2,
.merchant-panel h2,
.qr-panel h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
}

.steps-section,
.gallery-section {
  background: rgba(255, 253, 249, 0.72);
}

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

.step-grid article {
  padding: 24px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
}

.step-grid span {
  color: var(--tea-deep);
  font-weight: 800;
}

.step-grid h3 {
  margin: 18px 0 0;
  font-size: 21px;
}

.step-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.benefit-grid span,
.merchant-tags span {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(126, 156, 122, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--tea-deep);
  font-weight: 800;
}

.merchant-section {
  background:
    linear-gradient(135deg, rgba(126, 156, 122, 0.13), rgba(201, 120, 88, 0.1)),
    var(--bg-warm);
}

.merchant-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: var(--shadow);
}

.merchant-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.merchant-qr {
  margin-top: 0;
}

.merchant-directory-section {
  background: rgba(255, 253, 249, 0.74);
}

.merchant-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1120px, 100%);
  margin: -16px auto 24px;
}

.merchant-summary span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(126, 156, 122, 0.22);
  border-radius: 999px;
  color: var(--tea-deep);
  background: rgba(255, 253, 249, 0.82);
  font-size: 14px;
  font-weight: 850;
}

.merchant-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.merchant-directory-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px 14px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 12px 30px rgba(73, 47, 31, 0.07);
}

.merchant-directory-card span {
  display: inline-flex;
  width: 38px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(126, 156, 122, 0.14);
  color: var(--tea-deep);
  font-size: 13px;
  font-weight: 850;
}

.merchant-directory-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.42;
}

.merchant-directory-card p {
  grid-column: 2;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.64;
}

.merchant-type-tag {
  grid-column: 2;
  justify-self: start;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--tea-deep);
  background: rgba(126, 156, 122, 0.13);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.merchant-directory-grid:not(.is-expanded) .merchant-directory-card:nth-child(n+4) {
  display: none;
}

.merchant-directory-actions {
  display: flex;
  justify-content: center;
  width: min(1120px, 100%);
  margin: 28px auto 0;
}

.merchant-toggle {
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid rgba(126, 156, 122, 0.24);
  border-radius: 999px;
  color: var(--tea-deep);
  background: rgba(255, 253, 249, 0.82);
  box-shadow: var(--small-shadow);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.merchant-toggle:hover,
.merchant-toggle:focus-visible {
  border-color: rgba(126, 156, 122, 0.46);
  outline: none;
}

.gallery-empty,
.video-placeholder {
  width: min(1120px, 100%);
  margin: 0 auto;
  border: 1px dashed rgba(108, 82, 64, 0.22);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.72);
  color: var(--muted);
  text-align: center;
}

.gallery-empty {
  display: grid;
  gap: 24px;
  padding: 38px 28px;
}

.gallery-empty strong {
  display: block;
  color: var(--ink);
  font-size: 22px;
}

.gallery-empty p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.gallery-empty code {
  color: var(--terracotta-deep);
  font-weight: 800;
}

.empty-gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.empty-gallery-preview span {
  display: grid;
  min-height: 132px;
  place-items: end start;
  padding: 18px;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(126, 156, 122, 0.14), rgba(255, 253, 249, 0.74)),
    rgba(255, 253, 249, 0.82);
  color: var(--tea-deep);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(73, 47, 31, 0.06);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.gallery-card {
  appearance: none;
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: #fffdf9;
  box-shadow: var(--small-shadow);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  box-shadow: 0 18px 40px rgba(73, 47, 31, 0.13);
  outline: none;
  transform: translateY(-3px);
}

.gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  inset: auto 10px 10px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 253, 249, 0.28);
  border-radius: 999px;
  color: #fffdf9;
  background: rgba(43, 33, 28, 0.52);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 850;
}

.video-placeholder {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 38px;
  border-style: solid;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 120, 88, 0.14), transparent 36%),
    rgba(255, 253, 249, 0.82);
}

.play-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-deep));
  color: #fffaf4;
  font-size: 28px;
  box-shadow: 0 18px 36px rgba(201, 120, 88, 0.22);
}

.video-placeholder strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 22px;
}

.video-placeholder p {
  max-width: 520px;
  margin: 10px auto 0;
  color: var(--muted);
  line-height: 1.72;
}

.qr-section {
  background: var(--bg-warm);
}

.qr-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(108, 82, 64, 0.13);
  border-radius: 34px;
  background: rgba(255, 253, 249, 0.8);
  box-shadow: var(--shadow);
}

.qr-panel img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 20px;
  background: #fff;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(43, 33, 28, 0.78);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  max-width: min(960px, 92vw);
  max-height: 86vh;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox button {
  position: fixed;
  right: 24px;
  top: 20px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  font-size: 28px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(420px, 1.18fr) minmax(300px, 0.9fr);
  gap: 28px;
  padding: 36px 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-logo {
  display: block;
  width: min(220px, 100%);
  height: auto;
  border-radius: 16px;
  background: #fffdf9;
  box-shadow: 0 12px 30px rgba(73, 47, 31, 0.08);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.footer-center {
  display: grid;
  align-content: start;
  gap: 22px;
}

.footer-service-card {
  display: grid;
  grid-template-columns: 98px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  width: min(420px, 100%);
  padding: 14px 16px;
  border: 1px solid rgba(108, 82, 64, 0.1);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.68);
  box-shadow: 0 12px 30px rgba(73, 47, 31, 0.06);
}

.footer-service-card img {
  display: block;
  width: 98px;
  height: 98px;
  padding: 6px;
  border: 1px solid rgba(108, 82, 64, 0.12);
  border-radius: 16px;
  background: #fff;
  object-fit: contain;
}

.footer-service-card strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.36;
}

.footer-service-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.site-footer a {
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 14px;
}

.footer-contact-info-list {
  gap: 12px;
}

.footer-contact-info-list .contact-info-item {
  padding: 18px 20px;
  background: rgba(255, 253, 248, 0.74);
}

.footer-contact-info-list .contact-info-value {
  font-size: 23px;
}

.footer-contact-info-list .contact-info-value-email {
  font-size: 16px;
  letter-spacing: 0.035em;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 22px;
  }

  .hero {
    min-height: auto;
    padding: 64px 22px 58px;
  }

  .hero-inner,
  .detail-grid,
  .detail-grid.reverse,
  .intro-grid,
  .about-grid,
  .contact-layout,
  .contact-layout-compact,
  .subpage-hero-inner,
  .content-grid,
  .merchant-panel,
  .value-split,
  .subpage-cta-panel,
  .qr-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .moon-scene {
    height: 430px;
    margin: 0 auto;
  }

  .ecosystem-stage {
    height: 510px;
    margin: 0 auto;
  }

  .core-card {
    width: 216px;
  }

  .ecosystem-node {
    width: 214px;
  }

  .project-grid,
  .capability-grid,
  .step-grid,
  .benefit-grid,
  .scenario-grid,
  .ecosystem-mini-grid,
  .yuelian-direction-grid,
  .merchant-directory-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xingfu-card-grid,
  .video-gallery,
  .download-panel {
    grid-template-columns: 1fr;
  }

  .xingfu-downloads {
    max-width: 620px;
  }

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

  .detail-grid.reverse .tea-preview {
    order: 2;
  }

  .subpage-visual {
    min-height: 390px;
  }

  .merchant-panel,
  .qr-panel {
    padding: 30px;
  }
}

@media (max-width: 720px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
    min-height: 78px;
    padding: 0 18px;
    overflow: visible;
  }

  .brand {
    gap: 11px;
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 13px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text small {
    font-size: 11.5px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 82px 14px auto;
    z-index: 60;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.96);
    box-shadow: var(--shadow);
    backdrop-filter: blur(28px);
  }

  body.menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
  }

  .footer-service-card {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
    padding: 13px;
  }

  .footer-service-card img {
    width: 88px;
    height: 88px;
  }

  .section-pad {
    padding: 58px 20px;
  }

  .hero {
    padding: 48px 20px 42px;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.16;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-lead {
    font-size: 17px;
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    min-height: auto;
    overflow: hidden;
  }

  .ecosystem-stage {
    display: grid;
    height: auto;
    gap: 9px;
    padding: 12px;
    border-radius: 26px;
  }

  .ecosystem-lines {
    display: none;
  }

  .core-card,
  .ecosystem-node,
  .node-xingfu,
  .node-tea,
  .node-match {
    position: static;
    width: 100%;
    transform: none;
  }

  .core-card {
    min-height: auto;
    padding: 14px;
  }

  .core-card strong {
    font-size: 20px;
  }

  .ecosystem-node {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 12px;
    padding: 11px;
  }

  .ecosystem-node img {
    width: 54px;
    height: 54px;
    padding: 7px;
  }

  .ecosystem-node b {
    font-size: 15px;
  }

  .node-match:hover,
  .node-match:focus-visible {
    transform: translateY(-2px);
  }

  .moon-scene {
    width: 100%;
    max-width: 330px;
    height: 300px;
    overflow: hidden;
  }

  .moon {
    top: 38px;
    right: 34px;
    width: 96px;
    height: 96px;
  }

  .relation-lines {
    display: none;
  }

  .portrait-card {
    width: 136px;
    padding: 12px;
  }

  .portrait-card strong {
    font-size: 18px;
  }

  .portrait-self {
    left: 12px;
    top: 86px;
  }

  .portrait-relation {
    right: 4px;
    bottom: 76px;
  }

  .ripple-one {
    left: 12px;
    bottom: 48px;
    width: 286px;
    height: 136px;
  }

  .ripple-two {
    left: 48px;
    bottom: 76px;
    width: 212px;
    height: 98px;
  }

  .ripple-three {
    left: 86px;
    bottom: 105px;
    width: 136px;
    height: 62px;
  }

  .tea-cup {
    left: 112px;
    bottom: 24px;
    width: 92px;
    height: 48px;
  }

  .tea-cup::before {
    width: 116px;
  }

  .tea-cup span {
    display: none;
  }

  .project-grid,
  .capability-grid,
  .cooperate-grid,
  .step-grid,
  .benefit-grid,
  .xingfu-card-grid,
  .scenario-grid,
  .ecosystem-mini-grid,
  .yuelian-direction-grid,
  .merchant-directory-grid {
    grid-template-columns: 1fr;
  }

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

  .project-card {
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .project-card-top {
    min-height: 92px;
    gap: 12px;
  }

  .project-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
  }

  .project-icon img {
    width: 56px;
    height: 56px;
  }

  .project-tag {
    min-height: 30px;
    padding: 0 11px;
    font-size: 12px;
  }

  .project-card h3 {
    margin-top: 12px;
    font-size: 25px;
  }

  .project-card p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.58;
    -webkit-line-clamp: 3;
  }

  .project-links {
    gap: 8px;
    padding-top: 18px;
  }

  .project-links a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14.5px;
  }

  .app-downloads {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .download-card {
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 10px 14px 10px 10px;
  }

  .download-card img {
    width: 88px;
    height: 88px;
  }

  .download-card strong {
    font-size: 17px;
  }

  .wechat-mini-program {
    width: 100%;
    grid-template-columns: 88px minmax(0, 1fr);
    padding: 10px 14px 10px 10px;
  }

  .wechat-mini-program img {
    width: 88px;
    height: 88px;
  }

  .wechat-mini-program strong {
    font-size: 17px;
  }

  .app-preview,
  .tea-preview,
  .match-preview {
    min-height: 390px;
  }

  .tea-preview-logo {
    top: 50%;
    width: 220px;
  }

  .top-card,
  .score-card,
  .note-card {
    left: 22px;
    right: 22px;
    width: auto;
  }

  .score-card {
    top: 142px;
  }

  .note-card {
    bottom: 24px;
  }

  .person-a {
    left: 20px;
    top: 224px;
    width: 160px;
  }

  .person-b {
    right: 20px;
    top: 304px;
    width: 160px;
  }

  .match-preview {
    min-height: 500px;
  }

  .match-preview-logo {
    top: 28px;
    width: 180px;
  }

  .match-preview svg {
    display: none;
    top: 100px;
    width: 330px;
  }

  .match-result {
    bottom: 28px;
  }

  .cooperate-panel {
    padding: 30px 20px;
  }

  .contact-layout,
  .contact-layout-compact,
  .content-grid,
  .merchant-panel,
  .qr-panel {
    grid-template-columns: 1fr;
  }

  .contact-layout-compact .entry-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout-compact .entry-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .entry-item,
  .qr-panel {
    text-align: left;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-list div,
  .entry-item {
    padding: 14px;
  }

  .contact-info-item,
  .footer-contact-info-list .contact-info-item {
    padding: 18px;
    border-radius: 16px;
  }

  .contact-info-value,
  .footer-contact-info-list .contact-info-value {
    font-size: 20px;
  }

  .contact-info-value-email,
  .footer-contact-info-list .contact-info-value-email {
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0.03em;
  }

  .entry-item {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
  }

  .qr-entry img,
  .download-icon {
    width: 86px;
    height: 86px;
    border-radius: 14px;
  }

  .download-icon img {
    width: 58px;
    height: 58px;
  }

  .contact-layout-compact .wecom-entry {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .contact-layout-compact .wecom-entry.qr-entry img {
    width: 98px;
    height: 98px;
  }

  .subpage-cta-panel {
    padding: 24px 18px;
  }

  .subpage-cta-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .subpage-hero {
    padding: 52px 20px 48px;
  }

  .subpage-copy h1 {
    font-size: 34px;
    line-height: 1.16;
  }

  .subpage-copy p,
  .content-grid p,
  .merchant-panel p,
  .qr-panel p {
    font-size: 17px;
  }

  .subpage-visual {
    min-height: 410px;
  }

  .subpage-logo {
    width: 218px;
  }

  .xingfu-hero-visual {
    min-height: 456px;
  }

  .xingfu-orbit {
    inset: 70px 30px;
  }

  .xingfu-logo-card {
    width: 150px;
    min-height: 188px;
    padding: 13px;
    border-radius: 24px;
  }

  .xingfu-logo-card img {
    width: 82px;
    height: 82px;
    border-radius: 18px;
  }

  .xingfu-logo-card strong {
    font-size: 18px;
  }

  .xingfu-logo-card span {
    font-size: 13px;
  }

  .hero-play-link {
    min-height: 34px;
    margin-top: 10px;
    padding-right: 11px;
  }

  .insight-card {
    width: 152px;
    padding: 13px;
    border-radius: 18px;
  }

  .insight-card strong {
    margin-top: 9px;
    font-size: 16px;
  }

  .insight-card p {
    font-size: 13px;
    line-height: 1.48;
  }

  .insight-profile {
    left: 18px;
    top: 28px;
  }

  .insight-relation {
    right: 18px;
    top: 88px;
  }

  .insight-coach {
    left: 24px;
    bottom: 28px;
  }

  .video-card {
    padding: 8px;
    border-radius: 24px;
  }

  .video-card-heading {
    padding: 4px 6px 10px;
  }

  .video-card video {
    border-radius: 18px;
  }

  .value-card {
    padding: 22px;
    border-radius: 24px;
  }

  .value-card li {
    font-size: 16px;
    line-height: 1.64;
  }

  .xingfu-card-grid article,
  .scenario-grid article {
    padding: 22px;
    border-radius: 24px;
  }

  .download-panel {
    padding: 24px 18px;
  }

  .xingfu-downloads {
    max-width: 100%;
  }

  .ecosystem-mini-grid article {
    min-height: 0;
    padding: 20px;
  }

  .yuelian-hero-visual {
    min-height: 480px;
  }

  .yuelian-logo-panel {
    top: 24px;
    width: 230px;
    min-height: 132px;
    padding: 14px;
  }

  .yuelian-dashboard-card {
    bottom: 28px;
    width: calc(100% - 40px);
    padding: 16px;
  }

  .yuelian-mini-card {
    width: 142px;
    padding: 13px;
  }

  .yuelian-card-a {
    left: 18px;
    top: 148px;
  }

  .yuelian-card-b {
    right: 18px;
    top: 170px;
  }

  .yuelian-card-c {
    right: 28px;
    bottom: 144px;
  }

  .yuelian-direction-grid article {
    padding: 22px;
  }

  .tea-photo-stack {
    inset: 22px 18px 24px;
  }

  .photo-main {
    right: 0;
    top: 54px;
    width: 84%;
    height: 190px;
  }

  .photo-side {
    left: 0;
    top: 0;
    width: 52%;
    height: 116px;
  }

  .photo-bottom {
    right: 10px;
    bottom: 14px;
    left: auto;
    width: 58%;
    height: 122px;
  }

  .tea-hero-logo-card {
    top: auto;
    left: 18px;
    bottom: 24px;
    width: 132px;
    min-height: 150px;
    padding: 11px;
  }

  .tea-hero-logo-card .subpage-logo {
    width: 72px;
  }

  .tea-hero-logo-card strong {
    margin-top: 9px;
    font-size: 17px;
  }

  .tea-hero-logo-card span {
    font-size: 12px;
  }

  .tea-scene-card {
    padding: 11px 12px;
  }

  .tea-scene-card strong {
    font-size: 14px;
  }

  .scene-tea {
    left: 18px;
    top: 34px;
  }

  .scene-people {
    right: 18px;
    top: 26px;
  }

  .scene-merchant {
    right: 18px;
    bottom: 48px;
    left: auto;
  }

  .tea-hero-notes span {
    padding: 10px 12px;
    font-size: 14px;
  }

  .tea-hero-notes span:nth-child(1) {
    display: none;
  }

  .tea-hero-notes span:nth-child(2) {
    display: none;
  }

  .tea-hero-notes span:nth-child(3) {
    display: none;
  }

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

  .empty-gallery-preview {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .empty-gallery-preview span {
    min-height: 96px;
    padding: 14px;
    font-size: 14px;
  }

  .merchant-panel {
    padding: 24px 18px;
  }

  .merchant-directory-grid {
    gap: 12px;
  }

  .merchant-directory-card {
    min-height: auto;
    padding: 16px;
    border-radius: 20px;
  }

  .merchant-directory-card strong {
    font-size: 16px;
  }

  .merchant-directory-card p {
    font-size: 13.5px;
  }

  .merchant-summary {
    margin-top: -10px;
  }

  .merchant-type-tag {
    font-size: 11.5px;
  }

  .qr-panel {
    padding: 24px 18px;
  }

  .qr-panel img {
    width: 150px;
    height: 150px;
  }

  .video-placeholder {
    min-height: 240px;
    padding: 28px 18px;
  }

  .gallery-lightbox {
    padding: 18px;
  }
}
