@import url("https://fonts.googleapis.com/css2?family=Ma+Shan+Zheng&display=swap");

:root {
  --ink: #11110f;
  --paper: #f4f1ea;
  --soft: #e5dfd4;
  --line: rgba(17, 17, 15, 0.18);
  --muted: #756f65;
  --orange: #f05d23;
  --green: #6e8f62;
  --blue: #305f8f;
  --pink: #e8a7b5;
  --teal: #27a59d;
  --footer-blue: #919fba;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

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

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 14px clamp(18px, 3vw, 46px);
  border-bottom: 1px solid var(--line);
  background: rgba(244, 241, 234, 0.78);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 1px;
  flex: 0 0 auto;
  font-weight: 900;
  text-transform: uppercase;
}

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

.top-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 2vw, 26px);
  font-size: clamp(12px, 1.2vw, 15px);
  font-weight: 800;
}

.top-nav a {
  position: relative;
  padding: 9px 0;
}

.top-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--ink);
  transition: transform 220ms ease;
}

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

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: 104px clamp(18px, 4vw, 64px) 36px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 70px 0 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.35;
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: start;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(58px, 14vw, 176px);
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-title-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-title-word + .hero-title-word::before {
  content: " ";
  white-space: pre;
}

.hero-title-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(var(--fall-x), -115vh, 0) rotate(var(--fall-rotate));
  transform-origin: 50% 92%;
  will-change: transform, opacity;
}

.hero-title.is-dropping .hero-title-char {
  animation: hero-letter-drop var(--fall-duration) cubic-bezier(0.18, 0.78, 0.24, 1) var(--fall-delay) both;
}

@keyframes hero-letter-drop {
  0% {
    opacity: 0;
    transform: translate3d(var(--fall-x), -115vh, 0) rotate(var(--fall-rotate));
  }
  58% {
    opacity: 1;
    transform: translate3d(0, 10px, 0) rotate(0deg);
  }
  72% {
    opacity: 1;
    transform: translate3d(var(--bounce-x), -8px, 0) rotate(var(--bounce-rotate));
  }
  84% {
    transform: translate3d(0, 3px, 0) rotate(0deg);
  }
  93% {
    transform: translate3d(0, -1px, 0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

.hero-intro {
  max-width: 560px;
  font-size: clamp(15px, 2vw, 22px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-intro span {
  display: block;
}

.hero-intro span:last-child {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08em;
}

.scatter-stage {
  position: absolute;
  z-index: 3;
  inset: 92px 0 60px;
  max-width: 1280px;
  margin: auto;
  pointer-events: none;
}

.scatter-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(130px, 18vw, 250px);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid var(--ink);
  background: var(--soft);
  box-shadow: 0 18px 0 rgba(17, 17, 15, 0.14);
  pointer-events: auto;
  transform: translate(-50%, -50%) rotate(var(--r));
  transition:
    transform 620ms cubic-bezier(0.2, 0.9, 0.18, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
}

.scatter-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: block;
  padding: 9px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.scatter-card:nth-child(1) { --r: -9deg; z-index: 9; }
.scatter-card:nth-child(2) { --r: 8deg; z-index: 8; }
.scatter-card:nth-child(3) { --r: -2deg; z-index: 7; }
.scatter-card:nth-child(4) { --r: 12deg; z-index: 6; }
.scatter-card:nth-child(5) { --r: -14deg; z-index: 5; }
.scatter-card:nth-child(6) { --r: 5deg; z-index: 4; }
.scatter-card:nth-child(7) { --r: -7deg; z-index: 3; }
.scatter-card:nth-child(8) { --r: 15deg; z-index: 2; }
.scatter-card:nth-child(9) { --r: -18deg; z-index: 1; }

.scatter-stage:hover .scatter-card {
  box-shadow: 0 10px 0 rgba(17, 17, 15, 0.16);
}

.scatter-stage:hover .about-card {
  transform: translate(calc(-50% + 35vw), calc(-50% - 21vh)) rotate(8deg);
}

.scatter-stage:hover .video-card {
  transform: translate(calc(-50% - 36vw), calc(-50% - 8vh)) rotate(-7deg);
}

.scatter-stage:hover .video-card.secondary {
  transform: translate(calc(-50% - 29vw), calc(-50% + 20vh)) rotate(7deg);
}

.scatter-stage:hover .design-card {
  transform: translate(calc(-50% + 34vw), calc(-50% + 12vh)) rotate(10deg);
}

.scatter-stage:hover .design-card.secondary {
  transform: translate(calc(-50% + 20vw), calc(-50% + 28vh)) rotate(-6deg);
}

.scatter-stage:hover .operation-card {
  transform: translate(calc(-50% - 7vw), calc(-50% + 31vh)) rotate(-3deg);
}

.scatter-stage:hover .photo-card {
  transform: translate(calc(-50% - 8vw), calc(-50% - 28vh)) rotate(5deg);
}

.scatter-stage:hover .photo-card.secondary {
  transform: translate(calc(-50% - 21vw), calc(-50% - 24vh)) rotate(-13deg);
}

.scatter-stage:hover .copy-card {
  transform: translate(calc(-50% + 5vw), calc(-50% - 6vh)) rotate(2deg) scale(1.08);
}

.scatter-card:hover {
  filter: saturate(1.08) contrast(1.05);
}

.hero-foot {
  position: relative;
  z-index: 4;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 68px);
}

.section-heading h2,
.site-footer h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 8vw, 112px);
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
}

.about-text > .eyebrow {
  margin-bottom: 10px;
  font-size: clamp(15px, 1.45vw, 20px);
}

.about-text h2 {
  margin-bottom: 22px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.4vw, 88px);
  line-height: 0.96;
  font-weight: 700;
  text-transform: none;
}

.about-text h2 span {
  display: block;
}

.section-heading p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 21px);
  line-height: 1.55;
  font-weight: 650;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}

