:root {
  --ink: #0b1118;
  --ink-2: #15202b;
  --panel: #101923;
  --line: rgba(255, 255, 255, 0.14);
  --text: #1a2430;
  --muted: #647181;
  --soft: #eef3f7;
  --white: #ffffff;
  --cyan: #39c7d8;
  --cyan-2: #86e7ef;
  --gold: #c9a45e;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(10, 20, 30, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Microsoft YaHei", "PingFang SC", "Hiragino Sans GB", "Source Han Sans SC", Arial, sans-serif;
  color: var(--text);
  background: #f8fafc;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(8, 15, 23, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #071019;
  background: linear-gradient(135deg, var(--cyan-2), #f3fbff 55%, var(--gold));
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1.2;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a {
  padding: 9px 0;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active,
.site-nav a[aria-current="page"] {
  color: var(--white);
}

.site-nav .nav-cta {
  padding: 10px 16px;
  color: #061018;
  background: var(--cyan-2);
  border-radius: 4px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-tech-canvas,
.hero-cursor-glow,
.hero-scanline,
.hero-energy-beam,
.hero-circuit-grid,
.hero-orbit,
.hero-hud,
.hero-shade {
  position: absolute;
}

.hero-media,
.hero-media img {
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-tech-canvas {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 1;
  mix-blend-mode: screen;
}

.hero-cursor-glow {
  left: var(--hero-x, 72%);
  top: var(--hero-y, 42%);
  z-index: 2;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  opacity: var(--hero-glow-opacity, 0.38);
  background: radial-gradient(circle, rgba(134, 231, 239, 0.38) 0%, rgba(57, 199, 216, 0.2) 28%, rgba(57, 199, 216, 0.07) 52%, transparent 70%);
  filter: blur(2px);
  transform: translate(-50%, -50%);
  transition: opacity 0.24s ease;
  pointer-events: none;
  mix-blend-mode: screen;
}

.hero-scanline {
  inset: 0;
  z-index: 2;
  opacity: 0.74;
  background:
    linear-gradient(90deg, transparent 0%, rgba(134, 231, 239, 0.16) 42%, rgba(134, 231, 239, 0.52) 50%, rgba(134, 231, 239, 0.16) 58%, transparent 100%),
    linear-gradient(0deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-120%);
  animation: scanSweep 5.8s cubic-bezier(0.55, 0, 0.25, 1) infinite;
}

.hero-energy-beam {
  inset: auto -10% 28% 42%;
  z-index: 2;
  height: 3px;
  opacity: 0.92;
  background:
    linear-gradient(90deg, transparent, rgba(134, 231, 239, 0.25), rgba(134, 231, 239, 1), rgba(201, 164, 94, 0.72), transparent),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.75), transparent);
  box-shadow:
    0 0 14px rgba(134, 231, 239, 0.9),
    0 0 42px rgba(57, 199, 216, 0.62),
    0 0 72px rgba(201, 164, 94, 0.22);
  transform-origin: left center;
  animation: beamCharge 2.6s ease-in-out infinite;
}

.hero-energy-beam::before,
.hero-energy-beam::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 22px rgba(134, 231, 239, 1), 0 0 54px rgba(57, 199, 216, 0.65);
  transform: translateY(-50%);
}

.hero-energy-beam::before {
  left: 18%;
  animation: nodeBlink 1.4s ease-in-out infinite;
}

.hero-energy-beam::after {
  right: 21%;
  animation: nodeBlink 1.4s ease-in-out infinite 0.55s;
}

.hero-circuit-grid {
  inset: 0;
  z-index: 1;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(134, 231, 239, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 231, 239, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 78% 42%, rgba(134, 231, 239, 0.48) 0 2px, transparent 3px),
    radial-gradient(circle at 64% 68%, rgba(201, 164, 94, 0.42) 0 2px, transparent 3px);
  background-size: 92px 92px, 92px 92px, 220px 180px, 260px 210px;
  mask-image: linear-gradient(90deg, transparent 0%, black 45%, black 100%);
  animation: gridPulse 7s ease-in-out infinite;
}

.hero-orbit {
  z-index: 2;
  border: 1px solid rgba(134, 231, 239, 0.38);
  border-radius: 50%;
  box-shadow:
    0 0 26px rgba(57, 199, 216, 0.22),
    inset 0 0 34px rgba(57, 199, 216, 0.1);
  pointer-events: none;
}

.hero-orbit::before,
.hero-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 18px rgba(134, 231, 239, 0.96);
}

.hero-orbit::before {
  top: 18%;
  right: 16%;
}

.hero-orbit::after {
  left: 20%;
  bottom: 14%;
}

.hero-orbit-one {
  width: 320px;
  height: 320px;
  right: 11%;
  top: 22%;
  animation: orbitFloat 9s ease-in-out infinite;
  translate: calc(var(--hero-shift-x, 0) * 0.55px) calc(var(--hero-shift-y, 0) * 0.55px);
}

.hero-orbit-two {
  width: 180px;
  height: 180px;
  right: 27%;
  bottom: 18%;
  border-color: rgba(201, 164, 94, 0.34);
  animation: orbitFloat 7s ease-in-out infinite reverse;
  translate: calc(var(--hero-shift-x, 0) * -0.45px) calc(var(--hero-shift-y, 0) * -0.45px);
}

.hero-hud {
  z-index: 2;
  width: 168px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, rgba(7, 17, 28, 0.78), rgba(11, 35, 48, 0.58));
  border: 1px solid rgba(134, 231, 239, 0.42);
  border-radius: 6px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28), 0 0 22px rgba(57, 199, 216, 0.16);
  backdrop-filter: blur(10px);
  pointer-events: none;
  animation: hudPulse 3.8s ease-in-out infinite;
  translate: calc(var(--hero-shift-x, 0) * 0.35px) calc(var(--hero-shift-y, 0) * 0.35px);
}

.hero-hud span,
.hero-hud strong {
  display: block;
}

.hero-hud span {
  color: var(--cyan-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-hud strong {
  margin-top: 6px;
  font-size: 22px;
}

.hero-hud-primary {
  right: 15%;
  top: 28%;
}

.hero-hud-secondary {
  right: 36%;
  bottom: 23%;
  animation-delay: 1.2s;
}

.hero-shade {
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(6, 12, 18, 0.95) 0%, rgba(6, 12, 18, 0.7) 38%, rgba(6, 12, 18, 0.04) 74%),
    linear-gradient(0deg, rgba(6, 12, 18, 0.62), rgba(6, 12, 18, 0.02));
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 76px;
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.07) translate3d(1.4%, -1%, 0);
  }
}

