:root {
  --green-900: #163328;
  --green-800: #1f4336;
  --green-700: #2c5b46;
  --green-600: #3f6d58;
  --soil-700: #4f3c2f;
  --soil-600: #5a4331;
  --gold-500: #b38a47;
  --gold-400: #caa05a;
  --ivory: #f5f0e6;
  --paper: #f6f2e9;
  --paper-soft: #efe7da;
  --paper-warm: #f3e7d6;
  --text-900: #2b2b2b;
  --text-700: #4c4944;
  --text-600: #605c55;
  --text-500: #6a655d;
  --text-400: #8c857a;
  --line-soft: rgba(22, 51, 40, 0.12);
  --line-light: rgba(255, 255, 255, 0.1);
  --shadow-soft: 0 16px 40px rgba(15, 33, 24, 0.08);
  --shadow-hover: 0 22px 50px rgba(15, 33, 24, 0.14);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shell-width: 1440px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 1440px;
  margin: 0;
  font-family: "Source Han Sans SC", "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--paper);
  color: var(--text-900);
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
}

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

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

button {
  cursor: pointer;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.shell {
  width: min(var(--shell-width), calc(100vw - 160px));
  margin: 0 auto;
}

.page-anchor-nav {
  position: fixed;
  left: 14px;
  top: 50%;
  z-index: 24;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 10px;
  border-radius: 28px;
  background: rgba(246, 242, 233, 0.76);
  border: 1px solid rgba(22, 51, 40, 0.1);
  box-shadow: 0 18px 42px rgba(15, 33, 24, 0.12);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.page-anchor-nav::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(179, 138, 71, 0), rgba(179, 138, 71, 0.34), rgba(179, 138, 71, 0));
  pointer-events: none;
}

.page-anchor-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px 0 24px;
  border-radius: 16px;
  color: var(--text-500);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    background-color 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.page-anchor-link::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.42);
  box-shadow: 0 0 0 5px rgba(179, 138, 71, 0.08);
  transform: translateY(-50%);
  transition: transform 0.28s var(--ease-out), background-color 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.page-anchor-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.page-anchor-link:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-900);
}

.page-anchor-link.is-active {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: #fff;
  box-shadow: 0 12px 26px rgba(22, 51, 40, 0.2);
}

.page-anchor-link.is-active::before {
  background: var(--gold-400);
  box-shadow: 0 0 0 6px rgba(202, 160, 90, 0.18);
  transform: translateY(-50%) scale(1.08);
}

.section {
  position: relative;
  padding: 136px 0 124px;
}

#hero,
#about,
#products,
#brand-proof,
#family-farm,
#news,
#company-opening,
#brand-positioning,
#brand-axis,
#brand-declaration,
#company-targets,
#business-layout,
#category-value,
#market-demand,
#product-matrix,
#product-detail,
#product-process,
#product-capability,
#product-forms,
#product-research {
  scroll-margin-top: 110px;
}

.section-title {
  margin: 14px 0 16px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 48px;
  line-height: 1.25;
  color: var(--green-900);
  letter-spacing: 0.02em;
}

.section-intro {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-600);
}

.section-intro.wide {
  max-width: 840px;
}

.eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 0;
  border-radius: 999px;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    background-color 0.28s var(--ease-out), border-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out);
}

.button svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-gold {
  min-width: 174px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--gold-500);
  color: #fff;
  box-shadow: 0 10px 24px rgba(179, 138, 71, 0.24);
}

.hero .button-gold {
  position: relative;
  overflow: hidden;
}

.hero .button-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.18) 50%, transparent 65%, transparent 100%);
  transform: translateX(-130%);
  animation: shimmer 4.5s ease-in-out infinite;
}

.button-gold:hover {
  transform: translateY(-2px);
  background: #a27b3f;
  box-shadow: 0 16px 30px rgba(179, 138, 71, 0.34);
}

.button-small {
  min-width: 152px;
  min-height: 44px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
}

.button-ghost,
.button-outline-light,
.button-outline-dark {
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-outline-light:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.14);
}

.button-outline-light {
  min-width: 170px;
  min-height: 46px;
  background: transparent;
  border-color: rgba(245, 240, 230, 0.24);
  color: var(--ivory);
}

.button-dark {
  min-width: 174px;
  min-height: 52px;
  padding: 0 24px;
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 8px 20px rgba(22, 51, 40, 0.12);
}

.button-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(22, 51, 40, 0.18);
}

.button-outline-dark {
  min-width: 174px;
  min-height: 52px;
  background: transparent;
  border: 1px solid rgba(22, 51, 40, 0.18);
  color: var(--green-900);
}

.button-outline-dark:hover {
  border-color: rgba(22, 51, 40, 0.34);
  transform: translateY(-2px);
}

.button-text {
  padding: 0;
  min-height: auto;
  border: 0;
  background: transparent;
  color: var(--green-900);
  font-weight: 600;
}

.button-text:hover {
  transform: translateX(4px);
  color: var(--gold-500);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 84px;
  transition: background-color 0.4s var(--ease-out), backdrop-filter 0.4s var(--ease-out),
    border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.site-header.is-scrolled {
  position: fixed;
  background: rgba(22, 51, 40, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: grid;
  grid-template-columns: 232px 1fr 280px;
  align-items: center;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 212px;
  min-height: 74px;
  padding: 8px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(246, 242, 233, 0.94), rgba(246, 242, 233, 0.86));
  box-shadow: 0 10px 22px rgba(9, 22, 16, 0.12);
  backdrop-filter: blur(8px);
}

.brand-badge img {
  width: 188px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.28s var(--ease-out);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transform: translateX(-50%);
  transition: width 0.28s var(--ease-out);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  white-space: nowrap;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: rgba(245, 240, 230, 0.88);
  transition: transform 0.28s var(--ease-out), background-color 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-phone:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background: var(--green-900);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(9, 22, 16, 0.76) 0%, rgba(9, 22, 16, 0.68) 32%, rgba(9, 22, 16, 0.28) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 220px;
  color: #fff;
}

.hero-eyebrow {
  margin-bottom: 22px;
  color: rgba(245, 240, 230, 0.84);
}

.hero h1,
.hero h2 {
  margin: 0;
  max-width: 760px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 68px;
  line-height: 1.16;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.hero-subtitle {
  max-width: 700px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.88);
}

.hero-tags,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags {
  margin-top: 26px;
}

.hero-tags span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 14px;
}

.hero-tags span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 240, 230, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 34px;
}

.hero-controls {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 2;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.hero-indicator {
  width: 32px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  padding: 0;
  transition: width 0.28s var(--ease-out), background-color 0.28s var(--ease-out);
}

.hero-indicator.is-active {
  width: 54px;
  background: var(--gold-500);
}

.scroll-cue {
  position: absolute;
  left: 80px;
  bottom: 52px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 230, 0.78);
  animation: floatCue 1.8s ease-in-out infinite;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-grid {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 80px;
  align-items: start;
}

.section-copy .tag-row {
  margin-top: 34px;
}

.section-intro-group {
  display: grid;
  gap: 18px;
}

.section-copy .tag-row span {
  background: var(--paper-soft);
  color: var(--green-900);
}

.about-visual {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 24px;
}

.about-feature {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 520px;
}

.about-feature img {
  height: 100%;
  object-fit: cover;
}

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

.info-card,
.metric-card,
.capability-card,
.compare-card,
.responsibility-card,
.benefit-card,
.news-feature,
.news-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.info-card:hover,
.metric-card:hover,
.capability-card:hover,
.news-feature:hover,
.news-card:hover,
.responsibility-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.info-card {
  min-height: 240px;
  padding: 28px;
}

.info-card-icon,
.capability-icon,
.compare-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
}

.info-card svg,
.capability-icon svg,
.compare-icon svg,
.responsibility-card svg,
.quick-action svg,
.trace-points svg,
.process-node svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3,
.capability-card h3,
.compare-card h2,
.responsibility-card h3,
.benefit-card h3,
.news-feature h3,
.news-card h3 {
  margin: 18px 0 14px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  color: var(--green-900);
}

.info-card h3 {
  font-size: 22px;
  line-height: 1.42;
}

.info-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.82;
  color: var(--text-500);
}

.products-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.07), transparent 35%),
    radial-gradient(circle at 80% 100%, rgba(179, 138, 71, 0.08), transparent 30%),
    var(--green-900);
  color: #fff;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 28px;
}

.section-head-dark .section-title,
.section-head-dark .section-intro {
  color: #fff;
}

.section-head-dark .section-intro {
  color: rgba(245, 240, 230, 0.82);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.product-card {
  padding: 22px;
  min-height: 300px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out),
    background-color 0.28s var(--ease-out);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.product-media {
  margin: 0 0 18px;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
}

.product-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s var(--ease-out);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.18);
  color: var(--ivory);
  font-size: 13px;
}

.product-meta h3 {
  margin: 16px 0 10px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 24px;
}

.product-meta p {
  margin: 0;
  color: rgba(245, 240, 230, 0.86);
  line-height: 1.75;
}

.market-layout {
  display: grid;
  grid-template-columns: 1.08fr 1.92fr;
  gap: 24px;
  margin-top: 52px;
  align-items: stretch;
}

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

.metric-card {
  min-height: 240px;
  padding: 28px;
}

.metric-card-main {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 504px;
  padding: 38px 36px;
  background:
    radial-gradient(circle at 18% 16%, rgba(179, 138, 71, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 235, 0.94));
  border: 1px solid rgba(179, 138, 71, 0.14);
  overflow: hidden;
}

.metric-card-sub {
  min-height: 242px;
}

.metric-kicker {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.metric-value {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 58px;
  line-height: 1;
  white-space: nowrap;
  color: var(--green-900);
}

.metric-value-main {
  margin: 0 0 12px;
  font-size: 108px;
  line-height: 0.88;
}

.metric-number {
  font-variant-numeric: tabular-nums;
}

.metric-suffix {
  display: inline-flex;
  align-items: baseline;
  color: var(--gold-500);
  margin-left: 4px;
  font-size: 0.76em;
  white-space: nowrap;
}

.metric-static {
  gap: 10px;
}

.metric-arrow,
.metric-highlight {
  color: var(--gold-500);
}

.metric-trend {
  font-size: 46px;
  letter-spacing: -0.02em;
}

.metric-range {
  font-size: 42px;
  letter-spacing: -0.02em;
}

.metric-card h3 {
  margin: 20px 0 12px;
  font-size: 22px;
  line-height: 1.4;
}

.metric-card p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.78;
}

.metric-card-main h3 {
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.3;
}

.metric-card-main .metric-description {
  max-width: 340px;
  margin: 18px 0 0;
  font-size: 17px;
  line-height: 1.9;
}

.metric-map {
  position: relative;
  z-index: 1;
  align-self: center;
  width: 73%;
  max-width: 310px;
  margin: auto auto -4px;
  padding: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.metric-map::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 70%;
  height: 34px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 138, 71, 0.12), transparent 72%);
  filter: blur(12px);
  opacity: 0.55;
  pointer-events: none;
}

.metric-map img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.97;
  border-radius: 0;
  box-shadow: none;
}

.metric-card .metric-kicker {
  margin: 0 0 22px;
  max-width: none;
  font-size: 12px;
  line-height: 1.4;
  color: var(--gold-500);
}

.metrics-footnote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 22px 0 0;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(247, 241, 231, 0.9));
  border: 1px solid rgba(179, 138, 71, 0.12);
  box-shadow: 0 12px 28px rgba(31, 54, 44, 0.06);
}

.metrics-footnote-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  white-space: nowrap;
}

.metrics-footnote p {
  margin: 0;
  flex: 1 1 auto;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-400);
}

.metrics-summary {
  position: relative;
  max-width: 1120px;
  margin: 18px 0 0;
  padding: 28px 30px 28px 34px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 16%, rgba(179, 138, 71, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(22, 51, 40, 0.04), rgba(255, 255, 255, 0.84) 28%, rgba(247, 241, 231, 0.94));
  border: 1px solid rgba(179, 138, 71, 0.16);
  box-shadow: 0 20px 40px rgba(31, 54, 44, 0.08);
}

.metrics-summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(179, 138, 71, 0.95), rgba(22, 51, 40, 0.68));
}

.metrics-summary::after {
  content: "“";
  position: absolute;
  right: 22px;
  top: 10px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 88px;
  line-height: 1;
  color: rgba(179, 138, 71, 0.14);
  pointer-events: none;
}

.metrics-summary-mark {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.metrics-summary p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.9;
  font-weight: 500;
}

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

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  padding: 0 28px 28px;
}

.capability-media {
  margin: 0 -28px 22px;
  aspect-ratio: 9 / 7;
  overflow: hidden;
}

.capability-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.34s var(--ease-out);
}

.capability-card:hover .capability-media img {
  transform: scale(1.04);
}

.capability-card h3 {
  font-size: 28px;
  line-height: 1.32;
}

.capability-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.82;
}

.capability-more {
  display: block;
  margin-top: 16px;
  color: var(--gold-500);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.capability-card:hover .capability-more {
  opacity: 1;
  transform: translateY(0);
}

.process-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: 62px;
  padding: 16px 0 0;
}

.process-line {
  position: absolute;
  top: 44px;
  left: 70px;
  right: 70px;
  height: 2px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.32), rgba(179, 138, 71, 0.9), rgba(179, 138, 71, 0.32));
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--green-900);
}

.process-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold-500);
  box-shadow: 0 10px 28px rgba(15, 33, 24, 0.08);
  transition: transform 0.3s var(--ease-out), background-color 0.3s var(--ease-out),
    color 0.3s var(--ease-out);
}

.process-step.is-active .process-node,
.process-step:hover .process-node {
  transform: translateY(-6px);
  background: var(--green-900);
  color: #fff;
}

.process-step strong {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

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

.family-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: end;
  padding: 54px 56px 48px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(179, 138, 71, 0.18), transparent 28%),
    linear-gradient(120deg, #173428 0%, #1d3d30 46%, #274838 100%);
  box-shadow: 0 22px 56px rgba(13, 30, 22, 0.16);
}

.family-banner::before {
  content: "FAMILY FARM";
  position: absolute;
  right: 34px;
  top: 18px;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 92px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.family-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.5), rgba(255, 255, 255, 0.04) 48%, rgba(179, 138, 71, 0.12));
}

.family-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.family-banner .eyebrow {
  color: rgba(202, 160, 90, 0.96);
}

.family-banner h2 {
  margin: 16px 0 18px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 76px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #fff;
}

.family-banner-copy p:last-child {
  margin: 0;
  font-size: 18px;
  line-height: 1.92;
  color: rgba(245, 240, 230, 0.86);
}

.family-banner-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 320px;
}

.family-banner-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(10px);
}

.compare-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 46px;
}

.compare-card {
  min-height: 360px;
  padding: 36px;
}

.compare-cold {
  background: #e6ece8;
}

.compare-warm {
  background: var(--paper-warm);
}

.compare-divider {
  align-self: center;
  justify-self: center;
  font-family: "Source Han Serif SC", serif;
  font-size: 28px;
  color: var(--gold-500);
}

.compare-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  margin-top: 24px;
}

.compare-item h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 20px;
}

.compare-item p,
.compare-intro,
.compare-footnote,
.family-note {
  margin: 0;
  color: var(--text-600);
  line-height: 1.85;
}

.framework-box {
  margin-top: 26px;
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(179, 138, 71, 0.15);
}

.framework-box p {
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--green-900);
}

.tag-grid span {
  min-height: 42px;
  background: rgba(179, 138, 71, 0.1);
  border: 1px solid rgba(179, 138, 71, 0.22);
}

.compare-footnote {
  margin-top: 18px;
  text-align: center;
  font-size: 16px;
}

.family-overview {
  display: grid;
  grid-template-columns: 700px 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 88px;
}

.family-media {
  margin: 0;
  aspect-ratio: 700 / 780;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.family-media img {
  height: 100%;
  object-fit: cover;
}

.family-copy .tag-row {
  margin-top: 28px;
}

.family-copy .tag-row span {
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
}

.trace-grid {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 700px);
  gap: 96px;
  align-items: center;
  margin-top: 84px;
}

.trace-points {
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.trace-points li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  color: var(--text-600);
}

.phone-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 24px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 52% 46%, rgba(179, 138, 71, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.34);
  overflow: visible;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(179, 138, 71, 0.12);
  pointer-events: none;
}

.phone-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: 360px;
  height: 68px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 39, 30, 0.18), transparent 72%);
  filter: blur(14px);
  pointer-events: none;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: 332px;
  height: 672px;
  padding: 14px;
  border-radius: 44px;
  background: linear-gradient(145deg, #303531, #232825);
  box-shadow: 0 24px 60px rgba(18, 31, 24, 0.26);
  transition: transform 0.28s var(--ease-out);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 120px;
  height: 24px;
  border-radius: 0 0 18px 18px;
  transform: translateX(-50%);
  background: #1d1f1d;
  z-index: 2;
}

.phone-screen {
  height: 100%;
  padding: 42px 18px 20px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(179, 138, 71, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(22, 51, 40, 0.08), rgba(22, 51, 40, 0.03)),
    #f8f4ed;
  overflow: hidden;
}

.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-500);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #42b76f;
  box-shadow: 0 0 0 6px rgba(66, 183, 111, 0.14);
}

.screen-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 26px rgba(16, 39, 30, 0.08);
}

.screen-card h3,
.screen-card h4,
.screen-footer strong {
  margin: 0;
  color: var(--green-900);
}

.screen-card h3 {
  font-size: 18px;
  line-height: 1.5;
}

.screen-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.screen-status span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 12px;
}

.screen-meta {
  margin: 14px 0 0;
  display: grid;
  gap: 12px;
}

.screen-meta div {
  padding-top: 12px;
  border-top: 1px solid rgba(22, 51, 40, 0.08);
}

.screen-meta dt {
  font-size: 12px;
  color: var(--text-400);
}

.screen-meta dd {
  margin: 4px 0 0;
  color: var(--text-700);
  font-size: 14px;
}

.screen-timeline ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.screen-timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--text-600);
  font-size: 14px;
}

.screen-timeline li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(22, 51, 40, 0.12);
  transition: background-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.screen-timeline li.is-active span,
.screen-timeline li.is-lit span {
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(179, 138, 71, 0.16);
}

.screen-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.screen-footer p {
  margin: 8px 0 0;
  color: var(--text-600);
  line-height: 1.7;
  font-size: 13px;
}

.qr-placeholder {
  flex: 0 0 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--green-900);
}

.qr-placeholder svg {
  width: 28px;
  height: 28px;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  color: var(--green-900);
  box-shadow: 0 16px 36px rgba(15, 33, 24, 0.12);
  white-space: nowrap;
  font-weight: 600;
}

.chip-top {
  top: 118px;
  right: 52px;
}

.chip-bottom {
  left: 44px;
  bottom: 120px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 84px;
}

.responsibility-card {
  padding: 34px;
}

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

.responsibility-card li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(22, 51, 40, 0.08);
  color: var(--text-700);
}

.responsibility-card li:last-child {
  border-bottom: 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.benefit-card {
  padding: 28px 24px;
  min-height: 228px;
}

.benefit-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.82;
}

.family-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 52px;
}

.family-note {
  max-width: 520px;
  margin: 18px 0 0 auto;
  font-size: 13px;
}

.news-head {
  align-items: flex-end;
}

.news-grid {
  display: grid;
  grid-template-columns: 640px 1fr;
  gap: 24px;
  margin-top: 48px;
}

.news-feature {
  overflow: hidden;
}

.news-feature figure,
.news-card figure {
  margin: 0;
  overflow: hidden;
}

.news-feature figure {
  aspect-ratio: 16 / 10;
}

.news-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  min-height: 160px;
  padding: 16px;
  align-items: center;
}

.news-card figure {
  aspect-ratio: 4 / 3;
  border-radius: 16px;
}

.news-feature img,
.news-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.34s var(--ease-out);
}

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

.news-body {
  padding: 24px;
}

.news-card .news-body {
  padding: 0 4px 0 0;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-400);
  font-size: 13px;
}

.news-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--paper-soft);
  color: var(--green-900);
}

.news-feature h3 {
  font-size: 28px;
  line-height: 1.45;
}

.news-card h3 {
  font-size: 22px;
  line-height: 1.48;
}

.news-feature p,
.news-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.8;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-weight: 600;
  color: var(--green-900);
  transition: color 0.28s var(--ease-out);
}

.news-feature:hover .news-link {
  color: var(--gold-500);
}

.news-link svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.news-list {
  display: grid;
  gap: 18px;
}

.brand-strip {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 28%),
    var(--green-900);
  text-align: center;
}

.brand-strip h2 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 40px;
  line-height: 1.45;
  color: #fff;
}

.brand-strip p {
  width: 860px;
  margin: 18px auto 0;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(245, 240, 230, 0.88);
}

.site-footer {
  position: relative;
  background: var(--green-900);
  border-top: 1px solid rgba(179, 138, 71, 0.6);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 400px 220px 300px 1fr;
  gap: 28px;
}

.footer-column h4,
.footer-brand h3 {
  margin: 0 0 18px;
  color: var(--ivory);
  font-size: 16px;
}

.footer-brand h3 {
  margin-top: 18px;
  font-size: 18px;
}

.footer-brand {
  position: relative;
}

.footer-brand::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 240px;
  height: 92px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(179, 138, 71, 0.16), transparent 72%);
  filter: blur(12px);
  pointer-events: none;
}

.footer-logo {
  position: relative;
  width: 344px;
  padding: 16px 18px;
  border-radius: 26px;
  border: 1px solid rgba(179, 138, 71, 0.18);
  background:
    radial-gradient(circle at 18% 50%, rgba(179, 138, 71, 0.08), transparent 34%),
    linear-gradient(135deg, rgba(245, 240, 230, 0.98), rgba(239, 231, 218, 0.96));
  box-shadow: 0 20px 36px rgba(6, 16, 12, 0.18);
  overflow: hidden;
}

.footer-logo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 42%);
  pointer-events: none;
}

.footer-logo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand p,
.footer-column li,
.footer-column a {
  color: rgba(245, 240, 230, 0.72);
  line-height: 1.9;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column a:hover {
  color: var(--gold-500);
}

.quick-actions {
  position: fixed;
  right: 28px;
  bottom: 144px;
  z-index: 40;
  display: grid;
  gap: 14px;
}

.quick-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: var(--green-900);
  box-shadow: 0 16px 30px rgba(15, 33, 24, 0.12);
  transition: transform 0.28s var(--ease-out), background-color 0.28s var(--ease-out),
    color 0.28s var(--ease-out);
}

.quick-action span {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(22, 51, 40, 0.94);
  color: #fff;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(12px);
  transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.quick-action:hover {
  transform: translateY(-2px);
  background: var(--green-900);
  color: #fff;
}

.quick-action:hover span {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.quick-top svg {
  transform: rotate(180deg);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.72s var(--ease-out), transform 0.72s var(--ease-out);
}

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

.company-page .site-nav a.is-active {
  color: #fff;
}

.company-hero {
  min-height: 780px;
  background: var(--green-900);
}

.company-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 16, 0.78) 0%, rgba(9, 22, 16, 0.62) 34%, rgba(9, 22, 16, 0.2) 72%, rgba(9, 22, 16, 0.08) 100%),
    radial-gradient(circle at 84% 20%, rgba(255, 255, 255, 0.14), transparent 28%);
}

.company-hero-content {
  padding-top: 210px;
}

.company-hero h1 {
  max-width: 900px;
  font-size: 74px;
  line-height: 1.08;
}

.company-hero .hero-subtitle {
  max-width: 740px;
  margin-top: 26px;
}

.company-hero-note {
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 230, 0.92);
}

.company-opening {
  padding-top: 144px;
}

.company-opening-head {
  align-items: flex-start;
}

.company-opening-head-copy {
  flex: 1 1 auto;
  min-width: 0;
  max-width: none;
}

.company-opening-head-subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: -4px 0 20px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.14), rgba(179, 138, 71, 0.05));
  border: 1px solid rgba(179, 138, 71, 0.16);
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--green-900);
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(179, 138, 71, 0.08);
}

.company-opening-head-lead {
  margin: 0;
  max-width: 1040px;
  font-size: 20px;
  line-height: 1.92;
  color: var(--green-900);
  font-weight: 600;
}

.company-opening-head-sections {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.company-opening-head-block {
  position: relative;
  padding: 22px 24px 20px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(250, 246, 238, 0.58)),
    radial-gradient(circle at 10% 10%, rgba(179, 138, 71, 0.08), transparent 40%);
  border: 1px solid rgba(179, 138, 71, 0.1);
  box-shadow: 0 14px 34px rgba(15, 33, 24, 0.05);
}

.company-opening-head-block::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(179, 138, 71, 0));
}

.company-opening-head-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.company-opening-head-block h3 {
  margin: 0 0 10px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 30px;
  line-height: 1.34;
  color: var(--green-900);
}

.company-opening-head-block p {
  margin: 0;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-700);
}

.company-opening-head-points {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.company-opening-head-points li {
  position: relative;
  padding-left: 18px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-700);
}

.company-opening-head-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold-500);
}

.company-opening-head-points strong {
  color: var(--green-900);
  font-weight: 700;
}

.company-opening-head-block-featured {
  background:
    linear-gradient(155deg, rgba(22, 51, 40, 0.08), rgba(255, 255, 255, 0.86)),
    radial-gradient(circle at 12% 10%, rgba(179, 138, 71, 0.14), transparent 38%);
  border-color: rgba(179, 138, 71, 0.18);
}

.company-opening-head-block-featured::before {
  width: 104px;
}

.company-opening-head-block.is-story-active {
  border-color: rgba(179, 138, 71, 0.24);
  box-shadow: 0 18px 40px rgba(15, 33, 24, 0.08);
}

.company-story-panel {
  position: sticky;
  top: 112px;
  flex: 0 0 472px;
  align-self: flex-start;
}

.company-story-window {
  position: relative;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(249, 245, 237, 0.84)),
    radial-gradient(circle at 14% 12%, rgba(179, 138, 71, 0.12), transparent 36%);
  border: 1px solid rgba(179, 138, 71, 0.14);
  box-shadow: 0 26px 54px rgba(15, 33, 24, 0.09);
}

.company-story-header {
  position: relative;
  z-index: 1;
}

.company-story-panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-500);
}

.company-story-panel-title {
  margin: 16px 0 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 25px;
  line-height: 1.45;
  color: var(--green-900);
}

.company-story-panel-declaration {
  margin: 14px 0 0;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(179, 138, 71, 0.14);
  font-size: 15px;
  line-height: 1.82;
  color: var(--green-900);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.company-story-panel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.company-story-panel-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 600;
}

.company-story-window::before,
.company-story-window::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.company-story-window::before {
  width: 184px;
  height: 184px;
  top: -92px;
  right: -88px;
  background: radial-gradient(circle, rgba(179, 138, 71, 0.14), transparent 72%);
}

.company-story-window::after {
  width: 220px;
  height: 220px;
  left: -128px;
  bottom: -156px;
  background: radial-gradient(circle, rgba(22, 51, 40, 0.1), transparent 74%);
}

.company-story-stage {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 572px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(250, 246, 238, 0.96), rgba(244, 238, 228, 0.92));
  border: 1px solid rgba(179, 138, 71, 0.1);
  margin-top: 18px;
}

