:root {
  --green: #43b02a;
  --green-deep: #0c7b4b;
  --blue: #005ca8;
  --blue-deep: #04345f;
  --cyan: #0b8ea5;
  --ink: #102333;
  --muted: #5d7080;
  --line: #dbe7ea;
  --soft: #f4f9f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(8, 56, 86, 0.12);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 14px max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 231, 234, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 168px;
  font-weight: 800;
  color: var(--blue-deep);
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  color: #2c4558;
  font-size: 13px;
}

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

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--blue);
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle,
.menu-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--blue-deep);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 16px;
  right: 16px;
  z-index: 19;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.mobile-nav a.is-active {
  color: var(--blue);
  font-weight: 900;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 10px 24px rgba(0, 92, 168, 0.24);
}

.button-secondary {
  color: var(--blue-deep);
  background: #eaf5f6;
  border-color: #c9e2e5;
}

.button-ghost {
  color: var(--blue-deep);
  background: var(--white);
  border-color: var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 56px;
  align-items: center;
  max-width: var(--max);
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.hero-image-bg {
  position: relative;
  display: block;
  max-width: none;
  min-height: min(calc(100vw * 0.6525), calc(100vh - 72px));
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #eaf7ff;
  background-image: url("assets/home-hero-background-hd.png");
  background-repeat: no-repeat;
  background-position: left 35%;
  background-size: cover;
}

.hero-image-content {
  min-height: min(calc(100vw * 0.6525), calc(100vh - 72px));
}

.hero-image-bg .hero-actions {
  position: absolute;
  left: max(44px, calc((100vw - var(--max)) / 2 + 78px));
  top: min(43vw, 71%);
  z-index: 2;
  margin-top: 0;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin: 24px 0 0;
  color: #345364;
  font-size: 20px;
  line-height: 1.8;
}

.hero-proof {
  margin: 18px 0 0;
  color: var(--green-deep);
  font-weight: 800;
}

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

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

.product-hero-card {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background:
    radial-gradient(circle at 78% 20%, rgba(67, 176, 42, 0.18), transparent 26%),
    linear-gradient(145deg, #eef8f3 0%, #e7f4fb 55%, #ffffff 100%);
  box-shadow: var(--shadow);
}

.product-hero-card::before,
.product-hero-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -120px;
  width: 640px;
  height: 300px;
  border: 38px solid rgba(0, 92, 168, 0.22);
  border-left: 0;
  border-bottom: 0;
  border-radius: 100% 0 0 0;
  transform: rotate(-9deg);
}

.product-hero-card::after {
  right: 20px;
  bottom: -70px;
  width: 520px;
  height: 230px;
  border-color: rgba(67, 176, 42, 0.28);
}

.product-hero-card img {
  position: absolute;
  left: 42px;
  bottom: 42px;
  z-index: 2;
  width: min(74%, 440px);
  max-height: 440px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(4, 52, 95, 0.24));
}

.sun-disc {
  position: absolute;
  top: 54px;
  right: 70px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.tree-line {
  position: absolute;
  width: 26px;
  height: 330px;
  bottom: 70px;
  border-radius: 999px;
  background: linear-gradient(#1b7f54, #7f5d36);
  opacity: 0.34;
}

.tree-one {
  left: 360px;
  transform: rotate(8deg);
}

.tree-two {
  left: 428px;
  bottom: 96px;
  height: 290px;
  transform: rotate(-7deg);
}

.data-panel {
  position: absolute;
  z-index: 3;
  right: 42px;
  top: 260px;
  width: 188px;
  padding: 18px;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(4, 52, 95, 0.16);
}

.data-panel span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.data-panel strong {
  display: block;
  margin-top: 4px;
  font-size: 26px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 24px 42px;
}

.metric {
  padding: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.metric strong {
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.metric span {
  margin-left: 6px;
  color: var(--green-deep);
  font-weight: 800;
}

.metric p {
  margin: 12px 0 0;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 88px 24px;
  scroll-margin-top: 82px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  border-top: 1px solid var(--line);
}

.about-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: 40px;
  left: -120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(0, 92, 168, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(67, 176, 42, 0.12), transparent 64%);
  pointer-events: none;
}

.about-section::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 54px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 92, 168, 0.16), transparent 68%);
  pointer-events: none;
}

.about-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: end;
  gap: 48px;
}

.about-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.about-headquarters {
  position: relative;
  z-index: 1;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #dce9ef;
  box-shadow: 0 30px 80px rgba(8, 56, 86, 0.16);
}

.about-headquarters img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center 52%;
}

.about-headquarters::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 38, 66, 0.7) 0%, rgba(2, 38, 66, 0.18) 42%, transparent 68%);
  pointer-events: none;
}

.about-headquarters figcaption {
  position: absolute;
  left: clamp(28px, 4vw, 62px);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 2;
  display: grid;
  max-width: 440px;
  color: #fff;
}

.about-headquarters figcaption span {
  margin-bottom: 14px;
  color: #b7f08f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-headquarters figcaption strong {
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1.08;
}

.about-headquarters figcaption small {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}

.about-information {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  gap: 64px;
  align-items: start;
  padding-top: 6px;
}

.about-section .section-copy {
  max-width: 720px;
  padding-left: 26px;
  border-left: 3px solid var(--green);
}

.about-capabilities {
  display: grid;
  gap: 20px;
}

.about-positioning {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-positioning span {
  padding: 8px 12px;
  color: var(--green-deep);
  border: 1px solid rgba(12, 123, 75, 0.18);
  border-radius: 999px;
  background: rgba(244, 249, 248, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(219, 231, 234, 0.94);
  border-radius: var(--radius);
  background: rgba(219, 231, 234, 0.94);
}

.about-stats div {
  padding: 20px 18px;
  background: linear-gradient(145deg, #fff, #f5faf9);
}

.about-stats strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.about-stats span {
  display: block;
  margin-top: 8px;
  color: #345364;
  font-size: 13px;
  font-weight: 900;
}

.about-capability-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-top: 14px;
}

.about-capability-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 224, 0.9);
  border-radius: 9px;
  background: #092f4b;
  box-shadow: 0 18px 48px rgba(8, 56, 86, 0.12);
}

.about-capability-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 450ms ease;
}

.about-capability-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 66%;
  height: 44%;
  background: linear-gradient(135deg, rgba(248, 252, 251, 0.98), rgba(236, 246, 244, 0.94));
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.about-capability-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(180deg, transparent, rgba(2, 30, 49, 0.92));
  pointer-events: none;
}

.about-capability-card figcaption {
  position: absolute;
  top: 18px;
  right: 38%;
  bottom: auto;
  left: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  color: #04345f;
}

.about-capability-card figcaption span {
  grid-row: 1 / 3;
  color: #0c7b4b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.about-capability-card figcaption strong {
  font-size: 20px;
  line-height: 1.25;
}

.about-capability-card figcaption small {
  color: #587080;
  font-size: 12px;
  line-height: 1.55;
}

.about-capability-card--native-copy::before,
.about-capability-card--native-copy::after,
.about-capability-card--native-copy figcaption {
  display: none;
}

@media (hover: hover) {
  .about-capability-card:hover img {
    transform: scale(1.025);
  }
}


.roadmap-section {
  position: relative;
  max-width: none;
  background:
    radial-gradient(circle at 88% 20%, rgba(0, 92, 168, 0.1), transparent 28%),
    radial-gradient(circle at 12% 88%, rgba(67, 176, 42, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfa 100%);
  border-top: 1px solid rgba(219, 231, 234, 0.74);
  border-bottom: 1px solid rgba(219, 231, 234, 0.74);
}

.roadmap-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  position: relative;
  background: transparent;
}

.roadmap-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 7%;
  bottom: 7%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(0, 92, 168, 0.2), transparent);
}

.roadmap-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 286px;
  overflow: hidden;
  border: 1px solid rgba(205, 225, 224, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(8, 56, 86, 0.08);
}

.roadmap-item:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}

.roadmap-item:nth-child(even) .roadmap-media {
  order: 2;
}

.roadmap-item:nth-child(2),
.roadmap-item:nth-child(3) {
  transform: translateY(14px);
}

.roadmap-media {
  position: relative;
  height: 100%;
  min-height: 286px;
  overflow: hidden;
  background: #dfece6;
}

.roadmap-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(3, 50, 41, 0.52));
}

.roadmap-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.roadmap-item:hover .roadmap-media img {
  transform: scale(1.045);
}

.roadmap-proof {
  position: absolute;
  z-index: 1;
  left: 20px;
  right: 20px;
  bottom: 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.roadmap-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
}

.roadmap-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.roadmap-top span {
  display: block;
  color: rgba(0, 92, 168, 0.32);
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.roadmap-top i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 0 8px rgba(0, 92, 168, 0.08), 0 14px 30px rgba(0, 92, 168, 0.22);
}

.roadmap-top i::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  border-radius: 5px;
}

.roadmap-item h3 {
  margin: 18px 0 8px;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.35;
}

.roadmap-item strong {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--green-deep);
  font-size: 13px;
  line-height: 1.5;
}

.roadmap-item p {
  margin: 0;
  color: var(--muted);
}

.section-intro {
  max-width: 780px;
  margin: 18px 0 0;
  color: #496678;
  font-size: 18px;
}

.roadmap-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.roadmap-support-card {
  padding: 22px;
  border: 1px solid rgba(219, 231, 234, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 44px rgba(8, 56, 86, 0.06);
}

.roadmap-support-card h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
}

.roadmap-support-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section-label {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 900;
}

.section h2,
.section-heading h2 {
  max-width: 780px;
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
}

.section-copy {
  color: #345364;
  font-size: 19px;
}

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

.inline-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  color: var(--blue);
  font-weight: 800;
}

.product-tech-section {
  max-width: none;
  position: relative;
  padding: 110px 24px;
  background:
    radial-gradient(circle at 12% 24%, rgba(72, 184, 46, 0.12), transparent 26%),
    radial-gradient(circle at 88% 12%, rgba(0, 92, 168, 0.12), transparent 24%),
    linear-gradient(180deg, #f4faf8 0%, #ffffff 100%);
}

.product-command {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(190, 216, 216, 0.9);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 34px 90px rgba(7, 54, 83, 0.12);
  backdrop-filter: blur(16px);
}

.product-command-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
  padding: 12px 10px 34px;
}