@keyframes scanSweep {
  0%,
  22% {
    transform: translateX(-120%);
  }

  58%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes gridPulse {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0);
  }

  50% {
    opacity: 0.42;
    transform: translate3d(10px, -8px, 0);
  }
}

@keyframes beamCharge {
  0% {
    transform: scaleX(0.2) translateX(-10%);
    filter: brightness(0.85);
  }

  45% {
    transform: scaleX(1) translateX(0);
    filter: brightness(1.65);
  }

  100% {
    transform: scaleX(0.34) translateX(42%);
    filter: brightness(0.95);
  }
}

@keyframes nodeBlink {
  0%,
  100% {
    opacity: 0.35;
    transform: translateY(-50%) scale(0.72);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.18);
  }
}

@keyframes sectionFloat {
  0%,
  100% {
    opacity: 0.32;
    transform: translate3d(calc(var(--section-shift-x) * 0.9px), calc(var(--section-shift-y) * 0.7px), 0) scale(1);
  }

  50% {
    opacity: 0.58;
    transform: translate3d(calc(var(--section-shift-x) * 0.9px - 18px), calc(var(--section-shift-y) * 0.7px + 10px), 0) scale(1.05);
  }
}

@keyframes sectionLine {
  0%,
  100% {
    transform: translateX(-12%) scaleX(0.35);
    opacity: 0.16;
  }

  50% {
    transform: translateX(8%) scaleX(1);
    opacity: 0.7;
  }
}

@keyframes matrixDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 148px 74px, 74px 148px;
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
    opacity: 0.32;
  }

  50% {
    transform: translate3d(16px, -12px, 0) rotate(2deg);
    opacity: 0.72;
  }
}

@keyframes streamFlow {
  0% {
    transform: scaleX(0.16) translateX(-18%);
    opacity: 0.2;
  }

  48% {
    transform: scaleX(1) translateX(0);
    opacity: 0.9;
  }

  100% {
    transform: scaleX(0.22) translateX(52%);
    opacity: 0.24;
  }
}

@keyframes schematicPulse {
  0%,
  100% {
    opacity: 0.24;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.58;
    filter: brightness(1.4);
  }
}

@keyframes verticalScan {
  0%,
  100% {
    transform: translateX(-120px);
    opacity: 0;
  }

  45% {
    opacity: 0.9;
  }

  70% {
    transform: translateX(180px);
    opacity: 0.3;
  }
}

@keyframes pulseNode {
  0% {
    box-shadow: 0 0 0 0 rgba(134, 231, 239, 0.52);
    opacity: 0.78;
    transform: scale(0.9);
  }

  100% {
    box-shadow: 0 0 0 46px rgba(134, 231, 239, 0);
    opacity: 0.08;
    transform: scale(1.12);
  }
}

@keyframes networkGlow {
  0%,
  100% {
    opacity: 0.22;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.46;
    filter: brightness(1.35);
  }
}

@keyframes processRun {
  0% {
    transform: translateX(0) scale(0.82);
    opacity: 0.28;
  }

  18%,
  70% {
    opacity: 1;
  }

  100% {
    transform: translateX(78vw) scale(1.12);
    opacity: 0.12;
  }
}

@keyframes mapSweep {
  0%,
  100% {
    opacity: 0.18;
    filter: brightness(0.9);
  }

  50% {
    opacity: 0.36;
    filter: brightness(1.32);
  }
}

@keyframes signalWave {
  0% {
    transform: scale(0.22);
    opacity: 0.66;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
    opacity: 0.42;
  }

  50% {
    transform: translate3d(-18px, 12px, 0) rotate(14deg) scale(1.04);
    opacity: 0.86;
  }
}

@keyframes hudPulse {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 0.68;
  }

  50% {
    transform: translate3d(0, -10px, 0);
    opacity: 1;
  }
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 74px);
  line-height: 1.08;
  font-weight: 800;
}

.hero-copy {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: -120%;
  opacity: 0;
  background: radial-gradient(circle at var(--button-x, 50%) var(--button-y, 50%), rgba(255, 255, 255, 0.72), transparent 28%);
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.button:hover::after {
  opacity: 0.42;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #061018;
  background: linear-gradient(135deg, var(--cyan-2), #f9ffff);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 850px;
  margin: 62px 0 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-metrics div {
  padding: 20px;
  background: rgba(7, 15, 23, 0.74);
}

.hero-metrics dt {
  font-size: 24px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.section,
.intro-band {
  padding: clamp(72px, 9vw, 118px) 0;
}

.interactive-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  --section-x: 50%;
  --section-y: 50%;
  --section-shift-x: 0;
  --section-shift-y: 0;
  --section-glow: 0.42;
}

.interactive-section .section-inner {
  position: relative;
  z-index: 1;
}

.section-dynamics {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.section-dynamics::before {
  content: "";
  position: absolute;
  left: var(--section-x);
  top: var(--section-y);
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: var(--section-glow);
  background: radial-gradient(circle, rgba(57, 199, 216, 0.18), rgba(57, 199, 216, 0.08) 38%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.22s ease;
  mix-blend-mode: screen;
}

.dyn-line,
.dyn-stream,
.dyn-scan,
.dyn-track,
.dyn-runner,
.dyn-wave,
.dyn-schematic,
.dyn-network,
.dyn-map {
  position: absolute;
  pointer-events: none;
}

.motion-card {
  transform: translate3d(calc(var(--card-shift-x, 0) * 1px), calc(var(--card-shift-y, 0) * 1px), 0);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.motion-card:hover {
  border-color: rgba(57, 199, 216, 0.36);
  box-shadow: 0 18px 48px rgba(12, 30, 44, 0.14);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-band {
  background: var(--white);
}

.effect-intro {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(245, 250, 252, 0.9)),
    var(--white);
}

.effect-intro .dyn-orb {
  position: absolute;
  right: 9%;
  top: 18%;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(57, 199, 216, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 38px rgba(57, 199, 216, 0.08);
  transform: translate3d(calc(var(--section-shift-x) * 0.9px), calc(var(--section-shift-y) * 0.7px), 0);
  animation: sectionFloat 8s ease-in-out infinite;
}

.effect-intro .dyn-line {
  width: 360px;
  height: 1px;
  right: 8%;
  background: linear-gradient(90deg, transparent, rgba(57, 199, 216, 0.34), transparent);
  animation: sectionLine 4.8s ease-in-out infinite;
}

.effect-intro .dyn-line:nth-child(2) {
  top: 42%;
}

.effect-intro .dyn-line:nth-child(3) {
  top: 62%;
  animation-delay: 1.6s;
}

.effect-supply {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.94), rgba(238, 243, 247, 0.94)),
    #eef3f7;
}

.effect-supply .section-dynamics {
  background-image:
    linear-gradient(rgba(57, 199, 216, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 199, 216, 0.08) 1px, transparent 1px);
  background-size: 74px 74px;
  animation: matrixDrift 16s linear infinite;
}

.effect-supply .dyn-chip {
  position: absolute;
  width: 96px;
  height: 64px;
  border: 1px solid rgba(57, 199, 216, 0.25);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 12px, rgba(57, 199, 216, 0.12) 13px, transparent 14px),
    rgba(255, 255, 255, 0.45);
  box-shadow: 0 12px 34px rgba(30, 50, 70, 0.08);
  animation: chipFloat 7s ease-in-out infinite;
}

.effect-supply .dyn-chip:nth-child(1) {
  left: 8%;
  top: 22%;
}

.effect-supply .dyn-chip:nth-child(2) {
  right: 10%;
  top: 28%;
  animation-delay: 1.2s;
}

.effect-supply .dyn-chip:nth-child(3) {
  right: 22%;
  bottom: 14%;
  animation-delay: 2.1s;
}

.effect-supply .dyn-stream {
  left: 11%;
  right: 11%;
  top: 54%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 199, 216, 0.7), rgba(201, 164, 94, 0.45), transparent);
  box-shadow: 0 0 18px rgba(57, 199, 216, 0.26);
  transform-origin: left center;
  animation: streamFlow 3.2s ease-in-out infinite;
}

.intro-grid,
.split-layout,
.about-grid,
.contact-grid,
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--ink);
}