.portrait-stack {
  position: relative;
  min-height: clamp(420px, 62vw, 760px);
}

.portrait {
  position: absolute;
  inset: 0;
  width: min(82%, 420px);
  height: min(92%, 640px);
  border: 2px solid var(--ink);
  object-position: center top;
  box-shadow: 18px 18px 0 rgba(17, 17, 15, 0.16);
  transition: transform 380ms ease, z-index 0ms linear 170ms;
}

.portrait-front {
  z-index: 2;
  transform: translate(0, 34px) rotate(-4deg);
}

.portrait-back {
  z-index: 1;
  transform: translate(72px, 0) rotate(5deg);
}

.portrait-stack:hover .portrait-front {
  z-index: 1;
  transform: translate(56px, 8px) rotate(5deg);
}

.portrait-stack:hover .portrait-back {
  z-index: 2;
  transform: translate(0, 38px) rotate(-5deg);
}

.about-text > p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 23px);
  line-height: 1.7;
  font-weight: 650;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-points article,
.metrics article,
.copy-card-large,
.copy-quote {
  border: 1px solid var(--ink);
  background: rgba(255, 255, 255, 0.28);
}

.about-points article {
  min-height: 160px;
  padding: 22px;
}

.about-points h3,
.copy-card-large h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}

.about-points p,
.copy-card-large p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 650;
}

.dark-section {
  color: var(--paper);
  background: var(--ink);
}

.dark-section .section-kicker,
.dark-section .section-heading p {
  color: rgba(244, 241, 234, 0.7);
}

#video {
  --video-header-offset: 70px;
  padding-bottom: 0;
  overflow: clip;
}

.video-scroll-scene {
  position: relative;
  height: calc(100vh + var(--video-travel, 2600px));
}

.video-sticky {
  position: sticky;
  top: var(--video-header-offset);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  height: calc(100vh - var(--video-header-offset));
  min-height: 620px;
  overflow: hidden;
  padding: 30px 0 24px;
}

.video-grid {
  display: flex;
  align-items: center;
  gap: clamp(72px, 9vw, 132px);
  width: max-content;
  padding: 0 clamp(10px, 5vw, 80px);
  transform: translate3d(var(--video-x, 0px), 0, 0);
  will-change: transform;
}

.video-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(300px, 51vh) auto;
  flex: 0 0 clamp(250px, 30vw, 390px);
  padding-right: clamp(38px, 5vw, 72px);
  overflow: visible;
  border: 0;
  background: transparent;
}

.video-item.wide {
  flex-basis: clamp(320px, 42vw, 540px);
}

.video-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 34%;
  right: 0;
  width: clamp(190px, 25vw, 330px);
  aspect-ratio: 1;
  border: 2px solid #050505;
  border-radius: 50%;
  background:
    radial-gradient(circle, #e9d9c5 0 3%, #db5638 3.5% 9%, #101010 9.5% 13%, transparent 13.5%),
    repeating-radial-gradient(circle, #111 0 3px, #272727 4px 5px, #090909 6px 8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.65), inset 0 0 26px rgba(255, 255, 255, 0.06);
  transform: translateY(-50%);
  animation: vinyl-spin 15s linear infinite;
}

@keyframes vinyl-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.video-item video {
  position: relative;
  z-index: 1;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(244, 241, 234, 0.46);
  background: #000;
}

.video-item div {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(244, 241, 234, 0.38);
  border-top: 0;
  background: #1d1c19;
}

.video-item span,
.copy-card-large span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.video-item h3 {
  margin: 0;
  font-size: clamp(18px, 2.3vw, 32px);
  line-height: 1;
}

.video-player {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 46px minmax(180px, 1fr) auto;
  gap: 14px;
  align-items: center;
  width: min(780px, calc(100vw - 36px));
  margin: 18px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(244, 241, 234, 0.42);
  background: rgba(17, 17, 15, 0.84);
  backdrop-filter: blur(12px);
}

.video-play-toggle {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--paper);
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.video-play-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}

