:root {
  --black: #030303;
  --black-2: #0b0b0b;
  --black-3: #131313;
  --white: #f5f2eb;
  --muted: #8e8b84;
  --line: rgba(245, 242, 235, 0.13);
  --red: #b56f61;
  --red-2: #c69a86;
  --amber: #b7a57d;
  --ice: #829aa2;
  --green: #8fa18a;
  --max: 1200px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    var(--black);
  background-size: 76px 76px;
  color: var(--white);
  font-family: "Microsoft YaHei", "微软雅黑", Arial, "PingFang SC", sans-serif;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, transparent 0%, rgba(181, 111, 97, 0.08) 36%, transparent 62%),
    linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.055) 43%, transparent 54%);
  opacity: 0.9;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.12) 0,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px,
    transparent 5px
  );
  mix-blend-mode: screen;
}

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

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

h1,
h2,
h3,
p,
figure {
  margin-top: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-2), var(--white));
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 24px;
  right: 34px;
  left: 34px;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 12px 16px;
  border: 0;
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  width: max-content;
}

.brand-wordmark {
  display: inline-block;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.brand-submark {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 235, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.main-nav a,
.header-action,
.primary-button,
.ghost-button {
  transition:
    transform 220ms ease,
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.header-action {
  justify-self: end;
  min-width: 104px;
  padding: 12px 18px;
  border: 1px solid rgba(245, 242, 235, 0.18);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.header-action:hover,
.primary-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.menu-toggle,
.menu-close {
  display: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
}

.menu-toggle span:nth-child(1),
.menu-toggle span:nth-child(2) {
  width: 24px;
}

.menu-toggle span:nth-child(3) {
  width: 16px;
  margin-left: 8px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 24px 34px 42px;
  background: rgba(3, 3, 3, 0.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu-close {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 10px;
  width: 24px;
  height: 2px;
  background: var(--white);
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

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

.mobile-menu-links {
  display: grid;
  align-content: center;
  gap: 18px;
}

.mobile-menu-links a,
.mobile-menu-action {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mobile-menu.is-open .mobile-menu-links a,
.mobile-menu.is-open .mobile-menu-action {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-links a {
  color: var(--white);
  font-size: 54px;
  font-weight: 900;
  line-height: 0.98;
}

.mobile-menu-links a:nth-child(1) {
  transition-delay: 100ms;
}

.mobile-menu-links a:nth-child(2) {
  transition-delay: 180ms;
}

.mobile-menu-links a:nth-child(3) {
  transition-delay: 260ms;
}

.mobile-menu-links a:nth-child(4) {
  transition-delay: 340ms;
}

.mobile-menu-links a:nth-child(5) {
  transition-delay: 420ms;
}

.mobile-menu-links a:nth-child(6) {
  transition-delay: 500ms;
}

.mobile-menu-action {
  display: inline-flex;
  width: max-content;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid rgba(245, 242, 235, 0.28);
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  transition-delay: 420ms;
}

.hero-section {
  position: relative;
  display: flex;
  height: 100vh;
  min-height: 100vh;
  align-items: flex-end;
  overflow: hidden;
  padding: 132px max(34px, calc((100vw - var(--max)) / 2)) 16vh;
  background: var(--black);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.98) contrast(1.14) brightness(0.76);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 66% 48%, rgba(181, 111, 97, 0.13), transparent 26%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.58) 42%, rgba(3, 3, 3, 0.18) 72%, rgba(3, 3, 3, 0.66) 100%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.64) 0%, rgba(3, 3, 3, 0.16) 44%, rgba(3, 3, 3, 0.94) 100%);
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.42;
}

.hero-backdrop::before,
.hero-backdrop::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
}

.hero-backdrop::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(3, 3, 3, 0.12), rgba(3, 3, 3, 0.84) 62%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.38), rgba(3, 3, 3, 0.9) 76%);
}

.hero-backdrop::after {
  background: linear-gradient(90deg, rgba(3, 3, 3, 0.88), transparent 28%, transparent 72%, rgba(3, 3, 3, 0.88));
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.12);
  transform: scale(1.04);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-section::before {
  position: absolute;
  right: -120px;
  bottom: 11vh;
  left: -120px;
  z-index: -1;
  height: 32vh;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(181, 111, 97, 0.18) 50%, transparent);
  filter: blur(32px);
  opacity: 0.82;
  transform: perspective(980px) rotateX(72deg);
}