.company-story-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.025);
  transition: opacity 0.55s var(--ease-out), transform 0.7s var(--ease-out);
  pointer-events: none;
}

.company-story-item.is-active {
  opacity: 1;
  transform: scale(1);
}

.company-story-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 22, 16, 0.1) 0%, rgba(9, 22, 16, 0.14) 36%, rgba(9, 22, 16, 0.68) 100%),
    linear-gradient(0deg, rgba(9, 22, 16, 0.26), rgba(9, 22, 16, 0.02));
}

.company-story-figure,
.company-story-figure img {
  width: 100%;
  height: 100%;
}

.company-story-figure {
  margin: 0;
}

.company-story-figure img {
  display: block;
  object-fit: cover;
  object-position: center center;
}

.company-story-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(18, 42, 32, 0.74);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
}

.company-story-stage-map {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 132px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(15, 33, 24, 0.14);
}

.company-story-stage-map img {
  border-radius: 12px;
}

.company-story-meta {
  position: relative;
  min-height: 152px;
  margin-top: 16px;
  padding: 20px 22px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.company-story-copy {
  display: none;
  animation: storyFadeIn 0.4s var(--ease-out);
}

.company-story-copy.is-active {
  display: block;
}

.company-story-copy-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.company-story-copy h3 {
  margin: 0 0 8px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1.34;
  color: var(--green-900);
}

.company-story-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-600);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.company-story-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
}

.company-story-stats div {
  padding: 14px 16px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.company-story-stats dt {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 51, 40, 0.48);
}

.company-story-stats dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--green-900);
  font-weight: 600;
}

.company-story-focus {
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.company-story-focus-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.company-story-focus-label {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 51, 40, 0.48);
}

.company-story-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.company-story-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(22, 51, 40, 0.2);
  transition: transform 0.28s var(--ease-out), background-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.company-story-dot:hover {
  transform: scale(1.12);
  background: rgba(179, 138, 71, 0.58);
}

.company-story-dot.is-active {
  background: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(179, 138, 71, 0.14);
}

.company-story-focus-item {
  display: none;
  margin-top: 14px;
  animation: storyFadeIn 0.4s var(--ease-out);
}

.company-story-focus-item.is-active {
  display: block;
}

.company-story-focus-item h4 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--green-900);
}

.company-story-focus-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.company-story-focus-item li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-600);
}

.company-story-focus-item li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

@keyframes storyFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.company-story-divider {
  position: relative;
  margin: 22px calc(50% - 50vw) 34px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: #0d1814;
}

.company-story-divider-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 48% 42%, rgba(240, 204, 122, 0.16), transparent 22%),
    url("../img/company_culture.jpg") center center / cover no-repeat;
  background-position: center 50%;
  background-size: cover;
  transform: scale(1.18);
  transform-origin: center center;
  will-change: background-position, transform;
  filter: saturate(0.88) brightness(0.82);
  z-index: 0;
  pointer-events: none;
}

.company-story-divider::before {
  content: "";
  position: absolute;
  inset: 18px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 22% 24%, rgba(233, 190, 102, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 3;
}

.company-story-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 14, 11, 0.84) 0%, rgba(7, 14, 11, 0.35) 35%, rgba(7, 14, 11, 0.7) 100%),
    radial-gradient(circle at 50% 50%, transparent 40%, rgba(7, 14, 11, 0.24) 100%);
  pointer-events: none;
  z-index: 1;
}

.company-story-divider-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 64px));
  padding: 58px 0 52px;
  text-align: center;
}

.company-story-divider-shadow {
  margin: 0 0 10px;
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.08);
  line-height: 0.92;
  text-transform: uppercase;
}

.company-story-divider h3 {
  margin: 0 auto;
  max-width: 980px;
  color: rgba(255, 251, 243, 0.98);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.42;
  letter-spacing: 0.03em;
  text-wrap: balance;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.company-story-divider-content > p:last-child {
  margin: 18px auto 0;
  max-width: 680px;
  color: rgba(235, 200, 126, 0.96);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.1em;
}

.company-bridge-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 28px 0 34px;
  padding: 28px 32px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(244, 190, 96, 0.28) 0%, rgba(247, 227, 187, 0.94) 26%, rgba(244, 214, 156, 0.9) 100%);
  border: 1px solid rgba(179, 138, 71, 0.18);
  box-shadow: 0 14px 34px rgba(140, 91, 25, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.company-bridge-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 26%, rgba(214, 131, 19, 0.18), transparent 26%),
    radial-gradient(circle at 85% 72%, rgba(235, 164, 47, 0.16), transparent 28%),
    repeating-linear-gradient(
      115deg,
      rgba(214, 131, 19, 0.04) 0,
      rgba(214, 131, 19, 0.04) 1px,
      transparent 1px,
      transparent 28px
    );
  opacity: 0.84;
  pointer-events: none;
}

.company-bridge-band::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: inset 0 0 0 1px rgba(179, 138, 71, 0.06);
  pointer-events: none;
}

.company-bridge-intro,
.company-bridge-flow {
  position: relative;
  z-index: 1;
}

.company-bridge-intro {
  width: 260px;
  flex-shrink: 0;
  padding-right: 8px;
}

.company-bridge-eyebrow {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.company-bridge-title {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1.32;
  color: var(--green-900);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
}

.company-bridge-desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.86;
  color: var(--text-600);
}

.company-bridge-flow {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-width: 0;
}

.bridge-node {
  width: 172px;
  min-height: 104px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.9), rgba(255, 248, 236, 0.8));
  border: 1px solid rgba(179, 138, 71, 0.12);
  box-shadow: 0 10px 22px rgba(140, 91, 25, 0.08);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.bridge-node:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 131, 19, 0.24);
  box-shadow: 0 14px 30px rgba(140, 91, 25, 0.14);
}

.bridge-node-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(244, 196, 110, 0.28), rgba(255, 247, 232, 0.92));
  color: var(--green-900);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.bridge-node-icon svg {
  width: 20px;
  height: 20px;
}

.bridge-node h4 {
  margin: 14px 0 6px;
  font-size: 17px;
  line-height: 1.42;
  color: var(--green-900);
}

.bridge-node span {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: rgba(22, 51, 40, 0.56);
}

.bridge-line {
  flex: 1;
  min-width: 22px;
  height: 3px;
  margin: 0 10px;
  background: linear-gradient(90deg, rgba(214, 131, 19, 0.2), rgba(214, 131, 19, 0.7), rgba(214, 131, 19, 0.25));
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(214, 131, 19, 0.12);
}

.company-opening-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, 0.98fr);
  gap: 36px;
  margin-top: 52px;
  align-items: start;
}

.company-opening-copy {
  position: relative;
  overflow: hidden;
  padding: 34px 36px 32px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(250, 246, 238, 0.72)),
    radial-gradient(circle at 12% 10%, rgba(179, 138, 71, 0.12), transparent 34%);
  box-shadow: 0 16px 40px rgba(15, 33, 24, 0.06);
  backdrop-filter: blur(12px);
}

.company-opening-copy::after {
  content: "";
  position: absolute;
  right: -46px;
  bottom: -56px;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 138, 71, 0.14), transparent 72%);
  pointer-events: none;
}

.company-opening-copy-eyebrow {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
}

.company-opening-copy-title {
  margin: 0 0 18px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 38px;
  line-height: 1.24;
  color: var(--green-900);
}

.company-opening-copy p {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.96;
  color: var(--text-700);
}

.company-opening-copy-lead {
  font-size: 21px;
  line-height: 1.86;
  color: var(--green-900);
  font-weight: 600;
}

.company-opening-copy p:last-of-type {
  margin-bottom: 0;
}

.company-opening-statement {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(22, 51, 40, 0.05);
  border-left: 3px solid var(--gold-500);
}

.company-opening-statement-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(22, 51, 40, 0.48);
}

.company-opening-statement p {
  margin: 0;
  font-size: 20px;
  line-height: 1.85;
  color: var(--green-900);
  font-weight: 600;
}

.company-opening-list {
  position: relative;
  z-index: 1;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}

.company-opening-list li {
  position: relative;
  padding-left: 20px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--green-900);
  font-weight: 600;
}

.company-opening-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
}

.company-opening-side {
  display: grid;
  gap: 22px;
}

.company-opening-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.company-opening-card {
  position: relative;
  min-height: 226px;
  padding: 24px 24px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.company-opening-card::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(179, 138, 71, 0));
}

.company-opening-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.company-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--green-900);
  transition: background-color 0.28s var(--ease-out), color 0.28s var(--ease-out);
}

.company-opening-card:hover .company-card-icon {
  background: rgba(179, 138, 71, 0.14);
  color: var(--gold-500);
}

.company-card-icon svg,
.mission-icon svg,
.value-icon svg,
.axis-value-chip svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-opening-card h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--green-900);
}

.company-opening-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.88;
  color: var(--text-600);
}

.company-opening-visual {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  margin: 0;
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.company-opening-visual > img {
  height: 430px;
  object-fit: cover;
}

.company-opening-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(12, 28, 21, 0.72) 100%);
}

.company-opening-visual figcaption {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 1;
  max-width: 360px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.company-opening-map {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  width: 180px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(15, 33, 24, 0.16);
}

.company-opening-map img {
  border-radius: 12px;
}

.axis-section {
  padding-top: 132px;
  background:
    radial-gradient(circle at 8% 12%, rgba(179, 138, 71, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(239, 231, 218, 0.48), rgba(246, 242, 233, 0) 14%),
    var(--paper);
}

.axis-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 460px;
  gap: 40px;
  margin-top: 56px;
  align-items: start;
}

.axis-nav {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 14px;
}

.axis-anchor {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 56px;
  padding-left: 20px;
  color: var(--text-500);
  transition: color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.axis-anchor::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 2px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.12);
  transition: background-color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.axis-anchor:hover {
  color: var(--green-900);
  transform: translateX(4px);
}

.axis-anchor.is-active {
  color: var(--green-900);
}

.axis-anchor.is-active::before {
  background: var(--gold-500);
}

.axis-index {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(22, 51, 40, 0.42);
}

.axis-anchor.is-active .axis-index {
  color: var(--gold-500);
}

.axis-label {
  font-size: 18px;
  font-weight: 600;
}

.axis-main {
  display: grid;
  gap: 96px;
}

.axis-block {
  min-height: 640px;
  padding: 6px 0;
}

.axis-mini-title {
  margin: 0 0 18px;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: var(--gold-500);
}

.axis-block h3 {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 50px;
  line-height: 1.24;
  color: var(--green-900);
}

.axis-block p {
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.95;
  color: var(--text-600);
}

.axis-note-list {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.axis-note-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.axis-note-dot {
  width: 10px;
  height: 10px;
  margin-top: 14px;
  border-radius: 50%;
  flex: 0 0 auto;
  background: var(--gold-500);
}

.axis-note-item p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--green-900);
  font-weight: 600;
}

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

.mission-card {
  min-height: 248px;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.mission-icon,
.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: rgba(179, 138, 71, 0.1);
  color: var(--green-900);
}

.mission-card h4,
.vision-step h4,
.value-card h4,
.culture-point h3,
.company-link-body h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.38;
  color: var(--green-900);
}

.mission-card p,
.vision-step p,
.value-card p,
.culture-point p,
.company-link-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.84;
  color: var(--text-600);
}

.vision-ladder {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.vision-step {
  position: relative;
  overflow: hidden;
  padding: 24px 26px 24px 30px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.vision-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(179, 138, 71, 0.96), rgba(22, 51, 40, 0.58));
}

.vision-step-1 {
  margin-right: 112px;
  background: rgba(22, 51, 40, 0.06);
}

.vision-step-2 {
  margin-left: 38px;
  margin-right: 54px;
  background: rgba(179, 138, 71, 0.12);
}

.vision-step-3 {
  margin-left: 86px;
  background: linear-gradient(135deg, var(--green-900), #214438);
}

.vision-step-3 h4,
.vision-step-3 p,
.vision-step-3 .vision-label {
  color: #fff;
}

.vision-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.value-card {
  min-height: 262px;
  padding: 24px 24px 22px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.value-card:hover .value-icon {
  background: rgba(179, 138, 71, 0.16);
  color: var(--gold-500);
}

.value-card-wide {
  grid-column: 1 / -1;
  min-height: 220px;
}

.axis-visual {
  position: sticky;
  top: 118px;
}

.axis-visual-frame {
  position: relative;
  overflow: hidden;
  height: 640px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 14% 14%, rgba(179, 138, 71, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(247, 241, 231, 0.92));
  border: 1px solid rgba(179, 138, 71, 0.14);
  box-shadow: 0 20px 44px rgba(15, 33, 24, 0.1);
}

.axis-visual-item {
  position: absolute;
  inset: 0;
  padding: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 0.42s var(--ease-out), transform 0.42s var(--ease-out),
    visibility 0.42s var(--ease-out);
}

.axis-visual-item.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.axis-visual-figure {
  margin: 0;
  overflow: hidden;
  height: 500px;
  border-radius: 24px;
}

.axis-visual-figure img {
  height: 100%;
  object-fit: cover;
}

.axis-visual-caption {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-600);
}

.axis-visual-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.78);
  color: rgba(255, 255, 255, 0.92);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.axis-visual-map {
  position: absolute;
  right: 36px;
  bottom: 118px;
  width: 150px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 30px rgba(15, 33, 24, 0.14);
}

.axis-visual-map img {
  border-radius: 12px;
}

.axis-visual-values {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 18% 18%, rgba(179, 138, 71, 0.18), transparent 24%),
    linear-gradient(145deg, #163328, #214438 48%, #274838 100%);
}

.axis-value-stack {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}

.axis-value-head {
  max-width: 360px;
}

.axis-value-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.68);
}

.axis-value-head h4 {
  margin: 0;
  font-size: 28px;
  line-height: 1.42;
  color: #fff;
}

.axis-value-illustration {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 32px rgba(5, 15, 11, 0.16);
}

.axis-value-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: cover;
  object-position: center center;
}

.axis-visual-values .axis-visual-caption {
  margin: 18px 0 0;
  color: rgba(245, 240, 230, 0.84);
  font-size: 17px;
  line-height: 1.85;
}

.axis-visual-values .axis-visual-tag {
  background: rgba(255, 255, 255, 0.14);
  letter-spacing: 0.08em;
}

.company-culture-band {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(179, 138, 71, 0.14), transparent 24%),
    linear-gradient(135deg, #163328 0%, #1d3d30 56%, #244638 100%);
  overflow: hidden;
}

.company-culture-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 24%, rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

.culture-shell {
  position: relative;
  z-index: 1;
}

.culture-section-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 26px;
  margin-bottom: 34px;
  padding: 22px 28px;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(244, 207, 128, 0.2) 0%, rgba(244, 207, 128, 0.08) 22%, rgba(255, 255, 255, 0.03) 50%, rgba(244, 207, 128, 0.08) 78%, rgba(244, 207, 128, 0.18) 100%);
  border: 1px solid rgba(244, 207, 128, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 36px rgba(6, 16, 12, 0.14);
  overflow: hidden;
}

.culture-section-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 50%, rgba(244, 207, 128, 0.12), transparent 18%),
    radial-gradient(circle at 84% 50%, rgba(244, 207, 128, 0.1), transparent 18%),
    repeating-linear-gradient(
      115deg,
      rgba(244, 207, 128, 0.03) 0,
      rgba(244, 207, 128, 0.03) 1px,
      transparent 1px,
      transparent 26px
    );
  pointer-events: none;
}

.culture-section-banner-title,
.culture-section-banner-rule {
  position: relative;
  z-index: 1;
}

.culture-section-banner-title {
  margin: 0;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: 0.18em;
  color: #f4d59a;
  text-align: center;
}

.culture-section-banner-rule {
  position: relative;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 207, 128, 0.92), rgba(244, 207, 128, 0.08));
}

.culture-section-banner-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(244, 207, 128, 0.95);
  box-shadow: 0 0 0 6px rgba(244, 207, 128, 0.08);
  transform: translateY(-50%);
}

.culture-section-banner-rule-left::after {
  left: 0;
}

.culture-section-banner-rule-right {
  background: linear-gradient(90deg, rgba(244, 207, 128, 0.08), rgba(244, 207, 128, 0.92));
}

.culture-section-banner-rule-right::after {
  right: 0;
}

.culture-grid {
  display: grid;
  grid-template-columns: 860px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.culture-media {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.culture-media img {
  height: 560px;
  object-fit: cover;
}

.culture-copy h2 {
  margin: 0 0 22px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 48px;
  line-height: 1.22;
  color: #fff;
}

.culture-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.92;
  color: rgba(245, 240, 230, 0.82);
}

.culture-points {
  display: grid;
  gap: 28px;
  margin-top: 36px;
}

.culture-point {
  position: relative;
  padding-left: 22px;
}

.culture-point::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(179, 138, 71, 0.95), rgba(255, 255, 255, 0.22));
}

.culture-point h3 {
  margin-top: 0;
  color: #fff;
}

.culture-point p {
  color: rgba(245, 240, 230, 0.76);
}

.section-head-centered {
  display: block;
  text-align: center;
}

.section-head-centered > div {
  max-width: 1080px;
  margin: 0 auto;
}

.section-head-centered .section-intro.wide {
  margin-left: auto;
  margin-right: auto;
}

.company-targets {
  position: relative;
  padding-top: 118px;
  padding-bottom: 14px;
  background:
    radial-gradient(circle at 14% 14%, rgba(244, 207, 128, 0.12), transparent 20%),
    radial-gradient(circle at 86% 18%, rgba(179, 138, 71, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0)),
    var(--paper);
}

.company-targets-module-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 auto 34px;
  max-width: 1180px;
}

.company-targets-module-title h2 {
  margin: 0;
  padding: 0 10px;
  color: var(--green-800);
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.1;
  white-space: nowrap;
}

.company-targets-module-title-rule {
  position: relative;
  flex: 1 1 0;
  max-width: 300px;
  min-width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0), rgba(179, 138, 71, 0.52), rgba(179, 138, 71, 0));
}

.company-targets-module-title-rule::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.6);
  box-shadow: 0 0 0 7px rgba(179, 138, 71, 0.08);
  transform: translateY(-50%);
}

.company-targets-module-title-rule:last-child::after {
  right: auto;
  left: 22%;
}

.company-targets-quote {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 42px auto 0;
  padding: 16px 22px;
  max-width: 1120px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 235, 0.88));
  border: 1px solid rgba(179, 138, 71, 0.14);
  box-shadow: 0 14px 34px rgba(15, 33, 24, 0.06);
}

.company-targets-quote-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.company-targets-quote p {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-700);
}

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

.company-target-card {
  position: relative;
  overflow: hidden;
  min-height: 484px;
  padding: 28px 28px 26px;
  border-radius: 26px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(247, 241, 231, 0.94)),
    radial-gradient(circle at 12% 12%, rgba(244, 207, 128, 0.14), transparent 34%);
  border: 1px solid rgba(179, 138, 71, 0.14);
  box-shadow: 0 18px 42px rgba(15, 33, 24, 0.08);
}

.company-target-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 84px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-500), rgba(179, 138, 71, 0));
}

.company-target-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.company-target-card-kicker {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 700;
}

.company-target-card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--green-900);
}

.company-target-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-target-dual,
.company-target-range,
.company-target-single {
  display: flex;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 30px;
}

.company-target-dual {
  gap: 16px;
}

.company-target-single {
  gap: 0;
}

.company-target-number-block {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--green-900);
  white-space: nowrap;
}

.company-target-number-block .metric-number {
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 78px;
  line-height: 0.92;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.company-target-unit {
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1;
  color: var(--gold-500);
}

.company-target-unit-inline {
  margin-left: 2px;
}

.company-target-plus,
.company-target-range-dash {
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--gold-500);
}

.company-target-card h3 {
  margin: 26px 0 12px;
  font-size: 28px;
  line-height: 1.34;
  color: var(--green-900);
}

.company-target-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.88;
  color: var(--text-700);
}

.company-target-note,
.company-target-milestones {
  margin-top: 22px;
}

.company-target-note {
  padding-top: 16px;
  border-top: 1px solid rgba(22, 51, 40, 0.08);
  font-size: 15px;
  line-height: 1.8;
  color: var(--green-900);
  font-weight: 600;
}

.company-target-milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.company-target-milestones span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 600;
}

.company-links {
  padding-top: 132px;
}

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

.company-link-card {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.company-link-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.company-link-card figure {
  margin: 0;
  overflow: hidden;
  height: 240px;
}

.company-link-card figure img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.company-link-card:hover figure img {
  transform: scale(1.04);
}

.company-link-body {
  padding: 26px 26px 28px;
}

.company-link-body .button {
  margin-top: 22px;
}

.company-brand-strip h2 {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.company-brand-strip p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* products page */
.products-page .site-header {
  position: fixed;
  background: rgba(22, 51, 40, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.products-page .section {
  padding-top: 48px;
  padding-bottom: 44px;
}

.products-page .page-anchor-nav {
  gap: 8px;
  padding: 12px 8px;
}

.products-page .page-anchor-nav::before {
  top: 18px;
  bottom: 18px;
}

.products-page .page-anchor-link {
  min-height: 38px;
  padding: 0 12px 0 22px;
}

.products-page .page-anchor-link::before {
  left: 7px;
  width: 7px;
  height: 7px;
}

.products-page .page-anchor-label {
  font-size: 12px;
  letter-spacing: 0.05em;
}

.products-chapter-heading {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 24px;
  padding: 20px 28px 20px 26px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(243, 231, 214, 0.72)),
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.12), transparent 40%);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 18px 42px rgba(15, 33, 24, 0.08);
  overflow: hidden;
}

.products-chapter-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(202, 160, 90, 0.12), rgba(202, 160, 90, 0.9), rgba(202, 160, 90, 0.12));
}

.products-chapter-index {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  box-shadow: 0 16px 28px rgba(22, 51, 40, 0.2);
  color: rgba(255, 255, 255, 0.94);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.products-chapter-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.products-chapter-copy span {
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.products-chapter-copy strong {
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 38px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.products-chapter-heading-hero {
  max-width: 420px;
  margin-bottom: 26px;
  background:
    linear-gradient(135deg, rgba(246, 242, 233, 0.14), rgba(246, 242, 233, 0.08)),
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.14), transparent 42%);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(8, 21, 15, 0.18);
  backdrop-filter: blur(16px);
}

.products-chapter-heading-hero::before {
  background: linear-gradient(180deg, rgba(202, 160, 90, 0.14), rgba(202, 160, 90, 1), rgba(202, 160, 90, 0.14));
}

.products-chapter-heading-hero .products-chapter-index {
  background: linear-gradient(145deg, rgba(246, 242, 233, 0.22), rgba(246, 242, 233, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 28px rgba(8, 21, 15, 0.18);
}

.products-chapter-heading-hero .products-chapter-copy span {
  color: rgba(202, 160, 90, 0.96);
}

.products-chapter-heading-hero .products-chapter-copy strong {
  color: #fff;
}

.products-hero {
  position: relative;
  min-height: 930px;
  padding: 0;
  overflow: hidden;
  background: #10241b;
}

.products-hero-media,
.products-hero-overlay {
  position: absolute;
  inset: 0;
}

.products-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1.04);
}

.products-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.68) 0%, rgba(8, 21, 15, 0.34) 42%, rgba(8, 21, 15, 0.58) 100%),
    linear-gradient(180deg, rgba(8, 21, 15, 0.18), rgba(8, 21, 15, 0.52));
}

.products-hero-shell {
  position: relative;
  min-height: 930px;
  padding: 194px 0 92px;
  display: grid;
  align-content: space-between;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  color: #fff;
}

.products-hero-content h1 {
  margin: 18px 0 24px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 72px;
  line-height: 1.16;
  letter-spacing: 0.02em;
}

.products-hero-content p:not(.eyebrow) {
  margin: 0;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.88);
}

.products-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 38px;
}

.products-hero-tags {
  position: relative;
  z-index: 2;
  justify-self: end;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  max-width: 520px;
}

.products-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.12);
  border: 1px solid rgba(246, 242, 233, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.products-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1fr);
  gap: 54px;
  align-items: center;
}

.products-value-icon svg,
.products-capability-icon svg,
.products-certificate-card svg,
.products-pack-qr svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-value-point h3,
.products-role-card h3,
.products-capability-card h3,
.products-form-body h3,
.products-certificate-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.45;
}

.products-value-point p,
.products-role-card p,
.products-capability-card p,
.products-form-body p,
.products-certificate-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-600);
}

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

.products-value-copy .section-intro {
  max-width: 700px;
}

.products-value-keywords {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.products-value-keyword {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(22, 51, 40, 0.1);
}

.products-value-keyword strong {
  min-width: 220px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.products-value-keyword span {
  color: var(--text-500);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.products-value-summary {
  margin-top: 28px;
  padding: 18px 20px 18px 22px;
  border-left: 3px solid rgba(179, 138, 71, 0.72);
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.08), rgba(179, 138, 71, 0));
}

.products-value-summary p {
  margin: 0;
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.92;
}

.products-value-visual {
  position: relative;
}

.products-value-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 28px 54px rgba(15, 33, 24, 0.14);
}

.products-value-billboard {
  position: relative;
  min-height: 860px;
  background: #10241b;
}

.products-value-billboard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 24, 18, 0.08), rgba(10, 24, 18, 0.56)),
    radial-gradient(circle at 20% 15%, rgba(202, 160, 90, 0.12), transparent 28%);
  z-index: 1;
}

.products-value-figure img {
  aspect-ratio: 0.92;
  min-height: 860px;
  object-fit: cover;
}

.products-value-glass-stack {
  position: absolute;
  inset: 42px 42px 42px auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  width: 360px;
}

.products-value-glass-card {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 24px 22px;
  border-radius: 24px;
  background: rgba(246, 242, 233, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 40px rgba(8, 21, 15, 0.22);
  backdrop-filter: blur(18px);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out);
}

.products-value-glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 32%, rgba(255, 214, 133, 0.22) 50%, transparent 68%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease-out);
}

.products-value-glass-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 228, 182, 0.34);
  box-shadow: 0 24px 52px rgba(8, 21, 15, 0.28);
}

.products-value-glass-card:hover::after {
  transform: translateX(130%);
}

.products-value-glass-card span,
.products-value-glass-card h3,
.products-value-glass-card p {
  position: relative;
  z-index: 1;
}

.products-value-glass-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.products-value-glass-card h3 {
  margin: 16px 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
}

.products-value-glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.8;
}

.products-metrics-section {
  padding-top: 120px;
}

.products-metrics-board {
  position: relative;
  margin-top: 10px;
  padding: 42px 40px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(202, 160, 90, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(202, 160, 90, 0.12), transparent 32%),
    linear-gradient(145deg, #163328 0%, #10241b 58%, #0b1914 100%);
  box-shadow: 0 34px 80px rgba(10, 24, 18, 0.24);
  overflow: hidden;
}

.products-metrics-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.products-metrics-head {
  position: relative;
  z-index: 1;
  margin-bottom: 34px;
}

.products-metrics-head .section-title {
  max-width: 980px;
  color: #fff;
}

.products-metrics-head .section-intro {
  max-width: 920px;
  color: rgba(255, 255, 255, 0.72);
}

.products-bento-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-areas:
    "main main main main policy policy policy policy"
    "main main main main food food people people"
    "main main main main gap gap gap gap";
  gap: 18px;
}

