:root {
  color-scheme: light;
  --paper: #e8e8e6;
  --ink: #050505;
  --dark: #030303;
  --cream: #f3eadc;
  --soft: #9c9c99;
  --muted: #777774;
  --dock: rgba(33, 33, 33, .78);
  --radius-pill: 10px;
  --sans: "Arial Black", "Arial Narrow", "Avenir Next Condensed", "Helvetica Neue", Arial, "PingFang TC", sans-serif;
  --body: "Avenir Next", "Helvetica Neue", Arial, "PingFang TC", sans-serif;
  --mono: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
  --side-safe-content-width: min(1180px, calc(100vw - clamp(180px, 15vw, 260px)));
}

.filter-defs {
  position: fixed;
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.lenis,
html.lenis body {
  height: auto;
}

html.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis.lenis-stopped {
  overflow: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading main {
  opacity: 0;
  filter: blur(8px);
  transform: scale(.986);
}

body.is-ready main {
  animation: page-enter 880ms cubic-bezier(.16, 1, .3, 1) both;
}

body.is-loading .corner,
body.is-loading .hero-meta {
  opacity: 0;
  pointer-events: none;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 46px);
  color: var(--cream);
  background: var(--dark);
  overflow: hidden;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 42% 52%, rgba(181, 255, 76, .11), transparent 27rem),
    radial-gradient(circle at 70% 34%, rgba(243, 234, 220, .05), transparent 21rem),
    linear-gradient(180deg, rgba(243, 234, 220, .06), transparent 24%, transparent 80%, rgba(243, 234, 220, .035));
  opacity: .86;
  pointer-events: none;
}

.site-loader.is-hiding {
  pointer-events: none;
  animation: loader-exit 720ms cubic-bezier(.76, 0, .24, 1) both;
}

.site-loader.is-hidden {
  display: none;
}

.loader-grid {
  position: absolute;
  inset: clamp(22px, 4vw, 70px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(243, 234, 220, .055);
  opacity: .52;
  pointer-events: none;
}

.loader-grid span {
  border-left: 1px solid rgba(243, 234, 220, .045);
}

.loader-grid span:last-child {
  border-right: 1px solid rgba(243, 234, 220, .045);
}

.loader-corner {
  position: absolute;
  top: clamp(24px, 4vw, 58px);
  z-index: 1;
  color: rgba(243, 234, 220, .66);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.loader-corner-left {
  left: clamp(20px, 4vw, 70px);
}

.loader-corner-right {
  right: clamp(20px, 4vw, 70px);
  text-align: right;
}

.loader-panel {
  position: relative;
  z-index: 1;
  width: min(500px, calc(90vw - 104px));
  align-self: center;
}

.loader-kicker,
.loader-status {
  font-family: var(--mono);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.2;
}

.loader-kicker {
  display: block;
  margin-bottom: clamp(18px, 2.6vw, 34px);
  color: rgba(181, 255, 76, .78);
}

.loader-word {
  display: block;
  font-family: var(--sans);
  font-size: clamp(66px, 10vw, 80px);  /* 調整：減少最大值 */
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  /* width: max-content; */
  max-width: 100%;
  transform-origin: left center;
  animation: loader-word-enter 820ms cubic-bezier(.16, 1, .3, 1) both;
  text-align: center;

}

.loader-status {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(24px, 3.4vw, 46px);
  color: rgba(243, 234, 220, .62);
}

.loader-percent::after {
  content: "%";
}

.loader-bar {
  position: relative;
  height: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: rgba(243, 234, 220, .16);
}

.loader-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left center;
  animation: loader-fill 1450ms cubic-bezier(.16, 1, .3, 1) both;
}

a,
button {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.identity-hero {
  --hero-scroll-distance: clamp(980px, 135vh, 1580px);
  position: relative;
  min-height: calc(100dvh + var(--hero-scroll-distance));
  background: var(--paper);
  overflow: visible;
}

.hero-pin {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: 6vh 24px 9vh;
  background: var(--paper);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-reverse-video,
.hero-sequence-canvas {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: saturate(.72) contrast(1.06) brightness(1.08);
  mix-blend-mode: multiply;
  transform: scale(1.035);
  transition: opacity 1.1s cubic-bezier(.16, 1, .3, 1), transform 1.6s cubic-bezier(.16, 1, .3, 1);
}

.hero-sequence-canvas {
  position: absolute;
  inset: 0;
}

body.is-ready .hero-reverse-video,
body.is-ready .hero-video-bg.uses-sequence .hero-sequence-canvas {
  opacity: .74;
  transform: scale(1.035);
}

body.is-ready .hero-video-bg.uses-sequence .hero-reverse-video {
  opacity: 0;
}

body.is-ready .hero-video-bg.is-video-released .hero-reverse-video {
  opacity: .74;
}

body.is-ready .hero-video-bg.is-video-released .hero-sequence-canvas {
  opacity: 0;
}

.brand-universal .hero-wordmark {
  width: min(92vw, 1380px);
  font-size: clamp(46px, 10.2vw, 176px);
}

.brand-universal .loader-word {
  font-size: clamp(54px, 8.5vw, 142px);
}

.hero-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, .52), transparent 30rem),
    linear-gradient(180deg, rgba(239, 239, 236, .76), rgba(239, 239, 236, .22) 50%, rgba(239, 239, 236, .68));
  pointer-events: none;
}

