@font-face {
  font-family: "SanMono";
  src: url("./fonts/centramono-book-webfont.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "SanMono";
  src: url("./fonts/centramono-bold-webfont.woff2") format("woff2");
  font-display: swap;
  font-weight: 700;
}

@font-face {
  font-family: "SanDisplay";
  src: url("./fonts/F37stout-black-compressed-webfont.woff2") format("woff2");
  font-display: swap;
}

:root {
  --icy: #dde2e4;
  --sky: #cfe8ff;
  --blue-haze: #d6dce3;
  --midnight: #202b36;
  --deep: #16202a;
  --ink: #08121c;
  --paper: #e7edf4;
  --display: "SanDisplay", Impact, "Arial Narrow Bold", sans-serif;
  --mono: "SanMono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --body-text: var(--mono);
}

html[lang="zh-CN"] {
  --display: "Pingxian Zhensong", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --mono: "Pingxian Zhensong", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  --body-text: "Pingxian Zhensong", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--deep);
  color: var(--icy);
  font-family: var(--mono);
  scrollbar-width: none;
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--deep);
}

html.page-transition-active,
html.page-transition-active body {
  overflow: hidden;
}

html.page-transition-cold-cover::before {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
  background-color: var(--blue-haze);
  background-image: url("./transition-topography.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0% 50%, 0 0, 100% 0%, 100% 50%, 100% 50%, 100% 100%, 50% 100%, 50% 100%, 50% 100%, 0 100%, 0 100%);
  content: "";
}

.page-transition-cover {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: none;
  pointer-events: none;
  background-color: var(--blue-haze);
  background-image: url("./transition-topography.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%, 50% 50%);
  opacity: 1;
  will-change: clip-path;
}

.page-transition-cover.is-visible {
  display: block;
}

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

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

ul {
  padding: 0;
  list-style: none;
}

.about-page {
  width: 100%;
  margin: 0;
  background: var(--deep);
}

.profile-page main {
  width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 126vh;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--blue-haze) 0%,
    #d2d9e1 38%,
    #b4c1cf 66%,
    #6f8296 86%,
    var(--deep) 100%
  );
  color: var(--deep);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: clamp(500px, 78vh, 900px);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(214, 220, 227, 0) 0%,
    rgba(214, 220, 227, .08) 32%,
    rgba(180, 193, 207, .16) 58%,
    rgba(111, 130, 150, .26) 80%,
    rgba(22, 32, 42, .34) 94%,
    var(--deep) 100%
  );
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .12;
  background-image:
    radial-gradient(circle at 16% 22%, rgba(255, 255, 255, .45) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 58%, rgba(0, 0, 0, .3) 0 1px, transparent 1.4px);
  background-size: 28px 26px, 34px 31px;
  mix-blend-mode: soft-light;
}

.hero-map {
  position: absolute;
  inset: -18vh -10vw;
  z-index: 1;
  opacity: .48;
  filter: contrast(1.1);
}

.hero-map span {
  position: absolute;
  border: 1px solid rgba(22, 32, 42, .36);
  border-radius: 48% 52% 45% 55%;
  transform: rotate(var(--rot, 0deg));
}

.hero-map span:nth-child(1) {
  --rot: -11deg;
  inset: 12% 9% 21% 16%;
}

.hero-map span:nth-child(2) {
  --rot: 8deg;
  inset: 20% 17% 15% 7%;
}

.hero-map span:nth-child(3) {
  --rot: 17deg;
  inset: 7% 30% 26% 22%;
}

.hero-map span:nth-child(4) {
  --rot: -22deg;
  inset: 34% 4% 8% 36%;
}

.personal-logo-link {
  position: absolute;
  top: clamp(18px, 2.6vw, 42px);
  left: clamp(18px, 2.6vw, 42px);
  z-index: 4;
  display: block;
  width: clamp(96px, 14vw, 172px);
  aspect-ratio: 1134 / 286;
  color: var(--ink);
  transition: opacity .18s ease, transform .18s ease;
}

.personal-logo-link::before {
  position: absolute;
  inset: 0;
  background: currentColor;
  content: "";
  mask: url("./HDTs_PAGE_vector.svg") center / contain no-repeat;
  -webkit-mask: url("./HDTs_PAGE_vector.svg") center / contain no-repeat;
}

