:root {
  --ink: #06111f;
  --ink-2: #0a2038;
  --paper: #f6f9fc;
  --white: #ffffff;
  --blue: #1268e8;
  --cyan: #46d7ff;
  --green: #42c59a;
  --gold: #e2b85b;
  --muted: #64748b;
  --line: rgba(15, 55, 91, 0.16);
  --header-h: 84px;
  --page-pad: 56px;
  --max: 1480px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

img {
  display: block;
  width: 100%;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

::selection {
  color: #fff;
  background: var(--blue);
}

.shell {
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  transition: clip-path 0.9s var(--ease), visibility 0.9s;
  clip-path: inset(0 0 0 0);
}

.preloader.is-done {
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}

.preloader__inner {
  display: grid;
  width: min(540px, calc(100% - 48px));
  gap: 22px;
}

.preloader__brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.preloader__brand strong {
  font-size: 28px;
  line-height: 1.3;
}

.preloader__brand span {
  color: var(--cyan);
  font: 700 14px/1 Arial, sans-serif;
}

.preloader__line {
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.preloader__line::after {
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: translateX(-100%);
  animation: loaderLine 1.1s var(--ease) forwards;
}

.page-wipe {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  background: var(--blue);
  transform: translateY(100%);
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 210;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  height: var(--header-h);
  padding: 0 var(--page-pad);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: height 0.35s var(--ease), color 0.35s, background 0.35s, border-color 0.35s;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: rgba(4, 16, 29, 0.72);
  backdrop-filter: blur(16px);
  opacity: 0;
  transition: opacity 0.35s;
}

.site-header.is-scrolled {
  height: 70px;
  border-color: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

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

.brand__mark {
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

.brand__text {
  display: grid;
  line-height: 1.2;
}

.brand__wordmark {
  display: block;
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}

.brand__text small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  white-space: nowrap;
}

.header__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header__meta > a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.header__meta svg {
  width: 17px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: inherit;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.25s, background 0.25s, transform 0.25s;
}

.menu-toggle:hover {
  color: var(--ink);
  background: #fff;
  transform: rotate(8deg);
}

.header-nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.25vw, 24px);
  white-space: nowrap;
}

.header-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  transition: color 0.25s;
}

.header-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.header-nav a:hover,
.header-nav a.is-active {
  color: #fff;
}

.header-nav a:hover::after,
.header-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle__icon {
  position: relative;
  width: 18px;
  height: 12px;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: currentColor;
  transition: transform 0.35s var(--ease), top 0.35s var(--ease);
}

.menu-toggle__icon::before { top: 1px; }
.menu-toggle__icon::after { top: 10px; }
.menu-open .menu-toggle__icon::before { top: 6px; transform: rotate(45deg); }
.menu-open .menu-toggle__icon::after { top: 6px; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  color: #fff;
  background: #071726;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transition: visibility 0.7s, clip-path 0.7s var(--ease);
}

.nav-overlay::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(70, 215, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 215, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom right, #000, transparent 72%);
}

.menu-open .nav-overlay {
  visibility: visible;
  clip-path: inset(0 0 0 0);
}

.nav-overlay__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) 1fr;
  align-items: end;
  gap: 8vw;
  width: min(var(--max), calc(100% - var(--page-pad) * 2));
  min-height: 100%;
  padding: 130px 0 60px;
  margin: 0 auto;
}

.nav-overlay__aside {
  padding-bottom: 10px;
}

.nav-overlay__aside span {
  color: var(--cyan);
  font: 700 12px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.nav-overlay__aside p {
  max-width: 380px;
  margin: 22px 0 40px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
}

.nav-overlay__aside a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
}

.main-nav {
  display: grid;
  align-content: end;
}

.main-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 58px;
  color: rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: color 0.25s, padding-left 0.35s var(--ease);
}

.main-nav a:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.main-nav a:hover,
.main-nav a.is-active {
  padding-left: 12px;
  color: #fff;
}

.main-nav b {
  color: var(--cyan);
  font: 700 10px/1 Arial, sans-serif;
}

.main-nav strong {
  font-size: 22px;
}

.main-nav svg {
  width: 18px;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.hero-stage,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease), visibility 1s;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 7s ease;
}

.hero-slide.is-active img {
  transform: scale(1);
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 11, 21, 0.83) 0%, rgba(3, 17, 31, 0.52) 45%, rgba(3, 17, 31, 0.1) 76%),
    linear-gradient(0deg, rgba(2, 11, 21, 0.61), transparent 55%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.25;
  background-image: linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.28) 1px);
  background-size: 16.666% 100%;
}