.hero-pin::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 10vh 8vw auto auto;
  width: min(52vw, 680px);
  aspect-ratio: 1;
  border-radius: 46% 54% 52% 48%;
  background:
    radial-gradient(circle at 38% 34%, rgba(245, 239, 226, .72), transparent 34%),
    radial-gradient(circle at 66% 58%, rgba(146, 166, 146, .24), transparent 42%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, .32), transparent 64%);
  filter: blur(34px);
  opacity: .72;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.corner {
  --corner-home-bottom: clamp(44px, 5.2vw, 88px);
  --corner-stop-top: clamp(42px, 5vh, 56px);
  --corner-rotated-height: 200px;
  position: fixed;
  top: 32px;
  z-index: 35;
  font-family: var(--sans);
  font-size: 11px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: rgba(243, 234, 220, .92);
  white-space: nowrap;
}

.corner-left {
  top: auto;
  left: clamp(26px, 4vw, 72px);
  bottom: var(--corner-home-bottom);
  --corner-rotated-height: 194px;
  text-align: left;
  transform: rotate(90deg) translate3d(-100%, 0, 0);
  transform-origin: left bottom;
}

.corner-center {
   top:50px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.corner-right {
  top: auto;
  right: clamp(26px, 4vw, 72px);
  bottom: var(--corner-home-bottom);
  --corner-rotated-height: 198px;
  text-align: left;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero-wordmark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(1160px, calc(100vw - 96px));
  transform: translateY(1.5vh);
  font-family: var(--sans);
  font-size: clamp(50px, 14vw, 170px);
  font-weight: 950;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
  isolation: isolate;
  text-align: center;
  overflow: visible;
}

.hero-wordmark span {
  display: block;
  transform: none;
}

.word-line-main {
  max-width: 100%;
  opacity: 1;
  transform: none;
  white-space: nowrap;
  will-change: opacity, transform;
}

.word-line-split {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  opacity: 0;
  text-align: center;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: opacity, transform, clip-path;
}

.split-top {
  clip-path: inset(0 0 50% 0);
}

.split-bottom {
  clip-path: inset(50% 0 0 0);
}

.hero-meta {
  position: absolute;
  left: 50%;
  top: calc(50% + min(14vw, 158px));
  z-index: 3;
  transform: translateX(-50%);
  width: min(780px, 86vw);
  overflow: clip;
  font-family: var(--sans);
  font-size: clamp(15px, 2.1vw, 30px);
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.hero-marquee {
  overflow: clip;
  mask-image: linear-gradient(90deg, transparent, rgb(0 0 0) 9%, rgb(0 0 0) 91%, transparent);
}

.hero-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-width: max-content;
  animation: hero-marquee 18s linear infinite;
}

.hero-marquee-track > span::before {
  content: "/";
  margin-right: clamp(18px, 2.5vw, 34px);
  opacity: .42;
}

.hero-marquee-track > span:first-child::before {
  content: "";
  margin: 0;
}

.marquee-slot {
  --marquee-word-slot: clamp(210px, 15vw, 220px);
  display: inline-flex;
  align-items: baseline;
  flex: 0 0 var(--marquee-word-slot);
  width: var(--marquee-word-slot);
}

.marquee-word {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity .26s ease, transform .26s cubic-bezier(.16, 1, .3, 1);
}

.marquee-word.is-changing {
  opacity: 0;
  transform: translateY(-12px);
}

.about-strip {
  position: relative;
  min-height: 100dvh;
  padding: 118px 24px 140px;
  background: var(--paper);
  overflow: hidden;
}

.about-repeat {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  overflow: clip;
  opacity: .045;
  pointer-events: none;
}

.about-repeat span {
  min-width: 0;
  font-family: var(--sans);
  font-size: clamp(120px, 20vw, 320px);
  font-weight: 950;
  letter-spacing: 0;
}

.about-object-video {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 0;
  height: min(80dvh, 760px);
  width: auto;
  max-width: none;
  transform: translate(15%, -50%);
  object-fit: contain;
  opacity: 0;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(.92);
  pointer-events: none;
  transition: opacity 1.4s cubic-bezier(.16, 1, .3, 1);
}

.about-object-video[hidden] {
  display: none;
}

.about-object-video.is-video-ready.is-active {
  opacity: .44;
}

.about-object-video.is-alpha-video.is-video-ready.is-active {
  opacity: .38;
  mix-blend-mode: normal;
  filter: contrast(1.02) saturate(.94);
}

.about-object-video.is-alpha-image {
  background: transparent;
}

.about-layout {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  min-height: 70dvh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, .62fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 118px);
  align-items: center;
}