.hero-rail {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 12px;
  color: rgba(245, 242, 235, 0.62);
  font-size: 11px;
  font-weight: 900;
  transform: translateY(-50%);
}

.left-rail {
  left: 38px;
}

.right-rail {
  right: 38px;
  text-align: right;
}

.hero-center,
.hero-content {
  position: relative;
  z-index: 5;
}

.hero-content {
  width: min(960px, 100%);
  padding-top: 0;
  text-align: left;
}

.micro-label {
  margin-bottom: 14px;
  color: rgba(245, 242, 235, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.hero-kicker,
.hero-brand-note {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 242, 235, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.hero-kicker {
  margin-bottom: 22px;
}

.hero-kicker svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(245, 242, 235, 0.72);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-brand-note {
  margin-bottom: 8px;
  color: rgba(245, 242, 235, 0.92);
  font-size: 13px;
}

.hero-title {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--white);
  font-size: clamp(82px, 12vw, 174px);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(142, 31, 21, 0.66),
    0 24px 58px rgba(0, 0, 0, 0.62);
}

.hero-cn {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
}

.hero-copy {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(245, 242, 235, 0.72);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.72;
}

.hero-stage {
  position: absolute;
  right: 13vw;
  bottom: 48px;
  left: 13vw;
  z-index: 2;
  height: 210px;
  pointer-events: none;
  opacity: 0.56;
  transform-style: preserve-3d;
}

.stage-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(245, 242, 235, 0.14);
  background:
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.74) 100%),
    var(--card-bg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  opacity: 0.92;
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  transition: transform 360ms ease;
}

.stage-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.82) 100%);
}

.stage-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
  filter: saturate(0.95) contrast(1.08);
}

.stage-card span {
  margin-bottom: 9px;
  color: rgba(245, 242, 235, 0.7);
  font-size: 11px;
  font-weight: 900;
  opacity: 0.72;
}

.stage-card strong {
  font-size: 22px;
  font-weight: 900;
  opacity: 0.78;
}

.stage-card small {
  margin-top: 9px;
  color: rgba(245, 242, 235, 0.58);
  font-size: 12px;
  font-weight: 800;
  opacity: 0.7;
}

.stage-with-image {
  background: var(--black-2);
}

.stage-main {
  --card-bg: linear-gradient(135deg, #2f261c, #080808 70%);
  bottom: 24px;
  left: 26%;
  width: 242px;
  height: 152px;
}

.stage-ice {
  --card-bg: linear-gradient(135deg, #0c2532, #070707 70%);
  right: 12%;
  bottom: 42px;
  width: 206px;
  height: 136px;
}

.stage-fire {
  --card-bg: linear-gradient(135deg, #45180f, #080808 70%);
  bottom: 6px;
  left: 7%;
  width: 214px;
  height: 138px;
}

.stage-moon {
  --card-bg: linear-gradient(135deg, #281824, #070707 70%);
  right: 31%;
  bottom: 0;
  width: 218px;
  height: 138px;
}

.hero-bottom {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  z-index: 6;
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 14px;
  align-items: center;
}

.primary-button,
.ghost-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-weight: 900;
}

.primary-button {
  background: var(--red);
  color: var(--black);
}

.ghost-button {
  border: 1px solid rgba(245, 242, 235, 0.2);
  background: rgba(245, 242, 235, 0.04);
  color: var(--white);
}

.hero-meta {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  color: rgba(245, 242, 235, 0.55);
  font-size: 11px;
  font-weight: 900;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 26px;
}

.hero-cta-row .primary-button {
  min-height: 54px;
  gap: 12px;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.86);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(245, 242, 235, 0.18);
}

.hero-cta-row .primary-button span {
  transition: transform 220ms ease;
}

.hero-cta-row .primary-button:hover span {
  transform: translate(2px, -2px);
}

.hero-service-tag {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0 18px;
  border: 1px solid rgba(245, 242, 235, 0.16);
  color: rgba(245, 242, 235, 0.66);
  font-size: 12px;
  font-weight: 900;
}

.animate-fade-up,
.animate-fade-up-delay-1,
.animate-fade-up-delay-2,
.animate-fade-up-delay-3,
.animate-fade-up-delay-4 {
  opacity: 0;
  animation: fadeUp 800ms ease-out forwards;
}

.animate-fade-up-delay-1 {
  animation-delay: 180ms;
}

.animate-fade-up-delay-2 {
  animation-delay: 360ms;
}

.animate-fade-up-delay-3 {
  animation-delay: 540ms;
}

.animate-fade-up-delay-4 {
  animation-delay: 720ms;
}

.section,
.brand-wall-section,
.contact-section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 110px 0;
}

.section-head {
  margin-bottom: 44px;
}

.split-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.8fr);
  gap: 56px;
  align-items: end;
}

