:root {
  --ink: #f6f8f7;
  --muted: #b9c3bf;
  --dim: #7f8b87;
  --bg: #0d1110;
  --panel: #141a18;
  --panel-2: #18201e;
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #4fd7d7;
  --amber: #f4bd51;
  --green: #7fdc8f;
  --rose: #ef7d87;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(110deg, rgba(79, 215, 215, 0.08), transparent 28%),
    linear-gradient(250deg, rgba(244, 189, 81, 0.07), transparent 30%),
    linear-gradient(180deg, #0a0f0e 0%, #101615 48%, #0d1110 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", "PingFang SC", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

button {
  font: inherit;
}

.site-header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.top-nav {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 17, 16, 0.68);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  white-space: nowrap;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: inline-block;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 215, 215, 0.96), rgba(127, 220, 143, 0.82)),
    linear-gradient(45deg, transparent 44%, rgba(255, 255, 255, 0.8) 45% 55%, transparent 56%);
  box-shadow: 0 0 24px rgba(79, 215, 215, 0.34);
}

.nav-links {
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 410px;
  align-items: center;
  gap: 32px;
  padding: 140px max(28px, calc((100vw - 1180px) / 2)) 48px;
}

.hero-visual {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.62;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 13, 12, 0.94) 0%, rgba(9, 13, 12, 0.74) 38%, rgba(9, 13, 12, 0.36) 72%, rgba(9, 13, 12, 0.76) 100%),
    linear-gradient(180deg, rgba(9, 13, 12, 0.36) 0%, rgba(9, 13, 12, 0.76) 100%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
  padding-bottom: 0;
}

.eyebrow,
.panel-kicker {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 760;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-size: 58px;
  line-height: 1.08;
  font-weight: 850;
}

.hero-lead {
  max-width: 760px;
  color: #d5ddd9;
  font-size: 20px;
}

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

.primary-action,
.secondary-action {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 8px;
  font-weight: 760;
}

.primary-action {
  color: #071211;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 12px 34px rgba(79, 215, 215, 0.24);
}

