:root {
  --gold: #e8aa12;
  --taupe: #9a8d80;
  --brown: #6b5746;
  --deep-gold: #8a5a00;
  --ink: #111111;
  --paper: #fbfaf8;
  --soft: #f1eee9;
  --line: #ddd6cd;
  --text: #2b2927;
  --muted: #6f665e;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 17, 17, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.legal-page {
  background:
    linear-gradient(120deg, rgba(232, 170, 18, .16), transparent 44%),
    linear-gradient(180deg, #fff, var(--paper));
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 12px;
  z-index: 99;
  padding: 10px 14px;
  background: var(--ink);
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--deep-gold);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(251, 250, 248, .92);
  border-bottom: 1px solid rgba(154, 141, 128, .22);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(320px, 58vw);
}

.nav {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(20px, 4vw, 58px);
  display: flex;
  min-width: min(280px, calc(100vw - 40px));
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  padding: 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}

.nav[hidden] {
  display: none;
}

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

.no-js .nav {
  position: static;
  min-width: 0;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav a,
.site-footer a {
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.nav a {
  color: var(--text);
}

.nav a:hover,
.site-footer a:hover {
  background: var(--soft);
  color: var(--ink);
}

.menu-toggle {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  background: rgba(154, 141, 128, .9);
  border: 1px solid rgba(154, 141, 128, .26);
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .08);
  transition: transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.no-js .menu-toggle {
  display: none;
}

.menu-toggle:hover {
  background: var(--gold);
  border-color: rgba(232, 170, 18, .62);
  box-shadow: 0 16px 34px rgba(232, 170, 18, .22);
  transform: translateY(-2px);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  grid-area: 1 / 1;
  background: #fff;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle:hover span {
  background: var(--ink);
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-7px);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(7px);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  align-items: center;
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 6vw, 92px) clamp(42px, 6vw, 72px);
  background:
    linear-gradient(120deg, rgba(232, 170, 18, .16), transparent 44%),
    linear-gradient(180deg, #fff, var(--paper));
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  color: var(--brown);
  font-size: clamp(48px, 8vw, 104px);
}

h2 {
  color: var(--brown);
  font-size: clamp(34px, 5vw, 66px);
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.2vw, 26px);
}

.hero-actions,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .24s ease, background-color .24s ease, border-color .24s ease, color .24s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.34) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

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

.button:hover::after {
  transform: translateX(120%);
}

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.button.primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.button.secondary {
  background: #fff;
  color: var(--ink);
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
}

.kinetic-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: min(500px, 86vw);
  aspect-ratio: 1;
  transform: translateY(var(--parallax-y, 0));
  transition: transform .08s linear;
}

.kinetic-mark img {
  width: min(430px, 82vw);
  filter: drop-shadow(0 36px 60px rgba(17, 17, 17, .14));
  animation: markFloat 7s ease-in-out infinite;
  transform-origin: 50% 58%;
}

.tile,
.signal {
  position: absolute;
  pointer-events: none;
}

.tile {
  width: clamp(34px, 7vw, 62px);
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(232, 170, 18, .92);
  box-shadow: 0 20px 40px rgba(232, 170, 18, .22);
}

.tile-one {
  left: 6%;
  top: 17%;
  animation: tileDrift 8s ease-in-out infinite;
}

.tile-two {
  right: 1%;
  top: 34%;
  background: rgba(154, 141, 128, .8);
  animation: tileDrift 9s ease-in-out infinite reverse;
}

.tile-three {
  left: 24%;
  bottom: 4%;
  width: clamp(24px, 5vw, 44px);
  animation: tilePulse 4.8s ease-in-out infinite;
}

.signal {
  border: 1px solid rgba(154, 141, 128, .45);
  border-radius: 999px;
  opacity: .76;
  animation: signalExpand 4s ease-out infinite;
}

.signal-one {
  inset: 14%;
}

.signal-two {
  inset: 4%;
  animation-delay: 1.35s;
}

.intro-band {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.intro-band div {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255,255,255,.14);
}

.intro-band div:last-child {
  border-right: 0;
}

.metric {
  display: inline-flex;
  color: var(--gold);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 950;
  animation: metricLift 6s ease-in-out infinite;
}

.intro-band p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.78);
}

.motion-strip {
  position: relative;
  padding: 22px clamp(20px, 6vw, 92px);
  background: #fff;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.motion-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.motion-track span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.motion-track span::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(232, 170, 18, .12);
}