.hero-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 20px var(--cyan);
  animation: gridScan 7s linear infinite;
}

.home-hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  min-height: 100svh;
  padding-top: 150px;
  padding-bottom: 70px;
}

.hero-copy {
  max-width: 950px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 24px;
  color: var(--cyan);
  font: 700 12px/1.3 Arial, sans-serif;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 1px;
  content: "";
  background: currentColor;
}

.hero-title {
  max-width: 960px;
  margin: 0;
  font-size: 76px;
  font-weight: 800;
  line-height: 1.08;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line > span {
  display: block;
}

.hero-title small {
  display: block;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 27px;
  font-weight: 500;
}

.hero-description {
  max-width: 760px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #fff;
  transform: translateX(-102%);
  transition: transform 0.45s var(--ease);
}

.button span,
.button svg {
  position: relative;
  z-index: 1;
}

.button svg {
  width: 17px;
}

.button:hover::before { transform: translateX(0); }
.button:hover { color: var(--ink); transform: translateY(-2px); }
.button--solid { color: #fff; background: var(--blue); }
.button--outline { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.button--dark { color: #fff; background: var(--ink); }
.button--dark::before { background: var(--blue); }
.button--dark:hover { color: #fff; }

.hero-side {
  justify-self: end;
  width: 100%;
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-side__count {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font: 700 14px/1 Arial, sans-serif;
}

.hero-side__count strong {
  font-size: 44px;
}

.hero-side__count span {
  color: rgba(255, 255, 255, 0.46);
}

.hero-side__name {
  margin: 24px 0 10px;
  font-size: 19px;
  font-weight: 700;
}

.hero-side__description {
  min-height: 52px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.hero-side__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
}

.hero-side__link svg { width: 14px; }

.hero-progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.hero-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-dots {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 5px;
  margin-top: 20px;
}

.hero-dots button {
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hero-dots button::after {
  display: block;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.28);
  transition: background 0.25s, transform 0.25s;
}

.hero-dots button.is-active::after,
.hero-dots button:hover::after {
  background: var(--cyan);
  transform: scaleY(2);
}

.scroll-cue {
  position: absolute;
  right: var(--page-pad);
  bottom: 26px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font: 700 10px/1 Arial, sans-serif;
  writing-mode: vertical-rl;
}

.scroll-cue::after {
  width: 1px;
  height: 54px;
  content: "";
  background: linear-gradient(var(--cyan) 50%, rgba(255, 255, 255, 0.2) 50%);
  background-size: 100% 200%;
  animation: scrollCue 2s linear infinite;
}

.section {
  position: relative;
  padding: 92px 0;
}

.section--white { background: #fff; }
.section--dark { color: #fff; background: var(--ink); }
.section--blue { color: #fff; background: var(--blue); }

.section-label {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 38px;
  color: var(--blue);
  font: 700 11px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.section-label::before {
  height: 1px;
  content: "";
  background: currentColor;
}

.section--dark .section-label,
.section--blue .section-label { color: var(--cyan); }

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.55fr);
  gap: 5vw;
  align-items: start;
}

.display-heading {
  margin: 0;
  max-width: 1050px;
  font-size: 52px;
  line-height: 1.16;
}

.display-heading em {
  color: var(--blue);
  font-style: normal;
}

.lead-copy {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.lead-copy strong {
  color: var(--ink);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 60px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 154px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child { border-right: 0; }
.stat span { color: var(--muted); font-size: 13px; }
.stat strong { display: block; margin-top: 22px; font: 700 50px/1 Arial, sans-serif; }
.stat strong small { margin-left: 5px; font: 600 15px/1.2 inherit; }

.business-showcase {
  overflow: hidden;
}

.business-showcase__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 42px;
}

.business-showcase__head h2 {
  max-width: 850px;
  margin: 0;
  font-size: 58px;
  line-height: 1.12;
}

.business-showcase__head p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.horizontal-viewport {
  overflow: hidden;
}

.horizontal-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: businessLoop 56s linear infinite;
  will-change: transform;
}

.business-track__set {
  display: flex;
  gap: 18px;
}

.business-showcase:hover .horizontal-track {
  animation-play-state: paused;
}

.business-tile {
  position: relative;
  flex: 0 0 clamp(320px, 27vw, 390px);
  width: clamp(320px, 27vw, 390px);
  height: 490px;
  color: #fff;
  background: var(--ink-2);
  overflow: hidden;
}

.business-tile img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.6s;
}

.business-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 10, 20, 0.94), rgba(2, 10, 20, 0.05) 70%);
}

.business-tile:hover img {
  filter: saturate(1.12);
  transform: scale(1.045);
}

.business-tile__content {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
}

.business-tile__index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cyan);
  font: 700 11px/1 Arial, sans-serif;
}

.business-tile__index::after {
  flex: 1;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.3);
}

.business-tile h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.business-tile p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.business-tile a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}