h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 76px);
  font-weight: 900;
  line-height: 1.04;
  text-wrap: balance;
}

#brand-title {
  font-size: clamp(44px, 6vw, 82px);
  white-space: nowrap;
}

.section-head > p,
.split-head > p {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(245, 242, 235, 0.68);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.85;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: start;
}

.about-copy {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.about-copy p,
.team-panel p {
  margin-bottom: 18px;
  color: rgba(245, 242, 235, 0.7);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.9;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tag-cloud span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(245, 242, 235, 0.14);
  background: rgba(245, 242, 235, 0.035);
  color: rgba(245, 242, 235, 0.7);
  font-size: 13px;
  font-weight: 900;
}

.operation-panel {
  margin-top: 42px;
}

.delivery-panel {
  margin-top: 34px;
}

.operation-panel + .operation-panel {
  margin-top: 34px;
}

.operation-panel-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 16px;
}

.operation-panel-head h3 {
  margin: 0;
  color: rgba(245, 242, 235, 0.9);
  font-size: clamp(21px, 1.8vw, 26px);
  font-weight: 900;
  line-height: 1.1;
}

.operation-panel-head .operation-goals {
  justify-content: flex-end;
  margin-bottom: 0;
}

.operation-goals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.operation-goals span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(181, 111, 97, 0.32);
  background: rgba(181, 111, 97, 0.1);
  color: rgba(245, 242, 235, 0.78);
  font-size: 13px;
  font-weight: 900;
}

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

.delivery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.operation-grid article {
  --card-accent: 181, 111, 97;
  position: relative;
  min-height: 176px;
  overflow: hidden;
  border: 1px solid rgba(var(--card-accent), 0.24);
  border-radius: 8px;
  padding: 23px 22px 21px;
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--card-accent), 0.26), transparent 34%),
    linear-gradient(145deg, rgba(var(--card-accent), 0.14), transparent 52%),
    rgba(245, 242, 235, 0.03);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(245, 242, 235, 0.09),
    0 22px 50px rgba(var(--card-accent), 0.045);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.operation-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(var(--card-accent), 0.92),
    rgba(var(--card-accent), 0.12)
  );
  content: "";
}

.operation-grid article:nth-child(2) {
  --card-accent: 137, 154, 144;
}

.operation-grid article:nth-child(3) {
  --card-accent: 154, 133, 132;
}

.operation-grid article:nth-child(4) {
  --card-accent: 135, 147, 154;
}

.operation-grid article:nth-child(5) {
  --card-accent: 184, 170, 135;
}

.operation-grid article:hover {
  border-color: rgba(var(--card-accent), 0.5);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--card-accent), 0.34), transparent 38%),
    linear-gradient(145deg, rgba(var(--card-accent), 0.18), transparent 52%),
    rgba(245, 242, 235, 0.042);
  transform: translateY(-3px);
}

.operation-grid h3 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 25px);
  font-weight: 900;
  line-height: 1.2;
}

.operation-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 17px;
  color: rgba(245, 242, 235, 0.66);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

.operation-grid li::marker {
  color: rgba(var(--card-accent), 0.86);
}

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

.collaboration-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(240, 75, 51, 0.12), transparent 42%),
    rgba(245, 242, 235, 0.03);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.info-card:hover,
.capability-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 242, 235, 0.24);
  background:
    linear-gradient(145deg, rgba(240, 75, 51, 0.18), transparent 48%),
    rgba(245, 242, 235, 0.045);
}

.info-card span {
  display: block;
  margin-bottom: 54px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 16px;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.08;
}

.info-card p {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.64);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.72;
}

.tool-lab-section {
  padding-top: 88px;
}

.tool-demo {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.08fr 0.92fr;
  gap: 14px;
  min-height: 420px;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(143, 161, 138, 0.12), transparent 42%),
    rgba(245, 242, 235, 0.035);
}

.demo-panel {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background: rgba(5, 5, 5, 0.74);
  box-shadow: inset 0 0 0 1px rgba(245, 242, 235, 0.1);
}

