:root {
  color-scheme: light;
  --bg: #eef2ef;
  --surface: #fbfcf8;
  --surface-strong: #ffffff;
  --ink: #202a27;
  --muted: #65726d;
  --line: #d6ded7;
  --soft-line: #e7eee8;
  --green: #246657;
  --green-2: #deeee7;
  --rose: #9b4b5d;
  --rose-2: #f7e5eb;
  --amber: #946719;
  --amber-2: #f5e7c4;
  --blue: #355f78;
  --blue-2: #dceaf2;
  --shadow: 0 18px 44px rgba(32, 42, 39, 0.12);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #eef3ef 0%, #f7f8f4 42%, #edf1f5 100%);
  color: var(--ink);
  overflow-x: hidden;
}

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

button {
  border: 0;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.site-shell {
  min-height: 100vh;
  background: #f4eee3;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 54px);
  background: rgba(249, 244, 234, 0.92);
  border-bottom: 1px solid rgba(34, 74, 66, 0.12);
  backdrop-filter: blur(16px);
}

.site-logo,
.site-links a {
  color: #183f36;
  text-decoration: none;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
}

.site-logo-tagline {
  display: inline-block;
  padding-left: 10px;
  border-left: 1px solid rgba(29, 81, 70, 0.18);
  color: #446158;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-logo-image {
  display: block;
  width: auto;
  height: 42px;
  max-width: min(220px, 46vw);
  object-fit: contain;
}

.site-logo-image.mark-only {
  width: 38px;
  height: 38px;
  max-width: none;
  border-radius: 8px;
}

.site-logo-word {
  color: #173d35;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.site-logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(145deg, #1d5146, #2e8a7f);
  box-shadow: 0 10px 24px rgba(29, 81, 70, 0.18);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 18px 30px;
  color: rgba(35, 55, 50, 0.68);
  font-size: 13px;
  line-height: 1.7;
  background: #f4eee3;
  border-top: 1px solid rgba(34, 74, 66, 0.1);
}

.site-footer a {
  color: rgba(29, 81, 70, 0.78);
  text-decoration: none;
}

.site-footer a:hover {
  color: #173d35;
  text-decoration: underline;
}

.site-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #36554d;
  font-size: 14px;
}

.site-links button {
  border: 1px solid rgba(36, 102, 87, 0.2);
  border-radius: 999px;
  padding: 8px 14px;
  background: #ffffff;
  color: #1d5146;
  font-weight: 700;
}

.site-login-button {
  cursor: pointer;
}

.shanliye-hero {
  min-height: calc(100vh - 66px);
  display: flex;
  align-items: center;
  padding: clamp(52px, 8vw, 118px) clamp(18px, 7vw, 96px);
  background:
    linear-gradient(90deg, rgba(248, 242, 231, 0.98) 0%, rgba(248, 242, 231, 0.9) 46%, rgba(248, 242, 231, 0.58) 100%),
    url("./assets/shanliye-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(34, 74, 66, 0.12);
}

.hero-content {
  max-width: 760px;
}

.site-kicker {
  display: inline-flex;
  color: #c7502d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
}

.shanliye-hero h1,
.section-copy h2 {
  margin: 0;
  color: #183f36;
  letter-spacing: 0;
}

.shanliye-hero h1 {
  margin-top: 18px;
  max-width: 680px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: 1.05;
}

.shanliye-hero p,
.section-copy p {
  color: #35433f;
  line-height: 1.8;
}

.shanliye-hero p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 18px;
}

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

.site-primary,
.site-secondary,
.site-text-button {
  min-height: 46px;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.35;
}

.site-primary {
  background: #1d5146;
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(29, 81, 70, 0.22);
}

.site-secondary {
  border: 1px solid rgba(29, 81, 70, 0.22);
  background: #ffffff;
  color: #1d5146;
}

.site-text-button {
  background: transparent;
  color: #a44527;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(29, 81, 70, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.58);
  color: #36554d;
  font-size: 13px;
  font-weight: 700;
}

.site-band {
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 72px);
}

.intro-band,
.share-band {
  background: #fbf8f1;
}

.method-band,
.ai-band {
  background: #eff5ef;
}

.diagnosis-band {
  background: #f4eadc;
}

.site-container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-copy {
  max-width: 760px;
}

.section-copy.compact {
  max-width: 700px;
}

.section-copy h2 {
  margin-top: 12px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.section-copy p {
  margin: 16px 0 0;
  font-size: 16px;
}

.audience-grid,
.method-path,
.resource-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

.audience-card,
.method-path article,
.resource-card,
.diagnosis-list div {
  border: 1px solid rgba(34, 74, 66, 0.12);
  border-radius: 8px;
  background: #ffffff;
}

.audience-card,
.resource-card {
  padding: 20px;
}

.audience-card span,
.resource-card span,
.method-path span,
.diagnosis-list span {
  color: #c7502d;
  font-size: 13px;
  font-weight: 800;
}

.audience-card h3,
.resource-card h3 {
  margin: 12px 0 0;
  color: #1d5146;
  font-size: 20px;
  letter-spacing: 0;
}

.audience-card p,
.resource-card p,
.method-path p,
.diagnosis-list p {
  margin: 8px 0 0;
  color: #596661;
  line-height: 1.65;
}

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

.method-path article {
  min-height: 148px;
  padding: 18px;
}

.method-path strong {
  display: block;
  margin-top: 12px;
  color: #1d5146;
  font-size: 18px;
}

.diagnosis-layout,
.share-layout,
.ai-layout {
  display: grid;
  gap: 28px;
  align-items: center;
}

.diagnosis-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
}

.diagnosis-list {
  display: grid;
  gap: 12px;
}

.diagnosis-list div {
  padding: 18px;
}

.share-layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

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

.map-preview {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(34, 74, 66, 0.13);
  border-radius: 8px;
  background: #f8f2e7;
  box-shadow: 0 18px 44px rgba(32, 42, 39, 0.12);
}