.business-tile a svg { width: 16px; }

.project-feature {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 22px;
  margin-top: 34px;
}

.project-stack {
  display: grid;
  gap: 22px;
}

.project-shot {
  position: relative;
  display: block;
  min-height: 520px;
  color: #fff;
  overflow: hidden;
}

.project-stack .project-shot {
  min-height: 249px;
}

.home-projects {
  padding: 72px 0;
}

.home-projects__head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.55fr);
  gap: 5vw;
  align-items: end;
}

.home-projects__head .section-label {
  margin-bottom: 26px;
}

.home-projects__head h2 {
  max-width: 780px;
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
}

.home-projects__aside p {
  margin: 0;
  color: var(--muted);
}

.home-projects__aside .button {
  margin-top: 24px;
}

.home-projects .project-shot {
  height: 100%;
  min-height: 0;
}

.home-projects .project-stack .project-shot {
  min-height: 0;
}

.home-projects .project-feature {
  grid-template-rows: 450px;
}

.home-projects .project-feature > div,
.home-projects .project-stack {
  min-height: 0;
}

.home-projects .project-stack {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.project-shot img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-shot::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 12, 22, 0.88), transparent 62%);
}

.project-shot:hover img { transform: scale(1.04); }

.project-shot__caption {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.project-shot__caption span {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
}

.project-shot__caption strong {
  font-size: 22px;
}

.project-shot__caption svg { flex: 0 0 auto; width: 22px; }

.ticker {
  display: flex;
  width: max-content;
  animation: tickerMove 30s linear infinite;
}

.ticker:hover { animation-play-state: paused; }

.ticker__set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.ticker__set span {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 54px;
  font-weight: 800;
  white-space: nowrap;
}

.ticker__set span::after {
  width: 12px;
  height: 12px;
  content: "";
  background: var(--cyan);
  transform: rotate(45deg);
}

.advantage-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 6vw;
  align-items: start;
}

.advantage-sticky {
  position: sticky;
  top: 120px;
}

.advantage-sticky h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.15;
}

.advantage-list {
  border-top: 1px solid var(--line);
}

.advantage-item {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  min-height: 102px;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), color 0.25s;
}

.advantage-item:hover {
  padding: 0 18px;
  color: var(--blue);
}

.advantage-item b {
  color: var(--blue);
  font: 700 11px/1 Arial, sans-serif;
}

.advantage-item strong { font-size: 21px; }
.advantage-item svg { width: 20px; }

.cta-stage {
  position: relative;
  min-height: 470px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.cta-stage img {
  position: absolute;
  inset: 0;
  height: 115%;
  object-fit: cover;
  opacity: 0.38;
}

.cta-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 16, 29, 0.93), rgba(4, 16, 29, 0.5));
}

.cta-stage__inner {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 48px));
  text-align: center;
}

.cta-stage h2 {
  margin: 0;
  font-size: 50px;
  line-height: 1.15;
}

.cta-stage p {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.7);
}

.cta-stage .button-row { justify-content: center; }

.page-hero {
  position: relative;
  display: grid;
  min-height: clamp(520px, 64svh, 650px);
  align-items: end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.page-hero__image {
  position: absolute;
  inset: 0;
}

.page-hero__image img {
  height: 112%;
  object-fit: cover;
}

.page-hero__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(2, 12, 23, 0.83), rgba(2, 12, 23, 0.16)), linear-gradient(0deg, rgba(2, 12, 23, 0.66), transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: 5vw;
  align-items: end;
  padding-top: 145px;
  padding-bottom: 56px;
}

.page-hero h1 {
  margin: 0;
  font-size: 72px;
  line-height: 1.05;
}