.about-media {
  position: relative;
  width: min(380px, 100%);
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #d6d6d1;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(1.08);
  transform: none;
}

.shader-source-image {
  opacity: 0;
}

.media-shader-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .36s ease;
}

.media-shader-canvas.is-shader-ready {
  opacity: 1;
}

.about-copy h2 {
  margin: 0 0 26px;
  max-width: 11.5ch;
  font-family: var(--sans);
  font-size: clamp(54px, 7.8vw, 118px);
  line-height: .82;
  letter-spacing: 0;
  font-weight: 950;
  text-transform: uppercase;
}

.about-copy p {
  max-width: 620px;
  margin: 0 0 30px;
  color: #2e2e2c;
  font-size: clamp(18px, 2.1vw, 28px);
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 950;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "";
  width: 40px;
  height: 2px;
  background: currentColor;
}

.works-section {
  --works-top-mask: 18px;
  --works-bottom-mask: 18px;
  --works-content-width: var(--side-safe-content-width);
  timeline-scope: --work-list;
  position: relative;
  min-height: 100dvh;
  padding: 28px 20px 150px;
  background: var(--dark);
  color: var(--cream);
  overflow: visible;
}

.works-section::after {
  content: "";
  position: sticky;
  left: 0;
  width: 100%;
  display: block;
  pointer-events: none;
  z-index: 4;
}

.works-section::after {
  bottom: 0;
  height: var(--works-bottom-mask);
  margin-top: calc(var(--works-bottom-mask) * -1);
  background:
    linear-gradient(0deg, var(--dark) 0%, rgba(3, 3, 3, .82) 44%, transparent 100%);
}

.works-corners {
  position: relative;
  z-index: 6;
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(92px, 12vw, 150px);
  color: rgba(243, 234, 220, .44);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.works-corners span:nth-child(2) {
  text-align: center;
}

.works-corners span:nth-child(3) {
  text-align: right;
}

.works-title-lock {
  display: contents;
}

#works-heading {
  position: sticky;
  top: 18px;
  z-index: 6;
  margin: 0 auto clamp(72px, 7vw, 112px);
  width: min(1400px, calc(100vw - 24px));
  font-family: var(--sans);
  font-size: clamp(40px, 12.4vw, 176px);
  line-height: .72;
  font-weight: 950;
  text-align: center;
  letter-spacing: 0;
  color: var(--cream);
  text-transform: uppercase;
  overflow: visible;
  transform-origin: center top;
}

#works-heading::after {
  /* content: "";
  position: absolute;
  left: -18vw;
  right: -18vw;
  bottom: -18px;
  height: var(--works-top-mask);
  background:
    linear-gradient(180deg, var(--dark) 0%, rgba(3, 3, 3, .78) 42%, transparent 100%);
  pointer-events: none; */
}

.work-taxonomy {
  position: relative;
  z-index: 5;
  width: var(--works-content-width);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin: -8px auto 0;
  color: rgba(243, 234, 220, .46);
  font-family: var(--mono);
  font-size: clamp(11px, .92vw, 14px);
  line-height: 1.25;
}

.work-taxonomy span {
  white-space: nowrap;
}

.work-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
  width: var(--works-content-width);
  margin: 0 auto clamp(62px, 9vw, 118px);
  overflow: clip;
}

.work-stage,
.about-media,
.interface-media {
  transform-style: preserve-3d;
}

.work-image {
  position: relative;
  min-height: min(64vw, 660px);
  padding: 0;
  border: 0;
  background: #0c0c0e;
  overflow: hidden;
  cursor: pointer;
}

.work-image img,
.work-image video {
  width: 100%;
  height: 100%;
  min-height: min(64vw, 660px);
  object-fit: contain;
  object-position: center;
  filter: contrast(1.04) saturate(.82);
  transform: none;
  transition: transform .65s cubic-bezier(.16, 1, .3, 1), filter .65s cubic-bezier(.16, 1, .3, 1);
}

.work-image:hover img,
.work-image:focus-visible img,
.work-image:hover video,
.work-image:focus-visible video {
  transform: none;
  filter: contrast(1.08) saturate(1);
}

.work-info {
  padding-bottom: 20px;
}

