:root {
  --leaf: #203b2b;
  --leaf-soft: #4f7054;
  --sage: #71836d;
  --rose: #c66f73;
  --peony: #e9b8ae;
  --sun: #d7a545;
  --paper: #fffdf8;
  --cream: #f6f0e6;
  --mist: #eef3ed;
  --ink: #1e2923;
  --muted: #6b756f;
  --line: rgba(32, 59, 43, 0.14);
  --shadow: 0 24px 70px rgba(32, 59, 43, 0.13);
  --max: 1180px;
}

.theme-b {
  --leaf: #132426;
  --leaf-soft: #315257;
  --sage: #6e7c73;
  --rose: #c59b5b;
  --peony: #e8c98f;
  --sun: #d8b66c;
  --paper: #fbf7ef;
  --cream: #e9ded0;
  --mist: #eef1eb;
  --ink: #172321;
  --muted: #62706b;
  --line: rgba(19, 36, 38, 0.16);
}

.theme-c {
  --leaf: #314f4c;
  --leaf-soft: #507b72;
  --sage: #76918b;
  --rose: #b64861;
  --peony: #f3c9c8;
  --sun: #d9a44d;
  --paper: #fffaf7;
  --cream: #f6edf1;
  --mist: #edf7f5;
  --ink: #26312f;
  --muted: #687775;
  --line: rgba(49, 79, 76, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.68;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
  padding: 14px 52px;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(32, 59, 43, 0.09);
  backdrop-filter: blur(18px);
}

.version-switcher {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  z-index: 19;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(32, 59, 43, 0.08);
  backdrop-filter: blur(16px);
}

.version-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 7px 13px;
  color: var(--leaf);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  white-space: nowrap;
}

.version-switcher a.is-active {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--leaf);
}

.version-switcher span {
  color: inherit;
  opacity: 0.7;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fffdf8;
  background: var(--leaf);
  border-radius: 50%;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  color: rgba(30, 41, 35, 0.78);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: rgba(32, 59, 43, 0.06);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.language-select {
  min-width: 132px;
}

.language-select select {
  width: 100%;
  min-height: 36px;
  padding: 6px 34px 6px 13px;
  color: var(--leaf);
  background: transparent;
  border: 0;
  outline: 0;
  appearance: none;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.language-select::after {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 8px;
  height: 8px;
  content: "";
  border-right: 2px solid var(--leaf);
  border-bottom: 2px solid var(--leaf);
  pointer-events: none;
  transform: translateY(-62%) rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--leaf);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 42px;
  min-height: 760px;
  padding: 172px 72px 64px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.97) 0%, rgba(255, 253, 248, 0.84) 43%, rgba(255, 253, 248, 0.28) 76%),
    linear-gradient(180deg, rgba(32, 59, 43, 0.08), rgba(32, 59, 43, 0.1));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.theme-b .hero {
  background: #132426;
}

.theme-b .hero::before {
  background:
    linear-gradient(90deg, rgba(19, 36, 38, 0.96) 0%, rgba(19, 36, 38, 0.8) 45%, rgba(19, 36, 38, 0.24) 78%),
    linear-gradient(180deg, rgba(19, 36, 38, 0.25), rgba(19, 36, 38, 0.42));
}

.theme-b .hero h1,
.theme-b .hero-copy > p:not(.site-kicker) {
  color: var(--paper);
}

.theme-b .site-kicker,
.theme-b .hero-panel {
  background: rgba(251, 247, 239, 0.9);
}

.theme-c .hero {
  background: #fffaf7;
}

.theme-c .hero::before {
  background:
    linear-gradient(90deg, rgba(255, 250, 247, 0.95) 0%, rgba(255, 250, 247, 0.76) 42%, rgba(255, 250, 247, 0.24) 78%),
    linear-gradient(180deg, rgba(198, 111, 115, 0.08), rgba(32, 59, 43, 0.08));
}

.theme-c .button-primary {
  background: linear-gradient(135deg, var(--rose), var(--leaf));
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
}

.site-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 800;
}

.site-kicker {
  display: inline-flex;
  padding: 7px 11px;
  color: var(--leaf);
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--leaf);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-weight: 600;
  line-height: 1.14;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: 62px;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
}

h3 {
  margin-bottom: 10px;
  color: var(--leaf);
  font-size: 19px;
  line-height: 1.35;
}

.hero-copy > p:not(.site-kicker) {
  max-width: 610px;
  color: rgba(30, 41, 35, 0.78);
  font-size: 19px;
}