.page-hero__copy {
  padding-left: 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.page-hero__copy span {
  color: var(--cyan);
  font: 700 11px/1 Arial, sans-serif;
  text-transform: uppercase;
}

.page-hero__copy p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(170px, 0.32fr) 1fr;
  gap: 5vw;
}

.page-intro__side {
  color: var(--blue);
  font: 700 12px/1.4 Arial, sans-serif;
  text-transform: uppercase;
}

.page-intro__main h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.25;
}

.page-intro__main > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.feature-rows {
  margin-top: 56px;
  border-top: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 90px 0.6fr 1fr;
  gap: 30px;
  min-height: 158px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row__index {
  color: var(--blue);
  font: 700 12px/1 Arial, sans-serif;
}

.feature-row h3 {
  margin: 0;
  font-size: 28px;
}

.feature-row p {
  margin: 0;
  color: var(--muted);
}

.org-band {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.org-band img {
  position: absolute;
  inset: 0;
  height: 110%;
  object-fit: cover;
  opacity: 0.33;
}

.org-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 14, 26, 0.96), rgba(3, 14, 26, 0.25));
}

.org-band__inner {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 58px;
}

.org-band h2 { margin: 0 0 36px; font-size: 44px; }
.org-list { display: flex; flex-wrap: wrap; gap: 10px; }
.org-list span { padding: 12px 16px; border: 1px solid rgba(255,255,255,.25); font-size: 13px; }

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.document-card {
  position: relative;
  width: 100%;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  cursor: zoom-in;
}

.document-card--clone { cursor: default; }

.document-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 20px;
  background: #eef3f8;
  overflow: hidden;
}

.document-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 120%;
  color: rgba(7, 80, 150, 0.2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%) rotate(-24deg);
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.85);
}

.document-card__media img {
  height: 100%;
  object-fit: contain;
  transition: transform 0.65s var(--ease);
}

.document-card:hover .document-card__media img { transform: scale(1.035); }

.document-card__body {
  min-height: 124px;
  padding: 24px;
  border-top: 1px solid var(--line);
}

.document-card__body span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
}

.document-card__body h3 {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.45;
}

.document-card__zoom {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: rgba(4, 16, 29, 0.76);
  border-radius: 50%;
}

.document-card__zoom svg { width: 16px; }

.honor-marquee {
  padding: 0 0 82px;
  overflow: hidden;
}

.honor-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: honorMove 42s linear infinite;
}

.honor-track:hover { animation-play-state: paused; }
.honor-track:focus-within { animation-play-state: paused; }
.honor-track .document-card { flex: 0 0 300px; }

.tabs {
  display: flex;
  gap: 8px;
  margin: 0 0 42px;
}

.tabs button {
  min-height: 44px;
  padding: 0 20px;
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}

.tabs button.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.software-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.software-grid .document-card__media { aspect-ratio: 1 / 1.18; padding: 14px; }
.software-grid .document-card__body { min-height: 92px; padding: 18px; }
.software-grid .document-card__body h3 { font-size: 15px; }

.business-sections {
  background: #fff;
}

.business-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 5vw;
  min-height: 0;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}

.business-detail:nth-child(even) .business-detail__media { order: 2; }

.business-detail__media {
  position: relative;
  height: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.business-detail__media img {
  height: 115%;
  object-fit: cover;
}

.business-detail__content {
  padding: 30px 0;
}

.business-detail__number {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--blue);
  font: 700 12px/1 Arial, sans-serif;
}

.business-detail__number::after {
  width: 56px;
  height: 1px;
  content: "";
  background: var(--blue);
}

.business-detail h2 {
  margin: 20px 0;
  font-size: 40px;
  line-height: 1.15;
}

.business-detail__content > p {
  margin: 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag-list span {
  padding: 8px 11px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  background: #edf5fc;
  border: 1px solid #d4e5f4;
}

.solution-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
  background: #fff;
}

.solution-panel:nth-child(even) .solution-panel__media { order: 2; }

.solution-panel__media {
  position: relative;
  overflow: hidden;
}

.solution-panel__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.solution-panel:hover .solution-panel__media img { transform: scale(1.035); }

.solution-panel__content {
  display: grid;
  align-content: center;
  padding: 48px 5vw;
}

.solution-panel__content > span {
  color: var(--blue);
  font: 700 12px/1 Arial, sans-serif;
}

.solution-panel h2 {
  margin: 16px 0 24px;
  font-size: 34px;
  line-height: 1.2;
}

.solution-points {
  display: grid;
  gap: 13px;
}