.product-command-head h2 { margin: 12px 0 0; max-width: 850px; color: var(--blue-deep); font-size: clamp(38px, 4.5vw, 68px); line-height: 1.08; letter-spacing: -0.04em; }
.product-command-head > p { margin: 0 0 4px; color: var(--muted); font-size: 18px; line-height: 1.85; }

.product-command-body { display: grid; grid-template-columns: minmax(440px, 0.92fr) minmax(0, 1.08fr); gap: 26px; }

.product-flagship-visual { position: relative; min-height: 720px; margin: 0; overflow: hidden; border-radius: 22px; background: #e9f4ed; }
.product-flagship-visual > img { width: 100%; height: 100%; min-height: 720px; object-fit: cover; object-position: center 38%; filter: saturate(0.94) contrast(1.02); }
.product-flagship-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,34,42,0.02) 45%, rgba(3,34,42,0.82) 100%); pointer-events: none; }
.product-flagship-visual figcaption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 104px; color: #fff; }
.product-flagship-visual figcaption span { display: block; margin-bottom: 10px; color: #b9f594; font-size: 14px; font-weight: 800; letter-spacing: .16em; }
.product-flagship-visual figcaption strong { display: block; font-size: 34px; line-height: 1.2; }
.product-flagship-visual figcaption small { display: block; margin-top: 10px; color: rgba(255,255,255,.78); font-size: 15px; }
.product-visual-specs { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 12px; background: rgba(4,41,48,.76); backdrop-filter: blur(12px); }
.product-visual-specs span { padding: 13px 10px; color: rgba(255,255,255,.72); text-align: center; font-size: 11px; }
.product-visual-specs b { display: block; margin-bottom: 3px; color: #fff; font-size: 20px; }

.product-technology-stack { display: flex; flex-direction: column; padding: 34px; border-radius: 22px; background: linear-gradient(145deg,#073f46 0%,#063456 100%); color: #fff; }
.technology-stack-head { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.14); }
.technology-stack-head span { color: #9dea76; font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.technology-stack-head strong { display: block; max-width: 620px; margin-top: 12px; font-size: clamp(25px,2.5vw,36px); line-height: 1.3; }
.technology-card-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); flex: 1; gap: 1px; margin-top: 28px; background: rgba(255,255,255,.12); }
.technology-card { min-height: 230px; padding: 27px 26px; background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.02)); transition: transform .25s ease, background .25s ease; }
.technology-card:hover { transform: translateY(-3px); background: rgba(255,255,255,.09); }
.technology-card-top { display: flex; align-items: center; gap: 12px; color: #9dea76; font-size: 12px; font-weight: 800; }
.technology-card-top i { width: 30px; height: 1px; background: rgba(157,234,118,.6); }
.technology-card h3 { margin: 42px 0 0; color: #fff; font-size: 21px; }
.technology-card p { margin: 12px 0 0; color: rgba(255,255,255,.64); font-size: 14px; line-height: 1.75; }

.product-system-rail { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: center; margin-top: 24px; padding: 22px 26px; border-radius: 16px; background: #f1f7f4; }
.product-system-rail span { display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--blue-deep); }
.product-system-rail small { color: var(--green); font-weight: 900; }
.product-system-rail b { font-size: 15px; }
.product-system-rail i { color: rgba(0,92,168,.32); font-style: normal; font-size: 22px; }

@media (max-width: 980px) {
  .product-command-head, .product-command-body { grid-template-columns: 1fr; }
  .product-command-head { gap: 18px; }
  .product-flagship-visual, .product-flagship-visual > img { min-height: 660px; }
}

@media (max-width: 680px) {
  .product-tech-section { padding: 72px 14px; }
  .product-command { padding: 14px; border-radius: 22px; }
  .product-command-head { padding: 12px 6px 26px; }
  .product-command-head h2 { font-size: 38px; }
  .product-command-head > p { font-size: 15px; }
  .product-flagship-visual, .product-flagship-visual > img { min-height: 560px; }
  .product-flagship-visual figcaption { left: 22px; right: 22px; bottom: 108px; }
  .product-flagship-visual figcaption strong { font-size: 27px; }
  .product-technology-stack { padding: 24px 18px; }
  .technology-card-grid { grid-template-columns: 1fr; }
  .technology-card { min-height: auto; }
  .technology-card h3 { margin-top: 26px; }
  .product-system-rail { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .product-system-rail span { justify-content: flex-start; }
  .product-system-rail i { display: none; }
}

.highlight-card h3,
.news-card h3,
.download-item h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 22px;
  line-height: 1.35;
}

.highlight-card p,
.news-card p,
.download-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.market-section {
  position: relative;
  max-width: none;
  background:
    radial-gradient(circle at 14% 28%, rgba(67, 176, 42, 0.1), transparent 24%),
    radial-gradient(circle at 88% 38%, rgba(0, 92, 168, 0.12), transparent 24%),
    linear-gradient(180deg, #f6fbfa 0%, #ffffff 100%);
}

.market-section > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.market-command {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 20px;
  padding: 14px;
  border: 1px solid rgba(205, 225, 224, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 28px 74px rgba(8, 56, 86, 0.1);
  backdrop-filter: blur(14px);
}

.market-landscape {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 16px;
  background: #dcece3;
}

.market-landscape::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 43, 51, 0.58) 0%, transparent 34%),
    linear-gradient(0deg, rgba(2, 50, 39, 0.72) 0%, transparent 44%);
}

.market-landscape > img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.market-landscape-top {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  display: grid;
  gap: 5px;
  color: #ffffff;
}

.market-landscape-top span {
  color: #b8f194;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-landscape-top strong {
  font-size: 28px;
  line-height: 1.2;
}

.region-tags {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.region-tags > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 9px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
  background: rgba(4, 52, 60, 0.56);
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(9px);
}

.region-tags b {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #0d533e;
  background: #c5f0a5;
  font-size: 11px;
}

.region-tags > span > span {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.region-tags em {
  overflow: hidden;
  color: #ffffff;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.region-tags small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demand-spotlight {
  position: absolute;
  z-index: 3;
  right: 24px;
  top: 50%;
  display: grid;
  width: 220px;
  padding: 22px;
  transform: translateY(-42%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(4, 52, 95, 0.9), rgba(8, 122, 79, 0.88));
  box-shadow: 0 22px 48px rgba(1, 38, 39, 0.26);
  backdrop-filter: blur(12px);
}

.demand-spotlight span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 800;
}

.demand-spotlight strong {
  margin: 6px 0;
  font-size: 38px;
  line-height: 1.1;
}

.demand-spotlight small {
  color: rgba(255, 255, 255, 0.72);
}

.market-funnel-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 28px 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(67, 176, 42, 0.13), transparent 28%),
    linear-gradient(160deg, #ffffff, #f1f8f5);
}

.market-funnel-head h3 {
  max-width: 420px;
  margin: 0;
  color: var(--blue-deep);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(26px, 2.5vw, 36px);
  line-height: 1.25;
}

.market-funnel {
  display: grid;
  justify-items: center;
  gap: 6px;
  margin-top: 24px;
}

.market-funnel > i {
  color: rgba(11, 73, 61, 0.45);
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.market-funnel-stage {
  display: grid;
  width: 100%;
  min-height: 106px;
  align-content: center;
  padding: 16px 22px;
  border: 1px solid rgba(192, 211, 202, 0.88);
}

.market-funnel-stage small {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.market-funnel-stage strong {
  margin-top: 3px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.05;
}

.market-funnel-stage span {
  margin-top: 5px;
  font-size: 13px;
  font-weight: 700;
}

.market-funnel-resource {
  color: var(--blue-deep);
  background: rgba(248, 251, 247, 0.96);
}

.market-funnel-resource small { color: var(--green-deep); }

.market-funnel-demand {
  width: 86%;
  color: #ffffff;
  border-color: rgba(44, 140, 99, 0.32);
  background: linear-gradient(135deg, #159164, #087a55);
  box-shadow: 0 14px 30px rgba(12, 123, 75, 0.15);
}

.market-funnel-demand small,
.market-funnel-demand span { color: rgba(255, 255, 255, 0.78); }

.market-funnel-value {
  width: 72%;
  color: #ffffff;
  border-color: rgba(4, 52, 95, 0.28);
  background: linear-gradient(135deg, #075f6a, var(--blue-deep));
  box-shadow: 0 16px 34px rgba(4, 52, 95, 0.18);
}

.market-funnel-value small,
.market-funnel-value span { color: rgba(255, 255, 255, 0.76); }

.market-funnel-foot {
  margin: 20px 0 0;
  color: #698078;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.market-insight-panel {
  display: flex;
  flex-direction: column;
  padding: 30px 26px 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 92% 8%, rgba(67, 176, 42, 0.13), transparent 26%),
    linear-gradient(160deg, #ffffff, #f3f9f8);
}

.market-insight-head h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.28;
}

.market-data-featured {
  margin: 24px 0;
}

.market-data-featured div {
  padding: 18px;
  border-color: rgba(201, 221, 224, 0.9);
  background: #ffffff;
}

.market-data-featured strong {
  font-size: 30px;
}

.market-signal-list {
  display: grid;
  gap: 4px;
  margin-top: auto;
}

.market-signal-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
  padding: 15px 0;
  border-top: 1px solid rgba(205, 225, 224, 0.92);
}

.market-signal-list article > b {
  color: rgba(0, 92, 168, 0.34);
  font-size: 15px;
}

.market-signal-list article div {
  display: grid;
  gap: 4px;
}

.market-signal-list strong {
  color: var(--blue-deep);
  font-size: 16px;
}

.market-signal-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.market-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.market-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(4, 52, 95, 0.04), transparent 42%),
    radial-gradient(circle at 68% 38%, rgba(0, 92, 168, 0.2), transparent 18%),
    radial-gradient(circle at 48% 44%, rgba(67, 176, 42, 0.2), transparent 20%),
    linear-gradient(135deg, #ffffff, #ecf7f6);
  box-shadow: var(--shadow);
}

.market-map::before {
  content: "";
  position: absolute;
  inset: 54px 80px;
  border: 2px solid rgba(0, 92, 168, 0.15);
  border-radius: 48% 52% 46% 54%;
  transform: rotate(-12deg);
}

.market-map::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 92, 168, 0.3), transparent);
  transform: rotate(-14deg);
}