.secondary-action {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  align-self: center;
  margin-bottom: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(13, 18, 17, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.identity-card {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.identity-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 176px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.identity-label {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.identity-copy {
  min-width: 0;
}

.profile-actions {
  display: grid;
  align-items: center;
  justify-items: center;
  flex-shrink: 0;
  min-height: 156px;
}

.fosun-badge {
  width: 176px;
  height: 94px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.fosun-wordmark {
  display: grid;
  place-items: center;
  color: #9a6738;
  line-height: 1;
  transform: translateY(1px);
}

.fosun-en,
.fosun-cn {
  display: block;
  font-family: Arial, "Helvetica Neue", "Microsoft YaHei", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(154, 103, 56, 0.18);
}

.fosun-en {
  font-size: 34px;
}

.fosun-cn {
  margin-top: 8px;
  font-size: 28px;
}

.dingtalk-button {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 7px 12px 7px 7px;
  border: 1px solid rgba(79, 215, 215, 0.38);
  border-radius: 8px;
  color: #eef7f4;
  background: rgba(79, 215, 215, 0.08);
  font-size: 13px;
  font-weight: 780;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.dingtalk-button:hover {
  transform: translateY(-1px);
  border-color: rgba(79, 215, 215, 0.7);
  background: rgba(79, 215, 215, 0.18);
}

.dingtalk-button img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
}

.identity-copy strong {
  display: block;
  margin-bottom: 4px;
  font-size: 30px;
}

.identity-copy p {
  margin-bottom: 0;
  color: #dce8e4;
  font-weight: 720;
}

.hero-panel strong {
  display: block;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.25;
}

.hero-panel p {
  color: var(--muted);
  margin-bottom: 20px;
}

.department-line {
  margin: 4px 0 18px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.department-line span {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.department-line p {
  margin-bottom: 0;
  color: #eef6f3;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

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

.signal-grid span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #eaf5f1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 720;
}

.band {
  padding: 88px 0;
}

.soft-band {
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.overview {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 14, 13, 0.72);
}

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

.metric {
  padding: 22px;
  min-height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.metric-value {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  font-weight: 850;
}

.metric-label {
  color: var(--muted);
  font-weight: 680;
}

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

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading h2,
.final-grid h2 {
  margin-bottom: 14px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 820;
}

.section-heading p,
.final-grid p {
  color: var(--muted);
  font-size: 17px;
}

.big-flow {
  position: relative;
  display: grid;
  gap: 18px;
  margin: 34px 0 54px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 215, 215, 0.08), rgba(244, 189, 81, 0.035) 48%, rgba(127, 220, 143, 0.055)),
    rgba(13, 18, 17, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.big-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 76%);
}

.bf-interaction-tip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 10px 13px;
  border: 1px solid rgba(79, 215, 215, 0.28);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(79, 215, 215, 0.07);
  font-size: 12px;
  line-height: 1.45;
}

.bf-interaction-tip strong,
.bf-interaction-tip span {
  display: block;
}

.bf-interaction-tip strong {
  margin-bottom: 2px;
  color: var(--cyan);
  font-size: 12px;
}

.tip-signal {
  position: relative;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border: 1px solid rgba(79, 215, 215, 0.42);
  border-radius: 50%;
}

.tip-signal::before,
.tip-signal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: translate(-50%, -70%) rotate(45deg);
}

.tip-signal::after {
  opacity: 0.35;
  transform: translate(-50%, 10%) rotate(45deg);
}

.bf-stage,
.flow-subheading {
  position: relative;
  z-index: 1;
}

.bf-stage {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.bf-section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.bf-section-title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: currentColor;
  box-shadow: 0 0 18px currentColor;
}

.bf-row,
.bf-multi-col {
  display: grid;
  gap: 10px;
}

.bf-row.single {
  grid-template-columns: minmax(240px, 420px);
  justify-content: center;
}

.bf-row.chain {
  grid-template-columns: minmax(0, 0.72fr) 32px minmax(0, 1.1fr);
  align-items: stretch;
}

.delivery-chain {
  grid-template-columns: minmax(0, 1fr) 22px minmax(0, 0.82fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr) 22px minmax(0, 1fr);
  align-items: stretch;
}

.bf-multi-col.six-col {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.bf-multi-col.parallel-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bf-node {
  min-height: 62px;
  display: grid;
  align-content: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #edf5f2;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 720;
  line-height: 1.35;
}

button.bf-node {
  width: 100%;
  margin: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
}

.flow-trigger {
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.flow-trigger:hover,
.flow-trigger:focus-visible {
  z-index: 1;
  transform: translateY(-2px);
  border-color: rgba(79, 215, 215, 0.62);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  outline: none;
}

.flow-trigger[aria-expanded="true"] {
  border-color: rgba(79, 215, 215, 0.76);
  box-shadow: inset 0 0 0 1px rgba(79, 215, 215, 0.16), 0 14px 34px rgba(0, 0, 0, 0.22);
}

.node-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: 9px;
  color: rgba(237, 245, 242, 0.7);
  font-size: 11px;
  font-weight: 750;
}

.bf-node.highlight .node-action {
  color: rgba(7, 18, 17, 0.68);
}

.node-chevron {
  display: inline-block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.flow-trigger[aria-expanded="true"] .node-chevron {
  transform: translateY(2px) rotate(225deg);
}

.parallel-col .flow-trigger,
.delivery-chain .flow-trigger {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 10px;
}

.parallel-col .flow-trigger .node-chevron,
.delivery-chain .flow-trigger .node-chevron {
  justify-self: end;
  color: var(--cyan);
}

.bf-node.center {
  text-align: center;
  border-color: rgba(79, 215, 215, 0.38);
  background:
    linear-gradient(135deg, rgba(79, 215, 215, 0.16), rgba(79, 215, 215, 0.04)),
    rgba(255, 255, 255, 0.045);
}

.bf-node.highlight {
  text-align: center;
  color: #071211;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  box-shadow: 0 14px 34px rgba(79, 215, 215, 0.16);
}

.bf-node.demand {
  min-height: 118px;
  align-content: start;
  gap: 7px;
  --demand-accent: 79, 215, 215;
  border-color: rgba(var(--demand-accent), 0.3);
  background:
    linear-gradient(145deg, rgba(var(--demand-accent), 0.16), rgba(var(--demand-accent), 0.04) 52%, rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.045);
}

.bf-node.demand.build {
  --demand-accent: 244, 189, 81;
}

.bf-node.demand.model {
  --demand-accent: 127, 220, 143;
}

.bf-node.demand.operate {
  --demand-accent: 239, 125, 135;
}

.bf-node.demand.research {
  --demand-accent: 112, 178, 255;
}

.bf-node.demand.strategy {
  --demand-accent: 218, 226, 222;
}

.bf-type {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 8px;
  color: rgb(var(--demand-accent));
  border: 1px solid rgba(var(--demand-accent), 0.32);
  background: rgba(var(--demand-accent), 0.1);
  font-size: 12px;
  font-weight: 850;
}

.bf-node.demand strong,
.bf-node.demand small {
  display: block;
}

.bf-node.demand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.flow-detail-drawer {
  --detail-accent: 79, 215, 215;
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  opacity: 0;
  transition: grid-template-rows 320ms ease, opacity 220ms ease, margin-top 320ms ease;
}

.flow-detail-drawer.is-open {
  grid-template-rows: 1fr;
  margin-top: 16px;
  opacity: 1;
}

.flow-detail-inner {
  min-height: 0;
  overflow: hidden;
}

.flow-detail-surface {
  padding: 20px;
  border-top: 1px solid rgba(var(--detail-accent), 0.48);
  border-bottom: 1px solid rgba(var(--detail-accent), 0.22);
  background:
    linear-gradient(135deg, rgba(var(--detail-accent), 0.1), transparent 44%),
    rgba(5, 11, 10, 0.46);
}

.flow-detail-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 20px;
}

.flow-detail-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: rgb(var(--detail-accent));
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.flow-detail-header h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.3;
}

.flow-detail-header p {
  max-width: 820px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.flow-detail-count {
  min-width: 76px;
  padding: 8px 10px;
  border: 1px solid rgba(var(--detail-accent), 0.3);
  border-radius: 8px;
  color: rgb(var(--detail-accent));
  background: rgba(var(--detail-accent), 0.08);
  font-size: 12px;
  font-weight: 820;
  text-align: center;
}

.flow-phase-grid {
  display: grid;
  grid-template-columns: repeat(var(--phase-columns, 4), minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-phase {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.flow-phase:last-child {
  border-right: 0;
}

.flow-phase h4 {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: #edf5f2;
  font-size: 13px;
}

.flow-phase h4::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 2px;
  background: rgb(var(--detail-accent));
  box-shadow: 0 0 14px rgba(var(--detail-accent), 0.45);
}

.flow-node-list {
  counter-reset: detail-node;
  display: grid;
  gap: 7px;
  list-style: none;
}

.flow-node-list li {
  counter-increment: detail-node;
  position: relative;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 7px 8px 7px 34px;
  color: #dce7e3;
  background: rgba(255, 255, 255, 0.045);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.flow-node-list li::before {
  content: counter(detail-node, decimal-leading-zero);
  position: absolute;
  left: 8px;
  color: rgb(var(--detail-accent));
  font-size: 9px;
  font-weight: 850;
}

.flow-deliverables {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 16px;
}

.flow-deliverables strong {
  color: rgb(var(--detail-accent));
  font-size: 12px;
}

.flow-deliverables span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.bf-arrow,
.bf-arrow-down {
  display: grid;
  place-items: center;
}

.bf-arrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(79, 215, 215, 0.18), rgba(79, 215, 215, 0.9));
}

.bf-arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -9px;
  border-top: 1px solid rgba(79, 215, 215, 0.9);
  border-right: 1px solid rgba(79, 215, 215, 0.9);
  transform: rotate(45deg);
}

.bf-arrow-down {
  height: 22px;
}

.bf-arrow-down::before {
  content: "";
  width: 1px;
  height: 22px;
  background: linear-gradient(180deg, rgba(79, 215, 215, 0.18), rgba(79, 215, 215, 0.8));
}

.bf-arrow-down::after {
  content: "";
  position: relative;
  width: 8px;
  height: 8px;
  margin-top: -11px;
  border-right: 1px solid rgba(79, 215, 215, 0.82);
  border-bottom: 1px solid rgba(79, 215, 215, 0.82);
  transform: rotate(45deg);
}

.flow-subheading {
  margin: 0 0 18px;
}

.flow-subheading h3 {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 1.25;
}

.workflow-map {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.workflow-step {
  position: relative;
  min-height: 218px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    var(--panel);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.workflow-step::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 42px;
  right: -20px;
  bottom: 18px;
  transform: rotate(-28deg);
  background: linear-gradient(90deg, rgba(79, 215, 215, 0.22), rgba(79, 215, 215, 0.02));
}

.workflow-step:nth-child(4n + 2)::after {
  background: linear-gradient(90deg, rgba(244, 189, 81, 0.22), rgba(244, 189, 81, 0.02));
}

.workflow-step:nth-child(4n + 3)::after {
  background: linear-gradient(90deg, rgba(127, 220, 143, 0.2), rgba(127, 220, 143, 0.02));
}

.workflow-step:nth-child(4n + 4)::after {
  background: linear-gradient(90deg, rgba(239, 125, 135, 0.2), rgba(239, 125, 135, 0.02));
}

.workflow-step:hover,
.workflow-step.active {
  transform: translateY(-4px);
  border-color: rgba(79, 215, 215, 0.55);
  background:
    linear-gradient(180deg, rgba(79, 215, 215, 0.12), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--cyan);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 830;
}

.workflow-step h3,
.platform-card h3,
.monitor-stack h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.3;
}

.workflow-step p,
.platform-card p,
.priority p,
.monitor-stack p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 36px;
  align-items: start;
}

.priority-board {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.priority {
  min-height: 190px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.priority span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #081210;
  font-weight: 850;
}

.priority strong {
  display: block;
  margin-bottom: 10px;
  line-height: 1.35;
}

.p0 span { background: var(--rose); }
.p1 span { background: var(--amber); }
.p2 span { background: var(--cyan); }
.p3 span { background: var(--green); }
.p4 span { background: #d7dcd9; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tab {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.052);
  cursor: pointer;
}

.tab:hover {
  color: var(--white);
}

.tab.active {
  color: #071211;
  border-color: transparent;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 780;
}

.tab-panels {
  min-height: 300px;
}

.tab-panel {
  display: none;
  grid-template-columns: 1fr 0.72fr;
  gap: 24px;
  align-items: center;
  min-height: 300px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    linear-gradient(135deg, rgba(79, 215, 215, 0.08), rgba(244, 189, 81, 0.04));
}

.tab-panel.active {
  display: grid;
}

.tab-panel h3 {
  margin-bottom: 14px;
  font-size: 30px;
  line-height: 1.18;
}

.tab-panel p {
  color: var(--muted);
  font-size: 17px;
}

.chip-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.chip-list li,
.route-cases span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #e7efec;
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  font-weight: 680;
}

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

.platform-card {
  --card-accent: 79, 215, 215;
  min-height: 248px;
  padding: 22px;
  border: 1px solid rgba(var(--card-accent), 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(var(--card-accent), 0.2), rgba(var(--card-accent), 0.055) 44%, rgba(13, 18, 17, 0.7)),
    rgba(13, 18, 17, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.platform-card:nth-child(1) {
  --card-accent: 79, 215, 215;
}

.platform-card:nth-child(2) {
  --card-accent: 244, 189, 81;
}

.platform-card:nth-child(3) {
  --card-accent: 127, 220, 143;
}

.platform-card:nth-child(4) {
  --card-accent: 239, 125, 135;
}

.platform-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(var(--card-accent), 0.46);
  border-radius: 8px;
  color: rgb(var(--card-accent));
  background:
    linear-gradient(145deg, rgba(var(--card-accent), 0.22), rgba(var(--card-accent), 0.07)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 12px 32px rgba(var(--card-accent), 0.14);
}

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

.routing-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.2fr;
  gap: 26px;
  align-items: center;
  margin-top: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(127, 220, 143, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.routing-copy h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.22;
}

.route-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.ops-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 28px;
  align-items: start;
}

.ops-loop {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(79, 215, 215, 0.1), rgba(239, 125, 135, 0.06)),
    rgba(255, 255, 255, 0.035);
}

.ops-node {
  min-height: 116px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(13, 18, 17, 0.72);
  font-weight: 760;
}

.monitor-stack {
  display: grid;
  gap: 12px;
}

.monitor-stack article {
  min-height: 126px;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.052);
}

.final-band {
  padding: 74px 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(79, 215, 215, 0.16), rgba(244, 189, 81, 0.09) 48%, rgba(127, 220, 143, 0.12)),
    #111716;
}

.final-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 36px;
  align-items: center;
}

.final-grid h2 {
  margin-bottom: 0;
}

.final-grid p {
  margin-bottom: 0;
}

.signature-card {
  display: grid;
  gap: 22px;
}

.signature-meta {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(13, 18, 17, 0.42);
}

.signature-meta span,
.signature-meta strong,
.signature-meta em {
  display: block;
}

.signature-meta span {
  color: var(--cyan);
  font-weight: 850;
}

.signature-meta strong {
  margin-top: 6px;
  color: var(--white);
  font-size: 18px;
}

.signature-meta em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.ragdoll-companion {
  position: fixed;
  z-index: 34;
  left: 0;
  top: 0;
  width: clamp(78px, 7vw, 108px);
  height: clamp(78px, 7vw, 108px);
  cursor: pointer;
  pointer-events: auto;
  opacity: 0;
  transform: translate3d(var(--cat-x, 24px), var(--cat-y, 72px), 0) scale(var(--cat-facing, 1), 1);
  transition: opacity 220ms ease;
  will-change: transform;
  touch-action: none;
}

.ragdoll-companion.ready {
  opacity: 1;
}

.ragdoll-companion::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 14%;
  bottom: 5px;
  height: 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(6px);
  transform-origin: 50% 50%;
  animation: catShadowIdle 2.4s ease-in-out infinite;
}

