@font-face {
  font-family: "Markketin Custom";
  src: url("./2490markketin.woff") format("woff");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #020202;
  --fg: #f4f0e7;
  --muted: rgba(244, 240, 231, 0.46);
  --accent: #d8b176;
  --site-surface:
    radial-gradient(circle at 54% 18%, rgba(255, 255, 255, 0.055), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(128, 150, 178, 0.06), transparent 34%),
    radial-gradient(circle at 20% 88%, rgba(216, 177, 118, 0.035), transparent 32%),
    linear-gradient(90deg, #020202 0%, #080909 42%, #17191b 100%);
  --parallax-x: 0px;
  --parallax-y: 0px;
  --parallax-tilt-x: 0deg;
  --parallax-tilt-y: 0deg;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  background: var(--site-surface);
  color: var(--fg);
  font-family: "Sora", system-ui, sans-serif;
  cursor: default;
}

.webgl-stage {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
  pointer-events: none;
}

.page-shell {
  position: relative;
  z-index: 0;
  isolation: isolate;
  min-height: 100vh;
}

.pointer-light {
  position: fixed;
  inset: -16vh;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  --pointer-x: 50%;
  --pointer-y: 50%;
  background:
    radial-gradient(
      circle 82vmax at var(--pointer-x) var(--pointer-y),
      rgba(255, 255, 255, 0.26) 0%,
      rgba(255, 255, 255, 0.16) 24%,
      rgba(255, 255, 255, 0.08) 44%,
      rgba(255, 255, 255, 0.03) 62%,
      rgba(255, 255, 255, 0) 84%
    );
  mix-blend-mode: screen;
  will-change: background-position, opacity;
}

.custom-proud-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 16;
  width: 10px;
  height: 9px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.18s ease;
  will-change: transform, opacity;
}

.custom-proud-cursor img {
  display: block;
  width: 100%;
  height: auto;
  image-rendering: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.35));
}

body.is-proud-cursor,
body.is-proud-cursor * {
  cursor: none !important;
}

body.is-proud-cursor .custom-proud-cursor {
  opacity: 1;
}

.site-nav {
  position: fixed;
  top: 30px;
  right: 34px;
  z-index: 18;
  display: flex;
  align-items: center;
  gap: 22px;
  pointer-events: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
}

.site-nav__link {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(244, 240, 231, 0.88);
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(0.88rem, 1.05vw, 1.06rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.24s ease,
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.32s ease;
}

.site-nav__label {
  grid-area: 1 / 1;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  pointer-events: none;
  white-space: nowrap;
}

.site-nav__label--base {
  color: currentColor;
  font-family: "Sora", system-ui, sans-serif;
  font-style: normal;
  font-weight: 500;
}

.site-nav__label--serif {
  color: #fff;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.56em;
  line-height: 0.72;
  opacity: 0;
  filter:
    drop-shadow(-1px 0 0 rgba(109, 165, 255, 0.2))
    drop-shadow(1px 0 0 rgba(255, 96, 179, 0.14));
}

.site-nav__char {
  display: inline-block;
  transform-origin: 50% 82%;
  will-change: transform, opacity, filter;
}

.site-nav__label--base .site-nav__char {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.24s ease,
    transform 0.44s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--char-index) * 22ms);
}

.site-nav__label--serif .site-nav__char {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 0.52em, 0) rotateX(58deg) scale(0.88);
  transition:
    opacity 0.46s ease,
    filter 0.54s ease,
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(70ms + (var(--char-index) * 46ms));
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.34s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.62;
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  filter: none;
}

.site-nav__link:hover .site-nav__label--base .site-nav__char,
.site-nav__link:focus-visible .site-nav__label--base .site-nav__char {
  opacity: 0;
  transform: translate3d(0, -0.48em, 0) scale(0.9);
  transition-delay: calc(var(--char-index) * 18ms);
}

.site-nav__link:hover .site-nav__label--serif,
.site-nav__link:focus-visible .site-nav__label--serif {
  opacity: 1;
}