.video-play-toggle.is-playing span {
  width: 10px;
  height: 14px;
  margin-left: 0;
  border: 0;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.video-scrubber {
  width: 100%;
  height: 22px;
  margin: 0;
  accent-color: var(--orange);
  cursor: ew-resize;
}

.video-scrubber::-webkit-slider-runnable-track {
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0 var(--scrub-progress, 0%), rgba(244, 241, 234, 0.26) var(--scrub-progress, 0%));
}

.video-scrubber::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -8px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(240, 93, 35, 0.22);
  appearance: none;
}

.video-progress {
  min-width: 58px;
  color: rgba(244, 241, 234, 0.74);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.brand-envelope {
  position: relative;
  min-height: 132px;
  margin-bottom: 24px;
  overflow: hidden;
  outline: none;
  perspective: 1000px;
  transition: min-height 700ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.envelope-back,
.envelope-front,
.envelope-flap {
  position: absolute;
  inset: 0 0 auto;
  height: 132px;
  border: 1px solid var(--ink);
}

.envelope-back {
  z-index: 1;
  background: #d5e3df;
}

.envelope-front {
  z-index: 4;
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 20px;
  align-items: end;
  padding: 28px clamp(20px, 4vw, 48px);
  background: #bcd8d2;
  clip-path: polygon(0 26%, 50% 76%, 100% 26%, 100% 100%, 0 100%);
}

.envelope-front span,
.envelope-front strong,
.envelope-front small {
  position: relative;
  z-index: 1;
}

.envelope-front span {
  font-size: 12px;
  font-weight: 900;
}

.envelope-front strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 3vw, 36px);
}

.envelope-front small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.envelope-flap {
  z-index: 5;
  height: 92px;
  border-bottom: 0;
  background: #d9e7e3;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transition: transform 520ms ease, z-index 0ms linear 260ms;
}

.brand-letter {
  position: absolute;
  z-index: 6;
  top: 8px;
  left: 4%;
  right: 4%;
  max-height: 510px;
  overflow: auto;
  padding: clamp(22px, 4vw, 48px);
  border: 1px solid var(--ink);
  background:
    repeating-linear-gradient(transparent 0 31px, rgba(48, 95, 143, 0.13) 31px 32px),
    #fffdf8;
  box-shadow: 0 20px 36px rgba(17, 17, 15, 0.15);
  font-family: "Ma Shan Zheng", STKaiti, KaiTi, "Microsoft YaHei", cursive;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 220ms ease 180ms, transform 680ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.brand-letter h3 {
  margin-bottom: 22px;
  color: var(--teal);
  font-family: "Ma Shan Zheng", STKaiti, KaiTi, cursive;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
}

.brand-letter h4 {
  margin: 22px 0 8px;
  font-size: 22px;
  font-weight: 400;
}

.brand-letter p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.78;
  font-weight: 400;
}

.brand-envelope:hover,
.brand-envelope:focus-visible {
  min-height: 660px;
}

.brand-envelope:hover .envelope-flap,
.brand-envelope:focus-visible .envelope-flap {
  z-index: 1;
  transform: rotateX(180deg);
}

.brand-envelope:hover .brand-letter,
.brand-envelope:focus-visible .brand-letter {
  opacity: 1;
  transform: translateY(112px) scale(1);
}

.design-masonry {
  position: relative;
  min-height: 420px;
  columns: 4 230px;
  column-gap: 16px;
  transition: height 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.design-masonry figure {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--soft);
}

.design-masonry figure img {
  display: block;
  width: 100%;
  height: auto;
}

.design-masonry figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 8px 10px;
  color: var(--paper);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.design-masonry.is-enhanced {
  columns: auto;
  overflow: hidden;
}

