:root {
  --black: #030303;
  --carbon: #161616;
  --panel: #1f1f1f;
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.72);
  --muted: rgba(255, 255, 255, 0.52);
  --line: rgba(255, 255, 255, 0.12);
  --cyan: #27f0e3;
  --green: #32d296;
  --violet: #7a5cff;
  --paper: #f4f6f8;
  --ink: #111318;
  --light-page: #ffffff;
  --light-surface: #f7f9fb;
  --light-card: #ffffff;
  --light-line: #e5e7eb;
  --light-title: #1a1a1a;
  --light-text: #555966;
  --light-muted: #868b98;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  letter-spacing: 0;
}

body.is-light-home {
  background: var(--light-page);
  color: var(--light-title);
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  min-height: 80px;
  padding: 0 clamp(24px, 4.4vw, 72px);
  background: rgba(24, 24, 24, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  /* 固定头部长期存在，避免持续 backdrop-filter 导致整页重绘。 */
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 190px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  box-shadow: 0 0 28px rgba(39, 240, 227, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: clamp(18px, 2.4vw, 38px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.site-nav-primary {
  display: contents;
}

.nav-home {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 3px;
  border-radius: 99px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-width: 112px;
  padding: 12px 22px !important;
  border-radius: 999px;
  background: var(--white);
  color: #050505;
  text-align: center;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

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

.nav-mode-toggle,
.nav-back {
  border: 0;
  color: inherit;
  font: inherit;
}

.nav-mode-toggle {
  display: none;
}

.nav-mode-panel {
  display: none;
}

.nav-mode-panel[hidden] {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 34%, rgba(39, 240, 227, 0.15), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(122, 92, 255, 0.18), transparent 26%),
    #000;
}

.signal-canvas,
.hero-grid {
  position: absolute;
  inset: 0;
}

.signal-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.22;
}

.hero-grid {
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.68), transparent 92%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.9fr);
  align-items: center;
  gap: clamp(32px, 6vw, 92px);
  width: min(1320px, calc(100% - 80px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 128px 0 64px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 17px;
  font-weight: 900;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(50px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  width: fit-content;
  white-space: nowrap;
}

.hero-line-2 {
  margin-top: 0.06em;
}

.hero-lead {
  max-width: 740px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 700;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 176px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #010604;
  box-shadow: 0 16px 42px rgba(50, 210, 150, 0.28);
}

.btn-secondary {
  border-color: rgba(39, 240, 227, 0.76);
  background: rgba(39, 240, 227, 0.04);
  color: var(--cyan);
}

.btn-theme-toggle {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.header-theme-toggle {
  min-height: 40px;
  min-width: 0;
  padding: 0 16px;
  font-size: 14px;
  white-space: nowrap;
}

.entry-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 1px rgba(39, 240, 227, 0.12), 0 10px 24px rgba(26, 26, 26, 0.04);
  /* 常驻阴影呼吸动画会持续占用合成线程，保留 hover 反馈即可。 */
  animation: none;
}

.entry-cta:hover,
.entry-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(39, 240, 227, 0.24), 0 14px 34px rgba(26, 26, 26, 0.08);
}

.entry-cta:not([aria-expanded="true"]):hover span:last-child,
.entry-cta:not([aria-expanded="true"]):focus-visible span:last-child {
  transform: translateX(4px);
}

.case-entry.entry-cta {
  padding-right: 40px;
}

.case-entry.entry-cta::after {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  color: currentColor;
  content: "→";
  font-size: 16px;
  font-weight: 800;
  transition: transform 0.2s ease;
}

.case-entry.entry-cta:hover::after,
.case-entry.entry-cta:focus-visible::after {
  transform: translateY(-50%) translateX(4px);
}

@keyframes entryCtaBreath {
  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(39, 240, 227, 0.12), 0 10px 24px rgba(26, 26, 26, 0.04);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(39, 240, 227, 0.22),
      0 0 0 8px rgba(39, 240, 227, 0.06),
      0 14px 32px rgba(26, 26, 26, 0.06);
  }
}

.platform-menu {
  max-width: 760px;
  margin-top: 54px;
}

.platform-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 46px;
  gap: 10px;
}

.platform-menu-toggle {
  display: none;
}

.platform-strip span,
.platform-entry {
  display: grid;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.platform-entry:hover,
.platform-entry:focus-visible {
  border-color: rgba(39, 240, 227, 0.74);
  color: var(--cyan);
  outline: none;
  transform: translateY(-1px);
}

.hero-visual {
  position: relative;
  min-height: 590px;
}

.hero-visual img {
  display: block;
  width: min(100%, 760px);
  margin-left: auto;
  filter: none;
  animation: none;
}

@keyframes floatVisual {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 230px;
  padding: 16px 18px;
  border: 1px solid rgba(39, 240, 227, 0.34);
  background: rgba(18, 18, 18, 0.78);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
}

.visual-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.visual-card strong {
  font-size: 17px;
}

.visual-card-top {
  top: 16%;
  right: 2%;
}

.visual-card-bottom {
  left: 8%;
  bottom: 12%;
}

.proof-band {
  --proof-x: 50%;
  --proof-y: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1320px, calc(100% - 80px));
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(135deg, rgba(39, 240, 227, 0.035), transparent 34%),
    #181818;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.24);
}

body.is-light-home .site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--light-line);
  box-shadow: 0 12px 38px rgba(26, 26, 26, 0.06);
}

body.is-light-home .brand-mark {
  background: var(--light-card);
  box-shadow: 0 0 0 1px var(--light-line), 0 12px 30px rgba(26, 26, 26, 0.08);
}

body.is-light-home .brand small,
body.is-light-home .site-nav,
body.is-light-home .site-nav a {
  color: var(--light-text);
}

body.is-light-home .nav-mode-toggle {
  color: var(--light-title);
}