.demo-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: rgba(245, 242, 235, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.demo-panel-head i {
  width: 8px;
  height: 8px;
  background: var(--green);
}

.script-lines {
  display: grid;
  gap: 12px;
}

.script-lines p,
.prompt-output p {
  margin: 0;
  padding: 12px;
  background: rgba(245, 242, 235, 0.06);
  color: rgba(245, 242, 235, 0.72);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.72;
}

.demo-import {
  position: absolute;
  right: 18px;
  bottom: 18px;
  min-height: 42px;
  border: 0;
  padding: 0 18px;
  background: #b8aa87;
  color: #171513;
  font-family: inherit;
  font-weight: 900;
  animation: demoButtonPulse 4.8s ease-in-out infinite;
}

.engine-tabs,
.image-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.engine-tabs span,
.image-breakdown span {
  padding: 8px 10px;
  background: rgba(245, 242, 235, 0.07);
  color: rgba(245, 242, 235, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.analysis-board {
  display: grid;
  gap: 14px;
  margin: 34px 0;
}

.analysis-row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  align-items: center;
  color: rgba(245, 242, 235, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.analysis-row i {
  position: relative;
  height: 8px;
  overflow: hidden;
  background: rgba(245, 242, 235, 0.08);
}

.analysis-row i::after {
  position: absolute;
  inset: 0;
  width: 64%;
  content: "";
  background: linear-gradient(90deg, #8ea0a3, #b8aa87);
  transform: translateX(-105%);
  animation: analysisScan 4.8s ease-in-out infinite;
}

.analysis-row:nth-child(2) i::after {
  animation-delay: 0.22s;
}

.analysis-row:nth-child(3) i::after {
  animation-delay: 0.44s;
}

.analysis-row:nth-child(4) i::after {
  animation-delay: 0.66s;
}

.prompt-output {
  display: grid;
  gap: 12px;
}

.prompt-output p {
  transform: translateY(12px);
  opacity: 0;
  animation: promptReveal 4.8s ease-in-out infinite;
}

.prompt-output p:nth-child(2) {
  animation-delay: 0.22s;
}

.prompt-output p:nth-child(3) {
  animation-delay: 0.44s;
}

.demo-cursor {
  position: absolute;
  z-index: 4;
  width: 24px;
  height: 24px;
  pointer-events: none;
  clip-path: polygon(0 0, 0 100%, 30% 78%, 48% 100%, 64% 92%, 47% 69%, 78% 66%);
  background: #f5f2eb;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, 0.42));
  animation: demoCursorMove 4.8s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

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

.capability-card {
  min-height: 210px;
  border: 1px solid rgba(245, 242, 235, 0.12);
  border-radius: 8px;
  padding: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(240, 75, 51, 0.16), transparent 34%),
    rgba(245, 242, 235, 0.028);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.capability-card span {
  display: block;
  margin-bottom: 42px;
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.capability-card p {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.66);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.76;
}

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

.work-card {
  position: relative;
  display: flex;
  min-height: 300px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 0;
  padding: 28px;
  background: var(--work-bg);
  color: #171513;
  isolation: isolate;
  transition:
    transform 260ms ease,
    filter 260ms ease;
}

.work-card::before {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 42%;
  height: 1px;
  content: "";
  background: rgba(20, 18, 16, 0.28);
}

.work-card:hover {
  filter: brightness(1.04);
  transform: translateY(-4px);
}

.work-number {
  color: rgba(20, 18, 16, 0.52);
  font-size: 15px;
  font-weight: 900;
}

.work-card p {
  margin-bottom: 14px;
  color: rgba(20, 18, 16, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.work-card h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.08;
}

.tone-gold {
  --work-bg: #b8aa87;
}

.tone-ice {
  --work-bg: #8ea0a3;
}

.tone-fire {
  --work-bg: #b58a80;
}

.tone-moon {
  --work-bg: #a69aa6;
}

.visual-section {
  padding-top: 72px;
}

.photo-wall {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  padding: 8px 0 22px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.case-wall-block {
  margin-bottom: 28px;
}

.case-wall-block:last-child {
  margin-bottom: 0;
}

.case-wall-head {
  width: min(var(--max), calc(100vw - 56px));
  margin: 0 auto 12px;
}

.case-wall-head span {
  color: rgba(245, 242, 235, 0.7);
  font-size: 18px;
  font-weight: 900;
}

.photo-wall-row {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
  animation: photoWallLeft 96s linear infinite;
}

.row-right {
  animation-name: photoWallRight;
  animation-duration: 86s;
}

.photo-wall-item {
  position: relative;
  flex: 0 0 auto;
  margin: 0;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.photo-wall-item img {
  width: auto;
  height: clamp(250px, 26vw, 410px);
  max-width: none;
  object-fit: contain;
  filter: saturate(0.92) contrast(1.02);
}

.photo-wall-item figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  left: 10px;
  color: rgba(245, 242, 235, 0.76);
  font-size: 12px;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.72);
}

.photo-wall-item.is-portrait img {
  height: clamp(320px, 34vw, 540px);
}

.video-group {
  margin-top: 36px;
}

.video-group-head {
  margin-bottom: 14px;
  border-top: 1px solid rgba(245, 242, 235, 0.14);
  padding-top: 18px;
}

.video-group-head span {
  color: rgba(245, 242, 235, 0.74);
  font-size: 18px;
  font-weight: 900;
}

.video-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 0;
}

.hover-video-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  margin: 0;
  background:
    linear-gradient(180deg, rgba(4, 4, 4, 0.08), rgba(4, 4, 4, 0.4)),
    var(--poster-image),
    #11100f;
  background-position: center;
  background-size: cover;
  box-shadow: inset 0 0 0 1px rgba(245, 242, 235, 0.1);
  cursor: zoom-in;
}

.hover-video-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: transparent;
  object-fit: cover;
  opacity: 0;
  filter: saturate(0.86) contrast(1.03) brightness(0.88);
  transition:
    filter 260ms ease,
    opacity 220ms ease,
    transform 420ms ease;
}

.hover-video-card:hover video,
.hover-video-card:focus-within video {
  opacity: 1;
  filter: saturate(1) contrast(1.06) brightness(0.98);
  transform: scale(1.015);
}

.hover-video-card > div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  padding: 54px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(3, 3, 3, 0.78));
}

.hover-video-card span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 242, 235, 0.62);
  font-size: 12px;
  font-weight: 900;
}