.design-masonry.is-enhanced figure {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--item-width);
  height: var(--item-height);
  margin: 0;
  cursor: zoom-in;
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(var(--item-x), calc(var(--item-y) + 110px), 0) scale(0.96);
  transform-origin: center;
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--item-delay, 0ms),
    opacity 520ms ease var(--item-delay, 0ms),
    filter 620ms ease var(--item-delay, 0ms),
    width 600ms cubic-bezier(0.22, 1, 0.36, 1),
    height 600ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, width, height, opacity, filter;
}

.design-masonry.is-enhanced figure.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(var(--item-x), var(--item-y), 0) scale(var(--item-scale, 1));
}

.design-masonry.has-entered figure {
  transition-delay: 0ms;
}

.design-masonry.is-enhanced figure.is-visible:hover,
.design-masonry.is-enhanced figure.is-visible:focus-visible {
  --item-scale: 0.95;
  z-index: 2;
  outline: none;
  box-shadow: 0 18px 48px -18px rgba(17, 17, 15, 0.38);
}

.design-masonry.is-enhanced figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--soft);
}

.click-spark-canvas {
  position: fixed;
  z-index: 9999;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  mix-blend-mode: screen;
}

.compact-section {
  background: #f8f7f2;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metrics article {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 22px;
}

#operation .metrics article,
#operation .operation-strip img {
  --frame-duration: 6.2s;
  --frame-delay: 0s;
  animation: operation-frame-float var(--frame-duration) ease-in-out var(--frame-delay) infinite;
  transform: scale(1);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
  will-change: translate, transform, box-shadow;
}

#operation .metrics article:hover,
#operation .operation-strip img:hover {
  z-index: 2;
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

#operation .metrics article:nth-child(2),
#operation .operation-strip img:nth-child(2) { --frame-duration: 7.1s; --frame-delay: -2.8s; }
#operation .metrics article:nth-child(3),
#operation .operation-strip img:nth-child(3) { --frame-duration: 6.7s; --frame-delay: -4.6s; }
#operation .metrics article:nth-child(4),
#operation .operation-strip img:nth-child(4) { --frame-duration: 7.6s; --frame-delay: -1.9s; }
#operation .operation-strip img:nth-child(5) { --frame-duration: 6.9s; --frame-delay: -5.2s; }

@keyframes operation-frame-float {
  0%, 100% {
    translate: 0 0;
    border-color: rgba(17, 17, 15, 0.82);
    box-shadow: 0 0 0 rgba(47, 116, 181, 0), 0 4px 12px rgba(17, 17, 15, 0.02);
  }
  38% {
    translate: 0 -3px;
    border-color: rgba(47, 116, 181, 0.78);
    box-shadow: 0 0 0 1px rgba(47, 116, 181, 0.16), 0 8px 24px rgba(47, 116, 181, 0.13);
  }
  68% {
    translate: 1px -1px;
    border-color: rgba(39, 165, 157, 0.7);
    box-shadow: 0 0 0 1px rgba(39, 165, 157, 0.12), 0 6px 20px rgba(39, 165, 157, 0.1);
  }
}

.metrics strong {
  color: var(--blue);
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.9;
}

.metrics span {
  color: var(--muted);
  font-weight: 800;
}

.operation-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.operation-strip img {
  height: 260px;
  border: 1px solid var(--ink);
  background: var(--soft);
  object-fit: contain;
}

#photo {
  position: relative;
  overflow: hidden;
}

#photo::after {
  content: "";
  position: absolute;
  z-index: 8;
  inset: 0;
  pointer-events: none;
  background: #fff;
  opacity: 0;
}

#photo.photos-revealed::after {
  animation: camera-flash 850ms ease-out both;
}

@keyframes camera-flash {
  0%, 100% { opacity: 0; }
  14% { opacity: 0.96; }
  32% { opacity: 0.16; }
}

.camera-stage {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translate(-50%, -50%);
}

.camera-stage p {
  margin: 0;
  color: rgba(244, 241, 234, 0.62);
  font-size: 11px;
  font-weight: 900;
}