.products-bento-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 44px rgba(8, 21, 15, 0.18);
  backdrop-filter: blur(18px);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s var(--ease-out);
}

.products-bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 38%, rgba(255, 214, 133, 0.12) 50%, transparent 62%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.72s var(--ease-out);
  pointer-events: none;
}

.products-bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 228, 182, 0.28);
  box-shadow: 0 28px 54px rgba(8, 21, 15, 0.24);
}

.products-bento-card:hover::after {
  transform: translateX(130%);
}

.products-bento-card:nth-child(1) {
  transition-delay: 0s;
}

.products-bento-card:nth-child(2) {
  transition-delay: 0.04s;
}

.products-bento-card:nth-child(3) {
  transition-delay: 0.08s;
}

.products-bento-card:nth-child(4) {
  transition-delay: 0.12s;
}

.products-bento-card:nth-child(5) {
  transition-delay: 0.16s;
}

.products-bento-main {
  grid-area: main;
  min-height: 720px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at top left, rgba(202, 160, 90, 0.16), transparent 26%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.products-bento-shield {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px 0 12px;
  border-radius: 999px;
  background: rgba(202, 160, 90, 0.12);
  border: 1px solid rgba(202, 160, 90, 0.22);
  color: rgba(255, 242, 215, 0.92);
}

.products-bento-shield svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-bento-shield span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.products-bento-main-copy {
  position: relative;
  z-index: 2;
  max-width: 420px;
}

.products-bento-label {
  margin: 24px 0 10px;
  color: rgba(202, 160, 90, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.products-bento-number-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0;
  white-space: nowrap;
}

.products-bento-number-row .metric-number {
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 84px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #ffe8be 0%, #d2a760 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.products-bento-number-row .metric-suffix,
.products-bento-number-row .metric-static {
  color: rgba(255, 234, 193, 0.9);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.products-bento-main h3,
.products-bento-policy h3,
.products-bento-food h3,
.products-bento-people h3,
.products-bento-gap h3 {
  margin: 20px 0 12px;
  color: #fff;
  font-size: 34px;
  line-height: 1.22;
}

.products-bento-main p,
.products-bento-policy p,
.products-bento-food p,
.products-bento-people p,
.products-bento-gap p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.85;
}

.products-bento-main-media {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 24px 48px rgba(8, 21, 15, 0.26);
}

.products-bento-main-media img {
  aspect-ratio: 1.08;
  object-fit: cover;
}

.products-bento-policy {
  grid-area: policy;
}

.products-bento-card-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 20px;
  align-items: center;
}

.products-bento-chart {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 10px;
  height: 122px;
}

.products-bento-chart span {
  display: block;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgba(202, 160, 90, 0.88), rgba(202, 160, 90, 0.24));
  box-shadow: 0 10px 24px rgba(202, 160, 90, 0.18);
}

.products-bento-chart span:nth-child(1) {
  height: 54px;
}

.products-bento-chart span:nth-child(2) {
  height: 78px;
}

.products-bento-chart span:nth-child(3) {
  height: 108px;
}

.products-bento-chart i {
  position: absolute;
  inset: 12px 4px 24px;
  border-top: 2px solid rgba(255, 228, 182, 0.78);
  border-right: 2px solid rgba(255, 228, 182, 0.78);
  transform: skewY(-22deg);
  border-radius: 0 10px 0 0;
}

.products-bento-food {
  grid-area: food;
}

.products-bento-icon-wrap {
  position: relative;
  width: 92px;
  height: 64px;
}

.products-bento-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 242, 215, 0.92);
}

.products-bento-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-bento-icon-leaf {
  position: absolute;
  right: 0;
  bottom: -4px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(202, 160, 90, 0.18);
}

.products-bento-food .products-bento-number-row .metric-number,
.products-bento-people .products-bento-number-row .metric-number {
  font-size: 66px;
}

.products-bento-food .metric-suffix,
.products-bento-people .metric-suffix {
  font-size: 22px;
}

.products-bento-people {
  grid-area: people;
}

.products-bento-mapflow {
  position: relative;
  width: 150px;
  height: 88px;
  margin-bottom: 12px;
}

.products-bento-mapflow span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 228, 182, 0.9);
  box-shadow: 0 0 0 6px rgba(202, 160, 90, 0.12);
}

.products-bento-mapflow span::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 228, 182, 0.5), rgba(255, 228, 182, 0));
  transform-origin: left center;
}

.products-bento-mapflow span:nth-child(1) {
  left: 6px;
  top: 34px;
}

.products-bento-mapflow span:nth-child(1)::after {
  top: 4px;
  left: 8px;
  transform: rotate(-12deg);
}

.products-bento-mapflow span:nth-child(2) {
  left: 38px;
  top: 18px;
}

.products-bento-mapflow span:nth-child(2)::after {
  top: 4px;
  left: 8px;
  width: 38px;
  transform: rotate(8deg);
}

.products-bento-mapflow span:nth-child(3) {
  left: 74px;
  top: 30px;
}

.products-bento-mapflow span:nth-child(3)::after {
  top: 4px;
  left: 8px;
  width: 34px;
  transform: rotate(-10deg);
}

.products-bento-mapflow span:nth-child(4) {
  left: 102px;
  top: 12px;
}

.products-bento-mapflow span:nth-child(4)::after {
  top: 4px;
  left: -28px;
  width: 32px;
  transform: rotate(42deg);
}

.products-bento-mapflow span:nth-child(5) {
  left: 118px;
  top: 44px;
}

.products-bento-mapflow span:nth-child(5)::after {
  display: none;
}

.products-bento-mapflow span:nth-child(6) {
  left: 58px;
  top: 60px;
}

.products-bento-mapflow span:nth-child(6)::after {
  top: -8px;
  left: 8px;
  width: 34px;
  transform: rotate(-28deg);
}

.products-bento-mapflow span:nth-child(7) {
  left: 18px;
  top: 56px;
}

.products-bento-mapflow span:nth-child(7)::after {
  top: 4px;
  left: 8px;
  width: 28px;
  transform: rotate(8deg);
}

.products-bento-mapflow span:nth-child(8) {
  left: 88px;
  top: 68px;
}

.products-bento-mapflow span:nth-child(8)::after {
  display: none;
}

.products-bento-gap {
  grid-area: gap;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  align-items: center;
}

.products-bento-gap .products-bento-number-row .metric-number {
  font-size: 64px;
}

.products-bento-gap .metric-suffix,
.products-bento-gap .metric-static {
  font-size: 22px;
}

.products-bento-ring {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  height: 176px;
  margin-left: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(11, 25, 20, 0.94) 0 58%, transparent 58%),
    conic-gradient(from 220deg, rgba(255, 221, 166, 0.96) 0 14deg, rgba(255, 255, 255, 0.06) 14deg 360deg);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.products-bento-ring-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.products-bento-ring-core strong {
  color: #fff;
  font-size: 22px;
}

.products-bento-ring-core span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.metric-number-range,
.products-bento-number-range {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
}

.metric-static {
  white-space: nowrap;
}

.products-metrics-footnote {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 16px 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.products-metrics-footnote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.8;
}

.products-matrix-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
  margin-top: 48px;
}

.products-matrix-card,
.products-role-card,
.products-capability-card,
.products-form-card,
.products-research-card,
.products-research-feature,
.products-detail-nav,
.products-detail-panel,
.products-certificate-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.products-matrix-card {
  overflow: hidden;
  border-radius: 24px;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.products-matrix-card:hover,
.products-role-card:hover,
.products-capability-card:hover,
.products-form-card:hover,
.products-research-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.products-matrix-media img {
  aspect-ratio: 1;
  object-fit: cover;
}

.products-matrix-body {
  padding: 20px 22px 24px;
}

.products-matrix-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.products-matrix-body h3 {
  margin: 14px 0 10px;
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.2;
}

.products-matrix-body p {
  margin: 0;
  min-height: 88px;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.88;
}

.matrix-trigger {
  margin-top: 18px;
}

.products-role-band {
  margin-top: 28px;
}

.products-role-band,
.products-capability-grid,
.products-forms-grid,
.products-certificate-grid {
  display: grid;
  gap: 20px;
}

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

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

.products-focus-head {
  max-width: 1080px;
}

.products-focus-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "brand rare"
    "brand light"
    "tonic tonic";
  gap: 22px;
  margin-top: 42px;
}

.products-focus-cluster {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.14), transparent 44%);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.products-focus-cluster:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.products-focus-cluster-copy {
  position: relative;
  z-index: 2;
}

.products-focus-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.products-focus-cluster h3 {
  margin: 18px 0 10px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.22;
}

.products-focus-cluster p {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.9;
}

.products-focus-brand {
  grid-area: brand;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  min-height: 760px;
  background:
    radial-gradient(circle at top left, rgba(202, 160, 90, 0.18), transparent 32%),
    linear-gradient(160deg, rgba(20, 49, 37, 0.96), rgba(24, 61, 44, 0.88));
  border-color: rgba(255, 255, 255, 0.08);
}

.products-focus-brand .products-focus-label {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 237, 206, 0.94);
}

.products-focus-brand h3,
.products-focus-brand p {
  color: rgba(255, 255, 255, 0.94);
}

.products-focus-hero-media {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 44px rgba(6, 17, 12, 0.28);
}

.products-focus-hero-media img {
  aspect-ratio: 1.22;
  object-fit: cover;
}

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

.products-focus-item.matrix-trigger {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  margin-top: 0;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.products-focus-item.matrix-trigger:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 228, 182, 0.5);
  box-shadow: 0 14px 26px rgba(7, 19, 13, 0.24);
}

.products-focus-item img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
}

.products-focus-item strong,
.products-focus-inline-item strong,
.products-focus-strip-item strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
}

.products-focus-item span,
.products-focus-inline-item span,
.products-focus-strip-item span,
.products-focus-rare-text span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.74);
}

.products-focus-rare {
  grid-area: rare;
  min-height: 352px;
  display: grid;
  gap: 18px;
}

.products-focus-rare-hero {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 14px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(17, 38, 28, 0.96), rgba(34, 67, 49, 0.88));
  box-shadow: 0 18px 34px rgba(10, 24, 18, 0.18);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.products-focus-rare-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(10, 24, 18, 0.24);
}

.products-focus-rare-hero img {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: 20px;
  object-fit: cover;
}

.products-focus-rare-text strong {
  color: #fff;
  font-size: 30px;
}

.products-focus-light {
  grid-area: light;
  min-height: 386px;
  display: grid;
  gap: 18px;
}

.products-focus-inline-list {
  display: grid;
  gap: 14px;
}

.products-focus-inline-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(245, 240, 230, 0.72);
  border: 1px solid rgba(22, 51, 40, 0.08);
  transition: transform 0.28s var(--ease-out), border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.products-focus-inline-item:hover,
.products-focus-strip-item:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 138, 71, 0.34);
  box-shadow: 0 16px 28px rgba(22, 51, 40, 0.1);
}

.products-focus-inline-item img,
.products-focus-strip-item img {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
}

.products-focus-inline-item span,
.products-focus-strip-item span {
  color: var(--text-500);
}

.products-focus-tonic {
  grid-area: tonic;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  background:
    linear-gradient(145deg, rgba(55, 47, 31, 0.12), rgba(255, 255, 255, 0.82)),
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.14), transparent 42%);
}

.products-focus-tonic-copy h3 {
  margin-top: 18px;
}

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

.products-focus-strip-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.products-focus-station-head {
  max-width: 1080px;
  margin-top: 44px;
}

.products-focus-station-head h3 {
  margin: 14px 0 14px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 700;
}

.products-focus-station-head p:not(.eyebrow) {
  margin: 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.95;
}

.products-matrix-grid {
  display: none;
}

.products-role-band {
  display: none;
}

.products-detail-shell {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: start;
  margin-top: 32px;
}

.products-detail-nav {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 26px;
}

.product-detail-tab {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(22, 51, 40, 0.1);
  border-radius: 16px;
  background: rgba(245, 240, 230, 0.74);
  color: var(--text-600);
  font-weight: 700;
  transition: all 0.28s var(--ease-out);
}

.product-detail-tab:hover,
.product-detail-tab.is-active {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 28px rgba(22, 51, 40, 0.18);
}

.products-detail-panels {
  display: grid;
}

.products-detail-panel {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.92fr) 300px;
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
}

.products-detail-panel.is-active {
  display: grid;
}

.products-detail-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
}

.products-detail-figure img {
  aspect-ratio: 0.95;
  object-fit: cover;
}

.products-detail-copy {
  align-self: center;
}

.products-detail-copy h3 {
  margin: 14px 0 16px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 42px;
  line-height: 1.2;
}

.products-detail-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.95;
  color: var(--text-600);
}

.products-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.products-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
}

.products-detail-highlights {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.products-detail-highlights li {
  position: relative;
  padding-left: 18px;
  margin-top: 14px;
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.9;
}

.products-detail-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold-500);
}

.products-recipe-card {
  align-self: stretch;
  min-height: 100%;
}

.products-recipe-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  transform-style: preserve-3d;
  transition: transform 0.6s var(--ease-out);
}

.products-recipe-card:hover .products-recipe-card-inner {
  transform: rotateY(180deg);
}

.products-recipe-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  backface-visibility: hidden;
  border-radius: 24px;
  overflow: hidden;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.products-recipe-front {
  background-position: center;
  background-size: cover;
}

.products-recipe-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 24, 18, 0.12), rgba(10, 24, 18, 0.72));
}

.products-recipe-front span,
.products-recipe-front strong,
.products-recipe-back h4,
.products-recipe-back ol {
  position: relative;
  z-index: 1;
}

.products-recipe-front span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  letter-spacing: 0.14em;
}

.products-recipe-front strong {
  margin-top: 10px;
  color: #fff;
  font-size: 30px;
  line-height: 1.25;
}

.products-recipe-back {
  background:
    radial-gradient(circle at top left, rgba(179, 138, 71, 0.16), transparent 40%),
    linear-gradient(180deg, #163328, #10241b);
  transform: rotateY(180deg);
  color: rgba(255, 255, 255, 0.88);
}

.products-recipe-back h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
}

.products-recipe-back ol {
  margin: 0;
  padding-left: 20px;
  font-size: 16px;
  line-height: 2;
}

.products-process-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.products-process-chips span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(22, 51, 40, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(15, 33, 24, 0.05);
}

.products-process-chips svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.products-process-stage-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.products-stage-rail-button {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid rgba(22, 51, 40, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 228, 0.92));
  box-shadow: 0 18px 34px rgba(11, 27, 20, 0.06);
  cursor: pointer;
  transition:
    transform 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out);
}

.products-stage-rail-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1;
  transition:
    background 0.28s var(--ease-out),
    color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.products-stage-rail-button strong,
.products-stage-rail-button small {
  display: block;
}

.products-stage-rail-button strong {
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.25;
}

.products-stage-rail-button small {
  margin-top: 8px;
  color: var(--text-500);
  font-size: 14px;
  line-height: 1.6;
}

.products-stage-rail-button:hover,
.products-stage-rail-button.is-active {
  transform: translateY(-4px);
  border-color: rgba(179, 138, 71, 0.32);
  box-shadow: 0 22px 38px rgba(11, 27, 20, 0.1);
}

.products-stage-rail-button:hover span,
.products-stage-rail-button.is-active span {
  background: linear-gradient(145deg, #173f32, #224738);
  color: #fff;
  transform: translateY(-2px);
}

.products-stage-rail-arrow {
  position: relative;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.2), rgba(179, 138, 71, 0.72));
}

.products-stage-rail-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(179, 138, 71, 0.72);
  border-right: 2px solid rgba(179, 138, 71, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.products-process-experience {
  display: grid;
  grid-template-columns: 246px minmax(0, 1fr) 320px;
  gap: 20px;
  align-items: start;
  margin-top: 24px;
}

.products-process-nav {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 14px;
}

.products-stage-group {
  padding: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 239, 228, 0.92));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 18px 32px rgba(11, 27, 20, 0.06);
}

.products-stage-button,
.products-node-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.products-stage-button {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.products-stage-button > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 24px;
  line-height: 1;
  transition: background 0.28s var(--ease-out), color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.products-stage-button strong,
.products-stage-button small {
  display: block;
}

.products-stage-button strong {
  color: var(--green-900);
  font-size: 21px;
  line-height: 1.3;
}

.products-stage-button small {
  margin-top: 4px;
  color: var(--text-500);
  font-size: 13px;
  line-height: 1.62;
}

.products-stage-button.is-active > span,
.products-stage-group:hover .products-stage-button > span {
  background: linear-gradient(145deg, #173f32, #23483a);
  color: #fff;
  transform: translateY(-2px);
}

.products-node-list {
  position: relative;
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding-left: 18px;
}

.products-node-list::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 7px;
  width: 1px;
  background: linear-gradient(180deg, rgba(179, 138, 71, 0.15), rgba(179, 138, 71, 0.48));
}

.products-node-button {
  position: relative;
  display: block;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(22, 51, 40, 0.06);
  background: rgba(255, 255, 255, 0.72);
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.products-node-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #fff;
  border: 2px solid rgba(179, 138, 71, 0.42);
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.72);
}

.products-node-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(22, 51, 40, 0.32);
  border-right: 1.5px solid rgba(22, 51, 40, 0.32);
  transform: translateY(-50%) rotate(45deg);
  transition: border-color 0.28s var(--ease-out), transform 0.28s var(--ease-out);
}

.products-node-button strong,
.products-node-button small {
  display: block;
}

.products-node-button strong {
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.35;
}

.products-node-button small {
  margin-top: 6px;
  color: var(--text-500);
  font-size: 12px;
  line-height: 1.65;
}

.products-node-button:hover,
.products-node-button.is-active {
  transform: translateX(6px);
  border-color: rgba(179, 138, 71, 0.35);
  background: linear-gradient(180deg, rgba(22, 51, 40, 0.96), rgba(31, 65, 52, 0.92));
  box-shadow: 0 18px 32px rgba(11, 27, 20, 0.12);
}

.products-node-button:hover::before,
.products-node-button.is-active::before {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.95);
}

.products-node-button:hover::after,
.products-node-button.is-active::after {
  border-color: rgba(255, 255, 255, 0.82);
  transform: translateY(-50%) rotate(45deg) translateX(2px);
}

.products-node-button:hover strong,
.products-node-button:hover small,
.products-node-button.is-active strong,
.products-node-button.is-active small {
  color: #fff;
}

.products-process-visual,
.products-process-evidence {
  position: relative;
  min-height: 610px;
}

.products-stage-pane,
.products-evidence-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 0.42s var(--ease-out),
    transform 0.42s var(--ease-out);
}

.products-stage-pane.is-active,
.products-evidence-card.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.products-stage-pane {
  overflow: hidden;
  border-radius: 34px;
  background: #173428;
  box-shadow: 0 26px 56px rgba(13, 30, 22, 0.18);
}

.products-stage-pane figure {
  height: 100%;
  margin: 0;
}

.products-stage-pane img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.8s ease;
}

.products-stage-pane:hover img {
  transform: scale(1.05);
}

.products-stage-pane::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 18, 14, 0.12), rgba(10, 18, 14, 0.2) 24%, rgba(10, 18, 14, 0.55) 68%, rgba(10, 18, 14, 0.82) 100%);
}

.products-stage-pane-copy {
  position: absolute;
  inset: auto 24px 24px;
  z-index: 2;
}

.products-stage-pane-copy > span,
.products-evidence-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(246, 240, 228, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.products-stage-pane-copy h3 {
  margin: 14px 0 10px;
  color: #fff;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.22;
}

.products-stage-pane-copy p {
  max-width: 580px;
  margin: 0;
  color: rgba(246, 240, 228, 0.86);
  font-size: 15px;
  line-height: 1.82;
}

.products-stage-pane-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.products-stage-pane-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(246, 240, 228, 0.96);
  font-size: 13px;
  font-weight: 600;
}

.products-evidence-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 228, 0.92));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 22px 42px rgba(11, 27, 20, 0.08);
}

.products-evidence-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 31px;
  line-height: 1.22;
}

.products-evidence-card > p {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.78;
}

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

.products-evidence-block {
  min-height: 124px;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 51, 40, 0.06);
}

.products-evidence-block strong,
.products-evidence-proof span,
.products-evidence-proof strong,
.products-evidence-summary span,
.products-evidence-summary strong {
  display: block;
}

.products-evidence-block strong {
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.35;
}

.products-evidence-block ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.78;
}

.products-evidence-proof {
  min-height: 110px;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(243, 236, 223, 0.88));
  border: 1px solid rgba(179, 138, 71, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.products-evidence-proof span {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-evidence-proof strong {
  margin-top: 10px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 26px;
  line-height: 1.25;
}

.products-evidence-proof p {
  margin: 8px 0 0;
  color: var(--text-500);
  font-size: 13px;
  line-height: 1.7;
}

.products-evidence-summary {
  margin-top: auto;
  padding: 18px 20px 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, #173f32, #224738);
  box-shadow: 0 20px 36px rgba(13, 30, 22, 0.16);
}

.products-evidence-summary span {
  color: rgba(246, 240, 228, 0.7);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.products-evidence-summary strong {
  margin-top: 10px;
  color: #fff;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.35;
}

.products-evidence-summary p {
  margin: 10px 0 0;
  color: rgba(246, 240, 228, 0.82);
  font-size: 14px;
  line-height: 1.72;
}

.products-process-experience {
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.products-process-nav {
  top: 120px;
}

.products-process-stageboard {
  position: relative;
  min-height: 0;
  height: auto;
}

.products-process-board {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 238, 227, 0.97));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 24px 48px rgba(11, 27, 20, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px) scale(0.988);
  overflow: visible;
  transition:
    opacity 0.42s var(--ease-out),
    transform 0.42s var(--ease-out),
    visibility 0.42s var(--ease-out);
}

.products-process-board.is-active {
  position: relative;
  inset: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.products-process-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.products-process-board-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #173f32, #23483a);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(13, 30, 22, 0.18);
}

.products-process-board-flow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.products-process-flow-step {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--text-600);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition:
    background 0.28s var(--ease-out),
    color 0.28s var(--ease-out),
    transform 0.28s var(--ease-out);
}

.products-process-flow-step.is-active {
  background: rgba(179, 138, 71, 0.16);
  color: var(--green-900);
  transform: translateY(-1px);
}

.products-process-board-flow i {
  position: relative;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.26), rgba(179, 138, 71, 0.82));
}

.products-process-board-flow i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid rgba(179, 138, 71, 0.82);
  border-right: 1.5px solid rgba(179, 138, 71, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.products-process-board-lead {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

.products-process-board-lead h3 {
  margin: 0;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: clamp(28px, 2.2vw, 40px);
  line-height: 1.22;
}

.products-process-board-lead p {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.82;
}

.products-process-board-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  grid-template-areas:
    "visual evidence"
    "visual proof";
  column-gap: 24px;
  row-gap: 16px;
  align-items: start;
  min-height: 0;
  margin-bottom: 10px;
}

.products-process-board-visual {
  grid-area: visual;
  display: grid;
  gap: 14px;
  align-content: start;
  height: auto;
}

.products-process-board-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #173428;
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: 100%;
}

.products-process-board-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 1.8s ease;
}

.products-process-board:hover .products-process-board-figure img {
  transform: scale(1.05);
}

.products-process-board-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 18, 14, 0.06), rgba(10, 18, 14, 0.12) 58%, rgba(10, 18, 14, 0.26) 100%);
}

.products-process-board-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  backdrop-filter: blur(10px);
}

.products-process-visual-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-process-visual-notes span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 51, 40, 0.08);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(12, 28, 20, 0.07);
}

.products-process-board-aside {
  display: contents;
}

.products-process-evidence-grid {
  grid-area: evidence;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.products-process-evidence {
  min-height: 0;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 51, 40, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.products-process-evidence span,
.products-process-proof-chip span,
.products-process-summary span {
  display: block;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-process-evidence ul {
  margin: 12px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--text-600);
  font-size: 14px;
  line-height: 1.72;
}

.products-process-proof-strip {
  grid-area: proof;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.products-process-proof-chip {
  min-height: 0;
  padding: 16px 18px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 236, 223, 0.92));
  border: 1px solid rgba(179, 138, 71, 0.18);
}

.products-process-proof-chip strong {
  display: block;
  margin-top: 10px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 19px;
  line-height: 1.28;
}

.products-process-summary {
  display: none;
}

.products-process-summary strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 22px;
  line-height: 1.38;
}

.products-process-summary p {
  margin: 10px 0 0;
  color: rgba(246, 240, 228, 0.84);
  font-size: 14px;
  line-height: 1.74;
}

.products-process-result-band {
  position: relative;
  z-index: 0;
  margin-top: 6px;
  padding: 20px 22px 22px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, #faf6ef, #f3ecdf);
  border: 1px solid rgba(22, 51, 40, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 16px 28px rgba(11, 27, 20, 0.05);
  overflow: hidden;
}

.products-process-result-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.18), rgba(179, 138, 71, 0.58), rgba(179, 138, 71, 0.18));
  pointer-events: none;
}

.products-process-result-copy {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.products-process-result-copy span {
  display: inline-flex;
  align-items: center;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-process-result-copy h4 {
  margin: 0;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.28;
}

.products-process-result-copy p {
  margin: 0;
  max-width: 840px;
  color: var(--text-600);
  font-size: 14px;
  line-height: 1.78;
}

.products-process-result-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  align-items: stretch;
}

.products-process-result-flow {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr) 28px
    minmax(0, 1fr) 28px
    minmax(0, 1fr) 28px
    minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.products-process-result-card {
  min-height: 132px;
  padding: 16px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(22, 51, 40, 0.06);
  box-shadow: 0 14px 28px rgba(11, 27, 20, 0.05);
}

.products-process-result-card span {
  display: block;
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.products-process-result-card strong {
  display: block;
  margin-top: 8px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 18px;
  line-height: 1.32;
}

.products-process-result-card p {
  margin: 8px 0 0;
  color: var(--text-600);
  font-size: 12px;
  line-height: 1.64;
}

.products-process-result-card.is-final {
  background: linear-gradient(135deg, #173f32, #224738);
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(13, 30, 22, 0.16);
}

.products-process-result-card.is-final span {
  color: rgba(244, 220, 176, 0.92);
}

.products-process-result-card.is-final strong {
  color: #fff;
}

.products-process-result-card.is-final p {
  color: rgba(246, 240, 228, 0.84);
}

.products-process-result-arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(179, 138, 71, 0.2), rgba(179, 138, 71, 0.85));
}

.products-process-result-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(179, 138, 71, 0.82);
  border-right: 1.5px solid rgba(179, 138, 71, 0.82);
  transform: translateY(-50%) rotate(45deg);
}

.products-process-result-figure {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 232, 0.95));
  border: 1px solid rgba(22, 51, 40, 0.06);
  box-shadow: 0 16px 30px rgba(11, 27, 20, 0.06);
  align-self: stretch;
}

.products-process-result-figure img {
  width: 100%;
  height: 100%;
  min-height: 196px;
  object-fit: cover;
}