.hero-actions,
.mall-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(32, 59, 43, 0.13);
}

.button-primary {
  color: var(--paper);
  background: var(--leaf);
}

.button-secondary {
  color: var(--leaf);
  background: rgba(255, 253, 248, 0.78);
  border-color: var(--line);
}

.hero-panel {
  position: relative;
  z-index: 2;
  align-self: end;
  padding: 28px;
  background: rgba(255, 253, 248, 0.86);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel p {
  margin-bottom: 18px;
  color: var(--rose);
  font-weight: 800;
}

.hero-panel dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.hero-panel div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(32, 59, 43, 0.11);
}

.hero-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hero-panel dt {
  color: var(--leaf);
  font-size: 22px;
  font-weight: 900;
}

.hero-panel dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.notice-band {
  background: var(--leaf);
  color: var(--paper);
}

.notice-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0;
}

.notice-inner strong {
  flex: 0 0 auto;
  color: var(--peony);
}

.notice-inner span {
  color: rgba(255, 253, 248, 0.8);
}

.section {
  scroll-margin-top: 148px;
  padding: 90px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.split {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 54px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: 0.86fr 1.14fr;
}

.section-heading p,
.about-copy p,
.founder-card p,
.quote-card p,
.mall-copy p,
.contact-copy p,
.export-copy p,
.export-strength dd,
.language-grid p,
.media-card p,
.center-grid p,
.cooperation-grid p,
.capability-row p,
.process-list span,
.source-layout p {
  color: var(--muted);
}

.section-heading.narrow {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.international-section {
  padding: 70px 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.94), rgba(238, 243, 237, 0.82)),
    var(--paper);
}

.international-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 28px;
  align-items: stretch;
}

.international-panels {
  position: relative;
}

.lang-panel {
  display: none;
  min-height: 300px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(32, 59, 43, 0.07);
}

.lang-panel.is-active {
  display: block;
}

.lang-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 10px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.lang-panel h3 {
  margin: 0 0 14px;
  color: var(--leaf);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 31px;
  line-height: 1.24;
}

.lang-panel p {
  color: var(--muted);
}

.proof-section {
  padding: 54px 0;
  background: var(--cream);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-grid article {
  min-height: 172px;
  padding: 24px;
  background: var(--paper);
}

.proof-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--leaf);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 32px;
  font-weight: 700;
}

.proof-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.about-section,
.system-section,
.cooperation-section {
  background: var(--paper);
}

.about-copy {
  padding: 30px;
  background: var(--mist);
  border: 1px solid rgba(32, 59, 43, 0.08);
  border-radius: 8px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

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

.capability-row article,
.center-grid article,
.cooperation-grid article,
.media-card {
  padding: 24px;
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.capability-row span {
  color: var(--rose);
  font-weight: 900;
}

.founder-section,
.quality-section,
.source-backed-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f2ea 100%);
}

.founder-layout,
.mall-layout,
.contact-layout,
.source-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: stretch;
}

.founder-card,
.quote-card,
.mall-copy,
.phone-card,
.contact-copy,
.wechat-card {
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 59, 43, 0.06);
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--leaf);
}

.quote-card blockquote {
  margin: 0;
  color: var(--paper);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 28px;
  line-height: 1.5;
}

.quote-card p {
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.founder-role-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.founder-role-list p {
  margin: 0;
  padding: 13px 14px;
  color: rgba(255, 253, 248, 0.78);
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.13);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.65;
}

.founder-role-list strong {
  color: var(--paper);
}

.founder-portraits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.portrait-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 148px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(32, 59, 43, 0.055);
}

.portrait-card img,
.portrait-placeholder {
  width: 112px;
  height: 112px;
  border-radius: 8px;
}