.camera-real {
  position: relative;
  width: 164px;
  height: 104px;
  border: 2px solid #5b6067;
  border-radius: 8px 12px 10px 8px;
  background: linear-gradient(155deg, #42474d 0 13%, #17191c 13% 62%, #292d31 62% 100%);
  box-shadow: 20px 24px 34px rgba(0, 0, 0, 0.5), -8px 4px 16px rgba(255, 255, 255, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.28), inset -12px -15px 20px rgba(0, 0, 0, 0.38);
  transform: perspective(720px) rotateX(-7deg) rotateY(13deg) scale(1.18);
  transform-style: preserve-3d;
}

.camera-real::before {
  content: "";
  position: absolute;
  inset: 8px 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 5px 9px 7px 5px;
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.camera-real::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 8px;
  right: -12px;
  width: 14px;
  height: 89px;
  border-radius: 0 9px 9px 0;
  background: linear-gradient(90deg, #111315, #444a50);
  transform: translateZ(-14px) skewY(-8deg);
}

.camera-top {
  position: absolute;
  top: -22px;
  left: 39px;
  width: 72px;
  height: 25px;
  border: 2px solid #5b6067;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#3e4348, #1d2023);
  clip-path: polygon(14% 100%, 24% 0, 76% 0, 89% 100%);
}

.camera-dial,
.camera-shutter {
  position: absolute;
  top: -10px;
  height: 10px;
  border: 1px solid #777d83;
  background: repeating-linear-gradient(90deg, #16181a 0 3px, #5d6267 3px 4px);
}

.camera-dial {
  left: 14px;
  width: 28px;
  border-radius: 4px 4px 0 0;
}

.camera-shutter {
  right: 18px;
  width: 20px;
  border-radius: 50%;
}

.camera-viewfinder {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 34px;
  height: 18px;
  border: 2px solid #767d84;
  border-radius: 2px;
  background: linear-gradient(135deg, #0c2630, #29434a 54%, #0a0d0f 55%);
  box-shadow: inset 0 0 8px #000;
}

.camera-grip {
  position: absolute;
  top: 22px;
  right: -3px;
  width: 31px;
  height: 75px;
  border-radius: 14px 10px 9px 16px;
  background: repeating-linear-gradient(45deg, #151719 0 3px, #222529 3px 6px);
  box-shadow: inset 4px 0 5px rgba(255, 255, 255, 0.05);
}

.camera-lens {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 84px;
  height: 84px;
  border: 5px solid #4b5055;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #7fc2cd 0 5%, #284954 7% 17%, #101a22 19% 38%, #020303 40% 58%, #1d2327 60% 72%, #090a0b 74%);
  box-shadow: 8px 10px 18px rgba(0, 0, 0, 0.72), -3px -2px 5px rgba(255, 255, 255, 0.15), inset 0 0 0 4px #0f1113, inset 0 0 0 8px #555b60;
  transform: translate(-50%, -50%) translateZ(22px);
}

.camera-lens i {
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(190, 230, 235, 0.25);
  border-radius: 50%;
  box-shadow: inset 7px 8px 13px rgba(90, 179, 194, 0.18);
}

.camera-lens::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 17px;
  width: 23px;
  height: 11px;
  border-radius: 50%;
  background: rgba(170, 234, 240, 0.3);
  filter: blur(1px);
  transform: rotate(-28deg);
}

.camera-highlight {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 114px;
  height: 36px;
  border-radius: 6px 0 50% 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 72%);
  pointer-events: none;
}

.camera-brand {
  position: absolute;
  right: 19px;
  bottom: 11px;
  color: rgba(255, 255, 255, 0.68);
  font-family: Georgia, serif;
  font-size: 7px;
  font-weight: 700;
}

.photos-revealed .camera-real {
  animation: camera-shoot 720ms cubic-bezier(0.18, 0.9, 0.24, 1) both;
}

@keyframes camera-shoot {
  0%, 100% { transform: perspective(720px) rotateX(-7deg) rotateY(13deg) scale(1.18); }
  22% { transform: perspective(720px) rotateX(-4deg) rotateY(9deg) scale(1.08); }
  46% { transform: perspective(720px) rotateX(-9deg) rotateY(15deg) scale(1.24); }
}

.photo-scene {
  position: relative;
  height: clamp(700px, 74vw, 820px);
  margin-top: -12px;
}

.photo-wall {
  position: absolute;
  z-index: 2;
  inset: 0;
}

.photo-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(140px, 21vw, 280px);
  padding: 0;
  overflow: hidden;
  color: inherit;
  border: 1px solid rgba(244, 241, 234, 0.38);
  background: #111;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.42);
  cursor: zoom-in;
  opacity: 1;
  transform: translate(calc(-50% + var(--spread-x)), calc(-50% + var(--spread-y))) rotate(var(--tilt));
  transition: opacity 460ms ease var(--delay), transform 1000ms cubic-bezier(0.16, 0.88, 0.2, 1.06) var(--delay), border-color 180ms ease, box-shadow 180ms ease;
}

.photos-pending .photo-item {
  opacity: 0.12;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.14);
}

.photos-revealed .photo-item {
  opacity: 1;
  transform: translate(calc(-50% + var(--spread-x)), calc(-50% + var(--spread-y))) rotate(var(--tilt));
}

.photo-item:hover,
.photo-item:focus-visible {
  border-color: var(--paper);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.58);
}