.map-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-layout {
  grid-template-columns: minmax(0, 1fr) auto;
}

.quiet-site {
  background: #f7f1e8;
}

.quiet-hero {
  min-height: calc(100vh - 66px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  padding: clamp(58px, 9vw, 120px) clamp(18px, 8vw, 112px);
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 1) 0%, rgba(247, 241, 232, 0.95) 58%, rgba(247, 241, 232, 0.76) 100%),
    url("./assets/shanliye-hero.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(29, 81, 70, 0.1);
}

.quiet-copy {
  max-width: 720px;
}

.quiet-copy h1 {
  max-width: 690px;
  margin: 18px 0 0;
  color: #173d35;
  font-size: clamp(42px, 6.5vw, 78px);
  line-height: 1.08;
  letter-spacing: 0;
}

.quiet-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: #394842;
  font-size: 18px;
  line-height: 1.9;
}

.quiet-actions {
  margin-top: 32px;
}

.quiet-card {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.88);
  box-shadow: 0 18px 42px rgba(32, 42, 39, 0.1);
}

.quiet-card span,
.quiet-statement span {
  color: #c7502d;
  font-size: 14px;
  font-weight: 800;
}

.quiet-card strong {
  display: block;
  margin-top: 16px;
  color: #1d5146;
  font-size: 28px;
  line-height: 1.22;
}

.quiet-card p {
  margin: 14px 0 0;
  color: #58655f;
  line-height: 1.75;
}

.quiet-section {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 7vw, 100px);
}

.quiet-statement {
  max-width: 930px;
  margin: 0 auto;
}

.quiet-statement h2,
.fit-copy h2,
.glimpse-copy h2,
.contact-inner h2 {
  margin: 14px 0 0;
  color: #173d35;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.22;
  letter-spacing: 0;
}

.quiet-statement p,
.glimpse-copy p,
.contact-inner p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #53615b;
  font-size: 17px;
  line-height: 1.9;
}

.fit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: #fffaf2;
}

.fit-copy {
  max-width: 640px;
}

.fit-lines {
  display: grid;
  gap: 14px;
}

.fit-lines p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(29, 81, 70, 0.14);
  color: #34443e;
  font-size: 18px;
  line-height: 1.65;
}

.glimpse-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: #eef5ef;
}

.glimpse-copy {
  max-width: 620px;
}

.glimpse-image {
  max-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: #f7f1e8;
  box-shadow: 0 18px 42px rgba(32, 42, 39, 0.12);
}

.glimpse-image img {
  display: block;
  width: 100%;
  transform: translateY(-4%);
}

.contact-section {
  background: #173d35;
  color: #ffffff;
}

.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2,
.contact-inner p {
  color: #ffffff;
}

.contact-inner p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.contact-inner .hero-actions {
  justify-content: center;
}

.contact-inner .site-primary {
  background: #ffffff;
  color: #173d35;
}

.contact-inner .site-text-button {
  color: #f2c5a2;
}

.partner-benefit {
  max-width: 560px;
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-benefit span {
  color: #f2c5a2;
  font-size: 13px;
  font-weight: 800;
}

.partner-benefit p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.75;
}

.glow-site {
  background:
    radial-gradient(circle at 8% 8%, rgba(240, 180, 135, 0.14), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(29, 81, 70, 0.1), transparent 24%),
    #f8f3ea;
  color: #1e2b27;
}

.glow-site *,
.contact-dialog * {
  min-width: 0;
}

.glow-site h1,
.glow-site h2,
.glow-site h3,
.glow-site p,
.glow-site strong,
.glow-site button {
  overflow-wrap: anywhere;
}

.glow-hero {
  min-height: clamp(620px, calc(100vh - 66px), 820px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) clamp(18px, 7vw, 106px) clamp(44px, 6vw, 78px);
  background:
    linear-gradient(90deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.94) 46%, rgba(248, 243, 234, 0.62) 72%, rgba(248, 243, 234, 0.34) 100%),
    url("./assets/shanliye-jade-atmosphere-v2.png") center right / cover no-repeat;
  border-bottom: 1px solid rgba(29, 81, 70, 0.12);
  overflow: hidden;
}

.glow-hero-copy {
  max-width: 760px;
}

.hero-side {
  display: grid;
  gap: 18px;
  align-self: stretch;
  align-content: center;
}

.hero-poster {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.88);
  box-shadow: 0 20px 48px rgba(30, 43, 39, 0.12);
  backdrop-filter: blur(10px);
}

.hero-poster img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.hero-card-preview {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px 28px 28px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(255, 250, 243, 0.9)),
    radial-gradient(circle at 100% 100%, rgba(240, 180, 135, 0.22), transparent 34%);
}

.hero-card-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  background: linear-gradient(90deg, #d05b34 0 54%, #238c82 54% 100%);
}

.hero-card-preview span {
  color: #c85230;
  font-size: 14px;
  font-weight: 900;
}

.hero-card-preview strong {
  display: block;
  max-width: 310px;
  color: #173d35;
  font-size: 32px;
  line-height: 1.2;
}

.hero-card-preview ul {
  display: grid;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.hero-card-preview li {
  position: relative;
  padding-left: 22px;
  color: #345148;
  font-size: 16px;
  line-height: 1.55;
}

.hero-card-preview li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #238c82;
}

.hero-card-preview li:nth-child(2)::before {
  background: #d05b34;
}

.hero-card-preview em {
  align-self: end;
  justify-self: stretch;
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 8px;
  background: #1d5b4d;
  color: #fffaf3;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
  text-align: center;
}

.glow-hero-copy h1,
.section-narrow h2,
.section-heading h2,
.selfcheck-card h2,
.method-copy h2,
.share-copy h2,
.contact-inner-v2 h2 {
  margin: 14px 0 0;
  color: #173d35;
  letter-spacing: 0;
}