.ragdoll-companion.hopping::after {
  animation: catShadowHop 780ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.ragdoll-companion.hopping img {
  animation: catBodyHop 780ms cubic-bezier(0.2, 0.9, 0.22, 1);
}

.ragdoll-companion.petting img {
  animation: catPet 760ms ease-in-out;
}

.ragdoll-companion img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.36));
  transform-origin: 50% 86%;
  animation: catIdle 1.9s ease-in-out infinite;
}

.pet-bubble,
.pet-heart {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
}

.pet-bubble {
  left: 52%;
  bottom: 84%;
  min-width: 38px;
  padding: 5px 8px;
  border: 1px solid rgba(79, 215, 215, 0.42);
  border-radius: 999px;
  color: #eafffb;
  background: rgba(10, 18, 17, 0.86);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  font-size: 12px;
  font-weight: 820;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(10px);
}

.pet-heart {
  right: 8%;
  top: -12px;
  color: #ff8998;
  font-size: 20px;
  text-shadow: 0 0 14px rgba(255, 137, 152, 0.58);
}

.ragdoll-companion.talking .pet-bubble {
  animation: petBubble 1.55s ease forwards;
}

.ragdoll-companion.petting .pet-heart {
  animation: petHeart 1.05s ease forwards;
}

@keyframes catBodyHop {
  0% {
    transform: translateY(0) rotate(0deg) scale(1.08, 0.9);
  }

  16% {
    transform: translateY(2px) rotate(-3deg) scale(0.94, 1.08);
  }

  48% {
    transform: translateY(-18px) rotate(8deg) scale(1.04);
  }

  78% {
    transform: translateY(4px) rotate(-2deg) scale(1.04, 0.94);
  }

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

@keyframes catPet {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  18% {
    transform: translateY(3px) rotate(-7deg) scale(1.08, 0.9);
  }

  42% {
    transform: translateY(-3px) rotate(8deg) scale(0.96, 1.08);
  }

  64% {
    transform: translateY(1px) rotate(-5deg) scale(1.04, 0.96);
  }
}

@keyframes catIdle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  20% {
    transform: translateY(1px) rotate(-1deg) scale(1.02, 0.98);
  }

  50% {
    transform: translateY(-2px) rotate(1.5deg) scale(0.98, 1.02);
  }

  76% {
    transform: translateY(1px) rotate(-0.5deg);
  }
}

