:root {
  --green: #2da247;
  --deep: #0f3d1c;
  --deep-2: #092814;
  --soft: #eaf6ee;
  --line: #d8e6dc;
  --orange: #e8821e;
  --text: #1a1a1a;
  --muted: #6b7280;
  --white: #fff;
  --shadow: 0 22px 70px rgba(15, 61, 28, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Han Sans SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #fbfdfb;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 0 clamp(20px, 9vw, 130px);
  color: #26382b;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.scrolled,
.site-header.open {
  background: rgba(255, 255, 255, .88);
  color: var(--deep);
  box-shadow: none;
  backdrop-filter: blur(16px);
}
.brand { display: flex; align-items: center; flex: 0 0 245px; width: 245px; height: 47px; }
.brand-img { display: block; width: 245px; height: 47px; object-fit: contain; }
.nav { flex: 1 1 auto; display: flex; justify-content: center; align-items: center; gap: 27px; font-size: 15px; font-weight: 600; color: #26382b; }
.nav a { opacity: 1; padding: 26px 0; position: relative; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 17px; height: 2px; border-radius: 999px; background: var(--green); transform: scaleX(0); transform-origin: center; transition: transform .22s ease; }
.nav a:hover::after { transform: scaleX(1); }
.header-cta, .btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 22px; border-radius: 999px; font-weight: 700;
}
.header-cta { flex: 0 0 auto; min-width: 94px; min-height: 40px; padding: 0 18px; border-radius: 6px; background: var(--green); color: #fff; font-size: 14px; font-weight: 800; box-shadow: rgba(45, 162, 71, .18) 0 10px 24px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: currentColor; }

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px clamp(22px, 6vw, 92px) 72px;
  color: #fff;
  text-align: left;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(8, 35, 18, .92), rgba(8, 35, 18, .55), rgba(8, 35, 18, .18)), url("./assets/hero-farmland-network.png") center/cover;
}
.network-bg {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 18% 28%, rgba(45,162,71,.35) 0 2px, transparent 3px),
    radial-gradient(circle at 42% 40%, rgba(255,255,255,.24) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 24%, rgba(232,130,30,.32) 0 2px, transparent 3px),
    linear-gradient(125deg, transparent 0 20%, rgba(234,246,238,.18) 20.2%, transparent 21% 48%, rgba(234,246,238,.15) 48.3%, transparent 49%);
  animation: drift 9s ease-in-out infinite alternate;
}
.hero-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .95;
  mix-blend-mode: screen;
}
.network-lines path {
  fill: none;
  stroke: rgba(210, 255, 222, .34);
  stroke-width: 2;
}
.network-glow path {
  fill: none;
  stroke: rgba(93, 230, 132, .95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 90 520;
  filter: drop-shadow(0 0 10px rgba(93, 230, 132, .85));
  animation: networkFlow 4.6s linear infinite;
}
.network-glow path:nth-child(2) { animation-delay: -1.4s; }
.network-glow path:nth-child(3) { animation-delay: -2.7s; }
.network-nodes circle {
  fill: rgba(230, 255, 236, .92);
  stroke: rgba(45, 162, 71, .9);
  stroke-width: 3;
  filter: drop-shadow(0 0 12px rgba(93, 230, 132, .95));
  animation: nodePulse 2.6s ease-in-out infinite;
}
.network-nodes circle:nth-child(2n) { animation-delay: .45s; }
.network-nodes circle:nth-child(3n) { animation-delay: .9s; }
.hero-content { position: relative; max-width: 760px; margin-inline: 0; text-align: left; }
.hero-domain { letter-spacing: .18em; text-transform: uppercase; color: #c9f0d3; font-weight: 700; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { margin-bottom: 30px; font-size: clamp(46px, 4.8vw, 70px); line-height: 1.08; letter-spacing: 0; }
.h1-line { display: block; white-space: nowrap; }
.h1-line + .h1-line { margin-top: 12px; }
.h1-line.accent { color: var(--orange); }
.accent-inline { color: var(--orange); margin-left: .08em; }
.hero-subtitle { font-size: clamp(20px, 2vw, 28px); color: #eaf6ee; }
.hero-note { max-width: 680px; color: #eaf6ee; font-size: 18px; line-height: 1.9; margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: flex-start; gap: 16px; margin-top: 42px; }
.btn.primary { background: var(--green); color: #fff; box-shadow: 0 14px 34px rgba(45,162,71,.35); border: 1px solid var(--green); }
.btn.ghost { color: #fff; border: 1px solid rgba(255,255,255,.55); background: rgba(255,255,255,.08); }
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 22px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.82);
  border-radius: 999px;
  transform: translateX(-50%);
}
.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 9px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}
.section { padding: clamp(72px, 9vw, 128px) clamp(20px, 6vw, 92px); }
.light { background: linear-gradient(#fbfdfb, var(--soft)); }
.section-head { max-width: 840px; margin: 0 auto 44px; text-align: center; }
.section-kicker { color: var(--green); font-weight: 800; letter-spacing: .16em; font-size: 13px; }
h2 { font-size: clamp(34px, 4vw, 56px); line-height: 1.16; margin-bottom: 16px; }
.section-head p:not(.section-kicker), .about-copy p, .broker-copy p, .contact-copy p { color: var(--muted); font-size: 17px; line-height: 1.8; }

.stat-grid, .pillar-grid, .report-grid, .earning-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px;
}
.pillar-grid,
.earning-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin-inline: auto;
}
.stat-card, .pillar, .report, .earning, .fee-card, .eco-panel, .lead-form {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.opportunity {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(320px, 540px) minmax(460px, 640px);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fbfcf8;
}
.opportunity-copy { max-width: 560px; justify-self: center; text-align: left; }
.opportunity-copy .section-kicker { color: var(--deep); letter-spacing: 0; font-size: 17px; }
.opportunity-copy h2 {
  font-family: "STKaiti", "KaiTi", "Source Han Sans SC", serif;
  font-size: clamp(42px, 4.6vw, 68px);
  line-height: 1.18;
  font-weight: 700;
  margin-bottom: 24px;
}
.opportunity-copy p { color: #415348; font-size: 18px; line-height: 1.9; }
.opportunity-copy .source { margin: 28px 0 0; color: #52645a; text-align: left; }
.market-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-card { padding: 28px; text-align: center; min-height: 230px; }
.stat-card h3 { color: #4e5c54; }
.ring {
  width: 156px; height: 156px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; position: relative;
  background: conic-gradient(var(--green) calc(var(--value) * 1%), #dfece3 0);
  animation: ringPulse 2.8s ease-in-out infinite;
}
.ring::after { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #fff; }
.ring::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(45, 162, 71, .24);
  animation: ringHalo 2.8s ease-in-out infinite;
}
.ring span, .ring em { position: relative; z-index: 1; }
.ring span { font-size: 34px; font-weight: 900; line-height: 1; }
.ring em { position: absolute; top: calc(50% + 30px); left: 0; right: 0; text-align: center; font-style: normal; color: var(--green); font-weight: 800; line-height: 1; }
.stat-card:nth-child(2) .ring,
.stat-card:nth-child(2) .ring::before { animation-delay: .2s; }
.stat-card:nth-child(3) .ring,
.stat-card:nth-child(3) .ring::before { animation-delay: .4s; }
.stat-card:nth-child(4) .ring,
.stat-card:nth-child(4) .ring::before { animation-delay: .6s; }
.stat-card h3 { margin-bottom: 8px; }
.stat-card p, .source { color: var(--muted); }
.source { margin: 24px auto 0; max-width: 1180px; font-size: 14px; }

.brand-intro {
  background: #fff;
  padding-top: clamp(54px, 6vw, 86px);
  padding-bottom: clamp(54px, 6vw, 86px);
}
.brand-intro-inner {
  max-width: 980px;
  margin: 0 auto;
  display: block;
}
.brand-intro-copy {
  text-align: center;
  color: #2f5b25;
}
.brand-intro-copy h2 {
  white-space: nowrap;
  margin-bottom: 34px;
  color: var(--green);
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: 1.2;
}
.brand-intro-copy h2 span {
  display: inline-block;
  margin: 0 .26em;
  color: var(--green);
}
.brand-intro-copy p {
  margin: 0 auto;
  max-width: 920px;
  color: #315e25;
  font-family: "STKaiti", "KaiTi", "Songti SC", serif;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.55;
  font-weight: 700;
  text-align: left;
}
.brand-intro-copy strong {
  color: var(--orange);
  font-weight: 900;
}

.pain {
  min-height: 92vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(rgba(4, 20, 10, .76), rgba(4, 20, 10, .82)),
    url("./assets/hero-farmland-network.png") center/cover;
}
.pain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(76deg, transparent 0 28px, rgba(184, 225, 181, .08) 29px 31px);
}
.pain-keywords {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  max-width: 760px;
}
.pain-keywords span {
  padding: 14px 22px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 900;
  animation: painFloat 4.8s ease-in-out infinite;
}
.pain-keywords span:nth-child(4),
.pain-keywords span:nth-child(10) { background: rgba(232,130,30,.24); color: #fff; }
.pain-keywords span:nth-child(2n) { animation-delay: .45s; }
.pain-keywords span:nth-child(3n) { animation-delay: .9s; }
.pain-mark {
  position: absolute;
  z-index: 1;
  right: 8vw;
  top: 12vh;
  font-family: "STKaiti", serif;
  font-size: clamp(190px, 26vw, 380px);
  line-height: 1;
  color: rgba(196, 59, 42, .72);
  animation: painMarkPulse 5.2s ease-in-out infinite;
}
.pain-title {
  position: relative;
  z-index: 1;
  margin: clamp(130px, 22vh, 220px) 0 30px;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(86px, 13vw, 180px);
  line-height: .95;
  color: #c8eeac;
}
.pain-title span { color: #c8eeac; }
.pain-title::after { color: #c8422d; }
.pain-title { animation: trustGlow 4.2s ease-in-out infinite; }
.pain-quotes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  border-top: 1px solid rgba(255,255,255,.35);
}
.pain-quotes p {
  margin: 0;
  padding: 20px 28px 0;
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
}
.pain-quotes p + p { border-left: 1px solid rgba(255,255,255,.35); }

.dual-drive-section,
.solution { background: #fff; }
.dual-drive-section { padding-bottom: clamp(44px, 5vw, 72px); }
.solution {
  padding-top: clamp(36px, 4vw, 58px);
  text-align: center;
}
.solution .section-head { max-width: 1180px; }
.solution .section-head p { max-width: 860px; margin: 0 auto; color: #7a827d; }
.solution .section-head { margin-bottom: 30px; }
.one-line-title {
  white-space: nowrap;
  font-family: "STKaiti", "KaiTi", "Source Han Sans SC", serif;
  font-size: clamp(44px, 5vw, 72px);
  color: #4a4a42;
}
.solution-hero {
  max-width: 1260px;
  margin: 52px auto 34px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(34px, 5vw, 64px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 20%, rgba(45, 162, 71, .16), transparent 36%),
    linear-gradient(135deg, #f4fbf6 0%, #ffffff 58%, #eaf6ee 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.drive-visual {
  position: relative;
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}
.drive-visual strong {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(28px, 3vw, 42px);
  color: var(--deep);
}
.drive-wheel {
  position: relative;
  width: min(220px, 18vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  filter: drop-shadow(0 18px 24px rgba(15, 61, 28, .18));
}
.drive-wheel::before,
.drive-wheel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}
.drive-wheel::before {
  background: conic-gradient(from 8deg,
    currentColor 0 56deg,
    transparent 56deg 72deg,
    currentColor 72deg 128deg,
    transparent 128deg 144deg,
    currentColor 144deg 200deg,
    transparent 200deg 216deg,
    currentColor 216deg 272deg,
    transparent 272deg 288deg,
    currentColor 288deg 344deg,
    transparent 344deg 360deg);
  animation: driveSpin 9s linear infinite;
}
.drive-wheel.match::before { animation-direction: reverse; animation-duration: 7.5s; }
.drive-wheel::after {
  inset: 28px;
  background:
    radial-gradient(circle, currentColor 0 46%, transparent 47%),
    repeating-conic-gradient(from 8deg, #fff 0 12deg, #dde4ea 12deg 24deg);
  border: 10px solid #fff;
  box-shadow: inset 0 0 0 16px rgba(255,255,255,.34), 0 8px 0 rgba(15, 61, 28, .08);
}
.drive-wheel span {
  position: relative;
  z-index: 1;
  width: 48%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}
.drive-wheel.recommend { color: var(--orange); }
.drive-wheel.match { color: var(--green); }
.drive-wheel.recommend span { background: linear-gradient(135deg, #ffb44b, #f08a18); }
.drive-wheel.match span { background: linear-gradient(135deg, #2fb755, #087725); }
.drive-plus {
  color: var(--deep);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 300;
  opacity: .78;
  animation: plusPulse 2.4s ease-in-out infinite;
}
.drive-copy {
  text-align: center;
  justify-self: center;
}
.drive-copy .section-kicker { text-align: center; }
.drive-copy h3 {
  margin-bottom: 20px;
  color: var(--green);
  font-family: "STKaiti", "KaiTi", serif;
  font-size: clamp(54px, 7vw, 96px);
  line-height: 1;
}
.drive-copy p:not(.section-kicker) {
  color: #416331;
  font-size: clamp(20px, 2.2vw, 31px);
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
}
.drive-copy span { color: var(--orange); }
.report-strip {
  max-width: 1260px;
  margin: 30px auto 36px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #4d6b4c;
  color: #fff;
  border-radius: 8px;
  overflow: hidden;
}
.report-strip article { min-height: 168px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); text-align: center; display: grid; place-items: center; align-content: center; }
.report-strip article:last-child { border-right: 0; }
.report-strip h3 { font-size: 28px; margin-bottom: 16px; }
.report-strip p { color: #d7efb7; font-weight: 900; }
.pillar { padding: 34px; min-height: 172px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pillar span { color: var(--orange); font-weight: 900; }
.pillar p, .report p, .earning p { color: var(--muted); line-height: 1.7; }
.pillar p { white-space: nowrap; margin-inline: auto; text-align: center; }
.pillar h3 { color: #6eaa75; font-size: 28px; }
.timeline { margin: 42px auto; max-width: 960px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; position: relative; }
.timeline span { height: 72px; display: grid; place-items: center; border-radius: 999px; background: var(--soft); color: var(--deep); font-size: 26px; font-weight: 900; border: 1px solid var(--line); }
.report { padding: 24px; }

.values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.values span { padding: 12px 16px; border-radius: 999px; background: #fff; color: var(--deep); border: 1px solid var(--line); font-weight: 800; }

.hesu {
  background: linear-gradient(#f5f7f2, #e8efe2);
  color: #2b2b2b;
}
.hesu .section-heading {
  max-width: 1120px;
  margin: 0 auto 38px;
  text-align: center;
}
.eco-title {
  white-space: nowrap;
  font-family: "STKaiti", "KaiTi", "Songti SC", STSong, serif;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.15;
  color: #2b2b2b;
}
.ecosystem-98866 {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.eco-row {
  display: grid;
  grid-template-columns: 76px minmax(260px, .9fr) minmax(430px, 1.25fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(31, 122, 51, .18);
  border-radius: 8px;
  background: rgba(255, 253, 248, .88);
  box-shadow: 0 14px 32px rgba(18, 69, 28, .08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.eco-row:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 122, 51, .32);
  box-shadow: 0 22px 48px rgba(18, 69, 28, .14);
}
.eco-row:nth-child(2) { transition-delay: .04s; }
.eco-row:nth-child(3) { transition-delay: .08s; }
.eco-row:nth-child(4) { transition-delay: .12s; }
.eco-row:nth-child(5) { transition-delay: .16s; }
.eco-number {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #113f1a, #4cb223);
  color: #fff;
  box-shadow: 0 16px 32px rgba(31, 122, 51, .22);
  font-family: "STKaiti", "KaiTi", "Songti SC", STSong, serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  animation: ecoNumberPulse 3.2s ease-in-out infinite;
  margin-inline: auto;
}
.eco-row:nth-child(2) .eco-number { animation-delay: .25s; }
.eco-row:nth-child(3) .eco-number { animation-delay: .5s; }
.eco-row:nth-child(4) .eco-number { animation-delay: .75s; }
.eco-row:nth-child(5) .eco-number { animation-delay: 1s; }
.eco-copy { text-align: left; }
.eco-copy h3 {
  margin: 0 0 8px;
  font-family: "STKaiti", "KaiTi", "Songti SC", STSong, serif;
  font-size: 30px;
  line-height: 1.25;
  color: #113f1a;
  text-align: left;
}
.eco-copy p {
  margin: 0;
  color: #66715f;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
}
.eco-tags {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.eco-tags.compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.eco-tags span {
  display: grid;
  align-items: center;
  min-height: 43px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 122, 51, .16);
  border-radius: 6px;
  background: rgba(255,255,255,.72);
  color: #113f1a;
  font-weight: 900;
  text-align: center;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  animation: tagFadeUp .7s ease both;
}
.eco-tags span:hover { transform: translateY(-2px); border-color: rgba(31,122,51,.34); }
.eco-tags span:nth-child(2) { animation-delay: .04s; }
.eco-tags span:nth-child(3) { animation-delay: .08s; }
.eco-tags span:nth-child(4) { animation-delay: .12s; }
.eco-tags span:nth-child(5) { animation-delay: .16s; }
.eco-tags span:nth-child(6) { animation-delay: .2s; }
.eco-tags span:nth-child(7) { animation-delay: .24s; }
.eco-tags span:nth-child(8) { animation-delay: .28s; }
.eco-tags span:nth-child(9) { animation-delay: .32s; }
.eco-tags span.current {
  border-color: transparent;
  background: #9bd978;
  animation: currentTagPulse 2.8s ease-in-out infinite;
}

.broker { display: grid; grid-template-columns: minmax(340px, 560px) minmax(320px, 460px); justify-content: center; align-items: center; gap: 70px; background: var(--deep); color: #fff; text-align: center; }
.broker-copy { justify-self: center; text-align: center; }
.broker-copy h2 { white-space: nowrap; font-size: clamp(30px, 3.15vw, 44px); }
.broker-copy p { color: #d9ecdf; }
.fee-card { width: min(100%, 460px); justify-self: center; padding: 32px; color: var(--text); text-align: center; }
.fee-card dl { margin: 0 0 24px; }
.fee-card dl div { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding: 16px 0; }
.fee-card dt { color: var(--muted); }
.fee-card dd { margin: 0; font-weight: 900; color: var(--green); }
.fee-card strong { color: var(--orange); font-size: 24px; }

.earning { padding: 28px; text-align: center; }
.earning strong { display: block; margin: 12px 0; font-size: 34px; color: var(--green); }
.calculator { max-width: 640px; margin: 34px auto 0; padding: 26px; border-radius: 16px; background: var(--soft); border: 1px solid var(--line); text-align: center; }
.calculator input { width: 70%; accent-color: var(--green); }
.calculator output { display: inline-block; min-width: 70px; font-weight: 900; }

.map-section { background: linear-gradient(180deg, var(--soft), #fff); }
.china-map { position: relative; width: min(940px, 82vw); margin: 0 auto; border-radius: 0; background: transparent; overflow: hidden; }
.china-map img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(15, 61, 28, .12));
}
.map-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.map-node-halos circle,
.map-nodes circle {
  transform-box: fill-box;
  transform-origin: center;
}
.map-node-halos circle {
  fill: rgba(255, 186, 88, .34);
  stroke: rgba(255, 229, 151, .7);
  stroke-width: 1.2;
  animation: mapHaloGlow 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(255, 185, 73, .72));
}
.map-nodes circle {
  fill: #fff;
  stroke: var(--orange);
  stroke-width: 3.2;
  animation: mapNodeGlow 2.8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(232, 130, 30, .66));
}
.map-node-halos circle.key-city {
  fill: rgba(255, 166, 48, .46);
  stroke: rgba(255, 232, 156, .96);
  stroke-width: 1.8;
  filter: drop-shadow(0 0 22px rgba(255, 159, 34, .92));
}
.map-nodes circle.key-city {
  stroke-width: 4;
  filter: drop-shadow(0 0 16px rgba(255, 144, 20, .95));
}
.map-node-halos circle:nth-child(2n), .map-nodes circle:nth-child(2n) { animation-delay: -.45s; }
.map-node-halos circle:nth-child(3n), .map-nodes circle:nth-child(3n) { animation-delay: -.9s; }
.map-node-halos circle:nth-child(4n), .map-nodes circle:nth-child(4n) { animation-delay: -1.35s; }
.contact { display: grid; grid-template-columns: minmax(620px, 680px) minmax(420px, 560px); justify-content: center; gap: 42px; align-items: start; background: radial-gradient(circle at 12% 15%, rgba(232,130,30,.16), transparent 34%), var(--deep-2); color: #fff; text-align: center; }
.contact-copy { justify-self: center; text-align: center; }
.contact-copy p { color: #d9ecdf; }
.contact-copy p:not(.section-kicker) { white-space: nowrap; font-size: 16px; max-width: none; }
.phone { display: inline-block; margin: 10px 0 20px; color: #fff; font-size: clamp(34px, 5vw, 62px); font-weight: 900; }
.lead-form { width: min(100%, 640px); justify-self: center; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; padding: 28px; color: var(--text); text-align: left; }
.lead-form label { display: grid; gap: 8px; color: var(--deep); font-weight: 800; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px; padding: 14px 13px; font: inherit; outline: none;
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(45,162,71,.12); }
.wide { grid-column: 1 / -1; }
.form-success { display: none; margin: 0; color: var(--green); font-weight: 800; }
.form-success.show { display: block; }

.footer { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; padding: 34px clamp(20px, 6vw, 92px); background: #072111; color: #d9ecdf; text-align: center; }
.footer nav { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px; width: 100%; }
.footer-icp { width: 100%; display: grid; justify-items: center; gap: 6px; padding-top: 18px; border-top: 1px solid rgba(217,236,223,.16); color: rgba(217,236,223,.78); font-size: 14px; text-align: center; }
.footer-icp a { width: max-content; margin-inline: auto; }
.footer-icp span { color: rgba(217,236,223,.58); }
.float-tools { position: fixed; right: 18px; bottom: 22px; z-index: 40; display: grid; gap: 10px; }
.float-tools a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; box-shadow: var(--shadow); font-weight: 900; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@keyframes drift { to { transform: translate3d(0, -14px, 0); opacity: .75; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.35); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.035); } }
@keyframes ringHalo { 0%, 100% { opacity: .25; transform: scale(.98); } 50% { opacity: .65; transform: scale(1.08); } }
@keyframes networkFlow { to { stroke-dashoffset: -610; } }
@keyframes nodePulse { 0%, 100% { opacity: .52; transform: scale(1); } 45% { opacity: 1; transform: scale(1.35); } }
@keyframes painFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes painMarkPulse { 0%, 100% { opacity: .58; transform: scale(1); } 50% { opacity: .82; transform: scale(1.035); } }
@keyframes trustGlow { 0%, 100% { text-shadow: 0 0 0 rgba(200,238,172,0); } 50% { text-shadow: 0 0 24px rgba(200,238,172,.28); } }
@keyframes ecoNumberPulse { 0%, 100% { transform: scale(1); box-shadow: 0 16px 32px rgba(31, 122, 51, .22); } 50% { transform: scale(1.06); box-shadow: 0 20px 42px rgba(31, 122, 51, .34); } }
@keyframes tagFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes currentTagPulse { 0%, 100% { filter: brightness(1); } 50% { filter: brightness(1.08); } }
@keyframes driveSpin { to { transform: rotate(360deg); } }
@keyframes plusPulse { 0%, 100% { transform: scale(1); opacity: .58; } 50% { transform: scale(1.08); opacity: .92; } }
@keyframes mapHaloGlow { 0%, 100% { opacity: .28; transform: scale(.72); } 50% { opacity: .82; transform: scale(1.08); } }
@keyframes mapNodeGlow { 0%, 100% { opacity: .82; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.08); } }

@media (max-width: 980px) {
  .nav, .header-cta { display: none; }
  .menu-toggle { display: block; margin-left: auto; color: inherit; }
  .site-header.open .nav {
    display: grid; position: absolute; left: 20px; right: 20px; top: 86px;
    padding: 22px; background: #fff; color: var(--deep); border-radius: 16px; box-shadow: var(--shadow);
  }
  .stat-grid, .pillar-grid, .report-grid, .earning-grid, .broker, .contact { grid-template-columns: 1fr 1fr; }
  .opportunity, .broker, .contact { grid-template-columns: 1fr; }
  .opportunity { min-height: auto; }
  .market-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .report-strip article:nth-child(2) { border-right: 0; }
  .one-line-title { white-space: normal; }
  .solution-hero { grid-template-columns: 1fr; }
  .brand-intro-inner { text-align: center; }
  .brand-intro-copy { text-align: center; }
  .brand-intro-copy h2 { white-space: normal; }
  .drive-visual { max-width: 620px; width: 100%; margin: 0 auto; }
  .drive-wheel { width: min(220px, 28vw); }
  .drive-copy { text-align: center; }
  .eco-title { white-space: normal; }
  .eco-row { grid-template-columns: 70px 1fr; }
  .eco-tags { grid-column: 2; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eco-tags.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pillar p { white-space: normal; }
}

@media (max-width: 640px) {
  .site-header { height: 68px; padding-inline: 16px; }
  .brand { min-width: 0; }
  .brand { flex-basis: 178px; width: 178px; height: 26px; }
  .brand-img { width: 178px; height: 26px; }
  .hero { min-height: 92vh; padding: 104px 18px 72px; }
  .hero-network { opacity: .58; transform: translateX(-120px) scale(1.16); transform-origin: center; }
  .stat-grid, .pillar-grid, .report-grid, .earning-grid, .lead-form { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); line-height: 1; }
  .h1-line { white-space: normal; }
  .h1-line + .h1-line { margin-top: 8px; }
  .hero-subtitle { font-size: 20px; }
  .hero-note { font-size: 15px; }
  .opportunity-copy h2 { font-size: clamp(38px, 12vw, 52px); }
  .market-stat-grid { grid-template-columns: 1fr; }
  .pain { min-height: 92vh; padding-top: 96px; }
  .pain-keywords { gap: 10px; }
  .pain-keywords span { padding: 10px 14px; font-size: 18px; }
  .pain-mark { right: -8vw; top: 18vh; font-size: 190px; }
  .pain-title { margin: 92px 0 24px; font-size: clamp(78px, 24vw, 112px); }
  .pain-quotes { grid-template-columns: 1fr; }
  .pain-quotes p { padding: 16px 0 0; font-size: 18px; }
  .pain-quotes p + p { border-left: 0; }
  .report-strip { grid-template-columns: 1fr; }
  .report-strip article { min-height: 128px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .report-strip article:last-child { border-bottom: 0; }
  .one-line-title { font-size: clamp(36px, 11vw, 50px); }
  .solution-hero { padding: 28px 18px; min-height: 0; }
  .drive-visual { min-height: 210px; gap: 8px; }
  .drive-wheel { width: min(136px, 30vw); }
  .drive-wheel::after { inset: 18px; border-width: 7px; }
  .drive-wheel span { font-size: 20px; }
  .drive-copy h3 { font-size: 54px; }
  .drive-copy p:not(.section-kicker) { font-size: 18px; }
  .contact { grid-template-columns: 1fr; }
  .broker-copy h2, .contact-copy p:not(.section-kicker) { white-space: normal; }
  .eco-row { grid-template-columns: 1fr; padding: 20px; }
  .eco-number { width: 58px; height: 58px; }
  .eco-tags { grid-column: auto; grid-template-columns: 1fr; }
  .eco-tags.compact { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
