:root {
  --ink: #0a0f1c;
  --paper: #ffffff;
  --paper-soft: #f7f8fa;
  --graphite: #363c47;
  --muted: #66707a;
  --hairline: #e6e9ef;
  --blue: #0a84c6;
  --blue-deep: #075f91;
  --page: 1280px;
  --gutter: 32px;
  --header-h: 76px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: min(calc(100% - (var(--gutter) * 2)), var(--page));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: 184px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 0 max(var(--gutter), calc((100vw - var(--page)) / 2));
  border-bottom: 1px solid rgba(10, 15, 28, .09);
  background: rgba(247, 248, 250, .92);
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 34px rgba(10, 15, 28, .06);
}

.site-brand {
  width: 168px;
}

.site-brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  padding: 24px 0 22px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 17px;
  height: 2px;
  background: var(--blue);
  transition: right 220ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.header-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 0 16px 0 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  transition: color 200ms ease, background-color 200ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--ink);
  background: transparent;
}

.action-arrow {
  color: var(--blue);
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--hairline);
  border-radius: 4px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
}

.story-scene {
  position: relative;
}

.hero {
  position: relative;
  height: calc(100svh - 42px);
  min-height: 720px;
  max-height: 940px;
  overflow: hidden;
  padding-top: var(--header-h);
  background: var(--paper-soft);
  border-bottom: 1px solid var(--hairline);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: -2;
  border-top: 1px solid rgba(10, 15, 28, .04);
}

.hero-grid {
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: -1;
  width: 100%;
  height: calc(100% - var(--header-h));
  pointer-events: none;
}

.grid-lines path {
  fill: none;
  stroke: rgba(10, 15, 28, .055);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.system-guides {
  opacity: .8;
}

.guide-path {
  fill: none;
  stroke: rgba(10, 132, 198, .3);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
  vector-effect: non-scaling-stroke;
  animation: guide-flow 18s linear infinite;
}

.path-b {
  animation-delay: -6s;
}

.path-c {
  animation-delay: -11s;
}

.guide-node {
  fill: var(--blue);
  opacity: .7;
}

.hero-layout {
  height: calc(100% - 104px);
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(420px, 5fr);
  align-items: center;
  gap: 58px;
  padding-top: 26px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 710px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--blue-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 72px;
  font-weight: 420;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 strong {
  font-weight: 760;
}

.hero-mission {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 620;
  line-height: 1.45;
}

.hero-summary {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 19px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 200ms var(--ease), color 200ms ease, background-color 200ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--paper);
  background: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--ink);
  background: var(--paper);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, .58);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--paper);
  background: var(--ink);
}

.hero-system {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.06;
  transform: translate3d(var(--parallax-x, 0), var(--parallax-y, 0), 0);
  transition: transform 600ms var(--ease);
}

.mark-stage {
  position: absolute;
  width: 58%;
  aspect-ratio: 228 / 278;
  left: 50%;
  top: 49%;
  transform: translate(-50%, -50%);
}

.mark-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mark-frame {
  opacity: 0;
  transform: scale(.965);
  animation: mark-frame-in 850ms var(--ease) 300ms forwards;
}

.mark-links {
  opacity: 0;
  transform: scale(.98);
  animation: mark-links-in 680ms var(--ease) 1050ms forwards;
}

.mark-hub {
  opacity: 0;
  transform: scale(.72);
  animation: mark-hub-in 520ms var(--ease) 1620ms forwards, hub-settle 16s ease-in-out 3400ms infinite;
}

.mark-rise {
  opacity: 0;
  clip-path: inset(100% 0 0 0);
  animation: mark-rise-in 900ms var(--ease) 2100ms forwards;
}

.mark-halo {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 18%;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 132, 198, .16);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: halo-in 600ms ease 1550ms forwards;
}

.system-axis {
  position: absolute;
  inset: 0;
  color: var(--graphite);
  font-size: 10px;
  font-weight: 800;
}

.axis-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: axis-in 600ms var(--ease) forwards;
}

.axis-label::before {
  content: "";
  width: 38px;
  height: 1px;
  background: var(--blue);
}

.axis-tech {
  left: 0;
  bottom: 22%;
  animation-delay: 1050ms;
}

.axis-service {
  right: 0;
  bottom: 20%;
  flex-direction: row-reverse;
  animation-delay: 1250ms;
}

.axis-capital {
  left: 50%;
  bottom: 1%;
  flex-direction: column-reverse;
  transform: translateX(-50%);
  animation-delay: 1450ms;
}

.axis-capital::before {
  width: 1px;
  height: 34px;
}

.system-caption {
  position: absolute;
  inset: auto 7% 7%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.system-caption span {
  padding-top: 10px;
  border-top: 1px solid rgba(10, 15, 28, .12);
}

.hero-status {
  height: 104px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 30px;
  border-top: 1px solid rgba(10, 15, 28, .12);
}

.status-index {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.status-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.status-track span {
  color: var(--muted);
  font-size: 12px;
}

.status-track b {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 13px;
}

.hero-status > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
}

.opening-band {
  min-height: 460px;
  display: flex;
  align-items: center;
  padding: 96px 0;
  color: var(--paper);
  background: var(--ink);
}

.opening-grid {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 34px;
  align-items: start;
}

.section-index {
  margin: 8px 0 0;
  color: var(--blue-deep);
  font-size: 11px;
  font-weight: 800;
}

.section-ink .section-index,
.content-band.ink .section-index,
.opening-band .section-index {
  color: #84c8ec;
}

.opening-band h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 630;
  line-height: 1.25;
}

.opening-band .opening-grid > p:last-child {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
  line-height: 1.85;
}

:focus-visible {
  outline: 3px solid rgba(10, 132, 198, .5);
  outline-offset: 4px;
}

@keyframes mark-frame-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes mark-links-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes mark-hub-in {
  to { opacity: 1; transform: scale(1); }
}