.photo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.photos-revealed .photo-item img {
  animation: photo-float var(--float-duration) ease-in-out var(--float-delay) infinite alternate;
}

.photo-item:hover img,
.photo-item:focus-visible img {
  animation-play-state: paused;
  transform: scale(1.025);
}

@keyframes photo-float {
  0% { transform: translate3d(-2px, 1px, 0) rotate(-0.2deg); }
  31% { transform: translate3d(3px, -3px, 0) rotate(0.35deg); }
  67% { transform: translate3d(-1px, 4px, 0) rotate(-0.12deg); }
  100% { transform: translate3d(4px, 0, 0) rotate(0.25deg); }
}

.copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 32px);
}

.copy-card-large {
  display: grid;
  grid-template-rows: minmax(320px, 38vw) auto;
  min-width: 0;
  min-height: 0;
  padding: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.copy-card-large img {
  background: var(--soft);
  object-fit: contain;
}

.copy-card-large div {
  padding: 18px 20px 20px;
}

.copy-card-large:hover,
.copy-card-large:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 14px 0 rgba(17, 17, 15, 0.12);
}

.copy-card-large h3 {
  margin-bottom: 8px;
  font-size: clamp(22px, 2.4vw, 34px);
}

.copy-card-large p {
  display: -webkit-box;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.copy-reader {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  place-items: start center;
  overflow: hidden;
  padding: 52px clamp(16px, 5vw, 64px) 32px;
  background: rgba(17, 17, 15, 0.78);
  backdrop-filter: blur(8px);
}

.copy-reader[hidden] {
  display: none;
}

.printer-slot {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 50%;
  width: min(620px, 82vw);
  height: 34px;
  border: 1px solid #565b60;
  border-top: 0;
  background: linear-gradient(#101214, #383d41 62%, #111315);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.5);
  transform: translateX(-50%);
}

.printer-slot span {
  position: absolute;
  inset: 15px 7% 6px;
  background: #050606;
  box-shadow: inset 0 2px 4px #000;
}

.paper-sheet {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 84px);
  overflow: auto;
  padding: clamp(54px, 7vw, 84px) clamp(26px, 6vw, 76px);
  border: 1px solid #c6bfae;
  background:
    repeating-linear-gradient(transparent 0 31px, rgba(48, 95, 143, 0.1) 31px 32px),
    #fffdf7;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.46);
  transform-origin: top center;
  animation: print-sheet 620ms cubic-bezier(0.18, 0.88, 0.24, 1) both;
}

@keyframes print-sheet {
  0% { opacity: 0.45; transform: translateY(-115vh) scaleY(0.06); }
  45% { opacity: 1; transform: translateY(-6vh) scaleY(0.72); }
  100% { opacity: 1; transform: translateY(0) scaleY(1); }
}

.paper-text {
  color: #292722;
  font-family: Georgia, "Songti SC", SimSun, serif;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.9;
  white-space: pre-wrap;
}

.paper-title {
  margin: 0 52px 30px 0;
  color: #171715;
  font-family: Georgia, "Songti SC", SimSun, serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.18;
  font-weight: 800;
  text-transform: none;
}

.paper-close {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: #171715;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.paper-sheet::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: -2px;
  pointer-events: none;
  background: radial-gradient(circle at 85% 15%, transparent 0 28%, rgba(255, 122, 24, 0.94) 32%, rgba(35, 26, 18, 0.96) 38%, rgba(8, 8, 7, 0.98) 48%);
  opacity: 0;
  transform: scale(0.12);
  transform-origin: 85% 15%;
}

.copy-reader.is-burning .paper-sheet {
  overflow: hidden;
  animation: paper-to-ash 900ms cubic-bezier(0.58, 0.02, 0.8, 0.22) both;
}

.copy-reader.is-burning .paper-sheet::after {
  animation: burn-front 760ms ease-in both;
}

@keyframes burn-front {
  0% { opacity: 0; transform: scale(0.05); }
  26% { opacity: 1; }
  100% { opacity: 1; transform: scale(2.4); }
}

@keyframes paper-to-ash {
  0% { opacity: 1; filter: none; transform: translateY(0) rotate(0); }
  58% { opacity: 0.85; filter: sepia(1) saturate(2.4) contrast(1.4); transform: translateY(10px) rotate(1deg) scale(0.94); }
  100% { opacity: 0; filter: grayscale(1) blur(4px); transform: translateY(34vh) rotate(5deg) scale(0.08); }
}

.ash-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.ash-particle {
  position: absolute;
  top: 24%;
  left: 50%;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--ash);
  opacity: 0;
  animation: ash-fall 850ms ease-out var(--ash-delay) both;
}

