:root {
  --navy: #061526;
  --ink: #0b1b2c;
  --muted: #607086;
  --cyan: #14d9ff;
  --blue: #147df5;
  --emerald: #27e4b4;
  --line: #dfe8f1;
  --surface: #f4f8fb;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: white;
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}

.hero {
  height: min(759px, 100vh);
  min-height: 640px;
  position: relative;
  overflow: hidden;
  background: #061526;
  color: white;
  transition: --accent 0.4s ease;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: none;
  transition: none;
}
.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(3, 17, 32, 0.97) 0%,
      rgba(3, 17, 32, 0.91) 36%,
      rgba(3, 17, 32, 0.28) 73%,
      rgba(3, 17, 32, 0.48) 100%
    ),
    linear-gradient(0deg, rgba(3, 17, 32, 0.82), transparent 42%);
}
.hero-image.is-active {
  opacity: 1;
  transform: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(44, 159, 226, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 159, 226, 0.1) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 65%);
}
.hero-glow {
  position: absolute;
  width: 780px;
  height: 780px;
  left: -380px;
  top: -260px;
  background: radial-gradient(circle, rgba(0, 153, 255, 0.24), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  width: min(1440px, calc(100% - 10vw));
  height: 100%;
  margin: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 44px;
}
.hero-copy {
  width: min(760px, 58vw);
  position: relative;
  z-index: 3;
  animation: heroIn 0.62s ease both;
}
@keyframes heroIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #9ed7ee;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, #0fe3ff, #1c73f4);
}
.hero h1 {
  font-size: clamp(42px, 4.25vw, 72px);
  line-height: 1.19;
  letter-spacing: -0.045em;
  margin: 0;
  max-width: 820px;
  font-weight: 740;
}
.hero h1 em {
  font-style: normal;
  color: #42e3ff;
  text-shadow: 0 0 32px rgba(25, 203, 247, 0.2);
}
.hero-amber h1 em {
  color: #ffc46b;
}
.hero-emerald h1 em {
  color: #48e8bc;
}
.hero-description {
  max-width: 690px;
  font-size: 17px;
  line-height: 1.9;
  color: #aac0d2;
  margin: 27px 0 31px;
}
.hero-actions {
  display: flex;
  gap: 14px;
}
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 22px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
  transition: 0.25s ease;
}
.button-primary {
  background: linear-gradient(100deg, #0ccbe7, #1673ef);
  color: white;
  box-shadow: 0 12px 30px rgba(6, 157, 232, 0.25);
}
.hero-amber .button-primary {
  background: linear-gradient(100deg, #ed9c30, #f17435);
}
.hero-emerald .button-primary {
  background: linear-gradient(100deg, #1fc4a5, #107bd6);
}
.button:hover {
  transform: translateY(-2px);
}
.button-ghost {
  border: 1px solid rgba(176, 218, 239, 0.35);
  background: rgba(12, 37, 59, 0.55);
  color: #d6e5ee;
  backdrop-filter: blur(8px);
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 29px;
  color: #8fa8ba;
  font-size: 13px;
}
.hero-chips span {
  display: flex;
  gap: 8px;
  align-items: center;
}
.hero-chips i {
  font-style: normal;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(65, 217, 250, 0.35);
  color: #27d5ef;
  font-size: 10px;
}
.hero-proof {
  width: 270px;
  align-self: flex-end;
  margin-bottom: 115px;
  position: relative;
  z-index: 3;
  border: 1px solid rgba(122, 192, 228, 0.24);
  background: rgba(5, 27, 46, 0.66);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  padding: 17px;
  border-radius: 12px;
}
.proof-topline {
  display: flex;
  justify-content: space-between;
  color: #7596aa;
  font:
    10px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(159, 205, 228, 0.12);
  padding-bottom: 12px;
}
.proof-topline strong {
  color: #3eeab8;
  font-size: 9px;
}
.proof-topline strong::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #3eeab8;
  margin-right: 5px;
  box-shadow: 0 0 8px #3eeab8;
}
.proof-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0 12px;
}
.proof-score b {
  font-size: 34px;
  color: #ebf9ff;
}
.proof-score small {
  color: #6f8ca0;
}
.proof-score > span {
  color: #9bb1c1;
  font-size: 11px;
  line-height: 1.5;
  border-left: 1px solid rgba(132, 185, 210, 0.2);
  padding-left: 14px;
}
.proof-score em {
  color: #3cddb6;
  font-style: normal;
}
.proof-bars {
  display: grid;
  gap: 10px;
}
.proof-bars span {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-bottom: 7px;
  color: #7894a7;
  font-size: 9px;
}
.proof-bars span::before,
.proof-bars span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  border-radius: 4px;
}
.proof-bars span::before {
  width: 100%;
  background: rgba(129, 178, 203, 0.15);
}
.proof-bars span::after {
  width: var(--width);
  background: linear-gradient(90deg, #1b78eb, #2adbc1);
}
.proof-bars b {
  color: #b8d0df;
  font-weight: 500;
}
.hero-controls {
  position: absolute;
  bottom: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1440px, 90vw);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 18px;
}
.arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(157, 200, 224, 0.24);
  border-radius: 50%;
  background: rgba(3, 23, 39, 0.3);
  color: #a4bfd0;
  cursor: pointer;
  transition: 0.2s;
}
.arrow:hover {
  border-color: #26ccef;
  color: white;
}
.hero-dots {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-dots button {
  background: none;
  border: 0;
  color: #6d8a9e;
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  font:
    10px var(--font-geist-mono),
    monospace;
  padding: 5px 0;
}
.hero-dots i {
  width: 25px;
  height: 1px;
  background: #537184;
  display: block;
  transition: 0.3s;
}
.hero-dots button.is-active {
  color: #d7f8ff;
}
.hero-dots button.is-active i {
  width: 72px;
  background: #20d8f5;
  box-shadow: 0 0 7px rgba(32, 216, 245, 0.4);
}
.scroll-cue {
  position: absolute;
  right: 5vw;
  bottom: 51px;
  z-index: 5;
  font:
    9px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.18em;
  color: #66869a;
  display: flex;
  gap: 11px;
  align-items: center;
}
.scroll-cue span {
  width: 32px;
  height: 1px;
  background: #526f83;
}

.market-shift {
  padding: 112px 5vw 104px;
  background: linear-gradient(180deg, #fff, #f4f8fb);
}
.section-heading {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 58px;
}
.section-kicker {
  font:
    700 11px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.2em;
  color: #1486e8;
  margin: 0 0 18px;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3vw, 46px);
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-wrap: balance;
}
.section-heading h2 em {
  font-style: normal;
  color: #0a87e9;
}
.section-heading > p:last-child {
  color: #6c7d90;
  font-size: 16px;
  line-height: 1.85;
  margin: 23px auto 0;
  max-width: 720px;
}
.change-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.change-card {
  background: #fff;
  border: 1px solid #e0e9f1;
  border-radius: 14px;
  padding: 30px;
  min-height: 282px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(31, 71, 106, 0.04);
  transition: 0.3s;
}
.change-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 55px rgba(31, 96, 147, 0.1);
  border-color: #c7e4f6;
}
.change-old {
  width: 100%;
  min-height: 84px;
  padding: 12px 16px 14px;
  display: block;
  color: #5f6f84;
  background: #f1f4f8;
  border: 1px solid #e0e6ee;
  border-radius: 11px;
}
.change-old span {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: #68788e;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: #fff;
  border: 1px solid #d5dee8;
  border-radius: 5px;
}
.change-old strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.change-line {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.change-line::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, #b9c9df, #2564ed);
}
.change-line::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #2564ed;
  border-bottom: 1.5px solid #2564ed;
  transform: translateX(-3px) rotate(45deg);
}
.change-line span {
  position: relative;
  z-index: 1;
  padding: 4px 10px;
  color: #2564ed;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: #fff;
  border: 1px solid #d6e2fa;
  border-radius: 99px;
}
.change-now {
  min-height: 84px;
  padding: 12px 16px 14px;
  color: #fff;
  background: linear-gradient(135deg, #1b56d8, #078fe9);
  border-radius: 11px;
  box-shadow: 0 12px 26px rgba(31, 101, 221, 0.2);
}
.change-now > span {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 5px;
}
.change-now h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
.shift-conclusion {
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding: 18px 22px;
  color: #4c618c;
  font-size: 12px;
  line-height: 1.7;
  background: linear-gradient(105deg, #eef6ff, #f8f5ff);
  border: 1px solid #d9e3fb;
  border-radius: 10px;
  box-shadow: none;
}
.shift-conclusion > span {
  color: #2864f0;
  font-size: inherit;
  font-weight: 700;
  letter-spacing: 0;
  margin-right: 5px;
}
.shift-conclusion strong {
  color: inherit;
  font-size: inherit;
  font-weight: 400;
  line-height: inherit;
}
.risk-opportunity-section {
  padding: 118px 5vw;
  background: #fff;
}
.risk-opportunity-heading {
  width: min(1240px, 100%);
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}
.risk-opportunity-heading h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-wrap: balance;
  margin: 0;
}
.risk-opportunity-heading h2 em {
  color: #0a84df;
  font-style: normal;
}
.risk-opportunity-heading > p {
  color: #6f8190;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.risk-opportunity-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.risk-opportunity-grid > article {
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e1e9ee;
}
.risk-panel {
  background: linear-gradient(145deg, #fff8f6, #fff);
}
.opportunity-panel {
  background: linear-gradient(145deg, #f2fbf9, #fff);
}
.panel-title {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e4eaee;
}
.panel-title > span {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 800;
}
.risk-panel .panel-title > span {
  color: #d36f60;
  background: #ffebe7;
}
.opportunity-panel .panel-title > span {
  color: #0ba985;
  background: #e2f8f1;
}
.panel-title small {
  display: block;
  font:
    8px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.16em;
  color: #9aabb6;
  margin-bottom: 5px;
}
.panel-title h3 {
  margin: 0;
  font-size: 19px;
}
.panel-list {
  display: grid;
  gap: 0;
}
.panel-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 20px 0;
  border-bottom: 1px solid #e9eef1;
}
.panel-list > div:last-child {
  border: 0;
  padding-bottom: 4px;
}
.panel-list > div > b {
  color: #bcc8d0;
  font:
    10px var(--font-geist-mono),
    monospace;
  padding-top: 3px;
}
.panel-list span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.panel-list strong {
  font-size: 14px;
}
.panel-list small {
  color: #758694;
  font-size: 11px;
  line-height: 1.7;
}
.risk-note {
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding: 18px 22px;
  background: #071b2d;
  color: #94a9b7;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.7;
}
.risk-note b {
  color: #3ad4eb;
  margin-right: 5px;
}

.engine-section {
  background: #061525;
  color: white;
  padding: 118px 5vw 96px;
  position: relative;
  overflow: hidden;
}
.engine-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  left: 50%;
  top: 300px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(9, 130, 219, 0.17), transparent 65%);
  pointer-events: none;
}
.engine-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 143, 192, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 143, 192, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, black 30%, transparent);
  pointer-events: none;
}
.engine-heading {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  align-items: end;
  gap: 80px;
  position: relative;
  z-index: 2;
}
.engine-heading h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-wrap: balance;
  margin: 0;
}
.engine-heading h2 em {
  font-style: normal;
  color: #42dff8;
}
.engine-heading > p {
  color: #8da7ba;
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 4px;
}
.engine-section .section-kicker {
  color: #35d4ef;
}
.engine-map {
  width: min(1240px, 100%);
  height: 765px;
  margin: 58px auto 20px;
  position: relative;
  z-index: 2;
}
.engine-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(43, 178, 229, 0.14);
  border-radius: 50%;
}
.engine-orbit::before,
.engine-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27daf5;
  box-shadow: 0 0 14px #27daf5;
}
.orbit-one {
  width: 420px;
  height: 420px;
  animation: orbitSpin 18s linear infinite;
}
.orbit-one::before {
  left: 28px;
  top: 83px;
}
.orbit-one::after {
  right: 18px;
  bottom: 112px;
}
.orbit-two {
  width: 540px;
  height: 540px;
  border-style: dashed;
  animation: orbitSpin 28s linear reverse infinite;
}
.orbit-two::before {
  left: 93px;
  bottom: 33px;
}
.orbit-two::after {
  right: 76px;
  top: 44px;
}
@keyframes orbitSpin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.engine-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 45% 35%, #124a73, #06182a 66%);
  border: 1px solid rgba(79, 209, 246, 0.55);
  box-shadow:
    0 0 0 16px rgba(19, 127, 182, 0.06),
    0 0 0 34px rgba(23, 138, 192, 0.035),
    0 0 80px rgba(7, 146, 222, 0.3);
  z-index: 2;
}
.engine-core::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(57, 220, 245, 0.24);
  border-radius: 50%;
}
.engine-core span {
  font:
    10px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.25em;
  color: #63dff1;
}
.engine-core strong {
  font-size: 48px;
  letter-spacing: -0.06em;
  margin: 5px 0;
  color: #e9fcff;
}
.engine-core small {
  font:
    9px var(--font-geist-mono),
    monospace;
  color: #779aae;
  letter-spacing: 0.15em;
}
.engine-card {
  width: 340px;
  position: absolute;
  background: linear-gradient(
    145deg,
    rgba(16, 48, 72, 0.88),
    rgba(6, 29, 48, 0.78)
  );
  border: 1px solid rgba(106, 181, 216, 0.19);
  border-radius: 12px;
  padding: 22px 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.13);
  transition: 0.3s;
}
.engine-card:hover {
  transform: translateY(-5px);
  border-color: rgba(57, 207, 240, 0.42);
  box-shadow: 0 22px 60px rgba(0, 115, 181, 0.16);
}
.engine-card-1 {
  left: 0;
  top: 24px;
}
.engine-card-2 {
  right: 0;
  top: 24px;
}
.engine-card-3 {
  left: 0;
  top: 272px;
}
.engine-card-4 {
  right: 0;
  top: 272px;
}
.engine-card-5 {
  left: 0;
  top: 520px;
}
.engine-card-6 {
  right: 0;
  top: 520px;
}
.engine-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.engine-card-top i {
  font:
    800 9px var(--font-geist-mono),
    monospace;
  color: #3ed7f1;
  border: 1px solid rgba(65, 213, 240, 0.3);
  border-radius: 6px;
  padding: 7px 8px;
  box-shadow: inset 0 0 14px rgba(35, 188, 224, 0.08);
}
.engine-card-top span {
  color: #4b6c82;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.engine-card > small {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #24bde3;
}
.engine-card h3 {
  margin: 6px 0 8px;
  font-size: 20px;
}
.engine-card p {
  margin: 0;
  color: #89a2b4;
  font-size: 12px;
  line-height: 1.65;
  min-height: 40px;
}
.engine-card > div:last-child {
  display: flex;
  gap: 7px;
  margin-top: 13px;
}
.engine-card b {
  font-size: 9px;
  color: #7896a9;
  font-weight: 500;
  background: rgba(104, 166, 197, 0.08);
  border-radius: 4px;
  padding: 5px 7px;
}
.engine-flow {
  width: min(1050px, 100%);
  margin: 30px auto 0;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid rgba(95, 178, 214, 0.15);
  background: rgba(9, 38, 59, 0.52);
  border-radius: 50px;
  color: #8eaabc;
  position: relative;
  z-index: 2;
  font-size: 12px;
}
.engine-flow i {
  color: #315e78;
  font-style: normal;
}
.engine-flow b {
  color: #45dcb8;
  font-weight: 600;
}

.growth-logic {
  padding: 120px 5vw 110px;
  background: #fff;
}
.left-heading {
  text-align: left;
  margin-left: 0;
}
.growth-logic > .section-heading {
  width: min(1240px, 100%);
  max-width: none;
  margin-inline: auto;
}
.left-heading h2 em {
  color: #0c82df;
}
.left-heading > p:last-child {
  margin-left: 0;
  max-width: 700px;
}
.growth-steps {
  width: min(1240px, 100%);
  margin: 55px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #e0eaf1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(26, 76, 113, 0.06);
}
.growth-steps article {
  padding: 32px 28px 28px;
  position: relative;
  min-height: 296px;
  border-right: 1px solid #e6edf3;
}
.growth-steps article:last-child {
  border: 0;
}
.step-id {
  position: absolute;
  right: 20px;
  top: 18px;
  color: #c2ced7;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.step-symbol {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ecf8ff, #f7fcff);
  border: 1px solid #d5eafa;
  display: grid;
  place-items: center;
  color: #148be7;
  box-shadow: 0 8px 22px rgba(18, 134, 220, 0.08);
}
.step-symbol i {
  font-style: normal;
  font-size: 24px;
}
.growth-steps h3 {
  font-size: 20px;
  margin: 29px 0 11px;
}
.growth-steps p {
  color: #778899;
  font-size: 13px;
  line-height: 1.75;
  min-height: 70px;
  margin: 0;
}
.growth-steps b {
  display: inline-block;
  margin-top: 15px;
  font-size: 11px;
  color: #168cdd;
  padding: 6px 10px;
  background: #edf8fe;
  border-radius: 5px;
}
.step-arrow {
  position: absolute;
  right: -17px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: white;
  border: 1px solid #dfebf3;
  color: #68accf;
  z-index: 2;
}
.growth-quote {
  width: min(1240px, 100%);
  margin: 20px auto 0;
  background: linear-gradient(100deg, #f1f9fe, #f5fbf9);
  border-left: 4px solid #18afd7;
  border-radius: 4px 10px 10px 4px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.growth-quote span {
  color: #1489d9;
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.growth-quote strong {
  font-size: 15px;
  line-height: 1.6;
}

.compare-section {
  padding: 120px 5vw;
  background: #f3f7fa;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}
.compare-copy {
  max-width: 530px;
  margin-left: auto;
}
.compare-copy h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-wrap: balance;
  margin: 0;
}
.compare-copy h2 em {
  color: #0a83e4;
  font-style: normal;
}
.compare-copy > p:not(.section-kicker) {
  color: #6d7d8d;
  font-size: 15px;
  line-height: 1.9;
  margin: 24px 0;
}
.trust-formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 28px 0;
}
.trust-formula span {
  font-size: 11px;
  color: #147fcf;
  background: white;
  border: 1px solid #d9eaf5;
  padding: 8px 10px;
  border-radius: 5px;
}
.trust-formula i {
  color: #9eb3c0;
  font-style: normal;
  font-size: 11px;
}
.text-link {
  color: #087ee2;
  font-size: 14px;
  font-weight: 700;
}
.text-link span {
  margin-left: 10px;
}
.compare-table {
  background: white;
  border: 1px solid #dde7ee;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28, 73, 106, 0.08);
}
.compare-head,
.compare-row {
  display: grid;
  grid-template-columns: 105px 1fr 1.12fr;
}
.compare-head {
  background: #071c2e;
  color: white;
}
.compare-head > * {
  padding: 17px 18px;
  font-size: 12px;
  text-align: left;
}
.compare-head b {
  background: #132838;
  color: #9aabba;
  font-weight: 600;
}
.compare-head strong {
  background: linear-gradient(90deg, #087dcf, #0968c5);
  font-weight: 650;
}
.compare-row {
  border-bottom: 1px solid #e7edf2;
  min-height: 67px;
}
.compare-row:last-child {
  border: 0;
}
.compare-row > * {
  padding: 16px 18px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.55;
}
.compare-row > span {
  color: #637587;
  font-weight: 700;
}
.compare-row > b {
  color: #8796a3;
  font-weight: 500;
  background: #fbfcfd;
  border-left: 1px solid #edf1f4;
}
.compare-row > strong {
  color: #25445a;
  font-weight: 600;
  background: #f5fbff;
  border-left: 1px solid #e2edf5;
}
.compare-row i {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-right: 8px;
  font-style: normal;
  flex: 0 0 auto;
  font-size: 10px;
}
.compare-row b i {
  color: #ba8178;
  background: #fff0ee;
}
.compare-row strong i {
  color: #0da689;
  background: #e5f9f5;
}

.role-section {
  padding: 120px 5vw;
  background: #fff;
}
.role-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.role-grid article {
  border: 1px solid #dee8ee;
  border-radius: 14px;
  padding: 25px;
  background: white;
  min-height: 420px;
  box-shadow: 0 15px 45px rgba(26, 71, 103, 0.04);
  transition: 0.25s;
}
.role-grid article:hover {
  transform: translateY(-5px);
  border-color: #c6e4f4;
  box-shadow: 0 22px 55px rgba(25, 100, 151, 0.09);
}
.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.role-top i {
  font:
    800 9px var(--font-geist-mono),
    monospace;
  color: #1689d8;
  border: 1px solid #d8e9f4;
  background: #f3f9fd;
  border-radius: 5px;
  padding: 7px 8px;
}
.role-top span {
  color: #bac7d0;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.role-grid h3 {
  font-size: 20px;
  margin: 25px 0 19px;
}
.role-question,
.role-answer {
  border-radius: 8px;
  padding: 15px 16px;
  margin-bottom: 10px;
}
.role-question {
  background: #f5f8fa;
}
.role-answer {
  background: #eef9fc;
}
.role-question small,
.role-answer small {
  display: block;
  color: #79909e;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.role-question strong {
  font-size: 12px;
  line-height: 1.7;
}
.role-answer p {
  color: #316177;
  font-size: 11px;
  line-height: 1.75;
  margin: 0;
}
.role-grid ul {
  list-style: none;
  padding: 17px 0 0;
  margin: 17px 0 0;
  border-top: 1px solid #e6edf2;
  display: grid;
  gap: 10px;
}
.role-grid li {
  color: #6f8492;
  font-size: 10px;
}
.role-grid li b {
  color: #0bad89;
  margin-right: 7px;
}
.role-consensus {
  width: min(1240px, 100%);
  margin: 18px auto 0;
  padding: 21px 25px;
  background: #071b2d;
  color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.role-consensus span {
  color: #39d2eb;
  font-size: 10px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.role-consensus strong {
  font-size: 13px;
  line-height: 1.7;
}

.results-section {
  padding: 112px 5vw;
  background: #fff;
}
.results-shell {
  width: min(1340px, 100%);
  margin: auto;
  background: #071a2b;
  border-radius: 22px;
  padding: 70px;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(3, 28, 48, 0.16);
}
.results-shell::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 650px;
  left: -350px;
  bottom: -360px;
  border-radius: 50%;
  background: rgba(5, 151, 226, 0.14);
  filter: blur(20px);
}
.results-copy {
  position: relative;
  z-index: 2;
}
.results-copy h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-wrap: balance;
  margin: 0;
}
.results-copy h2 em {
  font-style: normal;
  color: #3cdcf2;
}
.results-copy > p:not(.section-kicker) {
  color: #8ea4b5;
  font-size: 14px;
  line-height: 1.85;
}
.results-copy ul {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 15px;
}
.results-copy li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #8fa6b6;
  font-size: 12px;
}
.results-copy li i {
  width: 25px;
  height: 25px;
  border: 1px solid rgba(42, 209, 229, 0.25);
  color: #31d5e7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-style: normal;
  font-size: 10px;
}
.results-copy li span {
  display: flex;
  gap: 12px;
  align-items: center;
}
.results-copy li b {
  color: #d4e4eb;
  font-size: 13px;
}
.dashboard {
  background: #f7fafc;
  color: #173044;
  border-radius: 12px;
  padding: 17px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  transform: perspective(1000px) rotateY(-2deg);
}
.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 10px;
  color: #748697;
}
.dashboard-head > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a4355;
  font-size: 11px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.metric-grid article {
  background: white;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  padding: 13px;
  display: flex;
  flex-direction: column;
}
.metric-grid span {
  color: #8293a0;
  font-size: 8px;
}
.metric-grid strong {
  font-size: 20px;
  margin: 7px 0;
  color: #17394e;
}
.metric-grid small {
  color: #8aa0ad;
  font-size: 7px;
}
.metric-grid small b {
  color: #10a68d;
}
.chart-card {
  margin-top: 9px;
  background: white;
  border: 1px solid #e5edf3;
  border-radius: 8px;
  padding: 14px;
}
.chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  color: #78909f;
}
.chart-title b {
  font-size: 10px;
  color: #294457;
}
.chart-title span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.chart-title i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  display: inline-block;
}
.dot-blue {
  background: #2f80ed;
}
.dot-violet {
  background: #7b61ff;
}
.dot-cyan {
  background: #22c7df;
}
.dot-green {
  background: #34c89a;
}
.chart-area {
  height: 182px;
  position: relative;
  margin-top: 15px;
  overflow: hidden;
  border-left: 1px solid #e5edf3;
  border-bottom: 1px solid #e5edf3;
}
.chart-grid-lines {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  z-index: 1;
  pointer-events: none;
}
.chart-grid-lines i {
  height: 1px;
  background: #edf2f5;
}
.chart-lines {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  bottom: 24px;
  width: 100%;
  height: calc(100% - 29px);
  z-index: 2;
  overflow: visible;
  pointer-events: none;
}
.chart-series {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}
.series-web {
  stroke: #2f80ed;
}
.series-crawl {
  stroke: #7b61ff;
}
.series-citation {
  stroke: #22c7df;
}
.series-recommendation {
  stroke: #34c89a;
}
.chart-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  display: flex;
  justify-content: space-around;
  color: #9babb6;
  font-size: 7px;
  background: white;
  padding-top: 5px;
  z-index: 3;
}