.personal-logo-link:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.personal-logo-link img {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.hero-copy {
  position: absolute;
  top: clamp(220px, 32vh, 260px);
  left: clamp(56px, 7vw, 96px);
  transform: none;
  z-index: 3;
  width: min(46vw, 640px);
  margin: 0;
  padding: 0;
}

.profile-card {
  position: absolute;
  top: clamp(240px, calc(34vh + 10px), 350px);
  right: clamp(56px, 7vw, 108px);
  bottom: auto;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: min(420px, 34vw);
  padding: 0;
  background: transparent;
  color: var(--deep);
  border: 0;
}

.avatar-placeholder {
  width: min(240px, 58%);
  display: grid;
  aspect-ratio: 5 / 7;
  place-items: center;
  border: 2px solid var(--deep);
  background:
    linear-gradient(135deg, transparent 48%, rgba(22, 32, 42, .4) 49% 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, rgba(22, 32, 42, .4) 49% 51%, transparent 52%);
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.profile-fields {
  display: grid;
  align-content: start;
  gap: 8px;
  font-family: var(--body-text);
}

.profile-fields p {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  font-size: 13px;
  line-height: 1.15;
}

.profile-fields span {
  color: rgba(22, 32, 42, .58);
  text-transform: uppercase;
}

.eyebrow {
  font-size: .68rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero h1,
.section-title {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin-top: 12px;
  color: var(--deep);
  font-size: clamp(68px, 10vw, 170px);
  line-height: .77;
}

html[lang="zh-CN"] .hero h1 {
  font-size: clamp(54px, 7.4vw, 124px);
  line-height: 1.08;
}

.hero-copy > p:last-child {
  max-width: 390px;
  margin-top: 28px;
  color: rgba(22, 32, 42, .82);
  font-family: var(--body-text);
  font-size: clamp(16px, 1.3vw, 22px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0;
  font-variant-east-asian: proportional-width;
  text-rendering: geometricPrecision;
}

html[lang="zh-CN"] .hero-copy > p:last-child {
  max-width: 560px;
}

html[lang="en"] .hero-copy > p:last-child,
html[lang="en"] .profile-fields,
html[lang="en"] .about-copy,
html[lang="en"] .body-copy {
  font-family: "SanMono", ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

html[lang="en"] .hero-copy > p:last-child {
  max-width: 560px;
  font-size: clamp(15px, 1.1vw, 19px);
  line-height: 1.22;
}

html[lang="en"] .profile-fields p {
  font-size: 13px;
  line-height: 1.16;
  grid-template-columns: 82px minmax(0, 1fr);
}

html[lang="en"] .about-copy,
html[lang="en"] .body-copy {
  font-size: clamp(14px, 1.15vw, 20px);
  line-height: 1.22;
}

.content-shell {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  padding: 0 24px 90px;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--deep);
}

.separator {
  grid-column: 1 / -1;
  height: 1px;
}

.separator.large {
  height: clamp(84px, 13vw, 194px);
}

.separator.medium {
  height: clamp(18px, 2.2vw, 36px);
}

.technology + .separator.medium {
  height: clamp(10px, 1.4vw, 22px);
}

.about-section,
.beginning,
.services,
.technology {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: subgrid;
  position: relative;
}

.about-section {
  min-height: auto;
  align-items: center;
  padding: clamp(18px, 2.5vh, 30px) 0 clamp(14px, 2vh, 24px);
}

.about-kicker {
  grid-column: 2 / span 3;
  color: var(--sky);
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 124px);
  line-height: .82;
  text-transform: uppercase;
}

.about-copy {
  grid-column: 6 / span 6;
  max-width: 620px;
  color: var(--icy);
  font-family: var(--body-text);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.46;
  letter-spacing: 0;
  font-variant-east-asian: proportional-width;
  text-rendering: geometricPrecision;
}

.about-copy p + p {
  margin-top: 24px;
}

.beginning {
  min-height: 320vh;
  align-items: start;
  padding-top: clamp(70px, 11vh, 120px);
}

.beginning-copy {
  grid-column: 2 / span 4;
  position: sticky;
  top: 20vh;
  z-index: 5;
}

.section-title {
  color: var(--sky);
  font-size: clamp(42px, 5.4vw, 100px);
  line-height: .86;
}

.body-copy {
  max-width: 560px;
  color: var(--icy);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.2;
}

.body-copy p + p {
  margin-top: 24px;
}

.beginning .body-copy {
  margin-top: 38px;
}

.image-scroll {
  grid-column: 8 / span 4;
  min-height: 320vh;
  position: relative;
}

.sticky-stack {
  position: sticky;
  top: 12vh;
  width: min(411px, 31vw);
  height: min(513px, 72vh);
  margin-left: auto;
  transform: translateZ(0);
}

.stack-photo {
  position: absolute;
  inset: 0;
  opacity: calc(.28 + var(--active, 0) * .72);
  transform: translate3d(var(--x, 0), calc(var(--y, 0) + (1 - var(--active, 0)) * 54px), 0) rotate(var(--r, 0deg)) scale(calc(.84 + var(--active, 0) * .16));
  transition: opacity .16s linear, transform .16s linear;
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}

.gsap-enhanced .stack-photo {
  transition: none;
}

.stack-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 24px;
  background: var(--paper);
  color: var(--deep);
  border: 1px solid rgba(207, 232, 255, .22);
  box-shadow: 0 26px 60px rgba(0, 0, 0, .28);
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 72px);
  line-height: .84;
  text-align: center;
  text-transform: uppercase;
}

.services {
  min-height: 100vh;
  align-items: start;
  padding: clamp(24px, 4vh, 52px) 0 clamp(80px, 12vh, 150px);
}

.showreel-card {
  grid-column: 2 / span 4;
  position: sticky;
  top: 11vh;
  height: min(80vh, 810px);
  min-height: 580px;
  background: var(--paper);
  color: var(--icy);
  overflow: hidden;
}

.profile-board {
  display: grid;
  color: var(--deep);
  padding: clamp(22px, 3vw, 42px);
}

.board-mark {
  align-self: start;
  display: grid;
  gap: 16px;
}

.board-mark span,
.board-note small {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.board-mark strong {
  max-width: 340px;
  font-family: var(--display);
  font-size: clamp(54px, 5vw, 106px);
  line-height: .78;
  text-transform: uppercase;
}

.board-line {
  position: absolute;
  right: 12%;
  top: 18%;
  width: 28%;
  height: 42%;
  border: solid rgba(22, 32, 42, .24);
  border-width: 0 0 7px 7px;
  border-radius: 0 0 0 56px;
  transform: rotate(-18deg);
}

.board-note {
  position: absolute;
  display: grid;
  gap: 12px;
  padding: 16px;
  background: var(--deep);
  color: var(--sky);
}

.board-note strong {
  font-family: var(--display);
  font-size: clamp(30px, 3vw, 56px);
  line-height: .82;
  text-transform: uppercase;
}

.note-one {
  left: 9%;
  bottom: 12%;
  width: 42%;
}

.note-two {
  right: 7%;
  bottom: 6%;
  width: 42%;
}

.services-copy {
  grid-column: 7 / span 5;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-content: start;
}

.services-copy .section-title,
.services-copy > .body-copy {
  grid-column: 1 / span 3;
}

.services-copy > .body-copy {
  margin-top: 18px;
}

.service-list {
  grid-column: 1 / span 3;
  display: grid;
  gap: clamp(46px, 7vh, 78px);
  margin-top: clamp(32px, 5vh, 58px);
}

.service-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 32px;
  color: var(--sky);
}

.service-item.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.service-item h3 {
  margin-bottom: 16px;
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.05;
  text-transform: uppercase;
}

.service-item li {
  margin-top: 8px;
  color: #eef4fa;
  font-size: clamp(14px, 1.25vw, 20px);
  font-weight: 400;
  line-height: 1.22;
  text-transform: uppercase;
}

.icon {
  position: relative;
  width: 42px;
  height: 42px;
  color: currentColor;
}

.icon.globe {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon.globe::before,
.icon.globe::after {
  content: "";
  position: absolute;
}

.icon.globe::before {
  inset: 6px 3px;
  border: solid currentColor;
  border-width: 0 2px;
  border-radius: 50%;
}

.icon.globe::after {
  left: 0;
  right: 0;
  top: 14px;
  height: 3px;
  background: currentColor;
}

.icon.lens {
  border: 3px solid currentColor;
  border-radius: 50%;
}

.icon.lens::before {
  content: "";
  position: absolute;
  right: -7px;
  bottom: 0;
  width: 14px;
  height: 3px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon.path::before,
.icon.path::after {
  content: "";
  position: absolute;
}

.icon.path::before {
  inset: 5px;
  border: solid currentColor;
  border-width: 0 0 3px 3px;
  border-radius: 0 0 0 22px;
  transform: rotate(-16deg);
}

.icon.path::after {
  right: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.technology {
  min-height: auto;
  align-items: center;
  padding: clamp(30px, 4vh, 46px) 0 clamp(34px, 5vh, 58px);
}

.technology::after {
  content: "SKILLS METHODS";
  white-space: nowrap;
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: max-content;
  max-width: calc(100vw - 48px);
  color: rgba(207, 232, 255, .11);
  font-family: var(--display);
  font-size: clamp(62px, 11vw, 178px);
  line-height: .79;
  text-transform: uppercase;
  text-align: center;
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.tech-copy {
  grid-column: 2 / span 4;
  position: relative;
  z-index: 2;
}

.tech-copy .body-copy {
  margin-top: clamp(18px, 2.4vw, 30px);
}

.skill-grid {
  grid-column: 7 / span 5;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-self: center;
}

.skill-grid span {
  min-height: 110px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(207, 232, 255, .28);
  color: var(--sky);
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 48px);
  line-height: .84;
  text-align: center;
  text-transform: uppercase;
}

.reveal {
  opacity: .18;
  transform: translateY(34px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0ms);
}

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

.gsap-enhanced .reveal {
  animation: none;
  transition: none;
  will-change: transform, opacity;
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-scroll-content-y linear both;
    animation-timeline: view();
    animation-range: entry 12% contain 62%;
    opacity: 0;
    transform: translateY(40px);
    transition: none;
    will-change: opacity, transform;
  }

  .body-copy.reveal {
    animation-range: entry 8% contain 70%;
  }

  .service-item.reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .gsap-enhanced .reveal,
  .gsap-enhanced .body-copy.reveal,
  .gsap-enhanced .service-item.reveal {
    animation: none;
    opacity: 0;
    transform: translateY(34px);
  }
}

@keyframes reveal-scroll-content-y {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 799px) {
  .content-shell {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-inline: 24px;
  }

  .hero {
    align-content: start;
    min-height: auto;
    padding: 0 0 44px;
  }

  .hero::after {
    height: 42%;
  }

  .hero-map {
    inset: -12vh -18vw -6vh;
    opacity: 0.34;
  }

  .personal-logo-link {
    position: relative;
    top: auto;
    left: auto;
    margin: calc(24px + env(safe-area-inset-top, 0px)) 0 0 22px;
    width: 112px;
  }

  .hero-copy {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: calc(100% - 48px);
    margin: 0 auto;
    padding: 48px 0 28px;
  }

  .eyebrow {
    max-width: 260px;
    font-size: 11px;
    line-height: 1.2;
  }

  .hero h1 {
    max-width: 330px;
    margin-top: 14px;
    font-size: clamp(52px, 17vw, 78px);
    line-height: 1.04;
  }

  html[lang="zh-CN"] .hero h1 {
    font-size: clamp(52px, 17vw, 80px);
    line-height: 1.08;
  }

  .hero-copy > p:last-child,
  html[lang="zh-CN"] .hero-copy > p:last-child {
    max-width: 340px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.42;
  }

  .profile-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: calc(100% - 48px);
    max-width: 360px;
    margin: 4px auto 0;
    gap: 14px;
  }

  .avatar-placeholder {
    width: 128px;
    font-size: 11px;
  }

  .profile-fields {
    gap: 9px;
  }

  .profile-fields p {
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 10px;
    font-size: 13px;
    line-height: 1.25;
  }

  .about-section {
    min-height: auto;
    padding: 34px 0 22px;
  }

  .about-kicker {
    font-size: clamp(48px, 17vw, 74px);
  }

  .about-copy {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .beginning {
    min-height: auto;
    padding-bottom: 80px;
  }

  .beginning-copy,
  .about-section,
  .about-kicker,
  .about-copy,
  .image-scroll,
  .showreel-card,
  .services-copy,
  .tech-copy,
  .skill-grid {
    grid-column: 1 / -1;
  }

  .beginning-copy,
  .showreel-card {
    position: relative;
    top: auto;
    bottom: auto;
  }

  .services {
    gap: 34px;
    padding-bottom: 82px;
  }

  .showreel-card {
    height: auto;
    min-height: 430px;
  }

  .board-mark strong {
    font-size: clamp(48px, 16vw, 72px);
  }

  .board-note {
    padding: 12px;
  }

  .board-note strong {
    font-size: clamp(28px, 9vw, 42px);
  }

  .service-list {
    gap: 34px;
    margin-top: 34px;
  }

  .service-item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 20px;
  }

  .service-item h3 {
    margin-bottom: 12px;
  }

  .service-item li {
    font-size: 15px;
    line-height: 1.35;
  }

  .image-scroll {
    min-height: auto;
    margin-top: 34px;
  }

  .sticky-stack {
    position: relative;
    top: auto;
    display: flex;
    gap: 24px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 calc((100% - min(76vw, 330px)) / 2) 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: calc((100% - min(76vw, 330px)) / 2);
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .sticky-stack::-webkit-scrollbar {
    display: none;
  }

  .stack-photo {
    position: relative;
    inset: auto;
    flex: 0 0 min(76vw, 330px);
    aspect-ratio: 4 / 5;
    opacity: 1 !important;
    transform: none !important;
    scroll-snap-align: center;
    transition: none;
  }

  .stack-placeholder {
    height: 100%;
    font-size: clamp(32px, 10vw, 54px);
  }

  .services-copy {
    display: block;
  }

  .skill-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .technology::after {
    bottom: 0;
    font-size: clamp(54px, 18vw, 118px);
    transform: translate(-50%, 0);
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: clamp(42px, 14vw, 72px);
  }

  .body-copy {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .hero-copy {
    width: calc(100% - 44px);
  }

  .hero h1,
  html[lang="zh-CN"] .hero h1 {
    max-width: 320px;
  }

  .profile-card {
    width: calc(100% - 44px);
  }

  .profile-fields p {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