body.is-light-home .nav-cta {
  color: var(--light-title);
}

body.is-light-home .nav-cta::after {
  background: rgba(50, 210, 150, 0.26);
}

body.is-light-home .nav-toggle span {
  background: var(--light-title);
}

body.is-light-home .hero {
  background:
    radial-gradient(circle at 72% 30%, rgba(39, 240, 227, 0.1), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(122, 92, 255, 0.08), transparent 25%),
    var(--light-page);
}

body.is-light-home .signal-canvas {
  opacity: 0.08;
}

body.is-light-home .hero-grid {
  background:
    linear-gradient(rgba(229, 231, 235, 0.75) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.58) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.46), transparent 92%);
}

body.is-light-home .proof-band {
  background:
    linear-gradient(135deg, rgba(39, 240, 227, 0.045), transparent 34%),
    var(--light-card);
}

body.is-light-home .proof-band > div {
  background: linear-gradient(180deg, rgba(247, 249, 251, 0.88), transparent 70%);
}

body.is-light-home .proof-band > div + div {
  border-left-color: var(--light-line);
}

body.is-light-home .proof-band.is-visible > div:hover {
  background-color: var(--light-surface);
  box-shadow: inset 0 0 36px rgba(39, 240, 227, 0.08);
}

body.is-light-home .platform-strip span,
body.is-light-home .platform-entry,
body.is-light-home .btn-theme-toggle {
  border-color: var(--light-line);
  background: var(--light-card);
  color: var(--light-text);
}

body.is-light-home .btn-theme-toggle[aria-pressed="true"] {
  border-color: rgba(50, 210, 150, 0.46);
  color: var(--light-title);
  box-shadow: 0 14px 34px rgba(50, 210, 150, 0.14);
}

body.is-light-home .entry-cta {
  box-shadow: 0 0 0 1px var(--light-line), 0 12px 28px rgba(26, 26, 26, 0.05);
}

body.is-light-home .entry-cta:hover,
body.is-light-home .entry-cta:focus-visible {
  box-shadow: 0 0 0 1px rgba(50, 210, 150, 0.36), 0 16px 34px rgba(26, 26, 26, 0.08);
}

body.is-light-home .btn-secondary {
  background: var(--light-card);
  color: var(--light-title);
  border-color: var(--light-line);
}

body.is-light-home .hero-visual img {
  filter: none;
}

body.is-light-home .visual-card {
  backdrop-filter: none;
}

.proof-band::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  left: -36%;
  width: 34%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
  box-shadow: 0 0 18px rgba(39, 240, 227, 0.72);
  opacity: 0;
  pointer-events: none;
}

.proof-band::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: radial-gradient(
    460px circle at var(--proof-x) var(--proof-y),
    rgba(39, 240, 227, 0.1),
    transparent 58%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.proof-band.is-visible::before {
  /* 扫光改为静态，避免进入视口后永久循环。 */
  animation: none;
}

.proof-band.is-visible::after {
  opacity: 1;
}

.proof-band > div {
  display: flex;
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 116px;
  padding: 26px 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 38%);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.proof-band.proof-motion-ready > div {
  opacity: 0;
  filter: none;
  transform: translateY(34px) scale(0.985);
}

.proof-band.proof-motion-ready.is-visible > div {
  opacity: 1;
  filter: none;
  transform: translateY(0) scale(1);
}

.proof-band.proof-motion-ready.is-visible > div:nth-child(2) {
  transition-delay: 0.12s;
}

.proof-band.proof-motion-ready.is-visible > div:nth-child(3) {
  transition-delay: 0.24s;
}

.proof-band.is-visible > div:hover {
  z-index: 2;
  background-color: rgba(39, 240, 227, 0.035);
  box-shadow: inset 0 0 44px rgba(39, 240, 227, 0.07);
  transform: translateY(-7px) scale(1.008);
}

.proof-band > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-size: 34px;
}

.proof-band span {
  color: var(--soft);
  line-height: 1.6;
}

.proof-band .content-media {
  width: min(100%, 320px);
  margin: 28px auto 0;
  grid-template-columns: 1fr;
  gap: 14px;
}

.proof-band .content-media figure {
  position: relative;
  border-color: rgba(39, 240, 227, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.proof-band .content-media figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    112deg,
    transparent 34%,
    rgba(255, 255, 255, 0.18) 48%,
    rgba(39, 240, 227, 0.16) 52%,
    transparent 66%
  );
  transform: translateX(-135%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.proof-band .content-media img,
.proof-band .content-media video {
  transition: transform 0.45s ease;
}

.proof-band > div:hover .content-media figure {
  border-color: rgba(39, 240, 227, 0.48);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3), 0 0 24px rgba(39, 240, 227, 0.08);
  transform: translateY(-2px);
}

.proof-band > div:hover .content-media figure::after {
  transform: translateX(135%);
}

.proof-band > div:hover .content-media img,
.proof-band > div:hover .content-media video {
  transform: scale(1.035);
}

@keyframes proofBandScan {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  12%,
  78% {
    opacity: 0.9;
  }
  90%,
  100% {
    opacity: 0;
    transform: translateX(410%);
  }
}

.section {
  padding: clamp(76px, 10vw, 130px) clamp(24px, 5vw, 72px);
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head.split {
  grid-template-columns: 0.9fr 1fr;
  align-items: end;
  max-width: 1220px;
  text-align: left;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.12;
}

.section-head p:not(.eyebrow),
.culture-copy p,
.about-box p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  font-size: 17px;
  line-height: 1.85;
}

.product-intro,
.services,
.capabilities,
.about-contact {
  background: #050505;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.product-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #191919;
}

.product-card > span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.product-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.22;
}

.product-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.85;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.product-features li {
  padding: 0;
}