.work-info h3 {
  margin: 0 0 12px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(28px, 3vw, 58px);
  line-height: .86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.work-kind {
  margin: 0 0 48px;
  color: rgba(243, 234, 220, .52);
  font-size: clamp(18px, 1.5vw, 24px);
}

.work-info p:last-of-type {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgba(243, 234, 220, .72);
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.35;
}

.text-link.invert {
  color: var(--cream);
}

.work-index {
  view-timeline-name: --work-list;
  view-timeline-axis: block;
  position: relative;
  width: var(--works-content-width);
  margin: clamp(24px, 3vw, 42px) auto 0;
  border-top: 0;
  isolation: isolate;
  z-index: 2;
}

.work-category-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 22px);
  min-height: clamp(54px, 6vw, 80px);
  padding: clamp(26px, 3.6vw, 48px) 0 10px;
  color: rgba(243, 234, 220, .52);
  font-family: var(--mono);
  font-size: clamp(11px, .9vw, 13px);
  line-height: 1;
  letter-spacing: .04em;
}

.work-category-divider::before {
  content: "";
  flex: 0 0 clamp(82px, 11vw, 156px);
  height: 1px;
  background: rgba(243, 234, 220, .12);
}

.work-category-divider::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 234, 220, .18), rgba(243, 234, 220, 0));
}

.work-category-divider span {
  flex: 0 1 auto;
  max-width: min(100%, 42ch);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.work-category-divider.is-first {
  padding-top: 0;
}

.work-row {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: clamp(82px, 11vw, 156px) minmax(0, 1fr) minmax(190px, .32fr) 52px;
  gap: clamp(16px, 2.6vw, 34px);
  align-items: center;
  min-height: clamp(104px, 12vw, 156px);
  padding: 22px 0;
  border: 0;
  border-bottom: 1px solid rgba(243, 234, 220, .075);
  color: rgba(243, 234, 220, .54);
  background: transparent;
  text-align: left;
  overflow: clip;
  transition: color .22s ease, transform .22s ease, filter .42s ease, opacity .42s ease;
}

.work-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  opacity: .62;
  background: rgba(243, 234, 220, .08);
  transform: translateZ(0);
  transition: opacity .22s ease, filter .28s ease;
}

.work-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: grayscale(.28) contrast(1.12);
  transform: none;
  transition: filter .28s ease, transform .42s cubic-bezier(.16, 1, .3, 1);
}

.work-row::after {
  content: "+";
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid rgba(243, 234, 220, .26);
  border-radius: 999px;
  color: rgba(243, 234, 220, .78);
  font-family: var(--sans);
  font-size: 28px;
  line-height: 1;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease, transform .32s cubic-bezier(.16, 1, .3, 1);
}

.work-row.is-expanded::after {
  content: "-";
  color: var(--dark);
  background: var(--cream);
  border-color: var(--cream);
  transform: rotate(180deg);
}

.work-row-main {
  min-width: 0;
}

.work-row-category {
  display: block;
  margin-bottom: clamp(7px, .8vw, 12px);
  color: rgba(243, 234, 220, .4);
  font-family: var(--mono);
  font-size: clamp(10px, .86vw, 13px);
  line-height: 1;
}

.work-row-title {
  display: block;
  font-family: var(--sans);
  font-size: clamp(28px, 5.2vw, 76px);
  line-height: .8;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transform-origin: left center;
  overflow-wrap: anywhere;
}

.work-row-kind {
  font-size: 17px;
  line-height: 1.25;
}

.work-row:hover,
.work-row:focus-visible,
.work-row.is-active {
  color: var(--cream);
}

.work-row:hover .work-thumb,
.work-row:focus-visible .work-thumb,
.work-row.is-active .work-thumb {
  opacity: .96;
}

.work-row:hover .work-thumb img,
.work-row:focus-visible .work-thumb img,
.work-row.is-active .work-thumb img {
  filter: grayscale(0) contrast(1.08);
  transform: none;
}

.work-row:focus-visible {
  outline: 2px solid rgba(243, 234, 220, .72);
  outline-offset: 7px;
}

.work-row:active {
  transform: translateY(1px);
}

.work-detail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    grid-template-rows .55s cubic-bezier(.16, 1, .3, 1),
    opacity .32s ease,
    visibility 0s linear .55s;
}

.work-detail.is-expanded {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    grid-template-rows .58s cubic-bezier(.16, 1, .3, 1),
    opacity .38s ease,
    visibility 0s;
}

.work-detail-inner {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  transform: translateY(18px);
  transition: padding .55s cubic-bezier(.16, 1, .3, 1), transform .55s cubic-bezier(.16, 1, .3, 1);
}

.work-detail.is-expanded .work-detail-inner {
  margin: 0 0 clamp(24px, 4vw, 54px);
  padding: clamp(34px, 7vh, 86px) 0 0;
  transform: translateY(0);
}

.work-detail-stage {
  width: 100%;
  margin: 0;
  transform-origin: center top;
}

.work-detail-stage .work-info {
  padding-bottom: 16px;
}

.work-detail-stage .work-feeling {
  margin-top: -14px;
  color: rgba(243, 234, 220, .6);
  font-size: clamp(15px, 1.15vw, 18px);
}