.moving-line {
  position: absolute;
  left: clamp(20px, 6vw, 92px);
  right: clamp(20px, 6vw, 92px);
  top: 50%;
  height: 2px;
  background: var(--line);
  transform: translateY(-50%);
}

.moving-line::after {
  content: "";
  position: absolute;
  inset-block: -3px;
  width: 24%;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: lineRun 3.8s ease-in-out infinite;
}

.section,
.split-section,
.statement,
.contact-section {
  padding: clamp(62px, 8vw, 118px) clamp(20px, 6vw, 92px);
}

.section-heading {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: clamp(28px, 5vw, 58px);
}

.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(17,17,17,.04);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 5px solid var(--gold);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 100px;
  aspect-ratio: 1;
  border: 18px solid rgba(232, 170, 18, .12);
  border-radius: 8px;
  transform: rotate(18deg);
  transition: transform .28s ease, opacity .28s ease;
}

.service-card:hover {
  border-color: rgba(232, 170, 18, .55);
  box-shadow: 0 26px 50px rgba(17,17,17,.10);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
  transform: rotate(32deg) translate(-8px, -8px);
}

.service-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  background: rgba(232, 170, 18, .16);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 950;
  transition: transform .28s ease, background-color .28s ease;
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card:hover span {
  background: var(--gold);
  color: var(--ink);
  transform: rotate(-6deg) scale(1.08);
}

.service-card p,
.content-panel p,
.contact-copy p,
.legal p,
.legal li {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: #fff;
}

.system-visual {
  position: relative;
  min-height: min(54vw, 520px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(232, 170, 18, .16), transparent 42%),
    linear-gradient(180deg, #fff, var(--soft));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateY(var(--parallax-y, 0));
  transition: transform .08s linear;
}

.system-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  background-image:
    linear-gradient(rgba(154, 141, 128, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(154, 141, 128, .16) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 72%);
}

.visual-node {
  position: absolute;
  width: clamp(68px, 10vw, 116px);
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(154, 141, 128, .36);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(17,17,17,.08);
  animation: nodeFloat 6.5s ease-in-out infinite;
}

.visual-node::after {
  content: "";
  position: absolute;
  inset: 18%;
  background: var(--gold);
  border-radius: 6px 6px 18px 6px;
  opacity: .9;
}

.node-a {
  left: 12%;
  top: 16%;
}

.node-b {
  right: 16%;
  top: 20%;
  animation-delay: .8s;
}

.node-c {
  left: 22%;
  bottom: 16%;
  animation-delay: 1.4s;
}

.node-d {
  right: 12%;
  bottom: 18%;
  animation-delay: 2.1s;
}

.node-a::after,
.node-d::after {
  background: var(--taupe);
}

.visual-path {
  position: absolute;
  height: 3px;
  background: linear-gradient(90deg, rgba(232, 170, 18, .1), var(--gold), rgba(154, 141, 128, .38));
  border-radius: 999px;
  transform-origin: left;
  animation: pathGlow 4.2s ease-in-out infinite;
}

.path-a {
  left: 28%;
  top: 31%;
  width: 44%;
  transform: rotate(5deg);
}

.path-b {
  left: 27%;
  top: 55%;
  width: 46%;
  transform: rotate(-19deg);
  animation-delay: .8s;
}

.path-c {
  left: 39%;
  bottom: 29%;
  width: 36%;
  transform: rotate(8deg);
  animation-delay: 1.5s;
}

.decision-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-content: center;
  padding: clamp(28px, 5vw, 56px);
}

.decision-board span {
  min-height: 86px;
  background: #fff;
  border: 1px solid rgba(154, 141, 128, .32);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(17,17,17,.06);
  animation: cardLift 5.4s ease-in-out infinite;
}

.decision-board span:nth-child(2),
.decision-board span:nth-child(3) {
  animation-delay: .7s;
}

.decision-board span::before {
  content: "";
  display: block;
  width: 46%;
  height: 8px;
  margin: 22px 0 0 22px;
  background: var(--taupe);
  border-radius: 999px;
}

.decision-board span::after {
  content: "";
  display: block;
  width: 68%;
  height: 8px;
  margin: 12px 0 0 22px;
  background: rgba(232, 170, 18, .7);
  border-radius: 999px;
}