.market-map-title {
  position: absolute;
  left: 26px;
  top: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
}

.market-map-title strong {
  color: var(--blue-deep);
  font-size: 20px;
}

.market-map-title span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.map-dot {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--blue));
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(67, 176, 42, 0.1), 0 16px 30px rgba(0, 92, 168, 0.18);
}

.thailand {
  left: 58%;
  top: 42%;
}

.vietnam {
  left: 66%;
  top: 47%;
}

.indonesia {
  left: 62%;
  top: 66%;
}

.china {
  left: 61%;
  top: 24%;
}

.market-scan {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  min-width: 210px;
  padding: 18px;
  color: var(--white);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-deep), var(--green-deep));
  box-shadow: 0 18px 38px rgba(4, 52, 95, 0.18);
}

.market-scan span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 800;
}

.market-scan strong {
  display: block;
  margin-top: 6px;
  font-size: 28px;
}

.pain-list {
  display: grid;
  gap: 20px;
  color: #345364;
  font-size: 19px;
}

.market-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.market-data div {
  padding: 20px;
  border: 1px solid rgba(219, 231, 234, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 44px rgba(8, 56, 86, 0.07);
}

.market-data strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.market-data span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.market-media-strip {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.9fr;
  gap: 16px;
  margin-top: 24px;
}

.market-media-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  color: #ffffff;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 18px 48px rgba(8, 56, 86, 0.12);
}

.market-media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 52, 95, 0.12), rgba(4, 52, 95, 0.72));
}

.market-media-card span,
.market-media-card strong {
  position: relative;
  z-index: 1;
  display: block;
}

.market-media-card span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.market-media-card strong {
  max-width: 300px;
  margin-top: 76px;
  font-size: 22px;
  line-height: 1.35;
}

.media-plantation {
  background-image: url("assets/ppt-field-devices.jpeg");
  background-position: center 54%;
}

.media-device {
  background-image: url("assets/ppt-plantation-device.png");
  background-position: center 48%;
}

.media-cloud {
  background-image: url("assets/ppt-field-banner.jpeg");
  background-position: center 52%;
}

.market-opportunities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.market-opportunities article {
  padding: 22px;
  border: 1px solid rgba(219, 231, 234, 0.92);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 16px 44px rgba(8, 56, 86, 0.06);
}

.market-opportunities h3 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 18px;
}

.market-opportunities p {
  margin: 10px 0 0;
  color: var(--muted);
}