.hover-video-card h3 {
  margin: 0;
  color: var(--white);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.12;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 32px;
  background: rgba(3, 3, 3, 0.88);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(18px);
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.video-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-lightbox video {
  width: min(1120px, 92vw);
  max-height: 82vh;
  background: #000;
  object-fit: contain;
}

.lightbox-close {
  position: fixed;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 0;
  background: rgba(245, 242, 235, 0.12);
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.visual-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.trailer-panel {
  position: relative;
  display: grid;
  min-height: 520px;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  overflow: hidden;
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(240, 75, 51, 0.14), transparent 34%),
    rgba(245, 242, 235, 0.035);
}

.trailer-copy {
  position: relative;
  z-index: 2;
  max-width: 380px;
}

.trailer-copy h3 {
  margin-bottom: 18px;
  color: var(--red);
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900;
  line-height: 0.94;
}

.trailer-copy p:last-child {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.68);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.84;
}

.trailer-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(245, 242, 235, 0.14);
  background: var(--black);
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
}

.asset-mosaic {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr 0.82fr;
  grid-auto-rows: minmax(220px, 19vw);
  gap: 18px;
}

.asset-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--black-2);
}

.asset-large {
  grid-row: span 2;
}

.asset-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transition:
    filter 280ms ease,
    transform 640ms ease;
}

.asset-frame:hover img {
  filter: saturate(1.02) contrast(1.12);
  transform: scale(1.055);
}

.asset-frame figcaption {
  position: absolute;
  right: 16px;
  bottom: 14px;
  left: 16px;
  color: rgba(245, 242, 235, 0.76);
  font-size: 13px;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.78);
}

.asset-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 46%, rgba(3, 3, 3, 0.72));
}

.service-stack {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.55fr) minmax(260px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  transition:
    padding 240ms ease,
    background 240ms ease;
}

.service-row:hover {
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(245, 242, 235, 0.045);
}

.service-row span {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
}

.service-row h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 4vw, 56px);
  font-weight: 900;
}

.service-row p {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.66);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

.brand-wall-section {
  width: 100%;
  max-width: none;
}

.home-brand-wall {
  margin: 0;
  padding: 20px 0 22px;
  background:
    linear-gradient(180deg, rgba(240, 75, 51, 0.08), transparent 72%),
    rgba(3, 3, 3, 0.96);
}