.product-feature-trigger {
  display: block;
  padding: 7px 10px;
  border: 1px solid rgba(39, 240, 227, 0.18);
  border-radius: 0;
  background: rgba(39, 240, 227, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}

.product-feature-trigger:hover,
.product-feature-trigger:focus-visible {
  border-color: var(--cyan);
  color: var(--cyan);
  outline: 2px solid rgba(39, 240, 227, 0.35);
  outline-offset: 2px;
}

.service-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.service-grid {
  width: min(1280px, 100%);
}

.service-card,
.news-card,
.culture-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #191919;
}

.service-card {
  --service-x: 50%;
  --service-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  padding: 32px 30px;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 1061px) {
  .service-card {
    background:
      linear-gradient(150deg, rgba(39, 240, 227, 0.025), transparent 34%),
      #191919;
    transition:
      opacity 0.72s ease,
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.32s ease,
      box-shadow 0.32s ease;
    transition-delay: calc(var(--service-order, 0) * 0.12s);
  }

  .service-card::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(
      420px circle at var(--service-x) var(--service-y),
      rgba(39, 240, 227, 0.12),
      transparent 54%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    content: "";
  }

  .service-card::after {
    position: absolute;
    z-index: 3;
    top: 0;
    left: -38%;
    width: 36%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
    box-shadow: 0 0 18px rgba(39, 240, 227, 0.62);
    opacity: 0;
    pointer-events: none;
    content: "";
  }

  .service-grid.service-motion-ready .service-card {
    opacity: 0;
    filter: none;
    transform: translateY(46px) scale(0.985);
  }

  .service-grid.service-motion-ready.is-visible .service-card {
    opacity: 1;
    filter: none;
    transform: translateY(0) scale(1);
  }

  .service-grid.service-motion-ready.is-visible .service-card::after {
    animation: none;
  }

  .service-card .service-index,
  .service-card li::before,
  .service-card .case-entry {
    transition:
      color 0.3s ease,
      background-color 0.3s ease,
      border-color 0.3s ease,
      box-shadow 0.3s ease,
      transform 0.3s ease;
  }

  .service-card .service-media figure {
    position: relative;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.4s ease;
  }

  .service-card .service-media figure::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      112deg,
      transparent 34%,
      rgba(255, 255, 255, 0.16) 48%,
      rgba(39, 240, 227, 0.15) 52%,
      transparent 66%
    );
    transform: translateX(-140%);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    content: "";
  }

  .service-card .service-media img,
  .service-card .service-media video {
    transition: transform 0.45s ease;
  }
}

@media (min-width: 1061px) and (hover: hover) and (pointer: fine) {
  .service-grid.service-motion-ready.is-visible .service-card:hover {
    z-index: 4;
    border-color: rgba(39, 240, 227, 0.42);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34), 0 0 32px rgba(39, 240, 227, 0.08);
    transform: translateY(-10px) scale(1.008);
    transition-delay: 0s;
  }

  .service-card:hover::before {
    opacity: 1;
  }

  .service-card:hover .service-index {
    color: rgba(39, 240, 227, 0.34);
    text-shadow: 0 0 24px rgba(39, 240, 227, 0.15);
  }

  .service-card:hover li::before {
    box-shadow: 0 0 12px rgba(39, 240, 227, 0.72);
    transform: scale(1.16);
  }

  .service-card:hover .service-media figure {
    border-color: rgba(39, 240, 227, 0.45);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 22px rgba(39, 240, 227, 0.08);
    transform: translateY(-2px);
  }

  .service-card:hover .service-media figure::after {
    transform: translateX(140%);
  }

  .service-card:hover .service-media img,
  .service-card:hover .service-media video {
    transform: scale(1.035);
  }
}

@keyframes serviceCardScan {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  18%,
  76% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    transform: translateX(410%);
  }
}

.site-card-motion {
  --card-x: 50%;
  --card-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.site-card-motion > * {
  position: relative;
  z-index: 2;
}

@media (min-width: 1061px) {
  .site-card-motion {
    transition:
      opacity 0.72s ease,
      transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.32s ease,
      box-shadow 0.32s ease,
      background-color 0.32s ease;
    transition-delay: calc(var(--card-order, 0) * 0.08s);
  }

  .site-card-motion::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: radial-gradient(
      360px circle at var(--card-x) var(--card-y),
      rgba(39, 240, 227, 0.115),
      transparent 56%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    content: "";
  }

  .site-card-motion::after {
    position: absolute;
    z-index: 3;
    top: 0;
    left: -38%;
    width: 36%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), var(--green), transparent);
    box-shadow: 0 0 16px rgba(39, 240, 227, 0.58);
    opacity: 0;
    pointer-events: none;
    content: "";
  }

  .site-card-motion-ready .site-card-motion {
    opacity: 0;
    filter: none;
    transform: translateY(42px) scale(0.986);
  }

  .site-card-motion-ready.is-visible .site-card-motion {
    opacity: 1;
    filter: none;
    transform: translateY(0) scale(1);
  }

  .site-card-motion-ready.is-visible .site-card-motion::after {
    animation: none;
  }

  .site-card-motion img,
  .site-card-motion video,
  .site-card-motion figure,
  .site-card-motion > span:first-child {
    transition:
      color 0.3s ease,
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }
}

@media (min-width: 1061px) and (hover: hover) and (pointer: fine) {
  .site-card-motion-ready.is-visible .site-card-motion:hover {
    z-index: 4;
    border-color: rgba(39, 240, 227, 0.42);
    box-shadow: 0 26px 62px rgba(0, 0, 0, 0.32), 0 0 28px rgba(39, 240, 227, 0.075);
    transform: translateY(-9px) scale(1.008);
    transition-delay: 0s;
  }

  .site-card-motion:hover::before {
    opacity: 1;
  }

  .site-card-motion:hover > span:first-child {
    color: var(--cyan);
    text-shadow: 0 0 18px rgba(39, 240, 227, 0.18);
  }

  .site-card-motion:hover img,
  .site-card-motion:hover video {
    transform: scale(1.035);
  }

  .site-card-motion:hover figure {
    border-color: rgba(39, 240, 227, 0.44);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.27), 0 0 20px rgba(39, 240, 227, 0.075);
  }
}

