:root {
  --ink: #062647;
  --ink-soft: #31546e;
  --navy: #062844;
  --navy-2: #0b3a62;
  --blue: #146fb1;
  --sky: #cbeeff;
  --sky-soft: #effaff;
  --ice: #f7fcff;
  --gold: #d8a13d;
  --gold-2: #b97922;
  --line: rgba(6, 38, 71, 0.13);
  --line-strong: rgba(6, 38, 71, 0.22);
  --shadow: 0 22px 58px rgba(6, 38, 71, 0.13);
  --shadow-strong: 0 28px 70px rgba(6, 38, 71, 0.22);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  letter-spacing: 0;
  overscroll-behavior-y: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  border-radius: 8px;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

#main-content:focus {
  outline: none;
}

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

i[data-lucide] {
  width: 1.1em;
  height: 1.1em;
  stroke-width: 2.2;
  vertical-align: -0.18em;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 clamp(20px, 4vw, 54px);
  background: rgba(233, 248, 255, 0.9);
  border-bottom: 1px solid rgba(6, 38, 71, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.brand strong,
.brand em {
  display: block;
  font-style: normal;
  line-height: 1.04;
}

.brand strong {
  font-size: 20px;
  font-weight: 900;
}

.brand em {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 34px);
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.site-nav a {
  white-space: nowrap;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border-radius: 8px;
}

.nav-cta {
  padding: 0 17px;
  color: var(--ink);
  background: linear-gradient(180deg, #e7b34e, var(--gold));
  box-shadow: 0 12px 26px rgba(184, 121, 34, 0.24);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(20, 111, 177, 0.75);
  outline-offset: 3px;
}

.page-section {
  position: relative;
  min-height: 100svh;
  padding: 106px clamp(28px, 5vw, 60px) 54px;
  overflow: hidden;
  scroll-margin-top: 76px;
}

.page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.95), transparent 25%),
    radial-gradient(circle at 36% 52%, rgba(255, 255, 255, 0.72), transparent 35%),
    linear-gradient(135deg, #fbfeff 0%, #d9f2ff 52%, #f7fcff 100%);
}

.page-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 44%;
  background:
    linear-gradient(180deg, rgba(246, 252, 255, 0), rgba(232, 246, 253, 0.86) 74%, rgba(247, 252, 255, 0.9)),
    url("./assets/coldchain-harbor-bg.webp") center bottom / cover no-repeat;
  opacity: 0.34;
  pointer-events: none;
}

.kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
}

p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.hero {
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(580px, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 24px 42px;
  align-items: center;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(246, 252, 255, 0.98) 0%, rgba(230, 246, 255, 0.86) 54%, rgba(247, 252, 255, 0.64) 100%),
    url("./assets/coldchain-harbor-bg.webp") center bottom / cover no-repeat;
}

.hero-copy,
.hero-visual {
  transform: translateY(-30px);
}

.hero-copy h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(48px, 4.35vw, 64px);
  line-height: 1.18;
}

.hero::after {
  opacity: 0;
}

.scenes::after,
.finance-section::after,
.contact-section::after,
.case-section::after {
  opacity: 0.36;
}

.solution::after,
.method::after {
  opacity: 0.18;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 0;
  font-size: 20px;
}

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

.button {
  padding: 0 24px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(180deg, #0d4772, var(--navy));
  box-shadow: 0 16px 34px rgba(6, 38, 71, 0.24);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 10px 18px;
  color: #1a5d94;
  border: 1px solid rgba(20, 111, 177, 0.18);
  border-radius: 999px;
  background: rgba(222, 244, 255, 0.8);
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 600px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(20, 111, 177, 0.32);
  border-radius: 50%;
}

.hero-visual::before {
  width: 590px;
  height: 590px;
}

.hero-visual::after {
  width: 430px;
  height: 430px;
  border-color: rgba(216, 161, 61, 0.48);
}

.ai-core,
.scene-hub,
.scrm-engine,
.engine-card {
  background: linear-gradient(145deg, #0d4772, var(--navy) 70%);
  color: #fff;
  border: 1px solid rgba(216, 161, 61, 0.34);
  box-shadow: var(--shadow-strong);
}

.ai-core {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  text-align: center;
  outline: 10px solid rgba(255, 255, 255, 0.2);
}

.ai-core img,
.scene-hub img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.ai-core strong {
  margin-top: 10px;
  font-size: 38px;
}

.ai-core small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 750;
}

.orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.orbit span {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 112px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid rgba(20, 111, 177, 0.24);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(239, 250, 255, 0.86));
  box-shadow: 0 18px 36px rgba(6, 38, 71, 0.12);
  font-weight: 900;
  text-align: center;
}