.portrait-card img {
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  padding: 12px;
  color: rgba(32, 59, 43, 0.58);
  background:
    linear-gradient(135deg, rgba(32, 59, 43, 0.08), rgba(198, 111, 115, 0.09)),
    #fffaf3;
  border: 1px dashed rgba(32, 59, 43, 0.26);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.portrait-card h3 {
  margin: 0 0 8px;
  color: var(--leaf);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 26px;
}

.portrait-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.portrait-card small {
  display: block;
  margin-top: 6px;
  color: rgba(107, 117, 111, 0.86);
  font-size: 12px;
  line-height: 1.55;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.timeline article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
}

.timeline time {
  color: var(--rose);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 32px;
  font-weight: 700;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.founder-dossier {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.founder-dossier article {
  min-height: 230px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.founder-dossier span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.founder-dossier p {
  margin-bottom: 0;
  color: var(--muted);
}

.chain-section {
  background: var(--paper);
}

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

.chain-grid article {
  min-height: 190px;
  padding: 20px;
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chain-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-weight: 900;
}

.chain-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.center-grid,
.cooperation-grid,
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.center-grid article {
  min-height: 188px;
  background: var(--paper);
}

.center-grid article:nth-child(2n) {
  background: var(--mist);
}

.center-grid p,
.cooperation-grid p,
.media-card p {
  margin-bottom: 0;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  min-height: 82px;
  padding: 22px 24px 22px 72px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-list li::before {
  position: absolute;
  top: 20px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--paper);
  content: counter(process);
  counter-increment: process;
  background: var(--leaf);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.process-list strong {
  color: var(--leaf);
}

.mall-section {
  background: #f7efe8;
}

.mall-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0 0;
}

.mall-promise-grid span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  color: var(--leaf);
  background: rgba(32, 59, 43, 0.07);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

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

.mall-detail-grid article {
  min-height: 118px;
  padding: 16px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
}

.mall-detail-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 15px;
}

.mall-detail-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.phone-card {
  min-height: 470px;
  background: #fffdf8;
}

.mini-program-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.mall-side-stack {
  display: grid;
  gap: 16px;
}

.mini-program-card.is-highlighted {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(198, 111, 115, 0.2);
}

.mini-program-launch {
  position: relative;
  display: inline-flex;
  min-width: 210px;
}

.wechat-launch-tag {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  min-width: 210px;
  min-height: 48px;
}

.mini-program-launch.wechat-launch-ready .wechat-launch-tag {
  display: block;
}

.phone-bar {
  width: 86px;
  height: 5px;
  margin: 0 auto 28px;
  background: rgba(32, 59, 43, 0.22);
  border-radius: 999px;
}

.qr-image,
.wechat-qr-image {
  display: block;
  width: min(100%, 310px);
  aspect-ratio: 1;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(32, 59, 43, 0.08);
  object-fit: cover;
  object-position: center;
}

.qr-image {
  padding: 10px;
}

.mini-program-note {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(32, 59, 43, 0.72);
  font-size: 14px;
}

.mini-service-card {
  padding: 24px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 59, 43, 0.06);
}

.mini-service-card > span,
.flower-group-card > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.mini-service-card h3,
.flower-group-card h3 {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 20px;
  line-height: 1.35;
}

.mini-service-card p,
.flower-group-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.flower-group-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(238, 243, 237, 0.94));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(32, 59, 43, 0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.flower-group-card.is-highlighted {
  transform: translateY(-2px);
  box-shadow: 0 22px 54px rgba(198, 111, 115, 0.2);
}

.flower-group-card .wechat-qr-image {
  width: min(100%, 236px);
  margin: 10px auto 16px;
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 15, 0.58);
  backdrop-filter: blur(8px);
}

.qr-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 30px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 232, 0.98));
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(10, 22, 15, 0.28);
}