.site-nav__link:hover .site-nav__label--serif .site-nav__char,
.site-nav__link:focus-visible .site-nav__label--serif .site-nav__char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotateX(0deg) scale(1);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-menu-button,
.mobile-menu__close {
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.site-menu-button {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  gap: 5px;
  padding: 17px 0;
  background: rgba(255, 255, 255, 0.94);
  color: #101010;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.32s cubic-bezier(0.19, 1, 0.22, 1),
    background-color 0.26s ease,
    box-shadow 0.26s ease;
}

.site-menu-button:hover,
.site-menu-button:focus-visible {
  transform: translateY(-2px) scale(1.04);
  background: #fff;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.site-menu-button__line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 0.28s ease,
    opacity 0.24s ease;
}

body.menu-open .site-menu-button__line:first-child {
  transform: translateY(3.5px) rotate(42deg);
}

body.menu-open .site-menu-button__line:last-child {
  transform: translateY(-3.5px) rotate(-42deg);
}

body.menu-open .site-menu-button {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .site-nav__links {
  opacity: 0;
  pointer-events: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 17;
  width: min(41vw, 760px);
  min-width: 520px;
  padding: clamp(32px, 4vw, 56px) clamp(42px, 6vw, 112px) 42px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #f1eeea;
  color: #1c1c1c;
  border-left: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: -34px 0 80px rgba(0, 0, 0, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateX(102%);
  transition:
    opacity 0.34s ease,
    transform 0.52s cubic-bezier(0.19, 1, 0.22, 1);
}

body.menu-open .mobile-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-menu__close {
  position: absolute;
  top: 22px;
  right: 18px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #1f1f1f;
  color: #fff;
  transition:
    transform 0.28s ease,
    background-color 0.24s ease;
}

.mobile-menu__close:hover,
.mobile-menu__close:focus-visible {
  transform: rotate(90deg) scale(1.04);
  background: #111;
}

.mobile-menu__close span {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__brand {
  display: none;
}

.mobile-menu__brand img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-menu__links {
  margin-top: min(18vh, 190px);
  display: grid;
  gap: clamp(18px, 3vh, 38px);
}

.mobile-menu__link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: baseline;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #202020;
  text-align: left;
  cursor: pointer;
}

.mobile-menu__link span {
  font-family: "Sora", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  color: #202020;
}

.mobile-menu__link strong {
  width: max-content;
  max-width: 100%;
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(4.8rem, 7.4vw, 8rem);
  font-style: italic;
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0;
  color: currentColor;
  overflow-wrap: anywhere;
  transition:
    color 0.26s ease,
    transform 0.34s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.32s ease;
}

.mobile-menu__link:hover strong,
.mobile-menu__link:focus-visible strong {
  color: rgba(32, 32, 32, 0.58);
  transform: translateX(-6px);
  filter: none;
}

.mobile-menu__link:first-child {
  color: #202020;
}

.mobile-menu__link:first-child strong {
  text-decoration: none;
}

.mobile-menu__footer {
  margin-top: auto;
  display: grid;
  gap: 4px;
  font-family: "Sora", system-ui, sans-serif;
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.5;
}

.mobile-menu__footer a,
.mobile-menu__socials a {
  color: #202020;
  text-decoration: none;
  transition: opacity 0.24s ease;
}

.mobile-menu__footer a:hover,
.mobile-menu__footer a:focus-visible,
.mobile-menu__socials a:hover,
.mobile-menu__socials a:focus-visible {
  opacity: 0.58;
}

.mobile-menu__socials {
  display: grid;
  gap: 2px;
  margin-top: 14px;
  font: inherit;
  text-transform: uppercase;
}

.noise-layer,
.noise-layer::before,
.noise-layer::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.noise-layer {
  z-index: 14;
  overflow: hidden;
  opacity: 1;
  background: transparent;
}

.noise-layer::before {
  content: "";
  opacity: 0.32;
  mix-blend-mode: soft-light;
  background:
    radial-gradient(ellipse at 48% 34%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(0, 0, 0, 0.24));
  filter: blur(8px);
  transform: scale(1.015);
}

.noise-layer::after {
  content: "";
  z-index: 1;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240' viewBox='0 0 240 240'%3E%3Cfilter id='cinemaNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.35' numOctaves='5' seed='17' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='table' tableValues='0 .12 .42 .74 1'/%3E%3CfeFuncG type='table' tableValues='0 .12 .42 .74 1'/%3E%3CfeFuncB type='table' tableValues='0 .12 .42 .74 1'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23cinemaNoise)' opacity='.9'/%3E%3C/svg%3E");
  background-size: 190px 190px;
  background-position: 0 0;
  animation: cinematicGrain 0.62s steps(3, end) infinite;
}

.hero-copy,
.word-scene,
.contact-scene {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.hero-copy,
.word-scene {
  pointer-events: none;
}

.word-scene,
.contact-scene {
  opacity: 0;
}

body.js-ready .hero-copy,
body.js-ready .word-scene,
body.js-ready .hold-layer,
body.js-ready .contact-scene {
  opacity: 0;
}

.hero-copy {
  z-index: 4;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    filter 0.8s ease;
}

.hero-copy__inner,
.contact-scene__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.scene-backdrop {
  position: absolute;
  inset: -34%;
  z-index: 0;
  pointer-events: none;
  overflow: visible;
  display: grid;
  place-items: center;
  opacity: 0.4;
}

.scene-diagram {
  width: min(186vw, 2380px);
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 30px 60px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 24px rgba(255, 255, 255, 0.04));
  transform: translate3d(-7vw, 0, 0);
}

.scene-diagram .diagram-line {
  fill: none;
  stroke: rgba(228, 224, 214, 0.48);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform, opacity, filter;
}

.scene-backdrop--contact {
  opacity: 0.4;
}

.scene-backdrop--contact .scene-diagram {
  width: min(186vw, 2380px);
  transform: translate3d(-7vw, 0, 0);
}

.diagram-group--rings .diagram-line,
.ellipse {
  stroke: rgba(233, 229, 219, 0.36);
}

.diagram-group--petals .diagram-line,
.diagram-group--diamonds .diagram-line {
  stroke: rgba(245, 241, 232, 0.54);
}

.diagram-group--nodes .diagram-line,
.axis-node {
  stroke: rgba(255, 247, 234, 0.72);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.12));
}

.axis {
  stroke: rgba(235, 231, 223, 0.42);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.06));
}

.ring-1 {
  transform: translate(calc(var(--parallax-x) * 0.08), calc(var(--parallax-y) * 0.1));
}

.ring-2 {
  transform: translate(calc(var(--parallax-x) * -0.05), calc(var(--parallax-y) * 0.06));
}

.ring-3,
.ellipse {
  transform: translate(calc(var(--parallax-x) * 0.04), calc(var(--parallax-y) * -0.04));
}

.axis,
.axis-node-top,
.axis-node-bottom {
  transform:
    translate(calc(var(--parallax-x) * -0.03), calc(var(--parallax-y) * 0.08))
    rotate(calc(var(--parallax-tilt-x) * 0.08));
}

.node-top {
  transform: translate(calc(var(--parallax-x) * 0.18), calc(var(--parallax-y) * -0.22));
}

.node-bottom {
  transform: translate(calc(var(--parallax-x) * -0.18), calc(var(--parallax-y) * 0.2));
}

.node-right {
  transform: translate(calc(var(--parallax-x) * 0.24), calc(var(--parallax-y) * 0.08));
}

.node-left {
  transform: translate(calc(var(--parallax-x) * -0.24), calc(var(--parallax-y) * -0.08));
}