.products-process-result-figure figcaption {
  padding: 12px 14px 14px;
  display: grid;
  gap: 5px;
}

.products-process-result-figure strong {
  color: var(--green-900);
  font-size: 16px;
  line-height: 1.36;
}

.products-process-result-figure small {
  color: var(--text-600);
  font-size: 12px;
  line-height: 1.65;
}

@media (max-width: 1500px) {
  .products-capability-proof {
    grid-template-columns: minmax(0, 1fr);
  }

  .products-capability-proof-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .products-capability-theater {
    gap: 18px;
  }

  .products-capability-stage-card,
  .products-capability-stage-overlay {
    min-height: 420px;
  }

  .products-capability-stage-overlay h3 {
    font-size: 30px;
  }

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

  .products-process-stageboard {
    min-height: 0;
  }

  .products-process-board-body {
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .products-process-board-lead h3 {
    font-size: clamp(26px, 2vw, 36px);
  }

  .products-process-proof-chip strong {
    font-size: 18px;
  }

  .products-process-result-layout {
    grid-template-columns: minmax(0, 1fr) 200px;
  }

  .products-process-result-card strong {
    font-size: 18px;
  }
}

@media (max-width: 1360px) {
  .products-capability-proof-badges,
  .products-capability-theater,
  .products-capability-result-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-capability-stage-card,
  .products-capability-stage-overlay {
    min-height: 400px;
  }

  .products-capability-result-band > strong {
    font-size: 30px;
  }

  .products-process-board {
    padding: 18px;
  }

  .products-process-stageboard {
    min-height: 0;
  }

  .products-process-board-body {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "visual"
      "evidence"
      "proof"
      "summary";
    min-height: 0;
  }

  .products-process-evidence-grid,
  .products-process-proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-process-summary {
    grid-column: auto;
  }

  .products-process-result-layout {
    grid-template-columns: 1fr;
  }

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

  .products-process-result-arrow {
    display: none;
  }
}

@media (max-width: 1100px) {
  .products-capability-proof-badges,
  .products-capability-theater,
  .products-capability-result-pills {
    grid-template-columns: 1fr;
  }

  .products-capability-stage-card,
  .products-capability-stage-overlay {
    min-height: 430px;
  }

  .products-capability-stage-list {
    opacity: 1;
    max-height: none;
    transform: none;
  }
}

.products-capability-section {
  padding-top: 116px;
}

.products-capability-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 34px;
  align-items: end;
  margin-top: 42px;
}

.products-capability-proof-copy .section-title {
  max-width: 820px;
}

.products-capability-proof-copy .section-intro {
  max-width: 760px;
}

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

.products-capability-proof-badge {
  min-height: 174px;
  padding: 22px 20px 20px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 236, 223, 0.92));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 18px 36px rgba(15, 33, 24, 0.08);
}

.products-capability-proof-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
}

.products-capability-proof-badge strong {
  display: block;
  margin-top: 18px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.45;
}

.products-capability-proof-badge span {
  display: block;
  margin-top: 10px;
  color: var(--text-500);
  font-size: 15px;
  line-height: 1.8;
}

.products-capability-theater {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.products-capability-stage-card {
  position: relative;
  overflow: hidden;
  min-height: 456px;
  border-radius: 28px;
  background: #10241b;
  box-shadow: 0 26px 56px rgba(10, 24, 18, 0.14);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.products-capability-stage-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(10, 24, 18, 0.18);
}

.products-capability-stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 214, 133, 0.16) 50%, transparent 58%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.8s var(--ease-out);
  z-index: 2;
  pointer-events: none;
}

.products-capability-stage-card:hover::after {
  transform: translateX(130%);
}

.products-capability-stage-figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.products-capability-stage-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

.products-capability-stage-card:hover .products-capability-stage-figure img {
  transform: scale(1.05);
}

.products-capability-stage-overlay {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 456px;
  padding: 24px 24px 24px;
  background:
    linear-gradient(180deg, rgba(7, 17, 13, 0.08) 0%, rgba(7, 17, 13, 0.3) 34%, rgba(7, 17, 13, 0.86) 100%);
}

.products-capability-stage-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: auto;
}

.products-capability-stage-index,
.products-capability-stage-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.products-capability-stage-index {
  justify-content: center;
  min-width: 36px;
  padding: 0 10px;
}

.products-capability-stage-overlay h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 34px;
  line-height: 1.24;
}

.products-capability-stage-overlay p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.9;
}

.products-capability-stage-list {
  margin: 18px 0 0;
  padding: 16px 0 0 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.9;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: opacity 0.26s var(--ease-out), max-height 0.26s var(--ease-out), transform 0.26s var(--ease-out);
}

.products-capability-stage-card:hover .products-capability-stage-list {
  opacity: 1;
  max-height: 180px;
  transform: translateY(0);
}

.products-capability-result-band {
  margin-top: 26px;
  padding: 24px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(179, 138, 71, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 236, 223, 0.92));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 18px 42px rgba(15, 33, 24, 0.08);
}

.products-capability-result-band > strong {
  display: block;
  margin-bottom: 18px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: 0.03em;
}

.products-capability-result-pills {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.products-capability-result-pill {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 128px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 51, 40, 0.08);
  transition: transform 0.24s var(--ease-out), box-shadow 0.24s var(--ease-out), border-color 0.24s var(--ease-out);
}

.products-capability-result-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(179, 138, 71, 0.28);
  box-shadow: 0 14px 30px rgba(15, 33, 24, 0.1);
}

.products-capability-result-pill span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.products-capability-result-pill h3 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 24px;
  line-height: 1.45;
}

.products-capability-result-pill p {
  margin: 0;
  color: var(--text-500);
  font-size: 15px;
  line-height: 1.85;
}

.products-forms-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 46px;
}

.products-form-card {
  overflow: hidden;
  border-radius: 24px;
}

.products-form-card figure,
.products-research-card figure,
.products-research-feature figure {
  margin: 0;
}

.products-form-card figure img {
  aspect-ratio: 1.08;
  object-fit: cover;
}

.products-form-body {
  padding: 22px 24px 26px;
}

.products-certificate-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 44px;
}

.products-certificate-card {
  min-height: 280px;
  padding: 26px 24px 24px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(243, 231, 214, 0.68));
}

.products-certificate-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.08);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.products-certificate-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text-500);
  font-size: 14px;
  line-height: 1.8;
}

.products-research-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 24px;
  margin-top: 30px;
}

.products-research-feature,
.products-research-card {
  overflow: hidden;
  border-radius: 26px;
}

.products-research-feature figure img {
  aspect-ratio: 1.7;
  object-fit: cover;
}

.products-research-feature-body {
  padding: 28px;
}

.products-research-feature-body span,
.products-research-card div span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.products-research-feature-body h3,
.products-research-card div h3 {
  margin: 16px 0 12px;
  color: var(--green-900);
  font-size: 30px;
  line-height: 1.35;
}

.products-research-feature-body p,
.products-research-card div p {
  margin: 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.9;
}

.products-research-feature-body .button {
  margin-top: 22px;
}

.products-research-list {
  display: grid;
  gap: 18px;
}

.products-research-card {
  display: grid;
  grid-template-columns: 210px 1fr;
}

.products-research-card figure img {
  height: 100%;
  object-fit: cover;
}

.products-research-card div {
  padding: 22px 22px 24px;
}

@keyframes shimmer {
  0%,
  72%,
  100% {
    transform: translateX(-130%);
  }
  84% {
    transform: translateX(130%);
  }
}

.family-page {
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.08), transparent 24%),
    linear-gradient(180deg, #f7f3eb 0%, #f5f0e6 38%, #f3ede3 100%);
}

.family-page .site-header {
  position: fixed;
  background: rgba(22, 51, 40, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.family-page .section {
  padding-top: 128px;
  padding-bottom: 118px;
}

#resource-value,
#model-definition,
#asset-compare,
#opportunity-window,
#farm-overview,
#stewardship,
#role-split,
#transparent-management,
#six-unified,
#participants,
#faq,
#deep-reading {
  scroll-margin-top: 110px;
}

.family-page .page-anchor-nav {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  scrollbar-width: none;
}

.family-page .page-anchor-nav::-webkit-scrollbar {
  display: none;
}

.family-page .page-anchor-link {
  min-height: 38px;
  padding-right: 12px;
}

.family-page .page-anchor-label {
  font-size: 12px;
}

.family-hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  background: #10241b;
}

.family-hero-media,
.family-hero-overlay {
  position: absolute;
  inset: 0;
}

.family-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transform: scale(1.04);
}

.family-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.7) 0%, rgba(8, 21, 15, 0.28) 46%, rgba(8, 21, 15, 0.64) 100%),
    linear-gradient(180deg, rgba(8, 21, 15, 0.18), rgba(8, 21, 15, 0.56));
}

.family-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(245, 240, 230, 0), var(--paper));
}

.family-hero-shell {
  position: relative;
  min-height: 960px;
  padding: 196px 0 94px;
  display: grid;
  align-content: space-between;
}

.family-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  gap: 48px;
  align-items: end;
}

.family-hero-copy {
  max-width: 820px;
  color: #fff;
}

.family-hero-copy h1 {
  margin: 18px 0 24px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 74px;
  line-height: 1.14;
  letter-spacing: 0.02em;
}

.family-hero-intro {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.9;
}

.family-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.family-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(246, 242, 233, 0.14), rgba(246, 242, 233, 0.08)),
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.18), transparent 36%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 44px rgba(8, 21, 15, 0.22);
  backdrop-filter: blur(18px);
}

.family-hero-panel-kicker {
  margin: 0;
  color: rgba(245, 240, 230, 0.88);
  font-size: 18px;
  line-height: 1.8;
}

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

.family-hero-stat {
  padding: 18px 16px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.family-hero-stat-value {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  color: #fff;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 52px;
  line-height: 1;
}

.family-hero-stat-suffix {
  color: rgba(202, 160, 90, 0.96);
  font-size: 18px;
  line-height: 1.2;
  transform: translateY(-6px);
}

.family-hero-stat small {
  display: block;
  margin-top: 10px;
  color: rgba(245, 240, 230, 0.74);
  font-size: 14px;
  line-height: 1.65;
}

.family-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.family-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 230, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.family-resource-section {
  background:
    radial-gradient(circle at 0% 10%, rgba(202, 160, 90, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0));
}

.family-resource-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
  gap: 42px;
  align-items: center;
}

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

.family-resource-copy .section-intro {
  max-width: 720px;
}

.family-resource-points {
  display: grid;
  gap: 16px;
  margin-top: 36px;
}

.family-resource-point {
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-resource-point h3 {
  margin: 0 0 10px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 26px;
  line-height: 1.35;
  color: var(--green-900);
}

.family-resource-point p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.86;
}

.family-resource-visual {
  display: grid;
}

.family-resource-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-soft);
}

.family-resource-figure img {
  height: 620px;
  object-fit: cover;
}

.family-resource-panel {
  position: relative;
  z-index: 1;
  margin: -110px 0 0 42px;
  padding: 30px 30px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.2), transparent 32%),
    linear-gradient(145deg, #173f32, #214838);
  color: #fff;
  box-shadow: 0 24px 48px rgba(22, 51, 40, 0.22);
}

.family-resource-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(245, 240, 230, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.family-resource-panel h3 {
  margin: 18px 0 16px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 30px;
  line-height: 1.35;
}

.family-resource-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.family-resource-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.86;
}

.family-resource-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(202, 160, 90, 0.96);
}

.family-definition-grid {
  display: grid;
  grid-template-columns: 480px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}

.family-definition-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-soft);
}

.family-definition-figure img {
  height: 700px;
  object-fit: cover;
}

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

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

.family-definition-card {
  min-height: 230px;
  padding: 28px 22px 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-definition-card svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold-500);
}

.family-definition-card h3 {
  margin: 18px 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 24px;
  line-height: 1.38;
  color: var(--green-900);
}

.family-definition-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.86;
}

.family-compare-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(202, 160, 90, 0.12), transparent 26%),
    radial-gradient(circle at 0% 100%, rgba(94, 72, 49, 0.28), transparent 34%),
    #15110d;
}

.family-compare-section .products-chapter-heading {
  background:
    linear-gradient(135deg, rgba(246, 242, 233, 0.08), rgba(246, 242, 233, 0.04)),
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.14), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 36px rgba(8, 21, 15, 0.2);
}

.family-compare-section .products-chapter-heading::before {
  background: linear-gradient(180deg, rgba(202, 160, 90, 0.14), rgba(202, 160, 90, 1), rgba(202, 160, 90, 0.14));
}

.family-compare-section .products-chapter-index {
  background: linear-gradient(145deg, rgba(246, 242, 233, 0.18), rgba(246, 242, 233, 0.08));
  border-color: rgba(255, 255, 255, 0.12);
}

.family-compare-section .products-chapter-copy span {
  color: rgba(202, 160, 90, 0.96);
}

.family-compare-section .products-chapter-copy strong,
.family-compare-section .section-title {
  color: #fff;
}

.family-compare-section .section-intro {
  color: rgba(245, 240, 230, 0.78);
}

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

.family-asset-card {
  min-height: 400px;
  padding: 34px 32px 32px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 42px rgba(8, 21, 15, 0.18);
  backdrop-filter: blur(10px);
}

.family-asset-card-cold {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 34%),
    linear-gradient(160deg, rgba(130, 121, 113, 0.14), rgba(255, 255, 255, 0.04));
}

.family-asset-card-neutral {
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.1), transparent 32%),
    linear-gradient(160deg, rgba(102, 68, 47, 0.16), rgba(255, 255, 255, 0.04));
}

.family-asset-card-warm {
  background:
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.16), transparent 32%),
    linear-gradient(160deg, rgba(44, 91, 70, 0.26), rgba(255, 255, 255, 0.05));
  border-color: rgba(202, 160, 90, 0.18);
}

.family-asset-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 230, 0.84);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.family-asset-card h3 {
  margin: 18px 0 14px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 36px;
  line-height: 1.22;
  color: #fff;
}

.family-asset-card p {
  margin: 0;
  color: rgba(245, 240, 230, 0.78);
  line-height: 1.86;
}

.family-asset-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.family-asset-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(245, 240, 230, 0.72);
  line-height: 1.8;
}

.family-asset-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(202, 160, 90, 0.94);
}

.family-asset-line {
  position: relative;
  height: 108px;
  margin: 20px 0 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.family-asset-line::after {
  content: "";
  position: absolute;
  inset: 18px 16px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0) 18%);
}

.family-asset-line::before {
  content: "";
  position: absolute;
  inset: 0;
}

.trend-flat::before {
  inset: 26px 16px 20px;
  background: linear-gradient(90deg, rgba(189, 182, 176, 0.4), rgba(189, 182, 176, 0.96));
  clip-path: polygon(0 30%, 26% 30%, 58% 38%, 100% 52%, 100% 60%, 58% 46%, 26% 38%, 0 38%);
}

.trend-volatile::before {
  inset: 20px 16px;
  background: linear-gradient(90deg, rgba(208, 168, 98, 0.42), rgba(208, 168, 98, 0.98));
  clip-path: polygon(0 64%, 15% 44%, 30% 56%, 44% 18%, 57% 72%, 72% 34%, 85% 54%, 100% 24%, 100% 32%, 85% 62%, 72% 42%, 57% 80%, 44% 26%, 30% 64%, 15% 52%, 0 72%);
}

.trend-rising::before {
  inset: 18px 16px 18px;
  background: linear-gradient(90deg, rgba(202, 160, 90, 0.36), rgba(202, 160, 90, 1));
  clip-path: polygon(0 74%, 22% 72%, 46% 58%, 66% 42%, 84% 24%, 100% 8%, 100% 16%, 84% 32%, 66% 50%, 46% 66%, 22% 80%, 0 82%);
}

.family-compare-quote {
  margin-top: 28px;
  padding: 28px 30px 28px 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.family-compare-quote p {
  margin: 0;
  color: rgba(245, 240, 230, 0.9);
  font-size: 22px;
  line-height: 1.86;
}

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

.family-opportunity-card {
  min-height: 260px;
  padding: 32px 28px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-opportunity-card svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold-500);
}

.family-opportunity-card h3 {
  margin: 18px 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1.3;
  color: var(--green-900);
}

.family-opportunity-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.86;
}

.family-overview-section {
  padding-top: 26px;
}

.family-stewardship-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 40px;
  align-items: center;
}

.family-stewardship-copy .section-intro {
  max-width: 720px;
}

.family-process-list {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.family-process-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 24px 22px 22px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1;
}

.family-process-step h3 {
  margin: 2px 0 10px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 26px;
  line-height: 1.35;
  color: var(--green-900);
}

.family-process-step p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.82;
}

.family-page .phone-stage {
  background:
    radial-gradient(circle at 50% 18%, rgba(202, 160, 90, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.18));
  box-shadow: var(--shadow-soft);
}

.family-role-benefits {
  margin-top: 28px;
}

.family-transparent-section {
  background:
    radial-gradient(circle at top left, rgba(202, 160, 90, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
}

.family-transparent-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: 24px;
  margin-top: 52px;
}

.family-transparent-card {
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-transparent-feature {
  grid-row: span 2;
}

.family-transparent-card figure {
  margin: 0;
}

.family-transparent-card img {
  height: 280px;
  object-fit: cover;
}

.family-transparent-feature img {
  height: 402px;
}

.family-transparent-body {
  padding: 26px 28px 30px;
}

.family-transparent-body span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.family-transparent-body h3 {
  margin: 18px 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 30px;
  line-height: 1.34;
  color: var(--green-900);
}

.family-transparent-body p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.86;
}

.family-transparent-board {
  padding: 30px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(202, 160, 90, 0.2), transparent 34%),
    linear-gradient(145deg, #173f32, #214838);
  color: #fff;
  box-shadow: 0 22px 42px rgba(22, 51, 40, 0.2);
}

.family-transparent-board h3 {
  margin: 18px 0 16px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 32px;
  line-height: 1.35;
}

.family-transparent-board ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.family-transparent-board li {
  color: rgba(245, 240, 230, 0.82);
  line-height: 1.84;
}

.family-transparent-board strong {
  color: #fff;
}

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

.family-six-card {
  min-height: 250px;
  padding: 28px 26px 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-six-number {
  display: block;
  color: rgba(179, 138, 71, 0.32);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 40px;
  line-height: 1;
}

.family-six-card h3 {
  margin: 18px 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1.32;
  color: var(--green-900);
}

.family-six-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.84;
}

.family-participants-section {
  background:
    radial-gradient(circle at 100% 10%, rgba(202, 160, 90, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0));
}

.family-audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 52px;
}

.family-audience-card {
  min-height: 252px;
  padding: 28px 24px 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-audience-card svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--gold-500);
}

.family-audience-card h3 {
  margin: 18px 0 12px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 26px;
  line-height: 1.35;
  color: var(--green-900);
}

.family-audience-card p {
  margin: 0;
  color: var(--text-600);
  line-height: 1.82;
}

.family-faq-list {
  display: grid;
  gap: 18px;
}

.family-faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.family-faq-item summary {
  position: relative;
  padding: 28px 84px 28px 30px;
  list-style: none;
  cursor: pointer;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 28px;
  line-height: 1.45;
  color: var(--green-900);
}

.family-faq-item summary::-webkit-details-marker {
  display: none;
}

.family-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 30px;
  top: 50%;
  color: var(--gold-500);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
}

.family-faq-item[open] summary::after {
  content: "−";
}

.family-faq-item p {
  margin: 0;
  padding: 0 30px 30px;
  color: var(--text-600);
  line-height: 1.9;
}

.family-reading-grid {
  margin-top: 52px;
}

.family-brand-strip h2 {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.family-brand-strip p {
  max-width: 900px;
}

@media (max-width: 1280px) {
  .family-page .shell {
    width: calc(100vw - 48px);
  }

  .family-page .page-anchor-nav {
    display: none;
  }

  .family-page .site-header {
    height: auto;
    padding: 12px 0;
  }

  .family-page .header-shell {
    grid-template-columns: 1fr;
    height: auto;
    gap: 14px;
    justify-items: center;
  }

  .family-page .site-nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .family-page .header-actions {
    justify-content: center;
  }

  .family-page .section {
    padding-top: 96px;
    padding-bottom: 88px;
  }

  .family-hero {
    min-height: auto;
  }

  .family-hero-shell {
    min-height: auto;
    padding: 228px 0 78px;
  }

  .family-hero-grid,
  .family-resource-grid,
  .family-definition-grid,
  .family-stewardship-grid,
  .family-transparent-grid {
    grid-template-columns: 1fr;
  }

  .family-definition-cards,
  .family-asset-grid,
  .family-opportunity-grid,
  .family-six-grid,
  .family-audience-grid,
  .company-links-grid.family-reading-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .family-hero-copy h1 {
    font-size: 56px;
  }

  .family-resource-panel {
    margin: 24px 0 0;
  }

  .family-definition-figure img,
  .family-resource-figure img,
  .family-transparent-feature img {
    height: 520px;
  }

  .family-transparent-feature {
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .family-page .shell {
    width: calc(100vw - 32px);
  }

  .family-page .site-nav {
    justify-content: center;
    gap: 12px 16px;
  }

  .family-page .site-nav a {
    font-size: 14px;
  }

  .family-hero-shell {
    padding-top: 252px;
  }

  .family-hero-copy h1,
  .family-banner h2 {
    font-size: 42px;
  }

  .family-hero-intro,
  .family-compare-quote p,
  .products-atlas-subtitle {
    font-size: 18px;
  }

  .family-hero-panel,
  .family-resource-panel,
  .family-transparent-board {
    padding: 24px;
  }

  .family-hero-stats,
  .family-definition-cards,
  .family-asset-grid,
  .family-opportunity-grid,
  .family-six-grid,
  .family-audience-grid,
  .company-links-grid.family-reading-grid,
  .responsibility-grid {
    grid-template-columns: 1fr;
  }

  .family-process-step {
    grid-template-columns: 1fr;
  }

  .family-process-step > span {
    width: 52px;
    height: 52px;
  }

  .family-transparent-card img,
  .family-definition-figure img,
  .family-resource-figure img {
    height: 360px;
  }

  .family-faq-item summary {
    padding: 24px 68px 24px 22px;
    font-size: 22px;
  }

  .family-faq-item summary::after {
    right: 22px;
  }
}

@keyframes floatCue {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

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

.products-matrix-section .products-focus-head,
.products-matrix-section .products-focus-overview,
.products-matrix-section .products-focus-station-head,
.products-matrix-section .products-detail-shell {
  display: none;
}

.products-atlas-head {
  max-width: 980px;
  margin-top: 26px;
}

.products-atlas-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  align-items: start;
  margin-top: 40px;
}

.products-atlas-sidebar {
  position: sticky;
  top: 116px;
}

.products-atlas-sidebar-card {
  padding: 28px 24px 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 239, 230, 0.94));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.products-atlas-sidebar-card h3 {
  margin: 10px 0 12px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 38px;
  line-height: 1.2;
}

.products-atlas-sidebar-card > p:last-of-type {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.9;
}

.products-atlas-guide {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 243, 233, 0.9));
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 18px 32px rgba(11, 27, 20, 0.06);
}

.products-atlas-guide-head strong,
.products-atlas-guide-head span {
  display: block;
}

.products-atlas-guide-head strong {
  color: var(--green-900);
  font-size: 18px;
  line-height: 1.35;
}

.products-atlas-guide-head span {
  margin-top: 8px;
  color: var(--text-500);
  font-size: 13px;
  line-height: 1.8;
}

.products-atlas-guide-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.products-atlas-guide-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 118px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 51, 40, 0.06);
}

.products-atlas-guide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(179, 138, 71, 0.14);
  color: var(--green-900);
}

.products-atlas-guide-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.products-atlas-guide-item strong {
  display: block;
  color: var(--green-900);
  font-size: 15px;
  line-height: 1.35;
}

.products-atlas-guide-item p {
  margin: 6px 0 0;
  color: var(--text-600);
  font-size: 13px;
  line-height: 1.82;
}

.products-atlas-filters {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.products-atlas-filter {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(22, 51, 40, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out);
}

.products-atlas-filter svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
}

.products-atlas-filter:hover,
.products-atlas-filter.is-active {
  transform: translateY(-2px);
  border-color: rgba(179, 138, 71, 0.46);
  background: linear-gradient(135deg, rgba(22, 51, 40, 0.96), rgba(27, 62, 49, 0.92));
  color: #fff;
  box-shadow: 0 18px 34px rgba(11, 27, 20, 0.14);
}

.products-atlas-link-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.products-atlas-link {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "number title"
    "number meta";
  gap: 4px 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(22, 51, 40, 0.08);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.28s var(--ease-out),
    border-color 0.28s var(--ease-out),
    background 0.28s var(--ease-out),
    box-shadow 0.28s var(--ease-out),
    opacity 0.28s var(--ease-out);
}

.products-atlas-link span {
  grid-area: number;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.products-atlas-link strong {
  grid-area: title;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.2;
}

.products-atlas-link em {
  grid-area: meta;
  color: var(--text-500);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.products-atlas-link:hover,
.products-atlas-link.is-active {
  transform: translateX(4px);
  border-color: rgba(179, 138, 71, 0.38);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(249, 243, 233, 0.94));
  box-shadow: 0 18px 36px rgba(11, 27, 20, 0.1);
}

.products-atlas-link.is-active span {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  color: #fff;
}

.products-atlas-link.is-dimmed {
  opacity: 0.38;
}

.products-atlas-cards {
  display: grid;
  gap: 28px;
}

.products-atlas-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.52fr) minmax(0, 0.48fr);
  gap: 0;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 243, 236, 0.96)),
    linear-gradient(135deg, rgba(179, 138, 71, 0.12), transparent);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out),
    opacity 0.28s var(--ease-out);
}

.products-atlas-card:hover,
.products-atlas-card.is-active {
  transform: translateY(-4px);
  box-shadow: 0 28px 56px rgba(11, 27, 20, 0.12);
}

.products-atlas-card.is-dimmed {
  opacity: 0.34;
}

.products-atlas-card-media {
  position: relative;
  min-height: 520px;
  background: linear-gradient(160deg, #11261d, #0b1711);
}

.products-atlas-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(10, 20, 14, 0.08), rgba(10, 20, 14, 0.38));
  pointer-events: none;
}

.products-atlas-card-figure {
  height: 100%;
  margin: 0;
}

.products-atlas-card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(1.04);
  transition: transform 1.6s var(--ease-out);
}

.products-atlas-card:hover .products-atlas-card-figure img {
  transform: scale(1.05);
}

.products-atlas-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px 34px 34px;
}

.products-atlas-card-top h3 {
  margin: 18px 0 12px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 54px;
  line-height: 1.04;
}

.products-atlas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.products-atlas-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.12);
  color: var(--green-900);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.products-atlas-subtitle {
  margin: 0;
  color: var(--text-500);
  font-size: 22px;
  line-height: 1.55;
}

.products-atlas-data-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.products-atlas-data-grid article {
  min-height: 146px;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 51, 40, 0.07);
}

.products-atlas-data-grid strong,
.products-atlas-data-grid span {
  display: block;
}

.products-atlas-data-grid strong {
  color: var(--green-900);
  font-size: 16px;
  line-height: 1.35;
}