p {
  line-height: 1.85;
}

.intro-grid p,
.section-heading p,
.about-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 16px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
  border: 1px solid #e4ebf1;
  border-radius: var(--radius);
  box-shadow: 0 10px 34px rgba(13, 24, 36, 0.06);
}

.feature-card span,
.process-list span {
  color: var(--gold);
  font-weight: 800;
}

.feature-card h3 {
  margin-top: 36px;
  font-size: 22px;
}

.feature-card p {
  color: var(--muted);
  font-size: 15px;
}

.dark-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(57, 199, 216, 0.08), transparent 36%),
    var(--ink);
}

.effect-solution .section-dynamics {
  opacity: 0.95;
  background:
    radial-gradient(circle at var(--section-x) var(--section-y), rgba(57, 199, 216, 0.2), transparent 30%),
    linear-gradient(135deg, rgba(134, 231, 239, 0.08), transparent 42%);
}

.effect-solution .dyn-schematic {
  inset: 12% 4% 12% 40%;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(134, 231, 239, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 231, 239, 0.18) 1px, transparent 1px),
    radial-gradient(circle, rgba(134, 231, 239, 0.58) 0 2px, transparent 3px);
  background-size: 62px 62px, 62px 62px, 124px 124px;
  transform: translate3d(calc(var(--section-shift-x) * 0.8px), calc(var(--section-shift-y) * 0.8px), 0);
  animation: schematicPulse 6.4s ease-in-out infinite;
}

.effect-solution .dyn-scan {
  top: 18%;
  bottom: 18%;
  width: 2px;
  left: 62%;
  background: linear-gradient(180deg, transparent, rgba(134, 231, 239, 0.92), transparent);
  box-shadow: 0 0 26px rgba(134, 231, 239, 0.6);
  animation: verticalScan 4.4s ease-in-out infinite;
}

.effect-solution .dyn-pulse-node {
  position: absolute;
  right: 18%;
  top: 32%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 0 0 rgba(134, 231, 239, 0.62);
  animation: pulseNode 2.2s ease-out infinite;
}

.effect-applications {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(241, 246, 249, 0.95)),
    #f8fafc;
}

.effect-applications .dyn-network {
  inset: 10% 8%;
  opacity: 0.34;
  background:
    linear-gradient(35deg, transparent 0 18%, rgba(57, 199, 216, 0.22) 18.2%, transparent 18.7% 100%),
    linear-gradient(145deg, transparent 0 30%, rgba(201, 164, 94, 0.22) 30.2%, transparent 30.8% 100%),
    linear-gradient(90deg, transparent 0 55%, rgba(57, 199, 216, 0.18) 55.2%, transparent 55.8% 100%);
  transform: translate3d(calc(var(--section-shift-x) * 0.7px), calc(var(--section-shift-y) * 0.7px), 0);
  animation: networkGlow 7s ease-in-out infinite;
}

.effect-applications .dyn-node {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(57, 199, 216, 0.72);
  box-shadow: 0 0 24px rgba(57, 199, 216, 0.42);
  animation: pulseNode 2.8s ease-out infinite;
}

.effect-applications .dyn-node:nth-child(2) {
  left: 18%;
  top: 38%;
}

.effect-applications .dyn-node:nth-child(3) {
  right: 24%;
  top: 24%;
  animation-delay: 0.9s;
}

.effect-applications .dyn-node:nth-child(4) {
  right: 14%;
  bottom: 22%;
  animation-delay: 1.7s;
}

.effect-process .section-dynamics {
  background:
    linear-gradient(90deg, rgba(57, 199, 216, 0.04), transparent 42%),
    var(--white);
}

.effect-process .dyn-track {
  left: 7%;
  right: 7%;
  bottom: 28%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(57, 199, 216, 0.4), rgba(201, 164, 94, 0.35), transparent);
}

.effect-process .dyn-runner {
  left: 7%;
  bottom: calc(28% - 5px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--cyan-2);
  box-shadow: 0 0 20px rgba(134, 231, 239, 0.8);
  animation: processRun 5.2s ease-in-out infinite;
}

.effect-about .section-dynamics {
  background:
    radial-gradient(circle at 74% 42%, rgba(57, 199, 216, 0.16), transparent 28%),
    radial-gradient(circle at 22% 74%, rgba(201, 164, 94, 0.12), transparent 26%);
}