.brand-wall-section .section-head,
.wall-title {
  width: min(var(--max), calc(100% - 56px));
  margin-right: auto;
  margin-left: auto;
}

.wall-group {
  margin-top: 34px;
}

.home-brand-wall .wall-group {
  margin-top: 0;
}

.home-brand-wall .wall-group + .wall-group {
  margin-top: 4px;
}

.home-brand-wall .marquee-track {
  padding: 8px 0;
}

.wall-title {
  margin-bottom: 14px;
  color: rgba(245, 242, 235, 0.58);
  font-size: 14px;
  font-weight: 900;
}

.marquee {
  overflow: hidden;
  border-top: 0;
  border-bottom: 0;
  background: transparent;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 15px 0;
  animation: logoLeft 36s linear infinite;
}

.marquee-right .marquee-track {
  animation-name: logoRight;
  animation-duration: 52s;
}

.logo-tile {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 188px;
  height: 82px;
  margin: 0;
  padding: 18px 22px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  box-shadow: none;
}

.logo-tile img {
  width: 100%;
  max-width: 132px;
  max-height: 46px;
  object-fit: contain;
}

.logo-source-light img {
  filter: invert(1) brightness(1.8) contrast(1.05);
}

.logo-dark-mark img {
  filter: invert(1) brightness(1.22) contrast(1.06);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.workflow-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid article {
  min-height: 300px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 242, 235, 0.025);
}

.process-grid span {
  display: inline-block;
  margin-bottom: 100px;
  color: var(--red);
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
  color: rgba(245, 242, 235, 0.62);
  font-weight: 700;
  line-height: 1.72;
}

.team-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}

.team-tags {
  margin-top: 0;
}

.contact-section {
  padding-top: 110px;
  text-align: center;
}

.contact-section h2 {
  color: var(--red);
  text-shadow: 0 18px 46px rgba(240, 75, 51, 0.22);
}

.contact-section p {
  max-width: 700px;
  margin: 24px auto 32px;
  color: rgba(245, 242, 235, 0.7);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  max-width: 980px;
  margin: 0 auto 32px;
  text-align: center;
}