.orbit-products span::before {
  content: "";
  display: block;
  width: 72px;
  height: 54px;
  margin-bottom: 2px;
  border-radius: 48%;
  background-image: url("./assets/frozen-product-atlas.webp");
  background-size: 200% 200%;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
}

.orbit-products span:nth-child(1)::before { background-position: 0 0; }
.orbit-products span:nth-child(2)::before { background-position: 100% 0; }
.orbit-products span:nth-child(3)::before { background-position: 0 100%; }
.orbit-products span:nth-child(4)::before { background-position: 100% 100%; }

.orbit-products span:nth-child(1) { left: 50%; top: 3%; transform: translateX(-50%); }
.orbit-products span:nth-child(2) { left: 9%; top: 25%; }
.orbit-products span:nth-child(3) { right: 12%; top: 24%; }
.orbit-products span:nth-child(4) { left: 12%; bottom: 21%; }
.orbit-business span:nth-child(1) { right: 2%; top: 18%; border-color: rgba(216, 161, 61, 0.42); }
.orbit-business span:nth-child(2) { right: 0; top: 40%; border-color: rgba(216, 161, 61, 0.42); }
.orbit-business span:nth-child(3) { right: 6%; bottom: 23%; border-color: rgba(216, 161, 61, 0.42); }
.orbit-business span:nth-child(4) { left: 47%; bottom: 2%; border-color: rgba(216, 161, 61, 0.42); }
.orbit-business span:nth-child(5) { right: 23%; bottom: 10%; border-color: rgba(216, 161, 61, 0.42); }

.value-bar,
.capability-row,
.case-values {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 22px 28px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.value-bar article,
.case-values article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 6px 16px;
  align-items: center;
  min-height: 86px;
  padding: 0 24px;
}

.value-bar article + article,
.case-values article + article {
  border-left: 1px solid var(--line);
}

.value-bar i,
.case-values i,
.capability-row i {
  color: var(--gold-2);
}

.value-bar i,
.case-values i {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  padding: 13px;
  color: var(--ink);
  border: 2px solid rgba(216, 161, 61, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
}

.value-bar strong,
.case-values strong {
  font-size: 22px;
  font-weight: 900;
}

.value-bar span,
.case-values span {
  grid-column: 2;
  color: var(--ink-soft);
  font-size: 14px;
}

.section-heading,
.scene-intro,
.case-title {
  max-width: 840px;
}

.section-heading h2,
.scene-intro h2,
.finance-copy h2,
.case-title h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.section-heading p,
.scene-intro p,
.case-title p,
.contact-copy p,
.finance-copy p {
  max-width: 760px;
  font-size: 18px;
}

.solution,
.method,
.case-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 34px;
}

.transform-board {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 0.62fr) minmax(320px, 1fr);
  gap: 32px;
  align-items: center;
}

.source-stack,
.outcome-stack {
  display: grid;
  gap: 14px;
}

.source-stack article,
.outcome-stack article,
.workflow-step,
.scrm-card,
.risk-panel,
.brand-note,
.contact-form,
.scene-card {
  border: 1px solid rgba(6, 38, 71, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 16px 38px rgba(6, 38, 71, 0.08);
}

.source-stack article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
}

.source-stack i,
.outcome-stack i {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  padding: 7px;
  color: #fff;
  border-radius: 8px;
  background: var(--blue);
}

.source-stack strong,
.outcome-stack strong {
  font-size: 17px;
}

.source-stack span,
.outcome-stack span {
  color: var(--ink-soft);
  font-size: 13px;
}

.engine-card {
  display: grid;
  justify-items: center;
  padding: 34px 28px;
  border-radius: 8px;
  text-align: center;
}

.engine-card img {
  width: 72px;
  height: 72px;
}