@keyframes ash-fall {
  0% { opacity: 0; transform: translate(0, 0) scale(0.2); }
  25% { opacity: 0.9; }
  100% { opacity: 0; transform: translate(var(--ash-x), var(--ash-y)) rotate(240deg) scale(1); }
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  min-height: 310px;
  padding: clamp(38px, 5vw, 64px) clamp(18px, 4vw, 64px);
  overflow: hidden;
  color: var(--paper);
  background-color: rgba(130, 159, 173, 0.72);
  isolation: isolate;
}

.site-footer::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -48%;
  background:
    repeating-radial-gradient(ellipse at 18% 32%, transparent 0 18px, rgba(255, 255, 255, 0.26) 21px 22px, transparent 25px 48px),
    repeating-radial-gradient(ellipse at 72% 61%, transparent 0 27px, rgba(235, 249, 250, 0.2) 30px 32px, transparent 35px 67px),
    repeating-radial-gradient(ellipse at 43% 82%, rgba(21, 57, 67, 0.08) 0 8px, transparent 12px 38px);
  background-size: 270px 150px, 360px 210px, 220px 180px;
  filter: blur(1.6px) contrast(1.15);
  opacity: 0.82;
  transform: rotate(-3deg) scale(1.12);
  animation: water-surface 19s ease-in-out infinite alternate;
}

.site-footer::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -22%;
  background:
    radial-gradient(ellipse at 24% 35%, rgba(255, 255, 255, 0.32), transparent 27%),
    radial-gradient(ellipse at 68% 70%, rgba(255, 255, 255, 0.2), transparent 24%),
    repeating-linear-gradient(102deg, transparent 0 28px, rgba(255, 255, 255, 0.08) 31px, transparent 35px 70px);
  mix-blend-mode: screen;
  filter: blur(5px);
  opacity: 0.68;
  animation: water-caustics 13s ease-in-out infinite alternate-reverse;
}

@keyframes water-surface {
  0% { background-position: 0 0, 18px 12px, -12px 8px; transform: rotate(-3deg) scale(1.12) translate3d(-2%, -1%, 0); }
  42% { background-position: 34px -18px, -21px 27px, 18px -16px; transform: rotate(1.5deg) scale(1.16) translate3d(2%, 1%, 0); }
  100% { background-position: -26px 24px, 31px -22px, -24px 18px; transform: rotate(-1deg) scale(1.13) translate3d(-1%, 2%, 0); }
}

@keyframes water-caustics {
  0% { transform: skewX(-3deg) translate3d(-2%, 0, 0) scale(1.06); opacity: 0.48; }
  55% { transform: skewX(2deg) translate3d(3%, -2%, 0) scale(1.13); opacity: 0.78; }
  100% { transform: skewX(-1deg) translate3d(0, 3%, 0) scale(1.08); opacity: 0.56; }
}

.site-footer address {
  display: grid;
  gap: 12px;
  font-style: normal;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 900;
  justify-items: start;
  text-align: left;
}

.secondary-email {
  padding-left: 2.18em;
}

.site-footer a:hover {
  text-decoration: underline;
}

.home-tag {
  align-self: center;
  padding: 12px 16px;
  border: 1px solid currentColor;
  font-size: 13px;
  font-weight: 900;
}

.photo-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 64px);
  overflow: hidden;
  background: rgba(8, 9, 9, 0.96);
}

.photo-lightbox::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 4px),
    linear-gradient(90deg, rgba(107, 45, 23, 0.14), transparent 16%, transparent 84%, rgba(107, 45, 23, 0.14));
  background-size: 7px 7px, 100% 100%;
  mix-blend-mode: screen;
  animation: film-grain 900ms steps(5) both;
}

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

.photo-lightbox img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 80px);
  object-fit: contain;
  border: clamp(8px, 1.8vw, 20px) solid #ece7d9;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.72);
  animation: film-develop 1250ms cubic-bezier(0.18, 0.8, 0.22, 1) both;
}

@keyframes film-develop {
  0% { opacity: 0.06; filter: brightness(0.08) contrast(2.2) grayscale(1) sepia(0.8); transform: scale(0.96); }
  24% { opacity: 0.3; filter: brightness(0.35) contrast(1.8) grayscale(0.92) sepia(0.65); }
  58% { opacity: 0.72; filter: brightness(0.78) contrast(1.3) grayscale(0.42) sepia(0.24); }
  100% { opacity: 1; filter: none; transform: scale(1); }
}