.effect-about .dyn-map {
  right: 8%;
  top: 18%;
  width: 380px;
  height: 280px;
  opacity: 0.28;
  border: 1px solid rgba(57, 199, 216, 0.28);
  background-image:
    linear-gradient(rgba(57, 199, 216, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 199, 216, 0.18) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: perspective(720px) rotateX(58deg) rotateZ(-12deg) translate3d(calc(var(--section-shift-x) * 0.9px), calc(var(--section-shift-y) * 0.9px), 0);
  animation: mapSweep 6s ease-in-out infinite;
}

.effect-about .dyn-coordinate {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--cyan-2);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(57, 199, 216, 0.4);
  animation: pulseNode 2.4s ease-out infinite;
}

.effect-about .dyn-coordinate:nth-child(2) {
  right: 24%;
  top: 42%;
}

.effect-about .dyn-coordinate:nth-child(3) {
  right: 34%;
  top: 56%;
  animation-delay: 1.1s;
}

.effect-contact .section-dynamics {
  background:
    radial-gradient(circle at var(--section-x) var(--section-y), rgba(57, 199, 216, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(201, 164, 94, 0.08), transparent 40%);
}

.effect-contact .dyn-signal {
  position: absolute;
  left: 18%;
  top: 46%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(134, 231, 239, 0.28);
  border-radius: 50%;
  animation: signalWave 3.4s ease-out infinite;
}

.effect-contact .dyn-signal:nth-child(2) {
  animation-delay: 1.2s;
}

.effect-contact .dyn-wave {
  right: 8%;
  top: 18%;
  width: 360px;
  height: 220px;
  opacity: 0.34;
  background:
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(134, 231, 239, 0.18) 19px 20px),
    linear-gradient(135deg, transparent, rgba(57, 199, 216, 0.14), transparent);
  clip-path: polygon(0 30%, 18% 30%, 24% 8%, 35% 68%, 45% 42%, 100% 42%, 100% 58%, 51% 58%, 43% 86%, 31% 26%, 26% 48%, 0 48%);
  transform: translate3d(calc(var(--section-shift-x) * -0.7px), calc(var(--section-shift-y) * -0.7px), 0);
  animation: networkGlow 4.8s ease-in-out infinite;
}

.dark-section h2,
.dark-section h3 {
  color: var(--white);
}

.dark-section .section-heading p {
  color: rgba(255, 255, 255, 0.66);
}

.solution-panel {
  padding: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solution-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.solution-row:last-child {
  border-bottom: 0;
}

.solution-row strong {
  color: var(--cyan-2);
}

.solution-row span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.application-grid article {
  min-height: 160px;
  padding: 24px;
  background: #f2f6f9;
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
}

.application-card {
  position: relative;
  min-height: 170px;
  padding: 24px;
  background: rgba(242, 246, 249, 0.86);
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.application-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(57, 199, 216, 0.18), transparent 68%);
}

.application-card:hover {
  border-color: rgba(57, 199, 216, 0.52);
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(17, 38, 54, 0.12);
}

.application-card h3 {
  position: relative;
  z-index: 1;
}

.application-card p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 14px;
}

.application-card span {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
}

.application-grid p {
  color: var(--muted);
  font-size: 14px;
}

.app-page-main {
  background: #f8fafc;
}

.app-hero-section {
  min-height: clamp(480px, 56vh, 600px);
  padding: clamp(52px, 6vw, 76px) 0;
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(248, 252, 255, 0.98), rgba(233, 246, 250, 0.94)),
    #eef3f7;
}

.app-hero-grid,
.app-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.app-hero-grid h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 800;
}

.app-hero-grid p,
.app-muted {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.app-side-panel {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(57, 199, 216, 0.1), transparent 42%),
    var(--panel);
  border: 1px solid rgba(134, 231, 239, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.app-side-panel strong {
  display: block;
  color: var(--cyan-2);
  font-size: 18px;
}

.app-side-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.app-visual-section {
  overflow: hidden;
  padding: clamp(40px, 5vw, 64px) 0;
  background: #f8fafc;
}

.app-visual-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  height: clamp(360px, 32vw, 440px);
}

.app-photo-card {
  position: relative;
  grid-area: 1 / 1;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  height: clamp(360px, 32vw, 440px);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--panel);
  box-shadow: var(--shadow);
  transform: none;
}

.app-photo-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 11, 18, 0.72) 0%, rgba(5, 11, 18, 0.36) 28%, rgba(5, 11, 18, 0.28) 50%, rgba(5, 11, 18, 0.42) 72%, rgba(5, 11, 18, 0.78) 100%),
    linear-gradient(180deg, rgba(5, 11, 18, 0.24), rgba(5, 11, 18, 0.58)),
    radial-gradient(circle at var(--section-x, 58%) var(--section-y, 48%), rgba(134, 231, 239, 0.16), transparent 34%);
}

.app-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.08) translate3d(
    calc(var(--section-shift-x, 0) * -0.7px),
    calc(var(--section-shift-y, 0) * -0.7px),
    0
  );
}

.app-case-card {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: center;
  width: min(100% - 56px, 900px);
  margin: 0;
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.2vw, 38px);
  color: var(--white);
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.74), rgba(9, 29, 41, 0.58));
  border: 1px solid rgba(134, 231, 239, 0.26);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.app-case-card h2 {
  color: var(--white);
  margin-bottom: 18px;
}

.app-case-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.9;
}

.app-component-section {
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0.92), rgba(248, 250, 252, 0.94)),
    #eef3f7;
}

.component-recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.component-card {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #dbe7ef;
  border-radius: var(--radius);
}

.component-card span {
  color: var(--gold);
  font-weight: 800;
}

.component-card p {
  margin: 18px 0 0;
  color: var(--text);
  line-height: 1.75;
}

.app-detail-section h2 {
  margin-bottom: 22px;
}

.app-check-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-check-list li {
  position: relative;
  padding: 18px 20px 18px 48px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
  line-height: 1.7;
}

.app-check-list li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 25px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(57, 199, 216, 0.45);
}

.app-card-grid,
.app-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.app-detail-card {
  min-height: 132px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
}

.app-detail-card span,
.app-process-list span {
  color: var(--gold);
  font-weight: 800;
}

.app-detail-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.dark-section .app-detail-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.app-process-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.app-process-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.app-process-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.supply-page-main {
  background: #f8fafc;
}

.supply-hero-section {
  position: relative;
  min-height: clamp(560px, 66vh, 720px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(248, 252, 255, 0.98), rgba(232, 246, 250, 0.94)),
    #eef3f7;
}

.supply-hero-fullbleed {
  color: var(--white);
  min-height: clamp(560px, 66vh, 720px);
  background: var(--ink);
}

.supply-hero-bg,
.supply-hero-bg img {
  position: absolute;
  inset: 0;
}