.contact-info a,
.contact-info div {
  display: inline-flex;
  min-height: auto;
  align-items: baseline;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-info span {
  color: rgba(245, 242, 235, 0.5);
  font-size: 12px;
  font-weight: 900;
}

.contact-info strong {
  color: rgba(245, 242, 235, 0.82);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid var(--line);
  color: rgba(245, 242, 235, 0.48);
  font-size: 13px;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.04) translate3d(-0.8%, -0.8%, 0);
  }
  to {
    transform: scale(1.09) translate3d(0.8%, 0.8%, 0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes logoRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes photoWallLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes photoWallRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes demoCursorMove {
  0%,
  12% {
    top: 72%;
    left: 20%;
    transform: scale(1);
  }
  18%,
  22% {
    top: 78%;
    left: 27%;
    transform: scale(0.86);
  }
  34%,
  46% {
    top: 40%;
    left: 50%;
    transform: scale(1);
  }
  60%,
  74% {
    top: 52%;
    left: 76%;
    transform: scale(1);
  }
  100% {
    top: 72%;
    left: 20%;
    transform: scale(1);
  }
}

@keyframes demoButtonPulse {
  0%,
  16%,
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
  20%,
  24% {
    transform: scale(0.96);
    filter: brightness(1.12);
  }
}

@keyframes analysisScan {
  0%,
  26% {
    transform: translateX(-105%);
  }
  46%,
  74% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(110%);
  }
}

@keyframes promptReveal {
  0%,
  44% {
    opacity: 0;
    transform: translateY(12px);
  }
  56%,
  86% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-stage {
    right: 4vw;
    left: 4vw;
  }

  .about-grid,
  .team-panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .card-grid,
  .operation-grid,
  .tool-demo,
  .video-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .prompt-panel {
    grid-column: 1 / -1;
  }

  .trailer-panel {
    grid-template-columns: 1fr;
  }

  .asset-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .asset-large {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 14px;
    right: 14px;
    left: 14px;
    grid-template-columns: 1fr auto;
    padding: 10px 12px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-wordmark {
    font-size: 20px;
  }

  .brand-submark {
    display: none;
  }

  .header-action {
    display: none;
  }

  .hero-section {
    min-height: 100svh;
    align-items: flex-end;
    padding: 112px 18px 48px;
  }

  .hero-video {
    opacity: 0.55;
  }

  .hero-video-overlay {
    background:
      linear-gradient(90deg, rgba(3, 3, 3, 0.92), rgba(3, 3, 3, 0.58)),
      linear-gradient(180deg, rgba(3, 3, 3, 0.7), rgba(3, 3, 3, 0.18) 42%, rgba(3, 3, 3, 0.94));
  }

  .hero-rail {
    display: none;
  }

  .hero-content {
    width: 100%;
    padding-top: 10px;
  }

  .hero-kicker {
    margin-bottom: 18px;
    font-size: 10px;
    line-height: 1.5;
  }

  .hero-brand-note {
    font-size: 13px;
  }

  .hero-title {
    gap: 0;
    font-size: 64px;
    line-height: 0.98;
  }

  h1 {
    font-size: 78px;
    white-space: normal;
  }

  .hero-cn {
    font-size: 27px;
  }

  .hero-copy {
    max-width: 100%;
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.78;
  }

  .hero-cta-row {
    gap: 14px;
    margin-top: 26px;
  }

  .hero-service-tag {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
  }

  .hero-cta-row .primary-button {
    min-height: 50px;
    padding: 0 20px;
    font-size: 13px;
  }

  .mobile-menu {
    padding: 18px 20px 34px;
  }

  .mobile-menu-links a {
    font-size: 46px;
  }

  .hero-stage {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 300px;
    margin-top: 22px;
    opacity: 0.78;
  }

  .stage-card {
    min-height: 138px;
    padding: 16px;
  }

  .stage-card strong {
    font-size: 20px;
  }

  .stage-main {
    bottom: 30px;
    left: 5%;
    width: 46%;
    height: 210px;
  }

  .stage-ice {
    display: none;
  }

  .stage-fire {
    bottom: 8px;
    left: 0;
    width: 43%;
    height: 150px;
  }

  .stage-moon {
    right: 5%;
    bottom: 0;
    width: 48%;
    height: 150px;
  }

  .hero-bottom {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 18px;
  }

  .hero-meta {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .section,
  .brand-wall-section,
  .contact-section {
    width: calc(100% - 28px);
    padding: 72px 0;
  }

  .brand-wall-section {
    width: 100%;
  }

  .brand-wall-section .section-head,
  .wall-title {
    width: calc(100% - 28px);
  }

  .split-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  h2 {
    font-size: 44px;
  }

  #brand-title {
    white-space: normal;
  }

  .works-grid,
  .process-grid,
  .card-grid,
  .capability-matrix,
  .operation-grid,
  .tool-demo,
  .video-showcase,
  .contact-info {
    grid-template-columns: 1fr;
  }

  .prompt-panel {
    grid-column: auto;
  }

  .info-card {
    min-height: 220px;
  }

  .info-card span {
    margin-bottom: 38px;
  }

  .operation-panel {
    margin-top: 30px;
  }

  .operation-panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .operation-panel-head .operation-goals {
    justify-content: flex-start;
  }

  .operation-grid h3 {
    font-size: 22px;
  }

  .capability-card {
    min-height: 190px;
    padding: 22px;
  }

  .capability-card span {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .about-copy p,
  .team-panel p {
    font-size: 15px;
  }

  .work-card {
    min-height: 220px;
  }

  .visual-section {
    padding-top: 42px;
  }

  .trailer-panel {
    min-height: auto;
    padding: 18px 0;
    border-bottom: 0;
    background: transparent;
  }

  .trailer-copy h3 {
    font-size: 46px;
  }

  .asset-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(220px, 62vw);
    gap: 12px;
  }

  .photo-wall-item {
    width: 76vw;
    height: 68vw;
  }

  .hover-video-card,
  .hover-video-card video {
    min-height: 0;
  }

  .tool-demo {
    min-height: auto;
    padding: 12px;
  }

  .demo-cursor {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 28px 0;
  }

  .service-row:hover {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .logo-tile {
    width: 154px;
    height: 70px;
    padding: 14px 18px;
    font-size: 15px;
  }

  .logo-tile img {
    max-width: 104px;
  }

  .process-grid article {
    min-height: 220px;
  }

  .process-grid span {
    margin-bottom: 54px;
  }

  .site-footer {
    flex-direction: column;
    width: calc(100% - 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