@keyframes mark-rise-in {
  to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes halo-in {
  to { opacity: 1; width: 27%; }
}

@keyframes hub-settle {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

@keyframes axis-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes guide-flow {
  to { stroke-dashoffset: -180; }
}

@media (max-width: 1120px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    grid-template-columns: 160px 1fr auto;
    gap: 20px;
  }

  .site-nav {
    gap: 22px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
    gap: 24px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero-mission {
    font-size: 23px;
  }

  .opening-grid {
    grid-template-columns: 2fr 7fr;
  }

  .opening-grid > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .site-header {
    grid-template-columns: 150px 1fr 44px;
  }

  .header-action {
    justify-self: end;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    gap: 0;
    padding: 18px var(--gutter) 24px;
    border-bottom: 1px solid var(--hairline);
    background: var(--paper);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms var(--ease);
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--hairline);
  }

  .site-nav a::after {
    display: none;
  }

  .header-action {
    grid-column: 2;
    grid-row: 1;
    min-height: 38px;
  }

  .hero {
    height: auto;
    min-height: calc(100svh - 34px);
    max-height: none;
  }

  .hero-layout {
    min-height: 720px;
    height: auto;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 18px;
    padding: 74px 0 32px;
  }

  .hero-copy {
    max-width: 650px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-system {
    position: absolute;
    right: -70px;
    bottom: 68px;
    z-index: 0;
    width: 430px;
    opacity: .18;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .hero-status {
    position: relative;
    z-index: 2;
    grid-template-columns: 1fr auto;
  }

  .status-track {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --gutter: 20px;
    --header-h: 64px;
  }

  .site-header {
    grid-template-columns: 142px 1fr 42px;
    gap: 10px;
  }

  .header-action {
    display: none;
  }

  .menu-toggle {
    justify-self: end;
  }

  .hero {
    min-height: 640px;
  }

  .hero-layout {
    min-height: 560px;
    align-content: start;
    padding-top: 64px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .hero-mission {
    max-width: 520px;
    margin-top: 20px;
    font-size: 21px;
    line-height: 1.5;
  }

  .hero-summary {
    max-width: 500px;
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 300px);
    margin-top: 24px;
  }

  .button {
    width: 100%;
  }

  .hero-system {
    right: -135px;
    bottom: 36px;
    width: 390px;
    opacity: .13;
  }

  .hero-status {
    height: 80px;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .status-index {
    max-width: 150px;
  }

  .hero-status > a {
    text-align: right;
  }

  .opening-band {
    min-height: 520px;
    padding: 78px 0;
  }

  .opening-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .opening-grid > p:last-child {
    grid-column: 1;
  }

  .opening-band h2 {
    font-size: 36px;
  }

  .opening-band .opening-grid > p:last-child {
    font-size: 16px;
  }
}


/* Instant consultation is deliberately separate from diagnostic-form entry points. */
.floating-consultation {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: rgba(10, 15, 28, .96);
  box-shadow: 0 12px 28px rgba(10, 15, 28, .2);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.floating-consultation:hover,
.floating-consultation:focus-visible {
  color: var(--paper);
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(10, 90, 142, .28);
  transform: translateY(-2px);
}

.floating-consultation:focus-visible {
  outline: 3px solid rgba(115, 217, 255, .78);
  outline-offset: 3px;
}

.contact-wecom-link {
  color: var(--blue-deep) !important;
  font-weight: 700;
}

@media (max-width: 620px) {
  .floating-consultation {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding-right: 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mark-frame,
  .mark-links,
  .mark-hub,
  .mark-rise,
  .axis-label {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero-system {
    transform: none;
  }
}
/* Direction gate revision: mission first, six dimensions explicit, mobile parity */
.hero h1 {
  font-size: 66px;
  font-weight: 720;
  line-height: 1.12;
}

.hero-category {
  display: block;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.4;
}

.hero h1 strong {
  display: block;
  font-weight: 720;
}

.hero-summary {
  max-width: 640px;
  margin-top: 22px;
}

.hero-proof {
  display: flex;
  gap: 24px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.hero-proof li {
  padding-right: 24px;
  border-right: 1px solid rgba(10, 15, 28, .14);
}

.hero-proof li:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-proof b {
  margin-right: 4px;
  color: var(--blue-deep);
  font-size: 16px;
}

.hero-system {
  width: min(100%, 560px);
  aspect-ratio: auto;
  min-height: 570px;
}

.capability-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}

.capability-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.capability-lines path {
  fill: none;
  stroke: rgba(10, 132, 198, .28);
  stroke-width: 1;
  stroke-dasharray: 4 8;
  vector-effect: non-scaling-stroke;
  animation: guide-flow 18s linear infinite;
}

.capability-endpoints circle {
  fill: var(--blue);
}

.capability-node {
  position: absolute;
  z-index: 3;
  min-width: 124px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.3;
  opacity: 0;
  animation: axis-in 520ms var(--ease) forwards;
}

.capability-node b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
}

.capability-node small {
  display: block;
  color: var(--muted);
  font-size: 10px;
}

.cap-tech {
  left: 0;
  top: 13%;
  animation-delay: 500ms;
}

.cap-service {
  right: 0;
  top: 13%;
  text-align: right;
  animation-delay: 650ms;
}

.cap-organization {
  left: -5%;
  top: 47%;
  animation-delay: 800ms;
}

.cap-compliance {
  right: -5%;
  top: 47%;
  text-align: right;
  animation-delay: 950ms;
}

.cap-capital {
  left: 2%;
  bottom: 12%;
  animation-delay: 1100ms;
}

.cap-growth {
  right: 2%;
  bottom: 12%;
  text-align: right;
  animation-delay: 1250ms;
}

.capability-map .mark-stage {
  width: 38%;
  top: 50%;
}

.system-sequence {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: -10px;
  border-top: 1px solid rgba(10, 15, 28, .14);
}

.system-sequence span {
  min-height: 48px;
  padding: 12px 10px 0;
  border-right: 1px solid rgba(10, 15, 28, .1);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.system-sequence span:last-child {
  border-right: 0;
}

.system-sequence b {
  display: block;
  color: var(--blue-deep);
  font-size: 9px;
}

.system-guides {
  opacity: .35;
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 54px;
  }

  .hero-system {
    min-height: 510px;
  }

  .capability-node {
    min-width: 108px;
  }
}

@media (max-width: 860px) {
  .hero {
    height: auto;
    min-height: 0;
  }

  .hero-layout {
    min-height: 0;
    grid-template-columns: 1fr;
    align-content: start;
    gap: 6px;
    padding: 44px 0 18px;
  }

  .hero-system {
    position: relative;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: min(100%, 370px);
    min-height: 390px;
    opacity: 1;
  }

  .capability-map {
    width: 100%;
  }

  .capability-node {
    min-width: 96px;
  }

  .hero-status {
    height: 64px;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 0;
  }

  .hero-layout {
    padding-top: 24px;
    padding-bottom: 10px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    font-size: 37px;
    line-height: 1.16;
  }

  .hero-category {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .hero-summary {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    gap: 8px;
    width: 100%;
    margin-top: 18px;
  }

  .button {
    min-height: 46px;
    gap: 10px;
    padding-inline: 14px;
    font-size: 13px;
  }

  .button-secondary {
    font-size: 12px;
  }

  .hero-proof {
    gap: 12px;
    margin-top: 14px;
    font-size: 10px;
  }

  .hero-proof li {
    padding-right: 12px;
  }

  .hero-proof b {
    font-size: 13px;
  }

  .hero-system {
    width: 300px;
    min-height: 318px;
    margin-top: -2px;
  }

  .capability-node {
    min-width: 82px;
    font-size: 11px;
  }

  .capability-node b {
    font-size: 12px;
  }

  .capability-node small {
    display: none;
  }

  .cap-organization {
    left: 0;
  }

  .cap-compliance {
    right: 0;
  }

  .capability-map .mark-stage {
    width: 40%;
  }

  .system-sequence {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: -8px;
  }

  .system-sequence span {
    min-height: 44px;
    padding: 9px 5px 0;
    font-size: 8px;
    text-align: center;
  }

  .system-sequence b {
    font-size: 8px;
  }

  .hero-status {
    height: 58px;
  }

  .status-index {
    max-width: none;
    white-space: nowrap;
    font-size: 9px;
  }

  .hero-status > a {
    max-width: 154px;
    font-size: 10px;
  }

  .opening-band {
    min-height: 470px;
    padding-top: 32px;
  }

  .section-index {
    margin-top: 0;
  }

  .opening-band h2 {
    font-size: 32px;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 33px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-system {
    width: 270px;
  }

  .hero-proof {
    font-size: 9px;
  }
}


/* Instant consultation is deliberately separate from diagnostic-form entry points. */
.floating-consultation {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: rgba(10, 15, 28, .96);
  box-shadow: 0 12px 28px rgba(10, 15, 28, .2);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.floating-consultation:hover,
.floating-consultation:focus-visible {
  color: var(--paper);
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(10, 90, 142, .28);
  transform: translateY(-2px);
}

.floating-consultation:focus-visible {
  outline: 3px solid rgba(115, 217, 255, .78);
  outline-offset: 3px;
}

.contact-wecom-link {
  color: var(--blue-deep) !important;
  font-weight: 700;
}

@media (max-width: 620px) {
  .floating-consultation {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding-right: 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .capability-node {
    opacity: 1;
  }
}
@media (max-width: 620px) {
  .hero-layout {
    padding-top: 16px;
  }

  .hero-proof {
    margin-top: 10px;
  }

  .hero-system {
    width: 270px;
    min-height: 288px;
  }

  .system-sequence span {
    min-height: 40px;
    padding-top: 7px;
  }

  .hero-status {
    height: 54px;
  }

  .opening-band {
    padding-top: 18px;
  }

  .opening-grid {
    gap: 12px;
  }
}

@media (max-width: 370px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero-system {
    width: 250px;
    min-height: 268px;
  }

  .hero-status {
    height: 46px;
  }
}
/* Shared page bands and homepage systems */
.section-light {
  background: var(--paper-soft);
}

.section-ink {
  color: var(--paper);
  background: var(--ink);
}

.section-heading {
  display: grid;
  grid-template-columns: 2fr 10fr;
  gap: 32px;
  padding-top: 118px;
  padding-bottom: 64px;
}

.section-heading .section-index {
  padding-top: 11px;
}

.section-heading > div {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 4fr);
  gap: 56px;
  align-items: end;
}

.section-heading h2 {
  margin: 0;
  font-size: 54px;
  font-weight: 640;
  line-height: 1.18;
}

.section-heading > div > p {
  margin: 0 0 7px;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.85;
}

.section-heading.on-ink > div > p {
  color: rgba(255, 255, 255, .64);
}

.section-heading.compact {
  padding-bottom: 48px;
}

.dimensions {
  padding-bottom: 124px;
}

.dimension-tool {
  border-top: 1px solid rgba(10, 15, 28, .15);
  border-bottom: 1px solid rgba(10, 15, 28, .15);
}

.dimension-tabs {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid rgba(10, 15, 28, .15);
}

.dimension-tabs button {
  position: relative;
  min-height: 116px;
  padding: 18px 18px;
  text-align: left;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(10, 15, 28, .11);
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.dimension-tabs button:last-child {
  border-right: 0;
}

.dimension-tabs button::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.dimension-tabs button:hover,
.dimension-tabs button:focus-visible,
.dimension-tabs button[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper);
}

.dimension-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.dimension-tabs span,
.dimension-tabs small {
  display: block;
  font-size: 9px;
  font-weight: 750;
}

.dimension-tabs b {
  display: block;
  margin: 0 0 3px;
  font-size: 18px;
}

.dimension-panel {
  min-height: 360px;
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 32px;
  align-items: start;
  padding: 54px 0 58px;
}

.dimension-number {
  color: var(--blue);
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.dimension-kicker,
.stage-heading > p {
  margin: 5px 0 18px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.dimension-content h3 {
  max-width: 640px;
  margin: 0;
  font-size: 36px;
  font-weight: 620;
  line-height: 1.35;
}

.dimension-content > p:last-child {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.8;
}

.dimension-meta {
  border-left: 1px solid rgba(10, 15, 28, .14);
  padding-left: 30px;
}

.dimension-meta > div {
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(10, 15, 28, .12);
}

.dimension-meta span,
.stage-column span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.dimension-meta p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
}

.platform-section {
  padding-bottom: 120px;
}

.layer-system {
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.layer-row {
  display: grid;
  grid-template-columns: 1.2fr 3.2fr 4fr .5fr;
  gap: 32px;
  align-items: center;
  min-height: 172px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  transition: background-color 200ms ease;
}

.layer-row:hover {
  background: rgba(255, 255, 255, .035);
}

.layer-code {
  color: #75c4ee;
  font-size: 10px;
  font-weight: 800;
}

.layer-row h3 {
  margin: 0 0 7px;
  color: var(--paper);
  font-size: 26px;
  font-weight: 610;
}

.layer-row p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
}

.layer-row ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.layer-row li {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.55;
}

.layer-direction {
  justify-self: end;
  color: #75c4ee;
  font-size: 22px;
}

.platform-hub-row {
  min-height: 136px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  text-align: center;
}

.platform-hub-row strong {
  min-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 26px;
  color: var(--paper);
  border: 1px solid rgba(117, 196, 238, .5);
  border-radius: 4px;
  font-size: 14px;
}

.platform-hub-row strong::before,
.platform-hub-row strong::after {
  content: "";
  position: absolute;
}

.platform-hub-row img {
  width: 36px;
  height: 44px;
}

.lifecycle {
  padding-bottom: 124px;
}

.lifecycle-tool {
  border-top: 1px solid rgba(10, 15, 28, .15);
  border-bottom: 1px solid rgba(10, 15, 28, .15);
}

.stage-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(10, 15, 28, .15);
}

.stage-track button {
  position: relative;
  min-height: 90px;
  padding: 18px 20px;
  color: var(--muted);
  text-align: left;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(10, 15, 28, .11);
  cursor: pointer;
}

.stage-track button:last-child {
  border-right: 0;
}

.stage-track button::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -2px;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.stage-track button:hover,
.stage-track button:focus-visible,
.stage-track button[aria-selected="true"] {
  color: var(--ink);
  background: var(--paper);
}

.stage-track button[aria-selected="true"]::before {
  transform: scaleX(1);
}

.stage-track span {
  display: block;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
}

.stage-track b {
  display: block;
  margin-top: 8px;
  font-size: 16px;
}

.stage-panel {
  display: grid;
  grid-template-columns: 3fr repeat(3, 2fr);
  gap: 30px;
  padding: 50px 0 54px;
}

.stage-heading h3 {
  margin: 0;
  max-width: 360px;
  font-size: 29px;
  font-weight: 620;
  line-height: 1.4;
}

.stage-column {
  padding-left: 20px;
  border-left: 1px solid rgba(10, 15, 28, .13);
}

.stage-column p {
  margin: 11px 0 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.stage-action {
  grid-column: 2 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin-top: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
}

.stage-action::after {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background: var(--blue);
  transition: width 200ms var(--ease);
}

.stage-action:hover::after,
.stage-action:focus-visible::after {
  width: 92px;
}

.solutions-band {
  padding: 120px 0;
  background: var(--paper);
}

.solution-list {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.solution-row {
  display: grid;
  grid-template-columns: 1fr 4fr 5fr .5fr;
  gap: 30px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
  transition: background-color 180ms ease, padding 180ms var(--ease);
}

.solution-row:hover,
.solution-row:focus-visible {
  padding-inline: 16px;
  background: var(--paper-soft);
}

.solution-code {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.solution-row h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 620;
}

.solution-row p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
}

.solution-arrow {
  justify-self: end;
  color: var(--blue);
  font-size: 20px;
}

.method-band {
  padding: 120px 0;
}

.method-heading {
  display: grid;
  grid-template-columns: 2fr 5fr 4fr 1fr;
  gap: 32px;
  align-items: end;
  padding-bottom: 64px;
}

.method-heading h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 630;
  line-height: 1.2;
}

.method-heading > p:not(.section-index) {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, .62);
  font-size: 15px;
  line-height: 1.8;
}

.method-heading > a {
  justify-self: end;
  color: var(--paper);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.method-steps article {
  min-height: 240px;
  padding: 30px 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
}

.method-steps article:last-child {
  border-right: 0;
}

.method-steps span {
  color: #75c4ee;
  font-size: 10px;
  font-weight: 800;
}

.method-steps h3 {
  margin: 58px 0 12px;
  font-size: 25px;
  font-weight: 620;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: 13px;
  line-height: 1.75;
}

.deliverables {
  padding-bottom: 120px;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.deliverable-grid article {
  min-height: 272px;
  padding: 28px;
  border: 1px solid rgba(10, 15, 28, .13);
  border-radius: 8px;
  background: var(--paper);
}

.deliverable-grid span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
}

.deliverable-grid h3 {
  margin: 72px 0 12px;
  font-size: 22px;
  font-weight: 620;
}

.deliverable-grid p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.deliverable-note {
  display: grid;
  grid-template-columns: 3fr 7fr;
  gap: 30px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(10, 15, 28, .14);
}

.deliverable-note strong {
  color: var(--blue-deep);
  font-size: 12px;
}

.deliverable-note p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.about-band {
  padding: 124px 0;
  background: var(--paper);
}

.about-layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 96px;
  align-items: start;
}

.about-layout h2 {
  margin: 24px 0 28px;
  font-size: 32px;
  font-weight: 630;
  line-height: 1.22;
}

.about-layout > div:first-child > p:not(.section-index) {
  margin: 0;
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.85;
}

.about-layout > div:first-child > a {
  display: inline-flex;
  gap: 22px;
  margin-top: 30px;
  font-size: 13px;
  font-weight: 750;
}

.mission-block {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.mission-block > div {
  display: grid;
  grid-template-columns: 1.2fr 4fr;
  gap: 24px;
  padding: 32px 0 36px;
  border-bottom: 1px solid rgba(10, 15, 28, .16);
}

.mission-block span {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.mission-block strong {
  font-size: 25px;
  font-weight: 570;
  line-height: 1.55;
}

.final-cta {
  padding: 110px 0;
}

.final-cta-layout {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 80px;
  align-items: end;
}

.final-cta h2 {
  margin: 22px 0 0;
  font-size: 52px;
  font-weight: 630;
  line-height: 1.2;
}

.final-cta-layout > div:last-child > p {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.8;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--paper);
  background: transparent;
}

.site-footer {
  color: rgba(255, 255, 255, .66);
  background: #05080f;
}

.footer-main {
  display: grid;
  grid-template-columns: 4fr 1.4fr 3fr 1.4fr;
  gap: 46px;
  padding-top: 72px;
  padding-bottom: 64px;
}

.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
  opacity: .94;
}

.footer-brand p {
  margin: 18px 0 0;
  font-size: 14px;
}

.footer-main h3 {
  margin: 2px 0 20px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 750;
}

.footer-main > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-main a,
.footer-main span {
  font-size: 12px;
  line-height: 1.6;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--paper);
}

.footer-bottom {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: 10px;
}

.public-security-record {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.public-security-record img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
}

.js .will-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .section-heading > div {
    grid-template-columns: minmax(0, 6fr) minmax(260px, 4fr);
    gap: 34px;
  }

  .section-heading h2,
  .method-heading h2,
  .final-cta h2 {
    font-size: 44px;
  }

  .dimension-panel {
    grid-template-columns: 1.5fr 6fr 4fr;
  }

  .layer-row {
    grid-template-columns: 1fr 3fr 4fr .4fr;
  }

  .stage-panel {
    grid-template-columns: 2.5fr repeat(3, 2fr);
    gap: 22px;
  }

  .about-layout {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 90px;
    padding-bottom: 46px;
  }

  .section-heading .section-index {
    padding-top: 0;
  }

  .section-heading > div {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dimension-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .dimension-tabs button:nth-child(3) {
    border-right: 0;
  }

  .dimension-tabs button:nth-child(-n+3) {
    border-bottom: 1px solid rgba(10, 15, 28, .11);
  }

  .dimension-panel {
    grid-template-columns: 1fr 4fr;
  }

  .dimension-meta {
    grid-column: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-left: 0;
    border-left: 0;
  }

  .layer-row {
    grid-template-columns: 1fr 3fr .4fr;
    padding-block: 28px;
  }

  .layer-row ul {
    grid-column: 2;
  }

  .stage-track {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(128px, 1fr));
    scrollbar-width: thin;
  }

  .stage-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .stage-heading {
    grid-column: 1 / -1;
  }

  .stage-column {
    min-height: 120px;
  }

  .stage-action {
    grid-column: 1 / -1;
  }

  .solution-row {
    grid-template-columns: .7fr 3fr .4fr;
    padding-block: 24px;
  }

  .solution-row p {
    grid-column: 2;
  }

  .solution-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .method-heading {
    grid-template-columns: 1fr 3fr;
  }

  .method-heading > p:not(.section-index),
  .method-heading > a {
    grid-column: 2;
  }

  .method-heading > a {
    justify-self: start;
  }

  .method-steps,
  .deliverable-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps article:nth-child(2) {
    border-right: 0;
  }

  .method-steps article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .final-cta-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-main {
    grid-template-columns: 2fr 1fr;
  }
}

@media (max-width: 620px) {
  .section-heading {
    padding-top: 72px;
    padding-bottom: 34px;
  }

  .section-heading h2,
  .method-heading h2,
  .final-cta h2 {
    font-size: 34px;
  }

  .section-heading > div > p {
    font-size: 14px;
  }

  .dimensions,
  .lifecycle,
  .deliverables {
    padding-bottom: 80px;
  }

  .dimension-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .dimension-tabs button:nth-child(3) {
    border-right: 1px solid rgba(10, 15, 28, .11);
  }

  .dimension-tabs button:nth-child(2n) {
    border-right: 0;
  }

  .dimension-tabs button:nth-child(-n+4) {
    border-bottom: 1px solid rgba(10, 15, 28, .11);
  }

  .dimension-tabs button {
    min-height: 92px;
    padding: 14px;
  }

  .dimension-panel {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 34px 0 38px;
  }

  .dimension-number {
    font-size: 32px;
  }

  .dimension-content h3 {
    font-size: 27px;
  }

  .dimension-meta {
    grid-column: 1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .layer-row {
    grid-template-columns: 1fr .2fr;
    gap: 18px;
  }

  .layer-code,
  .layer-row > div:nth-child(2),
  .layer-row ul {
    grid-column: 1;
  }

  .layer-row ul {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .layer-direction {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .platform-hub-row {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .platform-hub-row strong {
    min-width: 0;
    width: 100%;
  }

  .stage-panel {
    grid-template-columns: 1fr;
    padding: 34px 0 40px;
  }

  .stage-column,
  .stage-heading,
  .stage-action {
    grid-column: 1;
  }

  .stage-column {
    min-height: 0;
    padding: 18px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(10, 15, 28, .13);
  }

  .stage-heading h3 {
    font-size: 26px;
  }

  .solutions-band,
  .method-band,
  .about-band,
  .final-cta {
    padding: 78px 0;
  }

  .solution-row {
    grid-template-columns: .6fr 4fr .4fr;
    gap: 14px;
  }

  .solution-row h3 {
    font-size: 19px;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
  }

  .method-heading > p:not(.section-index),
  .method-heading > a {
    grid-column: 1;
  }

  .method-steps,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

  .method-steps article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .16);
  }

  .method-steps article:last-child {
    border-bottom: 0;
  }

  .method-steps h3 {
    margin-top: 38px;
  }

  .deliverable-grid article {
    min-height: 220px;
  }

  .deliverable-grid h3 {
    margin-top: 48px;
  }

  .deliverable-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-layout h2 {
    font-size: 34px;
  }

  .mission-block > div {
    grid-template-columns: 1fr;
  }

  .mission-block strong {
    font-size: 21px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 56px;
  }

  .footer-bottom {
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 24px 0 30px;
  }
}


/* Instant consultation is deliberately separate from diagnostic-form entry points. */
.floating-consultation {
  position: fixed;
  right: max(24px, env(safe-area-inset-right));
  bottom: max(24px, env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px 0 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: rgba(10, 15, 28, .96);
  box-shadow: 0 12px 28px rgba(10, 15, 28, .2);
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms var(--ease), background 180ms var(--ease), box-shadow 180ms var(--ease);
}

.floating-consultation:hover,
.floating-consultation:focus-visible {
  color: var(--paper);
  background: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(10, 90, 142, .28);
  transform: translateY(-2px);
}

.floating-consultation:focus-visible {
  outline: 3px solid rgba(115, 217, 255, .78);
  outline-offset: 3px;
}

.contact-wecom-link {
  color: var(--blue-deep) !important;
  font-weight: 700;
}

@media (max-width: 620px) {
  .floating-consultation {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 42px;
    padding-right: 12px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .js .will-reveal,
  .js .will-reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
/* Secondary pages */
.subpage {
  background: var(--paper);
}

.subpage .site-header {
  background: rgba(255, 255, 255, .96);
}

.subpage-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-h) + 82px) 0 86px;
  background: var(--paper-soft);
  border-bottom: 1px solid var(--hairline);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: var(--header-h) 0 0;
  pointer-events: none;
  background-size: 208px 104px;
  background-image:
    linear-gradient(rgba(10, 15, 28, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 15, 28, .045) 1px, transparent 1px);
}

.subpage-hero .page-shell {
  position: relative;
  z-index: 1;
}

.subpage-hero-grid {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 32px;
  align-items: end;
}

.page-kicker,
.breadcrumbs {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.breadcrumbs {
  align-self: start;
  padding-top: 13px;
}

.breadcrumbs a {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subpage-hero h1 {
  margin: 0;
  font-size: 62px;
  font-weight: 660;
  line-height: 1.14;
}

.subpage-hero .hero-lead {
  margin: 28px 0 0;
  max-width: 760px;
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.8;
}

.hero-aside {
  padding-left: 26px;
  border-left: 1px solid rgba(10, 15, 28, .16);
}

.hero-aside span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.hero-aside p,
.hero-aside li {
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.7;
}

.hero-aside ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.subpage-mark {
  position: absolute;
  right: max(24px, calc((100vw - var(--page)) / 2));
  bottom: 28px;
  width: 142px;
  opacity: .075;
}

.content-band {
  padding: 112px 0;
}

.content-band.soft {
  background: var(--paper-soft);
}

.content-band.ink {
  color: var(--paper);
  background: var(--ink);
}

.band-heading {
  display: grid;
  grid-template-columns: 2fr 6fr 4fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 58px;
}

.band-heading h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 630;
  line-height: 1.22;
}

.band-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.85;
}

.content-band.ink .band-heading > p:last-child {
  color: rgba(255, 255, 255, .62);
}

.detail-list {
  border-top: 1px solid rgba(10, 15, 28, .17);
}

.detail-item {
  display: grid;
  grid-template-columns: 1.1fr 3.4fr 4fr 3fr .5fr;
  gap: 28px;
  align-items: start;
  padding: 38px 0 42px;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.detail-item .detail-code {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.detail-item h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 620;
  line-height: 1.4;
}

.detail-item p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.8;
}

.detail-item dl {
  margin: 0;
}

.detail-item dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.detail-item dd {
  margin: 0 0 16px;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.7;
}

.detail-item .detail-arrow {
  justify-self: end;
  color: var(--blue);
  font-size: 18px;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(10, 15, 28, .18);
}


.matrix-table:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.matrix-table th,
.matrix-table td {
  padding: 20px 18px;
  text-align: left;
  border-right: 1px solid rgba(10, 15, 28, .11);
  border-bottom: 1px solid rgba(10, 15, 28, .13);
  vertical-align: top;
}

.matrix-table th:last-child,
.matrix-table td:last-child {
  border-right: 0;
}

.matrix-table th {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.matrix-table td {
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.65;
}

.matrix-table td strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 14px;
}

.principle-grid,
.mode-grid,
.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(10, 15, 28, .16);
  border-bottom: 1px solid rgba(10, 15, 28, .16);
}

.principle-grid article,
.mode-grid article,
.output-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(10, 15, 28, .13);
}

.principle-grid article:last-child,
.mode-grid article:last-child,
.output-grid article:last-child {
  border-right: 0;
}

.principle-grid span,
.mode-grid span,
.output-grid span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
}

.principle-grid h3,
.mode-grid h3,
.output-grid h3 {
  margin: 62px 0 12px;
  font-size: 24px;
  font-weight: 620;
}

.principle-grid p,
.mode-grid p,
.output-grid p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.ink .principle-grid,
.ink .mode-grid,
.ink .output-grid {
  border-color: rgba(255, 255, 255, .18);
}

.ink .principle-grid article,
.ink .mode-grid article,
.ink .output-grid article {
  border-color: rgba(255, 255, 255, .15);
}

.ink .principle-grid h3,
.ink .mode-grid h3,
.ink .output-grid h3 {
  color: var(--paper);
}

.ink .principle-grid p,
.ink .mode-grid p,
.ink .output-grid p {
  color: rgba(255, 255, 255, .6);
}

.ink .principle-grid span,
.ink .mode-grid span,
.ink .output-grid span {
  color: #75c4ee;
}

.process-list {
  counter-reset: process;
  border-top: 1px solid rgba(10, 15, 28, .16);
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 1fr 4fr 5fr;
  gap: 30px;
  min-height: 150px;
  align-items: center;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
}

.process-step::before {
  content: "0" counter(process);
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.process-step h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 620;
}

.process-step p {
  margin: 0;
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.8;
}

.brand-story {
  display: grid;
  grid-template-columns: 4fr 7fr;
  gap: 72px;
  align-items: center;
}

.brand-story-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 15, 28, .13);
  background: var(--paper-soft);
}

.brand-story-visual img {
  width: 170px;
}

.brand-story-copy > div {
  padding: 25px 0;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
}

.brand-story-copy span {
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
}

.brand-story-copy h3 {
  margin: 8px 0 8px;
  font-size: 23px;
  font-weight: 620;
}

.brand-story-copy p {
  margin: 0;
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.page-cta {
  padding: 88px 0;
  color: var(--paper);
  background: var(--ink);
}

.page-cta-layout {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 64px;
  align-items: center;
}

.page-cta h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 620;
  line-height: 1.3;
}

.page-cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .62);
}

.page-cta .button {
  justify-self: end;
}

.contact-layout {
  display: grid;
  grid-template-columns: 7fr 4fr;
  gap: 72px;
  align-items: start;
}

.contact-form {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.form-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(10, 15, 28, .14);
}

.form-progress span {
  padding: 18px 12px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  border-right: 1px solid rgba(10, 15, 28, .11);
}

.form-progress span:last-child {
  border-right: 0;
}

.form-progress span.is-active {
  color: var(--blue-deep);
  background: var(--paper-soft);
}

.form-step {
  display: none;
  padding: 38px 0;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
}

.form-step.is-active {
  display: block;
}

.form-step h2 {
  margin: 0 0 26px;
  font-size: 28px;
  font-weight: 620;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.option-control {
  position: relative;
}

.option-control input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-control label {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border: 1px solid rgba(10, 15, 28, .16);
  border-radius: 4px;
  background: var(--paper);
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.option-control label::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.option-control input:checked + label {
  border-color: var(--blue);
  background: var(--paper-soft);
}

.option-control input:checked + label::after {
  border: 4px solid var(--blue);
}

.option-control input:focus-visible + label {
  outline: 3px solid rgba(10, 132, 198, .45);
  outline-offset: 3px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label,
.consent-line {
  color: var(--graphite);
  font-size: 12px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(10, 15, 28, .18);
  border-radius: 4px;
}

.form-field textarea {
  min-height: 128px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(10, 132, 198, .13);
}

.form-nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.form-nav .button {
  cursor: pointer;
}

.consent-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 0;
}

.form-status {
  min-height: 28px;
  margin-top: 16px;
  color: var(--blue-deep);
  font-size: 12px;
}

.contact-aside {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.contact-aside > div {
  padding: 22px 0;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
}

.contact-aside span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
}

.contact-aside a,
.contact-aside p {
  display: block;
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.65;
}

.legal-page {
  padding: calc(var(--header-h) + 80px) 0 100px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 3fr 8fr;
  gap: 80px;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  align-self: start;
}

.legal-aside img {
  width: 160px;
  margin-bottom: 32px;
}

.legal-aside p {
  color: var(--muted);
  font-size: 11px;
}

.legal-content h1 {
  margin: 0 0 18px;
  font-size: 32px;
  font-weight: 640;
}

.legal-content > p {
  color: var(--graphite);
}

.legal-content section {
  padding: 34px 0;
  border-top: 1px solid rgba(10, 15, 28, .14);
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 23px;
  font-weight: 620;
}

.legal-content h3 {
  margin: 24px 0 10px;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  color: var(--graphite);
  font-size: 14px;
  line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

@media (max-width: 860px) {
  .subpage-hero-grid {
    grid-template-columns: 1fr 4fr;
  }

  .hero-aside {
    grid-column: 2;
    margin-top: 24px;
  }

  .subpage-hero h1 {
    font-size: 50px;
  }

  .band-heading {
    grid-template-columns: 1fr 4fr;
  }

  .band-heading > p:last-child {
    grid-column: 2;
  }

  .detail-item {
    grid-template-columns: 1fr 3fr .4fr;
  }

  .detail-item > p,
  .detail-item > dl {
    grid-column: 2;
  }

  .detail-item .detail-arrow {
    grid-column: 3;
    grid-row: 1 / span 4;
  }

  .principle-grid,
  .mode-grid,
  .output-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .mode-grid article,
  .output-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 15, 28, .13);
  }

  .process-step {
    grid-template-columns: .5fr 3fr;
    padding: 26px 0;
  }

  .process-step p {
    grid-column: 2;
  }

  .brand-story,
  .contact-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-aside {
    position: static;
  }
}

@media (max-width: 620px) {
  .subpage-hero {
    min-height: 600px;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 58px);
  }

  .subpage-hero-grid,
  .band-heading {
    grid-template-columns: 1fr;
  }

  .breadcrumbs,
  .hero-aside,
  .band-heading > p:last-child {
    grid-column: 1;
  }

  .subpage-hero h1 {
    font-size: 40px;
  }

  .subpage-hero .hero-lead {
    font-size: 16px;
  }

  .hero-aside {
    padding: 20px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(10, 15, 28, .14);
  }

  .content-band {
    padding: 76px 0;
  }

  .band-heading h2,
  .legal-content h1 {
    font-size: 34px;
  }

  .detail-item {
    grid-template-columns: .5fr 4fr .4fr;
    gap: 14px;
    padding: 28px 0;
  }

  .detail-item h3 {
    font-size: 20px;
  }

  .matrix-table {
    display: block;
    overflow-x: auto;
    white-space: normal;
  }

  .matrix-table th,
  .matrix-table td {
    min-width: 160px;
  }

  .brand-story-visual {
    min-height: 360px;
  }

  .page-cta-layout {
    grid-template-columns: 1fr;
  }

  .page-cta .button {
    justify-self: start;
  }

  .form-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: 1;
  }

  .legal-page {
    padding-top: calc(var(--header-h) + 52px);
  }
}
.subpage-hero::before { background-image: none; }