@keyframes petBubble {
  0% {
    opacity: 0;
    transform: translateY(8px) scale(0.86) scaleX(var(--pet-counter-facing, 1));
  }

  18% {
    opacity: 1;
    transform: translateY(0) scale(1) scaleX(var(--pet-counter-facing, 1));
  }

  78% {
    opacity: 1;
    transform: translateY(-4px) scale(1) scaleX(var(--pet-counter-facing, 1));
  }

  100% {
    opacity: 0;
    transform: translateY(-12px) scale(0.94) scaleX(var(--pet-counter-facing, 1));
  }
}

@keyframes petHeart {
  0% {
    opacity: 0;
    transform: translateY(10px) scale(0.75) rotate(-8deg);
  }

  26% {
    opacity: 1;
    transform: translateY(0) scale(1.08) rotate(8deg);
  }

  100% {
    opacity: 0;
    transform: translateY(-28px) scale(1.2) rotate(-10deg);
  }
}

@keyframes catShadowIdle {
  0%,
  100% {
    opacity: 0.34;
    transform: scaleX(0.9);
  }

  50% {
    opacity: 0.48;
    transform: scaleX(1.06);
  }
}

@keyframes catShadowHop {
  0% {
    opacity: 0.5;
    transform: scaleX(1.15);
  }

  42% {
    opacity: 0.14;
    transform: scaleX(0.45);
  }

  76% {
    opacity: 0.56;
    transform: scaleX(1.24);
  }

  100% {
    opacity: 0.36;
    transform: scaleX(0.96);
  }
}

