:root {
  --green: #2DA247;
  --green-strong: #2DA247;
  --green-deep: #2DA247;
  --green-soft: #eaf7ee;
  --green-mist: #f4fbf6;
  --gold: #b89968;
  --ink: #333333;
  --muted: #666666;
  --line: #cccccc;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(45, 162, 71, 0.12);
  --radius: 8px;
  --page: min(1180px, calc(100vw - 40px));
  --hero-image: url("assets/hero-airplane.jpg");
  --font-default: "Aa大标宋", "Aa DaBiaoSong", "FZDaBiaoSong-B06S", "FZDaBiaoSongS-B-GB", "FangZhengDaBiaoSongJianTi", "方正大标宋简体", "方正大标宋_GBK", "方正大标宋", "STSong", "Songti SC", serif;
  --font-brand: var(--font-default);
  font-family: var(--font-default);
  color: var(--ink);
  background: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
.culture-block[id] {
  scroll-margin-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-default);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  height: 72px;
  padding: 0 max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(45, 162, 71, 0.12);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.25s ease, height 0.25s ease;
}

.site-header.is-scrolled {
  height: 64px;
  box-shadow: 0 12px 30px rgba(45, 162, 71, 0.08);
}

.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-strong);
}

.brand-lockup {
  display: block;
  width: clamp(190px, 17vw, 246px);
  height: auto;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.brand-mark path {
  fill: currentColor;
}

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

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

.brand small {
  margin-top: 4px;
  font-family: var(--font-brand);
  font-size: 12px;
  letter-spacing: 0;
}

.desktop-nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  gap: clamp(16px, 1.9vw, 28px);
  color: #26382b;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a {
  flex: 0 0 auto;
  position: relative;
  padding: 26px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  content: "";
}

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

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

.icon-button,
.floating-tools button,
.floating-tools a {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 162, 71, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green);
}

.icon-button svg,
.floating-tools svg,
.search-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-switch {
  display: inline-flex;
  height: 36px;
  border: 1px solid rgba(45, 162, 71, 0.2);
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
}

.language-switch button {
  min-width: 36px;
  border: 0;
  background: transparent;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 700;
}

.language-switch button.active {
  background: var(--green);
  color: var(--white);
}

.login-link {
  padding: 0 6px;
  color: var(--green-deep);
  font-size: 14px;
  font-weight: 700;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.primary-button {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(45, 162, 71, 0.18);
}

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

.hero-content {
  animation: heroContentRise 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.72s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.secondary-button {
  border: 1px solid rgba(45, 162, 71, 0.34);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
}

.secondary-button.light {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.primary-button.compact {
  min-height: 40px;
  padding-inline: 18px;
  font-size: 14px;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 162, 71, 0.18);
  border-radius: 50%;
  background: var(--white);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--green);
}

.mobile-drawer {
  position: fixed;
  top: 72px;
  right: 16px;
  z-index: 45;
  display: none;
  flex-direction: column;
  gap: 4px;
  width: min(320px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid rgba(45, 162, 71, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-drawer.is-open {
  display: flex;
}

.mobile-drawer a {
  padding: 12px 8px;
  border-bottom: 1px solid rgba(45, 162, 71, 0.08);
  color: var(--green-deep);
  font-weight: 700;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  padding-top: 72px;
  overflow: hidden;
}

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

.hero-media {
  background-image: var(--hero-image);
  background-position: center 48%;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(246, 252, 247, 0.96) 0%, rgba(246, 252, 247, 0.78) 34%, rgba(246, 252, 247, 0.22) 64%, rgba(246, 252, 247, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.02) 40%, rgba(255, 255, 255, 0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--page);
  margin: 0 auto;
  padding: clamp(190px, 29vh, 280px) 0 84px;
}

.hero-kicker {
  margin: 0 0 14px;
  color: var(--green-strong);
  font-size: clamp(27px, 3.5vw, 43px);
  font-weight: 900;
  line-height: 1.15;
}

.hero-content h1 {
  max-width: 880px;
  margin: 0;
  color: var(--green-strong);
  font-size: 16pt;
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.data-screen-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(45, 162, 71, 0.96), rgba(45, 162, 71, 0.86)),
    var(--hero-image) center 52% / cover;
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.data-screen-section::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    radial-gradient(circle at 14% 72%, rgba(255, 255, 255, 0.16), transparent 24%);
  background-size: 170px 100%, auto;
  pointer-events: none;
  content: "";
}

.data-ticker-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.data-ticker-row:last-of-type {
  border-bottom: 0;
}

.data-ticker-row > strong {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
  color: var(--white);
  font-weight: 900;
  line-height: 1.1;
  white-space: nowrap;
}

.data-ticker-prefix {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(22px, 2.4vw, 34px);
}

.data-ticker-name {
  color: rgba(232, 236, 232, 0.78);
  font-size: clamp(20px, 2.2vw, 32px);
}

.data-ticker-window {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 2vw, 28px);
  min-width: 0;
  overflow: visible;
}

.data-ticker-unit {
  display: inline-flex;
  align-items: baseline;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 900;
  white-space: nowrap;
}

.data-ticker-window b {
  color: var(--white);
  font-size: clamp(34px, 5.4vw, 76px);
  line-height: 1;
}

.data-screen-section [data-screen-status] {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: right;
}

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

.data-kpi,
.screen-panel {
  border: 1px solid rgba(45, 162, 71, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(45, 162, 71, 0.08);
}

.data-kpi {
  padding: 20px;
}

.data-kpi span,
.data-kpi small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.data-kpi strong {
  display: block;
  margin: 10px 0;
  color: var(--green);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
}

.live-value {
  display: inline-flex;
  align-items: center;
  gap: 0.015em;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.roll-digit {
  display: inline-block;
  width: 0.62em;
  height: 1em;
  overflow: hidden;
  line-height: 1;
  text-align: center;
  vertical-align: baseline;
}

.roll-digit-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transform: translateY(0);
}

.roll-digit-stack span {
  display: block;
  height: 1em;
  line-height: 1;
}

.roll-digit.is-rolling .roll-digit-stack {
  animation: rollDigitUp 0.62s cubic-bezier(0.2, 0.84, 0.2, 1) both;
}

.roll-symbol {
  display: inline-block;
  min-width: 0.24em;
  line-height: 1;
}

.data-kpi b {
  color: var(--green);
  font-weight: 900;
}

.data-screen-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.screen-panel {
  min-height: 320px;
  padding: 20px;
}

.screen-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.screen-panel-head h3 {
  margin: 0;
  color: #163522;
  font-size: 22px;
}

.broker-ranking {
  display: grid;
  gap: 12px;
}

.broker-rank-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 0;
  overflow: hidden;
}

.broker-rank-row em {
  position: relative;
  z-index: 1;
  color: var(--green);
  font-style: normal;
  font-weight: 900;
}

.broker-rank-row span,
.broker-rank-row strong {
  position: relative;
  z-index: 1;
  color: #213b2a;
}

.broker-rank-row strong {
  white-space: nowrap;
}

.broker-rank-row i {
  position: absolute;
  inset: auto 0 0;
  width: var(--rank-width);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(45, 162, 71, 0.16), rgba(255, 156, 48, 0.42));
  opacity: 1;
}

.order-bars {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: 10px;
  min-height: 232px;
}

.order-bar {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 7px;
  height: 232px;
  text-align: center;
}

.order-bar i {
  align-self: end;
  height: var(--bar-height);
  min-height: 8px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--green), #f2b35e);
  box-shadow: 0 10px 24px rgba(45, 162, 71, 0.16);
}