.case-section {
  padding: 120px 5vw;
  background: #f5f8fa;
}
.case-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.case-card {
  background: white;
  border: 1px solid #dfe8ef;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}
.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(19, 71, 109, 0.11);
}
.case-visual {
  height: 185px;
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(29, 142, 235, 0.3),
      transparent 34%
    ),
    linear-gradient(135deg, #071a2d, #0e3555);
  position: relative;
  overflow: hidden;
  color: #50d8f1;
}
.case-green .case-visual {
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(45, 211, 167, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, #071d29, #0c3e43);
  color: #4be4b9;
}
.case-cyan .case-visual {
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(33, 211, 230, 0.28),
      transparent 34%
    ),
    linear-gradient(135deg, #061d2d, #0a3b50);
}
.case-visual > span {
  position: absolute;
  left: 20px;
  top: 18px;
  font:
    9px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.15em;
  color: #6f9bb3;
}
.case-visual > i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  font-style: normal;
  font-size: 54px;
  z-index: 2;
  text-shadow: 0 0 28px currentColor;
}
.case-rings {
  position: absolute;
  width: 150px;
  height: 70px;
  border: 1px solid currentColor;
  opacity: 0.3;
  border-radius: 50%;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 0 22px rgba(55, 193, 225, 0.04),
    0 0 0 45px rgba(55, 193, 225, 0.025);
}
.case-content {
  padding: 26px;
}
.case-content small {
  color: #1185d4;
  font-size: 11px;
  letter-spacing: 0.07em;
}
.case-green .case-content small {
  color: #189e7e;
}
.case-content h3 {
  font-size: 18px;
  line-height: 1.55;
  min-height: 84px;
  margin: 9px 0 15px;
}
.case-content > div {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.case-content > div span {
  padding: 5px 8px;
  background: #f0f6f9;
  border-radius: 4px;
  color: #768997;
  font-size: 9px;
}
.case-content a {
  display: block;
  margin-top: 20px;
  padding-top: 17px;
  border-top: 1px solid #e7edf1;
  color: #147fcf;
  font-size: 12px;
  font-weight: 700;
}

.customer-proof-section {
  padding: 90px 5vw;
  background: #fff;
}
.customer-case-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.customer-case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cbdaf0;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(24, 70, 139, 0.08);
  transition: 0.3s;
}
.customer-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(24, 70, 139, 0.13);
}
.customer-case-card > img {
  display: block;
  width: 100%;
  height: 165px;
  object-fit: cover;
}
.customer-case-content {
  flex: 1;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
}
.case-entity-bar {
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.case-entity-bar > div {
  min-width: 0;
  padding: 5px 8px;
  display: inline-flex;
  gap: 4px;
  align-items: baseline;
  background: #f2f5fd;
  border-radius: 5px;
}
.case-entity-bar dt,
.case-entity-bar dd {
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}
.case-entity-bar dt {
  color: #7b8da9;
}
.case-entity-bar dt::after {
  content: "｜";
  color: #b0bed2;
}
.case-entity-bar dd {
  min-width: 0;
  color: #314c75;
  font-weight: 700;
}
.customer-case-content > h3 {
  margin: 0 0 10px;
  color: #142f5c;
  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.case-standard-block {
  padding: 10px 0;
  border-top: 1px solid #e2e9f3;
}
.case-standard-block h4 {
  margin: 0 0 5px;
  color: #1d4f9c;
  font-size: 12px;
  letter-spacing: 0.03em;
}
.case-standard-block p {
  margin: 0;
  color: #5a6e8c;
  font-size: 11px;
  line-height: 1.65;
}
.case-standard-result {
  margin-inline: -8px;
  padding-inline: 8px;
  background: linear-gradient(105deg, #f2f8ff, #f8f6ff);
  border-radius: 8px;
}
.case-standard-result h4 {
  color: #19745f;
}
.case-standard-result p::before {
  content: "✓";
  margin-right: 5px;
  color: #16866d;
  font-weight: 800;
}
.case-diagnosis-link {
  margin-top: 12px;
  min-height: 38px;
  padding: 9px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #1764d8;
  font-size: 11px;
  font-weight: 800;
  background: transparent;
  border-top: 1px solid #dce5f2;
}
.case-diagnosis-link:hover {
  color: #084eb7;
}
.case-diagnosis-link span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 13px;
  background: #1764d8;
  border-radius: 50%;
}
.customer-proof-section .section-heading > p:last-child {
  max-width: 660px;
}
.customer-proof-section .section-heading {
  margin-bottom: 34px;
}
.customer-proof-section .section-heading h2 {
  font-size: clamp(32px, 3vw, 46px);
}
.customer-proof-section .section-heading h2 em {
  color: #2864f0;
}

.faq-section {
  padding: 120px 5vw;
  background: #f4f7fd;
}
.faq-list {
  width: min(960px, 100%);
  margin: auto;
  display: grid;
  gap: 10px;
}
.faq-list details {
  overflow: hidden;
  background: #fff;
  border: 1px solid #d7e2f3;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(32, 75, 139, 0.04);
}
.faq-list details[open] {
  border-color: #afc8ee;
  box-shadow: 0 12px 30px rgba(32, 75, 139, 0.08);
}
.faq-list summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #17335f;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
  list-style: none;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  flex: 0 0 auto;
  color: #7e93b5;
  font:
    700 9px var(--font-geist-mono),
    monospace;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: #2864f0;
  font-size: 18px;
  font-weight: 400;
  background: #edf3ff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: #2864f0;
}
.faq-list details[open] summary {
  padding-bottom: 14px;
}
.faq-list details > p {
  margin: 0 54px 0 57px;
  padding: 0 0 20px;
  color: #607493;
  font-size: 13px;
  line-height: 1.85;
}
.faq-action {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.service-section {
  background: white;
  padding: 120px 5vw 0;
}
.service-main {
  width: min(1240px, 100%);
  margin: auto;
}
.service-main .section-heading {
  max-width: 820px;
}
.service-path {
  display: grid;
  grid-template-columns: 1fr 30px 1fr 30px 1fr 30px 1fr;
  align-items: center;
  margin-top: 55px;
  padding: 31px;
  background: #f5f9fb;
  border: 1px solid #e2ebf1;
  border-radius: 14px;
}
.service-path > div {
  min-height: 132px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  border-radius: 9px;
  background: white;
  border: 1px solid #e4edf2;
}
.service-path > i {
  text-align: center;
  color: #7eafc9;
  font-style: normal;
}
.service-path span {
  color: #1592dd;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.service-path b {
  font-size: 17px;
  margin: 18px 0 7px;
}
.service-path small {
  color: #7b8d9b;
  line-height: 1.6;
}
.service-stats {
  margin: 90px -5vw 0;
  padding: 55px 5vw;
  background: #071b2c;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.service-stats > div {
  text-align: center;
  border-right: 1px solid rgba(129, 183, 210, 0.14);
}
.service-stats > div:last-child {
  border: 0;
}
.service-stats strong {
  display: block;
  font-size: 38px;
  letter-spacing: -0.04em;
}
.service-stats em {
  color: #39d5ec;
  font-style: normal;
  font-size: 22px;
}
.service-stats span {
  display: block;
  color: #7997aa;
  font-size: 12px;
  margin-top: 8px;
}

.final-cta {
  height: 510px;
  background: #061526;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 166, 217, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 166, 217, 0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}
.final-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 142, 222, 0.2),
    rgba(4, 53, 88, 0.08) 46%,
    transparent 68%
  );
  border: 1px solid rgba(50, 181, 228, 0.08);
}
.final-content {
  position: relative;
  z-index: 2;
}
.final-content > p {
  color: #36cfea;
  font:
    10px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.24em;
}
.final-content h2 {
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-wrap: balance;
  margin: 19px 0;
}
.final-content h2 em {
  font-style: normal;
  color: #40dff5;
}
.final-content > span {
  color: #91a8b8;
  font-size: 15px;
}
.final-content > div {
  margin: 30px 0 18px;
  display: flex;
  justify-content: center;
  gap: 13px;
}
.final-content small {
  color: #5e7e92;
  font-size: 10px;
  letter-spacing: 0.06em;
}

/* Inner pages */
.inner-page {
  background: white;
}
.inner-hero {
  height: 750px;
  min-height: 750px;
  background: #061526;
  color: white;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.inner-hero-image,
.about-world {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.72;
}
.inner-hero-image::after,
.about-world::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #041423 0%,
    rgba(4, 20, 35, 0.95) 40%,
    rgba(4, 20, 35, 0.35) 78%,
    rgba(4, 20, 35, 0.68)
  );
}
.inner-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 155, 209, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 155, 209, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
}
.inner-hero-content {
  width: min(1400px, 90vw);
  margin: auto;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  padding: 75px 0;
}
.inner-hero-copy {
  max-width: 840px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #64859a;
  font-size: 11px;
  margin-bottom: 48px;
}
.breadcrumb a:hover {
  color: #39d7ef;
}
.breadcrumb b {
  color: #95aebe;
  font-weight: 500;
}
.inner-hero h1 {
  font-size: clamp(44px, 4.3vw, 70px);
  line-height: 1.18;
  letter-spacing: -0.05em;
  margin: 0;
}
.inner-hero h1 em {
  font-style: normal;
  color: #42dff7;
}
.inner-hero-copy > p:not(.eyebrow) {
  max-width: 730px;
  color: #9bb1c1;
  font-size: 16px;
  line-height: 1.9;
  margin: 28px 0 32px;
}
.solution-trust {
  display: flex;
  gap: 23px;
  margin-top: 28px;
  color: #829eaf;
  font-size: 11px;
}
.solution-trust span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.solution-trust i {
  font-style: normal;
  color: #32d2b4;
}
.solution-radar {
  width: 360px;
  flex: 0 0 360px;
  background: rgba(7, 31, 50, 0.68);
  border: 1px solid rgba(92, 181, 220, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  padding: 21px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
}
.radar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #67899d;
  font:
    9px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.1em;
  border-bottom: 1px solid rgba(116, 180, 209, 0.14);
  padding-bottom: 15px;
}
.radar-head b {
  color: #aec5d2;
  font-size: 10px;
}
.radar-visual {
  width: 260px;
  height: 260px;
  margin: 25px auto;
  position: relative;
  display: grid;
  place-items: center;
}
.radar-ring {
  position: absolute;
  border: 1px solid rgba(47, 196, 232, 0.22);
  border-radius: 50%;
}
.ring-a {
  inset: 9px;
}
.ring-b {
  inset: 48px;
  border-style: dashed;
}
.ring-c {
  inset: 85px;
  background: radial-gradient(
    circle,
    rgba(23, 180, 222, 0.2),
    rgba(5, 40, 63, 0.2)
  );
  box-shadow: 0 0 40px rgba(16, 159, 214, 0.14);
}
.radar-visual::before,
.radar-visual::after {
  content: "";
  position: absolute;
  background: rgba(50, 191, 227, 0.16);
}
.radar-visual::before {
  width: 1px;
  height: 100%;
}
.radar-visual::after {
  height: 1px;
  width: 100%;
}
.radar-visual strong {
  font-size: 26px;
  z-index: 2;
  color: #dbf8ff;
}
.radar-visual i {
  position: absolute;
  font-style: normal;
  color: #6f9bb0;
  font-size: 9px;
}
.radar-visual i:nth-of-type(1) {
  top: 0;
}
.radar-visual i:nth-of-type(2) {
  right: -7px;
}
.radar-visual i:nth-of-type(3) {
  bottom: 0;
}
.radar-visual i:nth-of-type(4) {
  left: -7px;
}
.radar-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(116, 180, 209, 0.14);
  padding-top: 16px;
}
.radar-bottom span {
  text-align: center;
  color: #69889b;
  font-size: 8px;
  border-right: 1px solid rgba(116, 180, 209, 0.12);
}
.radar-bottom span:last-child {
  border: 0;
}
.radar-bottom b {
  display: block;
  color: #d9eef6;
  font-size: 17px;
  margin-bottom: 3px;
}