.work-detail-stage .work-feeling strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(243, 234, 220, .42);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.work-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.detail-link-button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(243, 234, 220, .42);
  border-radius: 999px;
  color: var(--dark);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .22s ease, background-color .22s ease;
}

.detail-link-button:hover,
.detail-link-button:focus-visible {
  background: rgb(255 247 232);
}

.detail-link-button:active {
  transform: translateY(1px);
}

.interface-section {
  padding: clamp(56px, 5vw, 84px) 0 clamp(42px, 4vw, 68px);
  background: var(--paper);
  overflow: hidden;
}

.interface-inner {
  width: var(--side-safe-content-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .74fr) minmax(460px, .92fr);
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}

.interface-title {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin: 0 auto -34px;
  color: rgba(5, 5, 5, .46);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}

.interface-media,
.interface-copy {
  width: min(100%, 720px);
  min-width: 0;
}

.interface-media {
  position: relative;
  justify-self: end;
  min-height: clamp(340px, 34vw, 480px);
  overflow: hidden;
  background: #d4d4d0;
}

.interface-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(340px, 34vw, 480px);
  object-fit: contain;
  object-position: center;
  filter: grayscale(1) saturate(0) contrast(1.12);
  transform: none;
}

.interface-copy h2 {
  margin: 0 0 28px;
  max-width: min(100%, 760px);
  font-family: var(--sans);
  font-size: clamp(40px, 3.9vw, 64px);
  line-height: .9;
  letter-spacing: 0;
  font-weight: 950;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: manual;
}

.interface-copy p {
  max-width: 540px;
  margin: 0;
  color: #2a2a28;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.32;
}

.skill-tree-section {
  position: relative;
  min-height: 100dvh;
  padding: clamp(86px, 10vw, 150px) 0 clamp(110px, 12vw, 180px);
  background: var(--dark);
  color: var(--cream);
  overflow: clip;
}

.skill-tree-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 58% 28%, rgba(181, 255, 76, .12), transparent 28rem),
    linear-gradient(180deg, rgba(232, 232, 230, .08), transparent 22%, transparent 76%, rgba(3, 3, 3, .9));
  pointer-events: none;
}

.skill-tree-heading {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  margin: 0 auto clamp(58px, 7vw, 106px);
  display: grid;
  grid-template-columns: minmax(0, .68fr) minmax(280px, .32fr);
  gap: clamp(26px, 5vw, 80px);
  align-items: end;
}

.skill-tree-heading h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(66px, 12vw, 184px);
  line-height: .76;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skill-tree-heading p {
  margin: 0 0 .4em;
  color: rgba(243, 234, 220, .68);
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.36;
}

.skill-tree-map {
  position: relative;
  z-index: 1;
  width: var(--side-safe-content-width);
  min-height: clamp(980px, 82vw, 1240px);
  margin: 0 auto;
  border-top: 1px solid rgba(243, 234, 220, .22);
  border-bottom: 1px solid rgba(243, 234, 220, .18);
}

.skill-tree-canvas {
  position: absolute;
  inset: -8% -4%;
  z-index: 0;
  width: 108%;
  height: 116%;
  opacity: .9;
  pointer-events: none;
}

.skill-tree-map::before,
.skill-tree-map::after,
.skill-axis {
  content: "";
  position: absolute;
  background: rgba(243, 234, 220, .22);
  pointer-events: none;
}

.skill-tree-map::before {
  left: 50%;
  top: 8%;
  bottom: 10%;
  width: 1px;
}

.skill-tree-map::after {
  left: 14%;
  right: 14%;
  top: 50%;
  height: 1px;
}

.skill-tree-map.is-three-ready::before,
.skill-tree-map.is-three-ready::after,
.skill-tree-map.is-three-ready .skill-axis {
  opacity: .32;
}

.skill-axis-main {
  left: 25%;
  right: 25%;
  top: 28%;
  height: 1px;
  transform: rotate(-14deg);
  transform-origin: center;
}

.skill-node {
  --skill-node-transform: none;
  position: absolute;
  z-index: 2;
  width: min(360px, 32vw);
  min-height: 176px;
  padding: 0 0 22px 24px;
  color: rgba(243, 234, 220, .72);
  transform: var(--skill-node-transform);
}

.skill-node::before {
  content: "";
  position: absolute;
  left: 0;
  top: .32em;
  width: 12px;
  height: 12px;
  background: var(--cream);
  box-shadow: 0 0 0 12px rgba(243, 234, 220, .06);
}

.skill-node::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 22px;
  bottom: 0;
  width: 1px;
  background: rgba(243, 234, 220, .2);
}

.skill-node-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(181, 255, 76, .76);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1;
}