.qr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  padding: 0;
  color: var(--leaf);
  background: rgba(32, 59, 43, 0.06);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 999px;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.qr-modal-eyebrow {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.qr-modal-panel h2 {
  margin: 0 36px 10px 0;
  font-size: 28px;
}

.qr-modal-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.qr-modal-panel img {
  display: block;
  width: min(100%, 300px);
  margin: 18px auto 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(32, 59, 43, 0.08);
  object-fit: contain;
}

.qr-modal-tip {
  margin: 0;
  font-size: 13px;
  text-align: center;
}

body.modal-open {
  overflow: hidden;
}

.qr-placeholder,
.wechat-placeholder {
  display: grid;
  place-items: center;
  position: relative;
  min-height: 270px;
  overflow: hidden;
  color: var(--leaf);
  background:
    linear-gradient(90deg, rgba(32, 59, 43, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(32, 59, 43, 0.08) 1px, transparent 1px),
    #fffaf3;
  background-size: 18px 18px;
  border: 1px dashed rgba(32, 59, 43, 0.28);
  border-radius: 8px;
  text-align: center;
}

.qr-placeholder span {
  position: absolute;
  width: 42px;
  height: 42px;
  border: 8px solid var(--leaf);
}

.qr-placeholder span:nth-child(1) {
  top: 22px;
  left: 22px;
}

.proof-heading {
  max-width: 920px;
  margin-bottom: 18px;
}

.proof-heading h2 {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: clamp(30px, 4vw, 50px);
}

.proof-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.qr-placeholder span:nth-child(2) {
  top: 22px;
  right: 22px;
}

.qr-placeholder span:nth-child(3) {
  right: 22px;
  bottom: 22px;
}

.qr-placeholder span:nth-child(4) {
  bottom: 22px;
  left: 22px;
  border-color: var(--rose);
}

.qr-placeholder strong,
.qr-placeholder small,
.wechat-placeholder strong,
.wechat-placeholder small {
  display: block;
  position: relative;
}

.qr-placeholder strong,
.wechat-placeholder strong {
  font-size: 24px;
}

.qr-placeholder small,
.wechat-placeholder small {
  color: var(--muted);
}

.phone-card p,
.wechat-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.cooperation-grid article {
  background: var(--paper);
}

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

.cooperation-card {
  display: flex;
  flex-direction: column;
  min-height: 440px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(32, 59, 43, 0.055);
}

.cooperation-card > span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 9px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.cooperation-card h3 {
  margin: 0 0 14px;
  color: var(--leaf);
  font-size: 20px;
  line-height: 1.35;
}

.cooperation-card dl {
  display: grid;
  gap: 11px;
  margin: 0;
}

.cooperation-card div {
  padding-top: 11px;
  border-top: 1px solid rgba(32, 59, 43, 0.1);
}

.cooperation-card dt {
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}

.cooperation-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.72;
}

.cooperation-note {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--leaf);
  border-radius: 8px;
}

.cooperation-note strong {
  color: var(--paper);
  font-size: 18px;
}

.cooperation-note p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
}

.export-section {
  background:
    linear-gradient(180deg, rgba(32, 59, 43, 0.95), rgba(32, 59, 43, 0.86)),
    url("assets/report-dounan-market.jpg");
  background-position: center;
  background-size: cover;
}

.export-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: stretch;
}

.export-copy,
.export-strength,
.language-grid article {
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(7, 22, 15, 0.18);
}

.export-copy {
  padding: 34px;
}

.export-copy h2 {
  color: var(--leaf);
}

.export-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.export-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  color: var(--leaf);
  background: rgba(32, 59, 43, 0.08);
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.export-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.export-process-grid article {
  min-height: 108px;
  padding: 15px;
  background: rgba(32, 59, 43, 0.06);
  border: 1px solid rgba(32, 59, 43, 0.11);
  border-radius: 8px;
}

.export-process-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 14px;
}

.export-process-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.export-strength {
  overflow: hidden;
}

.export-strength img {
  display: block;
  width: 100%;
  height: 236px;
  object-fit: cover;
}

.export-strength dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.export-strength div {
  padding: 18px 22px;
  background: var(--paper);
}

.export-strength dt {
  color: var(--leaf);
  font-family: "Songti SC", "STSong", "Noto Serif SC", serif;
  font-size: 26px;
  font-weight: 800;
}

.export-strength dd {
  margin: 4px 0 0;
  font-size: 14px;
}

.export-contact-card {
  padding: 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.export-contact-card > span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.export-contact-card h3 {
  margin: 0 0 10px;
  color: var(--leaf);
  font-size: 20px;
}

.contact-phone {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--leaf);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.export-qr-frame {
  display: grid;
  place-items: center;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(32, 59, 43, 0.12);
  border-radius: 8px;
}

.export-contact-card .wechat-qr-image {
  width: min(100%, 300px);
  max-height: none;
  border: 0;
  box-shadow: none;
  object-fit: contain;
}

.export-contact-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.language-grid article {
  min-height: 210px;
  padding: 24px;
}

.language-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 10px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.site-gallery-section {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.72), rgba(255, 253, 248, 0.98));
}

.gallery-layout {
  display: grid;
  gap: 20px;
}

.gallery-video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(32, 59, 43, 0.08);
}

.gallery-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-video-card > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 22px;
  background: rgba(32, 59, 43, 0.06);
  border: 1px solid rgba(32, 59, 43, 0.1);
  border-radius: 8px;
}

.gallery-video-card span,
.gallery-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
}

.gallery-video-card h3,
.gallery-card h3 {
  margin: 8px 0 0;
  color: var(--leaf);
  line-height: 1.35;
}

.gallery-video-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.gallery-card {
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(32, 59, 43, 0.06);
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.gallery-card div {
  padding: 16px;
}

.gallery-card h3 {
  font-size: 18px;
}

.media-section {
  background: var(--mist);
}

.media-category-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 24px;
}