.supply-hero-bg {
  z-index: 0;
  overflow: hidden;
}

.supply-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.supply-hero-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(6, 12, 18, 0.9) 0%, rgba(6, 12, 18, 0.72) 34%, rgba(6, 12, 18, 0.18) 70%, rgba(6, 12, 18, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 12, 18, 0.68), rgba(6, 12, 18, 0.04));
}

.supply-hero-grid,
.supply-bom-grid,
.supply-quality-grid,
.supply-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.supply-hero-full-grid {
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 0.38fr);
  position: relative;
  z-index: 1;
}

.supply-hero-copy h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(44px, 5.8vw, 78px);
  line-height: 1.08;
  font-weight: 800;
}

.supply-hero-fullbleed .supply-hero-copy h1 {
  max-width: 780px;
  color: var(--white);
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.42);
}

.supply-hero-copy p,
.supply-cta-grid p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.supply-hero-fullbleed .supply-hero-copy p {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.76);
}

.supply-hero-fullbleed .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.06);
}

.supply-hero-photo {
  margin: 0;
  min-height: 520px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid rgba(57, 199, 216, 0.24);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.supply-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.supply-strength-section,
.supply-category-section,
.supply-quality-section {
  background: #f8fafc;
}

.supply-strength-grid,
.supply-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.supply-category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.supply-category-grid .component-card {
  min-height: 210px;
}

.supply-category-grid .component-card h3 {
  margin-top: 24px;
}

.supply-bom-section h2,
.supply-bom-section .app-muted {
  color: var(--white);
}

.supply-quality-card {
  padding: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(17, 38, 54, 0.1);
}

.supply-quality-card p {
  color: var(--muted);
  line-height: 1.9;
}

.supply-quality-list {
  display: grid;
  gap: 14px;
}

.supply-quality-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dfe8ef;
  border-radius: var(--radius);
}

.supply-quality-list strong {
  color: var(--cyan);
}

.supply-quality-list span {
  color: var(--muted);
  line-height: 1.7;
}

.supply-cta-section {
  color: var(--white);
  background: var(--ink);
}

.supply-cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
}

.supply-cta-grid h2 {
  color: var(--white);
}

.supply-cta-grid p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.68);
}

.solution-page-main {
  background: #f8fafc;
}

.solution-hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #08111a;
}

.solution-hero-section::before,
.solution-hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.solution-hero-section::before {
  background:
    linear-gradient(90deg, rgba(6, 13, 20, 0.94) 0%, rgba(6, 13, 20, 0.78) 34%, rgba(6, 13, 20, 0.22) 72%, rgba(6, 13, 20, 0.78) 100%),
    radial-gradient(circle at var(--section-x, 62%) var(--section-y, 40%), rgba(93, 222, 232, calc(var(--section-glow, 0.4) * 0.42)), transparent 34%);
}

.solution-hero-section::after {
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(134, 231, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 231, 239, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translate3d(calc(var(--section-shift-x, 0) * -0.7px), calc(var(--section-shift-y, 0) * -0.7px), 0);
}

.solution-hero-bg,
.solution-hero-bg img {
  position: absolute;
  inset: 0;
}

.solution-hero-bg {
  z-index: 0;
}

.solution-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate3d(calc(var(--section-shift-x, 0) * -1px), calc(var(--section-shift-y, 0) * -1px), 0);
  filter: saturate(1.04) contrast(1.08);
}

.solution-hero-grid,
.solution-modules-grid,
.solution-delivery-grid,
.solution-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.78fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.solution-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.4vw, 74px);
  line-height: 1.1;
  font-weight: 800;
  text-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
}

.solution-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.solution-side-panel {
  padding: clamp(26px, 3vw, 34px);
  color: var(--white);
  background: linear-gradient(135deg, rgba(7, 18, 28, 0.8), rgba(9, 31, 43, 0.64));
  border: 1px solid rgba(134, 231, 239, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.solution-side-panel span,
.solution-side-panel strong {
  display: block;
}

.solution-side-panel span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-side-panel strong {
  margin-top: 10px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.solution-side-panel p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.solution-side-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.solution-side-metrics div {
  min-height: 88px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.solution-side-metrics b,
.solution-side-metrics span {
  display: block;
}

.solution-side-metrics b {
  color: var(--white);
  font-size: 22px;
}

.solution-side-metrics div span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  text-transform: none;
}

.solution-capability-section,
.solution-band-section,
.solution-scenario-section,
.solution-modules-section {
  background: #f8fafc;
}

.solution-band-list,
.solution-scenario-list {
  display: grid;
  gap: 22px;
}

.solution-band-card,
.solution-scenario-card {
  position: relative;
  width: 100vw;
  overflow: hidden;
  height: clamp(220px, 21vw, 290px);
  min-height: 0;
  margin-left: calc(50% - 50vw);
  background: #071019;
  box-shadow: 0 18px 60px rgba(13, 27, 39, 0.08);
}

.solution-band-card::after,
.solution-scenario-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.84) 0%, rgba(4, 10, 17, 0.34) 24%, rgba(4, 10, 17, 0.22) 50%, rgba(4, 10, 17, 0.4) 72%, rgba(4, 10, 17, 0.84) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.12), rgba(4, 10, 17, 0.68));
}

.solution-band-card img,
.solution-scenario-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.solution-band-copy,
.solution-scenario-copy {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: min(calc(100% - 56px), 900px);
  padding: 24px 30px;
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.74), rgba(10, 31, 44, 0.56));
  border: 1px solid rgba(134, 231, 239, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.solution-band-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.14;
}

.solution-band-copy p:not(.eyebrow),
.solution-scenario-copy span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.8;
}

.solution-scenario-copy strong {
  display: block;
  color: var(--white);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.16;
}

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

.solution-delivery-grid {
  align-items: start;
}

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

.solution-cta-section {
  color: var(--white);
}

.solution-cta-grid h2 {
  color: var(--white);
}

.solution-cta-grid p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.72);
}

.process-section {
  background: var(--white);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  background: #dce6ee;
  border: 1px solid #dce6ee;
}

.process-list li {
  min-height: 230px;
  padding: 24px;
  background: var(--white);
}

.process-list strong {
  display: block;
  margin-top: 28px;
  color: var(--ink);
  font-size: 20px;
}

.process-list p {
  color: var(--muted);
  font-size: 14px;
}

.process-more-link {
  width: fit-content;
  margin-top: 20px;
  color: var(--ink);
  border-color: rgba(11, 17, 24, 0.18);
  background: rgba(255, 255, 255, 0.58);
}