.solution-point {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  font-size: 13px;
}

.solution-point b { color: var(--ink); }
.solution-point p { margin: 0; color: var(--muted); }

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
}

.project-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.project-card__media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.project-card:hover .project-card__media img { transform: scale(1.035); }

.project-card__note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 10px;
  background: rgba(3, 15, 28, 0.72);
}

.project-card__body {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 26px;
}

.project-card__body span { color: var(--blue); font-size: 11px; font-weight: 700; }
.project-card__body h2 { margin: 8px 0 12px; font-size: 23px; }
.project-card__body p { margin: 0; color: var(--muted); font-size: 14px; }

.project-card__action {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.project-card__action svg {
  width: 16px;
  transition: transform 0.3s var(--ease);
}

.project-card__action:hover svg { transform: translateX(4px); }

.values-stage {
  display: grid;
  min-height: 560px;
  align-items: center;
  color: #fff;
  background: var(--ink);
  overflow: hidden;
}

.values-stage__inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 8vw;
  align-items: center;
}

.values-stage h2 { margin: 0; font-size: 54px; line-height: 1.12; }

.value-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.value-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.value-item span { color: var(--cyan); font: 700 11px/1 Arial, sans-serif; }
.value-item strong { font-size: 24px; }
.value-item svg { width: 18px; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 6vw;
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 110px;
}

.contact-info h2 { margin: 0; font-size: 44px; line-height: 1.18; }
.contact-info > p { color: var(--muted); }

.contact-lines {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line);
}

.contact-line {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-line svg { width: 18px; color: var(--blue); }
.contact-line span { display: block; color: var(--muted); font-size: 11px; }
.contact-line strong { display: block; margin-top: 4px; font-size: 15px; }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 40px;
  background: #fff;
  border: 1px solid var(--line);
}

.field {
  display: grid;
  gap: 9px;
}

.field--wide { grid-column: 1 / -1; }
.field label { font-size: 12px; font-weight: 700; }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(18, 104, 232, 0.1); }

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-size: 13px;
}

.form-status.is-pending { color: var(--blue); }
.form-status.is-success { color: #147a56; }
.form-status.is-error { color: #b42318; }

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

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

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

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(2, 10, 18, 0.94);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__document {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox img { width: auto; max-width: 92vw; max-height: 86vh; object-fit: contain; }

.lightbox .document-watermark {
  width: 90%;
  color: rgba(255, 255, 255, 0.28);
  font-size: 20px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.48);
}
.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  cursor: pointer;
}

.site-footer {
  color: #fff;
  background: #030d18;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 8vw;
  padding-top: 90px;
  padding-bottom: 74px;
}

.footer-main h2 {
  max-width: 750px;
  margin: 0;
  font-size: 50px;
  line-height: 1.18;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 26px;
  align-content: end;
}

.footer-nav a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.64);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.reveal,
.image-reveal {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(42px);
}

.js .image-reveal {
  clip-path: inset(0 0 100% 0);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 700;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor-dot { width: 5px; height: 5px; background: var(--cyan); }
.cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(70, 215, 255, 0.7); transition: width .25s, height .25s, background .25s; }
.cursor-active .cursor-ring { width: 58px; height: 58px; background: rgba(70, 215, 255, 0.1); }

.motion-paused .hero-grid::after,
.motion-paused .ticker,
.motion-paused .honor-track,
.motion-paused .horizontal-track,
.motion-paused .brand__mark::after,
.motion-paused .scroll-cue::after,
.motion-paused .preloader__line::after {
  animation-play-state: paused !important;
}

@keyframes loaderLine { to { transform: translateX(0); } }
@keyframes markScan { 0%, 58% { left: -80%; } 82%, 100% { left: 145%; } }
@keyframes gridScan { from { transform: translateX(0); } to { transform: translateX(100vw); } }
@keyframes scrollCue { from { background-position: 0 100%; } to { background-position: 0 -100%; } }
@keyframes tickerMove { to { transform: translateX(-50%); } }
@keyframes honorMove { to { transform: translateX(calc(-50% - 10px)); } }
@keyframes businessLoop { to { transform: translateX(calc(-50% - 9px)); } }