.engine-card strong {
  margin-top: 14px;
  font-size: 36px;
}

.engine-card span {
  margin-top: 4px;
  color: var(--gold);
  font-weight: 900;
}

.engine-card ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.engine-card li {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

.outcome-stack article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}

.outcome-stack i {
  background: linear-gradient(180deg, #e7b34e, var(--gold));
  color: var(--ink);
}

.outcome-stack span {
  color: rgba(255, 255, 255, 0.72);
}

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

.workflow-step {
  position: relative;
  min-height: 330px;
  padding: 28px 24px;
}

.workflow-step > span,
.scrm-card > span,
.scrm-engine > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--navy);
  font-weight: 900;
}

.workflow-step i {
  margin-top: 22px;
  color: var(--blue);
  width: 36px;
  height: 36px;
}

.workflow-step h3 {
  margin: 16px 0 10px;
  font-size: 27px;
}

.workflow-step.dark {
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
}

.workflow-step.dark h3,
.workflow-step.dark p {
  color: #fff;
}

.workflow-step.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.workflow-step.dark i {
  color: var(--gold);
}

.mini-table {
  margin-top: 24px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.dark .mini-table {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.mini-table b,
.mini-table small {
  display: block;
}

.mini-table small {
  margin-top: 6px;
  color: inherit;
  opacity: 0.78;
}

.data-engine {
  display: grid;
  grid-template-columns: minmax(220px, 0.46fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(20, 111, 177, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.data-engine strong {
  display: block;
  font-size: 30px;
}

.data-engine span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
}

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

.data-engine li {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 14px 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

.data-engine i {
  color: var(--blue);
}

.scenes {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.scene-intro {
  max-width: 320px;
  align-self: start;
  margin-top: 20px;
}

.scene-intro h2 {
  font-size: clamp(54px, 5.6vw, 78px);
  line-height: 1.05;
}

.scene-intro .kicker {
  margin-bottom: 22px;
}

.scene-intro h2::after,
.hero-copy h1::after,
.case-title h2::after,
.section-heading h2::after,
.finance-copy h2::after,
.contact-copy h2::after {
  content: "";
  display: block;
  width: 68px;
  height: 3px;
  margin-top: 20px;
  background: var(--gold);
}

.hero-copy h1::after {
  margin-top: 24px;
}

.scene-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(158px, auto));
  gap: 20px;
  align-items: center;
}

.scene-map::before,
.scene-map::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 1;
  width: 470px;
  height: 470px;
  border: 1px dashed rgba(20, 111, 177, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.scene-map::after {
  width: 330px;
  height: 330px;
  border-color: rgba(216, 161, 61, 0.44);
}

.scene-card {
  position: relative;
  z-index: 2;
  padding: 24px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: 0 28px 66px rgba(6, 38, 71, 0.22);
}

.scene-card i {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.scene-card h3 {
  margin: 12px 0 6px;
  color: #fff;
  font-size: 27px;
}

.scene-card p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.trade {
  grid-column: 2;
  grid-row: 1;
}

.supply {
  grid-column: 1;
  grid-row: 2;
}

.finance {
  grid-column: 3;
  grid-row: 2;
}

.intelligence {
  grid-column: 2;
  grid-row: 3;
}

.scene-hub {
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  text-align: center;
  outline: 12px solid rgba(255, 255, 255, 0.18);
}

.scene-hub strong {
  margin-top: 10px;
  color: #fff;
  font-size: 38px;
}

.scene-hub span {
  color: var(--gold);
  font-weight: 900;
}

.dashboard-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dashboard-list span,
.insight-grid span,
.flow-line span {
  display: grid;
  place-items: center;
  min-height: 34px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.flow-line,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 7px;
}

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

.chart-lines,
.price-chart {
  display: grid;
  align-items: end;
  height: 72px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.chart-lines span,
.price-chart span {
  display: block;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, #58aeff, #2569a9);
}

.chart-lines span:nth-child(1),
.price-chart span:nth-child(1) { height: 44%; }
.chart-lines span:nth-child(2),
.price-chart span:nth-child(2) { height: 72%; background: linear-gradient(180deg, var(--gold), #a86d19); }
.chart-lines span:nth-child(3),
.price-chart span:nth-child(3) { height: 58%; }
.price-chart span:nth-child(4) { height: 88%; background: linear-gradient(180deg, #8fd0ff, #2a78bd); }

.capability-row {
  grid-column: 1 / -1;
  align-self: end;
}

.capability-row span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  font-weight: 900;
  color: var(--ink);
}

.capability-row span + span {
  border-left: 1px solid var(--line);
}

.finance-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  gap: 30px 42px;
  align-items: center;
}

.finance-copy {
  align-self: center;
}

.finance-copy h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.risk-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr 0.82fr;
  gap: 16px;
}

.risk-panel {
  padding: 20px;
  color: #fff;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-strong);
}

.risk-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.risk-panel header i {
  color: var(--gold);
}

.risk-panel header strong {
  flex: 1;
  font-size: 18px;
}

.risk-panel header span {
  padding: 5px 9px;
  color: #bff3ca;
  border: 1px solid rgba(191, 243, 202, 0.24);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px 14px;
  margin-bottom: 16px;
}

.metrics b {
  font-size: 30px;
}

.metrics small {
  color: rgba(255, 255, 255, 0.68);
}

.metrics.compact b {
  font-size: 22px;
}

.risk-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.risk-panel li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.alerts p {
  margin: 0;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.alerts b {
  display: block;
  color: #fff;
}

.risk-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.risk-flow span,
.risk-flow strong {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 8px;
  text-align: center;
  font-weight: 900;
}

.risk-flow span {
  border: 1px solid var(--line);
  background: #fff;
}

.risk-flow strong {
  color: #fff;
  background: var(--navy);
}

.case-section {
  gap: 22px;
}

.case-title {
  display: grid;
  grid-template-columns: minmax(620px, 1.16fr) minmax(420px, 0.84fr);
  column-gap: 40px;
  max-width: none;
  align-items: end;
}

.case-title h2 {
  font-size: clamp(42px, 3.65vw, 52px);
}

.case-title .kicker,
.case-title h2 {
  grid-column: 1;
}

.case-title p {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  margin: 0;
  max-width: 720px;
}

.scrm-flow {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr 1fr 0.92fr;
  gap: 20px;
}

.scrm-card,
.scrm-engine {
  position: relative;
  min-height: 420px;
  padding: 24px;
}

.scrm-card:not(.closed)::after,
.scrm-engine::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  z-index: 5;
  width: 28px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.64);
}

.scrm-card:not(.closed)::before,
.scrm-engine::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: -26px;
  z-index: 6;
  border-left: 9px solid var(--gold);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.scrm-card.opportunity {
  color: #fff;
  border-color: rgba(216, 161, 61, 0.28);
  background: linear-gradient(145deg, #0d4772, var(--navy));
  box-shadow: var(--shadow-strong);
}

.scrm-card.opportunity h3,
.scrm-card.opportunity p {
  color: #fff;
}

.scrm-card.opportunity p {
  color: rgba(255, 255, 255, 0.78);
}

.scrm-card h3,
.scrm-engine h3 {
  margin: 18px 0 10px;
  font-size: 23px;
}

.message-list,
.pipeline,
.timeline {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.message-list small,
.timeline small {
  display: block;
  padding: 12px;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.message-list small {
  min-height: 48px;
}

.scrm-engine {
  color: #fff;
  border: 1px solid rgba(216, 161, 61, 0.34);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  box-shadow: var(--shadow-strong);
}

.scrm-engine h3,
.scrm-engine p {
  color: #fff;
}

.engine-ring {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin: 18px 0;
  padding: 28px;
  border: 1px solid rgba(216, 161, 61, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.engine-ring img {
  width: 70px;
  height: 70px;
}

.engine-ring strong {
  color: var(--gold);
  font-size: 22px;
}

.scrm-engine ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.scrm-engine li {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pipeline {
  grid-template-columns: 1fr;
  gap: 8px;
}

.pipeline b {
  display: grid;
  place-items: center;
  min-height: 44px;
  padding: 8px;
  color: #fff;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
  text-align: center;
}

.closed .timeline {
  border-left: 2px solid rgba(20, 111, 177, 0.24);
  padding-left: 14px;
}

.case-values {
  padding: 18px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(460px, 1fr);
  gap: 64px;
  align-items: center;
}

.scene-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.scene-chips span {
  padding: 11px 16px;
  border: 1px solid rgba(20, 111, 177, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.brand-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
}

.brand-note img {
  width: 70px;
  height: 70px;
}

.brand-note strong,
.brand-note span,
.brand-note small {
  display: block;
}

.brand-note strong {
  font-size: 23px;
}

.brand-note span,
.brand-note small {
  margin-top: 7px;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 28px 28px;
  background: rgba(255, 255, 255, 0.86);
}

.contact-form[data-disabled="true"] {
  opacity: 0.86;
}

.form-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 -28px 8px;
  padding: 24px 28px;
  color: #fff;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(145deg, var(--navy-2), var(--navy));
  font-size: 24px;
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.contact-form .full,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(6, 38, 71, 0.16);
  border-radius: 8px;
  background: #fff;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(20, 111, 177, 0.58);
  box-shadow: 0 0 0 3px rgba(20, 111, 177, 0.11);
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #b43b2b;
  box-shadow: 0 0 0 3px rgba(180, 59, 43, 0.12);
}

.consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.consent input {
  width: 20px;
  min-height: 20px;
  height: 20px;
  margin: 2px 0 0;
  padding: 0;
}

.consent a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-button {
  width: 100%;
  border: 0;
}

.contact-form .form-button {
  color: var(--ink);
  background: linear-gradient(180deg, #e9b957, var(--gold));
  box-shadow: 0 14px 30px rgba(184, 121, 34, 0.22);
}

.contact-form .form-button:disabled {
  cursor: wait;
  opacity: 0.68;
  box-shadow: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--blue);
  font-weight: 850;
}

.form-status[data-type="error"] {
  color: #a4392b;
}

.form-status[data-type="success"] {
  color: #147143;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
  padding: 28px clamp(20px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__legal {
  text-align: right;
}

.site-footer__legal a {
  display: inline-block;
  margin-top: 6px;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 10%, rgba(203, 238, 255, 0.7), transparent 28%),
    linear-gradient(145deg, #f9fdff, #e8f7ff);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
}

.legal-header .brand img {
  width: 44px;
  height: 44px;
}

.legal-back {
  color: var(--blue);
  font-weight: 800;
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 80px;
}

.legal-shell article {
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-shell h1 {
  margin-bottom: 12px;
  font-size: clamp(36px, 6vw, 58px);
}

.legal-shell h2 {
  margin: 34px 0 12px;
  font-size: 24px;
}

.legal-shell ul {
  padding-left: 1.4em;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-meta {
  color: var(--ink-soft);
  font-size: 14px;
}

.visual-cut {
  display: none;
}

@media (min-width: 821px) {
  .solution-board-cut,
  .method-workflow-cut,
  .scenes-network-cut,
  .finance-dashboard-cut {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .solution-board-cut {
    margin-top: -18px;
    max-height: 66vh;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    mask-composite: intersect;
  }

  .method-workflow-cut {
    margin-top: -16px;
    max-height: 70vh;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    mask-composite: intersect;
  }

  .finance-dashboard-cut {
    max-height: 72vh;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 99%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 99%, transparent 100%);
    mask-composite: intersect;
  }

  .transform-board,
  .workflow,
  .data-engine,
  .risk-dashboard,
  .risk-flow {
    display: none;
  }

  .hero-network-cut {
    display: block;
    width: min(54vw, 760px);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 98%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 98%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 98%, transparent 100%);
    mask-composite: intersect;
  }

  .hero-visual::before,
  .hero-visual::after,
  .hero-visual .orbit,
  .hero-visual .ai-core {
    display: none;
  }

  .scene-map {
    display: block;
  }

  .scene-map::before,
  .scene-map::after,
  .scene-map > :not(.scenes-network-cut) {
    display: none;
  }

  .scenes-network-cut {
    max-height: 62vh;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 99%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 2%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 2%, #000 99%, transparent 100%);
    mask-composite: intersect;
  }

  .scrm-process-cut {
    display: block;
    width: 100%;
    max-height: 54vh;
    object-fit: contain;
    object-position: center;
    -webkit-mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to right, transparent 0, #000 1%, #000 99%, transparent 100%),
      linear-gradient(to bottom, transparent 0, #000 1%, #000 99%, transparent 100%);
    mask-composite: intersect;
  }

  .scrm-flow {
    display: none;
  }
}

@media (max-width: 1360px) and (min-width: 821px) {
  .site-header {
    padding: 0 clamp(28px, 3.8vw, 48px);
  }

  .page-section {
    padding-right: clamp(32px, 4vw, 48px);
    padding-left: clamp(32px, 4vw, 48px);
  }

  .hero {
    grid-template-columns: minmax(450px, 0.9fr) minmax(420px, 1fr);
    gap: 22px 28px;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 4vw, 58px);
  }

  .hero-lede {
    font-size: 18px;
  }

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

  .hero-network-cut {
    width: min(47vw, 640px);
  }

  .value-bar,
  .capability-row,
  .case-values {
    padding: 18px 20px;
  }

  .value-bar article,
  .case-values article {
    grid-template-columns: 46px 1fr;
    padding: 0 14px;
  }

  .value-bar i,
  .case-values i {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .value-bar strong,
  .case-values strong {
    font-size: 20px;
  }

  .scenes {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 30px;
  }

  .scene-intro {
    max-width: 290px;
  }

  .scene-intro h2 {
    font-size: clamp(48px, 5vw, 70px);
  }

  .scenes-network-cut {
    max-height: 58vh;
  }

  .finance-section {
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 26px 32px;
  }

  .finance-copy h2 {
    font-size: clamp(32px, 3.75vw, 48px);
  }

  .finance-dashboard-cut {
    max-height: 66vh;
  }

  .case-title {
    grid-template-columns: minmax(520px, 1fr) minmax(360px, 0.82fr);
    column-gap: 28px;
  }

  .case-title h2 {
    font-size: clamp(40px, 3.5vw, 50px);
  }

  .scrm-process-cut {
    max-height: 50vh;
  }

  .contact-section {
    grid-template-columns: minmax(340px, 0.82fr) minmax(430px, 1fr);
    gap: 40px;
  }
}

@media (max-width: 1180px) {
  .hero,
  .scenes,
  .finance-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .transform-board,
  .risk-dashboard,
  .scrm-flow {
    grid-template-columns: 1fr;
  }

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

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

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

  .case-title p {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .page-section {
    min-height: auto;
    padding: 92px 20px 50px;
  }

  .hero {
    display: block;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-lede,
  .section-heading p,
  .scene-intro p,
  .case-title p,
  .contact-copy p,
  .finance-copy p {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 28px;
  }

  .ai-core {
    width: 176px;
    height: 176px;
  }

  .ai-core strong {
    font-size: 28px;
  }

  .orbit span {
    min-width: 74px;
    height: 74px;
    font-size: 13px;
  }

  .value-bar,
  .capability-row,
  .case-values,
  .workflow,
  .data-engine,
  .scene-map,
  .risk-flow,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .value-bar article,
  .case-values article {
    padding: 14px 0;
  }

  .value-bar article + article,
  .case-values article + article,
  .capability-row span + span {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .data-engine {
    align-items: start;
  }

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

  .scene-map {
    display: grid;
  }

  .trade,
  .supply,
  .finance,
  .intelligence,
  .scene-hub {
    grid-column: auto;
    grid-row: auto;
  }

  .scene-hub {
    width: 180px;
    height: 180px;
    margin: 0 auto;
  }

  .risk-flow {
    gap: 8px;
  }

  .contact-form {
    padding: 0 18px 18px;
  }

  .form-head {
    margin: 0 -18px 4px;
    padding: 20px 18px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }

  .site-footer__legal {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 16px;
  }

  .brand em {
    display: none;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .hero-visual::before {
    width: 330px;
    height: 330px;
  }

  .hero-visual::after {
    width: 250px;
    height: 250px;
  }

  .orbit-products span:nth-child(2) {
    left: 0;
  }

  .orbit-business span:nth-child(1),
  .orbit-business span:nth-child(2) {
    right: 0;
  }

  .section-heading h2,
  .scene-intro h2,
  .finance-copy h2,
  .case-title h2,
  .contact-copy h2 {
    font-size: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