.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
body.menu-open { overflow: hidden; }
.button:disabled { cursor: wait; opacity: .62; transform: none; }

/* Tablet hero: keep the complete brand system and reveal the next chapter. */
@media (min-width: 621px) and (max-width: 860px) {
  .hero-layout {
    gap: 2px;
    padding: 22px 0 10px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .hero h1 {
    font-size: 46px;
    line-height: 1.12;
  }

  .hero-category {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .hero-summary {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-proof {
    margin-top: 14px;
  }

  .hero-system {
    width: 320px;
    min-height: 342px;
    margin-top: -6px;
  }

  .capability-node {
    min-width: 84px;
    font-size: 11px;
  }

  .capability-node b {
    font-size: 12px;
  }

  .capability-node small {
    font-size: 9px;
  }

  .system-sequence span {
    min-height: 42px;
    padding: 8px 5px 0;
    font-size: 8px;
    text-align: center;
  }

  .system-sequence b {
    font-size: 8px;
  }

  .hero-status {
    height: 58px;
  }
}
/* Seven-field service model and native capability disclosures. */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.solution-detail {
  grid-template-columns: .7fr 2.25fr 2.7fr 5.7fr .35fr;
  gap: 24px;
}

.seven-field-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 26px;
  margin: 0;
}

.seven-field-list > div {
  padding: 11px 0 13px;
  border-top: 1px solid rgba(10, 15, 28, .12);
}

.seven-field-list dt {
  margin: 0 0 6px;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 800;
}

.seven-field-list dd {
  margin: 0;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.7;
}

.capability-catalog {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.capability-detail {
  border-bottom: 1px solid rgba(10, 15, 28, .14);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.capability-detail summary {
  min-height: 104px;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) 40px;
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
}

.capability-detail summary::-webkit-details-marker {
  display: none;
}

.capability-detail summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.capability-detail-code {
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
}

.capability-summary-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(210px, .8fr) minmax(0, 1.6fr);
  gap: 36px;
  align-items: center;
}

.capability-title {
  color: var(--ink);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.35;
}

.capability-summary-copy small {
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.capability-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(10, 15, 28, .2);
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms var(--ease), color 180ms ease, border-color 180ms ease;
}

.capability-detail[open] .capability-toggle {
  color: var(--ink);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.capability-detail-body {
  padding: 0 64px 36px 102px;
}

.capability-detail-body .seven-field-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .solution-detail {
    grid-template-columns: .6fr 3fr .35fr;
  }

  .solution-detail > p,
  .solution-detail > dl {
    grid-column: 2;
  }

  .solution-detail .detail-arrow {
    grid-column: 3;
    grid-row: 1 / span 4;
  }

  .capability-detail summary {
    grid-template-columns: 58px minmax(0, 1fr) 36px;
    gap: 18px;
  }

  .capability-summary-copy {
    grid-template-columns: minmax(170px, .8fr) minmax(0, 1.4fr);
    gap: 24px;
  }

  .capability-detail-body {
    padding-left: 76px;
    padding-right: 54px;
  }

  .capability-detail-body .seven-field-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .solution-detail .seven-field-list,
  .capability-detail-body .seven-field-list {
    grid-template-columns: 1fr;
  }

  .capability-detail summary {
    min-height: 94px;
    grid-template-columns: 42px minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 20px 0;
  }

  .capability-summary-copy {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .capability-title {
    font-size: 18px;
  }

  .capability-summary-copy small {
    font-size: 12px;
    line-height: 1.65;
  }

  .capability-toggle {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .capability-detail-body {
    padding: 0 0 30px 54px;
  }
}
/* Release-candidate conversion and delivery-evidence enhancements */
.site-nav .nav-diagnosis {
  display: none;
}

.site-nav a[aria-current="page"]::after {
  right: 0;
}

.hero-aside a {
  color: inherit;
  text-decoration: none;
}

.hero-aside a:hover,
.hero-aside a:focus-visible {
  color: var(--blue-deep);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.deliverable-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

.deliverable-action a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding: 0 18px;
  border: 1px solid rgba(10, 15, 28, .22);
  color: var(--ink);
  font-size: 13px;
  font-weight: 720;
}

.deliverable-action a:hover,
.deliverable-action a:focus-visible {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.detail-list {
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.solution-detail {
  display: block;
  border-bottom: 1px solid rgba(10, 15, 28, .14);
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.solution-detail summary {
  min-height: 124px;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 34px;
  gap: 26px;
  align-items: center;
  padding: 26px 0;
  cursor: pointer;
  list-style: none;
}

.solution-detail summary::-webkit-details-marker {
  display: none;
}

.solution-detail summary:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.solution-summary-copy {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1.55fr);
  gap: 40px;
  align-items: center;
}

.solution-summary-copy strong {
  color: var(--ink);
  font-size: 23px;
  font-weight: 650;
  line-height: 1.35;
}

.solution-summary-copy small {
  color: var(--graphite);
  font-size: 13px;
  line-height: 1.75;
}

.solution-toggle {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(10, 15, 28, .2);
  color: var(--blue-deep);
  font-size: 20px;
  line-height: 1;
  transition: transform 180ms var(--ease), color 180ms ease, border-color 180ms ease;
}

.solution-detail[open] .solution-toggle {
  color: var(--ink);
  border-color: var(--blue);
  transform: rotate(45deg);
}

.solution-detail-body {
  padding: 0 60px 38px 88px;
}

.solution-inline-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 22px;
  padding: 0 15px;
  border: 1px solid rgba(10, 15, 28, .2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 720;
}

.solution-inline-cta:hover,
.solution-inline-cta:focus-visible {
  color: var(--paper);
  border-color: var(--ink);
  background: var(--ink);
}

.contact-expectation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 54px;
  border-top: 1px solid rgba(10, 15, 28, .18);
  border-bottom: 1px solid rgba(10, 15, 28, .18);
}

.contact-expectation article {
  min-height: 166px;
  padding: 24px 28px;
  border-right: 1px solid rgba(10, 15, 28, .13);
}

.contact-expectation article:last-child {
  border-right: 0;
}

.contact-expectation span {
  color: var(--blue-deep);
  font-size: 8px;
  font-weight: 800;
}

.contact-expectation strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 650;
}

.contact-expectation p {
  margin: 10px 0 0;
  color: var(--graphite);
  font-size: 12px;
  line-height: 1.65;
}

.deliverable-hero-aside {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.deliverable-hero-aside img {
  width: 132px;
  max-height: 188px;
  margin-bottom: 14px;
  border: 1px solid rgba(10, 15, 28, .15);
  object-fit: cover;
  object-position: top;
  box-shadow: 0 14px 34px rgba(10, 15, 28, .12);
}

.document-showcase {
  display: grid;
  grid-template-columns: minmax(270px, 4fr) minmax(0, 7fr);
  gap: 88px;
  align-items: center;
}

.document-cover {
  margin: 0;
}

.document-cover img {
  width: 100%;
  display: block;
  border: 1px solid rgba(10, 15, 28, .14);
  box-shadow: 0 28px 70px rgba(10, 15, 28, .16);
}

.document-cover figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.document-copy h2 {
  margin: 16px 0 24px;
  color: var(--ink);
  font-size: 46px;
  font-weight: 650;
  line-height: 1.2;
}

.document-copy > p:not(.section-index) {
  max-width: 700px;
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.85;
}

.document-meta {
  margin: 34px 0;
  border-top: 1px solid rgba(10, 15, 28, .18);
}

.document-meta > div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(10, 15, 28, .13);
}

.document-meta dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.document-meta dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.65;
}

.document-download {
  width: max-content;
}

.evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, .16);
  border-left: 1px solid rgba(255, 255, 255, .16);
}

.evidence-grid article {
  min-height: 238px;
  padding: 28px;
  border-right: 1px solid rgba(255, 255, 255, .16);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.evidence-grid span {
  color: rgba(122, 199, 238, .94);
  font-size: 8px;
  font-weight: 800;
}

.evidence-grid h3 {
  margin: 62px 0 12px;
  color: var(--paper);
  font-size: 20px;
  font-weight: 620;
}

.evidence-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .solution-summary-copy {
    grid-template-columns: minmax(180px, .8fr) minmax(0, 1.4fr);
    gap: 24px;
  }

  .solution-detail-body {
    padding-left: 70px;
    padding-right: 48px;
  }

  .document-showcase {
    grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
    gap: 44px;
  }

  .document-copy h2 {
    font-size: 38px;
  }

  .evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-nav .nav-diagnosis {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid var(--ink);
    color: var(--paper);
    background: var(--ink);
  }

  .subpage-hero h1 {
    font-size: 36px;
    line-height: 1.18;
  }

  .subpage-hero h1 br {
    display: none;
  }

  .system-sequence span {
    font-size: 10px;
    line-height: 1.25;
  }

  .system-sequence b {
    font-size: 0;
  }

  .system-sequence b::after {
    content: attr(data-mobile);
    display: block;
    font-size: 9px;
  }

  .deliverable-action {
    justify-content: stretch;
  }

  .deliverable-action a {
    width: 100%;
    justify-content: space-between;
  }

  .solution-detail summary {
    min-height: 104px;
    grid-template-columns: 38px minmax(0, 1fr) 28px;
    gap: 12px;
    padding: 20px 0;
  }

  .solution-summary-copy {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .solution-summary-copy strong {
    font-size: 19px;
  }

  .solution-summary-copy small {
    font-size: 12px;
    line-height: 1.6;
  }

  .solution-toggle {
    width: 28px;
    height: 28px;
    font-size: 17px;
  }

  .solution-detail-body {
    padding: 0 0 30px 50px;
  }

  .solution-inline-cta {
    width: 100%;
    justify-content: space-between;
  }

  .contact-expectation {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .contact-expectation article {
    min-height: 0;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 15, 28, .13);
  }

  .contact-expectation article:last-child {
    border-bottom: 0;
  }

  .contact-expectation strong {
    margin-top: 14px;
  }

  .deliverable-hero-aside {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
  }

  .deliverable-hero-aside img {
    width: 88px;
    max-height: 124px;
    margin: 0;
  }

  .deliverable-hero-aside span {
    margin: 0 0 4px;
  }

  .document-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .document-cover {
    max-width: 260px;
  }

  .document-copy h2 {
    font-size: 34px;
  }

  .document-meta > div {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 16px;
  }

  .document-download {
    width: 100%;
    justify-content: space-between;
  }

  .evidence-grid {
    grid-template-columns: 1fr;
  }

  .evidence-grid article {
    min-height: 190px;
  }

  .evidence-grid h3 {
    margin-top: 42px;
  }
}
.motion-paused * {
  animation-play-state: paused !important;
}

.motion-reduced .will-reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* RC.9 readability calibration: real information must not read like an internal annotation. */
.section-index {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.page-kicker,
.breadcrumbs {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.eyebrow,
.hero-aside span,
.principle-grid span,
.mode-grid span,
.output-grid span,
.detail-item .detail-code,
.capability-detail-code,
.solution-code,
.layer-code,
.dimension-kicker,
.status-index {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.detail-item dt,
.seven-field-list dt,
.document-meta dt,
.matrix-table th,
.contact-step-label,
.legal-aside p,
.legal-footer-copy a,
.public-security-record,
.site-footer h3,
.site-footer .footer-bottom,
.document-showcase figcaption {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

.seven-field-list dd,
.detail-item dd,
.matrix-table td,
.solution-summary-copy small,
.capability-summary-copy small,
.document-meta dd,
.site-footer a,
.site-footer span {
  font-size: 13px;
  line-height: 1.7;
}

.floating-consultation {
  gap: 9px;
  padding-left: 10px;
}

.floating-consultation-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.contact-wecom-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.contact-wecom-link img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

@media (max-width: 620px) {
  .section-index,
  .page-kicker,
  .breadcrumbs {
    font-size: 13px;
  }

  .eyebrow,
  .hero-aside span,
  .principle-grid span,
  .mode-grid span,
  .output-grid span,
  .detail-item .detail-code,
  .capability-detail-code,
  .solution-code,
  .layer-code,
  .dimension-kicker,
  .status-index,
  .detail-item dt,
  .seven-field-list dt,
  .document-meta dt,
  .matrix-table th,
  .contact-step-label,
  .legal-aside p,
  .legal-footer-copy a,
  .public-security-record,
  .site-footer h3,
  .site-footer .footer-bottom,
  .document-showcase figcaption {
    font-size: 12px;
  }

  .seven-field-list dd,
  .detail-item dd,
  .matrix-table td,
  .solution-summary-copy small,
  .capability-summary-copy small,
  .document-meta dd,
  .site-footer a,
  .site-footer span {
    font-size: 12px;
  }
}