.petal-top {
  transform: translate(calc(var(--parallax-x) * 0.12), calc(var(--parallax-y) * -0.18));
}

.petal-bottom {
  transform: translate(calc(var(--parallax-x) * -0.12), calc(var(--parallax-y) * 0.18));
}

.petal-right {
  transform: translate(calc(var(--parallax-x) * 0.16), calc(var(--parallax-y) * 0.08));
}

.petal-left {
  transform: translate(calc(var(--parallax-x) * -0.16), calc(var(--parallax-y) * -0.08));
}

.diamond-1 {
  transform: translate(calc(var(--parallax-x) * 0.22), calc(var(--parallax-y) * -0.2));
}

.diamond-2 {
  transform: translate(calc(var(--parallax-x) * -0.2), calc(var(--parallax-y) * 0.18));
}

.diamond-3 {
  transform: translate(calc(var(--parallax-x) * 0.2), calc(var(--parallax-y) * 0.18));
}

.diamond-4 {
  transform: translate(calc(var(--parallax-x) * -0.22), calc(var(--parallax-y) * -0.2));
}

.hero-copy__inner {
  gap: 2px;
  transform: translateY(-10px);
}

.vhs-frame,
.vhs-text {
  position: relative;
  isolation: isolate;
}

.vhs-frame::before,
.vhs-frame::after,
.vhs-text::before,
.vhs-text::after {
  content: none;
  display: none;
}

.vhs-frame--logo {
  width: min(340px, 34vw);
  max-width: calc(100vw - 72px);
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  animation:
    datamoshLogoWarp 0.62s steps(2) infinite,
    datamoshOpacity 2.8s linear infinite;
  will-change: transform, filter, opacity, clip-path;
}

.brand-logo--hero,
.brand-logo--contact {
  max-width: 100%;
}

.brand-logo--hero {
  height: auto;
  opacity: 0;
  filter:
    contrast(1.1)
    saturate(1.1)
    brightness(1.02)
    drop-shadow(-2px 0 0 rgba(109, 165, 255, 0.18))
    drop-shadow(2px 0 0 rgba(255, 96, 179, 0.12));
}

.brand-logo--contact {
  filter:
    contrast(1.1)
    saturate(1.1)
    brightness(1.02)
    drop-shadow(-2px 0 0 rgba(109, 165, 255, 0.18))
    drop-shadow(2px 0 0 rgba(255, 96, 179, 0.12));
}

.hero-copy h1,
.contact-scene__brand {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.2rem, 10vw, 8.8rem);
  letter-spacing: 0.14em;
  line-height: 0.9;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy__tagline,
.contact-scene__tagline {
  margin: 0;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.36em;
  text-transform: uppercase;
}

.vhs-text {
  animation:
    datamoshTextWarp 0.74s steps(2) infinite,
    datamoshOpacity 3.4s linear infinite;
  will-change: transform, filter, opacity, clip-path;
}

.hero-copy__instruction {
  margin: 10px 0 0;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-title {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.02em;
  white-space: nowrap;
}

.brand-letter {
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}

.brand-letter::before,
.brand-letter::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.brand-letter::before {
  color: rgba(81, 120, 255, 0.92);
  transform: translateX(-0.05em);
}

.brand-letter::after {
  color: rgba(255, 78, 161, 0.8);
  transform: translateX(0.05em);
}

.brand-letter.is-glitching::before,
.brand-letter.is-glitching::after {
  opacity: 1;
}

.word-scene {
  z-index: 5;
}

.word-scene__stack {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: min(72vw, 920px);
}

.word-scene__word {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  font-size: clamp(4rem, 14vw, 10rem);
  line-height: 0.84;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--fg);
  text-shadow:
    0 0 30px rgba(255, 255, 255, 0.12),
    0 0 80px rgba(216, 177, 118, 0.12);
}

.word-scene__word-label,
.word-scene__dream-art,
.word-scene__proud-art,
.word-scene__imagine-art,
.word-scene__work-overlay {
  grid-area: 1 / 1;
}

.word-scene__word-label {
  position: relative;
  z-index: 1;
  transition:
    opacity 0.26s ease,
    filter 0.26s ease;
}