.order-bar span,
.order-bar b {
  color: var(--muted);
  font-size: 12px;
}

.station-panel {
  overflow: hidden;
}

.station-map {
  position: relative;
  min-height: 360px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(45, 162, 71, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 162, 71, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
}

.station-map svg {
  position: absolute;
  inset: 10px 0 0;
  width: 100%;
  height: calc(100% - 10px);
  fill: rgba(45, 162, 71, 0.06);
  stroke: rgba(45, 162, 71, 0.26);
  stroke-width: 2;
}

.station-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
}

.station-hotspot i {
  display: block;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 199, 96, 0.92) 0 28%, rgba(255, 199, 96, 0.32) 29% 56%, rgba(255, 199, 96, 0.08) 57% 100%);
  animation: heatPulse 2.2s ease-in-out infinite;
}

.station-hotspot b {
  position: absolute;
  left: 50%;
  top: calc(100% + 4px);
  width: max-content;
  max-width: 140px;
  transform: translateX(-50%);
  color: #315842;
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
}

@keyframes heatPulse {
  50% {
    transform: scale(1.18);
    opacity: 0.78;
  }
}

@keyframes liveValueJump {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.82;
  }

  45% {
    transform: translateY(-4px) scale(1.025);
    opacity: 1;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes rollDigitUp {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-1em);
  }
}

.section {
  width: var(--page);
  margin: 0 auto;
  padding: 92px 0;
}