.media-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  color: var(--leaf);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.media-filter-button.is-active,
.media-filter-button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--leaf);
  border-color: var(--leaf);
}

.video-report-panel {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.video-report-panel article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 26px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(32, 59, 43, 0.95), rgba(198, 111, 115, 0.72)),
    var(--leaf);
  border-radius: 8px;
}

.video-report-panel article::after,
.media-card.video-card::after {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 46px;
  height: 46px;
  content: "";
  background:
    linear-gradient(90deg, transparent 0 36%, rgba(255, 253, 248, 0.92) 36% 64%, transparent 64%),
    rgba(255, 253, 248, 0.18);
  clip-path: polygon(28% 18%, 28% 82%, 82% 50%);
  opacity: 0.78;
}

.video-report-panel span,
.video-report-panel h3,
.video-report-panel p,
.video-report-panel a {
  position: relative;
  z-index: 1;
}

.video-report-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 9px;
  color: var(--peony);
  background: rgba(255, 253, 248, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.video-report-panel h3 {
  max-width: 560px;
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 23px;
  line-height: 1.36;
}

.video-report-panel p {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 14px;
}

.video-report-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--paper);
  font-weight: 900;
}

.media-grid {
  align-items: stretch;
}

.media-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 260px;
  background: var(--paper);
}

.media-card.is-hidden,
.video-report-panel article.is-hidden {
  display: none;
}

.media-card.highlight {
  grid-column: span 2;
  background: var(--leaf);
}

.media-cover {
  display: block;
  width: calc(100% + 64px);
  height: 210px;
  margin: -32px -32px 22px;
  object-fit: cover;
  background: #f1ece4;
  border-bottom: 1px solid rgba(32, 59, 43, 0.1);
}

.media-cover-contain {
  object-fit: contain;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(246, 240, 230, 0.92), rgba(255, 253, 248, 0.98)),
    #fffaf3;
}

.award-cover {
  display: grid;
  place-items: center;
  min-height: 210px;
  margin: -32px -32px 22px;
  padding: 28px;
  color: var(--leaf);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.92), rgba(245, 236, 222, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(198, 111, 115, 0.18), transparent 34%);
  border-bottom: 1px solid rgba(32, 59, 43, 0.1);
}

.award-cover strong {
  display: block;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
}

.award-cover span {
  margin: 12px 0 0;
  padding: 8px 16px;
  color: #fffdf8;
  background: var(--rose);
  border-radius: 999px;
  letter-spacing: 0;
}

.media-card.highlight .media-cover {
  height: 280px;
  border-bottom-color: rgba(255, 253, 248, 0.18);
}

.media-card.highlight h3,
.media-card.highlight p,
.media-card.highlight a {
  color: var(--paper);
}

.media-card.highlight span {
  color: var(--peony);
}

.media-card.video-card,
.media-card.note-card {
  position: relative;
  min-height: 270px;
}

.media-card.video-card {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(32, 59, 43, 0.95), rgba(79, 112, 84, 0.78)),
    var(--leaf);
}

.media-card.video-card span {
  color: var(--peony);
  background: rgba(255, 253, 248, 0.12);
}

.media-card.video-card h3,
.media-card.video-card p,
.media-card.video-card a {
  color: var(--paper);
}

.media-card.note-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 240, 230, 0.94)),
    var(--paper);
}

.media-card span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 4px 9px;
  color: var(--rose);
  background: rgba(198, 111, 115, 0.09);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.media-card a {
  margin-top: auto;
  padding-top: 18px;
  color: var(--leaf);
  font-weight: 900;
}

.source-layout {
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.4fr);
  align-items: start;
  gap: 28px;
}

.source-backed-section .section-heading {
  position: sticky;
  top: 92px;
}

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