.word-scene__dream-art,
.word-scene__proud-art,
.word-scene__imagine-art {
  width: min(920px, 78vw);
  max-width: calc(100vw - 80px);
  height: auto;
  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    filter 0.28s ease;
  filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.word-scene__work-overlay {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 0.96em;
  opacity: 0;
  pointer-events: none;
}

.word-scene__work-panel,
.word-scene__work-art {
  grid-area: 1 / 1;
  -webkit-mask-image: var(--work-reveal-mask, linear-gradient(#000 0 0));
  mask-image: var(--work-reveal-mask, linear-gradient(#000 0 0));
  -webkit-mask-position: var(--work-reveal-position, 50% 50%);
  mask-position: var(--work-reveal-position, 50% 50%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: var(--work-reveal-size, 0% 0%);
  mask-size: var(--work-reveal-size, 0% 0%);
}

.word-scene__work-panel {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: clamp(96px, 10vw, 150px);
  overflow: visible;
  filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.24))
    drop-shadow(0 18px 34px rgba(255, 255, 255, 0.12))
    drop-shadow(0 10px 22px rgba(0, 0, 0, 0.32));
}

.word-scene__work-art {
  width: 100%;
  max-width: 100%;
  height: clamp(96px, 10vw, 150px);
  opacity: 0;
  object-fit: contain;
  filter:
    blur(12px)
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.12));
  transform: translateY(8px) scale(0.992);
}

.word-scene__work-slice {
  position: absolute;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(246, 246, 246, 0.98) 62%, rgba(218, 218, 218, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 2px;
  opacity: 0;
  transform-origin: center;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.34),
    2px 2px 0 rgba(0, 0, 0, 0.26),
    -1px -1px 0 rgba(255, 255, 255, 0.55),
    0 0 18px rgba(255, 255, 255, 0.42),
    0 18px 34px rgba(0, 0, 0, 0.36),
    0 5px 14px rgba(0, 0, 0, 0.26),
    inset -12px 0 24px rgba(0, 0, 0, 0.08),
    inset 10px 0 22px rgba(255, 255, 255, 0.34);
}

.word-scene__work-slice::before,
.word-scene__work-slice::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0.2;
  pointer-events: none;
}

.word-scene__work-slice::before {
  border: 1px solid rgba(255, 64, 87, 0.42);
  box-shadow:
    -2px 0 0 rgba(255, 54, 72, 0.2),
    0 0 12px rgba(255, 54, 72, 0.12);
  transform: translate3d(-2px, 1px, 0);
}

.word-scene__work-slice::after {
  border: 1px solid rgba(64, 154, 255, 0.42);
  box-shadow:
    2px 0 0 rgba(61, 132, 255, 0.2),
    0 0 12px rgba(61, 132, 255, 0.12);
  transform: translate3d(2px, -1px, 0);
}

.word-scene__work-slice:nth-child(1) { left: 0%; top: 4%; width: 18%; height: 20%; }
.word-scene__work-slice:nth-child(2) { left: 10%; top: 0%; width: 24%; height: 17%; }
.word-scene__work-slice:nth-child(3) { left: 26%; top: 8%; width: 17%; height: 22%; }
.word-scene__work-slice:nth-child(4) { left: 38%; top: 2%; width: 25%; height: 18%; }
.word-scene__work-slice:nth-child(5) { left: 56%; top: 7%; width: 18%; height: 21%; }
.word-scene__work-slice:nth-child(6) { left: 68%; top: 1%; width: 28%; height: 18%; }
.word-scene__work-slice:nth-child(7) { left: 1%; top: 20%; width: 16%; height: 20%; }
.word-scene__work-slice:nth-child(8) { left: 13%; top: 16%; width: 27%; height: 23%; }
.word-scene__work-slice:nth-child(9) { left: 32%; top: 25%; width: 22%; height: 18%; }
.word-scene__work-slice:nth-child(10) { left: 48%; top: 18%; width: 20%; height: 26%; }
.word-scene__work-slice:nth-child(11) { left: 62%; top: 24%; width: 30%; height: 19%; }
.word-scene__work-slice:nth-child(12) { left: 84%; top: 17%; width: 18%; height: 24%; }
.word-scene__work-slice:nth-child(13) { left: -1%; top: 39%; width: 24%; height: 21%; }
.word-scene__work-slice:nth-child(14) { left: 16%; top: 35%; width: 18%; height: 29%; }
.word-scene__work-slice:nth-child(15) { left: 28%; top: 45%; width: 29%; height: 18%; }
.word-scene__work-slice:nth-child(16) { left: 48%; top: 38%; width: 22%; height: 28%; }
.word-scene__work-slice:nth-child(17) { left: 64%; top: 44%; width: 24%; height: 20%; }
.word-scene__work-slice:nth-child(18) { left: 80%; top: 36%; width: 22%; height: 28%; }
.word-scene__work-slice:nth-child(19) { left: 2%; top: 58%; width: 17%; height: 27%; }
.word-scene__work-slice:nth-child(20) { left: 13%; top: 63%; width: 33%; height: 18%; }
.word-scene__work-slice:nth-child(21) { left: 39%; top: 57%; width: 21%; height: 29%; }
.word-scene__work-slice:nth-child(22) { left: 55%; top: 65%; width: 25%; height: 20%; }

.word-scene[data-word="DREAM"] .word-scene__word-label,
.word-scene[data-word="PROUD"] .word-scene__word-label,
.word-scene[data-word="IMAGINE"] .word-scene__word-label {
  opacity: 0;
  filter: blur(10px);
}

.word-scene[data-word="DREAM"] .word-scene__dream-art,
.word-scene[data-word="PROUD"] .word-scene__proud-art,
.word-scene[data-word="IMAGINE"] .word-scene__imagine-art {
  opacity: 1;
  transform: scale(1);
}

.word-scene__instruction {
  position: relative;
  z-index: 2;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, 0.58);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    color 0.28s ease;
}

.hold-copy {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
}

.hold-copy--desktop {
  display: inline-block !important;
}

.hold-copy--touch {
  display: none !important;
}

.word-scene.is-imagine.is-complete .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
}

.word-scene.is-dream.is-complete.is-dream-ready .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
}

.word-scene.is-proud.is-complete.is-proud-ready .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
}

.word-scene.is-work.is-complete.is-work-ready .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
}

.word-scene.is-imagine-moving .word-scene__instruction {
  color: rgba(244, 240, 231, 0.86);
}

.word-scene.is-dream-moving .word-scene__instruction {
  opacity: 0;
  transform: translateY(10px);
}

.word-scene.is-proud-revealing .word-scene__instruction {
  opacity: 0;
  transform: translateY(10px);
}

.word-scene.is-work-revealing .word-scene__instruction {
  opacity: 0;
  transform: translateY(10px);
}

.word-scene.is-imagine-active .word-scene__instruction:not(:empty) {
  opacity: 0;
  transform: translateY(10px);
}

.word-scene.is-imagine-active.is-imagine-holdhint .word-scene__instruction,
.word-scene.is-imagine-holdhint .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
  color: rgba(244, 240, 231, 0.92);
}

.word-scene.is-dream-holdhint .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
  color: rgba(244, 240, 231, 0.92);
}

.word-scene.is-proud-holdhint .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
  color: rgba(244, 240, 231, 0.92);
}

.word-scene.is-work-holdhint .word-scene__instruction {
  opacity: 1;
  transform: translateY(0);
  color: rgba(244, 240, 231, 0.92);
}