.process-page-main {
  background: #f6f9fb;
}

.process-hero-section {
  position: relative;
  min-height: clamp(460px, 58vh, 620px);
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #08111a;
}

.process-hero-section::before,
.process-hero-section::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.process-hero-section::before {
  background:
    linear-gradient(92deg, rgba(5, 11, 18, 0.96) 0%, rgba(5, 11, 18, 0.78) 42%, rgba(5, 11, 18, 0.28) 76%, rgba(5, 11, 18, 0.72) 100%),
    radial-gradient(circle at var(--section-x, 66%) var(--section-y, 42%), rgba(134, 231, 239, calc(var(--section-glow, 0.36) * 0.38)), transparent 32%);
}

.process-hero-section::after {
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(134, 231, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 231, 239, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: translate3d(
    calc(var(--section-shift-x, 0) * -0.8px),
    calc(var(--section-shift-y, 0) * -0.8px),
    0
  );
}

.process-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.process-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate3d(
    calc(var(--section-shift-x, 0) * -1px),
    calc(var(--section-shift-y, 0) * -1px),
    0
  );
}

.process-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: end;
}

.process-hero-copy h1 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 1.06;
  font-weight: 800;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.process-hero-copy p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
  line-height: 1.9;
}

.process-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.process-hero-actions .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

.process-hero-panel {
  padding: 28px;
  background: rgba(8, 17, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.process-hero-panel span {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.process-hero-panel strong {
  display: block;
  margin-top: 12px;
  color: var(--white);
  font-size: 28px;
  line-height: 1.35;
}

.process-detail-section {
  overflow: hidden;
  background: #f6f9fb;
}

.process-overview-section {
  background:
    linear-gradient(180deg, rgba(238, 243, 247, 0.9), rgba(248, 250, 252, 0.96)),
    #eef3f7;
}

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

.process-overview-card {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #dbe5ed;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(13, 27, 39, 0.08);
}

.process-overview-card span {
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.process-overview-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.2;
}

.process-overview-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.process-step-list {
  display: grid;
  gap: clamp(22px, 4vw, 40px);
}

.process-step-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.process-step-card-reverse {
  grid-template-columns: 1fr;
}

.process-step-card-reverse figure {
  order: 0;
}

.process-step-card figure {
  position: relative;
  grid-area: 1 / 1;
  width: 100vw;
  overflow: hidden;
  height: clamp(360px, 31vw, 430px);
  min-height: 0;
  margin: 0 0 0 calc(50% - 50vw);
  background: #071019;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  transform: none;
}

.process-step-card figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.76) 0%, rgba(4, 10, 17, 0.38) 26%, rgba(4, 10, 17, 0.22) 50%, rgba(4, 10, 17, 0.4) 72%, rgba(4, 10, 17, 0.8) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.22), rgba(4, 10, 17, 0.64)),
    radial-gradient(circle at var(--section-x, 58%) var(--section-y, 48%), rgba(134, 231, 239, 0.16), transparent 32%);
}

.process-step-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08) translate3d(
    calc(var(--section-shift-x, 0) * -0.9px),
    calc(var(--section-shift-y, 0) * -0.9px),
    0
  );
}

.process-step-copy {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  width: min(100% - 56px, 900px);
  margin: 0;
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.4vw, 38px);
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.74), rgba(9, 28, 40, 0.58));
  border: 1px solid rgba(134, 231, 239, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.process-step-copy > span {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-step-copy h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.1;
}

.process-step-copy p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.9;
}

.process-step-copy ul {
  display: grid;
  gap: 10px;
  width: min(100%, 720px);
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.process-step-copy li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.82);
  text-align: left;
  line-height: 1.7;
}

.process-step-copy li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(57, 199, 216, 0.72);
  content: "";
}

.process-lab-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.process-lab-section h2 {
  color: var(--white);
}

.process-lab-section .section-heading p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.process-lab-grid {
  display: grid;
  gap: 22px;
}

.process-lab-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.process-lab-card figure {
  position: relative;
  grid-area: 1 / 1;
  width: 100vw;
  height: clamp(360px, 31vw, 430px);
  margin: 0 0 0 calc(50% - 50vw);
  overflow: hidden;
  background: #071019;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
}

.process-lab-card figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.8) 0%, rgba(4, 10, 17, 0.26) 34%, rgba(4, 10, 17, 0.24) 66%, rgba(4, 10, 17, 0.84) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.18), rgba(4, 10, 17, 0.66)),
    radial-gradient(circle at var(--section-x, 58%) var(--section-y, 48%), rgba(134, 231, 239, 0.14), transparent 30%);
}

.process-lab-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04) translate3d(
    calc(var(--section-shift-x, 0) * -0.8px),
    calc(var(--section-shift-y, 0) * -0.8px),
    0
  );
}

.process-lab-copy {
  grid-area: 1 / 1;
  justify-self: center;
  align-self: center;
  width: min(100% - 56px, 860px);
  padding: clamp(24px, 3.2vw, 38px);
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.76), rgba(10, 31, 44, 0.56));
  border: 1px solid rgba(134, 231, 239, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.process-lab-copy span {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-lab-copy h3 {
  margin: 14px 0 0;
  color: var(--white);
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
}

.process-lab-copy p {
  max-width: 700px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.9;
}

.process-cta-section {
  color: var(--white);
  background: var(--ink);
}

.process-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.process-cta-grid h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.16;
}

.process-cta-grid p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.about-section {
  background: #eef3f7;
}

.subpage-main {
  padding-top: 76px;
  background: #eef3f7;
}

.about-page-section {
  min-height: clamp(520px, 66vh, 760px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(248, 252, 255, 0.98) 0%, rgba(238, 247, 250, 0.94) 56%, rgba(218, 242, 247, 0.9) 100%),
    #eef3f7;
}

.about-hero-rich {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #08111a;
}

.about-hero-rich::before,
.about-hero-rich::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.about-hero-rich::before {
  background:
    linear-gradient(90deg, rgba(6, 13, 20, 0.94) 0%, rgba(6, 13, 20, 0.8) 34%, rgba(6, 13, 20, 0.26) 72%, rgba(6, 13, 20, 0.76) 100%),
    radial-gradient(circle at var(--section-x, 62%) var(--section-y, 44%), rgba(93, 222, 232, calc(var(--section-glow, 0.36) * 0.36)), transparent 34%);
}

.about-hero-rich::after {
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(134, 231, 239, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(134, 231, 239, 0.07) 1px, transparent 1px);
  background-size: 78px 78px;
  transform: translate3d(
    calc(var(--section-shift-x, 0) * -0.7px),
    calc(var(--section-shift-y, 0) * -0.7px),
    0
  );
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05) translate3d(
    calc(var(--section-shift-x, 0) * -1px),
    calc(var(--section-shift-y, 0) * -1px),
    0
  );
  filter: saturate(1.08) contrast(1.05);
}