.chat-widget {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
}

.chat-launcher {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(79, 215, 215, 0.44);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 42%, rgba(81, 226, 221, 0.2), transparent 46%),
    linear-gradient(145deg, rgba(12, 28, 27, 0.96), rgba(4, 10, 10, 0.92));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 34px rgba(79, 215, 215, 0.18);
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.chat-avatar-stage {
  position: absolute;
  inset: 5px 5px 10px;
  display: grid;
  place-items: end center;
  transform-origin: 50% 86%;
  animation: avatarTypingBob 1.05s ease-in-out infinite;
}

.chat-avatar-stage img {
  width: 104%;
  height: 104%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
  transform-origin: 50% 84%;
  animation: avatarTypingTap 0.72s ease-in-out infinite;
}

.typing-keys {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
}

.typing-keys span {
  width: 10px;
  height: 4px;
  border-radius: 999px;
  background: rgba(92, 234, 226, 0.9);
  box-shadow: 0 0 10px rgba(92, 234, 226, 0.55);
  animation: keyBlink 0.72s ease-in-out infinite;
}

.typing-keys span:nth-child(2) {
  animation-delay: 0.12s;
}

.typing-keys span:nth-child(3) {
  animation-delay: 0.24s;
}

.chat-pulse {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(13, 18, 17, 0.9);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(127, 220, 143, 0.8);
}