.skill-node h3 {
  margin: 0 0 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(30px, 3.5vw, 64px);
  line-height: .82;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.skill-node p {
  max-width: 30ch;
  margin: 0;
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.36;
}

.skill-node-core {
  left: 50%;
  top: 42%;
  width: min(330px, 30vw);
  --skill-node-transform: translate(-50%, -50%);
}

.skill-node-core::before {
  width: 18px;
  height: 18px;
  background: #b5ff4c;
  box-shadow: 0 0 0 18px rgba(181, 255, 76, .08);
}

.skill-node-llm {
  left: 3%;
  top: 7%;
}

.skill-node-wm {
  right: 0;
  top: 9%;
}

.skill-node-thinking {
  left: 0;
  bottom: 15%;
}

.skill-node-go {
  right: 0;
  bottom: 16%;
}

.skill-node-hmi {
  left: 50%;
  bottom: 0;
  --skill-node-transform: translateX(-50%);
}

.site-footer {
  position: relative;
  isolation: isolate;
  min-height: 92dvh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr auto auto;
  gap: clamp(20px, 4vw, 48px);
  align-items: end;
  padding: 0 24px clamp(56px, 6vw, 82px);
  background: var(--dark);
  color: var(--cream);
  overflow: visible;
}

.footer-wordmark {
  position: absolute;
  inset: 0 0 auto;
  display: grid;
  color: rgba(243, 234, 220, .08);
  font-family: var(--sans);
  font-size: clamp(86px, 16vw, 236px);
  font-weight: 950;
  line-height: .72;
  letter-spacing: 0;
  text-transform: uppercase;
  filter: url("#hero-displace");
  pointer-events: none;
}

.footer-wordmark span {
  grid-area: 1 / 1;
  transform: scaleX(1.06);
}

.footer-wordmark span:last-child {
  color: rgba(243, 234, 220, .045);
  transform: translateY(.26em) scaleX(.96);
}

.brand-universal .footer-wordmark {
  font-size: clamp(66px, 12vw, 178px);
}

.footer-copy {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 2;
}

.footer-model {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  isolation: isolate;
  overflow: visible;
}

.footer-model::before {
  content: none;
}

.footer-model-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transform: translate3d(0, -16vh, 0) scale(.88);
  transition:
    opacity .72s cubic-bezier(.16, 1, .3, 1),
    transform .72s cubic-bezier(.16, 1, .3, 1);
}

.footer-model.is-model-ready .footer-model-canvas {
  opacity: 1;
  transform: translate3d(0, -16vh, 0) scale(.88);
}

.footer-copy span,
.footer-copy strong,
.site-footer a {
  margin: 0;
  font-family: var(--sans);
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-copy span {
  display: block;
  font-size: 42px;
  line-height: .8;
}

.footer-copy strong {
  display: block;
  font-size: 14px;
  color: rgba(243, 234, 220, .6);
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
  font-size: 20px;
}

.footer-cta {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 2;
  min-height: 62px;
  display: inline-grid;
  place-items: center;
  padding: 0 26px;
  border: 1px solid currentColor;
  border-radius: 999px;
  transition: color .22s ease, background-color .22s ease, transform .22s ease;
}

.footer-cta:hover,
.footer-cta:focus-visible {
  color: var(--dark);
  background: var(--cream);
  transform: translateY(-2px);
}

.footer-link {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 3;
  justify-self: end;
  color: rgba(243, 234, 220, .68);
  font-family: var(--body);
  font-size: clamp(18px, 3vw, 40px);
  letter-spacing: 0;
  text-transform: none;
}

.footer-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(.08);
  transform-origin: right center;
  transition: transform .36s cubic-bezier(.16, 1, .3, 1);
}

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

.work-dialog {
  width: min(1180px, calc(100% - 36px));
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
}

.work-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.dialog-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .66fr) minmax(300px, .34fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: end;
  padding: clamp(16px, 2vw, 28px);
  background: #050505;
}

.dialog-media {
  width: 100%;
  min-width: 0;
  background: #050505;
}

.dialog-media img,
.dialog-media video {
  width: 100%;
  height: min(70dvh, 700px);
  object-fit: contain;
  object-position: center;
  background: #050505;
}

.dialog-copy h2 {
  margin: 0 0 16px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 108px);
  line-height: .78;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dialog-copy p {
  color: rgba(243, 234, 220, .72);
  font-size: 18px;
  line-height: 1.4;
}