.decision-board strong {
  position: absolute;
  right: 34px;
  bottom: 28px;
  display: grid;
  width: 78px;
  aspect-ratio: 1;
  place-items: center;
  background: var(--gold);
  border-radius: 50%;
  color: var(--ink);
  font-size: 23px;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(232, 170, 18, .32);
  animation: goPulse 3s ease-in-out infinite;
}

.content-panel p {
  max-width: 690px;
  font-size: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 28px;
  position: relative;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotBlink 2.9s ease-in-out infinite;
}

.statement {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(260px, .7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  background: var(--soft);
}

.contact-section {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  background: var(--ink);
  color: #fff;
}

.contact-section h2,
.contact-section h3 {
  color: #fff;
}

.contact-section h2 {
  color: var(--gold);
}

.contact-copy p {
  max-width: 620px;
  color: rgba(255,255,255,.72);
  font-size: 20px;
}

.contact-section .button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.045);
  transition: transform .24s ease, background-color .24s ease;
}

.contact-details div::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .24s ease;
}

.contact-details div:hover {
  background: rgba(255,255,255,.075);
  transform: translateY(-4px);
}

.contact-details div:hover::after {
  transform: scaleX(1);
}

.contact-details p,
.contact-details a {
  color: rgba(255,255,255,.72);
}

.contact-icon {
  display: inline-grid;
  width: 1.65em;
  height: 1.65em;
  place-items: center;
  margin-right: .18em;
  background: rgba(232, 170, 18, .16);
  border-radius: 8px;
  color: var(--deep-gold);
  font-weight: 900;
  line-height: 1;
  vertical-align: middle;
}

.contact-section .contact-icon {
  background: rgba(232, 170, 18, .2);
  color: var(--gold);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px clamp(20px, 6vw, 92px);
  background: #fff;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer img {
  width: 44px;
  animation: footerMark 8s ease-in-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--card-delay, 0ms);
}

[data-reveal].is-visible,
.no-js [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes markFloat {
  0%, 100% {
    transform: rotate(-2deg) translateY(0) scale(1);
  }
  50% {
    transform: rotate(2deg) translateY(-14px) scale(1.025);
  }
}

@keyframes tileDrift {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(14px, -18px) rotate(10deg);
  }
}

@keyframes tilePulse {
  0%, 100% {
    opacity: .82;
    transform: scale(1) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.18) rotate(-8deg);
  }
}

@keyframes signalExpand {
  0% {
    opacity: .52;
    transform: scale(.9);
  }
  72%, 100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

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

@keyframes lineRun {
  0% {
    left: -24%;
  }
  100% {
    left: 100%;
  }
}

@keyframes dotBlink {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 170, 18, .26);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(232, 170, 18, 0);
  }
}

@keyframes footerMark {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(4deg);
  }
}

@keyframes nodeFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(3deg);
  }
}

@keyframes pathGlow {
  0%, 100% {
    opacity: .42;
  }
  50% {
    opacity: 1;
  }
}

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

@keyframes goPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.legal {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 100px;
}

.legal h1 {
  margin-bottom: 34px;
  font-size: clamp(42px, 6vw, 78px);
}

.legal h2 {
  margin-top: 38px;
  font-size: clamp(26px, 4vw, 38px);
}

.legal a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .statement,
  .contact-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .services,
  .intro-band {
    grid-template-columns: 1fr 1fr;
  }

  .motion-track {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .nav {
    right: 20px;
  }

  h1 {
    font-size: 44px;
  }

  .services,
  .intro-band {
    grid-template-columns: 1fr;
  }

  .motion-strip {
    padding-block: 18px;
  }

  .motion-track {
    grid-template-columns: 1fr;
  }

  .motion-track span {
    min-height: 28px;
  }

  .moving-line {
    left: 26px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 2px;
    height: auto;
    transform: none;
  }

  .moving-line::after {
    inset-inline: -3px;
    width: auto;
    height: 72px;
    background: linear-gradient(180deg, transparent, var(--gold), transparent);
    animation: lineRunVertical 3.8s ease-in-out infinite;
  }

  .intro-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }

  .intro-band div:last-child {
    border-bottom: 0;
  }

  .system-visual {
    min-height: 360px;
  }
}

@keyframes lineRunVertical {
  0% {
    top: -72px;
  }
  100% {
    top: 100%;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .kinetic-mark,
  .system-visual {
    transform: none !important;
  }
}