@keyframes film-grain {
  0% { transform: translate(0, 0); opacity: 0.78; }
  35% { transform: translate(-2%, 1.5%); opacity: 0.58; }
  70% { transform: translate(1.5%, -1%); opacity: 0.32; }
  100% { transform: translate(0, 0); opacity: 0.12; }
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  border: 1px solid var(--paper);
  border-radius: 50%;
  background: var(--ink);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.back-top {
  position: fixed;
  z-index: 60;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-top.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .top-nav {
    justify-content: start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 128px;
  }

  .scatter-card {
    width: clamp(104px, 26vw, 180px);
  }

  .scatter-stage:hover .about-card {
    transform: translate(calc(-50% + 27vw), calc(-50% - 22vh)) rotate(8deg);
  }

  .scatter-stage:hover .video-card {
    transform: translate(calc(-50% - 26vw), calc(-50% - 12vh)) rotate(-7deg);
  }

  .scatter-stage:hover .video-card.secondary {
    transform: translate(calc(-50% - 26vw), calc(-50% + 16vh)) rotate(7deg);
  }

  .scatter-stage:hover .design-card {
    transform: translate(calc(-50% + 25vw), calc(-50% + 12vh)) rotate(10deg);
  }

  .scatter-stage:hover .design-card.secondary {
    transform: translate(calc(-50% + 12vw), calc(-50% + 27vh)) rotate(-6deg);
  }

  .section-heading,
  .about-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .video-sticky {
    min-height: 560px;
  }

  .site-footer address {
    text-align: left;
  }

  .home-tag {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .hero-intro {
    max-width: 330px;
  }

  .hero-foot {
    display: none;
  }

  .scatter-stage {
    inset: 210px 0 40px;
  }

  .scatter-card span {
    font-size: 11px;
  }

  .about-points,
  .video-grid,
  .metrics,
  .copy-grid {
    grid-template-columns: 1fr;
  }

  .video-item.wide {
    flex-basis: 80vw;
  }

  .video-item {
    grid-template-rows: minmax(300px, 55vh) auto;
    flex-basis: 72vw;
    padding-right: 42px;
  }

  .video-grid {
    gap: 68px;
  }

  .video-player {
    grid-template-columns: 42px minmax(120px, 1fr) auto;
    gap: 9px;
  }

  .photo-scene {
    height: 700px;
  }

  .photo-item {
    width: clamp(126px, 38vw, 160px);
  }

  .photo-item:nth-child(1) { --spread-x: -25vw !important; --spread-y: -150px !important; }
  .photo-item:nth-child(2) { --spread-x: 0vw !important; --spread-y: -230px !important; }
  .photo-item:nth-child(3) { --spread-x: 25vw !important; --spread-y: -145px !important; }
  .photo-item:nth-child(4) { --spread-x: -24vw !important; --spread-y: 150px !important; }
  .photo-item:nth-child(5) { --spread-x: 0vw !important; --spread-y: 230px !important; }
  .photo-item:nth-child(6) { --spread-x: 24vw !important; --spread-y: 145px !important; }

  .camera-real {
    transform: perspective(720px) rotateX(-7deg) rotateY(13deg) scale(0.98);
  }

  .portrait-stack {
    min-height: 470px;
  }

  .portrait {
    width: 76%;
    height: 410px;
  }

  .portrait-back {
    transform: translate(48px, 0) rotate(5deg);
  }

  .operation-strip {
    grid-template-columns: repeat(5, 78vw);
  }

  .photo-wall {
    grid-template-columns: 1fr;
  }

  .brand-envelope:hover,
  .brand-envelope:focus-visible {
    min-height: 720px;
  }

  .brand-letter {
    left: 2%;
    right: 2%;
    max-height: 570px;
  }

  .envelope-front {
    grid-template-columns: 1fr auto;
  }

  .envelope-front strong {
    grid-column: 1 / -1;
  }

  .site-footer {
    min-height: 360px;
  }

  .copy-card-large,
  .paper-sheet {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-envelope,
  .brand-letter,
  .envelope-flap,
  .hero-title-char,
  #operation .metrics article,
  #operation .operation-strip img,
  .design-masonry,
  .design-masonry figure,
  .photo-item,
  .photo-item img,
  .video-item::before,
  .camera-real,
  .site-footer::before,
  .site-footer::after,
  .photo-lightbox::before,
  .photo-lightbox img,
  .paper-sheet,
  .paper-sheet::after,
  .ash-particle {
    transition-duration: 1ms;
    animation-duration: 1ms;
    animation-iteration-count: 1;
  }

  .hero-title-char {
    opacity: 1;
    transform: none;
  }

  #operation .metrics article,
  #operation .operation-strip img {
    translate: none;
  }
}