.dialog-copy p:first-child {
  color: rgba(243, 234, 220, .48);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(243, 234, 220, .42);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(3, 3, 3, .68);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-pin::after {
    animation: cloud-drift 18s cubic-bezier(.45, 0, .25, 1) infinite alternate;
    will-change: transform;
  }

  body.is-ready .hero-wordmark {
    animation: wordmark-enter 950ms cubic-bezier(.16, 1, .3, 1) both;
  }

  body.is-ready .corner-center {
    animation: corner-enter 680ms cubic-bezier(.16, 1, .3, 1) 340ms both;
  }

  body.is-ready .hero-meta {
    animation: meta-enter 760ms cubic-bezier(.16, 1, .3, 1) 520ms both;
  }

  .reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0);
    transition:
      opacity .78s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms),
      transform .78s cubic-bezier(.16, 1, .3, 1) var(--reveal-delay, 0ms);
  }

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

  .work-detail-stage.reveal {
    opacity: 0;
    filter: blur(22px) saturate(.72);
    transform: translate3d(0, 58px, 0) scale(.982);
  }

  .work-detail-stage.reveal.is-visible {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate3d(0, 0, 0) scale(1);
  }

  .skill-node.reveal {
    opacity: 0;
    filter: blur(14px) saturate(.76);
    transform: var(--skill-node-transform);
  }

  .skill-node.reveal.is-visible {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: var(--skill-node-transform);
  }

}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    #works-heading {
      animation: works-title-release linear both;
      animation-timeline: --work-list;
      animation-range: entry 78% entry 96%;
    }

    .about-media img,
    .interface-media img {
      animation: image-parallax linear both;
      animation-timeline: view();
      animation-range: entry -20% exit 120%;
    }

    .work-image img,
    .work-image video {
      animation: work-image-parallax linear both;
      animation-timeline: view();
      animation-range: entry -10% exit 110%;
    }

    .work-detail.is-expanded .work-detail-stage {
      animation: work-stage-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 75%;
    }

    .work-row {
      animation: work-row-depth linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 100%;
    }

    .skill-node {
      animation: skill-node-focus linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 72%;
    }

    .about-repeat {
      animation: repeat-parallax linear both;
      animation-timeline: view();
      animation-range: entry -10% exit 110%;
    }

    .footer-wordmark {
      animation: footer-word-distort linear both;
      animation-timeline: view();
      animation-range: entry 0% exit 90%;
    }
  }
}

@keyframes hero-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

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

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@supports (animation-timeline: scroll()) {
  @media (prefers-reduced-motion: no-preference) {
    .corner-left,
    .corner-right {
      animation: corner-side-rise 1s linear both;
      animation-timeline: scroll(root block);
      animation-range: 0% 100%;
    }
  }
}

@keyframes loader-fill {
  0% {
    transform: scaleX(0);
  }

  72% {
    transform: scaleX(.94);
  }

  100% {
    transform: scaleX(1);
  }
}

@keyframes loader-word-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, 18px, 0) scale(.992);
  }

  62% {
    opacity: 1;
    filter: blur(1px);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loader-exit {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }

  to {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, -18px, 0);
  }
}

@keyframes corner-enter {
  from {
    opacity: 0;
    filter: blur(8px);
    clip-path: inset(0 0 100% 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}

@keyframes meta-enter {
  from {
    opacity: 0;
    filter: blur(10px);
    clip-path: inset(48% 0 48% 0);
  }

  to {
    opacity: 1;
    filter: blur(0);
    clip-path: inset(0);
  }
}

@keyframes cloud-drift {
  from {
    transform: translate3d(-2vw, -1vh, 0) scale(.96) rotate(-4deg);
  }

  to {
    transform: translate3d(4vw, 3vh, 0) scale(1.08) rotate(8deg);
  }
}

@keyframes wordmark-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 1.5vh, 0) scale(1);
  }
}

@keyframes image-parallax {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 0;
  }
}

@keyframes work-image-parallax {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 0;
  }
}

@keyframes works-title-release {
  from {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }

  48% {
    opacity: 1;
  }

  to {
    opacity: .18;
    transform: scaleY(.74) translateY(-24vh);
  }
}

@keyframes corner-side-rise {
  from {
    bottom: var(--corner-home-bottom);
  }

  to {
    bottom: calc(100dvh - var(--corner-stop-top) - var(--corner-rotated-height));
  }
}

@keyframes work-stage-focus {
  from {
    opacity: .28;
    filter: blur(22px) saturate(.72);
    transform: translate3d(0, 58px, 0) scale(.982);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes work-row-depth {
  0% {
    opacity: .2;
    filter: blur(10px) saturate(.76);
  }

  22% {
    opacity: .78;
    filter: blur(3px) saturate(.9);
  }

  42%,
  82% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }

  100% {
    opacity: .42;
    filter: blur(0) saturate(.9);
  }
}

@keyframes skill-node-focus {
  from {
    opacity: .24;
    filter: blur(14px) saturate(.76);
  }

  to {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

@keyframes repeat-parallax {
  from {
    transform: translate3d(-4vw, 0, 0);
  }

  to {
    transform: translate3d(5vw, 0, 0);
  }
}

@keyframes footer-word-distort {
  from {
    opacity: .7;
    transform: translateY(16vh) scaleY(1.45);
  }

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

  to {
    opacity: .54;
    transform: translateY(-12vh) scaleY(.68);
  }
}

@keyframes pixel-breathe {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.035) rotate(1deg);
  }
}

@keyframes pixel-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(-3px, 2px, 0);
  }

  75% {
    transform: translate3d(3px, -2px, 0);
  }
}