@keyframes siteCardScan {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  18%,
  76% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: translateX(410%);
  }
}

.service-index {
  color: rgba(255, 255, 255, 0.18);
  font-size: 54px;
  font-weight: 900;
}

.case-entry {
  position: absolute;
  top: 58px;
  left: 108px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(39, 240, 227, 0.68);
  background: rgba(39, 240, 227, 0.08);
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.case-entry:hover,
.case-entry:focus-visible {
  background: var(--cyan);
  color: #03100f;
  transform: translateY(-1px);
}

.service-card-toggle {
  display: none;
}

.mobile-fold-toggle {
  display: none;
}

.service-card h3,
.industry-block h3,
.capability-item h3,
.culture-grid h3,
.news-card h3 {
  margin: 16px 0 14px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.35;
  text-wrap: balance;
}

.service-card p,
.service-card li,
.industry-block p,
.capability-item p,
.culture-grid p,
.news-card p {
  color: var(--soft);
  line-height: 1.78;
}

.service-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.55;
}

.service-card li::before {
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--cyan);
  content: "";
}

.service-card li strong {
  color: var(--white);
  font-weight: 900;
}

.service-card li span {
  color: var(--soft);
  text-wrap: pretty;
}

.service-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  align-items: start;
  gap: 10px;
  margin-top: 22px;
}

.service-media figure {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
}

.service-media img,
.service-media video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: fill;
  object-position: center center;
}

.content-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: start;
  gap: 10px;
  margin: 16px 0;
}

.content-media figure {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
}

.content-media img,
.content-media video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: fill;
  object-position: center center;
}

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

.case-modal {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
}

.case-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  /* 全屏 backdrop blur 会让集成显卡持续重绘整页，使用不透明遮罩替代。 */
  backdrop-filter: none;
}

.case-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1060px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  overflow: auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(39, 240, 227, 0.22);
  background: #111;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.36);
  contain: layout paint;
}

.case-modal-open {
  overflow: hidden;
}

.case-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

.case-modal-panel h2 {
  max-width: 820px;
  margin: 8px 0 12px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.18;
}

.case-modal-intro {
  max-width: 860px;
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.scenario-modal-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 14px;
  margin-top: 28px;
}

.scenario-modal-media-item {
  align-self: start;
  min-width: 0;
  aspect-ratio: 16 / 9;
  margin: 0;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
  overflow: hidden;
}

.scenario-modal-media-item img,
.scenario-modal-media-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  background: #101010;
}

.scenario-modal-media-item img[data-media-zoom] {
  cursor: zoom-in;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: none;
}

.media-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1400px, 100%);
  height: min(900px, 100%);
  padding: 44px 24px 24px;
  border: 1px solid rgba(39, 240, 227, 0.3);
  background: #080808;
  contain: layout paint;
}

.media-lightbox-panel img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.media-lightbox-panel .case-modal-close {
  z-index: 2;
}

.case-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.entry-modal-media {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
  gap: 14px;
}

.entry-modal-media figure {
  align-self: start;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
}

.entry-modal-media img,
.entry-modal-media video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: fill;
  object-position: center center;
}

.case-item-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.case-item-media figure {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
}

.case-item-media img,
.case-item-media video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: fill;
  object-position: center center;
}

.case-item {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #191919;
}

.entry-detail-card {
  grid-column: 1 / -1;
}