.glow-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(38px, 5.2vw, 64px);
  line-height: 1.14;
}

.glow-hero-copy > p:not(.hero-note),
.section-narrow p,
.section-heading p,
.method-copy p,
.share-copy p,
.contact-inner-v2 p {
  color: #3d4b45;
  font-size: 18px;
  line-height: 1.88;
}

.glow-hero-copy > p:not(.hero-note) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 19px;
}

.glow-actions {
  margin-top: 30px;
}

.hero-note {
  margin: 20px 0 0;
  color: #8d573a;
  font-size: 14px;
  font-weight: 800;
}

.share-reason {
  align-self: end;
  padding: 26px;
  border: 1px solid rgba(29, 81, 70, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 18px 42px rgba(30, 43, 39, 0.1);
}

.share-reason span,
.knowledge-note span,
.fit-split span,
.partner-benefit-v2 span {
  color: #b84b2d;
  font-size: 13px;
  font-weight: 900;
}

.share-reason strong {
  display: block;
  margin-top: 15px;
  color: #173d35;
  font-size: 24px;
  line-height: 1.32;
}

.share-reason p,
.knowledge-note p,
.partner-benefit-v2 p {
  margin: 14px 0 0;
  color: #5e6b65;
  line-height: 1.78;
}

.glow-section {
  padding: clamp(68px, 8vw, 112px) clamp(18px, 7vw, 100px);
}

.section-narrow,
.section-heading,
.method-copy,
.contact-inner-v2 {
  max-width: 850px;
}

.section-narrow {
  margin: 0 auto;
}

.section-narrow h2,
.section-heading h2,
.selfcheck-card h2,
.method-copy h2,
.share-copy h2,
.contact-inner-v2 h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.26;
}

.quiet-paragraphs {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.quiet-paragraphs p {
  margin: 0;
  font-size: 18px;
}

.mirror-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 250, 243, 0.9)),
    url("./assets/shanliye-jade-atmosphere-v2.png") right center / 58% auto no-repeat;
}

.mirror-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.mirror-visual {
  margin: 0;
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 32px;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 239, 225, 0.88)),
    url("./assets/shanliye-jade-atmosphere-v2.png") center / cover no-repeat;
  box-shadow: 0 18px 42px rgba(30, 43, 39, 0.08);
}

.mirror-visual img {
  width: min(210px, 70%);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(29, 81, 70, 0.18);
}

.mirror-visual figcaption {
  align-self: end;
  margin-top: 22px;
  text-align: center;
}

.mirror-visual span {
  display: block;
  color: #a94d30;
  font-size: 13px;
  font-weight: 900;
}

.mirror-visual strong {
  display: block;
  margin-top: 8px;
  color: #173d35;
  font-size: 22px;
  line-height: 1.35;
}

.fit-section-v2 {
  background:
    linear-gradient(90deg, rgba(238, 245, 239, 0.98) 0%, rgba(238, 245, 239, 0.94) 60%, rgba(238, 245, 239, 0.76) 100%),
    url("./assets/shanliye-jade-atmosphere-v2.png") right center / 48% auto no-repeat;
}

.section-heading p {
  max-width: 680px;
  margin: 18px 0 0;
}

.fit-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 42px);
  max-width: 1040px;
  margin-top: 44px;
}

.fit-split article {
  min-height: 100%;
  padding: 30px;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.fit-split article + article {
  background: rgba(248, 243, 234, 0.78);
}

.fit-split p {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 81, 70, 0.12);
  color: #35443f;
  line-height: 1.7;
}

.pain-section {
  background: #fffaf3;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin-top: 40px;
  background: rgba(29, 81, 70, 0.16);
}

.pain-grid article {
  min-height: 230px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.86);
}

.pain-grid span,
.source-grid span,
.path-steps span,
.deliverables-grid p::before {
  color: #b84b2d;
  font-size: 13px;
  font-weight: 900;
}

.pain-grid h3,
.source-grid h3,
.path-steps h3,
.faq-list-v2 h3 {
  margin: 12px 0 0;
  color: #173d35;
  font-size: 22px;
  line-height: 1.28;
}

.pain-grid p,
.source-grid p,
.path-steps p,
.faq-list-v2 p {
  margin: 14px 0 0;
  color: #53615b;
  line-height: 1.72;
}

.source-section {
  background:
    linear-gradient(90deg, rgba(23, 61, 53, 0.98), rgba(23, 61, 53, 0.94)),
    url("./assets/kewei-swirl-lines.png") right center / 58% auto no-repeat;
  color: #ffffff;
}

.source-section .section-heading h2,
.source-section .section-heading p {
  color: #ffffff;
}

.source-section .site-kicker {
  color: #f0c47d;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1160px;
  margin-top: 42px;
}

.source-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.source-grid span {
  color: #f0c47d;
}

.source-grid h3,
.source-grid p {
  color: #ffffff;
}

.source-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(255, 250, 243, 0.9)),
    url("./assets/shanliye-jade-atmosphere-v2.png") right center / 48% auto no-repeat;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.62fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
  margin: 0;
  min-height: 390px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: #173d35;
  box-shadow: 0 18px 42px rgba(30, 43, 39, 0.1);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  opacity: 0.74;
}

.about-visual figcaption {
  position: absolute;
  align-self: end;
  justify-self: center;
  margin: 0 24px 28px;
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  text-align: center;
}

.about-visual span {
  color: #b84b2d;
  font-size: 13px;
  font-weight: 900;
}

.about-visual strong {
  display: block;
  margin-top: 8px;
  color: #173d35;
  font-size: 22px;
  line-height: 1.35;
}

.path-section {
  background: #fbf8f0;
}

.path-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin-top: 42px;
  background: rgba(29, 81, 70, 0.16);
}

.path-steps article {
  min-height: 245px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
}

