/* Fresh Contrast — Dev Handoff */

@font-face {
  font-family: 'PP Mori';
  src: url('assets/fonts/pp-mori-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Mori';
  src: url('assets/fonts/pp-mori-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Mori';
  src: url('assets/fonts/pp-mori-black.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP NeueBit';
  src: url('assets/fonts/pp-neuebit-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Nikkei Pacific';
  src: url('assets/fonts/pp-nikkei-pacific-ultrabold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SF Movie Poster';
  src: url('assets/fonts/sf-movie-poster-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background: #000;
}

:root {
  --site-max-width: 1728px;
  --content-width: 1680px;
  --content-gutter: clamp(20px, 2.5vw, 40px);
}

@media (min-width: 1800px) {
  :root {
    --site-max-width: 1920px;
    --content-width: 1840px;
  }
}

body {
  background: #000;
  color: #fff;
  font-family: 'PP Mori', sans-serif;
  -webkit-font-smoothing: antialiased;
  min-width: 0;
  overflow-x: clip;
}

.page {
  position: relative;
  width: min(100%, var(--site-max-width));
  max-width: var(--site-max-width);
  margin: 0 auto;
  background: #000;
  border-radius: 30px;
  overflow: clip;
  padding-bottom: 0;
  box-sizing: border-box;
}

/* ── Locomotive Scroll reveals ── */
[data-scroll] {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-scroll].is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Opacity-only reveal — use on parallax elements (Locomotive owns transform) */
[data-scroll][data-scroll-speed] {
  transform: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-scroll][data-scroll-speed].is-inview {
  opacity: 1;
}

[data-scroll].reveal-fade {
  transform: none;
}

[data-scroll].reveal-fade.is-inview {
  transform: none;
}

[data-scroll].reveal-slow {
  transition-duration: 1.2s;
}

[data-scroll].reveal-delay-1 { transition-delay: 0.1s; }
[data-scroll].reveal-delay-2 { transition-delay: 0.2s; }
[data-scroll].reveal-delay-3 { transition-delay: 0.3s; }

/* Background gradient */
.intro {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  background: #0d0d0d;
  --hero-inset-x: clamp(20px, 2.5vw, 40px);
  --hero-inset-y: clamp(20px, 3vh, 38px);
}

.intro__gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(920px, 68vh);
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0) 0%,
    rgba(13, 13, 13, 0.18) 22%,
    rgba(8, 8, 8, 0.62) 52%,
    rgba(0, 0, 0, 0.88) 78%,
    #000 100%
  );
  pointer-events: none;
  z-index: 1;
}

.intro__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0d0d0d;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro.intro--particles-blurring .intro__particles {
  overflow: visible;
}

.particle-hero__blur-root {
  width: 100%;
  height: 100%;
}

.intro__particles canvas,
.particle-hero__blur-root {
  display: block;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
}

.intro__particles[data-particle-blur="true"] .particle-hero__blur-root {
  filter: blur(calc(var(--particle-intro-blur, 0) * 1px));
  -webkit-filter: blur(calc(var(--particle-intro-blur, 0) * 1px));
}

.intro__stage {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  min-height: 0;
}

/* Intro chrome should be visible on landing — not gated by scroll reveal */
.intro [data-scroll]:not([data-scroll-speed]) {
  opacity: 1;
  transform: translateY(0);
}

/* Hide intro chrome until the particle intro reaches its reveal point */
.intro.intro--pending-content .hero__copy,
.intro.intro--pending-content .header__logo,
.intro.intro--pending-content .header__location,
.intro.intro--pending-content .nav-v2,
.intro.intro--pending-content .hero__stats,
.intro.intro--pending-content .status-bar,
.intro.intro--pending-content .intro__scroll-hint,
.intro.intro--pending-content [data-intro-reveal],
.intro.intro--pending-content [data-kinetic-text-reveal]:not([data-kinetic-ready]) {
  visibility: hidden;
}

/* ── Header ── */
.header {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  gap: 41px;
  align-items: flex-start;
  padding: var(--hero-inset-y) var(--hero-inset-x) 0;
  overflow: visible;
}

.header.header--v2 {
  display: grid;
  align-items: center;
}

.header__logo {
  width: 52px;
  height: 38px;
  flex-shrink: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.header__location {
  display: flex;
  gap: 10px;
  align-items: center;
  font-family: 'PP Mori', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  white-space: nowrap;
}

.header__location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header__location-icon img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--hero-inset-x) clamp(24px, 4vh, 36px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 5vh, 60px);
}

.hero[data-scroll].is-inview {
  transform: translateY(0);
}

.hero__copy-scale {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero__copy {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 1047px;
  max-width: none;
  flex-shrink: 0;
  transform-origin: top center;
}

.hero__title,
.hero__description {
  pointer-events: none;
}

.hero__title {
  font-family: 'PP Nikkei Pacific', sans-serif;
  font-weight: 800;
  font-size: 110px;
  line-height: calc(0.68em);
  color: #fb0a0e;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 3px #fb0a0e;
  width: 100%;
  overflow: visible;
}

.hero__title .kinetic-text-reveal {
  justify-content: center;
  width: 100%;
  overflow: visible;
}

.hero__description {
  font-family: 'PP Nikkei Pacific', sans-serif;
  font-weight: 800;
  font-size: 27px;
  line-height: 25px;
  letter-spacing: -0.54px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 100%;
}

.hero__description .kinetic-text-reveal {
  justify-content: center;
  width: 100%;
}

.hero__title .kinetic-text-reveal__mask {
  overflow: hidden;
  vertical-align: top;
  padding-top: 0.1em;
  padding-bottom: 0.06em;
}

.hero__description .kinetic-text-reveal__mask {
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}

.hero__hover-reveal {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  pointer-events: auto;
}

/* Let particle hover pass through hero copy; only link spans stay interactive */
.hero__copy .kinetic-text-reveal,
.hero__copy .kinetic-text-reveal * {
  pointer-events: none;
}

.hero__copy .hero__hover-reveal,
.hero__copy .hero__hover-reveal * {
  pointer-events: auto;
}

.hero__hover-reveal::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.06em;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left center;
  transition: background-color 0.2s ease;
}

.status-bar__text.hero__hover-reveal::after {
  transform: scaleX(0);
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.2s ease;
}

.status-bar__text.hero__hover-reveal.is-settled::after {
  transform: scaleX(1);
}

.status-bar__text.hero__hover-reveal.is-settled.is-hover-reveal-active::after {
  background: #fb0a0e;
  animation: none;
  transform: scaleX(1);
}

.hero__hover-reveal.is-hover-reveal-active::after {
  background: #fb0a0e;
  animation: hero-hover-underline-swipe 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes hero-hover-underline-swipe {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.hero__hover-reveal:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.hero__underline:not(.hero__hover-reveal) {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.hero__stats-scale {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero__stats {
  display: flex;
  align-items: flex-start;
  width: 628px;
  max-width: none;
  justify-content: center;
  flex-shrink: 0;
  transform-origin: top center;
}

.hero__lockup {
  width: 263px;
  height: auto;
  aspect-ratio: 286 / 84;
  flex-shrink: 0;
}

.hero__lockup img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__stats-icons {
  margin-left: 24px;
  margin-top: 19px;
  width: 293px;
  height: auto;
  aspect-ratio: 318 / 49;
  flex-shrink: 0;
}

.hero__stats-icons img {
  display: block;
  width: 100%;
  height: 100%;
}

/* ── Status bar ── */
/* Hero particles sit behind copy but stay interactive in open areas */
.intro__stage,
.hero,
.status-bar {
  pointer-events: none;
}

.header,
.header a,
.header button,
.nav-v2,
.nav-v2__btn,
.nav-variant-toggle,
.header__nav,
.header__nav a,
.hero__stats,
.status-bar__items,
.status-bar__item {
  pointer-events: auto;
}

.status-bar {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 var(--hero-inset-x) clamp(20px, 3vh, 28px);
}

.status-bar__copyright {
  flex-shrink: 0;
}

.status-bar__items {
  display: flex;
  gap: 40px;
  align-items: center;
}

.status-bar__item {
  display: flex;
  gap: 7px;
  align-items: center;
}

.status-bar__dot {
  flex-shrink: 0;
}

.status-bar__dot img {
  display: block;
  width: 100%;
  height: 100%;
}

.status-bar__dot--music {
  width: 17px;
  height: 17px;
}

.status-bar__dot--gamepad {
  width: 21px;
  height: 21px;
}

.status-bar__text {
  font-family: 'PP NeueBit', monospace;
  font-weight: 700;
  font-size: 15px;
  line-height: 0.92;
  color: #fff;
  white-space: nowrap;
}

.status-bar__text .kinetic-text-reveal {
  display: inline-flex;
  flex-wrap: wrap;
}

.status-bar__text .kinetic-text-reveal__mask {
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}

.header__location .kinetic-text-reveal {
  display: inline-flex;
}

.status-bar__text.hero__hover-reveal,
.status-bar__text.hero__hover-reveal * {
  pointer-events: auto;
}

.status-bar__text.hero__hover-reveal {
  position: relative;
}

/* ── Filter heading ── */
.filter-heading {
  position: relative;
  z-index: 1;
  width: min(1334px, calc(100% - var(--content-gutter) * 2));
  margin: 149px auto 0;
  font-family: 'PP Mori', sans-serif;
  font-weight: 900;
  font-size: 63px;
  line-height: 59px;
  text-align: center;
  white-space: pre-wrap;
}

.filter-heading[data-scroll].is-inview {
  transform: translateY(0);
}

.filter-heading__active {
  color: #fff;
}

.filter-heading__muted {
  color: #6e6e6e;
}

/* ── Projects ── */
.projects-scale {
  width: 100%;
  display: flex;
  justify-content: center;
  transform-origin: top center;
  overflow: visible;
}

.projects {
  position: relative;
  z-index: 1;
  width: var(--content-width);
  max-width: none;
  flex-shrink: 0;
  margin: clamp(72px, 10vh, 112px) 0 0;
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 50px;
  transform-origin: top center;
}

.project-image {
  background: #222;
  border-radius: 10px;
  flex-shrink: 1;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.project-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info__text {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #ebebeb;
}

.project-info__title {
  font-family: 'PP Nikkei Pacific', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 8px;
}

.project-info__description {
  font-family: 'PP Mori', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.2;
  color: #ebebeb;
}

.project-info__description--large {
  font-size: 25px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.project-tag {
  padding: 0;
  border: none;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  font-family: 'PP Mori', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.46);
  white-space: nowrap;
}

.project-tag + .project-tag::before {
  content: '·';
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 400;
  pointer-events: none;
}

.project-image--visual {
  position: relative;
}

.project-visual-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(12.5px);
  -webkit-backdrop-filter: blur(12.5px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 7px;
  font-family: 'PP Mori', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.project-visual-label__icon {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.project-card--empty {
  flex: 1;
  min-width: 0;
  min-height: 500px;
}

/* Row: Full-width hero card */
.project-row--hero .project-image {
  width: 100%;
  height: 749px;
  position: relative;
}

.project-row--hero .project-overlay {
  position: absolute;
  left: 51px;
  top: 381px;
  width: 366px;
  height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  filter: drop-shadow(0 0 17.5px rgba(0, 0, 0, 0.8));
}

/* Row: Two columns */
.project-row--two {
  display: flex;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.project-card {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  flex: 1;
  min-width: 0;
  max-width: 100%;
}

.project-card .project-info {
  flex: 1;
  min-width: 0;
}

.project-card--tari-universe .project-image { width: min(541px, 100%); height: 500px; max-width: 100%; }
.project-card--tari-universe .project-info { height: 500px; }

.project-card--tari-aurora .project-image { width: min(309px, 100%); height: 500px; max-width: 100%; }
.project-card--tari-aurora .project-info { height: 500px; }

.project-card--daisy .project-image,
.project-card--big-neon .project-image,
.project-card--landed .project-image,
.project-card--mirror .project-image,
.project-card--gideon .project-image,
.project-card--trainerroad .project-image,
.project-card--fantasy .project-image,
.project-card--well .project-image,
.project-card--alcove .project-image,
.project-card--guardpost .project-image { height: 500px; }

.project-card--daisy-split .project-image { width: min(532px, 100%); height: 500px; max-width: 100%; }
.project-card--big-neon-split .project-image { width: min(547px, 100%); height: 500px; max-width: 100%; }
.project-card--mirror-split .project-image { width: min(547px, 100%); height: 500px; max-width: 100%; }

.project-card--landed .project-image { width: min(541px, 100%); max-width: 100%; }
.project-card--big-neon .project-image { width: min(391px, 100%); max-width: 100%; }
.project-card--daisy .project-image { flex: 1; min-width: 0; }
.project-card--mirror .project-image { width: min(547px, 100%); max-width: 100%; }
.project-card--gideon .project-image { width: min(532px, 100%); max-width: 100%; }
.project-card--trainerroad .project-image { width: min(547px, 100%); max-width: 100%; }
.project-card--fantasy .project-image { width: min(396px, 100%); max-width: 100%; }
.project-card--well .project-image,
.project-card--alcove .project-image,
.project-card--guardpost .project-image { width: min(500px, 100%); height: 500px; max-width: 100%; }

.project-row--wide .project-card--blink-wide .project-image,
.project-row--wide .project-card--tari-universe-big .project-image {
  width: min(1216px, 100%);
  height: 674px;
  max-width: 100%;
}

.project-row--wide .project-card--blink-wide .project-info,
.project-row--wide .project-card--tari-universe-big .project-info {
  height: 674px;
}

.project-card .project-info { height: 500px; }

/* Row: Wide single */
.project-row--wide .project-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.project-row--wide .project-image {
  width: min(1216px, 100%);
  height: 674px;
  max-width: 100%;
}

.project-row--wide .project-info {
  height: 674px;
  flex: 1;
  min-width: 0;
}

/* Row: Three images only */
.project-row--three {
  display: flex;
  gap: 50px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.project-row--three .project-image {
  flex: 1;
  height: 500px;
  min-width: 0;
}

/* Row: Square image cards */
.project-card--square .project-image {
  width: min(500px, 100%);
  height: 500px;
  max-width: 100%;
}

/* ── Footer CTA ── */
.footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-top: clamp(96px, 14vh, 160px);
  padding-bottom: clamp(120px, 16vh, 168px);
  padding-inline: var(--content-gutter);
  box-sizing: border-box;
}

.footer-cta__intro {
  font-family: 'PP Mori', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  white-space: nowrap;
  margin-bottom: clamp(12px, 2vh, 18px);
}

.footer-cta__title {
  font-family: 'PP Nikkei Pacific', sans-serif;
  font-weight: 800;
  font-size: 110px;
  line-height: 0.72;
  color: #fb0a0e;
  text-transform: uppercase;
  text-shadow: 0 0 3px #fb0a0e;
  width: min(1047px, calc(100% - 40px));
  margin: 0 auto;
}

.footer-cta__copyright {
  position: absolute;
  right: var(--content-gutter);
  bottom: clamp(24px, 4vh, 36px);
  margin: 0;
  padding: 0;
  font-family: 'PP NeueBit', monospace;
  font-weight: 700;
  font-size: 15px;
  line-height: 0.92;
  color: rgba(255, 255, 255, 0.72);
  white-space: nowrap;
  text-align: right;
}

/* ── Hero: large screens — push chrome to viewport corners ── */
@media (min-width: 1200px) {
  .intro {
    --hero-inset-x: clamp(28px, 3vw, 48px);
    --hero-inset-y: clamp(28px, 3.5vh, 42px);
  }
}

/* ── Mobile & tablet ── */
@media (max-width: 960px) {
  .page {
    border-radius: 0;
  }

  .header {
    gap: 16px;
  }

  .header__location {
    font-size: 13px;
  }

  .header__location-icon {
    width: 16px;
    height: 16px;
  }

  .hero__copy-scale,
  .hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero__copy {
    width: 100%;
    max-width: 100%;
  }

  .hero__stats-scale {
    width: 100%;
    height: auto !important;
  }

  .hero__stats {
    width: 100%;
    max-width: min(628px, 100%);
    zoom: 1 !important;
    transform: none !important;
  }

  .hero__lockup {
    width: min(263px, 42.3vw);
  }

  .hero__stats-icons {
    margin-left: clamp(12px, 2vw, 24px);
    margin-top: clamp(8px, 1.5vw, 19px);
    width: min(293px, 46vw);
  }

  .hero__title {
    font-size: clamp(2.65rem, 14vw, 4.5rem);
    line-height: calc(0.68em);
  }

  .hero__title .kinetic-text-reveal {
    flex-wrap: wrap;
  }

  .hero__title .kinetic-text-reveal__mask {
    padding-top: 0.06em;
    padding-bottom: 0.04em;
  }

  .hero__description {
    font-size: clamp(0.875rem, 3.8vw, 1.125rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .status-bar__items {
    gap: 20px;
  }

  .status-bar__text {
    font-size: 13px;
  }

  .filter-heading {
    width: auto;
    max-width: calc(100% - 32px);
    margin-top: clamp(72px, 14vw, 120px);
    padding: 0 16px;
    font-size: clamp(2rem, 8vw, 3.5rem);
    line-height: 1.05;
  }

  .projects-scale {
    width: 100% !important;
    height: auto !important;
    zoom: 1 !important;
    transform: none !important;
  }

  .projects {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: clamp(48px, 10vw, 80px) 0 0;
    padding: 0 16px;
    zoom: 1 !important;
    transform: none !important;
  }

  .projects > .project-row,
  .projects > .project-row--hero,
  .projects > .project-row--two,
  .projects > .project-row--three,
  .projects > .project-row--wide {
    height: auto !important;
    min-height: fit-content;
  }

  .projects > .project-row + .project-row,
  .projects > .project-row--hero + .project-row,
  .projects > .project-row--two + .project-row,
  .projects > .project-row--three + .project-row,
  .projects > .project-row--wide + .project-row {
    margin-top: 28px;
  }

  .hero__copy-scale {
    height: auto !important;
  }

  .hero__copy {
    zoom: 1 !important;
    transform: none !important;
  }

  .project-row--wide .project-image,
  .project-card--tari-universe .project-image,
  .project-card--tari-aurora .project-image,
  .project-card--daisy-split .project-image,
  .project-card--big-neon-split .project-image,
  .project-card--mirror-split .project-image,
  .project-card--square .project-image,
  .project-card--big-neon .project-image,
  .project-card--landed .project-image,
  .project-card--mirror .project-image,
  .project-card--gideon .project-image,
  .project-card--trainerroad .project-image,
  .project-card--fantasy .project-image,
  .project-card--well .project-image,
  .project-card--alcove .project-image,
  .project-card--guardpost .project-image,
  .project-row--wide .project-card--blink-wide .project-image,
  .project-row--wide .project-card--tari-universe-big .project-image {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-row--two,
  .project-row--three {
    display: block;
    height: auto !important;
    min-height: fit-content;
    width: 100%;
  }

  .project-row--two .project-card + .project-card,
  .project-row--three .project-image + .project-image {
    margin-top: 28px;
  }

  .project-row--wide {
    display: block;
    width: 100%;
    height: auto !important;
    min-height: fit-content;
  }

  .project-row--hero {
    min-height: fit-content;
    height: auto !important;
  }

  .project-row--hero .project-image {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: visible;
    aspect-ratio: auto;
    height: auto;
    background: transparent;
  }

  .project-row--hero .project-image > img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    border-radius: 10px;
  }

  .project-row--hero .project-overlay {
    position: static;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    margin-top: 12px;
    filter: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: flex-start;
  }

  .project-card,
  .project-row--wide .project-card {
    flex: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .project-card .project-info,
  .project-card--tari-universe .project-info,
  .project-card--tari-aurora .project-info,
  .project-row--wide .project-info,
  .project-row--wide .project-card--blink-wide .project-info,
  .project-row--wide .project-card--tari-universe-big .project-info {
    height: auto;
    min-height: 0;
    gap: 10px;
    justify-content: flex-start;
  }

  .project-card--empty {
    display: none;
  }

  .project-info__text {
    gap: 5px;
  }

  .project-info__title {
    font-family: 'PP Nikkei Pacific', sans-serif;
    font-weight: 800;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    margin-bottom: 6px;
  }

  .project-info__description,
  .project-info__description--large {
    font-size: 12px;
    line-height: 1.38;
    letter-spacing: -0.01em;
    color: #ebebeb;
  }

  .project-tags {
    gap: 0;
    padding-top: 14px;
    margin-top: 2px;
  }

  .project-tag {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.44);
  }

  .project-tag + .project-tag::before {
    margin: 0 8px;
  }

  .footer-cta {
    padding-bottom: clamp(108px, 15vh, 148px);
  }

  .footer-cta__copyright {
    right: 16px;
    bottom: clamp(20px, 3.5vh, 28px);
    padding: 0;
  }

  .footer-cta__title {
    width: auto;
    max-width: calc(100% - 32px);
    font-size: clamp(2.75rem, 12vw, 5rem);
  }

  .footer-cta__intro,
  .footer-cta__copyright {
    white-space: normal;
  }

  .footer-cta__intro {
    padding: 0 16px;
  }
}

@media (max-width: 640px) {
  .intro {
    --hero-inset-x: 16px;
    --hero-inset-y: 14px;
    min-height: 100svh;
    padding-bottom: max(8px, env(safe-area-inset-bottom));
  }

  .intro__particles {
    pointer-events: auto;
    touch-action: pan-y;
  }

  .intro__particles canvas,
  .intro__particles .particle-hero__blur-root {
    pointer-events: auto;
    touch-action: pan-y;
  }

  .intro__particles[data-particle-blur="true"] .particle-hero__blur-root {
    filter: none;
    -webkit-filter: none;
  }

  .header {
    flex-shrink: 0;
    pointer-events: auto;
  }

  .intro__stage {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 0;
    pointer-events: none;
  }

  .intro__stage::before {
    content: '';
    flex: 1 1 auto;
    min-height: clamp(80px, 20vh, 200px);
    pointer-events: none;
  }

  .hero,
  .hero__copy-scale,
  .hero__copy {
    pointer-events: auto;
    touch-action: pan-y;
  }

  .hero__copy .kinetic-text-reveal,
  .hero__copy .kinetic-text-reveal * {
    pointer-events: auto;
  }

  .hero {
    flex-shrink: 0;
    gap: 12px;
    padding-bottom: clamp(58px, 13vh, 84px);
  }

  .hero__copy {
    gap: 20px;
  }

  .hero__title {
    font-size: clamp(2.55rem, 13.5vw, 3.6rem);
    line-height: calc(0.68em);
  }

  .hero__title .kinetic-text-reveal__mask {
    padding-top: 0.05em;
    padding-bottom: 0.03em;
  }

  .hero__description {
    font-size: clamp(0.8125rem, 3.6vw, 1rem);
    line-height: 1.4;
  }

  .hero__stats {
    display: none;
  }

  .hero__lockup {
    display: none;
  }

  .status-bar {
    display: none;
  }

  .nav-variant-toggle {
    display: none;
  }
}