@keyframes avatarTypingBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(2px);
  }
}

@keyframes avatarTypingTap {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }

  45% {
    transform: rotate(-1.5deg) scale(1.01);
  }

  70% {
    transform: rotate(1deg) scale(0.995);
  }
}

@keyframes keyBlink {
  0%,
  100% {
    opacity: 0.32;
    transform: translateY(0) scaleX(0.82);
  }

  45% {
    opacity: 1;
    transform: translateY(-2px) scaleX(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ragdoll-companion,
  .ragdoll-companion::after,
  .ragdoll-companion img,
  .pet-bubble,
  .pet-heart,
  .chat-avatar-stage,
  .chat-avatar-stage img,
  .typing-keys span {
    animation: none;
  }
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(620px, calc(100vh - 126px));
  display: none;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(79, 215, 215, 0.1), rgba(127, 220, 143, 0.045) 46%, rgba(13, 18, 17, 0.94)),
    rgba(13, 18, 17, 0.94);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.chat-widget.open .chat-panel {
  display: grid;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-person {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.chat-person img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 42%, rgba(81, 226, 221, 0.16), transparent 52%),
    rgba(8, 18, 18, 0.86);
}

.chat-person strong,
.chat-person span {
  display: block;
}

.chat-person strong {
  font-size: 15px;
  line-height: 1.2;
}

.chat-person span {
  color: var(--muted);
  font-size: 12px;
}

.chat-close {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.055);
  cursor: pointer;
}

.chat-messages {
  min-height: 260px;
  max-height: 390px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  overflow-y: auto;
}

.chat-message {
  width: fit-content;
  max-width: 86%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  white-space: pre-wrap;
}

.chat-message h1,
.chat-message h2,
.chat-message h3,
.chat-message p,
.chat-message ul,
.chat-message ol,
.chat-message pre {
  margin: 0 0 10px;
}

.chat-message h1,
.chat-message h2,
.chat-message h3 {
  font-size: 15px;
  line-height: 1.35;
}

.chat-message p:last-child,
.chat-message ul:last-child,
.chat-message ol:last-child,
.chat-message pre:last-child {
  margin-bottom: 0;
}

.chat-message ul,
.chat-message ol {
  padding-left: 18px;
}

.chat-message li + li {
  margin-top: 4px;
}

.chat-message code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.22);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 0.92em;
}