.about-hero-rich .section-inner,
.about-hero-rich .section-dynamics {
  position: relative;
  z-index: 2;
}

.about-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: center;
}

.about-story h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.12;
  font-weight: 800;
}

.about-hero-rich .about-story h1 {
  color: var(--white);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.about-story p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.about-hero-rich .about-story p {
  color: rgba(255, 255, 255, 0.76);
}

.about-hero-rich .eyebrow {
  color: var(--cyan-2);
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.about-page-actions .button-ghost {
  color: var(--ink);
  border-color: rgba(11, 17, 24, 0.18);
  background: rgba(255, 255, 255, 0.42);
}

.about-hero-rich .about-page-actions .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
}

.about-page-facts {
  min-height: 0;
  display: flex;
  align-items: center;
}

.about-page-facts dl {
  width: 100%;
}

.about-page-facts dd span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.6;
}

.about-location-section {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.98), rgba(238, 243, 247, 0.96)),
    #eef3f7;
}

.about-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.about-location-copy {
  display: grid;
  align-content: center;
  gap: 14px;
}

.about-location-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
}

.about-location-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-location-note {
  max-width: 520px;
}

.about-location-copy .button {
  width: fit-content;
  margin-top: 8px;
}

.about-map-panel {
  overflow: hidden;
  min-height: 420px;
  background: #dce6ee;
  border: 1px solid #d6e2ea;
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(13, 27, 39, 0.08);
}

.about-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.about-detail-section {
  background: #f8fafc;
}

.about-showcase-section,
.about-operations-section {
  overflow: hidden;
  background: #f8fafc;
}

.about-showcase-grid,
.about-operations-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.about-image-panel {
  position: relative;
  grid-area: 1 / 1;
  width: 100vw;
  overflow: hidden;
  height: clamp(360px, 31vw, 430px);
  min-height: 0;
  margin: 0 0 0 calc(50% - 50vw);
  background: #071019;
  border: 0;
  border-radius: 0;
  box-shadow: var(--shadow);
  transform: none;
}

.about-image-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.78) 0%, rgba(4, 10, 17, 0.34) 28%, rgba(4, 10, 17, 0.22) 50%, rgba(4, 10, 17, 0.38) 72%, rgba(4, 10, 17, 0.8) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.18), rgba(4, 10, 17, 0.66)),
    radial-gradient(circle at var(--section-x, 58%) var(--section-y, 48%), rgba(134, 231, 239, 0.16), transparent 30%);
}

.about-image-panel img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  transform: scale(1.04) translate3d(
    calc(var(--section-shift-x, 0) * -0.9px),
    calc(var(--section-shift-y, 0) * -0.9px),
    0
  );
}

.about-showcase-copy,
.about-operations-copy {
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  width: min(100% - 56px, 900px);
  margin: 0;
  position: relative;
  z-index: 2;
  padding: clamp(24px, 3.4vw, 38px);
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.74), rgba(9, 29, 41, 0.58));
  border: 1px solid rgba(134, 231, 239, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.about-showcase-copy h2,
.about-operations-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 3.9vw, 48px);
  line-height: 1.14;
}

.about-showcase-copy p,
.about-operations-copy p,
.about-domain-panel p,
.about-product-panel p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.about-showcase-copy > p:not(.eyebrow),
.about-operations-copy > p:not(.eyebrow) {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.78);
}

.about-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-metric-card {
  min-height: 124px;
  padding: 22px;
  background: var(--white);
  border: 1px solid #dce6ee;
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(13, 27, 39, 0.08);
}

.about-metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 36px;
  line-height: 1;
}

.about-metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.about-scope-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.about-domain-panel,
.about-product-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 34px);
  background: var(--white);
  border: 1px solid #dce6ee;
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(13, 27, 39, 0.07);
}

.about-domain-panel::after,
.about-product-panel::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  opacity: 0.34;
  border: 1px solid rgba(57, 199, 216, 0.42);
  border-radius: 50%;
  content: "";
}

.about-domain-panel h3,
.about-product-panel h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.26;
}

.about-domain-tags,
.about-product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-domain-tags span,
.about-product-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: #153342;
  font-size: 13px;
  font-weight: 800;
  background: #eef6f8;
  border: 1px solid #d8e8ed;
  border-radius: 4px;
}

.about-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-product-grid span {
  justify-content: space-between;
  min-height: 48px;
  background: linear-gradient(135deg, #f8fbfc, #edf7f9);
}

.about-business-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-check-list {
  display: grid;
  gap: 12px;
  width: min(100%, 760px);
  margin: 28px auto 0;
  padding: 0;
  list-style: none;
}

.about-check-list li {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
  text-align: left;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
}

.about-check-list strong {
  color: var(--cyan-2);
}

.about-check-list span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.about-values-section {
  color: var(--white);
  background: var(--ink);
}

.about-values-section h2 {
  color: var(--white);
}

.about-values-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: start;
}

.about-value-list {
  display: grid;
  gap: 14px;
}

.about-value-list article {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.about-value-list strong {
  color: var(--cyan-2);
}

.about-value-list span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.about-scenarios-section {
  overflow: hidden;
  background: #edf3f7;
}

.about-scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-scenario-card {
  position: relative;
  width: 100vw;
  overflow: hidden;
  height: clamp(340px, 29vw, 400px);
  min-height: 0;
  margin-left: calc(50% - 50vw);
  background: #071019;
  border: 0;
  border-radius: 0;
  box-shadow: 0 18px 60px rgba(13, 27, 39, 0.08);
}

.about-scenario-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 10, 17, 0.78) 0%, rgba(4, 10, 17, 0.28) 28%, rgba(4, 10, 17, 0.22) 52%, rgba(4, 10, 17, 0.34) 72%, rgba(4, 10, 17, 0.8) 100%),
    linear-gradient(180deg, rgba(4, 10, 17, 0.14), rgba(4, 10, 17, 0.68) 100%);
}