.difference-section {
  background: #eef5ef;
}

.difference-list-v2 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin-top: 36px;
}

.difference-list-v2 p {
  min-height: 150px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(29, 81, 70, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.difference-list-v2 strong,
.difference-list-v2 span {
  display: block;
}

.difference-list-v2 strong {
  color: #173d35;
  font-size: 20px;
  line-height: 1.35;
}

.difference-list-v2 span {
  margin-top: 12px;
  color: #53615b;
  line-height: 1.68;
}

.deliverables-section {
  background:
    linear-gradient(180deg, rgba(238, 241, 244, 0.97), rgba(238, 241, 244, 0.94)),
    url("./assets/kewei-hero-gradient.png") center / cover no-repeat;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin-top: 38px;
  background: rgba(29, 81, 70, 0.14);
}

.deliverables-grid p {
  position: relative;
  min-height: 96px;
  margin: 0;
  padding: 22px 20px 20px 42px;
  background: #ffffff;
  color: #173d35;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.deliverables-grid p::before {
  content: "•";
  position: absolute;
  left: 22px;
  top: 22px;
  color: #b84b2d;
}

.faq-section {
  background: #fffaf3;
}

.faq-list-v2 {
  display: grid;
  gap: 14px;
  max-width: 920px;
  margin: 36px auto 0;
}

.faq-list-v2 div {
  padding: 22px 24px;
  border: 1px solid rgba(29, 81, 70, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.faq-list-v2 h3 {
  margin: 0;
  font-size: 20px;
}

.selfcheck-section {
  background: #173d35;
  color: #ffffff;
}

.selfcheck-card {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.selfcheck-card h2 {
  color: #ffffff;
}

.selfcheck-card .site-kicker {
  color: #f0b487;
}

.selfcheck-visual {
  height: 230px;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.selfcheck-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

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

.question-list p {
  margin: 0;
  padding: 20px 20px 20px 22px;
  border-left: 3px solid #f0b487;
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(290px, 0.82fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(251, 248, 240, 0.98), rgba(251, 248, 240, 0.9)),
    url("./assets/shanliye-jade-atmosphere-v2.png") right bottom / 52% auto no-repeat;
}

.method-copy {
  grid-column: 1 / 2;
}

.method-copy p {
  margin: 18px 0 0;
}

.method-triplet {
  grid-column: 1 / 2;
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.method-triplet article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  padding: 22px 0;
  border-top: 1px solid rgba(29, 81, 70, 0.14);
}

.method-triplet span {
  grid-row: span 2;
  color: #b84b2d;
  font-size: 14px;
  font-weight: 900;
}

.method-triplet h3 {
  margin: 0;
  color: #173d35;
  font-size: 23px;
  line-height: 1.25;
}

.method-triplet p {
  margin: 8px 0 0;
  color: #53615b;
  line-height: 1.72;
}

.method-visual {
  grid-row: 1 / span 2;
  grid-column: 2 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: #f8f3ea;
  box-shadow: 0 20px 46px rgba(30, 43, 39, 0.12);
}

.method-visual img {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.result-section {
  background:
    linear-gradient(180deg, rgba(238, 241, 244, 0.97), rgba(238, 241, 244, 0.94)),
    url("./assets/shanliye-jade-atmosphere-v2.png") center / cover no-repeat;
}

.result-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  gap: clamp(16px, 4vw, 34px);
  align-items: center;
  max-width: 980px;
  margin-top: 34px;
}

.result-visual div {
  min-height: 146px;
  padding: 24px;
  border: 1px solid rgba(29, 81, 70, 0.13);
  border-radius: 8px;
  background: #ffffff;
}

.result-visual div:first-child {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(245, 239, 230, 0.8)),
    repeating-linear-gradient(45deg, rgba(29, 81, 70, 0.04) 0 8px, transparent 8px 16px);
}

.result-visual span {
  color: #b84b2d;
  font-size: 13px;
  font-weight: 900;
}

.result-visual p {
  margin: 12px 0 0;
  color: #173d35;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
}

.result-visual img {
  width: 92px;
  height: 92px;
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(29, 81, 70, 0.18);
}

.result-lines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin-top: 34px;
  background: rgba(29, 81, 70, 0.16);
}

.result-lines p {
  min-height: 138px;
  margin: 0;
  padding: 22px;
  background: #ffffff;
  color: #1e3e37;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.public-share-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.98), rgba(255, 248, 236, 0.92)),
    url("./assets/shanliye-jade-atmosphere-v2.png") right center / 45% auto no-repeat;
}

.share-copy {
  max-width: 760px;
}

.share-copy p {
  margin: 18px 0 0;
  max-width: 680px;
}

.share-copy .site-secondary {
  margin-top: 28px;
}

.knowledge-note {
  padding: 26px;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(30, 43, 39, 0.08);
}

.share-visual-stack {
  display: grid;
  gap: 14px;
}

.share-map {
  height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 81, 70, 0.14);
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 16px 38px rgba(30, 43, 39, 0.08);
}

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

.knowledge-note strong {
  display: block;
  margin-top: 12px;
  color: #173d35;
  font-size: 22px;
  line-height: 1.32;
}

.contact-section-v2 {
  background:
    linear-gradient(90deg, rgba(23, 61, 53, 0.98), rgba(23, 61, 53, 0.9)),
    url("./assets/shanliye-jade-atmosphere-v2.png") center / cover no-repeat;
  color: #ffffff;
}

.contact-inner-v2 {
  margin: 0 auto;
  text-align: center;
}

.contact-inner-v2 .site-kicker {
  color: #f0b487;
}

.contact-inner-v2 h2,
.contact-inner-v2 p {
  color: #ffffff;
}

.contact-inner-v2 p {
  max-width: 720px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
}

.contact-inner-v2 .hero-actions {
  justify-content: center;
}

.contact-inner-v2 .site-primary {
  background: #ffffff;
  color: #173d35;
}

.partner-benefit-v2 {
  max-width: 620px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.partner-benefit-v2 p {
  font-size: 14px;
}

.contact-dialog-body p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}

.wechat-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 14px;
  align-items: center;
  margin: 0 20px 16px;
  padding: 14px;
  border: 1px solid rgba(36, 102, 87, 0.16);
  border-radius: 8px;
  background: #f7fbf7;
}

.wechat-contact span {
  color: var(--muted);
  font-size: 13px;
}

.wechat-contact strong {
  color: #173d35;
  font-size: 22px;
  letter-spacing: 0;
}

.wechat-contact button {
  grid-row: span 2;
}

.contact-dialog .script-box {
  white-space: pre-wrap;
}

.platform-login-body {
  display: grid;
  gap: 14px;
  padding: 0 20px 16px;
}

.platform-login-body .field {
  margin: 0;
}

.login-status {
  padding: 12px 14px;
  border: 1px solid rgba(36, 102, 87, 0.14);
  border-radius: 8px;
  background: #f7fbf7;
  color: #5d6d67;
  font-size: 14px;
  line-height: 1.55;
}

.login-status.error {
  border-color: rgba(184, 75, 45, 0.28);
  background: #fff5ef;
  color: #a63e27;
}

.workbench-hidden {
  display: none !important;
}

.site-hidden {
  display: none !important;
}

.app-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: linear-gradient(180deg, #e6eee8 0%, #f5f7f2 100%);
  border-right: 1px solid var(--line);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(145deg, #153d35, #2c6c5c);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(36, 102, 87, 0.22);
}

.brand-mark span:first-child {
  position: absolute;
  width: 25px;
  height: 25px;
  left: 8px;
  top: 8px;
  border: 2px solid #d6c19a;
  border-radius: 50%;
}

.brand-mark span:last-child {
  position: absolute;
  width: 22px;
  height: 2px;
  left: 20px;
  top: 27px;
  background: #efb6a4;
  transform: rotate(-28deg);
}

.brand-block h1,
.session-title h2,
.pane-header h3,
.dialog-head h2 {
  margin: 0;
}

.brand-block h1 {
  font-size: 25px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-block p,
.session-title p,
.pane-header p,
.dialog-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.warning-text {
  color: #8b5a18 !important;
  font-weight: 700;
}

.side-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mode-panel {
  padding: 8px;
  border: 1px solid rgba(36, 102, 87, 0.11);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 8px;
}

.nav-button {
  text-align: left;
  border-radius: 8px;
  padding: 12px;
  background: transparent;
  color: var(--ink);
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.nav-button:hover {
  background: rgba(255, 255, 255, 0.72);
}

.nav-button strong,
.nav-button span {
  display: block;
}

.nav-button strong {
  font-size: 14px;
}

.nav-button span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.nav-button.active {
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(34, 74, 66, 0.12);
  border-left: 3px solid var(--green);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #4b514d;
  font-size: 13px;
  font-weight: 700;
}

.icon-button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font-size: 20px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
}

.visitor-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.visitor-item {
  text-align: left;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px;
  color: var(--ink);
}

.visitor-item.active {
  border-color: rgba(47, 111, 94, 0.42);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(36, 102, 87, 0.12);
}

.visitor-item strong {
  display: block;
  font-size: 15px;
}

.visitor-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.profile-panel {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(68, 56, 45, 0.12);
}

.data-panel {
  gap: 8px;
}

.wide-button {
  width: 100%;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 700;
}

.primary-wide {
  background: var(--green);
  color: #fff;
  border-color: rgba(47, 111, 94, 0.5);
}

.support-wide {
  background: #fff8ec;
  color: #65461b;
  border-color: rgba(148, 103, 25, 0.26);
}

.profile-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(68, 56, 45, 0.1);
}

.profile-row span {
  color: var(--muted);
}

.profile-row strong {
  text-align: right;
  font-weight: 700;
}

.workspace {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.home-panel {
  background: linear-gradient(135deg, #fbfcf8 0%, #eef5ef 58%, #edf4f7 100%);
  border-bottom: 1px solid var(--line);
  padding: 26px 28px;
}

.home-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.eyebrow {
  display: inline-block;
  color: #346f61;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
}

.home-hero h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: 0;
}

.home-hero p {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.home-card {
  text-align: left;
  min-height: 112px;
  border-radius: 8px;
  border: 1px solid rgba(214, 222, 215, 0.92);
  background: #fff;
  color: var(--ink);
  padding: 16px;
  box-shadow: 0 14px 34px rgba(32, 42, 39, 0.09);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.home-card:hover {
  border-color: rgba(36, 102, 87, 0.34);
  box-shadow: 0 18px 38px rgba(32, 42, 39, 0.13);
  transform: translateY(-1px);
}

.home-card.primary {
  background: linear-gradient(145deg, #183d35, #246657);
  border-color: #246657;
  color: #fff;
}

.home-card span {
  display: block;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 9px;
}

.home-card.primary span {
  color: #d9c79f;
}

.home-card strong {
  display: block;
  line-height: 1.5;
  font-size: 16px;
}

.topbar {
  min-height: 80px;
  background: rgba(251, 252, 248, 0.94);
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(10px);
}

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

.session-title h2 {
  font-size: 20px;
  letter-spacing: 0;
}

.record-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9ca39d;
  box-shadow: 0 0 0 5px rgba(156, 163, 157, 0.12);
}

.record-dot.live {
  background: var(--rose);
  box-shadow: 0 0 0 6px rgba(159, 79, 95, 0.16);
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

.control-strip {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.select-wrap,
.consent-check,
.field {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.select-wrap select,
.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 11px;
  outline: none;
}

.select-wrap select {
  height: 36px;
}

.field {
  align-items: stretch;
  flex-direction: column;
  margin: 16px 0 0;
}

.field input {
  height: 42px;
}

.field select {
  height: 42px;
}

.field textarea {
  min-height: 86px;
  padding: 10px 11px;
  resize: vertical;
  line-height: 1.55;
}

.consent-check {
  background: #f4f7f3;
  border: 1px solid var(--soft-line);
  border-radius: 8px;
  height: 36px;
  padding: 0 10px;
  white-space: nowrap;
}

.primary-button,
.ghost-button,
.danger-button {
  height: 36px;
  border-radius: 8px;
  padding: 0 14px;
  font-weight: 700;
}

.primary-button {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 20px rgba(36, 94, 82, 0.16);
}

.send-button {
  min-height: 44px;
  font-size: 16px;
}

.ghost-button {
  background: #f4f7f3;
  color: var(--ink);
  border: 1px solid var(--line);
}

.danger-button {
  background: var(--rose);
  color: #fff;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 390px;
  gap: 0;
  min-height: 0;
  flex: 1;
}

.transcript-pane,
.insight-pane {
  min-height: calc(100vh - 80px);
}

.transcript-pane {
  display: flex;
  flex-direction: column;
  padding: 20px;
  min-width: 0;
}

.insight-pane {
  border-left: 1px solid var(--line);
  background: #edf3f1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: auto;
}

.pane-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.pane-header h3 {
  font-size: 17px;
}

.pane-header.compact {
  margin-bottom: 10px;
}

.audio-meter {
  height: 42px;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  display: grid;
  place-items: center;
}

.speaker-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.speaker-pill {
  height: 32px;
  border-radius: 8px;
  padding: 0 12px;
  color: #495650;
  background: #edf2ee;
  border: 1px solid var(--line);
}

.speaker-pill.active {
  background: var(--green-2);
  border-color: rgba(47, 111, 94, 0.4);
  color: #214f43;
  font-weight: 700;
}

.transcript-stream {
  flex: 1;
  min-height: 480px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.manual-entry {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 10px;
}

.manual-entry input {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.empty-state {
  height: 100%;
  min-height: 330px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 9px;
  color: var(--muted);
  text-align: center;
}

.empty-state strong {
  color: var(--ink);
  font-size: 18px;
}

.transcript-line {
  padding: 12px 0;
  border-bottom: 1px solid var(--soft-line);
}

.transcript-line:last-child {
  border-bottom: 0;
}

.line-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
}

.speaker-tag {
  color: #244a3f;
  background: var(--green-2);
  border-radius: 6px;
  padding: 2px 7px;
  font-weight: 700;
}

.speaker-tag.me {
  color: #644217;
  background: var(--amber-2);
}

.speaker-tag.unknown {
  color: #35556d;
  background: var(--blue-2);
}

.line-text {
  margin: 0;
  line-height: 1.7;
  font-size: 15px;
}

.interim-line {
  min-height: 38px;
  color: var(--muted);
  font-size: 14px;
  padding: 10px 4px 0;
}

.insight-section {
  min-width: 0;
}

.tip-list,
.track-grid,
.quality-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quiet-note {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed var(--line);
  border-radius: 8px;
  padding: 16px;
  font-size: 14px;
}

.tip-card,
.track-item,
.quality-item,
.summary-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 12px 28px rgba(32, 42, 39, 0.08);
}

.tip-card.crisis {
  border-color: rgba(159, 79, 95, 0.55);
  background: #fff7f8;
}

.tip-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.tip-head strong {
  font-size: 15px;
}

.tip-time {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.tip-body {
  display: grid;
  gap: 8px;
  font-size: 14px;
  line-height: 1.55;
}

.tip-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.mini-button {
  min-height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #f5f8f4;
  color: #3f4742;
  padding: 0 10px;
  font-size: 12px;
  font-weight: 700;
}

.tip-body span,
.track-item span,
.summary-item span {
  color: var(--muted);
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.quote-line {
  border-left: 3px solid var(--green);
  padding-left: 10px;
  color: #26332e;
}

.risk-line {
  color: #7c3745;
  font-weight: 700;
}

.track-item strong,
.quality-item strong,
.summary-item strong {
  display: block;
  line-height: 1.55;
  font-size: 14px;
}

.quality-meter {
  height: 7px;
  border-radius: 8px;
  background: #ece5da;
  overflow: hidden;
  margin-top: 8px;
}

.quality-meter span {
  display: block;
  height: 100%;
  width: var(--value);
  background: var(--green);
}

.summary-dialog {
  width: min(980px, calc(100vw - 36px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.summary-dialog.small {
  width: min(460px, calc(100vw - 36px));
}

.summary-dialog::backdrop {
  background: rgba(31, 35, 32, 0.36);
}

body.dialog-fallback-active::after {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(31, 35, 32, 0.36);
  z-index: 20;
}

dialog.fallback-open,
dialog[open].fallback-open {
  display: block;
  position: fixed;
  z-index: 30;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100vh - 30px);
  overflow: auto;
}

.dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-height: min(62vh, 680px);
  overflow: auto;
  padding: 18px 20px;
}

.script-box {
  margin: 18px 20px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #2b312d;
  line-height: 1.75;
  font-size: 15px;
  white-space: pre-wrap;
}

.import-panel {
  padding: 18px 20px 0;
}

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

.audio-preview {
  margin-top: 12px;
  display: none;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.audio-preview.active {
  display: block;
}

.audio-preview audio,
.audio-preview video {
  width: 100%;
  margin-top: 8px;
}

.import-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.help-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px 20px 0;
}

.help-layout section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
}

.help-layout h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.help-layout ol {
  margin: 0;
  padding-left: 20px;
  color: #38413c;
  line-height: 1.75;
  font-size: 14px;
}

.help-faq {
  display: grid;
  gap: 6px;
  color: #38413c;
  font-size: 14px;
  line-height: 1.55;
}

.help-faq span {
  color: var(--muted);
  margin-bottom: 6px;
}

.coach-panel {
  padding: 18px 20px 0;
}

.coach-toolbar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}

.coach-stream {
  height: min(44vh, 460px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}

.coach-message {
  max-width: 82%;
  margin-bottom: 12px;
  padding: 12px 13px;
  border-radius: 8px;
  line-height: 1.65;
  font-size: 14px;
}

.coach-message.user {
  margin-left: auto;
  background: var(--green-2);
  color: #213e36;
}

.coach-message.ai {
  margin-right: auto;
  background: #f5efe6;
  color: #31362f;
  border: 1px solid var(--soft-line);
}

.coach-message span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.coach-input-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  position: sticky;
  bottom: 0;
  background: var(--surface);
  padding-top: 10px;
  z-index: 2;
}

.coach-input-row textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  resize: vertical;
  line-height: 1.55;
  min-height: 88px;
  outline: none;
}

.coach-status {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  min-height: 20px;
}

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

.coach-actions button {
  min-width: 0;
  padding-left: 8px;
  padding-right: 8px;
}

.share-hub {
  padding: 18px 20px 0;
}

.share-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.95fr);
  gap: 16px;
  align-items: stretch;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #eef5ef 58%, #fff8ec 100%);
}

.share-feature h3,
.assistant-support h3,
.share-card h3 {
  margin: 0;
  letter-spacing: 0;
}

.share-feature h3 {
  font-size: 22px;
  line-height: 1.35;
}

.share-feature p,
.assistant-support p,
.share-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.mindmap-preview {
  min-height: 190px;
  position: relative;
  border: 1px solid rgba(36, 102, 87, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(36, 102, 87, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 102, 87, 0.08) 1px, transparent 1px),
    #fbfcf8;
  background-size: 28px 28px;
  overflow: hidden;
}

.mindmap-preview::before,
.mindmap-preview::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 70%;
  height: 1px;
  background: rgba(36, 102, 87, 0.24);
  transform: translate(-50%, -50%);
}

.mindmap-preview::after {
  width: 1px;
  height: 70%;
}

.mindmap-node {
  position: absolute;
  z-index: 1;
  min-width: 86px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: #2f3c36;
  padding: 6px 10px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(32, 42, 39, 0.08);
}

.mindmap-node.core {
  left: 50%;
  top: 50%;
  color: #fff;
  background: var(--green);
  border-color: var(--green);
  transform: translate(-50%, -50%);
}

.mindmap-node.n1 {
  left: 8%;
  top: 14%;
}

.mindmap-node.n2 {
  right: 8%;
  top: 14%;
}

.mindmap-node.n3 {
  left: 8%;
  bottom: 14%;
}

.mindmap-node.n4 {
  right: 8%;
  bottom: 14%;
}

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

.share-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 15px;
  box-shadow: 0 12px 28px rgba(32, 42, 39, 0.08);
}

.share-card > span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 8px;
  padding: 0 8px;
  background: var(--blue-2);
  color: #2f5369;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.share-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.share-tags em {
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 8px;
  background: #f5f8f4;
  color: #53615a;
  font-size: 12px;
  font-style: normal;
}

.assistant-support {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(148, 103, 25, 0.24);
  border-radius: 8px;
  background: #fff8ec;
}

.assistant-support .primary-button {
  min-height: 42px;
  white-space: normal;
}

.dialog-actions {
  border-top: 1px solid var(--line);
  padding: 14px 20px 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

@media (max-width: 1160px) {
  .site-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-links {
    flex-wrap: wrap;
  }

  .audience-grid,
  .resource-grid,
  .diagnosis-layout,
  .share-layout,
  .ai-layout,
  .quiet-hero,
  .fit-section,
  .glimpse-section,
  .glow-hero,
  .mirror-layout,
  .about-layout,
  .fit-split,
  .selfcheck-card,
  .method-section,
  .public-share-section,
  .result-visual {
    grid-template-columns: 1fr;
  }

  .pain-grid,
  .source-grid,
  .path-steps,
  .difference-list-v2,
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-copy,
  .method-triplet,
  .method-visual {
    grid-column: auto;
    grid-row: auto;
  }

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

  .result-visual img {
    justify-self: center;
  }

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

  .app-shell {
    grid-template-columns: 248px minmax(0, 1fr);
  }

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

  .insight-pane {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-nav {
    padding: 14px;
  }

  .site-logo-image {
    height: 36px;
    max-width: 150px;
  }

  .site-logo-image.mark-only {
    width: 34px;
    height: 34px;
  }

  .site-logo-word {
    font-size: 20px;
  }

  .site-logo-tagline {
    padding-left: 8px;
    font-size: 12px;
  }

  .site-links {
    gap: 10px;
  }

  .site-links a,
  .site-links button {
    font-size: 13px;
  }

  .shanliye-hero {
    min-height: auto;
    padding: 56px 16px;
    background:
      linear-gradient(180deg, rgba(248, 242, 231, 0.97) 0%, rgba(248, 242, 231, 0.9) 100%),
      url("./assets/shanliye-hero.png") center / cover no-repeat;
  }

  .shanliye-hero h1 {
    font-size: 42px;
  }

  .quiet-hero {
    min-height: auto;
    padding: 62px 16px 44px;
    background:
      linear-gradient(180deg, rgba(247, 241, 232, 0.98) 0%, rgba(247, 241, 232, 0.93) 100%),
      url("./assets/shanliye-hero.png") center / cover no-repeat;
  }

  .quiet-copy h1 {
    font-size: 41px;
  }

  .quiet-copy p,
  .quiet-statement p,
  .glimpse-copy p,
  .contact-inner p {
    font-size: 15px;
  }

  .quiet-card {
    padding: 20px;
  }

  .quiet-card strong {
    font-size: 23px;
  }

  .quiet-section {
    padding: 46px 16px;
  }

  .fit-lines p {
    font-size: 16px;
  }

  .glimpse-image {
    max-height: 300px;
  }

  .glow-hero {
    min-height: auto;
    padding: 54px 16px 48px;
    background:
      linear-gradient(180deg, rgba(248, 243, 234, 0.98) 0%, rgba(248, 243, 234, 0.9) 62%, rgba(248, 243, 234, 0.78) 100%),
      url("./assets/shanliye-jade-atmosphere-v2.png") center bottom / cover no-repeat;
  }

  .glow-hero-copy h1 {
    max-width: 100%;
    font-size: 30px;
    line-height: 1.18;
  }

  .glow-site h1,
  .glow-site h2,
  .glow-site h3,
  .glow-site strong,
  .glow-site p {
    word-break: normal;
    line-break: auto;
  }

  .glow-hero-copy > p:not(.hero-note),
  .section-narrow p,
  .section-heading p,
  .method-copy p,
  .share-copy p,
  .contact-inner-v2 p {
    font-size: 16px;
  }

  .share-reason,
  .fit-split article,
  .knowledge-note {
    padding: 22px;
  }

  .share-reason,
  .fit-split,
  .pain-grid,
  .source-grid,
  .path-steps,
  .difference-list-v2,
  .deliverables-grid,
  .selfcheck-card,
  .method-section,
  .public-share-section,
  .mirror-layout,
  .about-layout,
  .result-visual,
  .share-visual-stack {
    width: 100%;
    max-width: 100%;
  }

  .glow-hero-copy,
  .hero-side,
  .hero-poster,
  .share-reason,
  .mirror-layout,
  .mirror-visual,
  .about-layout,
  .about-visual,
  .section-narrow,
  .section-heading,
  .pain-grid,
  .source-grid,
  .path-steps,
  .difference-list-v2,
  .deliverables-grid,
  .selfcheck-card,
  .selfcheck-visual,
  .method-copy,
  .method-triplet,
  .method-visual,
  .result-visual,
  .share-visual-stack,
  .share-map,
  .share-copy,
  .knowledge-note,
  .contact-inner-v2 {
    width: 100%;
    max-width: 358px;
  }

  .pain-grid,
  .source-grid,
  .path-steps,
  .difference-list-v2,
  .deliverables-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .pain-grid article,
  .source-grid article,
  .path-steps article,
  .difference-list-v2 p {
    min-height: auto;
    padding: 22px;
  }

  .deliverables-grid p {
    min-height: auto;
  }

  .about-visual {
    min-height: 300px;
  }

  .about-visual figcaption {
    margin: 0 16px 18px;
  }

  .hero-side {
    align-content: start;
  }

  .hero-card-preview {
    min-height: 350px;
    padding: 28px 22px 22px;
  }

  .hero-card-preview strong {
    font-size: 26px;
  }

  .hero-card-preview li {
    font-size: 15px;
  }

  .glow-site h1,
  .glow-site h2,
  .glow-site h3,
  .glow-site p,
  .glow-site strong,
  .glow-site button {
    max-width: 100%;
  }

  .share-reason strong,
  .knowledge-note strong {
    font-size: 20px;
  }

  .glow-section {
    padding: 54px 16px;
  }

  .section-narrow h2,
  .section-heading h2,
  .selfcheck-card h2,
  .method-copy h2,
  .share-copy h2,
  .contact-inner-v2 h2 {
    font-size: 26px;
  }

  .quiet-paragraphs p,
  .result-lines p {
    font-size: 16px;
  }

  .fit-split {
    margin-top: 32px;
  }

  .question-list p {
    padding: 17px 18px;
  }

  .mirror-visual {
    min-height: auto;
    padding: 22px;
  }

  .mirror-visual img {
    width: 138px;
  }

  .mirror-visual strong {
    font-size: 18px;
  }

  .selfcheck-visual {
    height: 150px;
  }

  .method-triplet article {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .method-triplet h3 {
    font-size: 20px;
  }

  .method-visual img {
    min-height: 260px;
  }

  .result-lines {
    grid-template-columns: 1fr;
  }

  .result-lines p {
    min-height: auto;
    padding: 18px;
  }

  .result-visual {
    gap: 14px;
  }

  .result-visual div {
    min-height: auto;
    padding: 18px;
  }

  .result-visual p {
    font-size: 17px;
  }

  .result-visual img {
    width: 72px;
    height: 72px;
  }

  .share-map {
    height: 180px;
  }

  .shanliye-hero p,
  .section-copy p {
    font-size: 15px;
  }

  .hero-actions,
  .diagnosis-actions,
  .ai-actions {
    flex-direction: column;
  }

  .site-primary,
  .site-secondary,
  .site-text-button {
    width: 100%;
  }

  .site-band {
    padding: 42px 16px;
  }

  .method-path {
    grid-template-columns: 1fr;
  }

  .method-path article {
    min-height: auto;
  }

  .app-shell {
    display: block;
  }

  .sidebar {
    min-height: auto;
  }

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

  .home-panel {
    padding: 18px 14px;
  }

  .home-actions {
    grid-template-columns: 1fr;
  }

  .home-card {
    min-height: 88px;
  }

  .control-strip {
    justify-content: flex-start;
  }

  .select-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .manual-entry {
    grid-template-columns: 1fr;
  }

  .import-row {
    grid-template-columns: 1fr;
  }

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

  .share-feature,
  .share-card-grid {
    grid-template-columns: 1fr;
  }

  .assistant-support {
    align-items: stretch;
    flex-direction: column;
  }

  .coach-input-row {
    position: sticky;
    bottom: 0;
  }

  .coach-actions {
    grid-template-columns: 1fr;
  }

  .select-wrap select {
    flex: 1;
  }

  .transcript-pane {
    padding: 14px;
  }

  .pane-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .audio-meter {
    width: 100%;
  }

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