.products-atlas-data-grid span {
  margin-top: 12px;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.85;
}

#model-flywheel,
#legal-trust,
#hosting-system,
#value-chain,
#channel-engine,
#dividend-sandbox,
#model-links {
  scroll-margin-top: 110px;
}

.operation-page .site-nav a.is-active {
  color: #fff;
}

.operation-hero {
  position: relative;
  min-height: 920px;
  padding: 0;
  overflow: hidden;
  background: #10241b;
}

.operation-hero-media,
.operation-hero-overlay {
  position: absolute;
  inset: 0;
}

.operation-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
}

.operation-hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 21, 15, 0.82) 0%, rgba(8, 21, 15, 0.62) 36%, rgba(8, 21, 15, 0.28) 68%, rgba(8, 21, 15, 0.7) 100%),
    radial-gradient(circle at 78% 18%, rgba(202, 160, 90, 0.14), transparent 22%);
}

.operation-hero-shell {
  position: relative;
  min-height: 920px;
  padding: 194px 0 92px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.46fr);
  gap: 44px;
  align-items: center;
}

.operation-hero-copy {
  max-width: 790px;
  color: #fff;
}

.operation-hero-copy h1 {
  margin: 18px 0 24px;
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 76px;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.operation-hero-copy p:not(.eyebrow):not(.operation-hero-note) {
  margin: 0;
  font-size: 20px;
  line-height: 1.92;
  color: rgba(255, 255, 255, 0.88);
}

.operation-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.operation-hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(246, 242, 233, 0.12);
  border: 1px solid rgba(246, 242, 233, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.operation-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
}

.operation-hero-note {
  margin: 22px 0 0;
  max-width: 720px;
  color: rgba(245, 240, 230, 0.76);
  font-size: 14px;
  line-height: 1.9;
}

.operation-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}

.operation-hero-panel-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(246, 242, 233, 0.12);
  border: 1px solid rgba(246, 242, 233, 0.14);
  box-shadow: 0 18px 40px rgba(8, 21, 15, 0.18);
  backdrop-filter: blur(16px);
}

.operation-hero-panel-card span,
.operation-inline-card span,
.operation-card-head span,
.operation-processing-body span,
.operation-pyramid-tier span,
.operation-flow-source span,
.operation-flow-target span,
.operation-mini-screen-head em,
.operation-mini-screen-head span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(202, 160, 90, 0.14);
  color: var(--gold-400);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-hero-panel-card strong {
  display: block;
  margin-top: 16px;
  color: #fff;
  font-size: 24px;
  line-height: 1.4;
}

.operation-hero-panel-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.82;
}

.operation-flywheel-section,
.operation-hosting-section {
  background:
    radial-gradient(circle at 14% 18%, rgba(202, 160, 90, 0.12), transparent 18%),
    linear-gradient(160deg, #173428 0%, #1b3a2e 48%, #224437 100%);
}

.operation-flywheel-section .section-title,
.operation-flywheel-section .section-intro,
.operation-hosting-section .section-title,
.operation-hosting-section .section-intro {
  color: #fff;
}

.operation-flywheel-section .section-intro,
.operation-hosting-section .section-intro {
  color: rgba(245, 240, 230, 0.84);
}

.operation-flywheel-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(760px, 0.6fr);
  gap: 38px;
  align-items: center;
  margin-top: 52px;
}

.operation-inline-card {
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(179, 138, 71, 0.12);
  box-shadow: var(--shadow-soft);
}

.operation-inline-card strong {
  display: block;
  margin-top: 16px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 32px;
  line-height: 1.4;
}

.operation-inline-card p {
  margin: 14px 0 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.95;
}

.operation-summary-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.operation-summary-card {
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.operation-summary-card strong {
  color: #fff;
  font-size: 20px;
}

.operation-summary-card p {
  margin: 12px 0 0;
  color: rgba(245, 240, 230, 0.78);
  font-size: 15px;
  line-height: 1.88;
}

.operation-flywheel-visual {
  position: relative;
  min-height: 720px;
  border-radius: 36px;
  background:
    radial-gradient(circle at center, rgba(202, 160, 90, 0.12) 0%, rgba(202, 160, 90, 0.06) 18%, transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.operation-flywheel-visual::before,
.operation-flywheel-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.operation-flywheel-visual::before {
  width: 540px;
  height: 540px;
  border: 1px dashed rgba(202, 160, 90, 0.3);
}

.operation-flywheel-visual::after {
  width: 690px;
  height: 690px;
  border: 1px dashed rgba(255, 255, 255, 0.08);
}

.operation-flywheel-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 330px;
  height: 330px;
  padding: 56px 44px 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(202, 160, 90, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 233, 0.94));
  border: 1px solid rgba(202, 160, 90, 0.22);
  box-shadow: 0 28px 60px rgba(10, 24, 18, 0.28);
  transform: translate(-50%, -50%);
  text-align: center;
}

.operation-flywheel-core span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(202, 160, 90, 0.12);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.operation-flywheel-core strong {
  display: block;
  margin-top: 22px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.35;
}

.operation-flywheel-core p {
  margin: 16px 0 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.85;
}

.operation-orbit-card {
  position: absolute;
  z-index: 2;
  width: 248px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(202, 160, 90, 0.14);
  box-shadow: 0 18px 38px rgba(10, 24, 18, 0.14);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.operation-orbit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(10, 24, 18, 0.2);
}

.operation-orbit-card > span {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.operation-orbit-card h3 {
  margin: 14px 0 10px;
  color: var(--green-900);
  font-size: 22px;
  line-height: 1.38;
}

.operation-orbit-card p {
  margin: 0;
  color: var(--text-600);
  font-size: 14px;
  line-height: 1.82;
}

.operation-orbit-icon,
.operation-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(202, 160, 90, 0.12);
  color: var(--green-900);
}

.operation-orbit-icon svg,
.operation-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.orbit-card-one {
  left: 50%;
  top: 42px;
  transform: translateX(-50%);
}

.orbit-card-two {
  right: 70px;
  top: 184px;
}

.orbit-card-three {
  right: 94px;
  bottom: 126px;
}

.orbit-card-four {
  left: 94px;
  bottom: 126px;
}

.orbit-card-five {
  left: 70px;
  top: 184px;
}

.operation-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.operation-legal-card {
  padding: 32px 32px 30px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.operation-card-head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.operation-card-head h3,
.operation-hosting-card h3,
.operation-processing-body h3,
.operation-flow-card h3,
.operation-link-body h3 {
  margin: 10px 0 0;
  color: var(--green-900);
  font-size: 28px;
  line-height: 1.42;
}

.operation-legal-card > p,
.operation-flow-card > p,
.operation-link-body p {
  margin: 22px 0 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.95;
}

.operation-check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.operation-check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.operation-check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--gold-500);
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.operation-check-list span {
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.86;
}

.operation-legal-note,
.operation-value-note,
.operation-dividend-disclaimer {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(202, 160, 90, 0.1);
  color: var(--green-900);
}

.operation-legal-note strong,
.operation-value-note strong {
  margin-right: 8px;
}

.operation-mini-screen {
  margin-top: 22px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #173428, #1f4336);
  box-shadow: 0 20px 42px rgba(12, 30, 22, 0.18);
}

.operation-mini-screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.operation-mini-screen-head span,
.operation-mini-screen-head em {
  font-style: normal;
}

.operation-mini-screen-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.operation-mini-screen-card strong,
.operation-mini-screen-card span {
  display: block;
}

.operation-mini-screen-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
}

.operation-mini-screen-card span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.75;
}

.operation-mini-screen-timeline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.operation-mini-screen-timeline span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.operation-mini-screen-timeline span.is-active {
  background: rgba(202, 160, 90, 0.18);
  color: #fff;
}

.operation-hosting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  align-items: start;
  margin-top: 52px;
}

.operation-inline-card-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
}

.operation-inline-card-dark strong,
.operation-inline-card-dark p {
  color: #fff;
}

.operation-inline-card-dark p {
  color: rgba(245, 240, 230, 0.78);
}

.operation-tag-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.operation-tag-matrix span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.operation-hosting-footnote {
  margin: 20px 0 0;
  color: rgba(245, 240, 230, 0.74);
  font-size: 15px;
  line-height: 1.88;
}

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

.operation-hosting-card,
.operation-link-card {
  padding: 24px 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operation-hosting-card h3,
.operation-hosting-card p {
  color: #fff;
}

.operation-hosting-card h3 {
  margin-top: 20px;
  font-size: 24px;
}

.operation-hosting-card p {
  margin: 12px 0 0;
  color: rgba(245, 240, 230, 0.76);
  font-size: 15px;
  line-height: 1.85;
}

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

.operation-processing-card {
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.operation-processing-card figure {
  margin: 0;
  aspect-ratio: 1.12 / 0.9;
  overflow: hidden;
}

.operation-processing-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.operation-processing-card:hover img {
  transform: scale(1.05);
}

.operation-processing-body {
  padding: 24px 24px 26px;
}

.operation-processing-body h3 {
  margin-top: 18px;
}

.operation-processing-body p {
  margin: 14px 0 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.88;
}

.operation-value-ribbon,
.operation-channel-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.operation-value-ribbon span,
.operation-channel-tools span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.1);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 24px rgba(15, 33, 24, 0.06);
}

.operation-channel-layout {
  display: grid;
  grid-template-columns: minmax(640px, 0.58fr) minmax(0, 0.42fr);
  gap: 28px;
  align-items: start;
  margin-top: 52px;
}

.operation-pyramid {
  display: grid;
  justify-items: center;
  gap: 16px;
  padding: 42px 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(202, 160, 90, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(202, 160, 90, 0.1);
  box-shadow: var(--shadow-soft);
}

.operation-pyramid-tier {
  width: 100%;
  padding: 28px 34px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 14px 28px rgba(15, 33, 24, 0.06);
}

.operation-tier-top {
  max-width: 420px;
}

.operation-tier-middle {
  max-width: 560px;
}

.operation-tier-base {
  max-width: 700px;
}

.operation-pyramid-tier h3 {
  margin: 16px 0 10px;
  color: var(--green-900);
  font-size: 30px;
  line-height: 1.36;
}

.operation-pyramid-tier p {
  margin: 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.88;
}

.operation-roadmap-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.operation-roadmap-list article {
  padding: 22px 22px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 12px 24px rgba(15, 33, 24, 0.06);
}

.operation-roadmap-list article span {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.operation-roadmap-list article h3 {
  margin: 12px 0 8px;
  color: var(--green-900);
  font-size: 22px;
}

.operation-roadmap-list article p {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.82;
}

.operation-flow-board {
  margin-top: 52px;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(202, 160, 90, 0.12), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(202, 160, 90, 0.12);
  box-shadow: var(--shadow-soft);
}

.operation-flow-source,
.operation-flow-target {
  padding: 26px 28px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.operation-flow-source strong,
.operation-flow-target strong {
  display: block;
  margin-top: 18px;
  color: var(--green-900);
  font-family: "Source Han Serif SC", "Noto Serif SC", "STSong", serif;
  font-size: 34px;
  line-height: 1.38;
}

.operation-flow-source p,
.operation-flow-target p {
  margin: 14px 0 0;
  color: var(--text-600);
  font-size: 16px;
  line-height: 1.92;
}

.operation-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 22px 0;
}

.operation-flow-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 51, 40, 0.08);
}

.operation-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

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

.operation-link-card {
  overflow: hidden;
  padding: 0;
  background: #fff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.operation-link-card figure {
  margin: 0;
  aspect-ratio: 1.18 / 0.8;
  overflow: hidden;
}

.operation-link-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-out);
}

.operation-link-card:hover img {
  transform: scale(1.05);
}

.operation-link-body {
  padding: 26px 26px 28px;
}

.operation-brand-strip {
  background: linear-gradient(135deg, #173428, #204034 62%, #264a3c);
}

.proof-section .process-band {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.proof-section .process-line {
  left: 96px;
  right: 96px;
}

.proof-teaser-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

/* ============================================================ */
/* Products Refactor - 产品矩阵 / 深度阅读                          */
/* ============================================================ */

.products-matrix-section {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-soft) 100%);
  padding-top: 92px;
  padding-bottom: 44px;
}

.matrix-axis {
  margin-top: 56px;
  padding: 44px 48px 56px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 12% 20%, rgba(179, 138, 71, 0.12), transparent 46%),
    radial-gradient(circle at 88% 80%, rgba(22, 51, 40, 0.08), transparent 48%),
    linear-gradient(180deg, #ffffff 0%, rgba(246, 242, 233, 0.92) 100%);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.matrix-axis-head {
  max-width: 820px;
  margin-bottom: 52px;
}

.matrix-axis-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.14);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 18px;
}

.matrix-axis-head h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.35;
}

.matrix-axis-head p {
  margin: 0;
  color: var(--text-600);
  font-size: 17px;
  line-height: 1.9;
}

.matrix-axis-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  padding-top: 36px;
}

.matrix-axis-line {
  position: absolute;
  top: 60px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(179, 138, 71, 0.2) 0%,
    rgba(179, 138, 71, 0.5) 50%,
    var(--gold-500) 100%
  );
}

.matrix-axis-node {
  position: relative;
  padding: 32px 22px 26px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: 0 10px 24px rgba(15, 33, 24, 0.05);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

.matrix-axis-node:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(15, 33, 24, 0.14);
}

.matrix-axis-dot {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 4px solid var(--paper);
  box-shadow: 0 4px 12px rgba(179, 138, 71, 0.4);
}