.solution-problems {
  padding: 118px 5vw;
  background: linear-gradient(180deg, #fff, #f5f9fb);
}
.problem-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.problem-grid article {
  background: white;
  border: 1px solid #dfe8ee;
  border-radius: 13px;
  padding: 27px;
  min-height: 275px;
  box-shadow: 0 15px 45px rgba(29, 73, 105, 0.045);
  transition: 0.25s;
}
.problem-grid article:hover {
  transform: translateY(-5px);
  border-color: #c4e3f4;
  box-shadow: 0 20px 55px rgba(23, 102, 157, 0.09);
}
.problem-grid article > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.problem-grid article > div span {
  color: #b1bfca;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.problem-grid article > div i {
  font-style: normal;
  font-size: 29px;
  color: #138be2;
}
.problem-grid h3 {
  font-size: 19px;
  margin: 38px 0 12px;
}
.problem-grid p {
  color: #7a8a98;
  font-size: 12px;
  line-height: 1.75;
  min-height: 66px;
}
.problem-grid article > b {
  display: block;
  color: #0f88d8;
  font-size: 11px;
  margin-top: 20px;
  border-top: 1px solid #e9eef2;
  padding-top: 17px;
}

.solution-principle {
  padding: 115px 5vw;
  background: #fff;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.principle-copy {
  max-width: 570px;
  margin-left: auto;
}
.principle-copy h2,
.measurement-copy h2 {
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.principle-copy h2 em,
.measurement-copy h2 em {
  font-style: normal;
  color: #0a84df;
}
.principle-copy > p:not(.section-kicker),
.measurement-copy > p:not(.section-kicker) {
  color: #6f8190;
  font-size: 14px;
  line-height: 1.9;
  margin: 23px 0;
}
.principle-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
}
.principle-tags span {
  font-size: 10px;
  color: #187dc1;
  background: #f2f9fd;
  border: 1px solid #daeaf3;
  padding: 7px 9px;
  border-radius: 5px;
}
.principle-tags i {
  font-style: normal;
  color: #9bb2c0;
}
.principle-flow {
  min-height: 330px;
  border-radius: 17px;
  background: #071a2b;
  color: white;
  padding: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 21px;
  box-shadow: 0 22px 70px rgba(4, 35, 56, 0.13);
  position: relative;
  overflow: hidden;
}
.principle-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(52, 148, 198, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 148, 198, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
}
.flow-core,
.flow-stack,
.flow-arrow {
  position: relative;
  z-index: 2;
}
.flow-core {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(63, 207, 238, 0.4);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, #154767, #071c2d 68%);
  box-shadow:
    0 0 0 12px rgba(35, 142, 190, 0.06),
    0 0 40px rgba(21, 159, 213, 0.18);
}
.flow-core small {
  color: #67b7d2;
  font-size: 9px;
}
.flow-core strong {
  font-size: 20px;
  margin: 7px;
}
.flow-core span {
  display: block;
  width: 100%;
  color: #567b8f;
  font:
    7px var(--font-geist-mono),
    monospace;
  line-height: 1.35;
  text-align: center;
}
.flow-ai {
  border-color: rgba(50, 224, 186, 0.4);
  background: radial-gradient(circle, #155559, #07232d 68%);
}
.flow-arrow {
  color: #4e829d;
}
.flow-stack {
  display: grid;
  gap: 7px;
}
.flow-stack span {
  font-size: 9px;
  color: #8cacbd;
  border: 1px solid rgba(100, 173, 205, 0.18);
  background: rgba(24, 69, 94, 0.38);
  padding: 7px 10px;
  border-radius: 4px;
}

.capability-section {
  background: #061625;
  color: white;
  padding: 118px 5vw 100px;
  position: relative;
  overflow: hidden;
}
.capability-section::before {
  content: "";
  position: absolute;
  width: 900px;
  height: 900px;
  border-radius: 50%;
  left: 50%;
  top: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(7, 138, 208, 0.15), transparent 66%);
}
.capability-section .section-heading {
  position: relative;
  z-index: 2;
}
.capability-section .section-heading h2 {
  color: white;
}
.capability-section .section-heading > p:last-child {
  color: #819aaa;
}
.capability-section .section-kicker {
  color: #36d2ec;
}
.capability-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  position: relative;
  z-index: 2;
}
.capability-grid article {
  background: linear-gradient(
    145deg,
    rgba(16, 48, 71, 0.9),
    rgba(7, 28, 46, 0.9)
  );
  border: 1px solid rgba(94, 175, 211, 0.18);
  border-radius: 13px;
  padding: 26px;
  min-height: 300px;
  transition: 0.25s;
}
.capability-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(50, 203, 231, 0.38);
}
.capability-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.capability-top i {
  font:
    800 9px var(--font-geist-mono),
    monospace;
  color: #45d8ef;
  border: 1px solid rgba(58, 203, 230, 0.3);
  padding: 7px 8px;
  border-radius: 5px;
}
.capability-top span {
  color: #466679;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.capability-grid article > small {
  display: block;
  color: #24b8dd;
  font-size: 9px;
  letter-spacing: 0.1em;
  margin-top: 24px;
}
.capability-grid h3 {
  font-size: 21px;
  margin: 6px 0 11px;
}
.capability-grid p {
  color: #829bac;
  font-size: 12px;
  line-height: 1.7;
  min-height: 42px;
}
.capability-grid ul {
  list-style: none;
  padding: 14px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid rgba(113, 178, 207, 0.13);
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.capability-grid li {
  color: #6f8b9d;
  font-size: 9px;
}
.capability-grid li b {
  color: #2acdac;
  margin-right: 5px;
}
.capability-loop {
  width: min(1120px, 100%);
  margin: 28px auto 0;
  padding: 16px 22px;
  border-radius: 40px;
  border: 1px solid rgba(102, 181, 214, 0.16);
  background: rgba(9, 39, 60, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #7e9aaa;
  font-size: 11px;
  position: relative;
  z-index: 2;
}
.capability-loop i {
  font-style: normal;
  color: #37627a;
}
.capability-loop b {
  color: #3bdcb6;
  margin-left: 10px;
}

.roadmap-section {
  padding: 120px 5vw;
  background: #f4f8fa;
}
.roadmap-heading {
  width: min(1240px, 100%);
  margin: 0 auto 55px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}
.roadmap-heading h2 {
  font-size: clamp(34px, 3vw, 49px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.roadmap-heading h2 em {
  font-style: normal;
  color: #0d85df;
}
.roadmap-heading > p {
  color: #708292;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.roadmap-list {
  width: min(1240px, 100%);
  margin: auto;
  border: 1px solid #dde7ed;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 55px rgba(26, 71, 103, 0.05);
}
.roadmap-list article {
  display: grid;
  grid-template-columns: 145px 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 155px;
  padding: 25px 32px;
  border-bottom: 1px solid #e5edf2;
}
.roadmap-list article:last-child {
  border: 0;
}
.roadmap-list article:hover {
  background: #f8fcfe;
}
.roadmap-index {
  display: flex;
  align-items: center;
  gap: 20px;
}
.roadmap-index span {
  font-size: 10px;
  color: #1388da;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}
.roadmap-index b {
  font-size: 42px;
  color: #e2ebf0;
  font-weight: 700;
}
.roadmap-content small {
  color: #1788d6;
  font-size: 10px;
}
.roadmap-content h3 {
  font-size: 18px;
  margin: 8px 0;
}
.roadmap-content p {
  color: #788a98;
  font-size: 11px;
  line-height: 1.7;
  margin: 0;
}
.roadmap-outputs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.roadmap-outputs span {
  font-size: 10px;
  color: #537185;
  background: #f0f7fa;
  border-radius: 5px;
  padding: 7px 9px;
}
.roadmap-outputs i {
  font-style: normal;
  color: #18ae8c;
  margin-right: 5px;
}

.measurement-section {
  padding: 120px 5vw;
  background: white;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 70px;
  align-items: center;
}
.measurement-copy {
  max-width: 510px;
  margin-left: auto;
}
.measurement-copy .text-link {
  display: inline-block;
  margin-top: 8px;
}
.measurement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 700px;
}
.measurement-grid article {
  padding: 27px;
  background: #f5f9fb;
  border: 1px solid #e0eaf0;
  border-radius: 12px;
  position: relative;
}
.measurement-grid article > span {
  position: absolute;
  right: 17px;
  top: 14px;
  color: #bfccd4;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.measurement-grid h3 {
  font-size: 19px;
  margin: 4px 0 21px;
}
.measurement-grid p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6e8391;
  font-size: 11px;
  margin: 10px 0;
}
.measurement-grid p i {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #1388e5, #27cfbf);
  border-radius: 3px;
}

.stakeholder-section {
  padding: 120px 5vw;
  background: #f4f8fa;
}
.stakeholder-heading {
  width: min(1240px, 100%);
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}
.stakeholder-heading h2 {
  font-size: clamp(34px, 3vw, 49px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.stakeholder-heading h2 em {
  color: #0b84de;
  font-style: normal;
}
.stakeholder-heading > p {
  color: #6f8190;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.stakeholder-list {
  width: min(1240px, 100%);
  margin: auto;
  background: white;
  border: 1px solid #dce7ed;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(25, 70, 102, 0.05);
}
.stakeholder-list article {
  display: grid;
  grid-template-columns: 165px 1fr 1.35fr 220px;
  gap: 24px;
  align-items: center;
  min-height: 145px;
  padding: 24px 28px;
  border-bottom: 1px solid #e5edf2;
}
.stakeholder-list article:last-child {
  border: 0;
}
.stakeholder-list article:hover {
  background: #f9fcfe;
}
.stakeholder-role span {
  color: #b7c5ce;
  font:
    9px var(--font-geist-mono),
    monospace;
}
.stakeholder-role h3 {
  font-size: 16px;
  margin: 8px 0 0;
}
.stakeholder-question small,
.stakeholder-answer small {
  display: block;
  color: #1488d8;
  font-size: 9px;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.stakeholder-question strong {
  font-size: 12px;
  line-height: 1.7;
}
.stakeholder-answer p {
  color: #718491;
  font-size: 11px;
  line-height: 1.75;
  margin: 0;
}
.stakeholder-focus {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.stakeholder-focus span {
  color: #148873;
  background: #eaf8f4;
  border-radius: 5px;
  padding: 6px 8px;
  font-size: 9px;
}

.fit-section {
  padding: 115px 5vw;
  background: #f4f8fa;
}
.fit-grid {
  width: min(1050px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fit-grid article {
  background: white;
  border: 1px solid #dfe8ee;
  border-radius: 14px;
  padding: 31px 34px;
}
.fit-grid article > div {
  display: flex;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #e6edf2;
  padding-bottom: 20px;
}
.fit-grid article > div span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 15px;
}
.fit-yes > div span {
  color: #0ca783;
  background: #e7f8f3;
}
.fit-no > div span {
  color: #c27568;
  background: #fff0ed;
}
.fit-grid h3 {
  font-size: 18px;
  margin: 0;
}
.fit-grid ul {
  margin: 21px 0 0;
  padding-left: 19px;
  color: #718492;
  font-size: 12px;
  line-height: 2.15;
}
.fit-yes li::marker {
  color: #16b190;
}
.fit-no li::marker {
  color: #d38a7f;
}

.page-cta {
  min-height: 500px;
  background: #061525;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 70px 20px;
}
.page-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 164, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 164, 216, 0.07) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle, black, transparent 70%);
}
.page-cta > div:last-child {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-cta p {
  color: #35d0e9;
  font:
    10px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.23em;
}
.page-cta h2 {
  font-size: clamp(36px, 3.5vw, 52px);
  letter-spacing: -0.045em;
  margin: 20px 0;
}
.page-cta > div > span {
  color: #8ca5b5;
  font-size: 14px;
  line-height: 1.8;
}
.page-cta .hero-actions {
  justify-content: center;
  margin: 30px 0 18px;
}
.page-cta small {
  color: #597789;
  font-size: 9px;
  letter-spacing: 0.05em;
}

/* About page */
.about-world {
  background-position: center;
  opacity: 0.7;
}
.about-world::after {
  background:
    linear-gradient(
      90deg,
      #041423 0%,
      rgba(4, 20, 35, 0.94) 46%,
      rgba(4, 20, 35, 0.25) 100%
    ),
    linear-gradient(0deg, rgba(4, 20, 35, 0.8), transparent 55%);
}
.about-hero-content {
  align-items: flex-end;
}
.about-manifesto {
  width: 390px;
  flex: 0 0 390px;
  background: rgba(7, 31, 50, 0.64);
  border: 1px solid rgba(97, 183, 219, 0.2);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  padding: 29px;
  margin-bottom: 12px;
}
.about-manifesto > span {
  color: #34d3eb;
  font:
    9px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.18em;
}
.about-manifesto blockquote {
  font-size: 18px;
  line-height: 1.75;
  color: #d4e8f0;
  margin: 22px 0;
  border-left: 2px solid #28cfe8;
  padding-left: 19px;
}
.about-manifesto small {
  color: #658499;
  font-size: 10px;
}
.about-stats {
  padding: 48px 5vw;
  background: #071b2d;
  color: white;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.about-stats > div {
  text-align: center;
  border-right: 1px solid rgba(123, 181, 207, 0.14);
}
.about-stats > div:last-child {
  border: 0;
}
.about-stats strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.about-stats em {
  font-style: normal;
  color: #39d4ec;
  font-size: 18px;
}
.about-stats span {
  display: block;
  color: #718fa2;
  font-size: 10px;
  margin-top: 7px;
}
.origin-section {
  padding: 120px 5vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: white;
}
.origin-visual {
  height: 520px;
  max-width: 620px;
  margin-left: auto;
  background: #071b2d;
  color: white;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 26px 80px rgba(4, 31, 50, 0.14);
}
.origin-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(55, 159, 207, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(55, 159, 207, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.origin-visual > span,
.origin-visual > strong {
  position: relative;
  z-index: 2;
}
.origin-visual > span {
  color: #37d2eb;
  font:
    9px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.2em;
}
.origin-visual > strong {
  font-size: 26px;
  line-height: 1.5;
  margin-top: 14px;
}
.origin-signal {
  position: absolute;
  width: 310px;
  height: 310px;
  right: -35px;
  top: 30px;
  border: 1px solid rgba(52, 197, 228, 0.2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 50px rgba(45, 165, 210, 0.035),
    0 0 0 100px rgba(45, 165, 210, 0.025);
}
.origin-signal::before,
.origin-signal::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(51, 181, 220, 0.19);
  border-radius: 50%;
}
.origin-signal::before {
  inset: 50px;
}
.origin-signal::after {
  inset: 95px;
  background: radial-gradient(circle, rgba(29, 183, 222, 0.2), transparent);
}
.origin-signal b {
  z-index: 2;
  font-size: 28px;
  color: #ddfaff;
}
.origin-signal i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #37d3e9;
  box-shadow: 0 0 14px #37d3e9;
}
.origin-signal i:nth-child(1) {
  left: 25px;
  top: 80px;
}
.origin-signal i:nth-child(2) {
  right: 0;
  top: 145px;
}
.origin-signal i:nth-child(3) {
  left: 130px;
  bottom: -4px;
}
.origin-copy {
  max-width: 590px;
}
.origin-copy h2 {
  font-size: clamp(36px, 3.2vw, 49px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.origin-copy h2 em {
  font-style: normal;
  color: #0b84de;
}
.origin-copy > p:not(.section-kicker) {
  color: #6d7f8d;
  font-size: 14px;
  line-height: 1.95;
  margin: 22px 0;
}
.origin-highlight {
  margin-top: 28px;
  padding: 20px 23px;
  border-left: 3px solid #1aaed5;
  background: #f1f9fc;
  border-radius: 3px 9px 9px 3px;
}
.origin-highlight span {
  display: block;
  color: #1388d5;
  font-size: 9px;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
}
.origin-highlight strong {
  font-size: 13px;
  line-height: 1.65;
}
.position-section {
  padding: 115px 5vw;
  background: #f4f8fa;
}
.position-model {
  width: min(1050px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 45px 1fr 45px 1fr;
  align-items: center;
}
.position-model > i {
  text-align: center;
  color: #91a9b8;
  font-style: normal;
  font-size: 24px;
}
.position-model > div {
  height: 190px;
  border: 1px solid #dce7ed;
  background: white;
  border-radius: 14px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 45px rgba(25, 69, 100, 0.04);
}
.position-model span {
  color: #1287d7;
  font:
    10px var(--font-geist-mono),
    monospace;
  letter-spacing: 0.12em;
}
.position-model strong {
  font-size: 23px;
  margin: 11px 0;
}
.position-model small {
  color: #788b99;
}
.position-model .model-result {
  background: #071b2d;
  color: white;
  border-color: #071b2d;
}
.position-model .model-result span {
  color: #3bd5ec;
}
.position-model .model-result small {
  color: #748fa1;
}
.model-note {
  max-width: 900px;
  margin: 27px auto 0;
  text-align: center;
  color: #738694;
  font-size: 12px;
  line-height: 1.8;
}
.belief-section {
  padding: 120px 5vw;
  background: white;
}
.belief-heading {
  width: min(1240px, 100%);
  margin: 0 auto 55px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: end;
}
.belief-heading h2 {
  font-size: clamp(36px, 3.1vw, 49px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.belief-heading > p {
  color: #718391;
  font-size: 14px;
  line-height: 1.9;
  margin: 0;
}
.belief-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.belief-grid article {
  min-height: 260px;
  border: 1px solid #dee8ee;
  border-radius: 13px;
  padding: 26px;
  position: relative;
}
.belief-grid article > span {
  color: #b7c5cf;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.belief-grid article > i {
  position: absolute;
  right: 24px;
  top: 18px;
  color: #1389df;
  font-size: 30px;
  font-style: normal;
}
.belief-grid h3 {
  font-size: 20px;
  margin: 72px 0 12px;
}
.belief-grid p {
  color: #728593;
  font-size: 12px;
  line-height: 1.8;
}
.methodology-section {
  padding: 115px 7vw;
  background: #061625;
  color: white;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.methodology-copy {
  max-width: 520px;
  margin-left: auto;
}
.methodology-copy h2 {
  font-size: clamp(36px, 3.2vw, 50px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  margin: 0;
}
.methodology-copy h2 em {
  font-style: normal;
  color: #3edbf1;
}
.methodology-copy > p:not(.section-kicker) {
  color: #849cab;
  font-size: 14px;
  line-height: 1.9;
  margin: 22px 0 28px;
}
.methodology-section .section-kicker {
  color: #35d1ea;
}
.persona-layers {
  max-width: 690px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.persona-layers > div {
  height: 62px;
  display: grid;
  grid-template-columns: 54px 130px 1fr;
  align-items: center;
  padding: 0 23px;
  border: 1px solid rgba(84, 179, 214, 0.18);
  background: linear-gradient(
    90deg,
    rgba(14, 59, 82, 0.9),
    rgba(8, 32, 51, 0.9)
  );
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
}
.persona-layers > div:nth-child(1) {
  width: 54%;
}
.persona-layers > div:nth-child(2) {
  width: 63%;
}
.persona-layers > div:nth-child(3) {
  width: 72%;
}
.persona-layers > div:nth-child(4) {
  width: 81%;
}
.persona-layers > div:nth-child(5) {
  width: 90%;
}
.persona-layers > div:nth-child(6) {
  width: 100%;
}
.persona-layers span {
  color: #37d3eb;
  font:
    9px var(--font-geist-mono),
    monospace;
}
.persona-layers b {
  font-size: 13px;
}
.persona-layers small {
  color: #6f8b9d;
  font-size: 10px;
}
.team-section {
  padding: 120px 5vw;
  background: #f4f8fa;
}
.team-grid {
  width: min(1240px, 100%);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.team-grid article {
  background: white;
  border: 1px solid #dfe8ee;
  border-radius: 12px;
  padding: 23px;
  min-height: 250px;
}
.team-grid article > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.team-grid article > div span {
  color: #bac7d0;
  font:
    10px var(--font-geist-mono),
    monospace;
}
.team-grid small {
  color: #1389da;
  font-size: 9px;
}
.team-grid h3 {
  font-size: 18px;
  margin: 55px 0 12px;
}
.team-grid p {
  color: #718492;
  font-size: 11px;
  line-height: 1.8;
}
.timeline-section {
  padding: 120px 5vw;
  background: white;
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 80px;
}
.timeline-heading {
  max-width: 470px;
  margin-left: auto;
}
.timeline-heading h2 {
  font-size: clamp(36px, 3vw, 48px);
  line-height: 1.3;
  letter-spacing: -0.045em;
  margin: 0;
}
.timeline-heading > p:not(.section-kicker) {
  color: #6f8190;
  font-size: 14px;
  line-height: 1.9;
}
.timeline-list {
  max-width: 760px;
}
.timeline-list article {
  display: grid;
  grid-template-columns: 36px 105px 1fr;
  gap: 17px;
  min-height: 126px;
}
.timeline-point {
  position: relative;
}
.timeline-point i {
  display: block;
  width: 14px;
  height: 14px;
  border: 3px solid white;
  background: #168bdc;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #168bdc;
  position: relative;
  z-index: 2;
}
.timeline-point span {
  position: absolute;
  left: 6px;
  top: 14px;
  bottom: 0;
  width: 1px;
  background: #d7e4ec;
}
.timeline-list article > strong {
  font-size: 13px;
  color: #1285d4;
}
.timeline-list h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.timeline-list p {
  color: #738694;
  font-size: 11px;
  line-height: 1.8;
  margin: 0;
}
.promise-section {
  padding: 85px 8vw;
  background: #eaf5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
}
.promise-icon {
  width: 120px;
  height: 120px;
  border-radius: 25px 6px 25px 6px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 38px;
  font-weight: 900;
  background: linear-gradient(135deg, #0cc4e6, #1e72ed);
  box-shadow: 0 20px 50px rgba(15, 130, 211, 0.22);
}
.promise-section > div:last-child {
  max-width: 820px;
}
.promise-section h2 {
  font-size: 30px;
  line-height: 1.45;
  margin: 0;
}
.promise-section p:not(.section-kicker) {
  color: #687d8c;
  font-size: 13px;
  line-height: 1.85;
}

@media (max-width: 1050px) {
  .hero-copy {
    width: 70vw;
  }
  .hero-proof {
    display: none;
  }
  .engine-card {
    width: 300px;
  }
  .engine-map {
    height: 810px;
  }
  .engine-card-1,
  .engine-card-2 {
    top: 20px;
  }
  .engine-card-3,
  .engine-card-4 {
    top: 280px;
  }
  .engine-card-5,
  .engine-card-6 {
    top: 540px;
  }
  .compare-section {
    gap: 35px;
  }
  .results-shell {
    padding: 48px;
    gap: 40px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .role-grid {
    grid-template-columns: 1fr 1fr;
  }
  .customer-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .solution-radar,
  .about-manifesto {
    display: none;
  }
  .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  .principle-flow {
    padding: 28px;
  }
  .roadmap-list article {
    grid-template-columns: 120px 1fr;
  }
  .roadmap-outputs {
    grid-column: 2;
  }
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .hero {
    height: 720px;
    min-height: 0;
  }
  .hero-inner {
    width: calc(100% - 40px);
    align-items: flex-start;
    padding-top: 90px;
  }
  .hero-copy {
    width: 100%;
  }
  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.24;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.75;
    margin: 20px 0 25px;
  }
  .hero-actions {
    align-items: stretch;
  }
  .button {
    font-size: 13px;
    min-height: 46px;
    padding: 0 15px;
    gap: 8px;
  }
  .hero-chips {
    gap: 11px 18px;
    margin-top: 22px;
  }
  .hero-image {
    background-position: 64% center;
  }
  .hero-image::after {
    background:
      linear-gradient(
        90deg,
        rgba(3, 17, 32, 0.98),
        rgba(3, 17, 32, 0.86) 70%,
        rgba(3, 17, 32, 0.55)
      ),
      linear-gradient(0deg, rgba(3, 17, 32, 0.94), transparent 50%);
  }
  .hero-controls {
    left: 20px;
    transform: none;
    bottom: 44px;
    width: auto;
  }
  .hero-dots button span,
  .arrow {
    display: none;
  }
  .hero-dots button.is-active i {
    width: 46px;
  }
  .scroll-cue {
    display: none;
  }
  .market-shift {
    padding: 76px 20px;
  }
  .section-heading {
    margin-bottom: 38px;
    text-align: left;
  }
  .section-heading h2,
  .risk-opportunity-heading h2,
  .engine-heading h2,
  .compare-copy h2,
  .results-copy h2,
  .final-content h2 {
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: 0.025em;
  }
  .section-heading h2 br,
  .risk-opportunity-heading h2 br,
  .engine-heading h2 br,
  .compare-copy h2 br,
  .results-copy h2 br,
  .final-content h2 br {
    display: none;
  }
  .section-heading > p:last-child {
    font-size: 14px;
  }
  .change-grid {
    grid-template-columns: 1fr;
  }
  .change-card {
    min-height: 230px;
  }
  .shift-conclusion {
    padding: 18px 22px;
    margin-top: 16px;
  }
  .risk-opportunity-section,
  .role-section {
    padding: 78px 20px;
  }
  .risk-opportunity-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .risk-opportunity-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }
  .role-grid article {
    min-height: auto;
  }
  .role-consensus {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .engine-section,
  .growth-logic,
  .compare-section,
  .results-section,
  .case-section,
  .customer-proof-section,
  .faq-section,
  .service-section {
    padding: 78px 20px;
  }
  .engine-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .engine-heading > p {
    font-size: 13px;
  }
  .engine-map {
    height: auto;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .engine-orbit,
  .engine-core {
    display: none;
  }
  .engine-card {
    position: relative !important;
    inset: auto !important;
    width: 100%;
  }
  .engine-card:hover {
    transform: none;
  }
  .engine-flow {
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 10px;
  }
  .growth-steps {
    grid-template-columns: 1fr;
  }
  .growth-steps article {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #e6edf3;
  }
  .growth-steps p {
    min-height: auto;
  }
  .step-arrow {
    display: none;
  }
  .growth-quote {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .compare-section {
    grid-template-columns: 1fr;
  }
  .compare-copy {
    margin: 0;
  }
  .compare-table {
    overflow-x: auto;
  }
  .compare-head,
  .compare-row {
    min-width: 650px;
  }
  .results-shell {
    padding: 36px 20px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .dashboard {
    transform: none;
    padding: 10px;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
  }
  .chart-area {
    height: 135px;
  }
  .case-grid {
    grid-template-columns: 1fr;
  }
  .customer-case-grid {
    grid-template-columns: 1fr;
  }
  .customer-case-card > img {
    height: 180px;
  }
  .customer-case-content {
    padding: 20px;
  }
  .customer-case-content > h3 {
    font-size: 19px;
  }
  .faq-list summary {
    padding: 17px 48px 17px 16px;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
  }
  .faq-list summary::after {
    right: 15px;
  }
  .faq-list details > p {
    margin: 0 16px;
    padding-bottom: 18px;
    font-size: 12px;
  }
  .case-content h3 {
    min-height: auto;
  }
  .service-path {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 9px;
  }
  .service-path > i {
    transform: rotate(90deg);
  }
  .service-stats {
    margin: 60px -20px -78px;
    padding: 40px 20px;
    grid-template-columns: 1fr 1fr;
    gap: 36px 0;
  }
  .service-stats > div:nth-child(2) {
    border: 0;
  }
  .service-stats strong {
    font-size: 30px;
  }
  .final-cta {
    height: auto;
    padding: 90px 20px;
  }
  .final-content > div {
    flex-direction: column;
  }
  .final-content .button {
    width: 100%;
  }
  .final-content > span {
    font-size: 13px;
    line-height: 1.8;
    display: block;
  }
  .inner-hero {
    height: 759px;
    min-height: 759px;
  }
  .inner-hero-content {
    width: calc(100% - 40px);
    padding: 65px 0;
  }
  .breadcrumb {
    margin-bottom: 34px;
  }
  .inner-hero h1 {
    font-size: 39px;
  }
  .inner-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }
  .solution-trust {
    flex-wrap: wrap;
    gap: 12px 18px;
  }
  .inner-hero-image,
  .about-world {
    background-position: 70% center;
  }
  .inner-hero-image::after,
  .about-world::after {
    background: linear-gradient(
      90deg,
      rgba(4, 20, 35, 0.98),
      rgba(4, 20, 35, 0.84)
    );
  }
  .solution-problems,
  .solution-principle,
  .capability-section,
  .roadmap-section,
  .measurement-section,
  .fit-section,
  .origin-section,
  .position-section,
  .belief-section,
  .methodology-section,
  .team-section,
  .timeline-section {
    padding: 78px 20px;
  }
  .problem-grid,
  .capability-grid,
  .measurement-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid article {
    min-height: 230px;
  }
  .problem-grid p {
    min-height: auto;
  }
  .stakeholder-section {
    padding: 78px 20px;
  }
  .stakeholder-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stakeholder-list article {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 24px;
  }
  .stakeholder-focus {
    margin-top: 3px;
  }
  .solution-principle,
  .measurement-section,
  .origin-section,
  .methodology-section,
  .timeline-section {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .principle-copy,
  .measurement-copy,
  .origin-copy,
  .methodology-copy,
  .timeline-heading {
    margin: 0;
    max-width: none;
  }
  .principle-flow {
    min-height: auto;
    flex-direction: column;
  }
  .flow-arrow {
    transform: rotate(90deg);
  }
  .capability-loop {
    border-radius: 12px;
    flex-wrap: wrap;
  }
  .roadmap-heading,
  .belief-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .roadmap-list article {
    grid-template-columns: 72px 1fr;
    gap: 15px;
    padding: 22px 15px;
  }
  .roadmap-index span {
    display: none;
  }
  .roadmap-index b {
    font-size: 30px;
  }
  .roadmap-outputs {
    grid-column: 1/-1;
  }
  .roadmap-content p {
    font-size: 10px;
  }
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px 0;
    padding: 38px 20px;
  }
  .about-stats > div:nth-child(2),
  .about-stats > div:nth-child(4) {
    border: 0;
  }
  .about-stats > div:last-child {
    grid-column: 1/-1;
  }
  .origin-visual {
    height: 420px;
    margin: 0;
  }
  .origin-section {
    display: flex;
    flex-direction: column-reverse;
  }
  .origin-signal {
    width: 250px;
    height: 250px;
  }
  .position-model {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .position-model > i {
    transform: rotate(90deg);
  }
  .position-model > div {
    height: 160px;
  }
  .belief-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .timeline-list article {
    grid-template-columns: 32px 82px 1fr;
  }
  .promise-section {
    padding: 65px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
  .promise-icon {
    width: 84px;
    height: 84px;
    font-size: 27px;
  }
  .promise-section h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Reference palette: bright blue, ice blue, white and soft violet */
:root {
  --ref-blue: #2864f0;
  --ref-blue-2: #168bf5;
  --ref-navy: #071d5e;
  --ref-ink: #121a34;
  --ref-bg: #f4f7fd;
  --ref-bg-2: #edf3ff;
  --ref-card: #ffffff;
  --ref-line: #d7e3fb;
  --ref-violet: #7568ff;
  --ref-cyan: #27b9f4;
}

body {
  background: #fff;
  color: var(--ref-ink);
}
.hero {
  background: linear-gradient(120deg, #f7faff, #eaf2ff);
  color: var(--ref-navy);
}
.hero-image {
  background-position: center;
  filter: saturate(0.9) brightness(1.35);
}
.hero-image.is-active {
  opacity: 0.22;
}
.hero-image::after {
  background:
    linear-gradient(
      90deg,
      rgba(249, 251, 255, 0.99) 0%,
      rgba(245, 249, 255, 0.94) 43%,
      rgba(235, 243, 255, 0.28) 78%,
      rgba(238, 245, 255, 0.62) 100%
    ),
    linear-gradient(0deg, rgba(238, 244, 255, 0.55), transparent 45%);
}
.hero-grid {
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(39, 101, 234, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 101, 234, 0.08) 1px, transparent 1px);
}
.hero-glow {
  background: radial-gradient(
    circle,
    rgba(53, 150, 255, 0.18),
    transparent 66%
  );
}
.eyebrow {
  color: #2369d6;
}
.eyebrow span {
  background: linear-gradient(90deg, #168bf5, #7164ff);
}
.hero h1 {
  color: var(--ref-navy);
  text-shadow: none;
}
.hero h1 em,
.hero-cyan h1 em,
.hero-amber h1 em,
.hero-emerald h1 em {
  color: #1978ed;
  text-shadow: none;
}
.hero-description {
  color: #405887;
}
.button-primary,
.hero-amber .button-primary,
.hero-emerald .button-primary {
  background: linear-gradient(105deg, #2a62f1, #168df6);
  box-shadow: 0 12px 28px rgba(38, 101, 237, 0.22);
}
.button-ghost {
  border-color: #6f96ef;
  background: rgba(255, 255, 255, 0.74);
  color: #1a5bc5;
  box-shadow: 0 7px 20px rgba(61, 105, 195, 0.06);
}
.hero-chips {
  color: #425e93;
}
.hero-chips i {
  border-color: #8cb2f4;
  color: #246be1;
  background: #fff;
}
.hero-proof {
  border-color: #cfddf8;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 65px rgba(42, 87, 164, 0.12);
}
.proof-topline {
  color: #7186ac;
  border-bottom-color: #e4eaf7;
}
.proof-topline strong,
.proof-score em {
  color: #168fdb;
}
.proof-topline strong::before {
  background: #168fdb;
  box-shadow: 0 0 8px #62bcf3;
}
.proof-score b {
  color: #12336d;
}
.proof-score small,
.proof-score > span {
  color: #6d82a5;
}
.proof-score > span {
  border-left-color: #dce5f5;
}
.proof-bars span,
.proof-bars b {
  color: #6c80a3;
}
.proof-bars span::before {
  background: #e3eaf6;
}
.proof-bars span::after {
  background: linear-gradient(90deg, #2864f0, #27b9f4);
}
.arrow {
  border-color: #aac0ed;
  background: rgba(255, 255, 255, 0.8);
  color: #3066c4;
}
.arrow:hover {
  border-color: #2864f0;
  color: #2864f0;
}
.hero-dots button {
  color: #6f83aa;
}
.hero-dots i {
  background: #aebfe2;
}
.hero-dots button.is-active {
  color: #1a5fc8;
}
.hero-dots button.is-active i {
  background: #2864f0;
  box-shadow: 0 0 7px rgba(40, 100, 240, 0.26);
}
.scroll-cue {
  color: #7186a9;
}
.scroll-cue span {
  background: #9cb0d2;
}

.market-shift,
.growth-logic,
.role-section,
.results-section,
.service-section {
  background: #fff;
}
.market-shift {
  background: linear-gradient(180deg, #fff, #f5f8ff);
}
.section-kicker {
  color: #2864f0;
}
.section-heading h2 em,
.left-heading h2 em {
  color: #2864f0;
}
.section-heading > p:last-child {
  color: #63769a;
}
.change-card {
  border-color: #dce6fa;
  background: #fff;
  box-shadow: 0 14px 38px rgba(47, 88, 159, 0.05);
}
.change-line span {
  color: #2864f0;
}
.shift-conclusion {
  background: linear-gradient(105deg, #eef6ff, #f8f5ff);
  box-shadow: none;
}
.shift-conclusion > span {
  color: #2864f0;
}

.risk-opportunity-section {
  background: #fff;
}
.risk-opportunity-heading h2 em {
  color: #2864f0;
}
.risk-opportunity-grid > article {
  border-color: #dce6fa;
}
.risk-panel {
  background: linear-gradient(145deg, #f7f4ff, #fff);
}
.opportunity-panel {
  background: linear-gradient(145deg, #ecf7ff, #fff);
}
.risk-panel .panel-title > span {
  color: #745ff0;
  background: #ece8ff;
}
.opportunity-panel .panel-title > span {
  color: #1d7ee6;
  background: #e2f2ff;
}
.risk-note {
  background: linear-gradient(100deg, #edf3ff, #f5f1ff);
  color: #4c618c;
  border: 1px solid #d9e3fb;
}
.risk-note b {
  color: #2864f0;
}

.engine-section {
  background: linear-gradient(180deg, #f3f6ff, #eef4ff);
  color: var(--ref-ink);
}
.engine-section::before {
  background: radial-gradient(
    circle,
    rgba(49, 120, 245, 0.13),
    transparent 65%
  );
}
.engine-section::after {
  background-image:
    linear-gradient(rgba(53, 106, 219, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(53, 106, 219, 0.06) 1px, transparent 1px);
}
.engine-section .section-kicker {
  color: #2864f0;
}
.engine-heading h2 {
  color: var(--ref-navy);
}
.engine-heading h2 em {
  color: #2864f0;
}
.engine-heading > p {
  color: #5e739a;
}
.engine-orbit {
  border-color: rgba(44, 101, 227, 0.2);
}
.orbit-two {
  border-color: rgba(117, 104, 255, 0.2);
}
.engine-orbit::before,
.engine-orbit::after {
  background: #2864f0;
  box-shadow: 0 0 14px rgba(40, 100, 240, 0.45);
}
.engine-core {
  background: linear-gradient(145deg, #45b7f7, #285ded 72%);
  border-color: #fff;
  box-shadow:
    0 0 0 16px rgba(62, 123, 241, 0.08),
    0 0 0 34px rgba(117, 104, 255, 0.05),
    0 18px 50px rgba(36, 94, 217, 0.24);
}
.engine-core::before {
  border-color: rgba(255, 255, 255, 0.45);
}
.engine-core span,
.engine-core small {
  color: #dceeff;
}
.engine-core strong {
  color: #fff;
}
.engine-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: #d6e2f8;
  box-shadow: 0 16px 42px rgba(43, 84, 153, 0.07);
}
.engine-card:hover {
  border-color: #93b4f3;
  box-shadow: 0 22px 50px rgba(42, 92, 183, 0.12);
}
.engine-card-top i {
  color: #2864f0;
  border-color: #b7cdf6;
  background: #f0f5ff;
  box-shadow: none;
}
.engine-card-top span {
  color: #9aabd0;
}
.engine-card > small {
  color: #4f72df;
}
.engine-card h3 {
  color: #142352;
}
.engine-card p {
  color: #617395;
}
.engine-card b {
  color: #536f9f;
  background: #edf3ff;
}
.engine-flow {
  border-color: #d7e3f8;
  background: rgba(255, 255, 255, 0.86);
  color: #5a7097;
  box-shadow: 0 10px 26px rgba(45, 86, 151, 0.05);
}
.engine-flow i {
  color: #8fa6d1;
}
.engine-flow b {
  color: #2864f0;
}

.growth-steps {
  border-color: #dce6f8;
  box-shadow: 0 18px 46px rgba(36, 78, 145, 0.06);
}
.step-symbol {
  background: linear-gradient(145deg, #eaf4ff, #f6f3ff);
  border-color: #ccdcfa;
  color: #2864f0;
}
.growth-steps b {
  color: #2864f0;
  background: #eef4ff;
}
.growth-quote {
  background: linear-gradient(100deg, #eef5ff, #f3f0ff);
  border-left-color: #2864f0;
}
.growth-quote span {
  color: #2864f0;
}

.compare-section,
.case-section,
.fit-section,
.roadmap-section,
.team-section,
.position-section {
  background: #f4f7fd;
}
.compare-copy h2 em {
  color: #2864f0;
}
.compare-table {
  border-color: #d8e3f8;
  box-shadow: 0 20px 55px rgba(39, 78, 144, 0.08);
}
.compare-head {
  background: #183f9c;
}
.compare-head b {
  background: #254da8;
  color: #d4e0fb;
}
.compare-head strong {
  background: linear-gradient(90deg, #2864f0, #168bf5);
}
.compare-row > strong {
  background: #eef5ff;
  color: #284c86;
}
.trust-formula span {
  color: #2864f0;
  border-color: #d4e1f9;
  background: #fff;
}
.text-link {
  color: #2864f0;
}

.role-grid article {
  border-color: #dce6f9;
  box-shadow: 0 15px 40px rgba(36, 77, 142, 0.05);
}
.role-top i {
  color: #2864f0;
  border-color: #d1def8;
  background: #f1f5ff;
}
.role-question {
  background: #f5f7fd;
}
.role-answer {
  background: linear-gradient(135deg, #edf5ff, #f1f0ff);
}
.role-answer p {
  color: #425f91;
}
.role-consensus {
  background: linear-gradient(100deg, #2a61e9, #7162f4);
  box-shadow: 0 16px 38px rgba(48, 94, 215, 0.18);
}
.role-consensus span {
  color: #e7f6ff;
}

.results-shell {
  background: linear-gradient(135deg, #edf4ff, #f6f3ff);
  color: var(--ref-ink);
  box-shadow: 0 26px 75px rgba(36, 78, 145, 0.12);
  border: 1px solid #d7e3fa;
}
.results-shell::before {
  background: rgba(79, 139, 247, 0.13);
}
.results-copy h2 {
  color: var(--ref-navy);
}
.results-copy h2 em {
  color: #2864f0;
}
.results-copy > p:not(.section-kicker),
.results-copy li {
  color: #60769d;
}
.results-copy li i {
  border-color: #9cb9ef;
  color: #2864f0;
  background: #fff;
}
.results-copy li b {
  color: #284777;
}
.dashboard {
  box-shadow: 0 20px 55px rgba(48, 83, 143, 0.13);
}

.case-card {
  border-color: #dbe6f8;
}
.case-visual,
.case-cyan .case-visual,
.case-green .case-visual {
  background:
    radial-gradient(
      circle at 72% 42%,
      rgba(71, 139, 249, 0.23),
      transparent 34%
    ),
    linear-gradient(135deg, #e9f2ff, #dfe9ff);
  color: #2864f0;
}
.case-visual > span {
  color: #6e8cc2;
}
.case-content small,
.case-green .case-content small {
  color: #2864f0;
}

.service-stats,
.about-stats {
  background: linear-gradient(105deg, #21479f, #2864f0 58%, #168bf5);
}
.service-stats strong,
.about-stats strong {
  color: #fff;
}
.service-stats em,
.about-stats em {
  color: #bceaff;
}
.service-stats span,
.about-stats span {
  color: #d8e6ff;
}
.service-stats > div,
.about-stats > div {
  border-right-color: rgba(255, 255, 255, 0.18);
}

.final-cta,
.page-cta {
  background: linear-gradient(135deg, #eef4ff, #f5f1ff);
  color: var(--ref-navy);
}
.final-grid,
.page-cta-grid {
  background-image:
    linear-gradient(rgba(49, 104, 222, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 104, 222, 0.07) 1px, transparent 1px);
}
.final-orb {
  background: radial-gradient(
    circle,
    rgba(54, 139, 247, 0.2),
    rgba(91, 116, 245, 0.07) 46%,
    transparent 68%
  );
  border-color: rgba(45, 106, 235, 0.1);
}
.final-content > p,
.page-cta p {
  color: #2864f0;
}
.final-content h2,
.page-cta h2 {
  color: var(--ref-navy);
}
.final-content h2 em {
  color: #2864f0;
}
.final-content > span,
.page-cta > div > span {
  color: #59709a;
}
.final-content small,
.page-cta small {
  color: #7890b6;
}

.inner-hero {
  background: linear-gradient(120deg, #f7faff, #eaf2ff);
  color: var(--ref-navy);
}
.inner-hero-image,
.about-world {
  opacity: 0.18;
  filter: brightness(1.4) saturate(0.9);
}
.inner-hero-image::after,
.about-world::after {
  background: linear-gradient(
    90deg,
    rgba(249, 251, 255, 0.99) 0%,
    rgba(246, 249, 255, 0.94) 45%,
    rgba(236, 244, 255, 0.3) 80%,
    rgba(240, 246, 255, 0.62)
  );
}
.inner-hero-grid {
  background-image:
    linear-gradient(rgba(49, 104, 222, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 104, 222, 0.07) 1px, transparent 1px);
}
.breadcrumb {
  color: #7187ad;
}
.breadcrumb b {
  color: #506995;
}
.inner-hero h1 {
  color: var(--ref-navy);
}
.inner-hero h1 em {
  color: #2864f0;
}
.inner-hero-copy > p:not(.eyebrow) {
  color: #50678f;
}
.solution-trust {
  color: #456294;
}
.solution-trust i {
  color: #2864f0;
}
.solution-radar,
.about-manifesto {
  background: rgba(255, 255, 255, 0.86);
  border-color: #cfdcf7;
  box-shadow: 0 24px 65px rgba(42, 85, 157, 0.12);
}
.radar-head {
  color: #7086aa;
  border-bottom-color: #e0e8f7;
}
.radar-head b {
  color: #3c5685;
}
.radar-ring {
  border-color: rgba(40, 100, 240, 0.25);
}
.ring-c {
  background: radial-gradient(
    circle,
    rgba(52, 135, 247, 0.18),
    rgba(239, 245, 255, 0.25)
  );
}
.radar-visual strong {
  color: #245cd4;
}
.radar-visual i {
  color: #627aa7;
}
.radar-visual::before,
.radar-visual::after {
  background: rgba(51, 110, 225, 0.16);
}
.radar-bottom {
  border-top-color: #e0e8f7;
}
.radar-bottom span {
  color: #7185a8;
  border-right-color: #e0e8f7;
}
.radar-bottom b {
  color: #254e9a;
}
.about-manifesto > span {
  color: #2864f0;
}
.about-manifesto blockquote {
  color: #183568;
  border-left-color: #2864f0;
}
.about-manifesto small {
  color: #6a81a8;
}

.solution-problems {
  background: linear-gradient(180deg, #fff, #f4f7fd);
}
.problem-grid article {
  border-color: #dce6f8;
  box-shadow: 0 15px 42px rgba(36, 78, 145, 0.05);
}
.problem-grid article > div i,
.problem-grid article > b {
  color: #2864f0;
}
.solution-principle {
  background: #fff;
}
.principle-copy h2 em,
.measurement-copy h2 em,
.roadmap-heading h2 em,
.stakeholder-heading h2 em {
  color: #2864f0;
}
.principle-flow {
  background: linear-gradient(135deg, #2b61e8, #168ff3 68%, #6c61f5);
  box-shadow: 0 22px 58px rgba(36, 95, 221, 0.2);
}
.principle-flow::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
}
.flow-core,
.flow-ai {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 0 0 12px rgba(255, 255, 255, 0.05),
    0 0 38px rgba(12, 50, 145, 0.15);
}
.flow-core small,
.flow-core span {
  color: #d9eaff;
}
.flow-core strong {
  color: #fff;
}
.flow-arrow {
  color: #d7e5ff;
}
.flow-stack span {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.capability-section {
  background: linear-gradient(180deg, #f2f6ff, #edf3ff);
  color: var(--ref-ink);
}
.capability-section::before {
  background: radial-gradient(
    circle,
    rgba(51, 116, 236, 0.13),
    transparent 66%
  );
}
.capability-section .section-heading h2 {
  color: var(--ref-navy);
}
.capability-section .section-heading > p:last-child {
  color: #5f749b;
}
.capability-section .section-kicker {
  color: #2864f0;
}
.capability-grid article {
  background: rgba(255, 255, 255, 0.94);
  border-color: #d6e2f8;
  box-shadow: 0 15px 42px rgba(42, 82, 149, 0.06);
}
.capability-grid article:hover {
  border-color: #91b4f5;
}
.capability-top i {
  color: #2864f0;
  border-color: #bed0f6;
  background: #f0f5ff;
}
.capability-top span {
  color: #9badcc;
}
.capability-grid article > small {
  color: #5675dc;
}
.capability-grid h3 {
  color: #182852;
}
.capability-grid p,
.capability-grid li {
  color: #607495;
}
.capability-grid ul {
  border-top-color: #e4eaf7;
}
.capability-grid li b {
  color: #2864f0;
}
.capability-loop {
  border-color: #d5e1f7;
  background: rgba(255, 255, 255, 0.9);
  color: #5c7198;
}
.capability-loop i {
  color: #93a7cd;
}
.capability-loop b {
  color: #2864f0;
}

.measurement-section,
.belief-section,
.timeline-section {
  background: #fff;
}
.stakeholder-section {
  background: #f4f7fd;
}
.stakeholder-list {
  border-color: #d8e4f8;
  box-shadow: 0 18px 50px rgba(38, 77, 139, 0.05);
}
.stakeholder-question small,
.stakeholder-answer small {
  color: #2864f0;
}
.stakeholder-focus span {
  color: #2864f0;
  background: #edf3ff;
}
.fit-yes > div span {
  color: #2864f0;
  background: #e7f1ff;
}
.fit-yes li::marker {
  color: #2864f0;
}

.origin-visual {
  background: linear-gradient(145deg, #2a61e8, #168df3 65%, #6f61f5);
  box-shadow: 0 26px 68px rgba(35, 91, 215, 0.2);
}
.origin-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
}
.origin-visual > span {
  color: #d8ecff;
}
.origin-signal {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.05),
    0 0 0 100px rgba(255, 255, 255, 0.03);
}
.origin-signal::before,
.origin-signal::after {
  border-color: rgba(255, 255, 255, 0.3);
}
.origin-signal i {
  background: #fff;
  box-shadow: 0 0 14px #b9e9ff;
}
.position-model .model-result {
  background: linear-gradient(135deg, #2a61e8, #168df3);
  border-color: #2a61e8;
}
.belief-grid article,
.team-grid article {
  border-color: #dbe5f8;
  background: #fff;
}
.belief-grid article > i,
.team-grid small {
  color: #2864f0;
}

.methodology-section {
  background: linear-gradient(135deg, #eef4ff, #f5f1ff);
  color: var(--ref-ink);
}
.methodology-section .section-kicker {
  color: #2864f0;
}
.methodology-copy h2 {
  color: var(--ref-navy);
}
.methodology-copy h2 em {
  color: #2864f0;
}
.methodology-copy > p:not(.section-kicker) {
  color: #5e7398;
}
.persona-layers > div {
  border-color: #ccdaf6;
  background: linear-gradient(90deg, #fff, #eaf1ff);
  box-shadow: 0 7px 18px rgba(48, 85, 148, 0.04);
}
.persona-layers span {
  color: #2864f0;
}
.persona-layers b {
  color: #1a315e;
}
.persona-layers small {
  color: #63789d;
}
.promise-section {
  background: linear-gradient(100deg, #edf4ff, #f4f0ff);
}
.promise-icon {
  background: linear-gradient(135deg, #168bf5, #2e58ee);
}

@media (max-width: 760px) {
  .hero-image.is-active {
    opacity: 0.13;
  }
  .hero-image::after,
  .inner-hero-image::after,
  .about-world::after {
    background: linear-gradient(
      90deg,
      rgba(248, 251, 255, 0.98),
      rgba(240, 246, 255, 0.88)
    );
  }
  .engine-card,
  .capability-grid article {
    background: #fff;
  }
}

/* Production refinements */
html {
  scroll-padding-top: 92px;
}
body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 7px;
  background: #fff;
  color: #174fc4;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(22, 58, 141, 0.2);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}
.skip-link:focus {
  transform: translateY(0);
}
.button,
.hero-dots button,
.arrow {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid rgba(22, 93, 255, 0.38);
  outline-offset: 4px;
}
.hero-image,
.inner-hero-image,
.about-world {
  will-change: opacity, transform;
}
.hero-copy[aria-live] {
  min-height: 370px;
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 0;
  }
  .hero-copy[aria-live] {
    min-height: 430px;
  }
  .hero {
    height: 690px;
  }
  .hero-controls {
    bottom: 30px;
  }
}

.case-visual {
  isolation: isolate;
}
.case-visual > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.case-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(9, 31, 70, 0.05),
    rgba(7, 28, 66, 0.24)
  );
  pointer-events: none;
}
.case-card:hover .case-visual > img {
  transform: scale(1.045);
}
.case-visual > span {
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 5px;
  background: rgba(8, 34, 79, 0.58);
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(5, 23, 53, 0.12);
}

.origin-visual {
  isolation: isolate;
}
.origin-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% center;
}
.origin-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      180deg,
      rgba(7, 27, 65, 0.08) 26%,
      rgba(5, 21, 52, 0.88) 100%
    ),
    linear-gradient(90deg, rgba(5, 24, 59, 0.34), transparent 70%);
  pointer-events: none;
}
.origin-grid,
.origin-signal {
  z-index: 2;
}
.origin-visual > span,
.origin-visual > strong {
  text-shadow: 0 3px 20px rgba(4, 16, 41, 0.68);
}

@media (min-width: 761px) and (max-width: 1050px) {
  .engine-map {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .engine-orbit,
  .engine-core {
    display: none;
  }
  .engine-card {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 229px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-image,
  .inner-hero-image,
  .about-world {
    will-change: auto;
  }
  .case-visual > img {
    transition: none;
  }
}

/* Clarity pass: cleaner whites, richer blues and stronger readable contrast */
:root {
  --ref-blue: #0a6ee8;
  --ref-blue-2: #00a4ec;
  --ref-navy: #08265f;
  --ref-ink: #14223d;
  --ref-bg: #f8fbff;
  --ref-bg-2: #eaf3ff;
  --ref-line: #cbdaf1;
  --clear-muted: #506584;
  --clear-soft: #657997;
}

body {
  color: var(--ref-ink);
  background: #fff;
}
.button-primary,
.hero-amber .button-primary,
.hero-emerald .button-primary {
  background: linear-gradient(115deg, #0a6cf5, #00a4ec);
}
.hero,
.inner-hero {
  background: linear-gradient(120deg, #fbfdff 0%, #eef6ff 52%, #dceaff 100%);
}
.hero-image,
.inner-hero-image,
.about-world {
  filter: saturate(1.16) contrast(1.08) brightness(0.98);
}
.hero-image.is-active {
  opacity: 0.4;
}
.inner-hero-image,
.about-world {
  opacity: 0.32;
}
.hero-image::after {
  background:
    linear-gradient(
      90deg,
      rgba(251, 253, 255, 0.98) 0%,
      rgba(245, 250, 255, 0.91) 42%,
      rgba(229, 241, 255, 0.12) 76%,
      rgba(226, 239, 255, 0.26) 100%
    ),
    linear-gradient(0deg, rgba(226, 239, 255, 0.22), transparent 45%);
}
.inner-hero-image::after,
.about-world::after {
  background: linear-gradient(
    90deg,
    rgba(251, 253, 255, 0.98) 0%,
    rgba(245, 250, 255, 0.9) 45%,
    rgba(228, 241, 255, 0.1) 80%,
    rgba(225, 239, 255, 0.24)
  );
}
.hero-grid {
  opacity: 0.4;
}
.hero h1,
.inner-hero h1,
.engine-heading h2,
.results-copy h2,
.methodology-copy h2 {
  color: var(--ref-navy);
}
.hero h1 em,
.hero-cyan h1 em,
.hero-amber h1 em,
.hero-emerald h1 em,
.inner-hero h1 em,
.section-heading h2 em,
.left-heading h2 em,
.engine-heading h2 em {
  color: #0874e8;
}
.eyebrow,
.section-kicker {
  color: #0870dc;
}
.eyebrow span {
  background: linear-gradient(90deg, #00a9e9, #1765ed);
}
.hero-description,
.inner-hero-copy > p:not(.eyebrow) {
  color: #385477;
}
.button-primary,
.hero-amber .button-primary,
.hero-emerald .button-primary {
  box-shadow: 0 13px 30px rgba(5, 111, 226, 0.25);
}
.button-ghost {
  border-color: #79a5e8;
  background: rgba(255, 255, 255, 0.9);
  color: #075fc6;
  box-shadow: 0 8px 22px rgba(25, 81, 166, 0.08);
}
.hero-chips,
.solution-trust {
  color: #3e5b82;
}
.hero-chips i,
.solution-trust i {
  border-color: #79a9eb;
  color: #0871df;
}
.hero-proof,
.solution-radar,
.about-manifesto {
  background: rgba(255, 255, 255, 0.94);
  border-color: #bfd1eb;
  box-shadow: 0 24px 64px rgba(25, 74, 147, 0.16);
}

.market-shift,
.solution-problems {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.engine-section,
.capability-section {
  background: linear-gradient(180deg, #eef6ff 0%, #e5f0ff 100%);
}
.compare-section,
.case-section,
.fit-section,
.roadmap-section,
.team-section,
.position-section,
.stakeholder-section {
  background: #f8fbff;
}
.methodology-section,
.final-cta,
.page-cta,
.promise-section {
  background: linear-gradient(135deg, #eef6ff 0%, #f8fbff 100%);
}
.risk-panel {
  background: linear-gradient(145deg, #faf8ff, #fff);
}
.opportunity-panel {
  background: linear-gradient(145deg, #eef9ff, #fff);
}
.risk-note,
.growth-quote,
.role-answer {
  background: linear-gradient(105deg, #eef6ff, #f8f5ff);
}
.role-question {
  background: #f7faff;
}
.results-shell {
  background: linear-gradient(135deg, #eaf4ff, #f9fbff);
  border-color: #c7d8f1;
  box-shadow: 0 26px 70px rgba(24, 73, 149, 0.15);
}

.change-card,
.risk-opportunity-grid > article,
.engine-card,
.growth-steps,
.compare-table,
.role-grid article,
.case-card,
.problem-grid article,
.capability-grid article,
.stakeholder-list,
.belief-grid article,
.team-grid article,
.persona-layers > div {
  border-color: #cbdaf0;
}
.change-card,
.role-grid article,
.problem-grid article,
.capability-grid article,
.belief-grid article,
.team-grid article {
  box-shadow: 0 15px 38px rgba(24, 70, 139, 0.08);
}
.engine-card,
.capability-grid article {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 40px rgba(24, 70, 139, 0.1);
}
.engine-flow,
.capability-loop {
  background: rgba(255, 255, 255, 0.95);
  border-color: #c6d8f0;
}

.section-heading > p:last-child,
.risk-opportunity-heading > p,
.engine-heading > p,
.principle-copy > p:not(.section-kicker),
.measurement-copy > p:not(.section-kicker),
.stakeholder-heading > p,
.origin-copy > p:not(.section-kicker),
.timeline-heading > p:not(.section-kicker),
.methodology-copy > p:not(.section-kicker) {
  color: var(--clear-muted);
}
.change-card p,
.role-grid li,
.problem-grid p,
.roadmap-content p,
.measurement-grid p,
.stakeholder-answer p,
.fit-grid ul,
.team-grid p,
.timeline-list p,
.promise-section p:not(.section-kicker),
.engine-card p,
.capability-grid p,
.capability-grid li,
.results-copy > p:not(.section-kicker),
.results-copy li {
  color: #566a86;
}
.engine-card h3,
.capability-grid h3,
.case-content h3,
.problem-grid h3,
.team-grid h3 {
  color: #112b57;
}
.engine-card b,
.capability-top i,
.stakeholder-focus span,
.fit-yes > div span {
  background: #e8f2ff;
  color: #2366c8;
}

.service-stats,
.about-stats {
  background: linear-gradient(110deg, #0b4fc4, #0877e8 58%, #00a3e9);
}
.case-visual > img,
.origin-image {
  filter: saturate(1.08) contrast(1.05);
}

@media (max-width: 760px) {
  .hero-image.is-active {
    opacity: 0.26;
  }
  .inner-hero-image,
  .about-world {
    opacity: 0.24;
  }
  .hero-image::after,
  .inner-hero-image::after,
  .about-world::after {
    background: linear-gradient(
      90deg,
      rgba(251, 253, 255, 0.97),
      rgba(231, 243, 255, 0.76)
    );
  }
}

/* Homepage banner preview: use the original artwork at full strength and
   reverse the copy for a crisper, higher-contrast first impression. */
.hero {
  background: #04142e;
  color: #ffffff;
}
.hero .hero-image {
  filter: saturate(1.12) contrast(1.08) brightness(0.92);
}
.hero .hero-image.is-active {
  opacity: 1;
}
.hero .hero-image::after {
  background:
    linear-gradient(
      90deg,
      rgba(2, 13, 32, 0.76) 0%,
      rgba(3, 18, 42, 0.54) 38%,
      rgba(3, 18, 42, 0.18) 67%,
      rgba(2, 12, 28, 0.08) 100%
    ),
    linear-gradient(
      0deg,
      rgba(2, 12, 29, 0.44) 0%,
      transparent 42%,
      rgba(2, 13, 31, 0.12) 100%
    );
}
.hero .hero-grid {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(111, 195, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 195, 255, 0.28) 1px, transparent 1px);
}
.hero .hero-glow {
  opacity: 0.54;
  background: radial-gradient(
    circle,
    rgba(28, 165, 255, 0.26),
    transparent 66%
  );
}
.hero .eyebrow {
  color: #7fdaff;
}
.hero .eyebrow span {
  background: linear-gradient(90deg, #40a8ff, #6ce3ff);
}
.hero h1 {
  color: #ffffff;
  text-shadow: 0 5px 30px rgba(0, 10, 28, 0.34);
}
.hero h1 em,
.hero.hero-cyan h1 em,
.hero.hero-amber h1 em,
.hero.hero-emerald h1 em {
  color: #60d5ff;
}
.hero .hero-description {
  color: #d3e1f1;
}
.hero .hero-amber .button-primary,
.hero .hero-emerald .button-primary {
  background: linear-gradient(110deg, #1d6cff, #0bbcf0);
}
.hero .button-ghost {
  color: #ffffff;
  border-color: rgba(170, 216, 255, 0.68);
  background: rgba(5, 25, 55, 0.62);
  box-shadow: none;
  backdrop-filter: blur(10px);
}
.hero .button-ghost:hover {
  border-color: #ffffff;
  background: rgba(20, 92, 175, 0.72);
}
.hero .hero-chips {
  color: #c4d5e8;
}
.hero .hero-chips i {
  color: #71ddff;
  border-color: rgba(111, 218, 255, 0.72);
  background: rgba(5, 32, 68, 0.64);
}
.hero .hero-proof {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(202, 224, 248, 0.9);
  box-shadow: 0 24px 70px rgba(0, 12, 35, 0.3);
  backdrop-filter: blur(16px);
}
.hero .arrow {
  color: #d9ecff;
  border-color: rgba(177, 217, 255, 0.48);
  background: rgba(4, 25, 57, 0.5);
}
.hero .arrow:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(24, 100, 190, 0.62);
}
.hero .hero-dots button {
  color: #aec5dd;
}
.hero .hero-dots i {
  background: rgba(184, 219, 252, 0.45);
}
.hero .hero-dots button.is-active {
  color: #ffffff;
}
.hero .hero-dots button.is-active i {
  background: linear-gradient(90deg, #5a9fff, #64ddff);
}
.hero .scroll-cue {
  color: #a9c0d9;
}
.hero .scroll-cue span {
  background: linear-gradient(90deg, rgba(123, 203, 255, 0.08), #5edcff);
}

@media (max-width: 760px) {
  .hero .hero-image {
    background-position: 64% center;
    filter: saturate(1.05) contrast(1.08) brightness(0.76);
  }
  .hero .hero-image.is-active {
    opacity: 0.94;
  }
  .hero .hero-image::after {
    background:
      linear-gradient(
        90deg,
        rgba(2, 14, 34, 0.92),
        rgba(3, 19, 45, 0.66)
      ),
      linear-gradient(
        0deg,
        rgba(2, 13, 31, 0.76),
        rgba(2, 13, 31, 0.08) 58%
      );
  }
  .hero .hero-grid {
    opacity: 0.12;
  }
}

/* Site-wide layout grid: 1200px content on a 1920px desktop canvas. */
:root {
  --site-content-width: 1200px;
  --site-min-gutter: clamp(20px, 5vw, 64px);
  --site-edge: max(
    var(--site-min-gutter),
    calc((100% - var(--site-content-width)) / 2)
  );
}

/* Full-width bands keep their backgrounds while every module shares the
   same centered content edges. */
.market-shift,
.risk-opportunity-section,
.engine-section,
.growth-logic,
.compare-section,
.role-section,
.results-section,
.case-section,
.customer-proof-section,
.faq-section,
.service-section,
.solution-problems,
.solution-principle,
.capability-section,
.roadmap-section,
.measurement-section,
.stakeholder-section,
.fit-section,
.about-stats,
.origin-section,
.position-section,
.belief-section,
.methodology-section,
.team-section,
.timeline-section,
.promise-section {
  padding-inline: var(--site-edge);
}

/* Hero content uses the same 1200px vertical alignment guides. */
.hero-inner,
.hero-controls,
.inner-hero-content {
  width: min(
    var(--site-content-width),
    calc(100% - (var(--site-min-gutter) * 2))
  );
}

/* Normalize former 1240px/1340px shells to the shared content width. */
.change-grid,
.shift-conclusion,
.risk-opportunity-heading,
.risk-opportunity-grid,
.engine-heading,
.engine-map,
.growth-logic > .section-heading,
.growth-steps,
.growth-quote,
.role-grid,
.role-consensus,
.results-shell,
.case-grid,
.customer-case-grid,
.service-main,
.problem-grid,
.capability-grid,
.roadmap-heading,
.roadmap-list,
.stakeholder-heading,
.stakeholder-list,
.belief-heading,
.belief-grid,
.team-grid {
  width: min(var(--site-content-width), 100%);
  margin-inline: auto;
}

/* The service metrics retain a full-bleed background, with their four
   columns aligned to the 1200px content grid. */
@media (min-width: 1329px) {
  .service-stats {
    width: auto;
    margin-inline: calc((var(--site-content-width) - 100vw) / 2);
    padding-inline: calc((100vw - var(--site-content-width)) / 2);
  }
}

@media (max-width: 760px) {
  .market-shift,
  .risk-opportunity-section,
  .engine-section,
  .growth-logic,
  .compare-section,
  .role-section,
  .results-section,
  .case-section,
  .customer-proof-section,
  .faq-section,
  .service-section,
  .solution-problems,
  .solution-principle,
  .capability-section,
  .roadmap-section,
  .measurement-section,
  .stakeholder-section,
  .fit-section,
  .about-stats,
  .origin-section,
  .position-section,
  .belief-section,
  .methodology-section,
  .team-section,
  .timeline-section,
  .promise-section {
    padding-inline: 20px;
  }

  .hero-inner,
  .inner-hero-content {
    width: calc(100% - 40px);
  }
}

/* Unified typography for every primary content-module heading. */
:root {
  --module-title-size: 30px;
  --module-title-leading: 1.3;
  --module-title-tracking: 0.4px;
}

.section-heading h2,
.customer-proof-section .section-heading h2,
.risk-opportunity-heading h2,
.engine-heading h2,
.compare-copy h2,
.results-copy h2,
.principle-copy h2,
.measurement-copy h2,
.roadmap-heading h2,
.stakeholder-heading h2,
.origin-copy h2,
.belief-heading h2,
.methodology-copy h2,
.timeline-heading h2,
.promise-section h2,
.final-content h2,
.page-cta h2 {
  margin: 0;
  font-size: var(--module-title-size);
  font-weight: 700;
  line-height: var(--module-title-leading);
  letter-spacing: var(--module-title-tracking);
  text-wrap: balance;
}

/* Give split-layout headings enough room to keep complete phrases together. */
.risk-opportunity-heading,
.roadmap-heading,
.stakeholder-heading,
.belief-heading {
  grid-template-columns: 1.35fr 0.75fr;
}

.compare-section,
.measurement-section {
  grid-template-columns: 0.9fr 1.1fr;
}

.results-shell,
.timeline-section {
  grid-template-columns: 0.85fr 1.15fr;
}

@media (min-width: 761px) and (max-width: 1050px) {
  .risk-opportunity-heading,
  .engine-heading,
  .roadmap-heading,
  .stakeholder-heading,
  .belief-heading,
  .compare-section,
  .solution-principle,
  .measurement-section,
  .origin-section,
  .methodology-section,
  .timeline-section,
  .results-shell {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .compare-copy,
  .principle-copy,
  .measurement-copy,
  .origin-copy,
  .methodology-copy,
  .timeline-heading {
    max-width: none;
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --module-title-size: 30px;
    --module-title-leading: 1.3;
    --module-title-tracking: 0.4px;
  }

  .principle-copy h2 br,
  .measurement-copy h2 br,
  .roadmap-heading h2 br,
  .stakeholder-heading h2 br,
  .origin-copy h2 br,
  .belief-heading h2 br,
  .methodology-copy h2 br,
  .timeline-heading h2 br,
  .promise-section h2 br {
    display: none;
  }
}

/* Three-page typography system: exact hierarchy from the latest approved spec. */
:root {
  --type-h1-size: 38px;
  --type-h1-tracking: 0.5px;
  --type-h1-leading: 1.25;
  --type-h2-size: 30px;
  --type-h2-tracking: 0.4px;
  --type-h2-leading: 1.3;
  --type-h3-size: 20px;
  --type-h3-tracking: 0.3px;
  --type-h3-leading: 1.4;
  --type-h4-size: 18px;
  --type-h4-tracking: 0.2px;
  --type-h4-leading: 1.45;
  --type-h5-size: 18px;
  --type-h5-tracking: 0.2px;
  --type-h5-leading: 1.45;
  --type-primary-size: 16px;
  --type-primary-tracking: 0.5px;
  --type-primary-leading: 1.75;
  --type-supporting-size: 14px;
  --type-supporting-tracking: 0.3px;
  --type-supporting-leading: 1.9;
  --type-secondary-size: 14px;
  --type-secondary-tracking: 0.3px;
  --type-secondary-leading: 1.7;
  --type-tertiary-size: 12px;
  --type-tertiary-tracking: 0;
  --type-tertiary-leading: 1.5;
}

main h1 {
  font-size: var(--type-h1-size) !important;
  letter-spacing: var(--type-h1-tracking) !important;
  line-height: var(--type-h1-leading) !important;
}

main h2 {
  font-size: var(--type-h2-size) !important;
  letter-spacing: var(--type-h2-tracking) !important;
  line-height: var(--type-h2-leading) !important;
}

main h3 {
  font-size: var(--type-h3-size) !important;
  letter-spacing: var(--type-h3-tracking) !important;
  line-height: var(--type-h3-leading) !important;
}

main h4 {
  font-size: var(--type-h4-size) !important;
  letter-spacing: var(--type-h4-tracking) !important;
  line-height: var(--type-h4-leading) !important;
}

main h5 {
  font-size: var(--type-h5-size) !important;
  letter-spacing: var(--type-h5-tracking) !important;
  line-height: var(--type-h5-leading) !important;
}

.button {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.4;
}

/* Match homepage carousel titles to the shared inner-page hero scale. */
@media (min-width: 761px) {
  main:not(.inner-page) .hero h1 {
    font-size: 42px !important;
    letter-spacing: -0.045em !important;
    line-height: 1.19 !important;
  }
}

/* Primary copy: introductions and long-form explanatory paragraphs. */
.hero-description,
.inner-hero-copy > p:not(.eyebrow),
.section-heading > p:last-child,
.compare-copy > p:not(.section-kicker),
.results-copy > p:not(.section-kicker),
.principle-copy > p:not(.section-kicker),
.measurement-copy > p:not(.section-kicker),
.origin-copy > p:not(.section-kicker),
.methodology-copy > p:not(.section-kicker),
.timeline-heading > p:not(.section-kicker),
.promise-section p:not(.section-kicker),
.final-content > span,
.page-cta > div > span {
  font-size: var(--type-primary-size) !important;
  letter-spacing: var(--type-primary-tracking) !important;
  line-height: var(--type-primary-leading) !important;
}

/* Supporting copy beside split-layout headings stays subordinate to the title. */
.risk-opportunity-heading > p,
.engine-heading > p,
.roadmap-heading > p,
.stakeholder-heading > p,
.belief-heading > p {
  font-size: var(--type-supporting-size) !important;
  letter-spacing: var(--type-supporting-tracking) !important;
  line-height: var(--type-supporting-leading) !important;
}

/* Secondary copy: card descriptions, lists and explanatory UI text. */
main article p,
main article li,
.panel-list small,
.compare-head > *,
.compare-row > *,
.faq-list details > p,
.service-path small,
.model-note,
.engine-flow,
.capability-loop {
  font-size: var(--type-secondary-size) !important;
  letter-spacing: var(--type-secondary-tracking) !important;
  line-height: var(--type-secondary-leading) !important;
}

/* Tertiary copy: compact labels, metadata and legal/footnote text. */
.section-kicker,
.eyebrow,
main article small,
.step-id,
.role-top,
.capability-top,
.roadmap-index span,
.stakeholder-role > span,
.timeline-list > article > strong,
.page-cta small,
.final-content small {
  font-size: var(--type-tertiary-size) !important;
  letter-spacing: var(--type-tertiary-tracking) !important;
  line-height: var(--type-tertiary-leading) !important;
}

/* About page: every desktop module shell follows the 1200px content grid. */
.about-page .position-model,
.about-page .faq-list,
.about-page .page-cta > div:last-child {
  width: min(var(--site-content-width), 100%);
  max-width: var(--site-content-width);
  margin-inline: auto;
}

/* About origin: align both outer edges to the 1200px module below. */
@media (min-width: 1051px) {
  .about-page .origin-section {
    grid-template-columns: minmax(0, 430px) minmax(0, 1fr);
    gap: 70px;
  }

  .about-page .origin-visual,
  .about-page .origin-copy {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }
}

/* Improve the supporting copy contrast on the blue positioning card. */
.about-page .position-model .model-result small {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(4, 25, 70, 0.22);
}

/* About promise: use the full content row and keep the concise copy on one line. */
.about-page .promise-icon {
  font-size: 32px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (min-width: 1051px) {
  .about-page .promise-section > div:last-child {
    flex: 1;
    min-width: 0;
    max-width: none;
  }

  .about-page .promise-section p:not(.section-kicker) {
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .about-page .promise-icon {
    font-size: 23px;
  }
}

/* Solution roadmap index: keep only the five stage labels in horizontal type. */
.solution-page .roadmap-list article {
  grid-template-columns: 110px 1fr 1fr;
}

.solution-page .roadmap-index {
  display: block;
}

.solution-page .roadmap-index span {
  display: inline-block !important;
  color: #2864f0;
  font-size: 16px !important;
  font-weight: 800;
  letter-spacing: 0.3px !important;
  line-height: 1.4 !important;
  writing-mode: horizontal-tb;
  white-space: nowrap;
}

@media (max-width: 1050px) {
  .solution-page .roadmap-list article {
    grid-template-columns: 100px 1fr;
  }
}

@media (max-width: 760px) {
  .solution-page .roadmap-list article {
    grid-template-columns: 82px 1fr;
  }

  .solution-page .roadmap-index span {
    font-size: 14px !important;
  }
}

/* Customer-case subheads are supporting labels, not full H4 module titles. */
.customer-case-card .case-standard-block h4 {
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.2px !important;
  line-height: 1.45 !important;
}

/* Solution measurement: a light, brand-aligned growth observatory. */
.solution-page .measurement-grid {
  position: relative;
  width: min(700px, 100%);
  max-width: 700px;
  padding: 76px 16px 16px;
  gap: 12px;
  isolation: isolate;
  background:
    radial-gradient(circle at 88% 9%, rgba(26, 178, 242, 0.15), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(108, 97, 245, 0.09), transparent 30%),
    linear-gradient(145deg, #f9fbff, #edf4ff);
  border: 1px solid #cbdcf7;
  border-radius: 24px;
  box-shadow:
    0 26px 64px rgba(42, 82, 149, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.solution-page .measurement-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(40, 100, 240, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 100, 240, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
  pointer-events: none;
}

.solution-page .measurement-grid::after {
  content: "GEO";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #2864f0, #16a8f3);
  border: 5px solid #f3f7ff;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(40, 100, 240, 0.22),
    0 10px 26px rgba(40, 100, 240, 0.28);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.8px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.solution-page .measurement-grid article {
  --metric-accent: #28b8ff;
  position: relative;
  z-index: 1;
  min-height: 190px;
  overflow: hidden;
  padding: 26px 26px 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(153, 183, 232, 0.48);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 12px 26px rgba(39, 82, 153, 0.07);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.solution-page .measurement-grid article:nth-child(2) {
  --metric-accent: #30dcdd;
}

.solution-page .measurement-grid article:nth-child(3) {
  --metric-accent: #897cff;
}

.solution-page .measurement-grid article:nth-child(4) {
  --metric-accent: #36d8a7;
}

.solution-page .measurement-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--metric-accent), color-mix(in srgb, var(--metric-accent) 18%, transparent));
  opacity: 0.9;
}

.solution-page .measurement-grid article::after {
  content: "";
  position: absolute;
  top: -54px;
  right: -48px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--metric-accent), transparent 68%);
  opacity: 0.07;
  pointer-events: none;
}

.solution-page .measurement-grid article:hover {
  z-index: 2;
  border-color: color-mix(in srgb, var(--metric-accent) 44%, #ffffff);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 18px 38px rgba(39, 82, 153, 0.12);
  transform: translateY(-3px);
}

.solution-page .measurement-grid article > span {
  position: absolute;
  top: 18px;
  right: 18px;
  min-width: 32px;
  padding: 4px 7px;
  color: var(--metric-accent);
  background: color-mix(in srgb, var(--metric-accent) 9%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--metric-accent) 18%, #ffffff);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  opacity: 1;
}

.solution-page .measurement-grid h3 {
  position: relative;
  margin: 2px 0 23px;
  color: #172c57;
  font-size: 20px !important;
  font-weight: 800;
  letter-spacing: 0.3px !important;
  line-height: 1.4 !important;
}

.solution-page .measurement-grid h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 10px;
  background: var(--metric-accent);
  border-radius: 3px;
  box-shadow: none;
}

.solution-page .measurement-grid p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: #60749a;
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0.3px !important;
  line-height: 1.7 !important;
}

.solution-page .measurement-grid p i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: var(--metric-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--metric-accent) 10%, transparent);
}

.solution-page .measurement-visual-head {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.solution-page .measurement-visual-head > div {
  display: grid;
  gap: 3px;
}

.solution-page .measurement-visual-head small {
  color: #2864f0;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.15px;
  line-height: 1.4;
}

.solution-page .measurement-visual-head strong {
  color: #172c57;
  font-size: 15px;
  line-height: 1.4;
}

.solution-page .measurement-visual-head > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #6880a9;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.solution-page .measurement-visual-head > span i {
  width: 7px;
  height: 7px;
  background: #21bf93;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(33, 191, 147, 0.1);
}

@media (max-width: 760px) {
  .solution-page .measurement-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .solution-page .measurement-copy {
    max-width: none;
    margin-inline: 0;
  }

  .solution-page .measurement-grid {
    grid-template-columns: 1fr;
    padding: 76px 12px 12px;
    border-radius: 18px;
  }

  .solution-page .measurement-grid::after {
    display: none;
  }

  .solution-page .measurement-grid article {
    min-height: 0;
    padding: 24px 22px 20px;
  }

  .solution-page .measurement-visual-head {
    top: 17px;
    right: 18px;
    left: 18px;
  }
}

/* Solution fit check: spacious, scan-first decision cards. */
.solution-page .fit-section {
  background:
    radial-gradient(circle at 18% 48%, rgba(28, 183, 142, 0.06), transparent 28%),
    radial-gradient(circle at 82% 48%, rgba(211, 111, 96, 0.05), transparent 28%),
    #f8fbff;
}

.solution-page .fit-section .section-heading {
  margin-bottom: 50px;
}

.solution-page .fit-grid {
  width: min(1200px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.solution-page .fit-grid article {
  --fit-accent: #119c76;
  --fit-soft: #ecfaf5;
  --fit-line: #ccecdf;
  position: relative;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--fit-line);
  border-radius: 18px;
  box-shadow:
    0 22px 55px rgba(27, 70, 117, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.solution-page .fit-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--fit-accent), transparent 78%);
}

.solution-page .fit-grid .fit-no {
  --fit-accent: #ce7064;
  --fit-soft: #fff4f1;
  --fit-line: #f0d8d3;
}

.solution-page .fit-grid article > div {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  align-items: center;
  gap: 17px;
  padding: 31px 36px 27px;
  background: linear-gradient(110deg, var(--fit-soft), rgba(255, 255, 255, 0.72));
  border-bottom: 1px solid var(--fit-line);
}

.solution-page .fit-grid article > div > span {
  width: 50px;
  height: 50px;
  color: #ffffff;
  background: var(--fit-accent);
  border: 0;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(17, 156, 118, 0.18);
  font-size: 20px;
  font-weight: 800;
}

.solution-page .fit-grid .fit-no > div > span {
  box-shadow: 0 10px 24px rgba(206, 112, 100, 0.16);
}

.solution-page .fit-title {
  min-width: 0;
}

.solution-page .fit-title small {
  display: block;
  margin-bottom: 4px;
  color: var(--fit-accent);
  font-size: 12px !important;
  font-weight: 800;
  letter-spacing: 0.6px !important;
  line-height: 1.5 !important;
}

.solution-page .fit-grid h3 {
  margin: 0;
  color: #132b55;
  font-size: 20px !important;
  font-weight: 800;
  letter-spacing: 0.3px !important;
  line-height: 1.4 !important;
}

.solution-page .fit-grid ul {
  display: grid;
  margin: 0;
  padding: 18px 36px 24px;
  list-style: none;
}

.solution-page .fit-grid li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 12px 8px 12px 38px;
  color: #536985;
  border-bottom: 1px solid #e8eef6;
  font-size: 14px !important;
  font-weight: 500;
  letter-spacing: 0.3px !important;
  line-height: 1.7 !important;
}

.solution-page .fit-grid li:last-child {
  border-bottom: 0;
}

.solution-page .fit-grid li::before {
  content: "✓";
  position: absolute;
  left: 3px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  color: var(--fit-accent);
  background: var(--fit-soft);
  border: 1px solid var(--fit-line);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

.solution-page .fit-no li::before {
  content: "–";
}

@media (max-width: 900px) {
  .solution-page .fit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .solution-page .fit-section .section-heading {
    margin-bottom: 34px;
  }

  .solution-page .fit-grid article > div {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 25px 22px 22px;
  }

  .solution-page .fit-grid article > div > span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 18px;
  }

  .solution-page .fit-grid ul {
    padding: 12px 22px 18px;
  }

  .solution-page .fit-grid li {
    min-height: 0;
    padding-block: 14px;
  }
}

/* Final three-page visual system: one brand palette and restrained English tracking. */
:root {
  --brand-primary: #2864f0;
  --brand-primary-light: #168bf5;
  --brand-cyan: #00a4ec;
  --brand-violet: #6f61f5;
  --brand-navy: #08265f;
  --brand-ink: #14223d;
  --brand-muted: #566a86;
  --brand-soft: #657997;
  --brand-surface: #f8fbff;
  --brand-surface-alt: #eef6ff;
  --brand-line: #cbdaf0;
  --brand-success: #119c76;
  --brand-caution: #ce7064;
  --english-label-tracking: 0.6px;

  /* Keep legacy components on the same final palette. */
  --navy: var(--brand-navy);
  --ink: var(--brand-ink);
  --muted: var(--brand-muted);
  --blue: var(--brand-primary);
  --cyan: var(--brand-cyan);
  --emerald: var(--brand-success);
  --line: var(--brand-line);
  --surface: var(--brand-surface);
  --ref-blue: var(--brand-primary);
  --ref-blue-2: var(--brand-primary-light);
  --ref-navy: var(--brand-navy);
  --ref-ink: var(--brand-ink);
  --ref-bg: var(--brand-surface);
  --ref-bg-2: var(--brand-surface-alt);
  --ref-card: #ffffff;
  --ref-line: var(--brand-line);
  --ref-violet: var(--brand-violet);
  --ref-cyan: var(--brand-cyan);
  --clear-muted: var(--brand-muted);
  --clear-soft: var(--brand-soft);
}

body {
  color: var(--brand-ink);
}

.text-link,
.section-kicker {
  color: var(--brand-primary);
}

.button-primary,
.hero .button-primary,
.inner-page .button-primary {
  background: linear-gradient(
    110deg,
    var(--brand-primary),
    var(--brand-primary-light)
  );
}

.change-card,
.risk-opportunity-grid > article,
.growth-steps,
.compare-table,
.role-grid article,
.customer-case-card,
.problem-grid article,
.capability-grid article,
.roadmap-list,
.stakeholder-list,
.fit-grid article,
.belief-grid article,
.team-grid article,
.faq-list details {
  border-color: var(--brand-line);
}

.solution-page .measurement-grid article {
  --metric-accent: var(--brand-primary);
}

.solution-page .measurement-grid article:nth-child(2) {
  --metric-accent: var(--brand-cyan);
}

.solution-page .measurement-grid article:nth-child(3) {
  --metric-accent: var(--brand-violet);
}

.solution-page .measurement-grid article:nth-child(4) {
  --metric-accent: var(--brand-success);
}

.solution-page .fit-grid article {
  --fit-accent: var(--brand-success);
}

.solution-page .fit-grid .fit-no {
  --fit-accent: var(--brand-caution);
}

.section-kicker,
.eyebrow,
.proof-topline,
.scroll-cue,
.change-line span,
.change-now > span,
.panel-title small,
.engine-core span,
.engine-core small,
.engine-card-top,
.engine-card > small,
.growth-quote span,
.role-top,
.role-consensus span,
.case-visual > span,
.final-content > p,
.radar-head,
.capability-grid article > small,
.page-cta p,
.about-manifesto > span,
.origin-visual > span,
.origin-highlight span,
.position-model span {
  letter-spacing: var(--english-label-tracking) !important;
}

/* Solution hero: four-dimensional GEO growth network. */
.solution-page .solution-radar {
  width: 400px;
  flex: 0 0 400px;
  padding: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(40, 100, 240, 0.09), transparent 38%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  box-shadow:
    0 28px 70px rgba(25, 74, 147, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.solution-page .radar-head {
  min-height: 42px;
  padding-bottom: 15px;
  color: #6c82a8;
  border-bottom: 1px solid #dfe8f7;
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: var(--english-label-tracking) !important;
}

.solution-page .radar-head b {
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 700;
}

.solution-page .radar-network {
  position: relative;
  height: 300px;
  margin: 12px 0 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(40, 100, 240, 0.1), transparent 35%),
    radial-gradient(circle, rgba(40, 100, 240, 0.12) 1px, transparent 1px);
  background-size: auto, 18px 18px;
  border-radius: 14px;
}

.solution-page .radar-network::before,
.solution-page .radar-network::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 290px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(40, 100, 240, 0.32),
    transparent
  );
  transform-origin: center;
}

.solution-page .radar-network::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.solution-page .radar-network::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.solution-page .radar-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(40, 100, 240, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.solution-page .radar-orbit::before,
.solution-page .radar-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(0, 164, 236, 0.16);
  border-radius: 50%;
}

.solution-page .radar-orbit::before {
  inset: 28px;
  border-style: dashed;
}

.solution-page .radar-orbit::after {
  inset: 62px;
  background: rgba(40, 100, 240, 0.04);
}

.solution-page .radar-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 98px;
  height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  background: linear-gradient(145deg, var(--brand-primary), var(--brand-cyan));
  border: 5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(40, 100, 240, 0.24),
    0 16px 34px rgba(32, 99, 216, 0.25),
    0 0 34px rgba(0, 164, 236, 0.16);
  transform: translate(-50%, -50%);
}

.solution-page .radar-core small,
.solution-page .radar-core em {
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.4;
  opacity: 0.82;
}

.solution-page .radar-core strong {
  margin: 1px 0;
  font-size: 27px;
  line-height: 1.05;
}

.solution-page .radar-node {
  --node-accent: var(--brand-primary);
  position: absolute;
  z-index: 2;
  width: 142px;
  min-height: 60px;
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #d8e4f7;
  border-left: 3px solid var(--node-accent);
  border-radius: 11px;
  box-shadow: 0 12px 28px rgba(27, 71, 135, 0.11);
}

.solution-page .radar-node-search {
  --node-accent: var(--brand-cyan);
}

.solution-page .radar-node-trust {
  --node-accent: var(--brand-violet);
}

.solution-page .radar-node-conversion {
  --node-accent: var(--brand-success);
}

.solution-page .radar-node-brand {
  top: 18px;
  left: 3px;
}

.solution-page .radar-node-search {
  top: 18px;
  right: 3px;
}

.solution-page .radar-node-trust {
  bottom: 18px;
  left: 3px;
}

.solution-page .radar-node-conversion {
  right: 3px;
  bottom: 18px;
}

.solution-page .radar-node > i {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--node-accent);
  background: #eff5ff;
  border-radius: 8px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.solution-page .radar-node > span {
  min-width: 0;
}

.solution-page .radar-node b,
.solution-page .radar-node small {
  display: block;
}

.solution-page .radar-node b {
  color: #183568;
  font-size: 13px;
  line-height: 1.4;
}

.solution-page .radar-node small {
  margin-top: 2px;
  color: #7387a8;
  font-size: 9px;
  letter-spacing: 0;
  line-height: 1.4;
}

.solution-page .radar-bottom {
  padding-top: 17px;
  border-top: 1px solid #dfe8f7;
}

.solution-page .radar-bottom span {
  color: #7185a8;
  border-right-color: #dfe8f7;
  font-size: 10px;
  line-height: 1.5;
}

.solution-page .radar-bottom b {
  margin-bottom: 4px;
  color: var(--brand-primary);
  font-size: 20px;
  line-height: 1.2;
}

@media (min-width: 1051px) and (max-width: 1200px) {
  .solution-page .inner-hero-content {
    gap: 34px;
  }

  .solution-page .solution-radar {
    width: 360px;
    flex-basis: 360px;
    padding-inline: 20px;
  }

  .solution-page .radar-node {
    width: 130px;
    padding-inline: 10px;
  }
}

/* About hero: premium belief statement panel. */
.about-page .about-manifesto {
  position: relative;
  width: 400px;
  min-height: 330px;
  flex: 0 0 400px;
  margin-bottom: 0;
  padding: 34px;
  overflow: hidden;
  isolation: isolate;
  color: var(--brand-ink);
  background:
    radial-gradient(circle at 92% 5%, rgba(0, 164, 236, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  box-shadow:
    0 28px 70px rgba(25, 74, 147, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.about-page .about-hero-content {
  align-items: center;
}

.about-page .about-manifesto::before {
  content: "“";
  position: absolute;
  top: 32px;
  right: 26px;
  z-index: 0;
  color: rgba(40, 100, 240, 0.08);
  font-family: Georgia, serif;
  font-size: 118px;
  line-height: 0.8;
  pointer-events: none;
}

.about-page .about-manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(40, 100, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 100, 240, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(135deg, transparent 20%, #000 100%);
  pointer-events: none;
}

.about-page .manifesto-head,
.about-page .about-manifesto blockquote,
.about-page .manifesto-values,
.about-page .about-manifesto > small {
  position: relative;
  z-index: 1;
}

.about-page .manifesto-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 17px;
  border-bottom: 1px solid #dfe8f7;
}

.about-page .manifesto-head > span {
  color: var(--brand-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: var(--english-label-tracking);
  line-height: 1.5;
}

.about-page .manifesto-head > i {
  padding: 5px 9px;
  color: var(--brand-primary);
  background: #edf4ff;
  border: 1px solid #d5e3fb;
  border-radius: 99px;
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
}

.about-page .about-manifesto blockquote {
  margin: 27px 0 23px;
  padding: 0;
  color: #183568;
  border: 0;
  font-size: 20px;
  font-weight: 650;
  letter-spacing: 0.4px;
  line-height: 1.75;
  text-wrap: pretty;
}

.about-page .manifesto-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 23px;
}

.about-page .manifesto-values span {
  padding: 7px 10px;
  color: #315a9d;
  background: #f1f6ff;
  border: 1px solid #d9e6fa;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

.about-page .about-manifesto > small {
  display: block;
  padding-top: 18px;
  color: #6d82a5;
  border-top: 1px solid #dfe8f7;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1.5;
}

@media (min-width: 1051px) and (max-width: 1200px) {
  .about-page .about-hero-content {
    gap: 34px;
  }

  .about-page .about-manifesto {
    width: 380px;
    flex-basis: 380px;
    padding: 30px;
  }

  .about-page .about-manifesto blockquote {
    font-size: 18px;
  }
}

/* 2026-07 delivery refinements: shared hero scale, balanced section rhythm,
   two-row client-logo wall and searchable knowledge center. */
:root {
  --section-space: clamp(64px, 4.4vw, 76px);
}

@media (min-width: 761px) {
  .inner-page .inner-hero h1 {
    font-size: 42px !important;
    letter-spacing: -0.045em !important;
    line-height: 1.19 !important;
  }
}

.hero-description,
.inner-hero-copy > p:not(.eyebrow) {
  font-size: 16px !important;
  letter-spacing: 0.5px !important;
  line-height: 1.75 !important;
}

.hero .button,
.inner-hero .button {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.4;
}

.market-shift,
.risk-opportunity-section,
.engine-section,
.growth-logic,
.compare-section,
.role-section,
.results-section,
.case-section,
.customer-proof-section,
.client-logos-section,
.solution-problems,
.solution-principle,
.capability-section,
.roadmap-section,
.measurement-section,
.stakeholder-section,
.fit-section,
.faq-section,
.origin-section,
.position-section,
.belief-section,
.methodology-section,
.team-section,
.timeline-section,
.promise-section,
.knowledge-section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.service-section {
  padding-top: var(--section-space);
  padding-bottom: 0;
}

.service-main {
  padding-bottom: clamp(58px, 4.2vw, 72px);
}

.final-cta,
.page-cta {
  min-height: 400px;
  height: auto;
  padding-block: 68px;
}

.solution-page .faq-list {
  width: min(var(--site-content-width), 100%);
  max-width: var(--site-content-width);
  margin-inline: auto;
}

.client-logos-section,
.knowledge-section {
  padding-inline: var(--site-edge);
}

.client-logos-section {
  overflow: hidden;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
  border-top: 1px solid #e3ebf7;
  border-bottom: 1px solid #e3ebf7;
}

.client-logos-heading {
  width: min(var(--site-content-width), 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.client-logos-heading .section-kicker {
  margin-bottom: 12px;
}

.client-logos-heading h2 {
  margin: 0;
  color: var(--brand-navy);
  font-size: var(--type-h2-size) !important;
  letter-spacing: var(--type-h2-tracking) !important;
  line-height: var(--type-h2-leading) !important;
}

.client-logo-wall {
  display: grid;
  gap: 14px;
}

.client-logo-marquee {
  position: relative;
  width: min(var(--site-content-width), 100%);
  margin-inline: auto;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-logo-track {
  width: max-content;
  display: flex;
  will-change: transform;
  animation: clientLogoScroll 38s linear infinite;
}

.client-logo-marquee-reverse .client-logo-track {
  animation-name: clientLogoScrollReverse;
  animation-duration: 42s;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-group {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

.client-logo-group > span {
  width: 172px;
  height: 84px;
  flex: 0 0 172px;
  display: grid;
  place-items: center;
  padding: 12px 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce6f4;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(31, 75, 139, 0.07);
}

.client-logo-group img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

@keyframes clientLogoScroll {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes clientLogoScrollReverse {
  from {
    transform: translate3d(-50%, 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}

.knowledge-section {
  background: #f8fbff;
}

.knowledge-heading,
.knowledge-toolbar,
.knowledge-row {
  width: min(var(--site-content-width), 100%);
  margin-inline: auto;
}

.knowledge-heading {
  margin-bottom: 28px;
  text-align: center;
}

.knowledge-heading .section-kicker {
  margin-bottom: 12px;
}

.knowledge-heading h2 {
  margin: 0 0 12px;
  color: var(--brand-navy);
}

.knowledge-heading > p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--brand-muted);
  font-size: 16px;
  letter-spacing: 0.5px;
  line-height: 1.75;
}

.knowledge-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #dce6f4;
}

.knowledge-tabs {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.knowledge-tabs::-webkit-scrollbar {
  display: none;
}

.knowledge-tabs button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 15px;
  color: #60769b;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.knowledge-tabs button:hover,
.knowledge-tabs button.is-active {
  color: #ffffff;
  background: linear-gradient(110deg, var(--brand-primary), var(--brand-cyan));
  border-color: transparent;
}

.knowledge-tabs button:focus-visible,
.knowledge-search button:focus-visible {
  outline: 3px solid rgba(40, 100, 240, 0.24);
  outline-offset: 2px;
}

.knowledge-search {
  width: 250px;
  flex: 0 0 250px;
  display: flex;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #d7e3f4;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(24, 70, 139, 0.06);
}

.knowledge-search:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(40, 100, 240, 0.1);
}

.knowledge-search input {
  min-width: 0;
  min-height: 42px;
  flex: 1;
  padding: 0 14px;
  color: var(--brand-ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
  font-size: 14px;
}

.knowledge-search input::placeholder {
  color: #8b9db9;
}

.knowledge-search button {
  width: 44px;
  flex: 0 0 44px;
  color: #ffffff;
  background: var(--brand-primary);
  border: 0;
  font: inherit;
  cursor: pointer;
}

.knowledge-search button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

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

.knowledge-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--brand-line);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(24, 70, 139, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.knowledge-card[hidden],
.knowledge-empty[hidden] {
  display: none !important;
}

.knowledge-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(24, 70, 139, 0.13);
}

.knowledge-image {
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #dfeaff;
}

.knowledge-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.knowledge-card:hover .knowledge-image img {
  transform: scale(1.025);
}

.knowledge-card-content {
  min-height: 280px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.knowledge-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #7a8eae;
  font-size: 12px;
  line-height: 1.5;
}

.knowledge-meta span {
  color: var(--brand-primary);
  font-weight: 700;
}

.knowledge-card h3 {
  min-height: 78px;
  margin: 0 0 14px;
  color: #173360;
}

.knowledge-card h3 a {
  color: inherit;
}

.knowledge-card h3 a:hover,
.knowledge-link:hover {
  color: var(--brand-primary);
}

.knowledge-card-content > p {
  margin: 0 0 20px;
  color: #607493;
  font-size: 14px;
  letter-spacing: 0.3px;
  line-height: 1.7;
}

.knowledge-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  color: #8293ae;
  border-top: 1px solid #e3eaf5;
  font-size: 12px;
  line-height: 1.5;
}

.knowledge-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-primary);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.knowledge-empty {
  width: min(var(--site-content-width), 100%);
  margin: 28px auto 0;
  padding: 26px;
  color: #607493;
  background: #ffffff;
  border: 1px dashed #cbd9ec;
  border-radius: 12px;
  text-align: center;
}

.knowledge-link span {
  transition: transform 0.2s ease;
}

.knowledge-link:hover span {
  transform: translate(2px, -2px);
}

@media (max-width: 760px) {
  :root {
    --section-space: 56px;
  }

  .hero h1,
  .inner-page .inner-hero h1 {
    font-size: 38px !important;
    letter-spacing: -0.035em !important;
    line-height: 1.2 !important;
  }

  .hero-description,
  .inner-hero-copy > p:not(.eyebrow) {
    font-size: 16px !important;
  }

  .client-logos-section,
  .knowledge-section {
    padding-inline: 20px;
  }

  .final-cta,
  .page-cta {
    min-height: 0;
    padding: 60px 20px;
  }

  .client-logos-heading {
    margin-bottom: 24px;
  }

  .client-logo-wall {
    gap: 10px;
  }

  .client-logo-marquee {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .client-logo-track {
    animation-duration: 32s;
  }

  .client-logo-group {
    gap: 12px;
    padding-right: 12px;
  }

  .client-logo-group > span {
    width: 138px;
    height: 72px;
    flex-basis: 138px;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .knowledge-heading {
    margin-bottom: 24px;
  }

  .knowledge-heading > p {
    margin-top: 0;
  }

  .knowledge-toolbar {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
    padding-bottom: 14px;
  }

  .knowledge-tabs {
    width: calc(100% + 20px);
    padding-right: 20px;
  }

  .knowledge-search {
    width: 100%;
    flex-basis: auto;
  }

  .knowledge-row {
    width: calc(100% + 20px);
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 0 20px 12px 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .knowledge-row::-webkit-scrollbar {
    display: none;
  }

  .knowledge-card {
    width: min(82vw, 340px);
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }

  .knowledge-card h3 {
    min-height: 0;
  }

  .knowledge-card-content {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .client-logo-track {
    animation: none;
  }

  .client-logo-marquee {
    overflow-x: auto;
    mask-image: none;
  }

  .client-logo-group[aria-hidden="true"] {
    display: none;
  }
}

/* Homepage final artwork banners (mixed native resolutions).
   The blank left-hand area remains available for the live copy and links. */
.hero.hero-artwork {
  background: linear-gradient(90deg, #f7f8fc 0%, #e7f0ff 54%, #bed7fb 100%);
  color: #102348;
}

.hero.hero-artwork.hero-amber {
  background: linear-gradient(90deg, #f7f8fc 0%, #e7f0ff 54%, #c0d8fa 100%);
}

.hero.hero-artwork.hero-emerald {
  background: linear-gradient(90deg, #c7ddfb 0%, #c1d9fb 52%, #c6ddfb 100%);
}

.hero.hero-artwork .hero-image {
  opacity: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: none;
  transform: none;
  transition: none;
}

.hero.hero-artwork .hero-image.is-active {
  opacity: 1;
  transform: none;
}

.hero.hero-artwork .hero-image::after {
  display: none;
}

.hero.hero-artwork,
.inner-hero,
.hero.hero-artwork + .market-shift,
.inner-hero + section {
  margin-top: 0;
  margin-bottom: 0;
}

@media (min-width: 761px) {
  .hero.hero-artwork {
    height: 750px;
    min-height: 750px;
    background-color: transparent;
    color: #102348;
  }

  .hero.hero-artwork .hero-image {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    filter: none;
  }

  .hero.hero-artwork .hero-image::after {
    display: none;
  }

  .hero.hero-artwork .hero-grid,
  .hero.hero-artwork .hero-glow,
  .hero.hero-artwork .scroll-cue {
    display: none;
  }

  .hero.hero-artwork .hero-inner {
    display: flex;
    width: min(
      var(--site-content-width),
      calc(100% - (var(--site-min-gutter) * 2))
    );
    padding: 75px 0;
  }

  .hero.hero-artwork .hero-copy {
    width: min(760px, 42vw);
    max-width: min(760px, 42vw);
    flex: 0 1 min(760px, 42vw);
    animation: none;
  }

  .hero.hero-artwork .eyebrow {
    margin-bottom: 24px;
    color: #245b9f;
  }

  .hero.hero-artwork h1 {
    max-width: 760px;
    color: var(--ref-navy);
    font-size: 42px !important;
    line-height: 1.16 !important;
    letter-spacing: -0.035em !important;
    white-space: normal;
    text-shadow: none;
  }

  .hero.hero-artwork .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero.hero-artwork h1 em,
  .hero.hero-artwork.hero-cyan h1 em,
  .hero.hero-artwork.hero-amber h1 em,
  .hero.hero-artwork.hero-emerald h1 em {
    color: #2864f0;
    text-shadow: none;
  }

  .hero.hero-artwork .hero-description {
    max-width: 620px;
    min-height: 84px;
    margin: 22px 0 26px;
    color: #385477;
    text-align: left;
    letter-spacing: 0 !important;
    text-wrap: balance;
  }

  .hero.hero-artwork .button-ghost {
    color: #145fd5;
    border-color: #3e78df;
    background: rgba(255, 255, 255, 0.72);
  }

  .hero.hero-artwork .hero-chips {
    gap: 23px;
    margin-top: 22px;
    color: #314b74;
    font-size: 11px;
  }

  .hero.hero-artwork .hero-chips i {
    color: #1764e8;
    border-color: rgba(23, 100, 232, 0.5);
    background: rgba(255, 255, 255, 0.74);
  }

  .hero.hero-artwork .hero-proof,
  .hero.hero-artwork .hero-artwork-hitareas {
    display: none;
  }

  .hero.hero-artwork .hero-controls {
    right: var(--site-edge);
    bottom: 22px;
    left: auto;
    width: auto;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(40, 100, 240, 0.18);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(30, 91, 184, 0.1);
    transform: none;
    backdrop-filter: blur(10px);
  }

  .hero.hero-artwork .arrow {
    color: #2864f0;
    background: #ffffff;
    border-color: rgba(40, 100, 240, 0.35);
  }

  .hero.hero-artwork .hero-dots button {
    color: #6681af;
  }

  .hero.hero-artwork .hero-dots i {
    background: #aac0e8;
  }

  .hero.hero-artwork .hero-dots button.is-active {
    color: #185ecf;
  }

  .hero.hero-artwork .hero-dots button.is-active i {
    background: linear-gradient(90deg, #2864f0, #00a4ec);
    box-shadow: 0 0 7px rgba(40, 100, 240, 0.22);
  }
}

@media (max-width: 760px) {
  .hero.hero-artwork {
    height: clamp(820px, 125vw, 950px);
    min-height: 820px;
    background-color: transparent;
    color: #102348;
  }

  .hero.hero-artwork .hero-image {
    background-position: 88% calc(100% - 62px);
    background-size: auto clamp(250px, 72vw, 320px);
    filter: none;
  }

  .hero.hero-artwork .hero-image.is-active {
    opacity: 1;
  }

  .hero.hero-artwork .hero-grid,
  .hero.hero-artwork .hero-glow,
  .hero.hero-artwork .scroll-cue {
    display: none;
  }

  .hero.hero-artwork .hero-inner {
    padding-top: 48px;
    padding-bottom: clamp(280px, 54vw, 410px);
  }

  .hero.hero-artwork .eyebrow {
    color: #245b9f;
  }

  .hero.hero-artwork h1 {
    color: var(--ref-navy);
    font-size: clamp(23px, 7.4vw, 32px) !important;
    line-height: 1.17 !important;
    letter-spacing: -0.045em !important;
    text-shadow: none;
  }

  .hero.hero-artwork .hero-title-line {
    display: block;
    white-space: nowrap;
  }

  .hero.hero-artwork h1 em,
  .hero.hero-artwork.hero-cyan h1 em,
  .hero.hero-artwork.hero-amber h1 em,
  .hero.hero-artwork.hero-emerald h1 em {
    color: #2864f0;
    text-shadow: none;
  }

  .hero.hero-artwork .hero-description {
    margin: 18px 0 22px;
    color: #385477;
    text-align: left;
    letter-spacing: 0 !important;
    text-wrap: balance;
  }

  .hero.hero-artwork .button-ghost {
    color: #145fd5;
    border-color: #3e78df;
    background: rgba(255, 255, 255, 0.78);
  }

  .hero.hero-artwork .hero-chips {
    color: #314b74;
  }

  .hero.hero-artwork .hero-chips i {
    color: #1764e8;
    border-color: rgba(23, 100, 232, 0.5);
    background: rgba(255, 255, 255, 0.78);
  }

  .hero.hero-artwork .hero-controls {
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(40, 100, 240, 0.18);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(30, 91, 184, 0.1);
    backdrop-filter: blur(10px);
  }

  .hero.hero-artwork .hero-dots button {
    color: #6681af;
  }

  .hero.hero-artwork .hero-dots i {
    background: #aac0e8;
  }

  .hero.hero-artwork .hero-dots button.is-active {
    color: #185ecf;
  }

  .hero.hero-artwork .hero-dots button.is-active i {
    background: linear-gradient(90deg, #2864f0, #00a4ec);
    box-shadow: 0 0 7px rgba(40, 100, 240, 0.22);
  }

  .hero.hero-artwork .hero-artwork-hitareas {
    display: none;
  }
}

/* Edge-to-edge hero integration for the three delivery pages. */
.hero.hero-artwork,
.inner-hero {
  width: 100%;
  margin-block: 0;
  padding-block: 0;
  background: none;
}

.hero.hero-artwork.hero-cyan,
.hero.hero-artwork.hero-amber,
.hero.hero-artwork.hero-emerald {
  background: none;
}

.hero.hero-artwork + section,
.inner-hero + section {
  margin-top: 0;
}

.solution-page .inner-hero-image,
.about-page .about-world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
}

.hero.hero-artwork .hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.solution-page .inner-hero-image::after,
.about-page .about-world::after,
.inner-page .inner-hero-grid {
  display: none;
}

.solution-page .solution-radar,
.about-page .about-manifesto {
  display: none;
}

@media (min-width: 761px) {
  .inner-page .inner-hero-copy {
    width: min(760px, 42vw);
    max-width: min(760px, 42vw);
    flex: 0 1 min(760px, 42vw);
  }
}

/* Balance Chinese body copy on desktop so short orphan lines do not remain. */
@media (min-width: 1051px) {
  main p {
    text-wrap: balance;
  }
}

/* Keep carousel controls inside the artwork instead of reserving a row. */
.hero.hero-artwork .hero-controls {
  position: absolute;
  right: var(--site-edge);
  bottom: 22px;
  left: auto;
  width: auto;
  margin: 0;
  transform: none;
}

/* 2026-07-30 Banner refresh: one continuous, full-bleed artwork band. */
.hero.hero-artwork,
.inner-hero {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.hero.hero-artwork .hero-image,
.solution-page .inner-hero-image,
.about-page .about-world {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
}

.hero.hero-artwork + section,
.inner-hero + section {
  margin-top: 0;
}

.hero.hero-artwork .hero-controls {
  position: absolute;
  right: var(--site-edge);
  bottom: 22px;
  left: auto;
  width: auto;
  margin: 0;
  z-index: 5;
  transform: none;
}

@media (max-width: 760px) {
  .hero.hero-artwork .hero-image,
  .solution-page .inner-hero-image,
  .about-page .about-world {
    background-position: 78% center;
    background-size: cover;
  }

  .hero.hero-artwork .hero-controls {
    right: 20px;
    bottom: 20px;
    left: auto;
  }
}

/* Final hero crop: all three delivery pages share one visible banner height.
   The 2048 x 768 artwork is center-cropped to remove its
   oversized top/bottom safety area, and the homepage controls sit on the
   true horizontal center line. */
@media (min-width: 761px) {
  .hero.hero-artwork,
  .inner-page .inner-hero {
    height: 620px;
    min-height: 620px;
  }

  .hero.hero-artwork .hero-controls {
    right: auto;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 760px) {
  .hero.hero-artwork,
  .inner-page .inner-hero {
    height: 760px;
    min-height: 760px;
  }

  .hero.hero-artwork .hero-controls {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Original-resolution banner delivery.
   Keep every PNG byte-for-byte at its supplied resolution. `cover` preserves
   the intrinsic aspect ratio; native-size caps stop wide screens from
   enlarging the artwork beyond its source pixels. */
.hero.hero-artwork,
.inner-page .inner-hero {
  background: linear-gradient(90deg, #f8f9fc 0%, #e9f1ff 54%, #c8dcfb 100%);
}

.hero.hero-artwork .hero-image,
.solution-page .inner-hero-image,
.about-page .about-world {
  background-repeat: no-repeat;
  background-size: cover;
  filter: none;
  image-rendering: auto;
  transform: none;
}

/* All three homepage banners and both inner-page heroes are supplied at
   2048 x 768. Keep their
   embedded interface text at the native pixel grid on ultra-wide displays. */

@media (max-width: 760px) {
  .about-page .about-world {
    /* Keep the live heading readable: crop from the artwork's intentional
       empty left field instead of placing the embedded UI behind the copy. */
    background-position: 24% center;
    background-size: auto 768px;
  }
}

/* Shared GEO diagnosis form modal */
body.diagnosis-modal-open {
  overflow: hidden;
}

.diagnosis-modal[hidden] {
  display: none;
}

.diagnosis-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.diagnosis-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 15, 32, 0.66);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 0.22s ease;
}

.diagnosis-dialog {
  position: relative;
  width: min(100%, 520px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 42px 44px 36px;
  border: 1px solid rgba(40, 100, 240, 0.16);
  border-radius: 20px;
  outline: none;
  background:
    radial-gradient(circle at 100% 0%, rgba(39, 185, 244, 0.13), transparent 34%),
    #ffffff;
  box-shadow: 0 30px 90px rgba(2, 22, 54, 0.26);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.diagnosis-modal.is-open .diagnosis-modal-backdrop,
.diagnosis-modal.is-open .diagnosis-dialog {
  opacity: 1;
}

.diagnosis-modal.is-open .diagnosis-dialog {
  transform: translateY(0) scale(1);
}

.diagnosis-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eff4fb;
  color: #62738c;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.diagnosis-modal-close:hover {
  color: #176fe9;
  background: #e6effd;
  transform: rotate(4deg);
}

.diagnosis-modal-close span {
  position: absolute;
  top: 17px;
  left: 10px;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.diagnosis-modal-close span:last-child {
  transform: rotate(-45deg);
}

.diagnosis-modal-heading {
  padding-right: 22px;
}

.diagnosis-modal-kicker {
  display: block;
  margin-bottom: 10px;
  color: #2864f0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.diagnosis-modal-heading h2 {
  margin: 0;
  color: #0b1b3b;
  font-size: clamp(27px, 4vw, 34px);
  line-height: 1.25;
  letter-spacing: 0;
}

.diagnosis-modal-heading p {
  margin: 12px 0 26px;
  color: #61718a;
  font-size: 14px;
  line-height: 1.7;
}

.diagnosis-form {
  display: grid;
  gap: 17px;
}

.diagnosis-form label {
  display: grid;
  gap: 8px;
  color: #21334e;
  font-size: 14px;
  font-weight: 700;
}

.diagnosis-form input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border: 1px solid #d7e1ef;
  border-radius: 9px;
  outline: none;
  background: #fbfdff;
  color: #0b1b2c;
  font: inherit;
  font-weight: 400;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.diagnosis-form input::placeholder {
  color: #a1adbd;
}

.diagnosis-form input:focus {
  border-color: #287bf0;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(40, 123, 240, 0.1);
}

.diagnosis-submit {
  min-height: 52px;
  margin-top: 3px;
  padding: 0 22px;
  border: 0;
  border-radius: 9px;
  background: linear-gradient(100deg, #13bfe5, #2864f0);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(32, 104, 232, 0.23);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.diagnosis-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(32, 104, 232, 0.28);
}

.diagnosis-submit span {
  margin-left: 12px;
}

.diagnosis-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: -1px 0 0;
  color: #8996a8;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.diagnosis-privacy i {
  position: relative;
  width: 11px;
  height: 9px;
  border: 1.5px solid #8ca0b8;
  border-radius: 2px;
}

.diagnosis-privacy i::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 5px;
  top: -6px;
  left: 1px;
  border: 1.5px solid #8ca0b8;
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

@media (max-width: 560px) {
  .diagnosis-modal {
    align-items: end;
    padding: 12px;
  }

  .diagnosis-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 34px 22px 25px;
    border-radius: 18px;
  }

  .diagnosis-modal-heading p {
    margin-bottom: 21px;
  }

  .diagnosis-form {
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .diagnosis-modal-backdrop,
  .diagnosis-dialog {
    transition: none;
  }
}

@media (max-width: 560px) and (max-height: 640px) {
  .diagnosis-modal {
    padding: 6px;
  }

  .diagnosis-dialog {
    max-height: calc(100dvh - 12px);
    padding: 24px 22px 18px;
  }

  .diagnosis-modal-heading p {
    margin: 8px 0 14px;
  }

  .diagnosis-form {
    gap: 10px;
  }

  .diagnosis-form label {
    gap: 6px;
  }

  .diagnosis-form input {
    height: 46px;
  }

  .diagnosis-submit {
    min-height: 48px;
  }
}

/* 2026-08-07 final mobile banners: 1173 x 1341 source artwork.
   The complete artwork stays bottom-centered while the live copy occupies a
   separate safe area above it at every supported phone width. */
img,
picture,
video,
canvas,
svg {
  max-width: 100%;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

@media (max-width: 760px) {
  :root {
    /* 20px on a 380px CSS viewport, 40px on the 760px design canvas. */
    --mobile-gutter: clamp(20px, 5.2632vw, 40px);
    --site-min-gutter: var(--mobile-gutter);
    --section-space: clamp(56px, 8.4211vw, 64px);
  }

  .market-shift,
  .risk-opportunity-section,
  .engine-section,
  .growth-logic,
  .compare-section,
  .role-section,
  .results-section,
  .case-section,
  .customer-proof-section,
  .faq-section,
  .service-section,
  .solution-problems,
  .solution-principle,
  .capability-section,
  .roadmap-section,
  .measurement-section,
  .stakeholder-section,
  .fit-section,
  .about-stats,
  .origin-section,
  .position-section,
  .belief-section,
  .methodology-section,
  .team-section,
  .timeline-section,
  .promise-section,
  .client-logos-section,
  .knowledge-section {
    padding-inline: var(--mobile-gutter);
  }

  .hero-inner,
  .inner-hero-content {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  /* 820px protects the live-copy safe area on narrow phones. At the 760px
     design breakpoint the banner resolves to the intended 868px canvas. */
  .hero.hero-artwork,
  .inner-page .inner-hero {
    height: clamp(820px, 114.3223vw, 868px);
    min-height: clamp(820px, 114.3223vw, 868px);
  }

  .hero.hero-artwork.hero-cyan {
    background: linear-gradient(90deg, #e1eafa 0%, #ccdff9 50%, #b6d2fa 100%);
  }

  .hero.hero-artwork.hero-amber {
    background: linear-gradient(90deg, #cadbfa 0%, #c3d6fb 50%, #b2ccf9 100%);
  }

  .hero.hero-artwork.hero-emerald {
    background: linear-gradient(90deg, #fcfcfc 0%, #c9dcfa 50%, #b0d0f9 100%);
  }

  .solution-page .inner-hero {
    background: linear-gradient(90deg, #e3e9fa 0%, #dee5f8 50%, #cedcf7 100%);
  }

  .about-page .inner-hero {
    background: linear-gradient(90deg, #e6ecf8 0%, #e0e7f5 50%, #d4e2f5 100%);
  }

  .hero.hero-artwork .hero-image,
  .solution-page .inner-hero-image,
  .about-page .about-world {
    background-position: center bottom !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
  }

  .hero.hero-artwork .hero-inner {
    padding-top: clamp(42px, 7.8947vw, 60px);
    padding-bottom: clamp(360px, 60vw, 460px);
  }

  .inner-page .inner-hero-content {
    padding-block: clamp(44px, 7.8947vw, 60px) clamp(360px, 60vw, 460px);
  }

  .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    font-size: clamp(28px, 5vw, 38px) !important;
  }

  .hero-description,
  .inner-hero-copy > p:not(.eyebrow) {
    font-size: clamp(14px, 2.1053vw, 16px) !important;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: clamp(12px, 2.3684vw, 18px);
  }

  .hero.hero-artwork .hero-controls {
    bottom: clamp(18px, 3.1579vw, 24px);
  }

  /* The desktop comparison table becomes five readable cards instead of a
     fixed-width horizontal table. */
  .compare-table {
    display: grid;
    gap: 12px;
    overflow: visible;
  }

  .risk-opportunity-heading,
  .roadmap-heading,
  .stakeholder-heading,
  .belief-heading,
  .compare-section,
  .measurement-section,
  .results-shell,
  .timeline-section {
    grid-template-columns: 1fr;
  }

  .risk-opportunity-heading,
  .roadmap-heading,
  .stakeholder-heading,
  .belief-heading {
    gap: 20px;
  }

  .results-shell,
  .compare-section,
  .measurement-section,
  .timeline-section {
    gap: 40px;
  }

  .compare-head {
    display: none;
  }

  .compare-row {
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--brand-line);
    border-radius: 12px;
    background: #ffffff;
  }

  .compare-row > span,
  .compare-row > b,
  .compare-row > strong {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .compare-row > span {
    color: var(--brand-navy);
    font-weight: 800;
  }

  .compare-row > b,
  .compare-row > strong {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.65;
  }

  .compare-row > b::before {
    content: "低价发文：";
    flex: 0 0 auto;
    color: #9b6b65;
    font-size: 12px;
  }

  .compare-row > strong::before {
    content: "AB客方案：";
    flex: 0 0 auto;
    color: var(--brand-primary);
    font-size: 12px;
  }

  .about-page .origin-signal {
    width: min(66vw, 250px);
    height: min(66vw, 250px);
    right: 50%;
    transform: translateX(50%);
  }

  .about-page .origin-signal i:nth-child(1) {
    top: 26%;
    left: 8%;
  }

  .about-page .origin-signal i:nth-child(2) {
    top: 47%;
    right: 0;
  }

  .about-page .origin-signal i:nth-child(3) {
    bottom: -4px;
    left: 42%;
  }

  .timeline-heading,
  .timeline-list {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .timeline-list article {
    grid-template-columns: clamp(28px, 4.2105vw, 32px) clamp(68px, 12.1053vw, 92px) minmax(0, 1fr);
    gap: clamp(10px, 1.8421vw, 14px);
  }

  .metric-grid,
  .service-stats,
  .about-stats,
  .belief-grid {
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero.hero-artwork .hero-chips,
  .solution-trust {
    gap: 10px 14px;
  }

  .metric-grid,
  .service-stats,
  .about-stats,
  .belief-grid {
    grid-template-columns: 1fr;
  }

  .service-stats > div,
  .about-stats > div {
    grid-column: auto;
    border-right: 0;
  }
}

@media (max-width: 360px) {
  .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    font-size: 24px !important;
  }
}

/* 2026-08-07 compact mobile hero final.
   Pull the supplied artwork upward by trimming only its empty upper field,
   tighten the live-copy rhythm, and reduce CTA dominance on phone screens. */
@media (max-width: 760px) {
  .hero.hero-artwork,
  .inner-page .inner-hero {
    height: clamp(680px, 100vw, 760px);
    min-height: clamp(680px, 100vw, 760px);
  }

  .hero.hero-artwork .hero-image,
  .solution-page .inner-hero-image,
  .about-page .about-world {
    background-position: center bottom !important;
    background-size: 100% auto !important;
  }

  .hero.hero-artwork .hero-inner {
    padding-top: clamp(32px, 5.2632vw, 40px);
    padding-bottom: clamp(200px, 28.9474vw, 220px);
  }

  .inner-page .inner-hero-content {
    padding-block: clamp(32px, 5.2632vw, 40px)
      clamp(200px, 28.9474vw, 220px);
  }

  .hero.hero-artwork .eyebrow,
  .inner-page .inner-hero .eyebrow {
    margin-bottom: 16px;
  }

  .hero.hero-artwork .hero-description {
    margin: 14px 0 16px;
    line-height: 1.7;
  }

  .inner-hero-copy > p:not(.eyebrow) {
    margin: 16px 0 18px;
    line-height: 1.7 !important;
  }

  .hero-actions {
    width: min(100%, 560px);
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 16px;
    gap: 10px;
    font-size: 15px;
    box-shadow: 0 8px 20px rgba(5, 111, 226, 0.16);
  }

  .hero.hero-artwork .hero-chips,
  .solution-trust {
    gap: 9px 14px;
    margin-top: 14px;
    font-size: 12px;
  }

  .hero.hero-artwork .hero-controls {
    bottom: 12px;
    padding: 5px 8px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    grid-template-columns: 1fr;
    width: min(100%, 268px);
    margin-inline: auto;
  }
}

@media (min-width: 521px) and (max-width: 760px) {
  .inner-page .inner-hero-content {
    padding-bottom: clamp(
      220px,
      calc(83.3333vw - 213.3333px),
      420px
    );
  }
}

/* 2026-08-07 mobile banner 38px title + single-row CTA final.
   Keep all five live-copy banners typographically consistent, preserve both
   calls to action on one row, and tighten the handoff from copy to artwork. */
@media (max-width: 760px) {
  .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    font-size: 38px !important;
    line-height: 1.08 !important;
    letter-spacing: -0.055em !important;
    text-wrap: balance;
  }

  .hero.hero-artwork .hero-title-line {
    white-space: normal;
  }

  .hero.hero-artwork .eyebrow,
  .inner-page .inner-hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero.hero-artwork .hero-description {
    margin: 12px 0 14px;
    line-height: 1.65 !important;
  }

  .inner-page .inner-hero-copy > p:not(.eyebrow) {
    margin: 14px 0 16px;
    line-height: 1.65 !important;
  }

  .hero.hero-artwork .hero-actions,
  .inner-page .inner-hero .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 560px;
    margin-inline: 0;
    gap: 8px;
  }

  .hero.hero-artwork .hero-actions .button,
  .inner-page .inner-hero .hero-actions .button {
    min-width: 0;
    min-height: 42px;
    padding-inline: clamp(6px, 1.5789vw, 12px);
    gap: clamp(4px, 1.0526vw, 8px);
    font-size: clamp(12px, 1.9737vw, 15px);
    line-height: 1.2;
    white-space: nowrap;
  }

  .hero.hero-artwork .hero-chips,
  .solution-page .inner-hero .solution-trust {
    margin-top: 12px;
  }
}

@media (max-width: 380px) {
  .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    line-height: 1.06 !important;
    letter-spacing: -0.065em !important;
  }

  .hero.hero-artwork .hero-inner {
    padding-top: 28px;
  }

  .inner-page .inner-hero-content {
    padding-top: 28px;
  }

  .hero.hero-artwork .hero-actions,
  .inner-page .inner-hero .hero-actions {
    gap: 6px;
  }

  .hero.hero-artwork .hero-actions .button,
  .inner-page .inner-hero .hero-actions .button {
    padding-inline: 6px;
    gap: 4px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .hero.hero-artwork,
  .inner-page .inner-hero {
    height: clamp(650px, calc(100vw + 260px), 670px);
    min-height: clamp(650px, calc(100vw + 260px), 670px);
  }
}

/* 2026-08-10 mobile delivery final.
   Match every banner title to the shared 30px module-title scale, let Chinese
   copy wrap as one balanced phrase, and shorten each hero according to its
   content density so the live copy hands off naturally to the artwork. */
@media (max-width: 760px) {
  .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    font-size: var(--type-h2-size) !important;
    line-height: 1.22 !important;
    letter-spacing: var(--type-h2-tracking) !important;
    text-wrap: balance;
  }

  .hero.hero-artwork .hero-title-line {
    display: inline;
    white-space: normal;
  }

  .inner-page .inner-hero h1 br {
    display: none;
  }

  .hero.hero-artwork {
    height: clamp(560px, calc(45.4545vw + 374.55px), 720px);
    min-height: clamp(560px, calc(45.4545vw + 374.55px), 720px);
  }

  .solution-page .inner-hero {
    height: clamp(600px, calc(36.3636vw + 463.64px), 740px);
    min-height: clamp(600px, calc(36.3636vw + 463.64px), 740px);
  }

  .about-page .inner-hero {
    height: clamp(580px, calc(48.4848vw + 371.52px), 740px);
    min-height: clamp(580px, calc(48.4848vw + 371.52px), 740px);
  }
}

/* 2026-08-10 final QA: keep type open and prevent the desktop artwork layout
   from clipping its last trust row immediately above the mobile breakpoint. */
.change-old strong,
.change-now h3,
.engine-core strong,
.service-stats strong,
.about-stats strong,
.diagnosis-modal-heading h2,
.hero.hero-artwork h1,
main:not(.inner-page) .hero.hero-artwork h1,
.hero.hero-artwork h1 .hero-title-line,
.inner-page .inner-hero h1,
.inner-page .inner-hero h1 em {
  letter-spacing: 0 !important;
}

@media (min-width: 761px) and (max-width: 900px) {
  .hero.hero-artwork h1,
  main:not(.inner-page) .hero.hero-artwork h1,
  .inner-page .inner-hero h1 {
    font-size: 38px !important;
    line-height: 1.2 !important;
  }
}

@media (min-width: 761px) and (max-width: 820px) {
  .inner-page .inner-hero-content {
    padding-block: 60px;
  }

  .solution-page .inner-hero-copy > p:not(.eyebrow) {
    margin-block: 20px 22px;
    line-height: 1.65 !important;
  }

  .solution-page .solution-trust {
    gap: 14px;
    margin-top: 18px;
  }
}

/* 2026-08-10 mobile production fixes: keep the homepage service metrics fully
   in flow, center every page-ending CTA, and give the persona pyramid enough
   room for a two-line title/description hierarchy. */
@media (max-width: 760px) {
  .service-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 48px calc(var(--mobile-gutter) * -1) 0;
    padding: 24px var(--mobile-gutter);
  }

  .service-stats > div {
    min-width: 0;
    min-height: 108px;
    padding: 18px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .service-stats > div:nth-child(2n) {
    border-right: 0;
  }

  .service-stats > div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-stats strong {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.1;
  }

  .service-stats span {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
  }

  .final-content,
  .page-cta > div:last-child {
    width: 100%;
    margin-inline: auto;
  }

  .final-content > div,
  .page-cta .hero-actions {
    width: min(100%, 420px);
    margin: 28px auto 18px;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
  }

  .final-content .button,
  .page-cta .hero-actions .button {
    width: 100%;
  }

  .persona-layers {
    width: 100%;
    max-width: 620px;
    margin-inline: auto;
    gap: 8px;
  }

  .persona-layers > div {
    height: auto;
    min-height: 88px;
    grid-template-columns: 34px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 4px;
    padding: 14px clamp(18px, 5vw, 30px);
  }

  .persona-layers > div:nth-child(1) {
    width: 72%;
  }

  .persona-layers > div:nth-child(2) {
    width: 77.6%;
  }

  .persona-layers > div:nth-child(3) {
    width: 83.2%;
  }

  .persona-layers > div:nth-child(4) {
    width: 88.8%;
  }

  .persona-layers > div:nth-child(5) {
    width: 94.4%;
  }

  .persona-layers > div:nth-child(6) {
    width: 100%;
  }

  .persona-layers span {
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
    font-size: 13px;
    line-height: 1;
  }

  .persona-layers b,
  .persona-layers small {
    grid-column: 2;
    min-width: 0;
    white-space: normal;
  }

  .persona-layers b {
    grid-row: 1;
    align-self: end;
    font-size: 16px;
    line-height: 1.35;
  }

  .persona-layers small {
    grid-row: 2;
    align-self: start;
    font-size: 12px;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }
}