.section.data-screen-section {
  width: 100%;
  margin: 0 auto;
  padding: 28px max(22px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 30px;
  text-align: left;
}

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

.section-heading h2,
.role-copy h2,
.partner-content h2,
.future-section h2,
.metrics-band h2 {
  margin: 0;
  color: #1d3324;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-heading p,
.role-copy p,
.partner-content p,
.future-section p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.mission-panel {
  margin-top: -36px;
  padding-top: 78px;
  border-bottom: 1px solid rgba(45, 162, 71, 0.12);
  background: var(--white);
}

.road-statement {
  max-width: 1120px;
  margin: 0 auto 86px;
  --road-font-size: 24px;
  text-align: center;
}

.road-statement h2 {
  margin: 0;
  color: #1d3324;
  font-family: var(--font-brand);
  font-size: var(--road-font-size);
  font-weight: 900;
  line-height: 1.85;
  letter-spacing: 0;
}

.road-statement h2 span {
  display: block;
}

.road-statement p {
  margin: 18px 0 0;
  color: #1d3324;
  font-family: var(--font-brand);
  font-size: var(--road-font-size);
  font-weight: 900;
  line-height: 1.85;
}

.about-intro-panel {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  width: var(--page);
  margin: 0 auto 78px;
}

.about-intro-panel figure {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.about-intro-logo {
  display: block;
  width: min(340px, 100%);
  height: auto;
}

.about-intro-copy {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.95;
  text-align: left;
}

.about-intro-copy p {
  margin: 0;
}

.about-intro-copy p + p {
  margin-top: 18px;
}

.mission-grid,
.platform-grid,
.foundation-grid,
.taxonomy-grid,
.case-grid,
.strategy-grid,
.partner-paths,
.role-benefits {
  display: grid;
  gap: 18px;
}

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

.culture-block {
  width: var(--page);
  margin: 0 auto;
}

.mission-grid article {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(45, 162, 71, 0.14);
  text-align: center;
}

.mission-grid article:last-child {
  border-right: 0;
}

.mission-grid svg,
.principle-block svg {
  width: 58px;
  height: 58px;
  padding: 12px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.mission-grid h3,
.platform-card h3,
.foundation-grid h3,
.case-card h3,
.news-item h3 {
  margin: 18px 0 8px;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.3;
}

.mission-grid p,
.platform-card p,
.foundation-grid p,
.case-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.principles-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 780px;
  margin: 64px auto 0;
  text-align: center;
}

.principle-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 28px;
  border-right: 1px solid rgba(45, 162, 71, 0.14);
}

.principle-block:last-child {
  border-right: 0;
}

.principle-block h3 {
  margin: 18px 0 8px;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.3;
}

.principle-block p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
}

.principle-block p span {
  display: block;
}

.platform-section {
  width: 100%;
  padding-inline: 0;
  background: linear-gradient(180deg, var(--green-mist), #fff);
}

.platform-section > .section-heading,
.innovation-section > .section-heading {
  width: var(--page);
}

.ecosystem-block {
  width: var(--page);
  margin-inline: auto;
}

.ecosystem-block {
  margin-top: 54px;
}

.ecosystem-block.role-section {
  margin-top: 32px;
}

.ecosystem-block-heading {
  margin: 0 auto 34px;
  text-align: center;
}

.ecosystem-block-heading h2 {
  margin: 0;
  color: #1d3324;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.25;
}

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

.platform-card {
  position: relative;
  display: grid;
  grid-template-columns: 178px 1fr;
  align-items: stretch;
  overflow: hidden;
  min-height: 218px;
  border: 1px solid rgba(45, 162, 71, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(45, 162, 71, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.platform-card:hover,
.platform-card.is-active {
  border-color: rgba(45, 162, 71, 0.48);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.platform-card figure {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 218px;
  margin: 0;
  padding: 28px;
  border-right: 1px solid rgba(45, 162, 71, 0.12);
  background: linear-gradient(135deg, rgba(45, 162, 71, 0.04), rgba(45, 162, 71, 0.12));
}

.platform-card-logo {
  display: block;
  width: min(142px, 82%);
  max-width: 142px;
  height: 96px;
  margin: auto;
  object-fit: contain;
  object-position: center;
}

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

.platform-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: -44px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.platform-card small {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.platform-card a {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.role-section {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 0;
}

.role-copy {
  align-self: center;
  text-align: center;
}

.role-copy .secondary-button {
  margin-top: 22px;
}

.ecosystem-orbit {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: visible;
  background: transparent;
}

.role-network-lines {
  position: absolute;
  inset: 6%;
  z-index: 1;
  width: 88%;
  height: 88%;
  overflow: visible;
}

.role-network-lines .line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.42;
  filter: drop-shadow(0 0 2px rgba(45, 162, 71, 0.28));
  vector-effect: non-scaling-stroke;
  animation: network-pulse 5.8s ease-in-out infinite;
}

.line-green { stroke: rgba(45, 162, 71, 0.86); }
.line-blue { stroke: rgba(56, 186, 224, 0.82); animation-delay: -0.5s; }
.line-gold { stroke: rgba(242, 180, 18, 0.86); animation-delay: -1s; }
.line-teal { stroke: rgba(39, 170, 139, 0.82); animation-delay: -1.5s; }
.line-purple { stroke: rgba(132, 98, 178, 0.78); animation-delay: -2s; }
.line-red { stroke: rgba(226, 35, 30, 0.82); animation-delay: -2.5s; }

.role-network-lines .flow-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 0.72;
  stroke-dasharray: 5 20;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
  opacity: 0.78;
  vector-effect: non-scaling-stroke;
  animation: network-flow 3.4s linear infinite;
}

.flow-blue { animation-delay: -0.5s; }
.flow-gold { animation-delay: -1s; }
.flow-teal { animation-delay: -1.5s; }
.flow-purple { animation-delay: -2s; }
.flow-red { animation-delay: -2.5s; }

@keyframes network-flow {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -36;
  }
}

@keyframes network-pulse {
  0%,
  100% {
    opacity: 0.58;
  }
  50% {
    opacity: 1;
  }
}

.role-node {
  position: absolute;
  top: var(--node-y);
  left: var(--node-x);
  z-index: 3;
  display: flex;
  flex-direction: column;
  place-items: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: var(--node-size, 96px);
  height: var(--node-size, 96px);
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background: var(--node-color, var(--green));
  color: var(--white);
  font-size: var(--node-font, 18px);
  font-weight: 900;
  line-height: 1.1;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(29, 51, 36, 0.12);
  animation: role-float 5.6s ease-in-out infinite, node-glow 4.8s ease-in-out infinite;
  transition: transform 0.22s ease, opacity 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.role-node::before {
  display: grid;
  place-items: center;
  width: var(--icon-size, 32px);
  height: var(--icon-size, 32px);
  border: 2px solid currentColor;
  border-radius: 50%;
  color: currentColor;
  content: attr(data-symbol);
  font-size: calc(var(--icon-size, 32px) * 0.45);
  line-height: 1;
}

.role-node:hover,
.role-node.is-active {
  filter: saturate(1.06);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 22px 52px rgba(29, 51, 36, 0.18);
}

.role-node.is-dim {
  opacity: 0.34;
}

.node-service-provider {
  --node-x: 50%;
  --node-y: 10%;
  --node-size: 110px;
  --node-color: #43b82e;
}

.node-service {
  --node-x: 50%;
  --node-y: 29%;
  --node-size: 74px;
  --node-font: 14px;
  --icon-size: 25px;
  --node-color: #8362b3;
  animation-delay: -1s;
}

.node-operator {
  --node-x: 50%;
  --node-y: 50%;
  --node-size: 150px;
  --node-font: 30px;
  --icon-size: 48px;
  --node-color: #ed1c18;
  animation-delay: -2.2s;
}

.node-supplier {
  --node-x: 17%;
  --node-y: 69%;
  --node-size: 116px;
  --node-font: 21px;
  --icon-size: 36px;
  --node-color: #ff8d18;
  animation-delay: -0.4s;
}

.node-provider {
  --node-x: 36%;
  --node-y: 60%;
  --node-size: 66px;
  --node-font: 13px;
  --icon-size: 22px;
  --node-color: #8465b1;
  animation-delay: -3.1s;
}

.node-buyer {
  --node-x: 83%;
  --node-y: 69%;
  --node-size: 116px;
  --node-font: 21px;
  --icon-size: 36px;
  --node-color: #f7d116;
  animation-delay: -1.6s;
}

.node-purchaser {
  --node-x: 64%;
  --node-y: 60%;
  --node-size: 66px;
  --node-font: 13px;
  --icon-size: 22px;
  --node-color: #8465b1;
  animation-delay: -2.6s;
}

.node-broker-left,
.node-broker-right,
.node-broker-bottom {
  --node-size: 108px;
  --node-font: 21px;
  --icon-size: 34px;
  --node-color: #2fb99f;
  animation-delay: -0.8s;
}

.node-broker-left {
  --node-x: 34%;
  --node-y: 39%;
}

.node-broker-right {
  --node-x: 66%;
  --node-y: 39%;
  animation-delay: -1.4s;
}

.node-broker-bottom {
  --node-x: 50%;
  --node-y: 67%;
  animation-delay: -2s;
}

.node-agent-left,
.node-agent-right,
.node-agent-bottom {
  --node-size: 82px;
  --node-font: 17px;
  --icon-size: 28px;
  --node-color: #35badd;
  animation-delay: -3.8s;
}

.node-agent-left {
  --node-x: 12%;
  --node-y: 30%;
}

.node-agent-right {
  --node-x: 88%;
  --node-y: 30%;
  animation-delay: -2.8s;
}

.node-agent-bottom {
  --node-x: 50%;
  --node-y: 87%;
  animation-delay: -1.8s;
}

@keyframes role-float {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -8px;
  }
}

@keyframes node-glow {
  0%,
  100% {
    box-shadow: 0 18px 40px rgba(29, 51, 36, 0.12);
  }
  50% {
    box-shadow: 0 22px 48px rgba(45, 162, 71, 0.2);
  }
}

.role-benefits {
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 8px;
}

.role-benefits article,
.strategy-grid article {
  padding: 20px;
  border-left: 3px solid var(--green);
  background: var(--green-mist);
}

.role-benefits strong,
.strategy-grid strong {
  display: block;
  color: var(--green-deep);
  font-size: 18px;
}

.role-benefits span,
.strategy-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.innovation-section {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: linear-gradient(180deg, #fff, var(--green-mist));
}

.foundation-grid,
.taxonomy-grid {
  grid-template-columns: repeat(4, 1fr);
}

.foundation-grid article,
.taxonomy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 142px;
  padding: 24px;
  border: 1px solid rgba(45, 162, 71, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
}

.taxonomy-card strong {
  display: block;
  color: var(--green-deep);
  font-size: 21px;
  line-height: 1.35;
}

.taxonomy-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.taxonomy-card.compact {
  min-height: 106px;
}

.taxonomy-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  margin-top: 72px;
}

.taxonomy-block {
  width: min(100%, 980px);
  margin: 0 auto;
}

.taxonomy-block .section-heading.left {
  margin-inline: auto;
  text-align: center;
}

.compact-heading {
  margin-bottom: 22px;
}

.compact-heading h2 {
  font-size: clamp(28px, 3vw, 40px);
}

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

.foundation-grid a {
  display: inline-flex;
  margin-top: 24px;
  color: var(--green);
  font-weight: 900;
}

.foundation-icon {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.foundation-icon.engine {
  background:
    radial-gradient(circle at 50% 50%, var(--green) 0 8px, transparent 9px),
    conic-gradient(from 10deg, transparent 0 8%, var(--green) 8% 16%, transparent 16% 24%, var(--green) 24% 32%, transparent 32% 40%, var(--green) 40% 48%, transparent 48% 56%, var(--green) 56% 64%, transparent 64% 72%, var(--green) 72% 80%, transparent 80%),
    var(--green-soft);
}

.foundation-icon.network {
  background:
    radial-gradient(circle at 20px 20px, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 52px 18px, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 42px 52px, var(--green) 0 5px, transparent 6px),
    linear-gradient(35deg, transparent 47%, var(--green) 48% 52%, transparent 53%),
    linear-gradient(128deg, transparent 47%, var(--green) 48% 52%, transparent 53%),
    var(--green-soft);
}

.foundation-icon.gene {
  background:
    linear-gradient(65deg, transparent 45%, var(--green) 46% 52%, transparent 53%),
    linear-gradient(115deg, transparent 45%, var(--green) 46% 52%, transparent 53%),
    radial-gradient(ellipse at center, transparent 34%, var(--green) 35% 39%, transparent 40%),
    var(--green-soft);
}

.metrics-band {
  background-image:
    linear-gradient(90deg, rgba(45, 162, 71, 0.94), rgba(45, 162, 71, 0.72)),
    url("assets/hero-farmland.png");
  background-position: center;
  background-size: cover;
  color: var(--white);
}

.metrics-inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
  width: var(--page);
  margin: 0 auto;
  padding: 52px 0;
}

.metrics-band .section-kicker,
.metrics-band h2 {
  color: var(--white);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.metrics-grid article {
  min-height: 116px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.metrics-grid strong {
  display: block;
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
}

.metrics-grid strong::after {
  content: "";
}

.metrics-grid span {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-filters button {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(45, 162, 71, 0.18);
  border-radius: 18px;
  background: var(--white);
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
}

.case-filters button.active {
  background: var(--green);
  color: var(--white);
}

.case-grid {
  grid-template-columns: repeat(4, 1fr);
}

.case-card {
  overflow: hidden;
  border: 1px solid rgba(45, 162, 71, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(45, 162, 71, 0.06);
}

.case-card figure {
  height: 148px;
  margin: 0;
  background-image: url("assets/hero-farmland.png");
  background-size: 780px;
}

.case-card:nth-child(2) figure { background-position: 44% 74%; }
.case-card:nth-child(3) figure { background-position: 82% 34%; }
.case-card:nth-child(4) figure { background-position: 15% 58%; }

.case-card .case-body {
  padding: 20px;
}

.case-card .tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.case-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}

.partner-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
  gap: 42px;
  align-items: center;
  padding: 78px max(20px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(45, 162, 71, 0.9), rgba(45, 162, 71, 0.68)),
    url("assets/hero-farmland.png");
  background-position: center 62%;
  background-size: cover;
  color: var(--white);
}

.partner-content .section-kicker,
.partner-content h2,
.partner-content p {
  color: var(--white);
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.partner-paths {
  grid-template-columns: repeat(3, 1fr);
}

.partner-paths :is(article, a) {
  min-height: 170px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(8px);
}

.partner-path-card {
  display: block;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.partner-path-card:hover {
  border-color: rgba(45, 162, 71, 0.42);
  box-shadow: 0 18px 38px rgba(45, 162, 71, 0.12);
  transform: translateY(-3px);
}

.partner-paths strong {
  display: block;
  font-size: 22px;
}

.partner-paths span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.symbiosis-section {
  background: linear-gradient(180deg, var(--white), var(--green-mist));
}

.micro-org-section {
  position: relative;
  max-width: none;
  width: 100%;
  padding: 92px max(22px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background: linear-gradient(180deg, var(--green-mist), var(--white));
  text-align: center;
}

.micro-org-heading {
  max-width: 760px;
  margin: 0 auto 38px;
}

.micro-org-heading h2 {
  margin: 0;
  color: #1d3324;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
  text-shadow: none;
  -webkit-text-stroke: 0;
}

.micro-org-heading p {
  display: grid;
  grid-template-columns: minmax(60px, 1fr) auto minmax(60px, 1fr);
  gap: 22px;
  align-items: center;
  margin: 20px auto 0;
  color: var(--green);
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.35;
}

.micro-org-heading p span {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(45, 162, 71, 0.5));
}

.micro-org-heading p span:last-child {
  background: linear-gradient(90deg, rgba(45, 162, 71, 0.5), transparent);
}

.micro-org-heading p span::after {
  position: absolute;
  top: 50%;
  right: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translateY(-50%);
  content: "";
}

.micro-org-heading p span:last-child::after {
  right: auto;
  left: -4px;
}

.micro-org-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1120px);
  margin: 0 auto;
  align-items: center;
  justify-content: center;
}

.micro-org-card {
  display: flex;
  justify-content: center;
  min-height: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.micro-org-card::after {
  content: none;
}

.micro-org-card img {
  display: block;
  width: min(100%, 250px);
  height: auto;
  filter: drop-shadow(0 20px 36px rgba(45, 162, 71, 0.16));
}

.micro-org-slogan {
  display: grid;
  gap: 10px;
  margin-top: 46px;
  color: var(--green);
}

.micro-org-slogan strong {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
}

.micro-org-slogan span {
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 700;
  letter-spacing: 0;
}

.symbiosis-head {
  margin-bottom: 38px;
}

.symbiosis-head .partner-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.partner-logos-panel {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partner-logos-panel h3 {
  position: relative;
  margin: 0 0 28px;
  padding-left: 18px;
  color: #111;
  font-size: 34px;
  line-height: 1.2;
}

.partner-logos-panel h3::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 4px;
  background: var(--green);
  content: "";
}

.partner-logo-wall {
  margin: 0;
  padding: 0;
  text-align: center;
}

.partner-logo-wall img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
  background: transparent;
  mix-blend-mode: multiply;
}

.symbiosis-section .partner-paths {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.symbiosis-section .partner-paths :is(article, a) {
  min-height: 152px;
  border: 1px solid rgba(45, 162, 71, 0.14);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(45, 162, 71, 0.06);
  backdrop-filter: none;
}

.symbiosis-section .partner-paths strong {
  color: var(--green-deep);
}

.symbiosis-section .partner-paths span {
  color: var(--muted);
}

.future-section {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(340px, 0.72fr);
  gap: 38px;
}

.strategy-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 28px;
}

.news-panel {
  padding: 28px;
  border: 1px solid rgba(45, 162, 71, 0.16);
  border-radius: var(--radius);
  background: var(--green-mist);
}

.panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.panel-title h3 {
  margin: 0;
  color: var(--green-deep);
  font-size: 24px;
}

.panel-title a {
  color: var(--green);
  font-weight: 900;
}

.news-item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(45, 162, 71, 0.12);
}

.news-item:last-child {
  border-bottom: 0;
}

.news-item time,
.news-label {
  color: var(--gold);
  font-family: var(--font-brand);
  font-size: 13px;
  font-weight: 800;
}

.news-item h3 {
  margin: 0;
  font-size: 17px;
}

.news-item h3 a {
  color: inherit;
  text-decoration: none;
}

.news-item h3 a:hover {
  color: var(--green);
}

.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  background: var(--green);
  color: rgba(255, 255, 255, 0.82);
}

.footer-cta,
.footer-map,
.footer-bottom {
  width: var(--page);
  margin: 0 auto;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-cta strong {
  display: block;
  color: var(--white);
  font-size: 28px;
}

.footer-cta span {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-weight: 900;
}

.footer-cta .primary-button {
  border-color: var(--white);
  background: var(--white);
  color: var(--green);
  box-shadow: 0 16px 34px rgba(255, 255, 255, 0.24);
}

.footer-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  padding: 46px 0 38px;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
  padding: 0 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-map h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 17px;
}

.footer-map a,
.footer-contact span,
.footer-contact p {
  display: block;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-map a {
  width: max-content;
  max-width: 100%;
  transition: color 0.2s ease;
}

.footer-link-groups a {
  margin: 9px auto;
}

.footer-map a:hover {
  color: var(--white);
}

.footer-contact {
  display: grid;
  width: 100%;
  grid-template-columns: 112px minmax(360px, 0.68fr) minmax(650px, 1.32fr);
  justify-content: center;
  gap: 18px;
  align-items: start;
  margin: 0 auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.footer-qr {
  grid-row: auto;
  align-self: start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.footer-qr span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.footer-company h3,
.footer-branches h4 {
  margin: 0 0 12px;
  color: var(--white);
  line-height: 1.35;
}

.footer-company h3 {
  font-size: clamp(17px, 1.22vw, 20px);
  white-space: nowrap;
}

.footer-company {
  grid-column: 2;
  justify-self: stretch;
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0;
  text-align: left;
}

.footer-company p,
.footer-branches p {
  line-height: 1.65;
}

.footer-company p {
  font-size: clamp(10px, 0.78vw, 12px);
  max-width: 100%;
  white-space: nowrap;
}

.footer-company strong {
  color: rgba(255, 255, 255, 0.9);
}

.footer-branches {
  grid-column: 3;
  position: relative;
  justify-self: end;
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  align-self: start;
  padding-left: 18px;
  border-left: 0;
  text-align: left;
}

.footer-branches article {
  text-align: left;
}

.footer-branches::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: min(116px, 66%);
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-50%);
  content: "";
}

.footer-branches h4 {
  margin-bottom: 10px;
  font-size: clamp(14px, 0.96vw, 17px);
  white-space: nowrap;
}

.footer-branches p {
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 1.45;
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .footer-contact {
    grid-template-columns: 112px minmax(360px, 1fr);
  }

  .footer-company {
    grid-column: 2;
  }

  .footer-branches {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-self: end;
    width: min(100%, 680px);
    margin-top: 8px;
    padding-left: 0;
  }

  .footer-branches::before {
    content: none;
  }
}

.qr-code {
  width: 104px;
  height: 104px;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  border: 6px solid #fff;
  background: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.admin-login-link {
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.admin-login-link:hover {
  color: var(--white);
}

.floating-tools {
  position: fixed;
  right: 20px;
  bottom: 28px;
  z-index: 35;
  display: grid;
  gap: 10px;
}

.floating-tools button,
.floating-tools a {
  box-shadow: 0 10px 25px rgba(45, 162, 71, 0.12);
}

dialog {
  border: 0;
  padding: 0;
  background: transparent;
}

dialog::backdrop {
  background: rgba(14, 31, 19, 0.55);
  backdrop-filter: blur(6px);
}

.modal-shell,
.search-shell,
.commission-shell {
  position: relative;
  width: min(920px, calc(100vw - 32px));
  max-height: min(780px, calc(100vh - 32px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.modal-shell {
  padding: 38px;
}

.search-shell,
.commission-shell {
  width: min(760px, calc(100vw - 32px));
  padding: 34px;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(45, 162, 71, 0.15);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

.modal-head h2,
.search-shell h2,
.commission-head h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: 34px;
  line-height: 1.2;
}

.modal-head p,
.commission-head p {
  margin: 12px 0 0;
  color: var(--muted);
}

.commission-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.commission-form label {
  display: grid;
  gap: 8px;
  color: var(--green-deep);
  font-weight: 900;
}

.commission-form select,
.commission-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(45, 162, 71, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 0 14px;
  outline: 0;
}

.commission-form select:focus,
.commission-form input:focus {
  border-color: rgba(45, 162, 71, 0.6);
  box-shadow: 0 0 0 3px rgba(45, 162, 71, 0.12);
}

.commission-result {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(45, 162, 71, 0.14);
  border-radius: var(--radius);
  background: var(--green-mist);
}

.commission-result span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.commission-result strong {
  display: block;
  margin-top: 8px;
  color: var(--green-deep);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.commission-result p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.role-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 112px;
  padding: 16px;
  border: 1px solid rgba(45, 162, 71, 0.14);
  border-radius: var(--radius);
  background: var(--green-mist);
  text-align: left;
}

.role-card:hover {
  border-color: rgba(45, 162, 71, 0.42);
  background: var(--white);
}

.role-card b {
  display: block;
  color: var(--green-deep);
  font-size: 17px;
}

.role-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.role-card i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-style: normal;
  font-weight: 900;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  margin-top: 24px;
  padding: 0 16px;
  border: 1px solid rgba(45, 162, 71, 0.22);
  border-radius: var(--radius);
  color: var(--green);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.search-result {
  padding: 16px;
  border: 1px solid rgba(45, 162, 71, 0.12);
  border-radius: var(--radius);
  background: var(--green-mist);
}

.search-result strong {
  display: block;
  color: var(--green-deep);
}

.search-result span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 80;
  max-width: min(520px, calc(100vw - 40px));
  padding: 12px 18px;
  border-radius: 6px;
  background: #202820;
  color: var(--white);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .brand-lockup {
    width: 210px;
  }

  .desktop-nav {
    gap: 14px;
    font-size: 14px;
  }

  .header-actions {
    gap: 8px;
  }

  .primary-button.compact {
    padding-inline: 14px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .login-link,
  .language-switch {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .platform-grid,
  .case-grid,
  .micro-org-grid,
  .data-kpi-grid,
  .taxonomy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .station-map {
    min-height: 320px;
  }

  .role-section,
  .future-section,
  .partner-cta,
  .metrics-inner,
  .taxonomy-split {
    grid-template-columns: 1fr;
  }

  .role-copy {
    text-align: center;
  }

  .metrics-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .footer-map {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    grid-column: auto;
  }

  .symbiosis-section .partner-paths {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1200px) {
  .footer-map,
  .footer-bottom {
    padding-right: 78px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100vw - 28px, 1180px);
  }

  .site-header {
    height: 66px;
    padding-inline: 14px;
  }

  .brand-lockup {
    width: min(190px, 52vw);
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .header-actions .icon-button,
  .primary-button.compact {
    display: none;
  }

  .mobile-drawer {
    top: 66px;
  }

  .hero-section {
    min-height: 760px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(246, 252, 247, 0.96) 0%, rgba(246, 252, 247, 0.74) 52%, rgba(246, 252, 247, 0.08) 100%),
      linear-gradient(90deg, rgba(246, 252, 247, 0.85), transparent);
  }

  .hero-content {
    padding-top: clamp(188px, 31vh, 238px);
  }

  .hero-content h1 {
    font-size: 16pt;
    line-height: 1.35;
  }

  .hero-actions,
  .partner-actions,
  .footer-cta,
  .footer-bottom,
  .section-heading.split {
    align-items: stretch;
    flex-direction: column;
  }

  .section {
    padding: 64px 0;
  }

  .data-screen-section {
    width: 100%;
    margin-top: 0;
    padding: 20px 14px;
  }

  .data-ticker-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 104px;
  }

  .data-ticker-row > strong {
    gap: 0.25em;
  }

  .data-ticker-prefix {
    font-size: 18px;
  }

  .data-ticker-name {
    font-size: 18px;
  }

  .data-ticker-window {
    gap: 10px;
  }

  .data-ticker-unit {
    font-size: 17px;
  }

  .data-ticker-window b {
    font-size: 34px;
  }

  .data-screen-section [data-screen-status] {
    text-align: left;
  }

  .order-bars {
    gap: 6px;
    overflow-x: auto;
  }

  .order-bar {
    min-width: 42px;
  }

  .mission-panel {
    padding-top: 64px;
  }

  .road-statement {
    margin-bottom: 56px;
  }

  .road-statement h2 {
    font-size: var(--road-font-size);
    line-height: 1.85;
  }

  .road-statement p {
    margin-top: 18px;
    font-size: var(--road-font-size);
  }

  .about-intro-panel {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
  }

  .about-intro-panel figure {
    padding: 24px;
  }

  .about-intro-copy {
    font-size: 15px;
    line-height: 1.85;
  }

  .mission-grid,
  .foundation-grid,
  .micro-org-grid,
  .taxonomy-grid,
  .taxonomy-grid.small,
  .role-benefits,
  .strategy-grid,
  .footer-map,
  .footer-link-groups,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .symbiosis-section .partner-paths {
    grid-template-columns: 1fr;
  }

  .micro-org-section {
    padding-block: 68px;
  }

  .micro-org-heading {
    margin-bottom: 38px;
  }

  .micro-org-heading p {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .micro-org-heading p span {
    width: min(180px, 56vw);
    margin: 0 auto;
  }

  .micro-org-card {
    min-height: 0;
  }

  .partner-logos-panel {
    padding: 24px 18px;
  }

  .mission-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 162, 71, 0.12);
  }

  .mission-grid article:last-child {
    border-bottom: 0;
  }

  .footer-contact,
  .footer-branches {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    padding: 24px 20px;
  }

  .footer-company p,
  .footer-branches h4,
  .footer-branches p {
    white-space: normal;
  }

  .footer-qr {
    grid-row: auto;
  }

  .footer-company {
    grid-column: auto;
  }

  .footer-branches {
    grid-column: auto;
    padding-left: 0;
    border-left: 0;
  }

  .footer-branches::before {
    content: none;
  }

  .principles-panel {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 62px;
  }

  .principle-block {
    border-right: 0;
    border-bottom: 1px solid rgba(45, 162, 71, 0.12);
  }

  .principle-block:last-child {
    border-bottom: 0;
  }

  .principle-block h3 {
    font-size: 21px;
  }

  .principle-block p {
    font-size: 15px;
  }

  .platform-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    grid-template-columns: 112px 1fr;
    min-height: 190px;
  }

  .platform-card figure {
    min-height: 190px;
    padding: 18px;
  }

  .platform-card-logo {
    width: min(92px, 84%);
    max-width: 92px;
    height: 72px;
  }

  .platform-card .card-body {
    padding: 20px 18px;
  }

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

  .platform-card p {
    font-size: 14px;
  }

  .ecosystem-block-heading {
    align-items: flex-start;
  }

  .ecosystem-block-heading h2 {
    font-size: 24px;
  }

  .role-section {
    gap: 28px;
  }

  .ecosystem-orbit {
    width: min(100%, 560px);
    aspect-ratio: 1;
  }

  .role-node {
    font-size: var(--node-font, 12px);
  }

  .node-service-provider {
    --node-y: 11%;
    --node-size: 76px;
    --node-font: 15px;
    --icon-size: 24px;
  }

  .node-service {
    --node-y: 30%;
    --node-size: 54px;
    --node-font: 11px;
    --icon-size: 18px;
  }

  .node-operator {
    --node-size: 100px;
    --node-font: 21px;
    --icon-size: 34px;
  }

  .node-supplier,
  .node-buyer {
    --node-size: 82px;
    --node-font: 16px;
    --icon-size: 26px;
  }

  .node-provider,
  .node-purchaser {
    --node-y: 60%;
    --node-size: 50px;
    --node-font: 10px;
    --icon-size: 16px;
  }

  .node-broker-left,
  .node-broker-right,
  .node-broker-bottom {
    --node-size: 78px;
    --node-font: 16px;
    --icon-size: 25px;
  }

  .node-agent-left,
  .node-agent-right,
  .node-agent-bottom {
    --node-size: 62px;
    --node-font: 13px;
    --icon-size: 20px;
  }

  .role-network-lines {
    inset: 6% 3%;
    width: 94%;
    height: 88%;
  }

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

  .metrics-grid article {
    min-height: 104px;
  }

  .floating-tools {
    right: 12px;
    bottom: 16px;
  }

  .modal-shell,
  .search-shell,
  .commission-shell {
    padding: 28px 18px;
  }

  .commission-form {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-content,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