.matrix-axis-node-1 .matrix-axis-dot { background: #8fb38a; }
.matrix-axis-node-2 .matrix-axis-dot { background: #6fa09a; }
.matrix-axis-node-3 .matrix-axis-dot { background: var(--gold-400); }
.matrix-axis-node-4 .matrix-axis-dot { background: var(--gold-500); }
.matrix-axis-node-5 .matrix-axis-dot { background: var(--soil-700); }

.matrix-axis-index {
  display: inline-block;
  color: var(--gold-500);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.matrix-axis-node h4 {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.matrix-axis-role {
  margin: 0 0 20px;
  color: var(--gold-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.matrix-axis-meta {
  margin: 0;
  display: grid;
  gap: 12px;
}

.matrix-axis-meta > div {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 10px;
}

.matrix-axis-meta dt {
  color: var(--text-400);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.matrix-axis-meta dd {
  margin: 0;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.matrix-price-bar {
  display: inline-block;
  height: 6px;
  border-radius: 3px;
  background: var(--gold-500);
  vertical-align: middle;
}

.matrix-price-1 { width: 20%; background: #c9d6c3; }
.matrix-price-2 { width: 40%; background: #a8c3a1; }
.matrix-price-3 { width: 60%; background: var(--gold-400); }
.matrix-price-4 { width: 70%; background: var(--gold-500); }
.matrix-price-5 { width: 95%; background: var(--soil-700); }

.matrix-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
  margin-top: 64px;
}

.matrix-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
  display: flex;
  flex-direction: column;
}

.matrix-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.matrix-card-large { grid-column: span 3; }
.matrix-card-small { grid-column: span 2; }

.matrix-card-premium {
  background:
    radial-gradient(circle at top right, rgba(179, 138, 71, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--paper-warm) 100%);
  border-color: rgba(179, 138, 71, 0.28);
}

.matrix-card-media {
  position: relative;
  overflow: hidden;
}

.matrix-card-media img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.matrix-card:hover .matrix-card-media img {
  transform: scale(1.04);
}

.matrix-card-large .matrix-card-media img {
  aspect-ratio: 2.1;
  object-fit: cover;
}

.matrix-card-small .matrix-card-media img {
  aspect-ratio: 1.5;
  object-fit: cover;
}

.matrix-card-role {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.85);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.matrix-card-premium .matrix-card-role {
  background: var(--gold-500);
}

.matrix-card-body {
  padding: 28px 30px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.matrix-card-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.matrix-card-index {
  color: var(--gold-500);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.matrix-card-head h3 {
  margin: 0;
  color: var(--green-900);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.matrix-card-small .matrix-card-head h3 {
  font-size: 26px;
}

.matrix-card-tagline {
  margin: 0 0 22px;
  color: var(--text-700);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  padding-bottom: 20px;
  border-bottom: 1px dashed rgba(22, 51, 40, 0.15);
}

.matrix-card-small .matrix-card-tagline {
  font-size: 15px;
  margin-bottom: 18px;
  padding-bottom: 16px;
}

.matrix-card-spec {
  margin: 0;
  display: grid;
  gap: 14px;
}

.matrix-card-spec > div {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: baseline;
  gap: 14px;
}

.matrix-card-spec-compact > div {
  grid-template-columns: 76px 1fr;
  gap: 10px;
}

.matrix-card-spec dt {
  color: var(--text-400);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.matrix-card-spec-compact dt {
  font-size: 12px;
}

.matrix-card-spec dd {
  margin: 0;
  color: var(--text-700);
  font-size: 15px;
  line-height: 1.75;
}

.matrix-card-spec-compact dd {
  font-size: 14px;
  line-height: 1.7;
}

.matrix-card-spec dd small {
  display: block;
  margin-top: 4px;
  color: var(--text-400);
  font-size: 12px;
  line-height: 1.6;
}

.matrix-scene-tag {
  display: inline-flex;
  align-items: center;
  margin: 2px 6px 2px 0;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.06);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.matrix-card-premium .matrix-scene-tag {
  background: rgba(179, 138, 71, 0.16);
  color: var(--soil-700);
}

.matrix-summary {
  margin-top: 40px;
  padding: 48px 60px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: #ffffff;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.matrix-summary::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 138, 71, 0.28), transparent 70%);
  pointer-events: none;
}

.matrix-summary-mark {
  color: var(--gold-400);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  display: inline-block;
}

.matrix-summary p {
  margin: 0;
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 2;
}

.matrix-summary p strong {
  color: var(--gold-400);
  font-weight: 600;
}

.products-reading-section {
  background: linear-gradient(180deg, var(--paper-soft) 0%, var(--paper) 100%);
  padding-top: 44px;
  padding-bottom: 92px;
}

.reading-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 52px 0 48px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
}

.reading-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border: none;
  background: transparent;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  transition: background 0.28s var(--ease-out), transform 0.28s var(--ease-out);
  font: inherit;
}

.reading-tab:hover {
  background: rgba(22, 51, 40, 0.04);
}

.reading-tab.is-active {
  background: var(--green-900);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 33, 24, 0.18);
}

.reading-tab-index {
  color: var(--gold-500);
  font-family: "Georgia", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.reading-tab.is-active .reading-tab-index {
  color: var(--gold-400);
}

.reading-tab-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reading-tab-copy strong {
  color: var(--green-900);
  font-size: 17px;
  font-weight: 700;
}

.reading-tab.is-active .reading-tab-copy strong {
  color: #ffffff;
}

.reading-tab-copy small {
  color: var(--text-500);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.reading-tab.is-active .reading-tab-copy small {
  color: rgba(255, 255, 255, 0.7);
}

.reading-panel {
  display: none;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.reading-panel.is-active {
  display: grid;
  animation: reading-fade-in 0.44s var(--ease-out);
}

@keyframes reading-fade-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.reading-card {
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(22, 51, 40, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.reading-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.reading-card-feature {
  grid-row: span 2;
}

.reading-card figure {
  margin: 0;
  overflow: hidden;
}

.reading-card figure img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1.6;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.reading-card-feature figure img {
  aspect-ratio: 1.4;
}

.reading-card:hover figure img {
  transform: scale(1.04);
}

.reading-card-body {
  padding: 26px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.reading-card-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.reading-label-encyclopedia {
  background: rgba(46, 125, 50, 0.12);
  color: #2e7d32;
}

.reading-label-kitchen {
  background: rgba(200, 69, 47, 0.12);
  color: #c8452f;
}

.reading-label-policy {
  background: rgba(22, 51, 40, 0.1);
  color: var(--green-900);
}

.reading-label-brand {
  background: rgba(179, 138, 71, 0.16);
  color: var(--gold-500);
}

.reading-card-body h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.reading-card-feature .reading-card-body h3 {
  font-size: 26px;
  line-height: 1.38;
}

.reading-card-body p {
  margin: 0 0 auto;
  color: var(--text-600);
  font-size: 14px;
  line-height: 1.85;
  padding-bottom: 20px;
}

.reading-card-feature .reading-card-body p {
  font-size: 15px;
}

.reading-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-400);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding-top: 16px;
  border-top: 1px dashed rgba(22, 51, 40, 0.12);
}

.reading-card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-400);
}

.reading-subscribe {
  margin-top: 64px;
  padding: 48px 56px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 20%, rgba(179, 138, 71, 0.1), transparent 48%),
    linear-gradient(135deg, #ffffff 0%, var(--paper-warm) 100%);
  border: 1px solid rgba(179, 138, 71, 0.2);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.reading-subscribe-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(179, 138, 71, 0.18);
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}

.reading-subscribe-copy h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.reading-subscribe-copy p {
  margin: 0;
  color: var(--text-600);
  font-size: 15px;
  line-height: 1.9;
}

.reading-subscribe-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.reading-subscribe-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(22, 51, 40, 0.06);
  border: 1px solid rgba(22, 51, 40, 0.08);
  color: var(--green-900);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.reading-subscribe-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.reading-subscribe-form {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.reading-subscribe-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.reading-subscribe-field span {
  color: var(--text-500);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.reading-subscribe-field input {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(22, 51, 40, 0.14);
  background: #ffffff;
  color: var(--green-900);
  font-size: 14px;
  transition: border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.reading-subscribe-field input:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(179, 138, 71, 0.18);
}

.reading-subscribe-form .button {
  white-space: nowrap;
  padding: 14px 22px;
}

@media (max-width: 960px) {
  .reading-subscribe-actions {
    width: 100%;
  }
}

@media (min-width: 1600px) {
  .matrix-card-large .matrix-card-media img {
    aspect-ratio: 2.3;
  }
}

/* === family page styles:start === */
      /* ========================================================
       * 家庭农场专题页局部样式（基于全局 :root 变量扩展）
       * 不修改 style.css；新 class 统一以 .ff- 前缀避免冲突
       * ==================================================== */

      :root {
        --ff-gold-soft: rgba(179, 138, 71, 0.18);
        --ff-gold-line: rgba(179, 138, 71, 0.38);
        --ff-green-soft: rgba(22, 51, 40, 0.08);
        --ff-green-line: rgba(22, 51, 40, 0.14);
        --ff-ink: #1a1a1a;
      }

      .family-page .ff-section {
        position: relative;
        padding: 120px 0;
      }

      .family-page .ff-section--dark {
        background: linear-gradient(180deg, var(--green-900), #0f251b);
        color: var(--ivory);
      }
      .family-page .ff-section--paper {
        background: var(--paper);
      }
      .family-page .ff-section--ivory {
        background: var(--ivory);
      }
      .family-page .ff-section--soft {
        background: var(--paper-soft);
      }

      .ff-head {
        max-width: 880px;
        margin: 0 auto 72px;
        text-align: center;
      }
      .ff-head .eyebrow {
        display: inline-block;
        margin-bottom: 18px;
      }
      .ff-head h2 {
        margin: 0 0 20px;
        font-size: clamp(34px, 3.2vw, 48px);
        font-weight: 700;
        line-height: 1.22;
        letter-spacing: 0.01em;
        color: var(--green-900);
      }
      .ff-section--dark .ff-head h2 {
        color: var(--ivory);
      }
      .ff-head p {
        margin: 0;
        font-size: 18px;
        line-height: 1.9;
        color: var(--text-600);
      }
      .ff-section--dark .ff-head p {
        color: rgba(245, 240, 230, 0.78);
      }

      /* ============ M1 HERO ============ */
      .ff-hero {
        position: relative;
        min-height: 92vh;
        overflow: hidden;
        color: var(--ivory);
      }
      .ff-hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.05);
        filter: brightness(0.7) saturate(1.05);
      }
      .ff-hero-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(10, 22, 16, 0.45) 0%, rgba(10, 22, 16, 0.2) 40%, rgba(10, 22, 16, 0.85) 100%),
          radial-gradient(ellipse at 20% 40%, rgba(179, 138, 71, 0.22), transparent 55%);
      }
      .ff-hero-content {
        position: relative;
        z-index: 2;
        padding-top: 200px;
        padding-bottom: 120px;
        max-width: 960px;
      }
      .ff-hero h1 {
        margin: 24px 0 28px;
        font-size: clamp(46px, 5.2vw, 72px);
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -0.005em;
      }
      .ff-hero h1 .gold {
        color: var(--gold-400);
      }
      .ff-hero .hero-subtitle {
        max-width: 720px;
        font-size: 19px;
        line-height: 1.9;
        color: rgba(245, 240, 230, 0.88);
        margin: 0 0 32px;
      }
      .ff-hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
      }
      .ff-hero-tags span {
        padding: 9px 20px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.22);
        font-size: 14px;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
      }
      .ff-hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }
      .ff-hero .scroll-cue {
        position: absolute;
        left: 50%;
        bottom: 36px;
        transform: translateX(-50%);
        z-index: 3;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(245, 240, 230, 0.78);
        font-size: 12px;
        letter-spacing: 0.2em;
      }
      .ff-hero .scroll-cue svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 1.6;
        fill: none;
        animation: ffCueBob 2.6s var(--ease-out) infinite;
      }
      @keyframes ffCueBob {
        0%, 100% { transform: translateY(0); opacity: 0.75; }
        50% { transform: translateY(6px); opacity: 1; }
      }

      /* ============ M2 痛点三栏 ============ */
      .ff-pain-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
        margin-bottom: 60px;
      }
      .ff-pain-card {
        position: relative;
        padding: 40px 32px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
      }
      .ff-pain-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
      }
      .ff-pain-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        border-radius: 14px;
        background: var(--ff-green-soft);
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }
      .ff-pain-icon svg {
        width: 26px;
        height: 26px;
        stroke: var(--green-900);
        stroke-width: 1.6;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
      }
      .ff-pain-card h3 {
        margin: 0 0 12px;
        font-size: 22px;
        color: var(--green-900);
      }
      .ff-pain-card p {
        margin: 0;
        font-size: 15px;
        line-height: 1.85;
        color: var(--text-600);
      }
      .ff-pain-card .ff-pain-tag {
        display: inline-block;
        margin-top: 16px;
        padding: 4px 12px;
        border-radius: 6px;
        background: rgba(179, 138, 71, 0.1);
        color: var(--gold-500);
        font-size: 12px;
        letter-spacing: 0.08em;
        font-weight: 600;
      }
      .ff-pain-conclusion {
        text-align: center;
        margin: 40px auto 0;
        max-width: 960px;
        padding: 36px 40px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 18px;
        font-size: 22px;
        font-weight: 600;
        line-height: 1.65;
        letter-spacing: 0.02em;
      }
      .ff-pain-conclusion strong {
        color: var(--gold-400);
        font-weight: 700;
      }

      /* ============ M3 宏观全景 ============ */
      .ff-panorama {
        position: relative;
        width: 100%;
        height: 72vh;
        min-height: 560px;
        overflow: hidden;
      }
      .ff-panorama-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .ff-panorama-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(10, 22, 16, 0.35) 0%, transparent 30%, rgba(10, 22, 16, 0.72) 100%);
      }
      .ff-panorama-copy {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 72px 0 60px;
        color: var(--ivory);
      }
      .ff-panorama-copy .eyebrow {
        color: var(--gold-400);
      }
      .ff-panorama-copy h2 {
        margin: 16px 0 24px;
        font-size: clamp(36px, 3.6vw, 52px);
        font-weight: 700;
        line-height: 1.2;
      }
      .ff-panorama-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        margin-top: 40px;
        padding-top: 36px;
        border-top: 1px solid rgba(255, 255, 255, 0.16);
      }
      .ff-panorama-stat .num {
        display: block;
        font-size: 38px;
        font-weight: 700;
        color: var(--gold-400);
        line-height: 1;
        margin-bottom: 10px;
      }
      .ff-panorama-stat .label {
        font-size: 14px;
        color: rgba(245, 240, 230, 0.82);
        letter-spacing: 0.05em;
      }
      .ff-panorama-source {
        margin-top: 20px;
        font-size: 12px;
        color: rgba(245, 240, 230, 0.5);
        letter-spacing: 0.04em;
      }

      /* ============ M4 三重稀缺性 ============ */
      .ff-scarcity-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
      }
      .ff-scarcity-card {
        position: relative;
        padding: 0;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.36s var(--ease-out), box-shadow 0.36s var(--ease-out);
      }
      .ff-scarcity-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(15, 33, 24, 0.18);
      }
      .ff-scarcity-media {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
      }
      .ff-scarcity-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--ease-out);
      }
      .ff-scarcity-card:hover .ff-scarcity-media img {
        transform: scale(1.08);
      }
      .ff-scarcity-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 55%, rgba(22, 51, 40, 0.55) 100%);
      }
      .ff-scarcity-kicker {
        position: absolute;
        left: 22px;
        bottom: 22px;
        color: var(--gold-400);
        font-size: 12px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        font-weight: 600;
        z-index: 2;
      }
      .ff-scarcity-body {
        padding: 32px 32px 36px;
      }
      .ff-scarcity-body h3 {
        margin: 0 0 14px;
        font-size: 24px;
        color: var(--green-900);
        line-height: 1.35;
      }
      .ff-scarcity-body p {
        margin: 0 0 16px;
        font-size: 15px;
        line-height: 1.85;
        color: var(--text-600);
      }
      .ff-scarcity-fact {
        display: block;
        padding: 14px 18px;
        margin-top: 14px;
        background: var(--ff-gold-soft);
        border-left: 3px solid var(--gold-500);
        border-radius: 6px;
        font-size: 13.5px;
        color: var(--soil-700);
        line-height: 1.7;
      }
      .ff-scarcity-stamp {
        display: inline-block;
        margin-top: 20px;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--green-900);
        color: var(--gold-400);
        font-size: 12px;
        letter-spacing: 0.12em;
        font-weight: 600;
      }
      .ff-scarcity-conclusion {
        text-align: center;
        margin: 64px auto 0;
        padding: 30px 40px;
        max-width: 960px;
        font-size: 24px;
        font-weight: 600;
        line-height: 1.6;
        color: var(--green-900);
        background: linear-gradient(120deg, rgba(179, 138, 71, 0.12), rgba(22, 51, 40, 0.06));
        border-left: 4px solid var(--gold-500);
        border-radius: 12px;
      }

      /* ============ M5 投资对比 · 三张图表 ============ */
      .ff-charts {
        margin-top: 24px;
      }
      .ff-chart-block {
        margin-bottom: 96px;
      }
      .ff-chart-block:last-child {
        margin-bottom: 0;
      }
      .ff-chart-title {
        text-align: center;
        margin: 0 auto 48px;
        max-width: 880px;
      }
      .ff-chart-title .label {
        display: inline-block;
        padding: 6px 16px;
        border-radius: 999px;
        background: var(--gold-500);
        color: #fff;
        font-size: 13px;
        letter-spacing: 0.08em;
        font-weight: 600;
        margin-bottom: 18px;
      }
      .ff-chart-title h3 {
        margin: 0 0 14px;
        font-size: clamp(28px, 2.6vw, 38px);
        color: var(--ivory);
        font-weight: 700;
        line-height: 1.3;
      }
      .ff-chart-title p {
        margin: 0;
        font-size: 16px;
        line-height: 1.85;
        color: rgba(245, 240, 230, 0.78);
      }

      .ff-chart-stage {
        background: rgba(245, 240, 230, 0.04);
        border: 1px solid rgba(245, 240, 230, 0.14);
        border-radius: 20px;
        padding: 48px;
        backdrop-filter: blur(6px);
      }

      /* —— 图表 1：26 年曲线 —— */
      .ff-chart1-svg {
        width: 100%;
        height: auto;
        display: block;
      }

      /* —— 图表 1 附赠：金额对照条（让"倍数"变成"看得懂的钱"） —— */
      .ff-money {
        margin-top: 44px;
        padding: 36px 40px 32px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(179, 138, 71, 0.1), rgba(22, 51, 40, 0.35));
        border: 1px solid rgba(179, 138, 71, 0.26);
      }
      .ff-money-head {
        text-align: center;
        margin-bottom: 28px;
      }
      .ff-money-title {
        display: block;
        font-size: 22px;
        font-weight: 700;
        color: var(--gold-400);
        margin-bottom: 8px;
      }
      .ff-money-sub {
        display: block;
        font-size: 15px;
        color: rgba(245, 240, 230, 0.75);
      }
      .ff-money-rows {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .ff-money-row {
        display: grid;
        grid-template-columns: 40px 120px 1fr 140px;
        align-items: center;
        gap: 18px;
      }
      .ff-money-icon {
        font-size: 22px;
        text-align: center;
      }
      .ff-money-name {
        font-size: 15px;
        color: rgba(245, 240, 230, 0.9);
        font-weight: 500;
      }
      .ff-money-bar {
        position: relative;
        display: block;
        height: 22px;
        border-radius: 999px;
        background: rgba(245, 240, 230, 0.06);
        overflow: hidden;
      }
      .ff-money-bar i {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        border-radius: 999px;
        background: rgba(245, 240, 230, 0.22);
        width: 0;
        transition: width 1.6s var(--ease-out);
      }
      .ff-money-row.is-hero .ff-money-bar {
        height: 32px;
        background: rgba(179, 138, 71, 0.14);
      }
      .ff-money-row.is-hero .ff-money-bar i {
        background: linear-gradient(90deg, #b38a47, #caa05a 55%, #e5c286);
        box-shadow: 0 0 24px rgba(202, 160, 90, 0.38);
      }
      .ff-money-row.is-hero .ff-money-name {
        font-size: 17px;
        font-weight: 700;
        color: var(--gold-400);
      }
      .ff-money-value {
        text-align: right;
        font-size: 17px;
        font-weight: 600;
        color: rgba(245, 240, 230, 0.8);
        font-variant-numeric: tabular-nums;
      }
      .ff-money-row.is-hero .ff-money-value {
        color: var(--gold-400);
        font-size: 22px;
        font-weight: 700;
      }
      .ff-money-note {
        margin-top: 24px;
        padding-top: 18px;
        border-top: 1px dashed rgba(245, 240, 230, 0.14);
        font-size: 12px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.5);
      }

      /* —— 图表 2：横向条形图 —— */
      .ff-bars {
        display: flex;
        flex-direction: column;
        gap: 26px;
        margin-bottom: 30px;
      }
      .ff-bar-row {
        display: grid;
        grid-template-columns: 180px 1fr 110px;
        gap: 22px;
        align-items: center;
      }
      .ff-bar-row .ff-bar-label {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        font-weight: 500;
        color: var(--ivory);
      }
      .ff-bar-row .ff-bar-icon {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(245, 240, 230, 0.08);
        border-radius: 8px;
        font-size: 18px;
      }
      .ff-bar-track {
        position: relative;
        height: 28px;
        background: rgba(245, 240, 230, 0.08);
        border-radius: 999px;
        overflow: hidden;
      }
      .ff-bar-fill {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        border-radius: 999px;
        background: rgba(245, 240, 230, 0.18);
        transition: width 1.4s var(--ease-out);
      }
      .ff-bar-row.is-hero .ff-bar-track {
        height: 40px;
        background: rgba(179, 138, 71, 0.12);
      }
      .ff-bar-row.is-hero .ff-bar-fill {
        background: linear-gradient(90deg, var(--gold-500) 0%, var(--gold-400) 50%, #e5c286 100%);
        box-shadow: 0 0 32px rgba(202, 160, 90, 0.44);
      }
      .ff-bar-row.is-hero .ff-bar-label {
        font-size: 18px;
        font-weight: 600;
      }
      .ff-bar-value {
        text-align: right;
        font-size: 22px;
        font-weight: 700;
        color: rgba(245, 240, 230, 0.78);
      }
      .ff-bar-row.is-hero .ff-bar-value {
        color: var(--gold-400);
        font-size: 28px;
      }
      .ff-bars-note {
        padding-top: 22px;
        border-top: 1px dashed rgba(245, 240, 230, 0.16);
        font-size: 13px;
        color: rgba(245, 240, 230, 0.6);
        line-height: 1.8;
      }

      /* —— 图表 3：供需剪刀 + 当下事实 —— */
      .ff-scissor {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 40px;
        align-items: center;
        margin-bottom: 50px;
      }
      .ff-scissor-side {
        padding: 32px 28px;
        border-radius: 16px;
        border: 1px solid rgba(245, 240, 230, 0.14);
      }
      .ff-scissor-side--down {
        background: rgba(245, 240, 230, 0.03);
      }
      .ff-scissor-side--up {
        background: rgba(179, 138, 71, 0.08);
        border-color: rgba(179, 138, 71, 0.26);
      }
      .ff-scissor-side h4 {
        margin: 0 0 22px;
        font-size: 20px;
        color: var(--ivory);
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .ff-scissor-side h4 .arrow {
        font-size: 24px;
      }
      .ff-scissor-side--down h4 .arrow {
        color: #9dc6b3;
      }
      .ff-scissor-side--up h4 .arrow {
        color: var(--gold-400);
      }
      .ff-scissor-side ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .ff-scissor-side li {
        padding: 14px 0;
        border-bottom: 1px solid rgba(245, 240, 230, 0.08);
        font-size: 15px;
        line-height: 1.75;
        color: rgba(245, 240, 230, 0.86);
      }
      .ff-scissor-side li:last-child {
        border-bottom: 0;
      }
      .ff-scissor-side li strong {
        color: var(--gold-400);
        font-size: 17px;
      }
      .ff-scissor-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-width: 120px;
      }
      .ff-scissor-center .cross {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--gold-500);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(179, 138, 71, 0.4);
      }
      .ff-scissor-headline {
        text-align: center;
        margin: 40px auto 0;
        max-width: 800px;
        font-size: 22px;
        font-weight: 600;
        color: var(--ivory);
        line-height: 1.7;
      }
      .ff-scissor-headline strong {
        color: var(--gold-400);
      }

      .ff-facts {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 40px;
      }
      .ff-fact {
        padding: 24px 22px;
        border-radius: 14px;
        background: rgba(245, 240, 230, 0.05);
        border: 1px solid rgba(245, 240, 230, 0.1);
      }
      .ff-fact .ff-fact-num {
        display: block;
        font-size: 30px;
        font-weight: 700;
        color: var(--gold-400);
        margin-bottom: 8px;
        line-height: 1.1;
      }
      .ff-fact .ff-fact-label {
        font-size: 14px;
        color: rgba(245, 240, 230, 0.82);
        line-height: 1.55;
        margin-bottom: 10px;
      }
      .ff-fact .ff-fact-source {
        font-size: 11px;
        color: rgba(245, 240, 230, 0.48);
        letter-spacing: 0.03em;
      }

      .ff-chart-closing {
        text-align: center;
        margin-top: 70px;
        padding: 38px 40px;
        font-size: 26px;
        font-weight: 600;
        line-height: 1.55;
        color: var(--ivory);
        border-top: 1px solid rgba(245, 240, 230, 0.14);
        border-bottom: 1px solid rgba(245, 240, 230, 0.14);
      }
      .ff-chart-closing strong {
        color: var(--gold-400);
      }

      .ff-compliance {
        margin: 60px auto 0;
        max-width: 1100px;
        padding: 22px 28px;
        font-size: 12px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.55);
        background: rgba(0, 0, 0, 0.22);
        border-radius: 10px;
        letter-spacing: 0.01em;
      }
      .ff-compliance strong {
        color: rgba(245, 240, 230, 0.78);
      }

      /* ============ M6 政策时间线 ============ */
      .ff-timeline {
        position: relative;
        max-width: 960px;
        margin: 0 auto;
        padding-left: 40px;
      }
      .ff-timeline::before {
        content: "";
        position: absolute;
        left: 14px;
        top: 6px;
        bottom: 6px;
        width: 2px;
        background: linear-gradient(180deg, var(--gold-400), rgba(179, 138, 71, 0.2));
      }
      .ff-timeline-item {
        position: relative;
        margin-bottom: 48px;
        padding-left: 36px;
      }
      .ff-timeline-item:last-child {
        margin-bottom: 0;
      }
      .ff-timeline-item::before {
        content: "";
        position: absolute;
        left: -34px;
        top: 6px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: var(--gold-500);
        box-shadow: 0 0 0 6px rgba(179, 138, 71, 0.14);
      }
      .ff-timeline-year {
        display: inline-block;
        font-size: 13px;
        letter-spacing: 0.14em;
        color: var(--gold-500);
        font-weight: 700;
        margin-bottom: 8px;
      }
      .ff-timeline-item h4 {
        margin: 0 0 10px;
        font-size: 22px;
        color: var(--green-900);
        line-height: 1.4;
      }
      .ff-timeline-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.85;
        color: var(--text-600);
      }
      .ff-timeline-item .ff-timeline-source {
        display: inline-block;
        margin-top: 10px;
        font-size: 12px;
        color: var(--text-400);
        font-style: italic;
      }
      .ff-timeline-closing {
        text-align: center;
        margin: 60px auto 0;
        max-width: 880px;
        padding: 28px 36px;
        font-size: 18px;
        line-height: 1.75;
        color: var(--green-900);
        background: #fff;
        border-radius: 14px;
        box-shadow: var(--shadow-soft);
        font-weight: 500;
      }
      .ff-timeline-closing strong {
        color: var(--gold-500);
      }

      /* 政策原文引用面板 */
      .ff-policy-refs {
        margin-top: 80px;
        padding: 48px 52px;
        background: #fff;
        border-radius: 20px;
        box-shadow: var(--shadow-soft);
        border: 1px solid var(--line-soft);
      }
      .ff-policy-refs-head {
        text-align: center;
        margin-bottom: 40px;
      }
      .ff-policy-refs-head h3 {
        margin: 14px 0 12px;
        font-size: 28px;
        color: var(--green-900);
      }
      .ff-policy-refs-head p {
        margin: 0 auto;
        max-width: 660px;
        font-size: 15px;
        line-height: 1.8;
        color: var(--text-600);
      }
      .ff-policy-refs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .ff-policy-ref {
        position: relative;
        padding: 26px 26px 24px;
        border-radius: 14px;
        border: 1px solid var(--line-soft);
        background: var(--paper);
        transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
      }
      .ff-policy-ref:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-soft);
        border-color: var(--ff-gold-line);
      }
      .ff-policy-ref-stamp {
        display: inline-block;
        padding: 3px 10px;
        background: var(--green-900);
        color: var(--gold-400);
        border-radius: 4px;
        font-size: 11px;
        letter-spacing: 0.16em;
        font-weight: 700;
        margin-bottom: 12px;
      }
      .ff-policy-ref h4 {
        margin: 0 0 10px;
        font-size: 16px;
        line-height: 1.5;
        color: var(--green-900);
      }
      .ff-policy-ref p {
        margin: 0 0 12px;
        font-size: 13.5px;
        line-height: 1.75;
        color: var(--text-600);
      }
      .ff-policy-ref-source {
        display: block;
        font-size: 11.5px;
        color: var(--text-400);
        letter-spacing: 0.02em;
        font-style: italic;
      }

      /* ============ M7 研究报告 ============ */
      .ff-reports {
        display: grid;
        grid-template-columns: 1.3fr 1fr;
        gap: 28px;
      }
      .ff-report-feature {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        background: var(--green-900);
        color: var(--ivory);
        display: grid;
        grid-template-rows: 240px 1fr;
      }
      .ff-report-feature .ff-report-cover {
        position: relative;
        overflow: hidden;
      }
      .ff-report-feature .ff-report-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.75;
      }
      .ff-report-feature .ff-report-body {
        padding: 32px 36px 36px;
      }
      .ff-report-tag {
        display: inline-block;
        padding: 5px 12px;
        border-radius: 6px;
        background: var(--gold-500);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.06em;
        margin-bottom: 14px;
      }
      .ff-report-feature h3 {
        margin: 0 0 14px;
        font-size: 26px;
        line-height: 1.4;
        color: var(--ivory);
      }
      .ff-report-feature p {
        margin: 0 0 22px;
        font-size: 15px;
        line-height: 1.85;
        color: rgba(245, 240, 230, 0.78);
      }

      .ff-report-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }
      .ff-report-item {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 20px;
        padding: 18px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.3s var(--ease-out);
      }
      .ff-report-item:hover {
        transform: translateX(6px);
      }
      .ff-report-item .ff-report-cover {
        border-radius: 10px;
        overflow: hidden;
        height: 120px;
      }
      .ff-report-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .ff-report-item h4 {
        margin: 0 0 8px;
        font-size: 17px;
        line-height: 1.4;
        color: var(--green-900);
      }
      .ff-report-item p {
        margin: 0;
        font-size: 13.5px;
        line-height: 1.75;
        color: var(--text-500);
      }
      .ff-report-item .ff-report-tag--policy {
        background: var(--green-700);
      }
      .ff-report-item .ff-report-tag--model {
        background: var(--soil-700);
      }
      .ff-report-item .ff-report-tag--invest {
        background: #8a6530;
      }

      /* ============ M8 六维价值矩阵 ============ */
      .ff-value-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .ff-value-card {
        position: relative;
        padding: 40px 32px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--line-soft);
        overflow: hidden;
        transition: transform 0.36s var(--ease-out), box-shadow 0.36s var(--ease-out);
      }
      .ff-value-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s var(--ease-out);
      }
      .ff-value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
      }
      .ff-value-card:hover::before {
        transform: scaleX(1);
      }
      .ff-value-num {
        display: inline-block;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: var(--gold-500);
        margin-bottom: 14px;
      }
      .ff-value-card h3 {
        margin: 0 0 10px;
        font-size: 26px;
        line-height: 1.3;
        color: var(--green-900);
      }
      .ff-value-sub {
        display: block;
        font-size: 15px;
        color: var(--text-500);
        margin-bottom: 18px;
      }
      .ff-value-keys {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
      }
      .ff-value-keys span {
        padding: 4px 12px;
        background: var(--ff-green-soft);
        color: var(--green-800);
        border-radius: 6px;
        font-size: 12px;
        letter-spacing: 0.04em;
      }
      .ff-value-lead {
        margin: 0;
        padding: 14px 18px;
        border-left: 3px solid var(--gold-500);
        background: rgba(179, 138, 71, 0.06);
        font-size: 14.5px;
        line-height: 1.8;
        color: var(--text-700);
        border-radius: 4px;
      }
      .ff-value-footer {
        text-align: center;
        margin-top: 60px;
        padding: 32px 40px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 16px;
        font-size: 20px;
        line-height: 1.65;
        font-weight: 500;
      }
      .ff-value-footer strong {
        color: var(--gold-400);
      }

      /* ============ M9 六个统一 ============ */
      .ff-unity {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .ff-unity-card {
        position: relative;
        padding: 36px 28px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--line-soft);
        text-align: center;
        transition: all 0.32s var(--ease-out);
      }
      .ff-unity-card:hover {
        border-color: var(--gold-500);
        transform: translateY(-4px);
      }
      .ff-unity-step {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 6px;
        background: var(--green-900);
        color: var(--gold-400);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 16px;
      }
      .ff-unity-card h3 {
        margin: 0 0 10px;
        font-size: 22px;
        color: var(--green-900);
      }
      .ff-unity-card p {
        margin: 0;
        font-size: 14.5px;
        line-height: 1.85;
        color: var(--text-600);
      }
      .ff-unity-center {
        margin: 44px auto 36px;
        max-width: 720px;
        text-align: center;
        padding: 32px 40px;
        background: linear-gradient(120deg, var(--green-900), var(--green-800));
        border-radius: 16px;
        color: var(--ivory);
      }
      .ff-unity-center h3 {
        margin: 0 0 10px;
        font-size: 30px;
        color: var(--gold-400);
      }
      .ff-unity-center p {
        margin: 0;
        font-size: 16px;
        color: rgba(245, 240, 230, 0.84);
        line-height: 1.8;
      }
      .ff-unity-badges {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-top: 40px;
      }
      .ff-unity-badges span {
        padding: 10px 18px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--line-soft);
        font-size: 14px;
        color: var(--green-900);
        box-shadow: var(--shadow-soft);
      }
      .ff-unity-badges span::before {
        content: "✓";
        margin-right: 8px;
        color: var(--gold-500);
        font-weight: 700;
      }

      /* ============ M10 一码通 ============ */
      .ff-trace {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .ff-trace-copy .ff-trace-points {
        list-style: none;
        padding: 0;
        margin: 32px 0 0;
      }
      .ff-trace-points li {
        display: flex;
        gap: 18px;
        padding: 20px 0;
        border-bottom: 1px solid rgba(245, 240, 230, 0.1);
      }
      .ff-trace-points li:last-child {
        border-bottom: 0;
      }
      .ff-trace-points .ico {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        background: rgba(179, 138, 71, 0.22);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-400);
        font-size: 20px;
        font-weight: 700;
      }
      .ff-trace-points h4 {
        margin: 0 0 6px;
        font-size: 18px;
        color: var(--ivory);
      }
      .ff-trace-points p {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
        color: rgba(245, 240, 230, 0.72);
      }
      .ff-phone-stage {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 560px;
      }
      .ff-phone {
        width: 280px;
        border-radius: 34px;
        background: #101915;
        padding: 14px;
        box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .ff-phone-screen {
        background: var(--ivory);
        border-radius: 22px;
        padding: 22px 20px;
        color: var(--text-900);
        font-size: 13px;
      }
      .ff-phone-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line-soft);
        font-size: 13px;
        color: var(--green-900);
        font-weight: 600;
      }
      .ff-phone-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #4caf50;
        box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
      }
      .ff-phone-title {
        margin: 16px 0 8px;
        font-size: 15px;
        color: var(--green-900);
        font-weight: 700;
        line-height: 1.4;
      }
      .ff-phone-status {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 16px;
      }
      .ff-phone-status span {
        padding: 4px 10px;
        background: var(--ff-gold-soft);
        color: var(--gold-500);
        border-radius: 999px;
        font-size: 11px;
        font-weight: 600;
      }
      .ff-phone-meta {
        margin: 0 0 16px;
        padding: 0;
      }
      .ff-phone-meta div {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border-bottom: 1px dashed var(--line-soft);
        font-size: 12.5px;
      }
      .ff-phone-meta dt {
        color: var(--text-500);
      }
      .ff-phone-meta dd {
        margin: 0;
        color: var(--green-900);
        font-weight: 600;
      }
      .ff-phone-seal {
        margin-top: 14px;
        padding: 10px 12px;
        background: var(--green-900);
        color: var(--gold-400);
        text-align: center;
        border-radius: 8px;
        font-size: 11px;
        letter-spacing: 0.1em;
        font-weight: 600;
      }
      .ff-phone-timeline {
        margin-top: 14px;
        padding: 12px 14px;
        background: rgba(22, 51, 40, 0.05);
        border-radius: 10px;
        border: 1px dashed rgba(22, 51, 40, 0.14);
      }
      .ff-phone-timeline-title {
        display: block;
        font-size: 11px;
        font-weight: 700;
        color: var(--green-900);
        letter-spacing: 0.06em;
        margin-bottom: 8px;
      }
      .ff-phone-timeline ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .ff-phone-timeline li {
        position: relative;
        padding: 5px 0 5px 18px;
        font-size: 11.5px;
        line-height: 1.55;
        color: var(--text-700);
      }
      .ff-phone-timeline li .dot {
        position: absolute;
        left: 4px;
        top: 10px;
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--gold-500);
      }
      .ff-phone-timeline li em {
        display: inline-block;
        width: 38px;
        color: var(--gold-500);
        font-style: normal;
        font-weight: 600;
        margin-right: 4px;
      }
      .ff-chip {
        position: absolute;
        padding: 10px 18px;
        background: rgba(179, 138, 71, 0.18);
        border: 1px solid rgba(179, 138, 71, 0.4);
        color: var(--gold-400);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        backdrop-filter: blur(10px);
      }
      .ff-chip--top {
        top: 50px;
        left: 20px;
      }
      .ff-chip--bottom {
        bottom: 80px;
        right: 20px;
      }

      /* ============ M11 获得方式 ============ */
      .ff-steps {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
      }
      .ff-step-card {
        position: relative;
        padding: 0;
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.32s var(--ease-out);
      }
      .ff-step-card:hover {
        transform: translateY(-8px);
      }
      .ff-step-media {
        position: relative;
        height: 200px;
        overflow: hidden;
      }
      .ff-step-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .ff-step-number {
        position: absolute;
        top: 16px;
        left: 16px;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: var(--gold-500);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        z-index: 2;
      }
      .ff-step-body {
        padding: 24px 26px 28px;
      }
      .ff-step-body h3 {
        margin: 0 0 10px;
        font-size: 19px;
        color: var(--green-900);
      }
      .ff-step-body p {
        margin: 0;
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-600);
      }
      .ff-steps-guarantee {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-top: 50px;
        padding: 22px 36px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 14px;
        font-size: 16px;
      }
      .ff-steps-guarantee .star {
        color: var(--gold-400);
        font-size: 22px;
      }

      /* ============ M12 FAQ ============ */
      .ff-faq {
        max-width: 960px;
        margin: 0 auto;
      }
      .ff-faq-item {
        background: #fff;
        border: 1px solid var(--line-soft);
        border-radius: 12px;
        margin-bottom: 14px;
        overflow: hidden;
        transition: box-shadow 0.3s var(--ease-out);
      }
      .ff-faq-item[open] {
        box-shadow: var(--shadow-soft);
      }
      .ff-faq-item summary {
        cursor: pointer;
        list-style: none;
        padding: 22px 28px;
        font-size: 17px;
        font-weight: 600;
        color: var(--green-900);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }
      .ff-faq-item summary::-webkit-details-marker {
        display: none;
      }
      .ff-faq-item summary::after {
        content: "+";
        font-size: 24px;
        font-weight: 400;
        color: var(--gold-500);
        transition: transform 0.3s var(--ease-out);
      }
      .ff-faq-item[open] summary::after {
        content: "−";
      }
      .ff-faq-body {
        padding: 0 28px 24px;
        font-size: 15px;
        line-height: 1.9;
        color: var(--text-600);
      }

      /* ============ M13 CTA ============ */
      .ff-cta {
        position: relative;
        padding: 140px 0;
        color: var(--ivory);
        overflow: hidden;
      }
      .ff-cta-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .ff-cta-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.45);
      }
      .ff-cta-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 22, 16, 0.7), rgba(10, 22, 16, 0.9));
      }
      .ff-cta .shell {
        position: relative;
        z-index: 1;
      }
      .ff-cta h2 {
        text-align: center;
        margin: 0 auto 20px;
        max-width: 1000px;
        font-size: clamp(36px, 4vw, 56px);
        font-weight: 700;
        line-height: 1.3;
      }
      .ff-cta h2 strong {
        color: var(--gold-400);
      }
      .ff-cta .ff-cta-sub {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 60px;
        font-size: 17px;
        color: rgba(245, 240, 230, 0.82);
        line-height: 1.85;
      }
      .ff-cta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 50px;
      }
      .ff-cta-card {
        padding: 40px 32px;
        background: rgba(245, 240, 230, 0.06);
        border: 1px solid rgba(245, 240, 230, 0.14);
        border-radius: 18px;
        text-align: center;
        backdrop-filter: blur(10px);
      }
      .ff-cta-card h3 {
        margin: 0 0 14px;
        font-size: 22px;
        color: var(--ivory);
      }
      .ff-cta-card p {
        margin: 0 0 22px;
        font-size: 14.5px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.76);
      }
      .ff-cta-card .ff-phone-big {
        font-size: 30px;
        font-weight: 700;
        color: var(--gold-400);
        letter-spacing: 0.04em;
        margin: 14px 0;
      }
      .ff-cta-form {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 20px 0;
      }
      .ff-cta-form input,
      .ff-cta-form select {
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: var(--ivory);
        font-size: 14px;
      }
      .ff-cta-form input::placeholder {
        color: rgba(245, 240, 230, 0.5);
      }
      .ff-cta-form input:focus,
      .ff-cta-form select:focus {
        outline: none;
        border-color: var(--gold-500);
      }
      .ff-cta-form--visit {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 0;
        text-align: left;
      }
      .ff-cta-form--visit input,
      .ff-cta-form--visit select {
        min-width: 0;
      }
      .ff-cta-form--visit input[type='date']::-webkit-calendar-picker-indicator {
        filter: invert(0.9) sepia(0.1) saturate(0.7);
        cursor: pointer;
      }
      .ff-cta-form--visit select option {
        color: #1e2d27;
      }
      .appointment-status {
        grid-column: 1 / -1;
        margin: 10px 0 0;
        padding: 10px 12px;
        border-radius: 8px;
        font-size: 13px;
        line-height: 1.6;
        text-align: left;
        background: rgba(255, 255, 255, 0.08);
        color: rgba(245, 240, 230, 0.78);
      }
      .appointment-status.is-success {
        background: rgba(84, 160, 112, 0.16);
        color: #bfe4c8;
      }
      .appointment-status.is-error {
        background: rgba(210, 90, 78, 0.16);
        color: #ffd0c9;
      }
      .appointment-status.is-info {
        background: rgba(179, 138, 71, 0.16);
        color: var(--gold-400);
      }
      [data-appointment-form].is-submitting .button,
      [data-appointment-form] .button:disabled {
        cursor: wait;
        opacity: 0.72;
      }
      [data-appointment-form].ff-cta-form--visit .button {
        grid-column: 1 / -1;
      }
      .ff-cta-card .button {
        width: 100%;
        margin-top: 4px;
      }
      .ff-cta-card .ff-phone-big + p {
        margin-bottom: 14px;
      }
      .ff-cta-trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 30px;
        padding-top: 34px;
        border-top: 1px solid rgba(245, 240, 230, 0.14);
      }
      .ff-cta-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(245, 240, 230, 0.78);
      }
      .ff-cta-trust-item .ico {
        color: var(--gold-400);
        font-size: 18px;
      }
      .ff-cta-disclaimer {
        max-width: 920px;
        margin: 40px auto 0;
        padding: 18px 24px;
        font-size: 12px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.5);
        background: rgba(0, 0, 0, 0.25);
        border-radius: 8px;
        text-align: center;
      }

      /* ============ reveal animation ============ */
      .ff-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
      }
      .ff-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ============ 锚点跳转时避免被 header 遮住 ============ */
      .family-page #ff-hero,
      .family-page #ff-pain,
      .family-page #ff-panorama,
      .family-page #ff-scarcity,
      .family-page #ff-compare,
      .family-page #ff-policy,
      .family-page #ff-value,
      .family-page #ff-unity,
      .family-page #ff-trace,
      .family-page #ff-steps,
      .family-page #ff-faq,
      .family-page #ff-cta {
        scroll-margin-top: 110px;
      }

      /* ============ 大屏适配（min-width 1440 已由 body 保证，此处兜底 1700+） ============ */
      @media (max-width: 1440px) {
        .family-page .ff-section {
          padding: 100px 0;
        }
      }
    