@media (max-width: 980px) {
  .hero-wordmark {
    width: min(100%, calc(100vw - 48px));
    font-size: clamp(44px, 11vw, 104px);
  }

  .hero-meta {
    top: calc(50% + 18vh);
    gap: 22px;
  }

  .about-layout,
  .work-stage,
  .work-detail-inner,
  .interface-inner,
  .dialog-inner {
    grid-template-columns: 1fr;
  }

  .about-media,
  .interface-media,
  .interface-copy {
    justify-self: start;
  }

  .skill-tree-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .skill-tree-map {
    min-height: auto;
    display: grid;
    gap: 28px;
    padding: 32px 0;
  }

  .skill-tree-map::before,
  .skill-tree-map::after,
  .skill-axis {
    display: none;
  }

  .skill-tree-canvas {
    display: none;
  }

  .skill-node,
  .skill-node-core,
  .skill-node-llm,
  .skill-node-wm,
  .skill-node-thinking,
  .skill-node-go,
  .skill-node-hmi {
    --skill-node-transform: none;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: min(100%, 720px);
    min-height: auto;
    transform: none;
  }

  .work-info {
    padding-bottom: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --side-safe-content-width: min(100%, calc(100vw - 28px));
  }

  .hero-pin {
    padding: 86px 14px 118px;
  }

  .works-section {
    --works-content-width: var(--side-safe-content-width);
  }

  .corner {
    top: 18px;
    font-size: 9px;
    --corner-home-bottom: 26px;
    --corner-stop-top: 28px;
  }

  .corner-left,
  .corner-right {
    top: auto;
    bottom: var(--corner-home-bottom);
  }

  .corner-left {
    left: 18px;
    --corner-rotated-height: 162px;
  }

  .corner-right {
    right: 24px;
    --corner-rotated-height: 168px;
  }

  .corner-center {
    display: none;
  }

  .hero-wordmark {
    width: min(100%, calc(100vw - 28px));
    font-size: clamp(42px, 13vw, 72px);
    letter-spacing: 0;
  }

  .hero-meta {
    top: auto;
    bottom: 122px;
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center;
    font-size: 20px;
  }

  .about-strip,
  .works-section,
  .interface-section,
  .skill-tree-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .about-layout {
    min-height: auto;
  }

  .about-object-video {
    height: min(58dvh, 480px);
    transform: translate(24%, -52%);
  }

  .about-object-video.is-video-ready.is-active {
    opacity: .28;
  }

  .about-object-video.is-alpha-video.is-video-ready.is-active {
    opacity: .38;
  }

  .about-copy h2 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .interface-copy h2 {
    max-width: min(100%, 720px);
    font-size: clamp(38px, 11vw, 70px);
  }

  .works-corners {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 74px;
  }

  .works-corners span:nth-child(2) {
    display: none;
  }

  #works-heading {
    margin-bottom: 70px;
    width: min(680px, calc(100vw - 28px));
    font-size: clamp(40px, 12.4vw, 84px);
  }

  .work-image,
  .work-image img,
  .work-image video {
    min-height: 390px;
  }

  .work-category-divider {
    gap: 10px;
    min-height: 50px;
    padding: 26px 0 7px;
    font-size: 11px;
  }

  .work-category-divider::before {
    flex-basis: 74px;
  }

  .work-category-divider span {
    max-width: calc(100% - 118px);
  }

  .work-row {
    grid-template-columns: 74px minmax(0, 1fr) 46px;
    gap: 12px;
    min-height: 108px;
    padding: 18px 0;
  }

  .work-thumb {
    grid-column: 1;
    grid-row: 1 / span 2;
    align-self: center;
    border-radius: 5px;
  }

  .work-row-title {
    font-size: clamp(31px, 10vw, 62px);
  }

  .work-row-main {
    grid-column: 2;
    grid-row: 1;
  }

  .work-row-kind {
    grid-column: 2;
    grid-row: 2;
    padding-right: 0;
  }

  .work-row::after {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
    width: 42px;
    height: 42px;
  }

  .work-detail.is-expanded .work-detail-inner {
    padding: 74px 0 0;
  }

  .interface-title,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .interface-media,
  .interface-media img {
    min-height: 320px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(220px, 1fr) auto auto auto;
    gap: 18px;
    min-height: 92dvh;
    padding-top: 0;
  }

  .footer-copy,
  .footer-cta,
  .footer-link {
    grid-column: 1;
  }

  .footer-model {
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .footer-copy {
    grid-row: 2;
  }

  .footer-cta {
    grid-row: 3;
    justify-self: start;
  }

  .footer-link {
    grid-row: 4;
    justify-self: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  body.is-loading {
    overflow: auto;
  }

  body.is-loading main {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .site-loader {
    display: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