.word-scene.is-work.is-work-revealing .word-scene__word-label,
.word-scene.is-work.is-work-holdhint .word-scene__word-label {
  opacity: 0.14;
  filter: blur(3px);
}

.word-scene.is-work.is-work-revealing .word-scene__work-overlay,
.word-scene.is-work.is-work-holdhint .word-scene__work-overlay {
  opacity: 1;
}

.word-scene.is-work.is-work-revealing .word-scene__work-text,
.word-scene.is-work.is-work-holdhint .word-scene__work-text {
  animation: duro-rgb-aberration 1.15s ease-in-out infinite alternate;
}

.word-scene:not(.is-work) .word-scene__work-overlay {
  opacity: 0 !important;
}

.imagine-reveal {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.16s ease;
}

.word-scene.is-imagine.is-imagine-active .imagine-reveal {
  opacity: 1;
}

.imagine-reveal__video,
.imagine-reveal__surface {
  position: absolute;
  inset: 0;
}

.imagine-reveal__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.94;
  filter: saturate(1.08) brightness(1.04);
  will-change: transform;
}

.imagine-reveal__surface {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-scene {
  z-index: 7;
  pointer-events: none;
  opacity: 0;
}

.contact-scene__inner {
  position: relative;
  min-width: min(72vw, 920px);
  min-height: min(72vh, 700px);
  gap: 6px;
  transform: translateY(-42px);
}

.contact-scene__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin-top: 8px;
}

.contact-scene__eyebrow {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-scene__tagline {
  margin-top: -10px;
}

.hero-copy__tagline .rethink,
.contact-scene__tagline .rethink {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1.22rem, 2.5vw, 1.95rem);
  letter-spacing: 0.12em;
  filter:
    drop-shadow(-1px 0 0 rgba(109, 165, 255, 0.14))
    drop-shadow(1px 0 0 rgba(255, 96, 179, 0.1));
}

.hero-copy__tagline .tomorrow,
.contact-scene__tagline .tomorrow {
  font-family: "Markketin Custom", serif;
  font-size: clamp(1.24rem, 2.6vw, 2rem);
  letter-spacing: 0.12em;
  filter:
    drop-shadow(-1px 0 0 rgba(109, 165, 255, 0.14))
    drop-shadow(1px 0 0 rgba(255, 96, 179, 0.1));
}

.restart-button,
.about-button {
  margin-top: 0;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
  pointer-events: auto;
}

.restart-button:hover,
.about-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.06);
}

.about-button {
  min-width: 170px;
}

.restart-button {
  min-width: 150px;
}

.about-scene {
  position: fixed;
  inset: 0;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  display: grid;
  align-items: start;
  background:
    radial-gradient(circle at 72% 34%, transparent 0 11rem, rgba(255, 255, 255, 0.07) 11.08rem 11.15rem, transparent 11.25rem),
    radial-gradient(circle at 72% 34%, transparent 0 17rem, rgba(255, 255, 255, 0.045) 17.08rem 17.15rem, transparent 17.25rem),
    linear-gradient(28deg, transparent 46%, rgba(255, 255, 255, 0.06) 46.08% 46.16%, transparent 46.28%),
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.045), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(128, 150, 178, 0.055), transparent 24%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(24, 27, 30, 0.36)),
    var(--site-surface);
}

.about-scene__molecules {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.molecule {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 0 22px rgba(255, 255, 255, 0.03),
    0 0 20px rgba(130, 118, 255, 0.05);
}

.molecule::before,
.molecule::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.molecule-a {
  width: 240px;
  height: 240px;
  left: 8vw;
  top: 14vh;
}

.molecule-a::before {
  inset: 34px;
}

.molecule-a::after {
  width: 18px;
  height: 18px;
  right: 20px;
  top: 26px;
  background: rgba(255, 255, 255, 0.08);
}

.molecule-b {
  width: 140px;
  height: 140px;
  right: 16vw;
  top: 18vh;
}

.molecule-b::before {
  inset: 22px;
}

.molecule-c {
  width: 90px;
  height: 90px;
  left: 22vw;
  bottom: 20vh;
}

.molecule-d {
  width: 170px;
  height: 170px;
  right: 10vw;
  bottom: 14vh;
}

.molecule-e {
  width: 22px;
  height: 22px;
  left: 44vw;
  top: 22vh;
  background: rgba(255, 255, 255, 0.12);
}

.molecule-f {
  width: 14px;
  height: 14px;
  right: 34vw;
  bottom: 28vh;
  background: rgba(255, 255, 255, 0.14);
}

.about-scene__header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 2;
  min-height: 180px;
}

.about-scene__logo {
  position: absolute;
  left: 42px;
  top: 34px;
  width: min(210px, 22vw);
  max-width: calc(100vw - 80px);
}

.brand-logo--about {
  filter:
    contrast(1.08)
    saturate(1.06)
    brightness(1.02)
    drop-shadow(-2px 0 0 rgba(109, 165, 255, 0.16))
    drop-shadow(2px 0 0 rgba(255, 96, 179, 0.1));
}

.about-scene__tagline {
  position: absolute;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.36em;
  text-transform: uppercase;
}

.about-scene__tagline .rethink {
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: clamp(1rem, 2vw, 1.5rem);
  letter-spacing: 0.12em;
}

.about-scene__tagline .tomorrow {
  font-family: "Markketin Custom", serif;
  font-size: clamp(1.02rem, 2.1vw, 1.56rem);
  letter-spacing: 0.12em;
}

.about-scene__content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100vw - 88px));
  margin: 24vh auto 0;
  padding: 38px 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(6, 6, 6, 0.68);
  backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.about-scene__eyebrow {
  margin: 0 0 12px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(216, 177, 118, 0.88);
}