@media (max-width: 1180px) {
  :root { --page-pad: 34px; }
  .hero-title { font-size: 62px; }
  .page-hero h1 { font-size: 68px; }
  .display-heading,
  .business-showcase__head h2,
  .cta-stage h2 { font-size: 48px; }
  .brand { min-width: 175px; }
  .header-nav { gap: 11px; }
  .header-nav a { font-size: 12px; }
  .header__meta > a span { display: none; }
  .business-tile { flex-basis: 340px; width: 340px; height: 450px; }
  .software-grid { grid-template-columns: repeat(4, 1fr); }
  .contact-form { padding: 38px; }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; --page-pad: 24px; }
  .site-header { padding: 0 var(--page-pad); }
  .site-header { grid-template-columns: auto 1fr; }
  .header-nav { display: none; }
  .menu-toggle { display: grid; }
  .header__meta { justify-self: end; }
  .brand { min-width: 0; }
  .brand__text small,
  .header__meta > a { display: none; }
  .nav-overlay__inner { grid-template-columns: 1fr; align-items: start; gap: 34px; padding-top: 110px; }
  .nav-overlay__aside { display: none; }
  .main-nav strong { font-size: 19px; }
  .home-hero__content { grid-template-columns: 1fr; align-content: end; gap: 45px; padding-bottom: 48px; }
  .hero-title { font-size: 50px; }
  .hero-title small { font-size: 22px; }
  .hero-side { width: 300px; justify-self: start; padding-left: 20px; }
  .scroll-cue { display: none; }
  .intro-grid,
  .advantage-layout,
  .page-intro,
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .business-showcase__head { align-items: start; flex-direction: column; }
  .horizontal-viewport { overflow-x: auto; scrollbar-width: none; }
  .horizontal-viewport::-webkit-scrollbar { display: none; }
  .business-tile { height: 430px; }
  .project-feature { grid-template-columns: 1fr; }
  .home-projects__head { grid-template-columns: 1fr; gap: 28px; }
  .home-projects .project-feature { grid-template-rows: auto; }
  .home-projects .project-shot,
  .home-projects .project-stack .project-shot { height: 380px; min-height: 0; }
  .project-shot,
  .project-stack .project-shot { min-height: 420px; }
  .advantage-sticky,
  .contact-info { position: static; }
  .page-hero { min-height: clamp(480px, 60svh, 560px); }
  .page-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .page-hero h1 { font-size: 58px; }
  .page-hero__copy { max-width: 520px; }
  .feature-row { grid-template-columns: 60px 0.7fr 1fr; }
  .certificate-grid { grid-template-columns: 1fr 1fr; }
  .software-grid { grid-template-columns: repeat(3, 1fr); }
  .business-detail { grid-template-columns: 1fr; min-height: 0; gap: 30px; }
  .business-detail:nth-child(even) .business-detail__media { order: 0; }
  .business-detail__media { position: relative; top: auto; height: auto; }
  .solution-panel { grid-template-columns: 1fr; }
  .solution-panel:nth-child(even) .solution-panel__media { order: 0; }
  .solution-panel__media { min-height: 380px; }
  .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .values-stage__inner { grid-template-columns: 1fr; gap: 54px; }
  .footer-main { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 600px) {
  :root { --page-pad: 18px; }
  .shell { width: calc(100% - var(--page-pad) * 2); }
  .site-header { height: 66px; }
  .header__meta { gap: 8px; }
  .brand__mark { flex-basis: 36px; width: 36px; height: 36px; font-size: 17px; }
  .brand { min-width: 0; gap: 9px; }
  .brand__wordmark { width: 78px; }
  .brand__text small { display: none; }
  .menu-toggle { width: 40px; height: 40px; }
  .nav-overlay__inner { width: calc(100% - 36px); padding-top: 88px; padding-bottom: 24px; }
  .main-nav a { min-height: 49px; grid-template-columns: 34px 1fr auto; }
  .main-nav strong { font-size: 17px; }
  .home-hero__content { min-height: 100svh; padding-top: 105px; padding-bottom: 28px; gap: 28px; }
  .hero-title { font-size: 38px; line-height: 1.13; }
  .hero-title small { margin-top: 16px; font-size: 18px; }
  .hero-description { margin-top: 18px; font-size: 14px; line-height: 1.65; }
  .hero-actions { margin-top: 22px; }
  .button { min-height: 46px; padding: 0 17px; }
  .hero-side { width: 100%; padding-left: 16px; }
  .hero-side__count strong { font-size: 32px; }
  .hero-side__name { min-height: 0; margin: 10px 0 13px; font-size: 15px; }
  .hero-side__description { min-height: 0; margin-bottom: 8px; font-size: 12px; }
  .hero-side__link { margin-bottom: 12px; }
  .hero-dots { margin-top: 10px; }
  .hero-grid { background-size: 33.333% 100%; }
  .section { padding: 58px 0; }
  .section-label { grid-template-columns: 48px 1fr; margin-bottom: 26px; }
  .display-heading,
  .business-showcase__head h2,
  .cta-stage h2,
  .advantage-sticky h2,
  .values-stage h2,
  .footer-main h2 { font-size: 34px; }
  .lead-copy { font-size: 15px; }
  .stats-band { margin-top: 56px; }
  .stat { min-height: 134px; padding: 24px 16px; }
  .stat strong { margin-top: 14px; font-size: 35px; }
  .business-showcase__head { margin-bottom: 34px; }
  .horizontal-track,
  .business-track__set { gap: 14px; }
  .business-tile {
    flex-basis: min(82vw, 320px);
    width: min(82vw, 320px);
    height: 410px;
  }
  .business-tile__content { right: 22px; bottom: 22px; left: 22px; }
  .project-shot,
  .project-stack .project-shot { min-height: 340px; }
  .home-projects { padding: 54px 0; }
  .home-projects__head h2 { font-size: 32px; }
  .home-projects .project-shot,
  .home-projects .project-stack .project-shot { height: 300px; min-height: 0; }
  .project-shot__caption { right: 18px; bottom: 18px; left: 18px; }
  .project-shot__caption strong { font-size: 18px; }
  .ticker__set span { gap: 18px; padding-right: 18px; font-size: 36px; }
  .advantage-item { grid-template-columns: 36px 1fr 30px; min-height: 92px; }
  .advantage-item strong { font-size: 17px; }
  .cta-stage { min-height: 420px; }
  .page-hero { min-height: clamp(420px, 56svh, 500px); }
  .page-hero__inner { padding-top: 105px; padding-bottom: 34px; }
  .page-hero h1 { font-size: 40px; }
  .page-hero__copy { padding-left: 16px; }
  .page-intro__main h2 { font-size: 30px; }
  .page-intro__main > p { font-size: 15px; }
  .feature-rows { margin-top: 38px; }
  .feature-row { grid-template-columns: 38px 1fr; gap: 16px; min-height: 0; padding: 30px 0; }
  .feature-row p { grid-column: 2; font-size: 14px; }
  .feature-row h3 { font-size: 22px; }
  .org-band h2 { font-size: 32px; }
  .certificate-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 44px; }
  .document-card__media { aspect-ratio: 1 / 0.82; }
  .document-card__body { min-height: 96px; padding: 18px; }
  .honor-track .document-card { flex-basis: min(82vw, 310px); }
  .software-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .software-grid .document-card__media { aspect-ratio: 1 / 1.12; padding: 8px; }
  .software-grid .document-card__body { min-height: 78px; padding: 12px; }
  .software-grid .document-card__body h3 { font-size: 13px; overflow-wrap: anywhere; }
  .document-card__zoom { top: 10px; right: 10px; width: 32px; height: 32px; }
  .business-detail { padding: 50px 0; }
  .business-detail__media { height: auto; }
  .business-detail h2 { font-size: 32px; }
  .solution-panel__media { min-height: 250px; }
  .solution-panel__content { padding: 34px 20px 40px; }
  .solution-panel h2 { font-size: 28px; }
  .solution-point { grid-template-columns: 64px 1fr; gap: 10px; }
  .project-grid { display: grid; grid-template-columns: 1fr; gap: 22px; margin-top: 36px; }
  .project-card { margin-bottom: 0; }
  .project-card__body h2 { font-size: 22px; }
  .values-stage { min-height: 540px; padding: 64px 0; }
  .value-item { min-height: 68px; }
  .value-item strong { font-size: 20px; }
  .contact-form { grid-template-columns: 1fr; padding: 24px 18px; gap: 18px; }
  .field--wide { grid-column: auto; }
  .contact-info h2 { font-size: 34px; }
  .lightbox { padding: 16px; }
  .footer-main { padding-top: 70px; padding-bottom: 54px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 4px 16px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; gap: 4px; }
  .cursor-dot,
  .cursor-ring { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
  .js .image-reveal { clip-path: none; }
  .horizontal-viewport { overflow-x: auto; }
  .horizontal-track { animation: none; }
  .business-track__set[aria-hidden="true"] { display: none; }
}