.case-number {
  color: rgba(39, 240, 227, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.case-item h3 {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.case-item p,
.case-empty {
  margin: 0;
  color: var(--soft);
  line-height: 1.75;
}

.case-details {
  color: rgba(255, 255, 255, 0.62);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.case-tags span {
  padding: 6px 10px;
  border: 1px solid rgba(39, 240, 227, 0.22);
  background: rgba(39, 240, 227, 0.06);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.case-empty {
  grid-column: 1 / -1;
  padding: 26px;
  border: 1px dashed rgba(39, 240, 227, 0.26);
  background: rgba(39, 240, 227, 0.04);
  text-align: center;
}

.industries,
.news {
  background: #101010;
}

.industry-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.industry-block {
  min-height: 430px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(145deg, rgba(39, 240, 227, 0.08), rgba(255, 255, 255, 0.02)),
    #191919;
}

.tag,
.news-type {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(39, 240, 227, 0.34);
  background: rgba(39, 240, 227, 0.08);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.scenario-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
  align-content: start;
}

.scenario-list span {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid rgba(39, 240, 227, 0.3);
  background: linear-gradient(135deg, rgba(39, 240, 227, 0.11), rgba(50, 210, 150, 0.055));
  box-shadow: inset 0 0 18px rgba(39, 240, 227, 0.035);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-family: inherit;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1220px, 100%);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.capability-item {
  min-height: 270px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
}

.capability-item span {
  color: var(--green);
  font-weight: 900;
}

.culture {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
  align-items: start;
  padding-top: clamp(44px, 6vw, 82px);
  background: #070707;
}

.culture-copy,
.culture-grid {
  width: 100%;
}

.culture-copy {
  max-width: none;
  text-align: center;
}

.culture-copy h2,
.culture-copy p {
  margin-right: auto;
  margin-left: auto;
}

.culture-copy p:not(.eyebrow) {
  max-width: 920px;
}

.culture-copy .eyebrow {
  color: var(--cyan);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-self: center;
  width: min(1220px, 100%);
  gap: 16px;
}

.culture-grid article {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 260px;
  padding: 28px;
  text-align: center;
}

.culture-grid span {
  color: var(--cyan);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.35;
}

.about-section {
  background: #0b1010;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1220px, 100%);
  margin: 0 auto;
}

.about-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #121818;
}

.about-card > span {
  color: var(--cyan);
  font-size: 16px;
  font-weight: 900;
}

.about-card h3 {
  margin: 30px 0 16px;
  font-size: 24px;
  line-height: 1.35;
}

.about-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.news-card {
  min-height: 270px;
  padding: 30px;
}

.news-media {
  margin: 2px 0 18px;
}

.news-card time {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.section-head-action {
  display: grid;
  justify-items: end;
  align-content: end;
  gap: 16px;
}

.section-head-action > p {
  margin: 0;
}

.news-more-link {
  justify-self: end;
  white-space: nowrap;
}

.news-page-grid {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.news-page-grid .news-card {
  min-height: 300px;
}

.news-page-grid .news-media {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  width: 100%;
  margin: 18px 0 0;
}

.news-page-grid .news-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  height: auto;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
  object-fit: cover;
  object-position: top center;
}

.news-page-hero {
  padding: 168px clamp(24px, 7vw, 112px) 86px;
  border-bottom: 1px solid rgba(39, 240, 227, 0.16);
  background: #080808;
}

.news-page-hero .section-head {
  width: min(1220px, 100%);
  margin: 0 auto;
}

.news-page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
}

@media (max-width: 560px) {
  .news-page-hero {
    padding: 132px 20px 58px;
  }
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(380px, 0.9fr) minmax(520px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.customer-panel,
.about-box,
.contact-form {
  width: 100%;
}

.customer-panel {
  display: grid;
  grid-column: 1 / -1;
  align-self: stretch;
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #101010;
}

.customer-panel h2 {
  align-self: end;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.12;
}

.customer-panel p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.about-box {
  display: grid;
  grid-column: 1;
  grid-row: 5;
  align-self: stretch;
  align-content: start;
  justify-self: stretch;
  min-height: 100%;
  max-width: none;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #101010;
}

#contactConsultation {
  scroll-margin-top: 104px;
}

.contact-form {
  grid-column: 2;
  grid-row: 5;
}

.about-box h2,
.contact-form h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.16;
}

.about-box h2 {
  font-size: clamp(28px, 2.2vw, 36px);
  line-height: 1.18;
  white-space: nowrap;
}

.customer-wall {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  min-height: 210px;
}

.customer-group {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #151515;
}

.customer-group h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.customer-logos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.customer-logo-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 128px;
  height: 128px;
  margin: 0;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0a0a;
}

.customer-logo-card img {
  display: block;
  width: 100%;
  height: 64px;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.customer-logo-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.customer-logo-card small {
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-logo-card .content-media {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
}

.customer-logo-card .content-media figure {
  display: grid;
  place-items: center;
  height: 64px;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  background: transparent;
}

.customer-logo-card .content-media img,
.customer-logo-card .content-media video {
  width: 100%;
  height: 64px;
  max-height: 64px;
  padding: 0;
  object-fit: contain;
}

.customer-logo-card.is-empty {
  border-style: dashed;
  background: rgba(39, 240, 227, 0.03);
}

.qualification-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 3;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #151515;
}

.qualification-head {
  display: grid;
  gap: 10px;
  align-content: start;
}

.qualification-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.14;
}

.qualification-head p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

.qualification-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

.qualification-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0a0a;
}

.qualification-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #fff;
}

.qualification-card span {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 4 / 3;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  border: 1px dashed rgba(39, 240, 227, 0.24);
  background: rgba(39, 240, 227, 0.03);
}

.qualification-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 15px;
  line-height: 1.4;
}

.qualification-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.partner-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 4;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #151515;
}

.partner-head {
  display: grid;
  gap: 10px;
}

.partner-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.14;
}

.partner-head p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

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

.partner-group {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #101010;
}

.partner-group h3 {
  margin: 0;
  color: var(--white);
  font-size: 18px;
}

.partner-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}

.partner-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 128px;
  height: 128px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #0a0a0a;
}

.partner-card img {
  display: block;
  width: 100%;
  height: 64px;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
}

.partner-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.partner-card small {
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-card p {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-card.is-empty {
  border-style: dashed;
  background: rgba(39, 240, 227, 0.03);
}

.office-panel {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 6;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(39, 240, 227, 0.16);
  background: #151515;
}

.office-head {
  display: grid;
  gap: 10px;
  align-content: start;
}

.office-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.14;
}

.office-head p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

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

.office-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #101010;
}

.office-card span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.office-card h3 {
  margin: 10px 0 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.35;
}

.office-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
  white-space: pre-wrap;
}

.contact-form {
  display: grid;
  gap: 14px;
  grid-column: 2;
  grid-row: 5;
  justify-self: stretch;
  max-width: none;
  padding: 32px;
  border: 1px solid rgba(39, 240, 227, 0.2);
  background: #181818;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #090909;
  color: var(--white);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(24px, 5vw, 72px);
  background: #000;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-contact-section {
  padding: clamp(58px, 7vw, 92px) clamp(24px, 5vw, 72px) 42px;
  border-top: 1px solid rgba(39, 240, 227, 0.18);
  background: #050505;
}

.footer-contact-inner {
  width: min(1634px, 100%);
  margin: 0 auto;
}

.footer-contact-head {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 34px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.footer-contact-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.15;
}

.footer-contact-head p:not(.eyebrow) {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
}

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

.footer-contact-card {
  display: grid;
  align-content: start;
  gap: 12px;
  justify-items: center;
  min-height: 300px;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #111;
}

.footer-contact-card img {
  display: block;
  width: 100%;
  height: 160px;
  margin-top: 4px;
  border: 1px solid rgba(39, 240, 227, 0.18);
  background: #101010;
  object-fit: contain;
}

.footer-contact-card > span {
  color: var(--cyan);
  font-size: 14px;
  font-weight: 900;
}