.chat-message pre {
  max-width: 100%;
  overflow-x: auto;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
  white-space: pre;
}

.chat-message pre code {
  padding: 0;
  background: transparent;
}

.chat-message a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.chat-message.assistant {
  align-self: flex-start;
  color: #eaf4f0;
  border: 1px solid rgba(79, 215, 215, 0.18);
  background: rgba(255, 255, 255, 0.065);
  white-space: normal;
}

.chat-message.user {
  align-self: flex-end;
  color: #071211;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  white-space: pre-wrap;
}

.chat-message.loading {
  color: var(--muted);
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-form textarea {
  min-height: 44px;
  max-height: 120px;
  resize: vertical;
  padding: 10px 11px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.065);
  outline: none;
}

.chat-form textarea:focus {
  border-color: rgba(79, 215, 215, 0.62);
}

.chat-form button {
  min-width: 64px;
  border: 0;
  border-radius: 8px;
  color: #071211;
  background: linear-gradient(135deg, var(--cyan), var(--green));
  font-weight: 820;
  cursor: pointer;
}

.chat-form button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.chat-note {
  margin: 0;
  padding: 0 14px 12px;
  color: var(--dim);
  font-size: 12px;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 46px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-content {
    padding-bottom: 0;
  }

  .hero-panel {
    max-width: 620px;
    margin-bottom: 0;
  }

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

  .bf-multi-col.six-col,
  .bf-multi-col.parallel-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .flow-phase:nth-child(2n) {
    border-right: 0;
  }

  .flow-phase:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .bf-row.chain,
  .delivery-chain {
    grid-template-columns: 1fr;
  }

  .bf-arrow {
    height: 20px;
  }

  .bf-arrow::before {
    width: 1px;
    height: 20px;
    background: linear-gradient(180deg, rgba(79, 215, 215, 0.18), rgba(79, 215, 215, 0.9));
  }

  .bf-arrow::after {
    width: 8px;
    height: 8px;
    margin-top: -11px;
    margin-left: 0;
    border: 0;
    border-right: 1px solid rgba(79, 215, 215, 0.9);
    border-bottom: 1px solid rgba(79, 215, 215, 0.9);
    transform: rotate(45deg);
  }

  .split-layout,
  .routing-panel,
  .ops-layout,
  .final-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .top-nav {
    top: 10px;
    width: calc(100% - 20px);
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding: 116px 18px 34px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-lead,
  .section-heading p,
  .tab-panel p {
    font-size: 16px;
  }

  .section-heading h2,
  .final-grid h2 {
    font-size: 29px;
  }

  .overview-grid,
  .workflow-map,
  .priority-board,
  .platform-grid,
  .bf-multi-col.six-col,
  .bf-multi-col.parallel-col,
  .route-cases,
  .ops-loop {
    grid-template-columns: 1fr;
  }

  .big-flow {
    padding: 16px;
  }

  .bf-stage {
    padding: 14px;
  }

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

  .bf-interaction-tip {
    width: 100%;
  }

  .flow-detail-surface {
    padding: 16px;
  }

  .flow-detail-header {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .flow-detail-count {
    width: fit-content;
  }

  .flow-phase-grid {
    grid-template-columns: 1fr;
  }

  .flow-phase,
  .flow-phase:nth-child(2n) {
    border-right: 0;
  }

  .flow-phase:nth-child(n + 2) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .flow-deliverables {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .tab-panel h3,
  .routing-copy h3 {
    font-size: 24px;
  }

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

  .band {
    padding: 62px 0;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }

  .chat-launcher {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .identity-top {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fosun-badge {
    width: 154px;
    height: 72px;
  }

  .fosun-en {
    font-size: 28px;
  }

  .fosun-cn {
    margin-top: 5px;
    font-size: 22px;
  }

  .metric,
  .workflow-step,
  .platform-card,
  .priority {
    min-height: auto;
  }
}