.policy-fullscreen {
  width: 100vw;
  max-width: none;
  min-height: 85vh;
  margin-top: clamp(52px, 7vw, 96px);
  margin-left: calc(50% - 50vw);
  padding: clamp(58px, 7vw, 110px) 0 0;
  overflow: hidden;
  color: var(--blue-deep);
  background:
    linear-gradient(90deg, #b3202c 0 7px, transparent 7px),
    radial-gradient(circle at 80% 15%, rgba(89, 151, 118, .1), transparent 34%),
    #f7f8f5;
}

.policy-fullscreen-inner {
  display: grid;
  grid-template-columns: minmax(380px,.86fr) minmax(620px,1.14fr);
  gap: clamp(44px, 6vw, 104px);
  width: 100%;
  min-height: 74vh;
  margin: 0 auto;
  padding: 0 clamp(32px,5vw,88px);
}
.policy-fullscreen .section-label { color: var(--green); }
.policy-fullscreen h3 { margin:0; max-width:680px; font-family:"Songti SC","STSong",serif; font-size:clamp(42px,5vw,74px); line-height:1.1; letter-spacing:-.04em; }
.policy-fullscreen-copy > p:not(.section-label) { max-width:650px; margin:24px 0 0; color:var(--muted); font-size:18px; line-height:1.8; }
.policy-fullscreen-copy { align-self:center; padding-bottom:38px; }
.policy-hero-quote { position:relative; max-width:650px; margin:36px 0 0; padding:22px 0 0 30px; border:0; color:#0b493b; font-family:"Songti SC","STSong",serif; font-size:clamp(22px,2.2vw,34px); font-weight:800; line-height:1.45; }
.policy-hero-quote::before { content:"“"; position:absolute; left:0; top:6px; color:#b3202c; font-size:48px; line-height:1; }
.policy-inline-insights { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; max-width:650px; margin-top:26px; }
.policy-inline-insight { min-width:0; padding:15px 0 4px; border-top:1px solid #aebeb6; }
.policy-inline-insight + .policy-inline-insight { padding-left:18px; border-left:1px solid #d7dfdb; }
.policy-inline-insight small { color:#159164; font-size:10px; font-weight:900; letter-spacing:.14em; }
.policy-inline-insight h4 { margin:7px 0 4px; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:18px; line-height:1.35; }
.policy-inline-insight p { margin:0; color:#697a75; font-size:12px; line-height:1.55; }
.policy-source-link { display:inline-flex; margin-top:24px; padding-bottom:4px; border-bottom:1px solid #9c1d29; color:#9c1d29; font-size:13px; font-weight:900; }
.policy-archive-scene { position:relative; display:grid; grid-template-columns:minmax(390px,1.4fr) minmax(250px,.6fr); align-self:center; min-height:540px; overflow:hidden; border-top:2px solid #b3202c; border-bottom:1px solid #c8d0cb; background:#fffdfa; box-shadow:0 24px 60px rgba(45,48,38,.12); }
.policy-official-document { position:relative; z-index:2; min-width:0; margin:0; overflow:hidden; border-right:1px solid #ddd7cc; background:#f4efe6; }
.policy-official-document img { position:absolute; left:0; top:0; width:205%; max-width:none; height:auto; transform:translate(-1.8%,-1.2%); }
.policy-official-document::after { content:""; position:absolute; inset:0; box-shadow:inset -18px 0 30px rgba(84,72,52,.05); pointer-events:none; }
.policy-official-meta { position:relative; z-index:3; display:flex; flex-direction:column; justify-content:center; padding:clamp(32px,4vw,58px) clamp(26px,3vw,46px); background:rgba(255,255,252,.96); }
.policy-official-meta small { color:#a91f29; font-weight:900; letter-spacing:.18em; }
.policy-official-issuer { margin:22px 0 0; color:#a91f29; font-family:"Songti SC","STSong",serif; font-size:clamp(18px,1.8vw,25px); font-weight:800; letter-spacing:.16em; }
.policy-official-rule { display:flex; align-items:center; gap:12px; margin:22px 0; color:#b3202c; font-size:14px; }
.policy-official-rule::before,.policy-official-rule::after { content:""; flex:1; height:1px; background:#b3202c; }
.policy-official-meta h4 { margin:0; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:clamp(24px,2.4vw,36px); line-height:1.25; }
.policy-official-meta > p:not(.policy-official-issuer) { margin:20px 0 0; color:#485d67; font-family:"Songti SC","STSong",serif; font-size:17px; line-height:1.75; }
.policy-official-meta dl { display:grid; gap:0; margin:32px 0 0; border-top:1px solid #cdd4d0; }
.policy-official-meta dl div { display:grid; grid-template-columns:76px 1fr; gap:16px; padding:13px 0; border-bottom:1px solid #e0e4e1; }
.policy-official-meta dt { color:#7b8883; font-size:11px; letter-spacing:.08em; }
.policy-official-meta dd { margin:0; color:#24485b; font-size:12px; font-weight:800; }
.policy-archive-landscape { position:absolute; left:0; right:0; bottom:0; z-index:1; height:72px; opacity:.1; background:url("assets/policy-document-2026-source.png") center bottom / 100% auto no-repeat; filter:saturate(.4); pointer-events:none; }

.investment-section { position:relative; max-width:none; padding:110px max(24px,calc((100vw - var(--max))/2 + 24px)); background:linear-gradient(180deg,#fff 0%,#f4faf8 54%,#fff 100%); }
.investment-heading { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(320px,.65fr); gap:70px; align-items:end; margin-bottom:42px; }
.investment-heading h2 { margin:12px 0 0; max-width:860px; color:var(--blue-deep); font-size:clamp(40px,4.6vw,68px); line-height:1.08; letter-spacing:-.04em; }
.investment-heading > p { margin:0 0 4px; color:var(--muted); font-size:18px; line-height:1.85; }

.investment-signal-stage { position:relative; display:grid; grid-template-columns:minmax(320px,.72fr) minmax(0,1.28fr); gap:36px; margin-bottom:24px; padding:46px; overflow:hidden; border-radius:28px; color:#fff; background:linear-gradient(125deg,#063a48 0%,#063b5d 58%,#075d61 100%); box-shadow:0 32px 80px rgba(5,49,79,.2); }
.investment-signal-stage::before { content:""; position:absolute; width:520px; height:520px; right:-170px; top:-290px; border:1px solid rgba(157,234,118,.18); border-radius:50%; box-shadow:0 0 0 70px rgba(157,234,118,.025),0 0 0 140px rgba(157,234,118,.018); }
.investment-signal-copy { position:relative; z-index:1; }
.investment-signal-copy > span { color:#9dea76; font-size:12px; font-weight:900; letter-spacing:.18em; }
.investment-signal-copy h3 { max-width:560px; margin:18px 0 0; font-size:clamp(29px,3vw,43px); line-height:1.28; }
.investment-signal-copy > p { max-width:580px; margin:18px 0 0; color:rgba(255,255,255,.66); line-height:1.8; }
.investment-case-tags { display:flex; flex-wrap:wrap; gap:8px; margin-top:32px; }
.investment-case-tags span { padding:8px 12px; border:1px solid rgba(255,255,255,.16); border-radius:999px; color:rgba(255,255,255,.75); font-size:11px; font-weight:700; }
.investment-signal-grid { position:relative; z-index:1; display:grid; grid-template-columns:repeat(3,1fr); align-items:stretch; border:1px solid rgba(255,255,255,.16); border-radius:18px; background:rgba(255,255,255,.045); backdrop-filter:blur(12px); }
.investment-signal-grid article { position:relative; display:flex; flex-direction:column; justify-content:center; min-width:0; padding:28px 24px; border-right:1px solid rgba(255,255,255,.13); }
.investment-signal-grid article:last-child { border-right:0; }
.investment-signal-grid article.is-accent { background:linear-gradient(180deg,rgba(157,234,118,.16),rgba(157,234,118,.04)); }
.investment-signal-grid small { color:#9dea76; font-size:9px; font-weight:900; letter-spacing:.1em; }
.investment-signal-grid strong { margin-top:24px; font-family:"Songti SC","STSong",serif; font-size:clamp(35px,3.5vw,52px); line-height:1; white-space:nowrap; }
.investment-signal-grid span { margin-top:12px; color:rgba(255,255,255,.64); font-size:12px; line-height:1.55; }

.investment-model-board { display:grid; grid-template-columns:minmax(300px,.38fr) minmax(0,1fr); overflow:hidden; border:1px solid rgba(190,216,216,.92); border-radius:26px; background:#fff; box-shadow:0 28px 74px rgba(7,54,83,.1); }
.investment-model-thesis { padding:42px 36px; color:#fff; background:linear-gradient(155deg,#073f46 0%,#073557 100%); }
.investment-model-thesis > span,.investment-model-title > span,.investment-break-even-copy > span,.investment-highlight-head > span { color:#9dea76; font-size:12px; font-weight:900; letter-spacing:.16em; }
.investment-model-thesis h3 { margin:48px 0 0; font-size:32px; }
.investment-model-thesis p { margin:18px 0 0; color:rgba(255,255,255,.7); line-height:1.85; }
.investment-core-assets { display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin-top:44px; }
.investment-core-assets span { padding:12px 10px; border:1px solid rgba(255,255,255,.16); border-radius:8px; background:rgba(255,255,255,.05); color:rgba(255,255,255,.82); text-align:center; font-size:12px; font-weight:700; }
.investment-model-content { padding:38px 32px 30px; }
.investment-model-title > span { color:var(--green); }
.investment-model-title > strong { display:block; margin-top:10px; color:var(--blue-deep); font-size:25px; }
.investment-model-flow { display:grid; grid-template-columns:repeat(9,auto); align-items:stretch; gap:10px; margin-top:32px; }
.investment-model-flow article { min-width:0; padding:20px 15px; border:1px solid rgba(201,221,216,.94); border-radius:14px; background:linear-gradient(180deg,#fbfdfb,#f2f8f5); }
.investment-model-flow small { color:var(--green); font-weight:900; }
.investment-model-flow b { display:block; margin-top:28px; color:var(--blue-deep); font-size:16px; }
.investment-model-flow p { margin:8px 0 0; color:var(--muted); font-size:11px; line-height:1.6; }
.investment-model-flow i { align-self:center; color:#d0a526; font-style:normal; font-size:18px; }
.investment-guardrails { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-top:24px; }
.investment-guardrails span { padding:12px; border-bottom:2px solid rgba(18,143,88,.55); color:#47625c; text-align:center; font-size:12px; font-weight:800; }
.investment-value-engine { display:grid; grid-template-columns:auto 1fr auto 1fr auto 1fr; gap:14px; align-items:center; margin-top:26px; padding:18px 20px; border-radius:14px; background:#edf6f2; }
.investment-value-engine > span { color:var(--green); font-size:10px; font-weight:900; letter-spacing:.12em; writing-mode:vertical-rl; }
.investment-value-engine div { min-width:0; }
.investment-value-engine b { display:block; color:var(--blue-deep); font-size:14px; }
.investment-value-engine small { display:block; margin-top:4px; color:#70827c; font-size:10px; line-height:1.45; }
.investment-value-engine i { color:#d0a526; font-style:normal; font-weight:900; }

.investment-break-even { display:grid; grid-template-columns:minmax(300px,.42fr) minmax(0,1fr); gap:32px; margin-top:24px; padding:34px; border-radius:22px; color:#fff; background:linear-gradient(135deg,#0a4c50,#05345a); box-shadow:0 22px 56px rgba(7,54,83,.14); }
.investment-break-even-copy > strong { display:block; margin-top:16px; font-family:"Songti SC","STSong",serif; font-size:clamp(38px,4vw,58px); line-height:1.08; }
.investment-break-even-copy p { margin:16px 0 0; color:rgba(255,255,255,.64); font-size:12px; line-height:1.75; }
.investment-timeline { display:grid; grid-template-columns:repeat(4,1fr); margin:0; padding:0; list-style:none; border:1px solid rgba(255,255,255,.14); border-radius:16px; }
.investment-timeline li { position:relative; display:flex; flex-direction:column; justify-content:center; padding:22px 20px; border-right:1px solid rgba(255,255,255,.14); }
.investment-timeline li:last-child { border-right:0; }
.investment-timeline small { color:#9dea76; font-weight:900; }
.investment-timeline b { margin-top:22px; font-size:17px; }
.investment-timeline span { margin-top:7px; color:rgba(255,255,255,.58); font-size:11px; line-height:1.5; }
.investment-timeline .is-target { background:linear-gradient(180deg,rgba(157,234,118,.17),rgba(157,234,118,.06)); }
.investment-timeline .is-target::before { content:"TARGET"; position:absolute; right:12px; top:12px; color:#9dea76; font-size:8px; font-weight:900; letter-spacing:.12em; }
.investment-highlight-head { display:flex; justify-content:space-between; align-items:end; gap:24px; margin:54px 0 20px; }
.investment-highlight-head > span { color:var(--green); }
.investment-highlight-head > strong { color:var(--blue-deep); font-size:24px; }

/* Investment dashboard: business model first, break-even second. */
.investment-section { width:100%; max-width:none; padding-right:0; padding-left:0; background:#f4f7f4; }
.investment-dashboard { width:100%; max-width:none; overflow:hidden; background:#f7f8f5; border-top:1px solid #d5ddd8; border-bottom:1px solid #d5ddd8; }
.investment-dashboard-head { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr); align-items:end; gap:80px; padding:58px max(6vw,48px) 48px; background:#fff; }
.investment-dashboard-head .section-label { margin:0 0 18px; }
.investment-dashboard-head h2 { max-width:850px; margin:0; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:clamp(48px,5.6vw,82px); font-weight:700; line-height:1.08; letter-spacing:-.045em; }
.investment-dashboard-head > p { max-width:650px; margin:0 0 7px; padding-left:34px; border-left:2px solid #159164; color:#5c7079; font-size:16px; line-height:1.9; }
.investment-dashboard-main { display:grid; grid-template-columns:minmax(0,1.35fr) minmax(420px,.65fr); min-height:620px; border-top:1px solid #d5ddd8; }
.investment-business-loop { display:grid; grid-template-columns:minmax(260px,.48fr) minmax(0,1fr); grid-template-rows:1fr auto; gap:0 42px; padding:70px max(4.8vw,46px) 42px max(6vw,48px); background:#fbfcf9; }
.investment-loop-intro { align-self:center; }
.investment-loop-intro > span { color:#159164; font-size:11px; font-weight:900; letter-spacing:.18em; }
.investment-loop-intro > strong { display:block; max-width:360px; margin-top:22px; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:clamp(30px,3vw,48px); line-height:1.22; }
.investment-loop-intro > p { max-width:420px; margin:26px 0 0; color:#687b82; font-size:14px; line-height:1.9; }
.investment-loop-path { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; align-items:stretch; gap:14px; }
.investment-loop-path article { position:relative; display:flex; flex-direction:column; min-width:0; min-height:350px; padding:30px 22px 26px; border-top:3px solid #159164; background:#fff; box-shadow:0 20px 50px rgba(7,48,63,.07); }
.investment-loop-path article:nth-of-type(2) { border-top-color:#c99c45; transform:translateY(-18px); }
.investment-loop-path article:nth-of-type(3) { border-top-color:#0b5572; }
.investment-loop-path small { color:#159164; font-size:10px; font-weight:900; letter-spacing:.12em; }
.investment-loop-path b { margin-top:auto; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:23px; }
.investment-loop-path p { min-height:52px; margin:12px 0 0; color:#71817d; font-size:11px; line-height:1.7; }
.investment-loop-path em { margin-top:24px; padding-top:16px; border-top:1px solid #dce3df; color:#93a09b; font-size:9px; font-style:normal; font-weight:900; letter-spacing:.12em; }
.investment-loop-path i { align-self:center; color:#a6b5ae; font-family:Georgia,serif; font-size:25px; font-style:normal; }
.investment-loop-return { grid-column:1 / -1; display:flex; align-items:center; gap:12px; margin-top:30px; padding-top:25px; border-top:1px solid #d5ddd8; color:#60736e; font-size:11px; }
.investment-loop-return span { color:#159164; font-size:20px; }
.investment-break-even-panel { display:flex; flex-direction:column; justify-content:space-between; padding:70px max(4.2vw,46px) 42px; color:#fff; background:linear-gradient(145deg,#073f46 0%,#063557 74%,#072c49 100%); }
.investment-break-even-copy > span { color:#9dea76; font-size:11px; font-weight:900; letter-spacing:.16em; }
.investment-break-even-copy > strong { display:block; margin-top:32px; font-family:Georgia,"Songti SC",serif; font-size:clamp(96px,9.5vw,160px); font-weight:400; line-height:.78; letter-spacing:-.08em; }
.investment-break-even-copy > strong em { margin-left:10px; font-family:"Songti SC","STSong",serif; font-size:18px; font-style:normal; letter-spacing:0; }
.investment-break-even-copy > b { display:block; margin-top:28px; font-family:"Songti SC","STSong",serif; font-size:34px; }
.investment-dashboard-chart { margin:48px 0 0; }
.investment-dashboard-chart figcaption { display:flex; gap:24px; color:rgba(255,255,255,.7); font-size:10px; }
.investment-dashboard-chart figcaption span { position:relative; padding-left:18px; }
.investment-dashboard-chart figcaption span::before { content:""; position:absolute; left:0; top:50%; width:11px; height:2px; background:#9dea76; }
.investment-dashboard-chart figcaption .is-cost::before { background:#91a4aa; }
.investment-dashboard-chart svg { display:block; width:100%; height:auto; margin-top:16px; }
.investment-chart-grid path { fill:none; stroke:rgba(255,255,255,.1); stroke-width:1; }
.investment-chart-cost { fill:none; stroke:#91a4aa; stroke-width:3; }
.investment-chart-area { fill:url(#investmentRevenueFill); }
.investment-chart-revenue { fill:none; stroke:#9dea76; stroke-width:4; }
.investment-chart-target { stroke:#e5bd66; stroke-width:2; stroke-dasharray:6 6; }
.investment-chart-point { fill:#073f46; stroke:#e5bd66; stroke-width:4; }
.investment-chart-labels text { fill:rgba(255,255,255,.48); font:10px Arial,sans-serif; }
.investment-dashboard-chart > p { margin:8px 0 0; color:rgba(255,255,255,.43); font-size:10px; text-align:right; }
.investment-phase-rail { display:grid; grid-template-columns:repeat(3,1fr); margin:0; padding:0 max(6vw,48px); list-style:none; background:#fff; }
.investment-phase-rail li { position:relative; min-height:180px; padding:36px 38px 30px 0; border-right:1px solid #d5ddd8; }
.investment-phase-rail li + li { padding-left:38px; }
.investment-phase-rail li:last-child { border-right:0; }
.investment-phase-rail small { color:#159164; font-size:10px; font-weight:900; letter-spacing:.12em; }
.investment-phase-rail b { display:block; margin-top:22px; color:var(--blue-deep); font-family:"Songti SC","STSong",serif; font-size:24px; }
.investment-phase-rail span { display:block; margin-top:9px; color:#73827d; font-size:12px; }
.investment-phase-rail .is-target { background:linear-gradient(90deg,rgba(21,145,100,.08),rgba(21,145,100,0)); }
.investment-phase-rail .is-target::after { content:"TARGET"; position:absolute; top:36px; right:38px; color:#b18a3e; font-size:8px; font-weight:900; letter-spacing:.14em; }

@media (max-width:1100px) {
  .investment-dashboard-head,.investment-dashboard-main { grid-template-columns:1fr; }
  .investment-dashboard-head { gap:30px; }
  .investment-business-loop { padding-right:48px; }
  .investment-break-even-panel { display:grid; grid-template-columns:.7fr 1fr; align-items:end; gap:50px; }
}

@media (max-width:760px) {
  .investment-dashboard-head { padding:42px 22px 34px; }
  .investment-dashboard-head h2 { font-size:44px; }
  .investment-dashboard-head > p { padding-left:20px; font-size:14px; }
  .investment-business-loop { grid-template-columns:1fr; padding:46px 22px 28px; }
  .investment-loop-path { grid-template-columns:1fr; margin-top:38px; }
  .investment-loop-path article { min-height:210px; }
  .investment-loop-path article:nth-of-type(2) { transform:none; }
  .investment-loop-path i { transform:rotate(90deg); }
  .investment-break-even-panel { display:block; padding:48px 22px 32px; }
  .investment-break-even-copy > strong { font-size:104px; }
  .investment-phase-rail { grid-template-columns:1fr; padding:0 22px; }
  .investment-phase-rail li,.investment-phase-rail li + li { min-height:150px; padding:30px 0; border-right:0; border-bottom:1px solid #d5ddd8; }
  .investment-phase-rail li:last-child { border-bottom:0; }
}

/* Capital narrative scroll: unboxed, editorial and deliberately asymmetric. */
.investment-section { padding-top:0; padding-bottom:0; background:#f7f5ef; }
.investment-editorial { width:100%; overflow:hidden; color:var(--blue-deep); background:linear-gradient(135deg,#fbfaf6 0%,#fff 52%,#f3f7f3 100%); }
.investment-editorial-head { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr); align-items:end; min-height:560px; padding:84px max(7vw,70px) 72px; border-bottom:1px solid #d8ddd8; }
.investment-editorial-title { max-width:900px; }
.investment-editorial-title .section-label { margin:0 0 22px; }
.investment-editorial-title h2 { margin:0; font-family:"Songti SC","STSong",serif; font-size:clamp(58px,6.4vw,104px); font-weight:700; line-height:1.02; letter-spacing:-.055em; }
.investment-editorial-title > p { max-width:650px; margin:34px 0 0; color:#63757d; font-size:16px; line-height:1.9; }
.investment-editorial-metric { position:relative; justify-self:end; width:min(100%,560px); padding:0 0 10px 74px; border-left:1px solid #cbd3ce; }
.investment-editorial-metric::before { content:""; position:absolute; left:-5px; top:0; width:9px; height:9px; border-radius:50%; background:#b99245; }
.investment-editorial-metric > span { color:#148b63; font-size:11px; font-weight:900; letter-spacing:.18em; }
.investment-editorial-metric strong { display:block; margin-top:30px; color:#0b5c49; font-family:Georgia,"Songti SC",serif; font-size:clamp(118px,12vw,210px); font-weight:400; line-height:.7; letter-spacing:-.09em; }
.investment-editorial-metric strong em { margin-left:15px; font-family:"Songti SC","STSong",serif; font-size:20px; font-style:normal; letter-spacing:0; }
.investment-editorial-metric b { display:block; margin-top:38px; font-family:"Songti SC","STSong",serif; font-size:clamp(30px,3vw,48px); }
.investment-value-chain { padding:72px max(7vw,70px) 62px; background:rgba(255,255,255,.76); }
.investment-value-chain > header { display:flex; align-items:flex-start; justify-content:space-between; gap:50px; margin-bottom:62px; }
.investment-value-chain > header span { color:#148b63; font-size:11px; font-weight:900; letter-spacing:.18em; }
.investment-value-chain > header p { max-width:640px; margin:0; color:#697a76; font-size:13px; line-height:1.8; }
.investment-value-chain ol { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin:0; padding:0; list-style:none; }
.investment-value-chain ol::before { content:""; position:absolute; left:0; right:0; top:18px; height:1px; background:linear-gradient(90deg,#148b63 0%,#8ca69c 72%,#b99245 100%); }
.investment-value-chain li { position:relative; min-height:190px; padding:52px 48px 0 0; }
.investment-value-chain li + li { padding-left:30px; }
.investment-value-chain li::before { content:""; position:absolute; top:13px; left:0; width:11px; height:11px; border:3px solid #fbfaf6; border-radius:50%; background:#148b63; box-shadow:0 0 0 1px #148b63; }
.investment-value-chain li:last-child::before { background:#b99245; box-shadow:0 0 0 1px #b99245; }
.investment-value-chain small { color:#8b9893; font:10px Georgia,serif; letter-spacing:.14em; }
.investment-value-chain b { display:block; margin-top:25px; font-family:"Songti SC","STSong",serif; font-size:25px; }
.investment-value-chain span { display:block; max-width:250px; margin-top:12px; color:#74837e; font-size:12px; line-height:1.7; }
.investment-trend-story { margin:0; padding:74px max(7vw,70px) 88px; background:#f5f6f1; }
.investment-trend-story > figcaption { display:flex; align-items:flex-end; justify-content:space-between; gap:50px; }
.investment-trend-story > figcaption div > span { color:#148b63; font-size:11px; font-weight:900; letter-spacing:.18em; }
.investment-trend-story > figcaption strong { display:block; margin-top:18px; font-family:"Songti SC","STSong",serif; font-size:clamp(34px,3.8vw,58px); }
.investment-trend-story > figcaption p { margin:0 0 7px; color:#8b9691; font-size:10px; }
.investment-trend-canvas { position:relative; margin-top:45px; }
.investment-trend-canvas svg { display:block; width:100%; height:auto; }
.investment-editorial-grid path { fill:none; stroke:#dfe4df; stroke-width:1; }
.investment-editorial-cost { fill:none; stroke:#879691; stroke-width:3; }
.investment-editorial-area { fill:url(#editorialRevenueFill); }
.investment-editorial-revenue { fill:none; stroke:#148b63; stroke-width:5; }
.investment-editorial-target { stroke:#b99245; stroke-width:2; stroke-dasharray:7 7; }
.investment-break-even-mark { fill:#fbfaf6; stroke:#b99245; stroke-width:5; }
.investment-editorial-axis text { fill:#7e8c87; font:12px Georgia,serif; }
.investment-trend-legend { position:absolute; top:14px; right:0; display:flex; gap:26px; color:#6f7d78; font-size:10px; }
.investment-trend-legend span { position:relative; padding-left:20px; }
.investment-trend-legend span::before { content:""; position:absolute; left:0; top:50%; width:13px; height:2px; background:#148b63; }
.investment-trend-legend span:last-child::before { background:#879691; }
.investment-trend-stages { display:grid; grid-template-columns:240fr 600fr 370fr; margin:20px 0 0; padding:0 0 0 4%; list-style:none; }
.investment-trend-stages li { padding-top:22px; border-top:1px solid #cfd7d2; }
.investment-trend-stages li + li { padding-left:34px; }
.investment-trend-stages small { color:#148b63; font-size:9px; font-weight:900; letter-spacing:.12em; }
.investment-trend-stages b { display:block; margin-top:13px; font-family:"Songti SC","STSong",serif; font-size:20px; }
.investment-trend-stages span { display:block; margin-top:7px; color:#7d8b86; font-size:10px; }
.investment-trend-stages li:last-child { border-top-color:#b99245; }

@media (max-width:900px) {
  .investment-editorial-head { grid-template-columns:1fr; gap:80px; min-height:0; }
  .investment-editorial-metric { justify-self:start; width:100%; }
  .investment-value-chain ol { grid-template-columns:repeat(2,1fr); row-gap:40px; }
  .investment-value-chain ol::before { display:none; }
  .investment-value-chain li { padding-top:34px; border-top:1px solid #ccd5d0; }
  .investment-value-chain li::before { top:-6px; }
}

@media (max-width:620px) {
  .investment-editorial-head { gap:60px; padding:54px 22px 48px; }
  .investment-editorial-title h2 { font-size:50px; }
  .investment-editorial-title > p { font-size:14px; }
  .investment-editorial-metric { padding-left:30px; }
  .investment-editorial-metric strong { font-size:126px; }
  .investment-value-chain,.investment-trend-story { padding:52px 22px; }
  .investment-value-chain > header,.investment-trend-story > figcaption { display:block; }
  .investment-value-chain > header p,.investment-trend-story > figcaption p { margin-top:22px; }
  .investment-value-chain ol { grid-template-columns:1fr; margin-top:42px; }
  .investment-value-chain li,.investment-value-chain li + li { min-height:150px; padding:32px 0 20px; }
  .investment-trend-canvas { overflow-x:auto; }
  .investment-trend-canvas svg { width:760px; max-width:none; }
  .investment-trend-legend { position:static; margin:18px 0; }
  .investment-trend-stages { grid-template-columns:1fr; padding:0; }
  .investment-trend-stages li,.investment-trend-stages li + li { padding:22px 0; }
}

/* Investment central stage: one canvas, one number, one operating story. */
.investment-central-stage { position:relative; min-height:1080px; overflow:hidden; padding:76px max(6.5vw,64px) 44px; color:#073f57; background:linear-gradient(128deg,#faf9f4 0%,#f1f5ef 54%,#dbe9df 100%); font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; isolation:isolate; }
.investment-central-stage::before { content:""; position:absolute; z-index:-1; inset:0; background:radial-gradient(circle at 53% 28%,rgba(255,255,255,.94),transparent 26%),linear-gradient(90deg,rgba(250,249,244,.98) 0 33%,rgba(250,249,244,.22) 58%,rgba(225,237,229,.32)); }
.investment-central-stage::after { content:"18"; position:absolute; z-index:-1; right:-.03em; top:-.2em; color:rgba(9,78,67,.035); font:400 590px/.9 Georgia,serif; letter-spacing:-.12em; }
.investment-central-image { position:absolute; z-index:-2; top:0; right:0; width:100%; height:67%; overflow:hidden; background:linear-gradient(0deg,#eef3ed 0%,transparent 36%); isolation:isolate; }
.investment-central-image::before,.investment-central-image::after { content:""; position:absolute; inset:0; background-repeat:no-repeat; pointer-events:none; }
.investment-central-image::before { z-index:-2; background-image:url("assets/market-plantation-scene-clean.png"); background-size:cover; background-position:left center; filter:saturate(.8) brightness(1.12); -webkit-mask-image:linear-gradient(90deg,#000 0%,#000 54%,rgba(0,0,0,.92) 64%,rgba(0,0,0,.32) 78%,transparent 91%); mask-image:linear-gradient(90deg,#000 0%,#000 54%,rgba(0,0,0,.92) 64%,rgba(0,0,0,.32) 78%,transparent 91%); }
.investment-central-image::after { z-index:-1; background-image:url("assets/market-machine-scene-clean.png"); background-size:auto 100%; background-position:right center; filter:saturate(.88) brightness(1.06); -webkit-mask-image:linear-gradient(90deg,transparent 56%,rgba(0,0,0,.1) 67%,rgba(0,0,0,.84) 79%,#000 88%); mask-image:linear-gradient(90deg,transparent 56%,rgba(0,0,0,.1) 67%,rgba(0,0,0,.84) 79%,#000 88%); }
.investment-central-heading { position:relative; z-index:5; width:min(510px,38%); }
.investment-central-heading .section-label { margin:0 0 18px; }
.investment-central-heading h2 { margin:0; font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; font-size:clamp(42px,4.5vw,68px); font-weight:800; line-height:1.08; letter-spacing:-.05em; }
.investment-central-heading > p:last-child { max-width:450px; margin:24px 0 0; color:#60747b; font-size:15px; line-height:1.85; }
.investment-central-metric { position:absolute; z-index:3; left:50%; top:72px; width:400px; min-height:390px; padding:34px 20px 26px; transform:translateX(-38%); text-align:left; }
.investment-central-metric::before { content:""; position:absolute; z-index:-1; inset:-64px -86px -54px -92px; border:0; border-radius:0; background:radial-gradient(ellipse at 44% 48%,rgba(255,255,255,.94) 0%,rgba(255,255,255,.72) 42%,rgba(255,255,255,.28) 66%,transparent 79%); box-shadow:none; pointer-events:none; }
.investment-central-metric::after { content:""; position:absolute; left:0; top:34px; width:3px; height:54px; background:linear-gradient(#b99245,#0b6b50); }
.investment-central-metric > span { display:flex; align-items:center; gap:14px; color:#148b63; font-size:12px; font-weight:900; letter-spacing:.16em; }
.investment-central-metric > span::before { content:""; width:42px; height:2px; background:#b99245; }
.investment-central-metric > span::after { display:none; }
.investment-central-metric strong { display:flex; align-items:flex-end; margin-top:22px; color:#073f57; font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; font-size:clamp(148px,14vw,208px); font-weight:800; line-height:.78; letter-spacing:-.09em; }
.investment-central-metric strong em { min-width:0; height:auto; margin:0 0 16px 16px; padding:0; color:#0b6b50; background:transparent; border-radius:0; font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; font-size:19px; font-style:normal; font-weight:800; line-height:1; letter-spacing:.08em; transform:none; }
.investment-central-metric b { display:block; width:auto; margin:26px 0 0; padding:0; color:#0b5c49; border:0; font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; font-size:clamp(32px,2.7vw,43px); font-weight:800; letter-spacing:.04em; }
.investment-central-caption { display:grid; grid-template-columns:repeat(3,auto); gap:14px; align-items:center; margin:24px 0 0; padding-top:15px; border-top:1px solid rgba(185,146,69,.82); color:#688078; font-size:10px; font-weight:700; letter-spacing:.04em; white-space:nowrap; }
.investment-central-analysis { position:absolute; z-index:4; left:max(6.5vw,64px); right:max(6.5vw,64px); top:540px; bottom:34px; display:grid; grid-template-rows:176px minmax(0,1fr); overflow:hidden; border:1px solid rgba(7,63,87,.14); border-radius:22px; background:rgba(250,250,246,.96); box-shadow:0 28px 80px rgba(8,55,55,.16); backdrop-filter:blur(18px); }
.investment-central-flow { position:relative; display:grid; grid-template-columns:repeat(4,1fr); margin:0; padding:0; list-style:none; color:#fff; background:linear-gradient(110deg,#073f57 0%,#07574f 52%,#0d6d50 100%); }
.investment-central-flow::before { content:""; position:absolute; left:7%; right:7%; top:38px; height:1px; background:linear-gradient(90deg,rgba(154,224,189,.75),rgba(221,190,112,.9)); }
.investment-central-flow li { position:relative; min-height:176px; padding:26px 34px 24px; }
.investment-central-flow li + li { border-left:1px solid rgba(255,255,255,.15); }
.investment-central-flow small { position:relative; z-index:1; display:grid; place-items:center; width:42px; height:24px; color:#0b5c49; background:#d9f2d1; border-radius:999px; font:800 11px Inter,"PingFang SC",sans-serif; letter-spacing:.1em; box-shadow:0 0 0 7px rgba(6,75,75,.62); }
.investment-central-flow b { display:block; margin-top:24px; font-family:Inter,"PingFang SC","Microsoft YaHei",Arial,sans-serif; font-size:25px; font-weight:800; letter-spacing:-.02em; }
.investment-central-flow span { display:block; margin-top:10px; color:rgba(255,255,255,.7); font-size:14px; line-height:1.5; letter-spacing:.03em; }
.investment-central-chart { position:relative; min-height:0; height:auto; margin:0; padding:25px 36px 22px; background:linear-gradient(118deg,#fffdf8 0%,#f4f8f3 58%,#e4f0e8 100%); }
.investment-central-chart::before { content:"18 MONTHS"; position:absolute; right:34px; top:44px; color:rgba(7,63,87,.05); font:800 78px/1 Inter,sans-serif; letter-spacing:-.06em; }
.investment-central-chart figcaption { position:absolute; z-index:2; right:36px; top:24px; display:flex; gap:30px; color:#526861; font-size:12px; font-weight:700; }
.investment-central-chart figcaption span { position:relative; padding-left:18px; }
.investment-central-chart figcaption span::before { content:""; position:absolute; left:0; top:50%; width:12px; height:2px; background:#148b63; }
.investment-central-chart figcaption span:last-child::before { background:#879691; }
.investment-central-chart svg { display:block; width:100%; height:230px; margin-top:6px; overflow:visible; }
.investment-central-grid path { fill:none; stroke:rgba(87,113,106,.16); }
.investment-chart-area { fill:rgba(20,139,99,.09); stroke:none; }
.investment-central-cost { fill:none; stroke:#879691; stroke-width:3; }
.investment-central-revenue { fill:none; stroke:#148b63; stroke-width:5; }
.investment-central-target { stroke:#b99245; stroke-width:2; stroke-dasharray:6 6; }
.investment-central-chart .investment-break-even-mark { fill:#f8f7ef; stroke:#b99245; stroke-width:5; filter:drop-shadow(0 0 8px rgba(185,146,69,.55)); }
.investment-central-axis text { fill:#6d7f79; font:700 12px Inter,"PingFang SC",sans-serif; }
.investment-central-chart ol { position:absolute; left:36px; right:36px; bottom:20px; display:grid; grid-template-columns:1fr 2fr 1fr; margin:0; padding:0; list-style:none; }
.investment-central-chart li { padding-top:10px; border-top:1px solid rgba(9,78,67,.2); }
.investment-central-chart li + li { padding-left:18px; }
.investment-central-chart small { color:#148b63; font-size:11px; font-weight:800; }
.investment-central-chart b { display:block; margin-top:6px; color:#173e51; font-size:15px; font-weight:800; }
.investment-central-chart > p { position:absolute; right:36px; bottom:7px; margin:0; color:#7c8b86; font-size:10px; }

@media (max-width:960px) {
  .investment-central-stage { min-height:1380px; padding:58px 42px 38px; }
  .investment-central-heading { width:48%; }
  .investment-central-metric { left:67%; top:62px; width:330px; padding:32px 16px 26px; transform:translateX(-50%); }
  .investment-central-metric strong { font-size:158px; }
  .investment-central-caption { gap:10px; font-size:10px; }
  .investment-central-image { width:100%; height:54%; }
  .investment-central-analysis { left:42px; right:42px; top:540px; bottom:40px; grid-template-rows:auto minmax(0,1fr); }
  .investment-central-flow { grid-template-columns:repeat(2,1fr); }
  .investment-central-flow::before { display:none; }
  .investment-central-flow li { min-height:150px; }
  .investment-central-flow li:nth-child(3) { border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .investment-central-flow li:nth-child(4) { border-top:1px solid rgba(255,255,255,.15); }
  .investment-central-chart { min-height:340px; }
}

@media (max-width:620px) {
  .investment-central-stage { display:flex; flex-direction:column; min-height:0; padding:46px 22px 32px; }
  .investment-central-stage::after { display:none; }
  .investment-central-image { position:relative; order:2; width:calc(100% + 44px); height:390px; margin:34px -22px 0; }
  .investment-central-image::before { background-position:34% center; -webkit-mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.9) 42%,transparent 76%); mask-image:linear-gradient(90deg,#000 0%,rgba(0,0,0,.9) 42%,transparent 76%); }
  .investment-central-image::after { background-position:right center; -webkit-mask-image:linear-gradient(90deg,transparent 36%,rgba(0,0,0,.76) 62%,#000 78%); mask-image:linear-gradient(90deg,transparent 36%,rgba(0,0,0,.76) 62%,#000 78%); }
  .investment-central-heading { order:1; width:100%; }
  .investment-central-heading h2 { font-size:44px; }
  .investment-central-metric { position:relative; order:3; left:auto; top:auto; width:100%; min-height:0; margin:-54px 0 0; padding:30px 18px 24px; transform:none; }
  .investment-central-metric::before { inset:-28px -20px -24px; border-radius:0; }
  .investment-central-metric strong { font-size:132px; }
  .investment-central-metric strong em { margin-bottom:12px; font-size:17px; }
  .investment-central-metric b { margin-top:24px; font-size:34px; }
  .investment-central-caption { grid-template-columns:1fr; gap:5px; white-space:normal; }
  .investment-central-analysis { position:relative; order:4; left:auto; right:auto; top:auto; bottom:auto; display:block; margin-top:46px; border-radius:16px; }
  .investment-central-flow { grid-template-columns:1fr 1fr; }
  .investment-central-flow li { min-height:140px; padding:24px 18px; }
  .investment-central-flow b { margin-top:24px; font-size:22px; }
  .investment-central-flow span { margin-top:10px; font-size:13px; }
  .investment-central-flow li:nth-child(3) { border-left:0; border-top:1px solid rgba(255,255,255,.15); }
  .investment-central-flow li:nth-child(4) { border-top:1px solid rgba(255,255,255,.15); }
  .investment-central-chart { height:340px; padding:24px 18px 20px; overflow:hidden; }
  .investment-central-chart figcaption { right:18px; }
  .investment-central-chart ol { left:18px; right:18px; }
  .investment-central-chart > p { right:18px; }
  .investment-central-chart svg { width:720px; max-width:none; transform:translateX(-160px); }
}

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

.news-grid {
  display: block;
  border-top: 1px solid var(--line);
}

.highlight-card,
.download-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.highlight-card {
  min-height: 230px;
  border-radius:16px;
  background:linear-gradient(145deg,#fff,#f7fbf9);
  transition:transform .25s ease,box-shadow .25s ease;
}
.highlight-card:hover { transform:translateY(-4px); box-shadow:0 18px 42px rgba(7,54,83,.09); }
.highlight-card > span { display:block; color:rgba(18,143,88,.55); font-size:12px; font-weight:900; letter-spacing:.12em; }
.highlight-card h3 { margin-top:42px; }

.news-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 360px;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 16px 28px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
}

.news-card-featured {
  background: var(--white);
}

.news-date strong,
.news-date span {
  display: block;
}

.news-date strong {
  color: var(--blue-deep);
  font-size: 28px;
  line-height: 1;
}

.news-date span {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
}

.news-category {
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
}

.news-content h3 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.35;
}

.news-image {
  margin: 0;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: 12px;
  background: var(--soft);
}

.news-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1100px) {
  .investment-heading,.investment-signal-stage,.investment-model-board,.investment-break-even { grid-template-columns:1fr; }
  .investment-model-flow { grid-template-columns:1fr; }
  .investment-model-flow i { transform:rotate(90deg); justify-self:center; }
  .news-card { grid-template-columns:100px minmax(0,1fr) 280px; gap:24px; }
}

@media (max-width:680px) {
  .investment-section { padding:72px 14px; }
  .investment-heading { gap:18px; }
  .investment-heading h2 { font-size:38px; }
  .investment-heading > p { font-size:15px; }
  .investment-signal-stage { padding:28px 20px; }
  .investment-signal-grid { grid-template-columns:1fr; }
  .investment-signal-grid article { border-right:0; border-bottom:1px solid rgba(255,255,255,.13); }
  .investment-signal-grid article:last-child { border-bottom:0; }
  .investment-model-thesis,.investment-model-content,.investment-break-even { padding:26px 20px; }
  .investment-guardrails,.investment-timeline { grid-template-columns:repeat(2,1fr); }
  .investment-value-engine { grid-template-columns:1fr; }
  .investment-value-engine > span { writing-mode:initial; }
  .investment-value-engine i { text-align:center; }
  .investment-timeline li:nth-child(2) { border-right:0; }
  .investment-timeline li:nth-child(-n+2) { border-bottom:1px solid rgba(255,255,255,.14); }
  .investment-highlight-head { align-items:flex-start; flex-direction:column; }
  .news-card { grid-template-columns:1fr; gap:18px; min-height:0; padding:28px 0; }
  .news-card-featured { margin-inline:-14px; padding-inline:14px; }
  .news-date { display:flex; align-items:baseline; gap:10px; }
  .news-date span { margin-top:0; }
  .news-image { order:3; aspect-ratio:16 / 9; }
}

.downloads-section {
  border-top: 1px solid var(--line);
}

.download-list {
  display: grid;
  gap: 14px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(36px, 4vw, 76px);
  margin-bottom: 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 183, 145, 0.2), transparent 32%),
    linear-gradient(135deg, #04345f 0%, #07556b 54%, #0a6f5a 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(3, 47, 72, 0.18);
}

.contact-form-only {
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: var(--max);
  margin: 0 auto 60px;
  padding: clamp(42px, 5vw, 72px);
  scroll-margin-top: 82px;
}

.contact-form-heading {
  max-width: 880px;
}

.contact-form-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.06;
}

.contact-form-heading > p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.75;
}

.contact-form-only .lead-form {
  width: 100%;
  padding: clamp(26px, 3vw, 42px);
}

.contact-section h2,
.contact-section .section-label {
  color: var(--white);
}

.contact-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-info-panel {
  display: grid;
  align-content: start;
  gap: 34px;
}

.contact-heading h2 {
  max-width: 620px;
  margin: 12px 0 18px;
  font-size: clamp(48px, 5.4vw, 82px);
  line-height: 1.04;
}

.contact-heading > p:last-child {
  max-width: 640px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.8;
}

.contact-details-grid {
  display: grid;
  grid-template-columns: minmax(330px, 1fr) 208px;
  align-items: center;
  gap: clamp(28px, 3vw, 46px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.contact-methods {
  display: grid;
  gap: 0;
  margin: 0;
}

.contact-method-card {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 78px;
  padding: 12px 4px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-method-card:last-child {
  border-bottom: 0;
}

.contact-method-card:hover {
  color: #d9ffad;
  transform: translateX(4px);
}

.contact-method-card svg {
  width: 44px;
  height: 44px;
  padding: 10px;
  color: #b8f27a;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-method-card span,
.contact-wecom figcaption span {
  display: grid;
  gap: 4px;
}

.contact-method-card small,
.contact-wecom figcaption small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.contact-method-card strong {
  min-width: 0;
  font-size: clamp(16px, 1.15vw, 20px);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.contact-wecom {
  display: grid;
  justify-items: center;
  gap: 22px;
  margin: 0;
}

.contact-wecom-bubble {
  position: relative;
  width: 196px;
  height: 196px;
  padding: 10px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(1, 28, 44, 0.26);
}

.contact-wecom-bubble::after {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 28px;
  height: 28px;
  content: "";
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 7px 0;
}

.contact-wecom-qr {
  position: relative;
  z-index: 1;
  width: 176px;
  height: 176px;
  overflow: hidden;
  background: var(--white);
  border-radius: 15px;
}

.contact-wecom-qr img {
  position: absolute;
  left: -106px;
  top: -163px;
  width: 387px;
  max-width: none;
}

.contact-wecom figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.contact-wecom figcaption svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  color: #b8f27a;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-wecom figcaption strong {
  font-size: 16px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #39596b;
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid #cfdfe4;
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus,
.admin-field input:focus,
.admin-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 92, 168, 0.12);
}

.full-span {
  grid-column: 1 / -1;
}

.form-status {
  margin: 0;
  min-height: 24px;
  color: var(--green-deep);
  font-weight: 800;
}

.form-status.is-error {
  color: #b3261e;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 18;
  display: grid;
  gap: 8px;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 42px;
  color: var(--white);
  background: var(--blue-deep);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(4, 52, 95, 0.2);
  font-size: 13px;
  font-weight: 900;
}

.site-footer {
  display: block;
  padding: 64px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  color: #537083;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(120px, 0.65fr) minmax(120px, 0.7fr) minmax(280px, 1.25fr) 190px;
  align-items: start;
  gap: clamp(28px, 3vw, 52px);
  padding-bottom: 46px;
}

.footer-brand-block {
  display: grid;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--blue-deep);
  text-decoration: none;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand span {
  display: grid;
  gap: 2px;
}

.footer-brand strong {
  font-size: 21px;
}

.footer-brand small {
  color: #718691;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.footer-brand-block > p {
  max-width: 330px;
  margin: 0;
  color: #718691;
  line-height: 1.8;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column > strong {
  margin-bottom: 4px;
  color: var(--blue-deep);
  font-size: 16px;
}

.footer-column > a {
  color: #667e8b;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column > a:hover {
  color: var(--green);
  transform: translateX(3px);
}

.footer-contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  color: var(--blue-deep) !important;
  font-weight: 800;
}

.footer-contact-link svg,
.footer-wecom figcaption svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: var(--green);
  background: #eef8f3;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-contact-link span {
  display: grid;
  gap: 2px;
}

.footer-contact-link small,
.footer-address > span,
.footer-wecom figcaption small {
  color: #83959e;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.footer-address {
  display: grid;
  gap: 5px;
  margin-top: 2px;
}

.footer-address p {
  margin: 0;
  color: #667e8b;
  line-height: 1.7;
}

.footer-wecom {
  display: grid;
  justify-items: center;
  gap: 18px;
  margin: 0;
}

.footer-wecom-bubble {
  position: relative;
  width: 174px;
  height: 174px;
  padding: 9px;
  background: var(--white);
  border: 1px solid #d8e5e8;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(4, 52, 95, 0.11);
}

.footer-wecom-bubble::after {
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 24px;
  height: 24px;
  content: "";
  background: var(--white);
  border-right: 1px solid #d8e5e8;
  border-bottom: 1px solid #d8e5e8;
  border-radius: 0 0 5px 0;
  transform: translateX(-50%) rotate(45deg);
}

.footer-wecom-qr {
  position: relative;
  z-index: 1;
  width: 154px;
  height: 154px;
  overflow: hidden;
  background: var(--white);
  border-radius: 13px;
}

.footer-wecom-qr img {
  position: absolute;
  left: -92px;
  top: -143px;
  width: 339px;
  max-width: none;
}

.footer-wecom figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
}

.footer-wecom figcaption span {
  display: grid;
  gap: 3px;
}

.footer-wecom figcaption strong {
  font-size: 15px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #82949d;
}

.footer-legal a {
  color: #577488;
  text-decoration: none;
}

.admin-body {
  background: #f5f8fa;
}

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

.admin-sidebar {
  padding: 28px 22px;
  color: var(--white);
  background: var(--blue-deep);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.admin-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.admin-tabs {
  display: grid;
  gap: 8px;
}

.admin-tabs button {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.admin-tabs button.is-active {
  color: var(--blue-deep);
  background: var(--white);
}

.admin-main {
  padding: 34px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin: 0;
  color: var(--blue-deep);
  font-size: 32px;
}

.admin-panel {
  padding: 24px;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stat {
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-stat strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admin-field {
  display: grid;
  gap: 7px;
  color: #39596b;
  font-size: 13px;
  font-weight: 800;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--blue-deep);
  background: var(--soft);
}

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

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero,
  .split,
  .about-section,
  .market-layout,
  .market-command,
  .investment-visual,
  .contact-section,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .market-map {
    min-height: 380px;
  }

  .policy-fullscreen { min-height: auto; }
  .policy-fullscreen-inner { grid-template-columns: 1fr; min-height: 0; }
  .policy-fullscreen-copy { padding-bottom: 0; }
  .policy-archive-scene { min-height: 520px; }

  .market-landscape,
  .market-landscape > img {
    min-height: 480px;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-image-bg {
    min-height: min(calc(100vw * 0.6525), calc(100vh - 72px));
    padding: 0;
    background-position: left 35%;
    background-size: cover;
    background-color: #eaf7ff;
  }

  .hero-image-content {
    min-height: min(calc(100vw * 0.6525), calc(100vh - 72px));
  }

  .hero-image-bg .hero-actions {
    left: 28px;
    top: auto;
    bottom: 10%;
  }

  .hero-visual,
  .product-hero-card {
    min-height: 420px;
    height: 420px;
  }

  .about-section {
    gap: 34px;
  }

  .about-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-information {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-headquarters img {
    aspect-ratio: 16 / 8;
  }

  .about-capability-gallery {
    gap: 12px;
  }

  .about-capability-card figcaption {
    right: 38%;
    top: 14px;
    bottom: auto;
    left: 14px;
    gap: 2px 8px;
  }

  .about-capability-card figcaption strong {
    font-size: 17px;
  }

  .about-capability-card figcaption small {
    font-size: 11px;
  }

  .product-tech-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 640px;
    background-position: top center;
    background-size: auto 610px;
  }

  .feature-list {
    grid-column: 1;
  }

  .metrics-band,
  .roadmap-list,
  .roadmap-support,
  .highlight-grid,
  .news-grid,
  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-list::before {
    display: none;
  }

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

  .roadmap-item:nth-child(2),
  .roadmap-item:nth-child(3) {
    transform: none;
  }

  .admin-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    max-width: 92px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions .button {
    display: none;
  }

  .hero {
    gap: 32px;
    padding: 42px 18px;
  }

  .hero-image-bg {
    min-height: 420px;
    padding: 0;
    background-position: left 35%;
    background-size: cover;
    background-color: #eaf7ff;
  }

  .hero-image-content {
    min-height: 420px;
  }

  .hero-image-bg .hero-actions {
    left: 20px;
    right: 20px;
    top: auto;
    bottom: 18px;
  }

  .hero-image-bg .hero-actions .button {
    flex: 1 1 140px;
  }

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

  .product-hero-card img {
    left: 14px;
    bottom: 36px;
    width: min(82%, 330px);
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .metrics-band,
  .roadmap-list,
  .roadmap-support,
  .market-data,
  .market-media-strip,
  .market-opportunities,
  .highlight-grid,
  .news-grid,
  .lead-form,
  .admin-grid,
  .admin-form {
    grid-template-columns: 1fr;
  }

  .policy-fullscreen { padding-top: 52px; }
  .policy-fullscreen-inner { padding-inline: 20px; }
  .policy-fullscreen h3 { font-size: 40px; }
  .policy-hero-quote { padding-left: 24px; font-size: 22px; }
  .policy-archive-scene { min-height: 470px; margin-top: 20px; }
  .policy-archive-scene { grid-template-columns: 1fr; min-height: 740px; }
  .policy-official-document { min-height: 430px; border-right:0; border-bottom:1px solid #ddd7cc; }
  .policy-official-document img { width:210%; transform:translate(-2%,-1%); }
  .policy-official-meta { min-height:310px; padding:28px 24px; }
  .policy-official-issuer { margin-top:14px; }
  .policy-official-rule { margin:16px 0; }
  .policy-official-meta > p:not(.policy-official-issuer) { margin-top:12px; font-size:15px; }
  .policy-official-meta dl { margin-top:18px; }
  .policy-inline-insights { grid-template-columns: 1fr; gap:10px; }
  .policy-inline-insight + .policy-inline-insight { padding-left:0; border-left:0; }

  .roadmap-item {
    display: block;
    min-height: auto;
    padding: 0;
  }

  .roadmap-item:nth-child(even) .roadmap-media {
    order: initial;
  }

  .roadmap-list::before {
    display: none;
  }

  .roadmap-item h3 {
    margin-top: 16px;
    font-size: 20px;
  }

  .roadmap-body {
    padding: 22px 20px;
  }

  .roadmap-media {
    height: 190px;
    min-height: 190px;
  }

  .section-intro {
    font-size: 16px;
  }

  .roadmap-support-card {
    padding: 18px;
  }

  .market-map {
    min-height: 340px;
  }

  .market-command {
    gap: 12px;
    padding: 8px;
    border-radius: 18px;
  }

  .market-landscape,
  .market-landscape > img {
    min-height: 500px;
  }

  .market-landscape-top {
    top: 22px;
    left: 20px;
  }

  .market-landscape-top strong {
    font-size: 23px;
  }

  .demand-spotlight {
    top: auto;
    right: 16px;
    left: 16px;
    bottom: 132px;
    width: auto;
    padding: 17px;
    transform: none;
  }

  .demand-spotlight strong {
    font-size: 32px;
  }

  .market-funnel-panel {
    padding: 26px 18px 22px;
  }

  .market-funnel-demand,
  .market-funnel-value {
    width: 100%;
  }

  .market-funnel-stage {
    min-height: 100px;
    padding: 15px 18px;
  }

  .region-tags {
    left: 16px;
    right: 16px;
    bottom: 18px;
  }

  .region-tags {
    grid-template-columns: repeat(2, 1fr);
  }

  .region-tags > span {
    padding: 7px;
  }

  .region-tags b {
    width: 25px;
    height: 25px;
  }

  .market-insight-panel {
    padding: 24px 18px 16px;
  }

  .market-map::before {
    inset: 70px 28px;
  }

  .market-scan {
    left: 18px;
    right: 18px;
    bottom: 18px;
    min-width: 0;
  }

  .market-data div,
  .market-opportunities article {
    padding: 18px;
  }

  .metric,
  .section,
  .admin-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-positioning {
    gap: 8px;
  }

  .about-positioning span {
    font-size: 12px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .about-stats div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 12px;
  }

  .about-capability-gallery {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 4px;
  }

  .about-capability-card figcaption {
    right: 38%;
    top: 18px;
    bottom: auto;
    left: 20px;
  }

  .about-capability-card figcaption strong {
    font-size: 20px;
  }

  .about-capability-card figcaption small {
    font-size: 12px;
  }

  .about-headquarters img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  .about-headquarters figcaption {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .about-headquarters figcaption small {
    display: none;
  }

  .about-section .section-copy {
    padding-left: 18px;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .product-tech-section > .section-heading {
    padding-left: 18px;
    padding-right: 18px;
  }

  .product-tech-layout {
    padding: 520px 18px 24px;
    background-size: auto 500px;
  }

  .feature-list {
    padding: 16px 18px;
  }

  .download-item,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-section {
    border-radius: 0;
    margin-bottom: 0;
  }

  .contact-details-grid {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  .footer-contact-grid {
    grid-template-columns: 1.2fr 0.7fr 0.8fr;
  }

  .footer-contact-column {
    grid-column: 1 / span 2;
  }

  .footer-wecom {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .floating-actions {
    display: none;
  }
}

@media (max-width: 680px) {
  .contact-form-only {
    padding: 34px 20px;
  }

  .contact-details-grid {
    grid-template-columns: 1fr;
  }

  .contact-wecom {
    justify-self: center;
  }

  .site-footer {
    padding: 46px 22px 24px;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-contact-column,
  .footer-wecom {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-wecom {
    justify-items: start;
  }

  .footer-legal {
    flex-direction: column;
  }
}