.footer-contact-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.footer-contact-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.8;
  white-space: pre-line;
}

body.is-light-home .hero h1,
body.is-light-home .section h2,
body.is-light-home .product-card h3,
body.is-light-home .service-card h3,
body.is-light-home .industry-block h3,
body.is-light-home .capability-item h3,
body.is-light-home .culture-grid h3,
body.is-light-home .about-card h3,
body.is-light-home .news-card h3,
body.is-light-home .contact-form h3,
body.is-light-home .proof-band strong,
body.is-light-home .visual-card strong,
body.is-light-home .brand strong {
  color: var(--light-title);
}

body.is-light-home .hero-lead,
body.is-light-home .section-head p:not(.eyebrow),
body.is-light-home .product-card p,
body.is-light-home .service-card p,
body.is-light-home .service-card li,
body.is-light-home .industry-block p,
body.is-light-home .capability-item p,
body.is-light-home .culture-copy p,
body.is-light-home .culture-grid p,
body.is-light-home .about-box p:not(.eyebrow),
body.is-light-home .about-card p,
body.is-light-home .news-card p,
body.is-light-home .contact-form p,
body.is-light-home .proof-band span,
body.is-light-home .footer-contact-card p {
  color: var(--light-text);
}

body.is-light-home .service-card li strong {
  color: var(--light-title);
}

body.is-light-home .product-intro,
body.is-light-home .services,
body.is-light-home .capabilities,
body.is-light-home .industries,
body.is-light-home .culture,
body.is-light-home .about-section,
body.is-light-home .news,
body.is-light-home .about-contact,
body.is-light-home .footer-contact-section {
  background: var(--light-surface);
}

body.is-light-home .proof-band,
body.is-light-home .product-card,
body.is-light-home .service-card,
body.is-light-home .industry-block,
body.is-light-home .capability-item,
body.is-light-home .culture-grid article,
body.is-light-home .about-card,
body.is-light-home .news-card,
body.is-light-home .contact-form,
body.is-light-home .footer-contact-card,
body.is-light-home .visual-card {
  border-color: var(--light-line);
  background: var(--light-card);
  box-shadow: 0 18px 52px rgba(26, 26, 26, 0.08);
}

body.is-light-home .customer-panel,
body.is-light-home .customer-group,
body.is-light-home .customer-logo-card,
body.is-light-home .about-box,
body.is-light-home .qualification-panel,
body.is-light-home .qualification-card,
body.is-light-home .partner-panel,
body.is-light-home .partner-group,
body.is-light-home .partner-card,
body.is-light-home .office-panel,
body.is-light-home .office-card {
  border-color: var(--light-line);
  background: var(--light-card);
  box-shadow: 0 18px 52px rgba(26, 26, 26, 0.06);
}

body.is-light-home .customer-panel h2,
body.is-light-home .customer-group h3,
body.is-light-home .about-box h2,
body.is-light-home .qualification-head h2,
body.is-light-home .qualification-card h3,
body.is-light-home .partner-head h2,
body.is-light-home .partner-group h3,
body.is-light-home .office-head h2,
body.is-light-home .office-card h3 {
  color: var(--light-title);
}

body.is-light-home .customer-panel p:not(.eyebrow),
body.is-light-home .qualification-head p:not(.eyebrow),
body.is-light-home .partner-head p:not(.eyebrow),
body.is-light-home .office-head p:not(.eyebrow),
body.is-light-home .office-card p,
body.is-light-home .customer-logo-card small,
body.is-light-home .customer-logo-card span {
  color: var(--light-text);
}

body.is-light-home .qualification-card p,
body.is-light-home .partner-card small,
body.is-light-home .partner-card p,
body.is-light-home .news-card time {
  color: var(--light-muted);
}

body.is-light-home .qualification-card span,
body.is-light-home .partner-card span {
  color: var(--light-text);
}

body.is-light-home .scenario-list span,
body.is-light-home .case-tags span {
  border-color: var(--light-line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--light-title) !important;
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.04);
  font-weight: 800;
  text-shadow: none;
  opacity: 1;
}

body.is-light-home .product-feature-trigger {
  border-color: var(--light-line);
  background: rgba(255, 255, 255, 0.98);
  color: var(--light-title);
  box-shadow: 0 8px 20px rgba(26, 26, 26, 0.04);
  opacity: 1;
  text-shadow: none;
  -webkit-text-fill-color: var(--light-title);
}

body.is-light-home .product-feature-trigger:hover,
body.is-light-home .product-feature-trigger:focus-visible {
  border-color: #b8c6d6;
  background: #ffffff;
  color: var(--light-title);
  outline-color: rgba(26, 26, 26, 0.18);
}

body.is-light-home .industry-block .scenario-list span {
  border-color: #d4dae3;
  background: #ffffff;
  color: #1a1a1a !important;
  box-shadow: none;
  opacity: 1;
  mix-blend-mode: normal;
  -webkit-text-fill-color: #1a1a1a;
}

body.is-light-home .scenario-chip {
  border-color: #d4dae3 !important;
  background: #ffffff !important;
  color: #1a1a1a !important;
  opacity: 1 !important;
  text-shadow: none !important;
  box-shadow: none !important;
  mix-blend-mode: normal !important;
  -webkit-text-fill-color: #1a1a1a !important;
  font-weight: 800 !important;
}

body.is-light-home .product-card > span,
body.is-light-home .service-index,
body.is-light-home .industry-block .tag,
body.is-light-home .culture-grid span,
body.is-light-home .about-card > span,
body.is-light-home .office-card span,
body.is-light-home .footer-contact-card > span {
  color: var(--green);
}

body.is-light-home .contact-form label {
  color: var(--light-text);
}

body.is-light-home .contact-form input,
body.is-light-home .contact-form select,
body.is-light-home .contact-form textarea {
  border-color: var(--light-line);
  background: var(--light-card);
  color: var(--light-title);
}