.source-list a,
.source-list span {
  display: block;
  min-height: 68px;
  padding: 12px 14px;
  color: var(--leaf);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.source-list span {
  color: var(--muted);
}

.contact-section {
  padding-bottom: 100px;
  background: var(--leaf);
}

.contact-copy,
.wechat-card {
  background: var(--paper);
}

.wechat-card > span {
  display: block;
  margin-bottom: 16px;
  color: var(--rose);
  font-weight: 900;
}

.wechat-card h3 {
  margin: 0 0 4px;
  color: var(--leaf);
  font-size: 24px;
}

.contact-role {
  margin: 0 0 16px;
  color: var(--leaf);
  font-weight: 900;
  text-align: left;
}

.wechat-placeholder {
  min-height: 250px;
  border-style: solid;
}

.wechat-qr-image {
  width: min(100%, 290px);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 52px;
  color: rgba(255, 253, 248, 0.7);
  background: #15291d;
}

.site-footer strong,
.site-footer span {
  display: block;
}

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

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.mobile-quick-bar {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1040px) {
  .site-header {
    padding-right: 26px;
    padding-left: 26px;
  }

  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 156px 36px 54px;
  }

  .hero-panel {
    max-width: 560px;
    align-self: auto;
  }

  .proof-grid,
  .capability-row,
  .timeline,
  .founder-dossier,
  .founder-portraits,
  .chain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .split.reverse,
  .international-layout,
  .founder-layout,
  .mall-layout,
  .gallery-video-card,
  .contact-layout,
  .export-layout,
  .source-layout {
    grid-template-columns: 1fr;
  }

  .source-backed-section .section-heading {
    position: static;
  }

  .source-list {
    grid-template-columns: 1fr;
  }

  .center-grid,
  .cooperation-grid,
  .cooperation-matrix,
  .language-grid,
  .gallery-grid,
  .video-report-panel,
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 82px;
  }

  .site-header {
    min-height: 66px;
    padding: 12px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-switcher {
    order: 2;
    margin-left: auto;
  }

  .language-select {
    min-width: 116px;
  }

  .language-select select {
    min-height: 34px;
    padding-left: 11px;
    font-size: 12px;
  }

  .menu-toggle {
    order: 3;
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 13px 8px;
  }

  .version-switcher {
    top: 66px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
    padding: 8px 12px;
  }

  .version-switcher a {
    justify-content: center;
    min-height: 36px;
    padding: 7px 8px;
    font-size: 12px;
    line-height: 1.25;
    text-align: center;
    white-space: normal;
  }

  .version-switcher span {
    display: none;
  }

  .hero {
    min-height: auto;
    gap: 20px;
    padding: 138px 18px 30px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.92) 56%, rgba(255, 253, 248, 0.78) 100%),
      linear-gradient(180deg, rgba(32, 59, 43, 0.08), rgba(32, 59, 43, 0.12));
  }

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

  h1 {
    font-size: 31px;
    line-height: 1.18;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy > p:not(.site-kicker) {
    font-size: 15px;
  }

  .hero-panel {
    display: none;
  }

  .hero-actions,
  .mall-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .mall-actions .button,
  .contact-actions .button,
  .mini-program-launch {
    width: 100%;
  }

  .notice-inner {
    display: block;
  }

  .notice-inner strong {
    display: block;
    margin-bottom: 4px;
  }

  .section {
    padding: 64px 0;
  }

  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .proof-grid,
  .capability-row,
  .timeline,
  .founder-dossier,
  .founder-portraits,
  .chain-grid,
  .center-grid,
  .cooperation-grid,
  .cooperation-matrix,
  .language-grid,
  .gallery-grid,
  .video-report-panel,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .gallery-video-card {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .gallery-video-card > div {
    min-height: auto;
    padding: 18px;
  }

  .lang-panel {
    min-height: auto;
    padding: 24px;
  }

  .cooperation-card {
    min-height: auto;
    padding: 20px;
  }

  .cooperation-note {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .mall-layout {
    grid-template-columns: 1fr;
  }

  .phone-card {
    min-height: auto;
  }

  .mall-detail-grid,
  .export-process-grid {
    grid-template-columns: 1fr;
  }

  .export-copy {
    padding: 24px;
  }

  .export-strength img {
    height: 190px;
  }

  .media-card.highlight {
    grid-column: auto;
  }

  .portrait-card {
    grid-template-columns: 92px minmax(0, 1fr);
    min-height: 126px;
  }

  .portrait-card img,
  .portrait-placeholder {
    width: 92px;
    height: 92px;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-right: 20px;
  }

  .site-footer {
    display: block;
    padding: 24px 20px;
  }

  .site-footer p {
    margin-top: 12px;
  }

  .mobile-quick-bar {
    position: fixed;
    right: 12px;
    bottom: 12px;
    left: 12px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    padding: 8px;
    background: rgba(255, 253, 248, 0.94);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 16px 44px rgba(32, 59, 43, 0.18);
    backdrop-filter: blur(16px);
  }

  .mobile-quick-bar a {
    display: grid;
    place-items: center;
    min-height: 42px;
    color: var(--paper);
    background: var(--leaf);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
  }
}