.about-scenario-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.about-scenario-card div {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 8px;
  width: min(calc(100% - 56px), 760px);
  max-width: 760px;
  padding: 24px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(6, 15, 24, 0.72), rgba(10, 31, 44, 0.54));
  border: 1px solid rgba(134, 231, 239, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
}

.about-scenario-card strong {
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
}

.about-scenario-card span {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.about-grid {
  align-items: stretch;
}

.about-facts {
  padding: 28px;
  color: var(--white);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-facts dl {
  margin: 0;
}

.about-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts div:last-child {
  border-bottom: 0;
}

.about-facts dt {
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 800;
}

.about-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(201, 164, 94, 0.12), transparent 38%),
    var(--ink-2);
}

.contact-section h2 {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-details {
  margin-top: 30px;
  padding-top: 8px;
}

.contact-details p {
  margin: 14px 0;
}

.contact-details strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cyan-2);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label,
.contact-form .full {
  grid-column: span 2;
}

.contact-form label:nth-child(1),
.contact-form label:nth-child(2),
.contact-form label:nth-child(3),
.contact-form label:nth-child(4) {
  grid-column: span 1;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(6, 12, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font: inherit;
  outline: 0;
}

select option {
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan-2);
}

.form-note {
  grid-column: span 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.site-footer {
  padding: 26px 0;
  color: rgba(255, 255, 255, 0.62);
  background: #070d13;
}

.footer-grid {
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.footer-grid p {
  margin: 0;
  font-size: 13px;
}

@media (max-width: 1080px) {
  .feature-grid,
  .application-grid,
  .about-business-grid,
  .about-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-step-card,
  .process-step-card-reverse {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(8, 15, 23, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
  }

  .site-header.nav-open .site-nav {
    display: flex;
  }

  .site-nav a,
  .site-nav .nav-cta {
    padding: 13px 12px;
    border-radius: 4px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 54px;
  }

  .hero-circuit-grid {
    opacity: 0.2;
    mask-image: linear-gradient(90deg, transparent 0%, black 24%, black 100%);
  }

  .section-dynamics::before {
    width: 260px;
    height: 260px;
  }

  .effect-intro .dyn-orb,
  .effect-supply .dyn-chip,
  .effect-about .dyn-map,
  .effect-contact .dyn-wave {
    opacity: 0.16;
  }

  .effect-solution .dyn-schematic {
    left: 18%;
  }

  .effect-process .dyn-runner {
    animation-duration: 4s;
  }

  .hero-energy-beam {
    left: 18%;
    bottom: 34%;
    height: 2px;
  }

  .hero-cursor-glow {
    width: 240px;
    height: 240px;
  }

  .hero-orbit-one {
    right: -80px;
    top: 24%;
    width: 230px;
    height: 230px;
  }

  .hero-orbit-two,
  .hero-hud-secondary {
    display: none;
  }

  .hero-hud-primary {
    right: 14px;
    top: 118px;
    width: 132px;
    padding: 10px 12px;
  }

  .hero-hud strong {
    font-size: 17px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    max-width: 520px;
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.14;
  }

  .hero-metrics,
  .intro-grid,
  .split-layout,
  .about-grid,
  .about-page-grid,
  .about-values-grid,
  .app-hero-grid,
  .app-visual-grid,
  .app-two-column,
  .solution-hero-grid,
  .solution-modules-grid,
  .solution-delivery-grid,
  .solution-cta-grid,
  .supply-hero-grid,
  .supply-bom-grid,
  .supply-quality-grid,
  .supply-cta-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-hero-grid,
  .process-cta-grid,
  .about-showcase-grid,
  .about-operations-grid,
  .about-location-grid,
  .about-scope-layout {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-grid {
    justify-items: start;
  }
}


@media (max-width: 620px) {
  .section-inner,
  .hero-content {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-metrics,
  .feature-grid,
  .application-grid,
  .process-list,
  .contact-form,
  .contact-form label:nth-child(1),
  .contact-form label:nth-child(2),
  .contact-form label:nth-child(3),
  .contact-form label:nth-child(4) {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .contact-form label,
  .contact-form .full,
  .form-note {
    grid-column: span 1;
  }

  .feature-card,
  .process-list li {
    min-height: auto;
  }

  .subpage-main {
    padding-top: 68px;
  }

  .process-hero-section {
    min-height: auto;
    padding: 92px 0 44px;
  }

  .process-hero-copy h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .process-hero-panel strong {
    font-size: 22px;
  }

  .process-step-card figure,
  .process-lab-card figure,
  .about-image-panel,
  .about-gallery-stack .about-image-panel {
    min-height: 320px;
  }

  .process-step-copy {
    width: calc(100% - 28px);
    margin: 0;
    padding: 24px;
  }

  .process-lab-copy {
    width: calc(100% - 28px);
    padding: 22px;
  }

  .app-case-card {
    width: calc(100% - 28px);
    margin: 0;
    padding: 22px;
  }

  .process-step-copy h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .process-lab-copy h3 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .process-step-copy li {
    font-size: 14px;
  }

  .about-page-section {
    min-height: auto;
    padding: 84px 0 44px;
  }

  .about-story h1 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .about-page-facts {
    min-height: auto;
  }

  .about-location-copy .button {
    width: 100%;
  }

  .about-business-grid,
  .about-product-grid,
  .about-metric-grid,
  .solution-deliver-grid,
  .about-mini-gallery,
  .about-scenario-grid,
  .process-overview-grid,
  .process-cta-grid,
  .app-card-grid,
  .app-service-grid,
  .component-recommend-grid,
  .supply-strength-grid,
  .supply-category-grid,
  .about-check-list li,
  .supply-quality-list article,
  .about-value-list article {
    grid-template-columns: 1fr;
  }

  .about-scenario-card img {
    height: 220px;
  }

  .about-map-panel,
  .about-map-panel iframe {
    min-height: 320px;
  }

  .app-hero-section {
    min-height: auto;
    padding: 82px 0 42px;
  }

  .app-hero-grid h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .process-lab-card figure {
    height: 340px;
  }

  .solution-band-card,
  .solution-scenario-card {
    height: 240px;
  }

  .solution-band-copy,
  .solution-scenario-copy {
    width: calc(100% - 28px);
    padding: 20px 22px;
  }

  .solution-side-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .app-photo-card,
  .app-photo-card img {
    min-height: 340px;
  }

  .supply-hero-section {
    min-height: auto;
  }

  .supply-hero-fullbleed {
    min-height: auto;
  }

  .supply-hero-copy h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .supply-hero-photo,
  .supply-hero-photo img {
    min-height: 260px;
  }
}