body.is-light-home .footer-contact-head p:not(.eyebrow) {
  color: var(--light-text);
}

body.is-light-home .footer-contact-card img {
  border-color: var(--light-line);
  background: var(--light-card);
}

body.is-light-home .site-footer {
  border-top: 1px solid var(--light-line);
  background: var(--light-surface);
  color: var(--light-text);
}

@media (min-width: 641px) {
  .mobile-fold-toggle[data-desktop-fold] {
    display: flex;
    width: min(320px, 100%);
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    justify-self: center;
    gap: 18px;
    margin: 8px auto 0;
    padding: 0 16px;
    border: 1px solid rgba(39, 240, 227, 0.26);
    border-radius: 2px;
    background: rgba(39, 240, 227, 0.035);
    color: var(--cyan);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
  }

  .qualification-head .mobile-fold-toggle,
  .partner-head .mobile-fold-toggle {
    justify-self: start;
    margin-right: 0;
    margin-left: 0;
  }

  .mobile-fold-toggle[data-desktop-fold] span:last-child {
    flex: 0 0 auto;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transition: transform 180ms ease;
  }

  .mobile-fold-toggle[data-desktop-fold][aria-expanded="true"] span:last-child {
    transform: rotate(180deg);
  }

  body.is-light-home .mobile-fold-toggle[data-desktop-fold] {
    border-color: var(--light-line);
    background: var(--light-card);
    color: var(--light-title);
  }

  [data-desktop-fold-head]:not(.is-mobile-expanded) {
    margin-bottom: 0;
  }

  [data-desktop-fold-content].mobile-fold-content:not(.is-mobile-expanded) {
    display: none;
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 80px;
    left: 20px;
    right: 20px;
    display: block;
    padding: 10px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav-primary {
    display: grid;
    gap: 0;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a,
  .nav-cta,
  .nav-mode-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 50px;
    padding: 14px 12px !important;
    border-radius: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.86);
    text-align: left;
  }

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

  .site-nav a::after {
    display: none;
  }

  .nav-mode-toggle {
    width: 100%;
    cursor: pointer;
  }

  .nav-mode-toggle span {
    color: var(--cyan);
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
  }

  .nav-mode-panel {
    display: block;
  }

  .nav-panel-head {
    display: flex;
    align-items: center;
    min-height: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-panel-head strong {
    flex: 1;
    margin-right: 54px;
    color: var(--white);
    text-align: center;
  }

  .nav-back {
    min-height: 44px;
    padding: 10px 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.64);
    cursor: pointer;
  }

  .nav-mode-list {
    display: grid;
    gap: 0;
    padding-top: 6px;
  }

  .nav-mode-list a {
    min-height: 46px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
  }

  .site-nav.mode-open .site-nav-primary {
    display: none;
  }

  .site-nav.mode-open .nav-mode-panel {
    display: block;
  }

  body.is-light-home .site-nav {
    background: rgba(255, 255, 255, 0.98);
    border-color: var(--light-line);
    box-shadow: 0 18px 42px rgba(26, 26, 26, 0.08);
  }

  body.is-light-home .site-nav a,
  body.is-light-home .nav-cta,
  body.is-light-home .nav-mode-toggle,
  body.is-light-home .nav-mode-list a {
    color: var(--light-text);
  }

  body.is-light-home .nav-panel-head {
    border-bottom-color: var(--light-line);
  }

  body.is-light-home .nav-panel-head strong,
  body.is-light-home .nav-mode-toggle span {
    color: var(--light-title);
  }

  body.is-light-home .nav-back {
    color: var(--light-muted);
  }

  .hero-inner,
  .industry-layout,
  .culture,
  .about-contact {
    grid-template-columns: 1fr;
  }

  .customer-panel,
  .customer-wall,
  .qualification-panel,
  .partner-panel,
  .office-panel,
  .about-box,
  .contact-form {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-inner {
    width: min(760px, calc(100% - 40px));
    padding-top: 118px;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-visual img {
    margin: 0 auto;
  }

  .service-grid,
  .product-grid,
  .news-grid,
  .culture-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head.split {
    grid-template-columns: 1fr;
  }

  .culture-copy,
  .culture-grid,
  .customer-panel,
  .customer-wall,
  .qualification-panel,
  .partner-panel,
  .office-panel,
  .about-box,
  .contact-form {
    max-width: none;
  }

  .customer-wall,
  .qualification-panel,
  .partner-wall,
  .office-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .hero-inner {
    gap: 28px;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: min(100%, 520px);
  }

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

  .platform-menu {
    margin-top: 24px;
  }

  .platform-menu-toggle {
    display: flex;
    width: 100%;
    min-height: 54px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border: 1px solid rgba(39, 240, 227, 0.64);
    background: rgba(26, 26, 26, 0.94);
    color: var(--cyan);
    cursor: pointer;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    text-align: left;
  }

  body.is-light-home .platform-menu-toggle {
    border-color: var(--light-line);
    background: var(--light-card);
    color: var(--light-title);
  }

  .platform-menu-toggle span:last-child {
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
  }

  .platform-strip {
    display: none;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 8px;
    margin-top: 8px;
  }

  .platform-menu.is-open .platform-strip {
    display: grid;
  }

  .platform-strip span,
  .platform-entry {
    min-height: 52px;
  }

  .proof-band strong {
    font-size: 28px;
  }

  .service-card,
  .product-card,
  .industry-block,
  .news-card,
  .culture-grid article,
  .contact-form {
    min-height: auto;
  }

  .service-card-toggle {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    padding: 12px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--cyan);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 900;
    text-align: left;
  }

  .service-card-toggle span:last-child {
    font-size: 24px;
    font-weight: 400;
    line-height: 0.8;
  }

  .service-card > p,
  .service-card > ul {
    display: none;
  }

  .service-card.is-expanded > p {
    display: block;
  }

  .service-card.is-expanded > ul {
    display: grid;
  }

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

  .case-modal {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 68px;
    padding: 0 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    width: calc(100% - 24px);
    padding: 98px 0 44px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-kicker {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.72;
  }

  .hero-actions,
  .proof-band,
  .site-footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .proof-band {
    width: calc(100% - 24px);
    margin-top: 0;
  }

  .proof-band > div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 0;
  }

  body.is-light-home .proof-band > div + div {
    border-top-color: var(--light-line);
  }

  .proof-band.is-visible > div:hover {
    transform: translateY(-3px) scale(1.004);
  }

  .visual-card {
    position: static;
    margin: 12px 0 0;
  }

  .section {
    padding: 56px 16px;
  }

  .mobile-fold-head {
    margin-bottom: 18px;
  }

  .mobile-fold-head.is-mobile-expanded {
    margin-bottom: 28px;
  }

  .culture-copy.mobile-fold-head,
  .customer-panel.mobile-fold-head,
  .qualification-head.mobile-fold-head,
  .partner-head.mobile-fold-head {
    margin-bottom: 0;
  }

  .mobile-fold-toggle {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 6px;
    padding: 0 14px;
    border: 1px solid rgba(39, 240, 227, 0.28);
    border-radius: 2px;
    background: rgba(39, 240, 227, 0.04);
    color: var(--cyan);
    cursor: pointer;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    text-align: left;
  }

  .mobile-fold-toggle span:last-child {
    flex: 0 0 auto;
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
    transition: transform 180ms ease;
  }

  .mobile-fold-toggle[aria-expanded="true"] span:last-child {
    transform: rotate(180deg);
  }

  body.is-light-home .mobile-fold-toggle {
    border-color: var(--light-line);
    background: var(--light-card);
    color: var(--light-title);
  }

  [data-mobile-fold-mode="content"].mobile-fold-content:not(.is-mobile-expanded) {
    display: none;
  }

  [data-mobile-fold-mode="preview"].mobile-fold-content:not(.is-mobile-expanded) .mobile-fold-extra {
    display: none;
  }

  .service-card,
  .industry-block,
  .news-card,
  .culture-grid article,
  .about-card,
  .contact-form {
    padding: 20px;
  }

  .capability-rail {
    grid-template-columns: 1fr;
  }

  .capability-item {
    min-height: auto;
    padding: 22px;
  }

  .service-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .service-index {
    font-size: 40px;
  }

  .case-entry {
    top: 26px;
    left: 82px;
    min-height: 32px;
    padding: 0 12px;
    font-size: 12px;
  }

  .service-card h3,
  .industry-block h3,
  .capability-item h3,
  .culture-grid h3,
  .news-card h3 {
    font-size: 21px;
  }

  .scenario-list {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }

  .scenario-list span {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .industry-block {
    min-height: auto;
    padding: 22px 20px;
  }

  .news-card {
    min-height: auto;
  }

  .culture-grid article {
    min-height: auto;
  }

  .about-card {
    min-height: auto;
  }

  .about-box h2,
  .contact-form h2 {
    font-size: 30px;
  }

  .about-box h2 {
    white-space: normal;
  }

  .contact-form {
    padding: 20px;
  }

  .customer-panel,
  .customer-group,
  .qualification-panel,
  .partner-panel,
  .partner-group,
  .office-panel {
    padding: 20px;
  }

  .customer-panel {
    min-height: auto;
  }

  .customer-panel h2 {
    font-size: 30px;
  }

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

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

  .case-modal {
    align-items: stretch;
    padding: 10px;
  }

  .case-modal-panel {
    max-height: calc(100vh - 20px);
    padding: 24px 18px;
  }

  .case-modal-panel h2 {
    padding-right: 44px;
    font-size: 28px;
  }

  .scenario-modal-media {
    grid-template-columns: 1fr;
  }

  .scenario-modal-media-item img,
  .scenario-modal-media-item video {
    height: 100%;
  }

  .case-item {
    min-height: auto;
    padding: 18px;
  }

  .site-footer {
    padding: 18px 16px;
    font-size: 12px;
  }

  .footer-contact-section {
    padding: 48px 16px 28px;
  }

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

  .footer-contact-card {
    min-height: auto;
    padding: 20px;
  }

  .footer-contact-card img {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-cta {
    animation: none;
  }

  .mobile-fold-toggle span:last-child {
    transition: none;
  }

  .site-card-motion::after {
    animation: none !important;
    transition: none !important;
  }

  .site-card-motion-ready .site-card-motion,
  .site-card-motion-ready.is-visible .site-card-motion,
  .site-card-motion-ready.is-visible .site-card-motion:hover {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .site-card-motion::before,
  .site-card-motion img,
  .site-card-motion video,
  .site-card-motion figure,
  .site-card-motion > span:first-child {
    transition: none;
  }

  .service-card::after,
  .service-card .service-media figure::after {
    animation: none !important;
    transition: none !important;
  }

  .service-grid.service-motion-ready .service-card,
  .service-grid.service-motion-ready.is-visible .service-card,
  .service-grid.service-motion-ready.is-visible .service-card:hover {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .service-card::before,
  .service-card .service-index,
  .service-card li::before,
  .service-card .case-entry,
  .service-card .service-media figure,
  .service-card .service-media img,
  .service-card .service-media video {
    transition: none;
  }

  .proof-band::before,
  .proof-band .content-media figure::after {
    animation: none !important;
    transition: none !important;
  }

  .proof-band.proof-motion-ready > div,
  .proof-band.proof-motion-ready.is-visible > div,
  .proof-band.is-visible > div:hover {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .proof-band .content-media img,
  .proof-band .content-media video,
  .proof-band .content-media figure {
    transition: none;
  }
}