.about-scene__title {
  margin: 0 0 18px;
  display: grid;
  gap: 6px;
  text-transform: uppercase;
}

.about-scene__title-line {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3.8rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: 0.1em;
  will-change: transform, opacity, clip-path, filter;
}

.about-scene__title-line--marketing {
  font-family: "Markketin Custom", serif;
  font-size: clamp(3.1rem, 8.4vw, 5.8rem);
  letter-spacing: 0.12em;
}

.about-scene__copy {
  max-width: 760px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.7;
  color: rgba(244, 240, 231, 0.84);
}

.about-scene__copy.is-secondary {
  margin-top: 14px;
  color: rgba(244, 240, 231, 0.58);
}

.social-dock {
  position: fixed;
  left: 22px;
  bottom: 34px;
  z-index: 8;
  display: flex;
  gap: 14px;
  align-items: center;
  pointer-events: auto;
}

.social-dock a {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--fg);
  transition:
    transform 0.28s ease,
    opacity 0.28s ease;
  opacity: 0.78;
}

.social-dock a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.social-dock svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hold-layer {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: auto;
  cursor: default;
  user-select: none;
  touch-action: none;
  transform: translateY(0);
}

.hold-layer__bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
}

.hold-layer__line {
  flex: 1 1 auto;
  height: 3px;
  border-radius: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.hold-layer__line i {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #4e78ff, #d8b176 60%, #fff0c8);
  box-shadow: 0 0 24px rgba(216, 177, 118, 0.72);
}

.hold-layer.is-holding .hold-layer__line {
  opacity: 1;
}

.hold-layer.is-holding .hold-layer__line i {
  animation: holdPulse 0.62s ease-in-out infinite alternate;
}

.audio-toggle {
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 32px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  opacity: 0.78;
}

.audio-toggle:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.audio-toggle__bars {
  width: 24px;
  height: 20px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 2px;
}

.audio-toggle__bar {
  width: 3px;
  height: 5px;
  border-radius: 999px;
  background: rgba(244, 240, 231, 0.9);
  transform-origin: center bottom;
  transition:
    height 0.38s ease,
    opacity 0.38s ease,
    transform 0.38s ease;
}

.audio-toggle.is-playing .audio-toggle__bar:nth-child(1) {
  height: 11px;
  animation: equalizerPulse 0.9s ease-in-out infinite;
}

.audio-toggle.is-playing .audio-toggle__bar:nth-child(2) {
  height: 18px;
  animation: equalizerPulse 0.72s ease-in-out infinite 0.08s;
}

.audio-toggle.is-playing .audio-toggle__bar:nth-child(3) {
  height: 14px;
  animation: equalizerPulse 0.84s ease-in-out infinite 0.16s;
}

.audio-toggle.is-playing .audio-toggle__bar:nth-child(4) {
  height: 19px;
  animation: equalizerPulse 0.68s ease-in-out infinite 0.04s;
}

.audio-toggle.is-playing .audio-toggle__bar:nth-child(5) {
  height: 10px;
  animation: equalizerPulse 0.96s ease-in-out infinite 0.12s;
}

.audio-toggle:not(.is-playing) .audio-toggle__bar {
  height: 4px;
  opacity: 0.42;
}

.audio-element {
  display: none;
}

body.scene-transition .hero-copy {
  opacity: 0;
  transform: translateY(-14px) scale(0.985);
  filter: blur(14px);
}

body.scene-transition .word-scene,
body.word-scene-live .word-scene {
  opacity: 1;
}

body.contact-scene-live .contact-scene {
  opacity: 1;
  pointer-events: auto;
}

body.about-scene-live .contact-scene {
  opacity: 0.2;
  pointer-events: none;
}

body.about-scene-live .contact-scene__inner {
  opacity: 0;
  filter: blur(18px);
}

body.about-scene-live .scene-backdrop--contact {
  opacity: 0.18;
}

body.about-scene-live .about-scene {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

body.about-scene-live .about-scene__logo,
body.about-scene-live .about-scene__tagline,
body.about-scene-live .about-scene__content,
body.about-scene-live .about-scene__title-line,
body.about-scene-live .about-scene__molecules .molecule {
  visibility: visible;
}

body.about-scene-live .about-scene__logo,
body.about-scene-live .about-scene__tagline,
body.about-scene-live .about-scene__content {
  opacity: 1;
}

body.about-scene-live .about-scene__title-line {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  filter: blur(0px);
}

body.about-scene-live .hold-layer {
  pointer-events: none;
}

body.contact-scene-live .word-scene,
body.contact-scene-live .hero-copy {
  opacity: 0;
  filter: blur(18px);
}

@keyframes holdPulse {
  from {
    opacity: 0.55;
  }

  to {
    opacity: 1;
  }
}

@keyframes equalizerPulse {
  0%,
  100% {
    transform: scaleY(0.45);
  }

  50% {
    transform: scaleY(1);
  }
}

@keyframes cinematicGrain {
  0% {
    transform: translate3d(0, 0, 0) scale(1.01);
    background-position: 0 0;
  }

  25% {
    transform: translate3d(-7px, 4px, 0) scale(1.01);
    background-position: 73px -41px;
  }

  50% {
    transform: translate3d(5px, -6px, 0) scale(1.01);
    background-position: -52px 89px;
  }

  75% {
    transform: translate3d(-3px, -8px, 0) scale(1.01);
    background-position: 118px 34px;
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1.01);
    background-position: 0 0;
  }
}

@keyframes datamoshLogoWarp {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
    filter:
      contrast(1.1)
      saturate(1.1)
      brightness(1.02)
      drop-shadow(-2px 0 0 rgba(109, 165, 255, 0.18))
      drop-shadow(2px 0 0 rgba(255, 96, 179, 0.12));
  }

  8% {
    transform: translate3d(1px, 0, 0);
    clip-path: inset(0 0 34% 0);
  }

  11% {
    transform: translate3d(-3px, 1px, 0) skewX(2deg);
    clip-path: inset(24% 0 12% 0);
    filter:
      contrast(1.14)
      saturate(1.16)
      brightness(1.04)
      blur(0.28px)
      drop-shadow(-4px 0 0 rgba(109, 165, 255, 0.24))
      drop-shadow(4px 0 0 rgba(255, 96, 179, 0.18));
  }

  15% {
    transform: translate3d(2px, -1px, 0);
    clip-path: inset(42% 0 0 0);
  }

  19% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  38% {
    transform: translate3d(1px, 0, 0);
    clip-path: inset(0 0 38% 0);
  }

  42% {
    transform: translate3d(-3px, 1px, 0) skewX(-2deg);
    clip-path: inset(34% 0 8% 0);
    filter:
      contrast(1.12)
      saturate(1.14)
      brightness(1.03)
      blur(0.24px)
      drop-shadow(-4px 0 0 rgba(109, 165, 255, 0.22))
      drop-shadow(4px 0 0 rgba(255, 96, 179, 0.16));
  }

  47% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  68% {
    transform: translate3d(2px, 0, 0);
    clip-path: inset(0 0 44% 0);
  }

  72% {
    transform: translate3d(-4px, -1px, 0) skewX(3deg);
    clip-path: inset(18% 0 18% 0);
    filter:
      contrast(1.15)
      saturate(1.18)
      brightness(1.05)
      blur(0.34px)
      drop-shadow(-5px 0 0 rgba(109, 165, 255, 0.28))
      drop-shadow(5px 0 0 rgba(255, 96, 179, 0.18));
  }

  77% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes datamoshTextWarp {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  10% {
    transform: translate3d(1px, 0, 0);
    clip-path: inset(0 0 28% 0);
  }

  14% {
    transform: translate3d(-2px, 0, 0) skewX(1.5deg);
    clip-path: inset(24% 0 8% 0);
  }

  18% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }

  57% {
    transform: translate3d(1px, 0, 0);
    clip-path: inset(0 0 32% 0);
  }

  61% {
    transform: translate3d(-2px, 0, 0) skewX(-1.5deg);
    clip-path: inset(28% 0 8% 0);
  }

  66% {
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes datamoshOpacity {
  0%,
  100% {
    opacity: 1;
  }

  12% {
    opacity: 0.92;
  }

  15% {
    opacity: 1;
  }

  41% {
    opacity: 0.95;
  }

  44% {
    opacity: 1;
  }

  70% {
    opacity: 0.9;
  }

  73% {
    opacity: 1;
  }
}

@keyframes datamoshScan {
  0% {
    background-position: 0 -140%, 0 0, 0 0;
  }

  100% {
    background-position: 0 180%, 0 0, 100% 0;
  }
}

@keyframes datamoshDrift {
  0% {
    transform: translateY(-140%) translateX(0);
  }

  30% {
    transform: translateY(-12%) translateX(4px);
  }

  31% {
    transform: translateY(-10%) translateX(-8px);
  }

  62% {
    transform: translateY(54%) translateX(5px);
  }

  63% {
    transform: translateY(56%) translateX(-10px);
  }

  100% {
    transform: translateY(145%) translateX(0);
  }
}

@keyframes datamoshNoise {
  0%,
  100% {
    opacity: 0.18;
  }

  24% {
    opacity: 0.34;
  }

  25% {
    opacity: 0.12;
  }

  52% {
    opacity: 0.28;
  }

  53% {
    opacity: 0.1;
  }

  78% {
    opacity: 0.3;
  }

  79% {
    opacity: 0.14;
  }
}

@keyframes datamoshBlocks {
  0%,
  100% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  14% {
    clip-path: inset(0 0 58% 0);
    transform: translateX(5px);
  }

  18% {
    clip-path: inset(42% 0 18% 0);
    transform: translateX(-8px);
  }

  22% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }

  57% {
    clip-path: inset(64% 0 0 0);
    transform: translateX(7px);
  }

  61% {
    clip-path: inset(24% 0 30% 0);
    transform: translateX(-10px);
  }

  66% {
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

@keyframes datamoshTear {
  0%,
  100% {
    opacity: 0.18;
    clip-path: inset(0 0 0 0);
  }

  19% {
    opacity: 0.34;
    clip-path: inset(0 0 70% 0);
  }

  23% {
    opacity: 0.12;
    clip-path: inset(58% 0 8% 0);
  }

  27% {
    clip-path: inset(0 0 0 0);
  }

  64% {
    opacity: 0.3;
    clip-path: inset(18% 0 42% 0);
  }

  69% {
    opacity: 0.14;
    clip-path: inset(68% 0 0 0);
  }

  73% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes rgbSplitTextFloat {
  0%,
  100% {
    text-shadow:
      -0.022em 0 0 rgba(54, 255, 173, 0.42),
      0 0 16px rgba(255, 255, 255, 0.08),
      0 0 34px rgba(255, 255, 255, 0.04);
  }

  50% {
    text-shadow:
      -0.012em 0 0 rgba(54, 255, 173, 0.34),
      0 0 16px rgba(255, 255, 255, 0.08),
      0 0 34px rgba(255, 255, 255, 0.04);
  }
}

@keyframes rgbSplitRedDrift {
  0%,
  100% {
    transform: translate3d(-0.028em, 0, 0);
  }

  50% {
    transform: translate3d(-0.046em, 0, 0);
  }
}

@keyframes rgbSplitBlueDrift {
  0%,
  100% {
    transform: translate3d(0.028em, 0, 0);
  }

  50% {
    transform: translate3d(0.046em, 0, 0);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    top: 22px;
    right: 22px;
  }

  .site-nav__links {
    display: none;
  }

  .site-menu-button {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .noise-layer::after {
    opacity: 0.13;
    background-size: 230px 230px;
    animation-duration: 0.78s;
  }

  .hold-copy--desktop {
    display: none !important;
  }

  .hold-copy--touch {
    display: inline-block !important;
  }

  .custom-proud-cursor {
    display: none;
  }

  body.is-proud-cursor,
  body.is-proud-cursor * {
    cursor: default !important;
  }

  .pointer-light {
    inset: -24vh;
    background:
      radial-gradient(
        circle 96vmax at var(--pointer-x) var(--pointer-y),
        rgba(255, 255, 255, 0.24) 0%,
        rgba(255, 255, 255, 0.13) 28%,
        rgba(255, 255, 255, 0.055) 52%,
        rgba(255, 255, 255, 0) 82%
      );
  }

  .scene-backdrop {
    opacity: 0.3;
  }

  .scene-diagram,
  .scene-backdrop--contact .scene-diagram {
    transform: translate3d(-30vw, 0, 0);
  }

  .hero-copy__inner,
  .contact-scene__inner {
    width: min(88vw, 720px);
  }

  .vhs-frame--logo {
    width: min(250px, 44vw);
  }

  .hero-copy__tagline,
  .contact-scene__tagline {
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.28em;
  }

  .hero-copy__instruction,
  .word-scene__instruction {
    font-size: 0.82rem;
    letter-spacing: 0.24em;
    text-decoration: none;
  }

  .brand-logo,
  .vhs-text {
    animation-duration: 1.2s, 5.6s;
  }

  .contact-scene__actions {
    margin-top: 14px;
  }
}

@media (max-width: 900px) {
  .scene-diagram {
    width: min(214vw, 2060px);
    transform: translate3d(-34vw, 0, 0);
  }

  .scene-backdrop--contact .scene-diagram {
    width: min(214vw, 2060px);
    transform: translate3d(-34vw, 0, 0);
  }

  .vhs-frame--logo {
    width: min(230px, 46vw);
  }

  .hero-copy h1,
  .contact-scene__brand {
    font-size: clamp(2.8rem, 12vw, 6rem);
  }

  .word-scene__word {
    font-size: clamp(3.2rem, 17vw, 7rem);
  }

  .word-scene__work-panel,
  .word-scene__work-art {
    height: clamp(72px, 13vw, 124px);
  }

  .word-scene__dream-art,
  .word-scene__proud-art,
  .word-scene__imagine-art {
    width: min(760px, 82vw);
  }

}

@media (max-width: 640px) {
  .site-nav {
    top: 18px;
    right: 18px;
  }

  .site-menu-button {
    width: 44px;
    height: 44px;
    gap: 4px;
    padding: 15px 0;
  }

  .site-menu-button__line {
    width: 16px;
  }

  .mobile-menu {
    width: 48vw;
    min-width: 0;
    padding: 18px 12px 22px;
  }

  .mobile-menu__close {
    top: 14px;
    right: 10px;
    width: 32px;
    height: 32px;
  }

  .mobile-menu__brand {
    width: min(132px, 88%);
    margin: 6px auto 19vh;
  }

  .mobile-menu__links {
    gap: clamp(16px, 4.2vh, 30px);
  }

  .mobile-menu__link {
    grid-template-columns: 21px minmax(0, 1fr);
    gap: 6px;
  }

  .mobile-menu__link span {
    font-size: 0.62rem;
  }

  .mobile-menu__link strong {
    font-size: clamp(1.7rem, 8.2vw, 2.6rem);
  }

  .scene-backdrop {
    inset: -44%;
  }

  .scene-diagram {
    width: 272vw;
    transform: translate3d(-54vw, 0, 0);
  }

  .scene-backdrop--contact .scene-diagram {
    width: 272vw;
    transform: translate3d(-54vw, 0, 0);
  }

  .vhs-frame--logo {
    width: min(188px, 48vw);
    max-width: calc(100vw - 36px);
  }

  .hero-copy h1,
  .contact-scene__brand {
    font-size: clamp(2.2rem, 12vw, 4.2rem);
    letter-spacing: 0.1em;
  }

  .word-scene__word {
    font-size: clamp(2.6rem, 18vw, 5rem);
    letter-spacing: 0.18em;
  }

  .word-scene__dream-art,
  .word-scene__proud-art,
  .word-scene__imagine-art {
    width: min(540px, 86vw);
    max-width: calc(100vw - 32px);
  }

  .word-scene__stack {
    min-width: min(84vw, 520px);
    gap: 14px;
  }

  .word-scene__instruction {
    font-size: 0.72rem;
    letter-spacing: 0.24em;
  }

  .contact-scene__inner {
    min-width: min(88vw, 520px);
    min-height: auto;
    transform: translateY(-24px);
  }

  .contact-scene__actions {
    flex-direction: column;
    gap: 10px;
    width: min(260px, 74vw);
  }

  .restart-button,
  .about-button {
    width: 100%;
    min-width: 0;
    padding: 10px 18px;
  }

  .hero-copy__tagline,
  .contact-scene__tagline {
    flex-direction: row;
    gap: 0.18em;
    white-space: nowrap;
  }

  .hero-copy__tagline .rethink,
  .contact-scene__tagline .rethink {
    font-size: clamp(1rem, 5.4vw, 1.32rem);
    letter-spacing: 0.08em;
  }

  .hero-copy__tagline .tomorrow,
  .contact-scene__tagline .tomorrow {
    font-size: clamp(1rem, 5.4vw, 1.34rem);
    letter-spacing: 0.06em;
  }

  .hold-layer__bar {
    padding: 0;
  }

  .audio-toggle {
    width: 30px;
    height: 22px;
    right: 18px;
    bottom: 24px;
  }

  .social-dock {
    left: 18px;
    bottom: 30px;
    gap: 12px;
  }
}