/* === family page styles:end === */

/* === operation page styles:start === */
      /* =========================================================
       * 运营模式专题页局部样式（基于全局 :root 变量扩展）
       * 新 class 统一以 .op- 前缀避免冲突
       * ===================================================== */

      :root {
        --op-gold-soft: rgba(179, 138, 71, 0.18);
        --op-gold-line: rgba(179, 138, 71, 0.38);
        --op-green-soft: rgba(22, 51, 40, 0.08);
        --op-green-line: rgba(22, 51, 40, 0.14);
        --op-ink: #1a1a1a;
      }

      .operation-page .op-section {
        position: relative;
        padding: 120px 0;
      }
      .operation-page .op-section--dark {
        background: linear-gradient(180deg, var(--green-900), #0f251b);
        color: var(--ivory);
      }
      .operation-page .op-section--deepdark {
        background: radial-gradient(circle at 20% 0%, rgba(179, 138, 71, 0.08), transparent 42%),
          linear-gradient(180deg, #0d1f17 0%, #091811 100%);
        color: var(--ivory);
      }
      .operation-page .op-section--paper { background: var(--paper); }
      .operation-page .op-section--ivory { background: var(--ivory); }
      .operation-page .op-section--soft { background: var(--paper-soft); }

      /* ===== 统一的 section 标题区 ===== */
      .op-head {
        max-width: 900px;
        margin: 0 auto 72px;
        text-align: center;
      }
      .op-head .eyebrow {
        display: inline-block;
        margin-bottom: 18px;
      }
      .op-head h2 {
        margin: 0 0 20px;
        font-size: clamp(34px, 3.2vw, 50px);
        font-weight: 700;
        line-height: 1.22;
        letter-spacing: 0.01em;
        color: var(--green-900);
      }
      .op-section--dark .op-head h2,
      .op-section--deepdark .op-head h2 {
        color: var(--ivory);
      }
      .op-head p {
        margin: 0;
        font-size: 18px;
        line-height: 1.9;
        color: var(--text-600);
      }
      .op-section--dark .op-head p,
      .op-section--deepdark .op-head p {
        color: rgba(245, 240, 230, 0.78);
      }

      /* ============ 锚点跳转时避免被 header 遮住 ============ */
      .operation-page #op-hero,
      .operation-page #op-bridge,
      .operation-page #op-winning,
      .operation-page #op-flywheel,
      .operation-page #op-dual,
      .operation-page #op-arsenal,
      .operation-page #op-weapon-product,
      .operation-page #op-weapon-card,
      .operation-page #op-weapon-channel,
      .operation-page #op-weapon-viral,
      .operation-page #op-weapon-sop,
      .operation-page #op-weapon-digital,
      .operation-page #op-brand-equity,
      .operation-page #op-investor-cycle,
      .operation-page #op-cta {
        scroll-margin-top: 110px;
      }

      /* ========================================================
       * M1 · HERO · 运营总纲
       * ===================================================== */
      .op-hero {
        position: relative;
        min-height: 92vh;
        overflow: hidden;
        color: var(--ivory);
      }
      .op-hero-media {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.55) saturate(1.08);
      }
      .op-hero-overlay {
        position: absolute;
        inset: 0;
        background:
          linear-gradient(180deg, rgba(10, 22, 16, 0.5) 0%, rgba(10, 22, 16, 0.3) 35%, rgba(10, 22, 16, 0.9) 100%),
          radial-gradient(ellipse at 25% 50%, rgba(179, 138, 71, 0.22), transparent 55%);
      }
      .op-hero-content {
        position: relative;
        z-index: 2;
        padding-top: 200px;
        padding-bottom: 120px;
        max-width: 1000px;
      }
      .op-hero h1 {
        margin: 24px 0 28px;
        font-size: clamp(46px, 5.2vw, 74px);
        font-weight: 700;
        line-height: 1.14;
        letter-spacing: -0.005em;
      }
      .op-hero h1 .gold {
        color: var(--gold-400);
      }
      .op-hero .hero-subtitle {
        max-width: 760px;
        font-size: 19px;
        line-height: 1.9;
        color: rgba(245, 240, 230, 0.88);
        margin: 0 0 32px;
      }
      .op-hero-creed {
        margin: 28px 0 36px;
        padding: 28px 32px;
        max-width: 760px;
        border-left: 3px solid var(--gold-400);
        background: rgba(179, 138, 71, 0.1);
        border-radius: 0 12px 12px 0;
        backdrop-filter: blur(6px);
      }
      .op-hero-creed p {
        margin: 0;
        font-size: 16px;
        line-height: 1.9;
        color: rgba(245, 240, 230, 0.95);
      }
      .op-hero-creed strong {
        color: var(--gold-400);
        font-weight: 700;
      }
      .op-hero-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 40px;
      }
      .op-hero-tags span {
        padding: 9px 20px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.22);
        font-size: 14px;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
      }
      .op-hero-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
      }
      .op-hero .scroll-cue {
        position: absolute;
        left: 50%;
        bottom: 36px;
        transform: translateX(-50%);
        z-index: 3;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: rgba(245, 240, 230, 0.78);
        font-size: 12px;
        letter-spacing: 0.2em;
      }
      .op-hero .scroll-cue svg {
        width: 18px;
        height: 18px;
        stroke: currentColor;
        stroke-width: 1.6;
        fill: none;
        animation: opCueBob 2.6s var(--ease-out) infinite;
      }
      @keyframes opCueBob {
        0%, 100% { transform: translateY(0); opacity: 0.75; }
        50% { transform: translateY(6px); opacity: 1; }
      }

      /* ========================================================
       * M2 · 使命→运营桥
       * ===================================================== */
      .op-bridge {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 50px;
      }
      .op-bridge-card {
        position: relative;
        padding: 36px 30px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.3s var(--ease-out);
      }
      .op-bridge-card:hover {
        transform: translateY(-6px);
      }
      .op-bridge-mission {
        padding: 18px 20px;
        background: var(--op-green-soft);
        border-left: 3px solid var(--green-900);
        border-radius: 6px;
        margin-bottom: 24px;
      }
      .op-bridge-mission small {
        display: block;
        font-size: 12px;
        letter-spacing: 0.14em;
        color: var(--green-700);
        font-weight: 700;
        margin-bottom: 6px;
      }
      .op-bridge-mission p {
        margin: 0;
        font-size: 16px;
        font-weight: 600;
        color: var(--green-900);
        line-height: 1.55;
      }
      .op-bridge-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
        color: var(--gold-500);
        font-size: 28px;
        margin: 6px 0 14px;
      }
      .op-bridge-ops {
        padding: 18px 20px;
        background: linear-gradient(120deg, rgba(179, 138, 71, 0.08), rgba(22, 51, 40, 0.04));
        border-left: 3px solid var(--gold-500);
        border-radius: 6px;
      }
      .op-bridge-ops small {
        display: block;
        font-size: 12px;
        letter-spacing: 0.14em;
        color: var(--gold-500);
        font-weight: 700;
        margin-bottom: 6px;
      }
      .op-bridge-ops p {
        margin: 0;
        font-size: 15px;
        color: var(--text-700);
        line-height: 1.75;
      }
      .op-bridge-conclusion {
        text-align: center;
        margin: 40px auto 0;
        max-width: 900px;
        padding: 30px 40px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 16px;
        font-size: 22px;
        line-height: 1.65;
        font-weight: 500;
      }
      .op-bridge-conclusion strong {
        color: var(--gold-400);
      }

      /* ========================================================
       * M3 · 战略决胜篇（两步定乾坤）
       * ===================================================== */
      .op-winning-intro {
        text-align: center;
        max-width: 880px;
        margin: 0 auto 64px;
      }
      .op-winning-kicker {
        display: inline-block;
        padding: 6px 18px;
        border-radius: 999px;
        background: rgba(179, 138, 71, 0.2);
        color: var(--gold-400);
        font-size: 13px;
        letter-spacing: 0.18em;
        font-weight: 700;
        margin-bottom: 18px;
      }
      .op-winning-lead {
        margin: 0;
        font-size: 17px;
        line-height: 1.9;
        color: rgba(245, 240, 230, 0.8);
      }
      .op-winning-lead strong {
        color: var(--gold-400);
        font-weight: 700;
      }
      .op-winning-stages {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }
      .op-stage {
        position: relative;
        padding: 50px 44px 48px;
        border-radius: 22px;
        background: linear-gradient(145deg, rgba(179, 138, 71, 0.12), rgba(22, 51, 40, 0.3));
        border: 1px solid rgba(179, 138, 71, 0.3);
        overflow: hidden;
      }
      .op-stage::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(179, 138, 71, 0.35), transparent 70%);
        pointer-events: none;
      }
      .op-stage-head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 24px;
      }
      .op-stage-num {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--gold-500);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        font-weight: 700;
        font-family: "Source Han Serif SC", "Noto Serif SC", serif;
        box-shadow: 0 8px 20px rgba(179, 138, 71, 0.4);
      }
      .op-stage-kicker {
        font-size: 12px;
        letter-spacing: 0.22em;
        color: var(--gold-400);
        font-weight: 700;
        display: block;
        margin-bottom: 6px;
      }
      .op-stage h3 {
        margin: 0;
        font-size: 28px;
        line-height: 1.3;
        color: var(--ivory);
        font-weight: 700;
      }
      .op-stage-tagline {
        font-size: 15px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.84);
        margin: 0 0 24px;
      }
      .op-stage-evidence {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 22px;
      }
      .op-stage-evi {
        display: flex;
        gap: 14px;
        padding: 14px 16px;
        background: rgba(10, 22, 16, 0.35);
        border-radius: 10px;
        border: 1px solid rgba(245, 240, 230, 0.08);
      }
      .op-stage-evi-ico {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 8px;
        background: rgba(179, 138, 71, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-400);
        font-size: 15px;
        font-weight: 700;
      }
      .op-stage-evi-body {
        flex: 1;
      }
      .op-stage-evi h4 {
        margin: 0 0 4px;
        font-size: 14px;
        color: var(--gold-400);
        font-weight: 700;
        letter-spacing: 0.02em;
      }
      .op-stage-evi p {
        margin: 0;
        font-size: 13.5px;
        line-height: 1.7;
        color: rgba(245, 240, 230, 0.78);
      }
      .op-stage-seal {
        margin-top: 22px;
        padding: 18px 22px;
        background: rgba(179, 138, 71, 0.14);
        border: 1px dashed rgba(179, 138, 71, 0.5);
        border-radius: 10px;
        text-align: center;
      }
      .op-stage-seal-label {
        display: block;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold-400);
        margin-bottom: 8px;
        font-weight: 700;
      }
      .op-stage-seal p {
        margin: 0;
        font-size: 16px;
        color: var(--ivory);
        font-weight: 600;
        font-family: "Source Han Serif SC", "Noto Serif SC", serif;
        line-height: 1.55;
      }
      .op-winning-verdict {
        text-align: center;
        margin: 70px auto 0;
        padding: 38px 44px;
        max-width: 960px;
        background: linear-gradient(120deg, rgba(179, 138, 71, 0.2), rgba(22, 51, 40, 0.1));
        border: 1px solid rgba(179, 138, 71, 0.4);
        border-radius: 16px;
      }
      .op-winning-verdict h3 {
        margin: 0 0 14px;
        font-size: 26px;
        color: var(--gold-400);
        font-weight: 700;
        line-height: 1.5;
      }
      .op-winning-verdict p {
        margin: 0;
        font-size: 17px;
        line-height: 1.85;
        color: rgba(245, 240, 230, 0.86);
      }

      /* ========================================================
       * M4 · 运营飞轮总图
       * ===================================================== */
      .op-flywheel-wrap {
        position: relative;
        width: 60%;
        max-width: 880px;
        margin: 0 auto;
      }
      .op-flywheel-img {
        width: 80%;
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        display: block;
        aspect-ratio: 1 / 1;
        object-fit: contain;
      }
      .op-flywheel-legend {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin-top: 50px;
      }
      .op-fw-legend-item {
        padding: 18px 18px 16px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.3s var(--ease-out);
      }
      .op-fw-legend-item:hover {
        transform: translateY(-4px);
      }
      .op-fw-legend-num {
        display: inline-block;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--green-900);
        color: var(--gold-400);
        font-size: 13px;
        font-weight: 700;
        text-align: center;
        line-height: 28px;
        margin-bottom: 8px;
      }
      .op-fw-legend-item h4 {
        margin: 0 0 6px;
        font-size: 15px;
        color: var(--green-900);
      }
      .op-fw-legend-item p {
        margin: 0;
        font-size: 12.5px;
        line-height: 1.6;
        color: var(--text-500);
      }
      .op-flywheel-footline {
        text-align: center;
        margin-top: 40px;
        font-size: 20px;
        color: var(--green-900);
        font-weight: 500;
      }
      .op-flywheel-footline strong {
        color: var(--gold-500);
      }

      /* ========================================================
       * M5 · 双客户共赢
       * ===================================================== */
      .op-dual {
        display: grid;
        grid-template-columns: 1fr 80px 1fr;
        gap: 0;
        align-items: stretch;
      }
      .op-dual-side {
        padding: 44px 40px;
        border-radius: 18px;
        position: relative;
      }
      .op-dual-invest {
        background: linear-gradient(160deg, rgba(179, 138, 71, 0.16), rgba(179, 138, 71, 0.04));
        border: 1px solid var(--op-gold-line);
      }
      .op-dual-consumer {
        background: linear-gradient(160deg, rgba(22, 51, 40, 0.08), rgba(22, 51, 40, 0.02));
        border: 1px solid var(--op-green-line);
      }
      .op-dual-side h3 {
        margin: 0 0 8px;
        font-size: 24px;
        color: var(--green-900);
        font-weight: 700;
      }
      .op-dual-invest h3 { color: var(--gold-500); }
      .op-dual-side .op-dual-role {
        font-size: 13px;
        color: var(--text-500);
        letter-spacing: 0.08em;
        margin-bottom: 22px;
        text-transform: uppercase;
      }
      .op-dual-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .op-dual-list li {
        display: flex;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid rgba(22, 51, 40, 0.06);
      }
      .op-dual-list li:last-child { border-bottom: 0; }
      .op-dual-list .ico {
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
      }
      .op-dual-invest .ico { background: rgba(179, 138, 71, 0.18); color: var(--gold-500); }
      .op-dual-consumer .ico { background: rgba(22, 51, 40, 0.1); color: var(--green-700); }
      .op-dual-list h4 {
        margin: 0 0 4px;
        font-size: 16px;
        color: var(--green-900);
      }
      .op-dual-list p {
        margin: 0;
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-600);
      }
      .op-dual-bridge {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
      }
      .op-dual-bridge::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, var(--gold-500), transparent 30%, transparent 70%, var(--green-900));
      }
      .op-dual-bridge-core {
        position: relative;
        width: 72px;
        height: 72px;
        border-radius: 50%;
        background: var(--gold-500);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 700;
        z-index: 1;
        box-shadow: 0 12px 28px rgba(179, 138, 71, 0.45);
      }
      .op-dual-flowline {
        grid-column: 1 / -1;
        margin-top: 40px;
        padding: 28px 40px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 14px;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        line-height: 1.7;
      }
      .op-dual-flowline strong {
        color: var(--gold-400);
      }
      .op-dual-kpis {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 50px;
      }
      .op-dual-kpi {
        padding: 22px 20px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--line-soft);
        text-align: center;
      }
      .op-dual-kpi .num {
        display: block;
        font-size: 30px;
        font-weight: 700;
        color: var(--gold-500);
        margin-bottom: 8px;
      }
      .op-dual-kpi .label {
        font-size: 13px;
        color: var(--text-600);
        line-height: 1.55;
      }

      /* ========================================================
       * M6 · 运营工具·秘密武器库 · 入口
       * ===================================================== */
      .op-arsenal-intro {
        text-align: center;
        max-width: 900px;
        margin: 0 auto 64px;
      }
      .op-arsenal-kicker {
        display: inline-block;
        padding: 6px 18px;
        border-radius: 999px;
        background: rgba(179, 138, 71, 0.18);
        color: var(--gold-400);
        font-size: 13px;
        letter-spacing: 0.2em;
        font-weight: 700;
        margin-bottom: 18px;
      }
      .op-arsenal-lead {
        font-size: 17px;
        line-height: 1.9;
        color: rgba(245, 240, 230, 0.82);
      }
      .op-arsenal-lead strong {
        color: var(--gold-400);
      }
      .op-arsenal-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .op-arsenal-card {
        position: relative;
        padding: 30px 26px 28px;
        border-radius: 14px;
        background: rgba(245, 240, 230, 0.04);
        border: 1px solid rgba(179, 138, 71, 0.28);
        transition: all 0.32s var(--ease-out);
        cursor: pointer;
      }
      .op-arsenal-card:hover {
        background: rgba(179, 138, 71, 0.12);
        border-color: var(--gold-400);
        transform: translateY(-4px);
      }
      .op-arsenal-num {
        position: absolute;
        top: 24px;
        right: 26px;
        font-size: 42px;
        font-weight: 700;
        color: rgba(179, 138, 71, 0.3);
        font-family: "Source Han Serif SC", "Noto Serif SC", serif;
        line-height: 1;
      }
      .op-arsenal-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 18px;
        border-radius: 12px;
        background: rgba(179, 138, 71, 0.22);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-400);
        font-size: 24px;
      }
      .op-arsenal-card h3 {
        margin: 0 0 8px;
        font-size: 20px;
        color: var(--ivory);
        font-weight: 700;
      }
      .op-arsenal-card .op-arsenal-sub {
        display: block;
        font-size: 12px;
        color: var(--gold-400);
        letter-spacing: 0.1em;
        margin-bottom: 16px;
      }
      .op-arsenal-card p {
        margin: 0;
        font-size: 13.5px;
        line-height: 1.75;
        color: rgba(245, 240, 230, 0.76);
      }
      .op-arsenal-card .op-arsenal-arrow {
        display: inline-block;
        margin-top: 16px;
        font-size: 13px;
        color: var(--gold-400);
        letter-spacing: 0.06em;
      }

      /* ========================================================
       * Weapons · 每个武器单元的通用样式
       * ===================================================== */
      .op-weapon-head {
        display: flex;
        align-items: flex-start;
        gap: 32px;
        max-width: 1200px;
        margin: 0 auto 56px;
      }
      .op-weapon-seal {
        flex-shrink: 0;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: linear-gradient(145deg, var(--gold-500), #8b6930);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow: 0 16px 34px rgba(179, 138, 71, 0.4);
        font-family: "Source Han Serif SC", "Noto Serif SC", serif;
        border: 3px solid rgba(255, 255, 255, 0.2);
      }
      .op-weapon-seal .t {
        font-size: 12px;
        letter-spacing: 0.15em;
        opacity: 0.88;
        margin-bottom: 4px;
      }
      .op-weapon-seal .n {
        font-size: 30px;
        font-weight: 700;
        line-height: 1;
      }
      .op-weapon-title-area {
        flex: 1;
      }
      .op-weapon-title-area .eyebrow {
        margin: 0 0 10px;
      }
      .op-weapon-title-area h2 {
        margin: 0 0 12px;
        font-size: clamp(30px, 2.8vw, 42px);
        color: var(--green-900);
        font-weight: 700;
        line-height: 1.28;
      }
      .op-section--dark .op-weapon-title-area h2,
      .op-section--deepdark .op-weapon-title-area h2 {
        color: var(--ivory);
      }
      .op-weapon-tag {
        display: inline-block;
        padding: 4px 14px;
        background: var(--op-green-soft);
        color: var(--green-900);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 600;
        margin-right: 8px;
      }
      .op-section--dark .op-weapon-tag,
      .op-section--deepdark .op-weapon-tag {
        background: rgba(179, 138, 71, 0.18);
        color: var(--gold-400);
      }
      .op-weapon-intro {
        max-width: 860px;
        font-size: 17px;
        line-height: 1.9;
        color: var(--text-600);
        margin-top: 14px;
      }
      .op-section--dark .op-weapon-intro,
      .op-section--deepdark .op-weapon-intro {
        color: rgba(245, 240, 230, 0.8);
      }

      /* ===== 武器一：产品矩阵 ===== */
      .op-product-matrix {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-bottom: 60px;
      }
      .op-product-card {
        position: relative;
        padding: 28px 26px;
        border-radius: 14px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        transition: transform 0.28s var(--ease-out);
      }
      .op-product-card:hover {
        transform: translateY(-4px);
      }
      .op-product-rank {
        position: absolute;
        top: 16px;
        right: 18px;
        padding: 3px 10px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.08em;
      }
      .op-product-rank.is-a { background: var(--gold-500); color: #fff; }
      .op-product-rank.is-b { background: var(--green-700); color: #fff; }
      .op-product-card h3 {
        margin: 0 0 6px;
        font-size: 20px;
        color: var(--green-900);
      }
      .op-product-role {
        display: block;
        font-size: 12px;
        color: var(--gold-500);
        letter-spacing: 0.1em;
        font-weight: 600;
        margin-bottom: 14px;
      }
      .op-product-meta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 14px;
        font-size: 12.5px;
      }
      .op-product-meta dt {
        color: var(--text-500);
      }
      .op-product-meta dd {
        margin: 0;
        color: var(--green-900);
        font-weight: 600;
      }
      .op-product-forms {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
        padding-top: 12px;
        border-top: 1px dashed var(--line-soft);
      }
      .op-product-forms span {
        padding: 3px 10px;
        background: var(--op-green-soft);
        color: var(--green-800);
        border-radius: 4px;
        font-size: 11.5px;
      }

      /* 品控四层防线 */
      .op-qc-shields {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin: 40px 0 50px;
      }
      .op-qc-shield {
        padding: 24px 22px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--line-soft);
        border-top: 4px solid var(--gold-500);
        text-align: left;
      }
      .op-qc-shield-num {
        font-size: 12px;
        color: var(--gold-500);
        letter-spacing: 0.14em;
        font-weight: 700;
        margin-bottom: 8px;
      }
      .op-qc-shield h4 {
        margin: 0 0 12px;
        font-size: 17px;
        color: var(--green-900);
      }
      .op-qc-shield ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .op-qc-shield li {
        font-size: 13px;
        line-height: 1.85;
        color: var(--text-600);
        padding-left: 16px;
        position: relative;
      }
      .op-qc-shield li::before {
        content: "·";
        position: absolute;
        left: 4px;
        color: var(--gold-500);
        font-weight: 700;
      }

      /* 溯源三码一链 */
      .op-trace-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 14px;
        margin: 40px 0 50px;
      }
      .op-trace-code {
        padding: 22px 20px;
        border-radius: 12px;
        background: linear-gradient(150deg, rgba(22, 51, 40, 0.04), rgba(179, 138, 71, 0.06));
        border: 1px solid var(--op-gold-line);
        text-align: center;
      }
      .op-trace-code .ico {
        width: 44px;
        height: 44px;
        margin: 0 auto 12px;
        border-radius: 10px;
        background: var(--green-900);
        color: var(--gold-400);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
      }
      .op-trace-code h4 {
        margin: 0 0 6px;
        font-size: 15px;
        color: var(--green-900);
      }
      .op-trace-code p {
        margin: 0;
        font-size: 12.5px;
        color: var(--text-600);
        line-height: 1.7;
      }

      /* 包装合规三纪律 */
      .op-label-rules {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
      }
      .op-label-rule {
        padding: 22px 24px;
        border-radius: 12px;
      }
      .op-label-rule.is-can {
        background: rgba(63, 109, 88, 0.1);
        border-left: 3px solid var(--green-700);
      }
      .op-label-rule.is-care {
        background: rgba(179, 138, 71, 0.1);
        border-left: 3px solid var(--gold-500);
      }
      .op-label-rule.is-never {
        background: rgba(170, 60, 60, 0.08);
        border-left: 3px solid #a83c3c;
      }
      .op-label-rule h5 {
        margin: 0 0 10px;
        font-size: 15px;
        font-weight: 700;
      }
      .op-label-rule.is-can h5 { color: var(--green-700); }
      .op-label-rule.is-care h5 { color: var(--gold-500); }
      .op-label-rule.is-never h5 { color: #a83c3c; }
      .op-label-rule p {
        margin: 0;
        font-size: 13px;
        line-height: 1.75;
        color: var(--text-600);
      }

      /* 产品六层矩阵 */
      .op-sixlayer {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 12px;
        margin-top: 50px;
      }
      .op-sixlayer-item {
        padding: 22px 14px;
        border-radius: 12px;
        background: #fff;
        border: 1px solid var(--line-soft);
        text-align: center;
        transition: transform 0.28s var(--ease-out);
      }
      .op-sixlayer-item:hover {
        transform: translateY(-4px);
        border-color: var(--gold-500);
      }
      .op-sixlayer-item .ico {
        font-size: 26px;
        margin-bottom: 10px;
      }
      .op-sixlayer-item h5 {
        margin: 0 0 6px;
        font-size: 15px;
        color: var(--green-900);
      }
      .op-sixlayer-item p {
        margin: 0;
        font-size: 11.5px;
        line-height: 1.6;
        color: var(--text-500);
      }

      /* ===== 武器二：北森·年鲜卡 ===== */
      .op-card-showcase {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 56px;
        align-items: center;
        margin-bottom: 60px;
      }
      .op-card-visual {
        position: relative;
        aspect-ratio: 1.586;
        border-radius: 20px;
        background: linear-gradient(135deg, #0d1f17 0%, #1f4336 40%, #2c5b46 100%);
        overflow: hidden;
        box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
        padding: 34px;
        color: var(--ivory);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
      }
      .op-card-visual::before {
        content: "";
        position: absolute;
        top: -20%;
        right: -20%;
        width: 80%;
        height: 80%;
        background: radial-gradient(circle, rgba(179, 138, 71, 0.3), transparent 65%);
        pointer-events: none;
      }
      .op-card-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
        pointer-events: none;
      }
      .op-card-brand {
        position: relative;
        z-index: 2;
      }
      .op-card-brand-en {
        font-size: 13px;
        letter-spacing: 0.22em;
        color: var(--gold-400);
        font-weight: 700;
        margin-bottom: 8px;
      }
      .op-card-brand-cn {
        font-size: 32px;
        font-weight: 700;
        font-family: "Source Han Serif SC", "Noto Serif SC", serif;
        letter-spacing: 0.05em;
        color: #fff;
      }
      .op-card-slogan {
        position: relative;
        z-index: 2;
        font-size: 15px;
        color: rgba(245, 240, 230, 0.75);
        letter-spacing: 0.06em;
        margin: 6px 0 0;
      }
      .op-card-bottom {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
      }
      .op-card-num {
        font-family: monospace;
        font-size: 15px;
        letter-spacing: 0.14em;
        color: rgba(245, 240, 230, 0.6);
      }
      .op-card-gold {
        width: 56px;
        height: 36px;
        background: linear-gradient(135deg, var(--gold-500), #d4b270);
        border-radius: 5px;
        position: relative;
      }
      .op-card-gold::before {
        content: "";
        position: absolute;
        inset: 4px 6px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 3px;
      }
      .op-card-story h3 {
        margin: 0 0 14px;
        font-size: 32px;
        color: var(--green-900);
        font-weight: 700;
        line-height: 1.3;
      }
      .op-card-story h3 strong { color: var(--gold-500); }
      .op-card-story .op-card-tagline {
        font-size: 17px;
        color: var(--text-600);
        line-height: 1.9;
        margin: 0 0 22px;
      }
      .op-card-story .op-card-def {
        padding: 22px 24px;
        background: rgba(179, 138, 71, 0.08);
        border-left: 3px solid var(--gold-500);
        border-radius: 8px;
        font-size: 15px;
        color: var(--text-700);
        line-height: 1.85;
      }
      .op-card-story .op-card-def strong { color: var(--green-900); }

      /* 年鲜卡 4 步机制 */
      .op-card-mech {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        margin: 50px 0;
      }
      .op-card-step {
        position: relative;
        padding: 26px 22px;
        background: var(--ivory);
        border-radius: 14px;
        border: 1px solid var(--line-soft);
      }
      .op-card-step-num {
        position: absolute;
        top: -14px;
        left: 22px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--gold-500);
        color: #fff;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
      }
      .op-card-step h4 {
        margin: 8px 0 8px;
        font-size: 16px;
        color: var(--green-900);
      }
      .op-card-step p {
        margin: 0;
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-600);
      }

      /* 三档卡 */
      .op-card-tiers {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 44px;
      }
      .op-tier {
        padding: 34px 28px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        text-align: center;
        transition: transform 0.28s var(--ease-out);
      }
      .op-tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
      .op-tier.is-featured {
        background: linear-gradient(160deg, var(--green-900), #1f4336);
        color: var(--ivory);
        border-color: var(--gold-500);
        transform: scale(1.03);
      }
      .op-tier.is-featured:hover { transform: scale(1.03) translateY(-6px); }
      .op-tier-label {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 999px;
        background: var(--op-gold-soft);
        color: var(--gold-500);
        font-size: 12px;
        letter-spacing: 0.1em;
        font-weight: 600;
        margin-bottom: 14px;
      }
      .op-tier.is-featured .op-tier-label {
        background: var(--gold-500);
        color: #fff;
      }
      .op-tier h4 {
        margin: 0 0 8px;
        font-size: 24px;
        color: var(--green-900);
      }
      .op-tier.is-featured h4 { color: var(--ivory); }
      .op-tier-volume {
        font-size: 36px;
        font-weight: 700;
        color: var(--gold-500);
        margin: 10px 0;
      }
      .op-tier.is-featured .op-tier-volume { color: var(--gold-400); }
      .op-tier-desc {
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-600);
        margin: 0 0 18px;
      }
      .op-tier.is-featured .op-tier-desc { color: rgba(245, 240, 230, 0.82); }
      .op-tier-perks {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: left;
      }
      .op-tier-perks li {
        padding: 8px 0 8px 20px;
        position: relative;
        font-size: 13.5px;
        color: var(--text-700);
        line-height: 1.6;
      }
      .op-tier.is-featured .op-tier-perks li { color: rgba(245, 240, 230, 0.9); }
      .op-tier-perks li::before {
        content: "✦";
        position: absolute;
        left: 2px;
        color: var(--gold-500);
      }

      /* 年鲜卡四大痛点解 */
      .op-card-pains {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        margin: 50px 0 40px;
      }
      .op-card-pain {
        padding: 24px 22px;
        background: var(--paper-soft);
        border-radius: 12px;
        border-top: 3px solid var(--gold-500);
      }
      .op-card-pain h5 {
        margin: 0 0 8px;
        font-size: 14px;
        color: var(--gold-500);
        letter-spacing: 0.08em;
      }
      .op-card-pain h4 {
        margin: 0 0 10px;
        font-size: 17px;
        color: var(--green-900);
      }
      .op-card-pain p {
        margin: 0;
        font-size: 13.5px;
        line-height: 1.75;
        color: var(--text-600);
      }

      /* 年鲜卡合规声明 */
      .op-card-compliance {
        margin-top: 30px;
        padding: 22px 28px;
        background: rgba(22, 51, 40, 0.04);
        border-radius: 10px;
        border-left: 3px solid var(--green-700);
        font-size: 13px;
        line-height: 1.85;
        color: var(--text-500);
      }
      .op-card-compliance strong {
        color: var(--green-900);
      }

      /* ===== 武器三：极境鲜舱 ===== */
      .op-cabin-main {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 50px;
        align-items: center;
        margin-bottom: 60px;
      }
      .op-cabin-visual {
        position: relative;
        aspect-ratio: 1.3;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
      }
      .op-cabin-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      .op-cabin-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(200deg, transparent 40%, rgba(22, 51, 40, 0.6) 100%);
      }
      .op-cabin-visual-label {
        position: absolute;
        left: 24px;
        bottom: 24px;
        color: var(--ivory);
        z-index: 2;
      }
      .op-cabin-visual-label p {
        margin: 0;
        font-size: 11px;
        letter-spacing: 0.2em;
        color: var(--gold-400);
        font-weight: 700;
      }
      .op-cabin-visual-label h4 {
        margin: 4px 0 0;
        font-size: 22px;
        color: #fff;
        font-weight: 700;
      }
      .op-cabin-story h3 {
        margin: 0 0 16px;
        font-size: 28px;
        color: var(--green-900);
        font-weight: 700;
        line-height: 1.3;
      }
      .op-cabin-story p {
        font-size: 16px;
        line-height: 1.85;
        color: var(--text-600);
        margin: 0 0 20px;
      }
      .op-cabin-story .anti {
        padding: 16px 22px;
        background: rgba(170, 60, 60, 0.06);
        border-left: 3px solid #a83c3c;
        border-radius: 8px;
        font-size: 14px;
        color: var(--text-700);
        line-height: 1.8;
      }
      .op-cabin-story .anti strong { color: #a83c3c; }

      /* 极境鲜舱三大使命 */
      .op-cabin-missions {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-bottom: 60px;
      }
      .op-cabin-mission {
        padding: 30px 26px;
        background: #fff;
        border-radius: 14px;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
      }
      .op-cabin-mission-ico {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        border-radius: 12px;
        background: var(--op-green-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
      }
      .op-cabin-mission h4 {
        margin: 0 0 10px;
        font-size: 20px;
        color: var(--green-900);
      }
      .op-cabin-mission p {
        margin: 0;
        font-size: 14px;
        line-height: 1.8;
        color: var(--text-600);
      }

      /* 渠道五网 */
      .op-channels-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
      }
      .op-channel {
        padding: 22px 18px;
        border-radius: 12px;
        background: var(--paper-soft);
        border: 1px solid var(--line-soft);
        text-align: center;
        transition: transform 0.28s var(--ease-out);
      }
      .op-channel:hover {
        transform: translateY(-4px);
        background: #fff;
      }
      .op-channel-ico {
        font-size: 26px;
        margin-bottom: 10px;
      }
      .op-channel h5 {
        margin: 0 0 6px;
        font-size: 15px;
        color: var(--green-900);
      }
      .op-channel p {
        margin: 0;
        font-size: 12px;
        color: var(--text-500);
        line-height: 1.65;
      }

      /* 阶段性执行带 */
      .op-cabin-roadmap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 44px;
      }
      .op-roadmap-stage {
        padding: 24px 22px;
        border-radius: 12px;
        background: rgba(22, 51, 40, 0.04);
        border: 1px dashed var(--op-green-line);
      }
      .op-roadmap-stage .phase {
        font-size: 12px;
        color: var(--gold-500);
        letter-spacing: 0.12em;
        font-weight: 700;
        margin-bottom: 6px;
      }
      .op-roadmap-stage h5 {
        margin: 0 0 8px;
        font-size: 17px;
        color: var(--green-900);
      }
      .op-roadmap-stage p {
        margin: 0;
        font-size: 13px;
        line-height: 1.75;
        color: var(--text-600);
      }

      /* ===== 武器四：传播与裂变 ===== */
      .op-viral-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        margin-bottom: 50px;
      }
      .op-viral-block {
        padding: 34px 30px;
        border-radius: 16px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
      }
      .op-viral-block h3 {
        margin: 0 0 12px;
        font-size: 22px;
        color: var(--green-900);
      }
      .op-viral-block-lead {
        font-size: 14.5px;
        color: var(--text-600);
        line-height: 1.8;
        margin: 0 0 20px;
      }
      .op-viral-sample {
        padding: 22px 24px;
        background: var(--paper-soft);
        border-radius: 10px;
        border-left: 3px solid var(--gold-500);
      }
      .op-viral-sample strong {
        display: block;
        font-size: 15px;
        color: var(--green-900);
        margin-bottom: 8px;
      }
      .op-viral-sample p {
        margin: 4px 0;
        font-size: 13.5px;
        line-height: 1.75;
        color: var(--text-700);
      }
      .op-viral-layers {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .op-viral-layers li {
        display: flex;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px dashed var(--line-soft);
      }
      .op-viral-layers li:last-child { border-bottom: 0; }
      .op-viral-layers .n {
        flex-shrink: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--green-900);
        color: var(--gold-400);
        font-size: 13px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .op-viral-layers h5 {
        margin: 0 0 4px;
        font-size: 15px;
        color: var(--green-900);
      }
      .op-viral-layers p {
        margin: 0;
        font-size: 13px;
        line-height: 1.7;
        color: var(--text-600);
      }

      /* 素材高级化三对比 */
      .op-remake-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 50px 0;
      }
      .op-remake {
        padding: 28px 26px;
        border-radius: 14px;
        background: linear-gradient(160deg, #0f2318, #1a3929);
        color: var(--ivory);
        position: relative;
        overflow: hidden;
      }
      .op-remake::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 140px;
        height: 140px;
        background: radial-gradient(circle, rgba(179, 138, 71, 0.22), transparent 70%);
        pointer-events: none;
      }
      .op-remake-label {
        position: relative;
        font-size: 12px;
        letter-spacing: 0.18em;
        color: var(--gold-400);
        font-weight: 700;
        margin-bottom: 12px;
      }
      .op-remake h4 {
        position: relative;
        margin: 0 0 16px;
        font-size: 19px;
        color: var(--ivory);
        font-weight: 700;
      }
      .op-remake-before,
      .op-remake-after {
        position: relative;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 13.5px;
        line-height: 1.7;
        margin-bottom: 12px;
      }
      .op-remake-before {
        background: rgba(245, 240, 230, 0.06);
        color: rgba(245, 240, 230, 0.6);
        text-decoration: line-through;
      }
      .op-remake-after {
        background: rgba(179, 138, 71, 0.16);
        color: var(--gold-400);
        font-weight: 500;
      }
      .op-remake-caption {
        position: relative;
        margin: 0;
        font-size: 13px;
        color: rgba(245, 240, 230, 0.68);
        line-height: 1.7;
        font-style: italic;
      }

      /* 节奏日历 */
      .op-calendar {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
      .op-cal-season {
        padding: 26px 22px;
        border-radius: 12px;
        text-align: center;
      }
      .op-cal-season.spring { background: linear-gradient(160deg, rgba(63, 109, 88, 0.2), rgba(63, 109, 88, 0.05)); }
      .op-cal-season.summer { background: linear-gradient(160deg, rgba(179, 138, 71, 0.18), rgba(179, 138, 71, 0.04)); }
      .op-cal-season.autumn { background: linear-gradient(160deg, rgba(138, 101, 48, 0.2), rgba(138, 101, 48, 0.04)); }
      .op-cal-season.winter { background: linear-gradient(160deg, rgba(22, 51, 40, 0.14), rgba(22, 51, 40, 0.04)); }
      .op-cal-season .emoji { font-size: 32px; margin-bottom: 10px; }
      .op-cal-season h5 {
        margin: 0 0 6px;
        font-size: 18px;
        color: var(--green-900);
      }
      .op-cal-season .month {
        font-size: 12px;
        color: var(--gold-500);
        letter-spacing: 0.1em;
        margin-bottom: 12px;
      }
      .op-cal-season p {
        margin: 0;
        font-size: 13px;
        line-height: 1.75;
        color: var(--text-700);
      }

      /* ===== 武器五：九段式 SOP ===== */
      .op-sop-stages {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
      }
      .op-sop-stages::before {
        content: "";
        position: absolute;
        left: 29px;
        top: 20px;
        bottom: 20px;
        width: 2px;
        background: linear-gradient(180deg, var(--gold-400), rgba(179, 138, 71, 0.2));
      }
      .op-sop-stage {
        position: relative;
        padding-left: 80px;
        margin-bottom: 36px;
      }
      .op-sop-stage:last-child { margin-bottom: 0; }
      .op-sop-stage::before {
        content: "";
        position: absolute;
        left: 22px;
        top: 18px;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: var(--gold-500);
        box-shadow: 0 0 0 6px rgba(179, 138, 71, 0.14);
      }
      .op-sop-stage-num {
        position: absolute;
        left: 0;
        top: 0;
        width: 60px;
        font-size: 13px;
        color: var(--gold-500);
        letter-spacing: 0.1em;
        font-weight: 700;
        padding-top: 14px;
      }
      .op-sop-stage-card {
        padding: 22px 28px;
        background: #fff;
        border-radius: 12px;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
      }
      .op-sop-stage-card h4 {
        margin: 0 0 10px;
        font-size: 18px;
        color: var(--green-900);
      }
      .op-sop-stage-card p {
        margin: 0 0 10px;
        font-size: 14px;
        line-height: 1.75;
        color: var(--text-600);
      }
      .op-sop-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }
      .op-sop-meta span {
        padding: 3px 10px;
        background: var(--op-green-soft);
        color: var(--green-800);
        border-radius: 4px;
        font-size: 12px;
      }

      /* ===== 武器六：数字化底座 ===== */
      .op-books {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        margin-bottom: 60px;
      }
      .op-book {
        padding: 24px 18px;
        background: rgba(245, 240, 230, 0.06);
        border-radius: 12px;
        border: 1px solid rgba(245, 240, 230, 0.12);
        text-align: center;
      }
      .op-book .emoji { font-size: 26px; margin-bottom: 10px; }
      .op-book h5 {
        margin: 0 0 8px;
        font-size: 16px;
        color: var(--ivory);
      }
      .op-book p {
        margin: 0;
        font-size: 12px;
        line-height: 1.7;
        color: rgba(245, 240, 230, 0.7);
      }

      .op-dashboards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
      }
      .op-dashboard {
        padding: 28px;
        border-radius: 18px;
        background: rgba(245, 240, 230, 0.05);
        border: 1px solid rgba(245, 240, 230, 0.1);
      }
      .op-dashboard h4 {
        margin: 0 0 8px;
        font-size: 20px;
        color: var(--ivory);
      }
      .op-dashboard .op-dash-sub {
        font-size: 13px;
        color: rgba(245, 240, 230, 0.6);
        letter-spacing: 0.05em;
        margin: 0 0 20px;
      }
      .op-dashboard-frame {
        background: var(--ivory);
        border-radius: 14px;
        padding: 22px 24px;
        color: var(--text-900);
      }
      .op-dashboard-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--line-soft);
        margin-bottom: 14px;
      }
      .op-dashboard-head strong {
        color: var(--green-900);
        font-size: 14px;
      }
      .op-dashboard-head .status {
        font-size: 11px;
        color: var(--green-700);
        padding: 3px 8px;
        background: rgba(63, 109, 88, 0.14);
        border-radius: 4px;
        font-weight: 600;
      }
      .op-dashboard-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 9px 0;
        font-size: 13px;
        border-bottom: 1px dashed var(--line-soft);
      }
      .op-dashboard-row:last-child { border-bottom: 0; }
      .op-dashboard-row dt { color: var(--text-500); }
      .op-dashboard-row dd { margin: 0; color: var(--green-900); font-weight: 600; }
      .op-dashboard-chart {
        margin-top: 14px;
        padding: 14px 16px;
        background: var(--paper-soft);
        border-radius: 8px;
      }
      .op-dashboard-chart-title {
        font-size: 11.5px;
        color: var(--text-500);
        margin-bottom: 10px;
      }
      .op-bar-row {
        display: grid;
        grid-template-columns: 70px 1fr 40px;
        align-items: center;
        gap: 8px;
        margin-bottom: 6px;
        font-size: 12px;
      }
      .op-bar-row .label { color: var(--text-700); }
      .op-bar-row .track {
        height: 8px;
        background: rgba(22, 51, 40, 0.08);
        border-radius: 999px;
        overflow: hidden;
      }
      .op-bar-row .fill {
        height: 100%;
        background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
        border-radius: 999px;
      }
      .op-bar-row .val { text-align: right; color: var(--gold-500); font-weight: 600; }

      /* ===== 品牌资产金字塔（单独模块） ===== */
      .op-pyramid {
        max-width: 760px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
      }
      .op-pyramid-layer {
        padding: 18px 28px;
        border-radius: 10px;
        background: #fff;
        border: 1px solid var(--line-soft);
        box-shadow: var(--shadow-soft);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        transition: transform 0.28s var(--ease-out);
      }
      .op-pyramid-layer:hover {
        transform: scale(1.02);
      }
      .op-pyramid-layer.l1 { width: 50%; background: linear-gradient(135deg, var(--gold-500), #d4b270); color: #fff; }
      .op-pyramid-layer.l2 { width: 60%; background: linear-gradient(135deg, rgba(179, 138, 71, 0.85), rgba(212, 178, 112, 0.75)); color: #fff; }
      .op-pyramid-layer.l3 { width: 72%; }
      .op-pyramid-layer.l4 { width: 86%; }
      .op-pyramid-layer.l5 { width: 100%; }
      .op-pyramid-layer h4 {
        margin: 0;
        font-size: 17px;
        color: inherit;
        font-weight: 700;
      }
      .op-pyramid-layer.l1 h4,
      .op-pyramid-layer.l2 h4 { color: #fff; }
      .op-pyramid-layer.l3 h4,
      .op-pyramid-layer.l4 h4,
      .op-pyramid-layer.l5 h4 { color: var(--green-900); }
      .op-pyramid-kpi {
        font-size: 13px;
        letter-spacing: 0.04em;
      }
      .op-pyramid-layer.l3 .op-pyramid-kpi,
      .op-pyramid-layer.l4 .op-pyramid-kpi,
      .op-pyramid-layer.l5 .op-pyramid-kpi {
        color: var(--text-500);
      }
      .op-pyramid-layer.l1 .op-pyramid-kpi,
      .op-pyramid-layer.l2 .op-pyramid-kpi {
        color: rgba(255, 255, 255, 0.85);
      }
      .op-pyramid-footline {
        text-align: center;
        margin: 46px auto 0;
        max-width: 760px;
        padding: 22px 30px;
        background: var(--green-900);
        color: var(--ivory);
        border-radius: 12px;
        font-size: 17px;
        line-height: 1.65;
      }
      .op-pyramid-footline strong { color: var(--gold-400); }

      /* ===== M12 投资者获益闭环 ===== */
      .op-invest-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-bottom: 50px;
      }
      .op-invest-row {
        display: grid;
        grid-template-columns: 200px 40px 1fr;
        align-items: center;
        gap: 18px;
        padding: 20px 26px;
        background: rgba(245, 240, 230, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(245, 240, 230, 0.1);
      }
      .op-invest-row .from {
        font-size: 16px;
        color: var(--gold-400);
        font-weight: 600;
      }
      .op-invest-row .arrow {
        color: var(--gold-400);
        font-size: 22px;
        text-align: center;
      }
      .op-invest-row .to {
        font-size: 14.5px;
        color: rgba(245, 240, 230, 0.86);
        line-height: 1.7;
      }
      .op-invest-banner {
        text-align: center;
        margin: 60px auto 0;
        padding: 40px 44px;
        max-width: 960px;
        background: linear-gradient(135deg, rgba(179, 138, 71, 0.2), rgba(22, 51, 40, 0.05));
        border: 1px solid rgba(179, 138, 71, 0.44);
        border-radius: 20px;
      }
      .op-invest-banner h3 {
        margin: 0 0 12px;
        font-size: 26px;
        color: var(--gold-400);
        font-weight: 700;
        line-height: 1.5;
      }
      .op-invest-banner p {
        margin: 0;
        font-size: 17px;
        line-height: 1.85;
        color: rgba(245, 240, 230, 0.86);
      }

      /* ===== CTA ===== */
      .op-cta {
        position: relative;
        padding: 130px 0;
        color: var(--ivory);
        overflow: hidden;
      }
      .op-cta-bg {
        position: absolute;
        inset: 0;
        z-index: 0;
      }
      .op-cta-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: brightness(0.4);
      }
      .op-cta-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(10, 22, 16, 0.7), rgba(10, 22, 16, 0.88));
      }
      .op-cta .shell {
        position: relative;
        z-index: 1;
      }
      .op-cta h2 {
        text-align: center;
        margin: 0 auto 20px;
        max-width: 980px;
        font-size: clamp(34px, 3.6vw, 52px);
        font-weight: 700;
        line-height: 1.3;
      }
      .op-cta h2 strong { color: var(--gold-400); }
      .op-cta-sub {
        text-align: center;
        max-width: 720px;
        margin: 0 auto 60px;
        font-size: 17px;
        color: rgba(245, 240, 230, 0.82);
        line-height: 1.85;
      }
      .op-cta-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 50px;
      }
      .op-cta-card {
        padding: 40px 32px;
        background: rgba(245, 240, 230, 0.06);
        border: 1px solid rgba(245, 240, 230, 0.14);
        border-radius: 18px;
        text-align: center;
        backdrop-filter: blur(10px);
      }
      .op-cta-card h3 {
        margin: 0 0 14px;
        font-size: 22px;
        color: var(--ivory);
      }
      .op-cta-card p {
        margin: 0 0 22px;
        font-size: 14.5px;
        line-height: 1.8;
        color: rgba(245, 240, 230, 0.76);
      }
      .op-cta-card .phone-big {
        font-size: 28px;
        font-weight: 700;
        color: var(--gold-400);
        margin: 14px 0;
        letter-spacing: 0.04em;
      }
      .op-cta-card .button { width: 100%; margin-top: 4px; }
      .op-cta-trust {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 28px;
        margin-top: 30px;
        padding-top: 34px;
        border-top: 1px solid rgba(245, 240, 230, 0.14);
      }
      .op-cta-trust-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        color: rgba(245, 240, 230, 0.78);
      }
      .op-cta-disclaimer {
        max-width: 960px;
        margin: 40px auto 0;
        padding: 18px 24px;
        font-size: 12px;
        line-height: 1.85;
        color: rgba(245, 240, 230, 0.5);
        background: rgba(0, 0, 0, 0.28);
        border-radius: 8px;
        text-align: center;
      }

      /* ===== reveal 动画 ===== */
      .op-reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
      }
      .op-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
      }

      /* ===== 大屏兜底 ===== */
      @media (max-width: 1440px) {
        .operation-page .op-section { padding: 100px 0; }
      }
    
/* === operation page styles:end === */
