:root {
  --bg: #050605;
  --panel: #0d0f0c;
  --panel-2: #151812;
  --text: #f4f6ef;
  --muted: #9ca196;
  --line: rgba(244, 246, 239, 0.14);
  --lime: #b6ff3b;
  --lime-soft: rgba(182, 255, 59, 0.18);
  --shadow: rgba(0, 0, 0, 0.55);
  --font-main: Inter, "Noto Sans KR", "Proxima Nova", ProximaNova, "Proxima", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.04) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    radial-gradient(circle at 72% 18%, rgba(182, 255, 59, 0.09), transparent 28rem),
    var(--bg);
  font-family: var(--font-main);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img,
video {
  max-width: 100%;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 20;
  opacity: 0.28;
  background-image:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.025) 44%, transparent 45%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 18px clamp(18px, 2.4vw, 34px);
  border-bottom: 1px solid rgba(244, 246, 239, 0);
  background: rgba(5, 6, 5, 0);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-solid {
  border-bottom-color: rgba(244, 246, 239, 0.1);
  background: rgba(5, 6, 5, 0.92);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  justify-self: center;
}

.brand-logo {
  display: block;
  width: clamp(132px, 9vw, 172px);
  height: auto;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.1));
}

nav {
  display: flex;
  gap: clamp(18px, 2.8vw, 42px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.header-menu-left {
  justify-self: start;
}

.header-menu-right {
  justify-self: end;
}

nav a:hover {
  color: var(--lime);
}

nav a[aria-current="page"] {
  color: var(--lime);
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: #000;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 950px;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(56px, 11vw, 148px);
}

.headline-line {
  display: block;
}

h2 {
  font-size: clamp(38px, 7vw, 104px);
}

.intro li {
  border: 1px solid var(--line);
  padding: 10px 13px;
  color: var(--muted);
  background: rgba(13, 15, 12, 0.65);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.intro li:hover {
  color: var(--bg);
  border-color: var(--lime);
  background: var(--lime);
}

.media-shell {
  position: relative;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 34px 90px var(--shadow);
  isolation: isolate;
}

.hero-film {
  --hero-video-ratio: 16 / 9;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: var(--hero-video-ratio);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.05) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    #000;
}

.media-shell video,
.media-shell > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-shell video {
  z-index: 1;
}

.hero-film video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background: #000;
}

.media-shell video:not([src]) + img,
.media-shell video:empty + img {
  opacity: 1;
}

.media-shell img {
  z-index: 0;
  opacity: 0.88;
  transform: scale(1.03);
}

.intro {
  position: relative;
  display: block;
  min-height: 646px;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.96), rgba(5, 6, 5, 0.82) 44%, rgba(5, 6, 5, 0.38) 72%, rgba(5, 6, 5, 0.82)),
    rgba(13, 15, 12, 0.54);
  isolation: isolate;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  left: clamp(18px, 4vw, 72px);
  right: clamp(18px, 4vw, 72px);
  z-index: 8;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 255, 59, 0.92), transparent);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transition:
    opacity 240ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.intro::before {
  top: 0;
  transform-origin: left center;
}

.intro::after {
  bottom: 0;
  transform-origin: right center;
}

.intro.is-profile-leaving::before,
.intro.is-profile-leaving::after {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 420ms;
}

.intro-profile-link {
  position: relative;
  display: block;
  min-height: inherit;
  color: inherit;
  cursor: pointer;
}

.intro-profile-link:focus-visible {
  outline: 1px solid var(--lime);
  outline-offset: -12px;
}

.intro-profile-arrow {
  position: absolute;
  z-index: 5;
  right: clamp(24px, 3vw, 48px);
  bottom: clamp(24px, 3vw, 46px);
  display: block;
  width: clamp(36px, 3.2vw, 58px);
  height: clamp(36px, 3.2vw, 58px);
  background: url("./assets/profile-arrow.svg") center / contain no-repeat;
  transform: translate3d(0, 0, 0);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.intro-profile-link:hover .intro-profile-arrow {
  opacity: 0.82;
  transform: translate3d(8px, -8px, 0);
}

.intro-stage {
  position: relative;
  width: 1840px;
  height: 646px;
  margin-left: max(0px, calc((100vw - 1840px) / 2));
}

.intro-copy {
  position: absolute;
  z-index: 2;
  left: 64px;
  top: 92px;
  width: 920px;
}

.intro-copy .statement-korean,
.intro-copy .statement-light,
.intro-copy ul {
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
  will-change: opacity, transform, filter;
}

.intro p {
  margin: 0;
  max-width: 100%;
  font-size: 78px;
  line-height: 0.98;
  font-weight: 800;
}

.intro-statement {
  display: grid;
  gap: clamp(5px, 0.65vw, 10px);
}

.intro-statement span {
  display: block;
}

.intro-statement .statement-korean {
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.04;
  word-break: keep-all;
}

.intro-statement .statement-accent {
  display: inline-block;
  color: var(--lime);
}

.intro-statement .statement-light {
  max-width: 820px;
  color: rgba(244, 246, 239, 0.74);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 300;
  line-height: 1.36;
  word-break: keep-all;
  overflow-wrap: normal;
}

.intro-statement .statement-korean + .statement-light {
  margin-top: 38px;
}

.intro-statement .statement-light + .statement-light {
  margin-top: 8px;
}

.intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 64px 0 0;
  padding: 0;
  list-style: none;
}

.intro-portrait {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 720px;
  overflow: hidden;
  pointer-events: none;
  transition:
    opacity 760ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms ease;
  will-change: opacity, transform, filter;
}

.intro-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.3), transparent 28%),
    linear-gradient(180deg, rgba(5, 6, 5, 0), rgba(5, 6, 5, 0.62));
  pointer-events: none;
}

.intro-portrait::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 4%;
  top: 8%;
  width: 82%;
  height: 76%;
  background:
    radial-gradient(circle at 42% 28%, rgba(244, 246, 239, 0.44) 0 8%, rgba(182, 255, 59, 0.64) 9%, rgba(182, 255, 59, 0.2) 22%, transparent 38%),
    radial-gradient(circle at 72% 56%, rgba(244, 246, 239, 0.34) 0 7%, rgba(182, 255, 59, 0.5) 8%, rgba(182, 255, 59, 0.16) 23%, transparent 42%),
    radial-gradient(ellipse at 50% 48%, rgba(182, 255, 59, 0.24), rgba(182, 255, 59, 0.08) 42%, transparent 72%);
  filter: blur(22px);
  opacity: 0.78;
  transform: rotate(-8deg);
  mix-blend-mode: screen;
  pointer-events: none;
}

.intro-portrait-image {
  position: absolute;
  z-index: 2;
  top: -12px;
  right: 24px;
  width: 640px;
  height: auto;
  max-width: none;
  filter: saturate(0.9) contrast(1.08);
  transform: translate3d(0, var(--portrait-y, 0px), 0) scale(var(--portrait-scale, 1));
  transform-origin: center bottom;
  will-change: transform;
}

.intro-signature {
  position: absolute;
  z-index: 4;
  top: 442px;
  right: 18px;
  width: 252px;
  height: auto;
  opacity: 0.82;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 10px rgba(244, 246, 239, 0.12));
}

.intro.is-profile-leaving .intro-profile-arrow {
  opacity: 0;
  transform: translate3d(24px, -24px, 0) scale(0.76);
}

.intro.is-profile-leaving .intro-copy .statement-light,
.intro.is-profile-leaving .intro-copy ul {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(-112px, 0, 0) scale(0.9);
}

.intro.is-profile-leaving .intro-copy ul {
  transition-delay: 60ms;
}

.intro.is-profile-leaving .intro-copy .statement-korean {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(-15vw, 0, 0) scale(0.84);
  transition-delay: 150ms;
}

.intro.is-profile-leaving .intro-portrait {
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(18vw, 0, 0) scale(0.96);
  transition-delay: 120ms;
}

@media (max-width: 1720px) and (min-width: 901px) {
  .intro-portrait {
    right: calc(1840px - 100vw - 90px);
  }
}

@media (max-width: 1480px) and (min-width: 901px) {
  .intro-portrait {
    right: calc(1840px - 100vw - 180px);
  }

  .intro-portrait-image {
    top: 0;
    right: 34px;
    width: 600px;
  }

  .intro-signature {
    top: 436px;
    right: 34px;
    width: 230px;
  }
}

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

.motion-ready .reveal-text {
  opacity: 0;
  transform: translateY(46px);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.work {
  --work-depth-height: 670svh;
  position: relative;
  min-height: var(--work-depth-height);
  padding: 0;
  overflow: clip;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.work-depth-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
}

.work-depth-sticky::before,
.work-depth-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.work-depth-sticky::before {
  display: none;
  z-index: 0;
  background: none;
  filter: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 900ms ease, filter 900ms ease;
  will-change: transform, opacity;
  animation: none;
}

.work-depth-sticky::after {
  display: none;
  z-index: 4;
  background: none;
}

@keyframes workAuraDrift {
  from {
    transform: scale(1) translate3d(-1.4%, -1%, 0);
  }

  to {
    transform: scale(1.08) translate3d(1.8%, 1.2%, 0);
  }
}

.work-fluid-aura {
  display: none;
  position: absolute;
  z-index: 1;
  inset: -16svh -12vw;
  pointer-events: none;
  opacity: calc(0.24 + var(--work-aura-opacity) * 0.28);
  filter: blur(30px) saturate(1.08) contrast(1.02);
  mix-blend-mode: normal;
  transform:
    translate3d(var(--work-fluid-shift-x), var(--work-fluid-shift-y), 0)
    translateZ(0)
    scale(1.02);
  transform-origin: center;
  backface-visibility: hidden;
  contain: paint;
  will-change: auto;
  animation: none;
}

.work-fluid-aura,
.work-fluid-aura::before,
.work-fluid-aura::after {
  border-radius: 43% 57% 51% 49% / 48% 42% 58% 52%;
}

.work-fluid-aura::before,
.work-fluid-aura::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.work-fluid-aura {
  background:
    radial-gradient(ellipse at 38% 42%, rgba(var(--work-color), calc(var(--work-aura-opacity) * 0.22)) 0 8%, rgba(var(--work-color), calc(var(--work-aura-opacity) * 0.09)) 18%, transparent 38%),
    radial-gradient(ellipse at 64% 58%, rgba(var(--work-color-soft), calc(var(--work-aura-opacity) * 0.18)) 0 10%, rgba(var(--work-color-soft), calc(var(--work-aura-opacity) * 0.08)) 21%, transparent 42%);
}

.work-fluid-aura::before {
  opacity: 0.58;
  background:
    radial-gradient(circle at 31% 51%, rgba(var(--work-color-soft), calc(var(--work-aura-opacity) * 0.15)) 0 10%, rgba(var(--work-color), calc(var(--work-aura-opacity) * 0.12)) 17%, transparent 38%),
    radial-gradient(ellipse at 70% 45%, rgba(var(--work-color), calc(var(--work-aura-opacity) * 0.14)) 0 11%, transparent 36%);
  animation: workFluidMerge 15s ease-in-out infinite alternate;
}

.work-fluid-aura::after {
  opacity: 0.44;
  background:
    radial-gradient(ellipse at 42% 66%, rgba(var(--work-color-soft), calc(var(--work-aura-opacity) * 0.13)) 0 10%, transparent 36%),
    radial-gradient(circle at 58% 48%, rgba(var(--work-color), calc(var(--work-aura-opacity) * 0.12)) 0 11%, transparent 34%);
  animation: workFluidSeparate 18s ease-in-out infinite alternate-reverse;
}

@keyframes workFluidBase {
  0% {
    border-radius: 42% 58% 47% 53% / 46% 42% 58% 54%;
    transform:
      translate3d(calc(var(--work-fluid-shift-x) - 1.4vw), calc(var(--work-fluid-shift-y) - 1.2svh), 0)
      rotate(-3deg)
      scale(1.03);
  }

  47% {
    border-radius: 61% 39% 54% 46% / 38% 62% 43% 57%;
    transform:
      translate3d(calc(var(--work-fluid-shift-x) + 0.8vw), calc(var(--work-fluid-shift-y) + 1.5svh), 0)
      rotate(4deg)
      scale(1.11);
  }

  100% {
    border-radius: 47% 53% 65% 35% / 56% 37% 63% 44%;
    transform:
      translate3d(calc(var(--work-fluid-shift-x) + 2vw), calc(var(--work-fluid-shift-y) - 0.2svh), 0)
      rotate(2deg)
      scale(1.07);
  }
}

@keyframes workFluidMerge {
  0% {
    border-radius: 52% 48% 36% 64% / 45% 56% 44% 55%;
    transform: translate3d(-5vw, 2svh, 0) rotate(-7deg) scale(0.92);
  }

  44% {
    border-radius: 36% 64% 61% 39% / 62% 35% 65% 38%;
    transform: translate3d(2vw, -2.8svh, 0) rotate(6deg) scale(1.12);
  }

  100% {
    border-radius: 65% 35% 47% 53% / 42% 59% 41% 58%;
    transform: translate3d(6vw, 1.4svh, 0) rotate(11deg) scale(0.98);
  }
}

@keyframes workFluidSeparate {
  0% {
    border-radius: 49% 51% 62% 38% / 38% 51% 49% 62%;
    transform: translate3d(5vw, -1.6svh, 0) rotate(8deg) scale(1.08);
  }

  52% {
    border-radius: 61% 39% 34% 66% / 57% 41% 59% 43%;
    transform: translate3d(-3vw, 2.4svh, 0) rotate(-4deg) scale(0.9);
  }

  100% {
    border-radius: 38% 62% 55% 45% / 48% 63% 37% 52%;
    transform: translate3d(-7vw, -0.8svh, 0) rotate(-10deg) scale(1.16);
  }
}

.section-head {
  position: relative;
  z-index: 6;
  top: auto;
  left: auto;
  right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 18px;
  padding: clamp(66px, 8vw, 116px) clamp(18px, 4vw, 56px) clamp(80px, 12svh, 168px);
  pointer-events: auto;
}

.section-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.work .section-head {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 6px;
  text-align: center;
}

.work .section-head .eyebrow {
  text-align: center;
}

.work .section-head h2 {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 0.94;
  text-align: center;
}

.work .controls {
  display: none;
}

.controls {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  pointer-events: auto;
}

.icon-button,
.close-button,
.add-button {
  display: grid;
  place-items: center;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(244, 246, 239, 0.05);
  cursor: pointer;
}

.icon-button,
.close-button {
  width: 44px;
}

.add-button {
  min-width: 120px;
  padding: 0 16px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.icon-button:hover,
.close-button:hover,
.add-button:hover {
  color: var(--bg);
  border-color: var(--lime);
  background: var(--lime);
}

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

.carousel {
  position: absolute;
  z-index: 2;
  inset: 0;
  overflow: visible;
  perspective: 560px;
  perspective-origin: 50% 52%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.dragging {
  cursor: default;
}

.project-card {
  --depth-x: 0vw;
  --depth-y: 0vh;
  --depth-z: -900px;
  --depth-opacity: 0;
  --depth-blur: 0px;
  --depth-rotate: 0deg;
  --depth-scale: 1;
  position: absolute;
  left: 50%;
  top: 53%;
  z-index: var(--depth-layer, 1);
  width: clamp(320px, 35vw, 660px);
  min-height: 0;
  border: 0;
  background: transparent;
  padding: clamp(16px, 1.4vw, 22px) clamp(14px, 1.3vw, 20px) clamp(14px, 1.3vw, 20px);
  cursor: zoom-in;
  opacity: var(--depth-opacity);
  user-select: none;
  pointer-events: none;
  transform:
    translate3d(calc(-50% + var(--depth-x)), calc(-50% + var(--depth-y)), var(--depth-z))
    rotateY(var(--depth-rotate))
    scale(var(--depth-scale));
  transform-origin: center center;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  contain: layout paint style;
  transition: none;
  will-change: transform, opacity;
}

.project-card.is-depth-clickable {
  pointer-events: auto;
}

.project-card:hover,
.project-card:focus-visible {
  background: transparent;
  box-shadow: none;
  outline: none;
}

.project-card-copy {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: 0 0 clamp(12px, 1vw, 16px);
  text-align: center;
}

.project-media {
  position: relative;
  overflow: hidden;
  height: auto;
  aspect-ratio: 4 / 5;
}

.project-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.96;
  transition: opacity 220ms ease;
}

.project-card:hover .project-media img,
.project-card:focus-visible .project-media img {
  opacity: 1;
}

.project-card p {
  margin: 0;
  color: var(--lime);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.project-card > span {
  color: var(--muted);
  font-size: 13px;
}

.project-card-copy > span {
  color: rgba(244, 246, 239, 0.66);
  font-size: clamp(11px, 0.92vw, 14px);
  line-height: 1.25;
}

.film-section {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 84px);
  align-items: center;
  padding: 104px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(182, 255, 59, 0.04), transparent 30%),
    linear-gradient(90deg, rgba(5, 6, 5, 0.96), rgba(5, 6, 5, 0.62));
}

.film-copy {
  position: sticky;
  top: 118px;
}

.film-copy h2 {
  max-width: 760px;
  font-size: clamp(38px, 6.2vw, 92px);
}

.capability-note {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.38;
}

.capability-stage {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 520px;
  border-color: rgba(182, 255, 59, 0.24);
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.08) 1px, transparent 1px) 0 0 / 10% 10%,
    #050605;
}

.capability-stage video:not([src]) {
  display: none;
}

.capability-stage > img {
  opacity: 0.28;
  filter: saturate(0.45) contrast(1.24) brightness(0.68);
  transform: scale(1.06);
}

.stage-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 70% 42%, rgba(182, 255, 59, 0.16), transparent 18rem),
    linear-gradient(90deg, rgba(5, 6, 5, 0.72), rgba(5, 6, 5, 0.12) 48%, rgba(5, 6, 5, 0.72)),
    linear-gradient(180deg, rgba(5, 6, 5, 0.05), rgba(5, 6, 5, 0.78));
}

.stage-scan {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: -28%;
  height: 26%;
  background: linear-gradient(180deg, transparent, rgba(182, 255, 59, 0.18), transparent);
  mix-blend-mode: screen;
  animation: capability-scan 5.4s ease-in-out infinite;
}

.stage-frame {
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  z-index: 4;
  border: 1px solid rgba(182, 255, 59, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(244, 246, 239, 0.06),
    0 0 42px rgba(182, 255, 59, 0.06);
  animation: frame-pulse 3.6s ease-in-out infinite;
}

.stage-core {
  position: absolute;
  z-index: 5;
  left: clamp(22px, 3vw, 42px);
  top: clamp(22px, 3vw, 42px);
  display: grid;
  gap: 8px;
}

.stage-core span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.stage-core strong {
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 34px);
  line-height: 0.95;
}

.capability-marquee {
  position: absolute;
  z-index: 5;
  left: 0;
  right: 0;
  bottom: clamp(24px, 3vw, 44px);
  display: flex;
  overflow: hidden;
  border-top: 1px solid rgba(182, 255, 59, 0.24);
  border-bottom: 1px solid rgba(182, 255, 59, 0.24);
  background: rgba(5, 6, 5, 0.62);
}

.capability-marquee span {
  flex: 0 0 auto;
  padding: 12px 0;
  color: var(--lime);
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 800;
  white-space: nowrap;
  animation: reel-marquee 18s linear infinite;
}

.capability-nodes {
  position: absolute;
  z-index: 5;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(86px, 8vw, 132px);
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px;
  width: min(440px, calc(100% - 36px));
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-nodes li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(244, 246, 239, 0.14);
  color: rgba(244, 246, 239, 0.82);
  background: rgba(5, 6, 5, 0.68);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: node-breathe 3.8s ease-in-out infinite;
}

.capability-nodes li:nth-child(2) {
  animation-delay: 0.28s;
}

.capability-nodes li:nth-child(3) {
  animation-delay: 0.56s;
}

.capability-nodes li:nth-child(4) {
  animation-delay: 0.84s;
}

.capability-nodes span {
  color: var(--lime);
  font-size: 11px;
}

.film-section {
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
  padding: 104px clamp(18px, 4vw, 56px) 120px;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.04) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    linear-gradient(180deg, rgba(182, 255, 59, 0.05), transparent 28%),
    #050605;
}

.capability-map-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(26px, 4vw, 52px);
}

.capability-map-head .eyebrow {
  margin: 0;
}

.capability-map-sub {
  width: min(520px, 52vw);
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.42;
}

.capability-infographic {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: min(76vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(244, 246, 239, 0.14);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(182, 255, 59, 0.18), transparent 18rem),
    linear-gradient(90deg, rgba(244, 246, 239, 0.035) 1px, transparent 1px) 0 0 / 10% 10%,
    linear-gradient(180deg, rgba(13, 15, 12, 0.9), rgba(5, 6, 5, 0.96));
  box-shadow: inset 0 0 0 1px rgba(182, 255, 59, 0.04), 0 34px 90px var(--shadow);
  isolation: isolate;
  perspective: 1200px;
}

.map-cursor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(182, 255, 59, 0.26), transparent 15rem);
  mix-blend-mode: screen;
  opacity: 0.72;
  transition: opacity 180ms ease;
}

.capability-infographic:not(.is-active) .map-cursor {
  opacity: 0.34;
}

.map-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.08) 1px, transparent 1px) 0 0 / 25% 25%,
    linear-gradient(180deg, rgba(182, 255, 59, 0.08) 1px, transparent 1px) 0 0 / 25% 25%;
  opacity: 0.34;
}

.map-axis {
  position: absolute;
  z-index: 1;
  background: rgba(182, 255, 59, 0.24);
  transform-origin: center;
}

.map-axis-x {
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
}

.map-axis-y {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
}

.map-core,
.capability-card {
  position: absolute;
  z-index: 3;
  transform:
    translate3d(var(--tx, 0px), var(--ty, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    color 220ms ease;
  will-change: transform;
}

.map-core {
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(138px, 16vw, 220px);
  aspect-ratio: 1;
  border: 1px solid rgba(182, 255, 59, 0.56);
  color: var(--text);
  background: rgba(5, 6, 5, 0.72);
  box-shadow: inset 0 0 0 1px rgba(244, 246, 239, 0.06), 0 0 44px rgba(182, 255, 59, 0.1);
  text-align: center;
  transform:
    translate(-50%, -50%)
    translate3d(var(--tx, 0px), var(--ty, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
}

.map-core span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.map-core strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(22px, 3vw, 42px);
  line-height: 0.92;
}

.capability-card {
  width: clamp(210px, 21vw, 320px);
  min-height: 172px;
  padding: 18px;
  border: 1px solid rgba(244, 246, 239, 0.14);
  background: rgba(5, 6, 5, 0.72);
  backdrop-filter: blur(14px);
}

.capability-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border: 1px solid rgba(182, 255, 59, 0);
  transition: border-color 220ms ease;
}

.capability-card span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
}

.capability-card strong {
  display: block;
  margin: 24px 0 12px;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.capability-card.is-near,
.map-core.is-near {
  border-color: rgba(182, 255, 59, 0.72);
  background: rgba(13, 15, 12, 0.92);
  box-shadow: 0 0 0 1px rgba(182, 255, 59, 0.22), 0 28px 70px rgba(0, 0, 0, 0.52);
}

.capability-card.is-near::before {
  border-color: rgba(182, 255, 59, 0.18);
}

.capability-card-2d {
  left: 8%;
  top: 14%;
}

.capability-card-3d {
  right: 9%;
  top: 12%;
}

.capability-card-ai {
  left: 13%;
  bottom: 12%;
}

.capability-card-content {
  right: 7%;
  bottom: 14%;
}

.film-section {
  min-height: 100svh;
  display: block;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #050605;
}

.liquid-scope {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(92px, 9vw, 140px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.045) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    linear-gradient(180deg, rgba(5, 6, 5, 0.94), rgba(5, 6, 5, 0.78));
  isolation: isolate;
  cursor: crosshair;
}

.liquid-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(182, 255, 59, 0.18), transparent 1px) 0 0 / 100% 24%,
    linear-gradient(90deg, rgba(182, 255, 59, 0.08), transparent 1px) 0 0 / 16.666% 100%;
  opacity: 0.28;
}

.liquid-paint {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  filter: blur(18px) contrast(1.55) saturate(1.2);
}

.paint-blob,
.liquid-cursor {
  position: absolute;
  display: block;
  background: var(--lime);
  mix-blend-mode: screen;
}

.paint-blob-main {
  left: calc(var(--mx) - 18vw);
  top: calc(var(--my) - 16vw);
  width: clamp(260px, 38vw, 620px);
  aspect-ratio: 1.45 / 1;
  border-radius: 42% 58% 63% 37% / 44% 34% 66% 56%;
  opacity: 0.9;
  animation: liquid-morph 7.2s ease-in-out infinite;
}

.paint-blob-small {
  width: clamp(54px, 8vw, 132px);
  aspect-ratio: 1;
  border-radius: 58% 42% 47% 53% / 42% 56% 44% 58%;
  opacity: 0.86;
  animation: liquid-morph-small 5.8s ease-in-out infinite;
}

.paint-blob-a {
  left: calc(var(--mx) + 20vw);
  top: calc(var(--my) - 24vh);
}

.paint-blob-b {
  left: calc(var(--mx) - 33vw);
  top: calc(var(--my) + 18vh);
  animation-delay: -1.4s;
}

.paint-blob-c {
  left: calc(var(--mx) + 31vw);
  top: calc(var(--my) + 20vh);
  width: clamp(70px, 10vw, 160px);
  animation-delay: -2.7s;
}

.liquid-cursor {
  z-index: 2;
  left: var(--mx);
  top: var(--my);
  width: clamp(72px, 10vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
  transform: translate(-50%, -50%);
  filter: blur(10px);
  transition: opacity 160ms ease;
}

.liquid-scope:not(.is-active) .liquid-cursor {
  opacity: 0.22;
}

.liquid-scope::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.5), rgba(5, 6, 5, 0.06) 52%, rgba(5, 6, 5, 0.52)),
    linear-gradient(180deg, rgba(5, 6, 5, 0.12), rgba(5, 6, 5, 0.8));
}

.liquid-meta {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 64px);
  top: clamp(92px, 10vw, 140px);
  display: grid;
  justify-items: end;
  gap: 12px;
  color: rgba(244, 246, 239, 0.72);
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.liquid-meta span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.liquid-meta strong {
  color: var(--text);
  font-size: clamp(28px, 4vw, 62px);
  line-height: 0.9;
}

.liquid-meta em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
}

.liquid-title-stack {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  min-height: calc(100svh - clamp(184px, 18vw, 280px));
  max-width: min(1120px, 86vw);
}

.liquid-title {
  position: relative;
  width: fit-content;
  color: var(--text);
  transform:
    translate3d(var(--tx, 0px), var(--ty, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
  transform-origin: left center;
  transition:
    color 200ms ease,
    opacity 200ms ease,
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.motion-ready .liquid-title.reveal-text {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.98);
}

.motion-ready .liquid-title.reveal-text.is-visible {
  opacity: 1;
  transform:
    translate3d(var(--tx, 0px), var(--ty, 0px), 0)
    rotateX(var(--rx, 0deg))
    rotateY(var(--ry, 0deg))
    scale(var(--scale, 1));
}

.liquid-title + .liquid-title {
  margin-top: clamp(-6px, -0.35vw, -2px);
}

.liquid-title span {
  position: absolute;
  left: calc(100% + 14px);
  top: 16%;
  color: var(--lime);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 800;
}

.liquid-title strong {
  display: block;
  font-size: clamp(46px, 8.8vw, 142px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: 0;
  white-space: nowrap;
  mix-blend-mode: normal;
}

.liquid-title.is-near {
  color: var(--lime);
}

.liquid-title.is-near strong {
  text-shadow: 0 0 34px rgba(182, 255, 59, 0.22);
}

.film-section {
  min-height: 100svh;
  display: block;
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #030403;
}

.cinematic-scope {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(96px, 9vw, 144px) clamp(18px, 5vw, 72px) clamp(72px, 7vw, 116px);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(182, 255, 59, 0.16), transparent 16rem),
    linear-gradient(90deg, rgba(182, 255, 59, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    linear-gradient(180deg, #030403 0%, #070807 58%, #030403 100%);
  cursor: crosshair;
  isolation: isolate;
}

.cinematic-scope::before,
.cinematic-scope::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cinematic-scope::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 4, 3, 0.68), transparent 32%, transparent 68%, rgba(3, 4, 3, 0.68)),
    linear-gradient(180deg, rgba(3, 4, 3, 0.22), transparent 42%, rgba(3, 4, 3, 0.86));
}

.cinematic-scope::after {
  z-index: 4;
  background: repeating-linear-gradient(0deg, rgba(244, 246, 239, 0.035) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
  opacity: 0.26;
}

.cinematic-light {
  position: absolute;
  z-index: 0;
  left: var(--mx);
  top: var(--my);
  width: clamp(260px, 36vw, 680px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(182, 255, 59, 0.28), rgba(182, 255, 59, 0.1) 38%, transparent 68%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease;
}

.cinematic-scope:not(.is-active) .cinematic-light {
  opacity: 0.46;
}

.cinematic-noise {
  position: absolute;
  inset: -20%;
  z-index: 2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(244, 246, 239, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(182, 255, 59, 0.08) 0 1px, transparent 1px);
  background-size: 18px 18px, 26px 26px;
  opacity: 0.18;
  animation: film-noise 640ms steps(2, end) infinite;
}

.cinematic-scan {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: -18%;
  height: 16%;
  background: linear-gradient(180deg, transparent, rgba(182, 255, 59, 0.18), transparent);
  mix-blend-mode: screen;
  animation: cinematic-scan 6.2s ease-in-out infinite;
}

.cinematic-meta {
  position: absolute;
  z-index: 5;
  right: clamp(20px, 4vw, 64px);
  top: clamp(96px, 9vw, 144px);
  display: grid;
  justify-items: end;
  gap: 12px;
  color: rgba(244, 246, 239, 0.72);
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.cinematic-meta span {
  width: 42px;
  height: 1px;
  background: currentColor;
}

.cinematic-meta strong {
  color: var(--text);
  font-size: clamp(32px, 4vw, 70px);
  line-height: 0.9;
}

.cinematic-meta em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.scope-title-stack {
  position: relative;
  z-index: 5;
  display: grid;
  align-content: center;
  min-height: calc(100svh - clamp(168px, 16vw, 260px));
  max-width: min(1160px, 88vw);
}

.scope-title {
  position: relative;
  width: fit-content;
  color: var(--text);
  transform: none;
  transform-origin: left center;
  transition:
    color 200ms ease,
    opacity 200ms ease;
}

.scope-title + .scope-title {
  margin-top: clamp(4px, 0.8vw, 12px);
}

.scope-title strong {
  display: block;
  font-size: clamp(46px, 8.2vw, 132px);
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0;
  white-space: nowrap;
}

.motion-ready .scope-title.reveal-text {
  opacity: 0;
  transform: translate3d(0, 46px, 0) scale(0.98);
}

.motion-ready .scope-title.reveal-text.is-visible {
  opacity: 1;
  transform: none;
}

.scope-title.is-near {
  color: var(--lime);
  filter: none;
}

.film-section {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  place-items: center;
  overflow: visible;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #020302;
}

.hero-scope {
  isolation: isolate;
  z-index: 21;
  border: 0;
  background: transparent;
}

.hero-scope::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.35);
}

.hero-scope-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  pointer-events: none;
  background: none;
}

.hero-scope-media video {
  opacity: 1;
  object-position: center;
  background: transparent;
  filter: brightness(1.22) saturate(1.04) contrast(1.02);
}

.scope-fluid {
  --mx: 50%;
  --my: 50%;
  position: relative;
  container-type: inline-size;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  padding: clamp(26px, 4.8vw, 72px);
  border: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(182, 255, 59, 0.1), transparent 17rem),
    linear-gradient(180deg, rgba(2, 3, 2, 0.01), rgba(7, 8, 7, 0.035) 54%, rgba(2, 3, 2, 0.07));
  cursor: crosshair;
  isolation: isolate;
  z-index: 3;
}

.hero-scope .scope-fluid {
  background: transparent;
}

.hero-scope .scope-fluid::after {
  display: none;
}

.scope-fluid-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  mix-blend-mode: screen;
}

.scope-fluid-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 3, 2, 0.74), transparent 28%, transparent 72%, rgba(2, 3, 2, 0.72)),
    linear-gradient(180deg, rgba(2, 3, 2, 0.18), transparent 48%, rgba(2, 3, 2, 0.88));
}

.scope-fluid::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(244, 246, 239, 0.03) 0 1px, transparent 1px 4px),
    radial-gradient(circle at var(--mx) var(--my), rgba(182, 255, 59, 0.08), transparent 13rem);
  mix-blend-mode: overlay;
  opacity: 0.36;
}

.scope-fluid .scope-title-stack {
  position: absolute;
  inset: 0;
  z-index: 7;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 86px);
  text-align: center;
}

.scope-fluid .scope-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: max-content;
  max-width: 88vw;
  margin: 0;
  opacity: 1;
  color: var(--text);
  transform-origin: center;
  transform: translate(-50%, -50%);
  filter: none;
  pointer-events: auto;
  transition:
    color 220ms ease,
    transform 220ms ease;
  will-change: transform;
}

.scope-fluid.is-title-cycling .scope-title:not(:first-child) {
  display: none;
}

.scope-fluid .scope-title.is-cycle-visible {
  opacity: 1;
  filter: blur(0);
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.scope-fluid .scope-title strong {
  font-size: clamp(40px, 7.2cqw, 124px);
  line-height: 0.88;
  text-shadow: none;
  color: currentColor;
  transition:
    color 240ms ease,
    filter 240ms ease;
}

.scope-fluid .scope-title.is-near {
  color: var(--lime);
  filter: none;
}

.scope-fluid .scope-title.is-near strong {
  color: currentColor;
}

@keyframes mobileScopeCycle {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate(-50%, -50%) translate3d(0, 26px, 0) scale(0.985);
  }

  8% {
    opacity: 0.38;
    filter: blur(12px);
    transform: translate(-50%, -50%) translate3d(0, 15px, 0) scale(0.99);
  }

  15%,
  28% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }

  36% {
    opacity: 0.32;
    filter: blur(11px);
    transform: translate(-50%, -50%) translate3d(0, -15px, 0) scale(1.006);
  }

  43%,
  100% {
    opacity: 0;
    filter: blur(18px);
    transform: translate(-50%, -50%) translate3d(0, -26px, 0) scale(1.01);
  }
}

.contact {
  position: relative;
  min-height: min(80vh, 760px);
  min-height: min(80svh, 760px);
  aspect-ratio: 1672 / 941;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: clamp(72px, 7vw, 120px) clamp(16px, 3.4vw, 48px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    radial-gradient(circle at 12% 18%, rgba(182, 255, 59, 0.08), transparent 28rem),
    var(--bg);
  isolation: isolate;
}

.contact-visual {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000;
}

.contact-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  filter: saturate(0.92) contrast(1.08);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.9), rgba(5, 6, 5, 0.45) 54%, rgba(5, 6, 5, 0.86)),
    linear-gradient(180deg, rgba(5, 6, 5, 0.05), rgba(5, 6, 5, 0.82));
}

.contact-content {
  width: 100%;
  max-width: 100vw;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(4px, 0.55vw, 9px);
  text-align: center;
}

.contact a {
  display: block;
  width: 100%;
  max-width: none;
  font-size: clamp(28px, 4.8vw, 84px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.025em;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.contact a:hover {
  color: var(--lime);
}

.contact-phone {
  display: block;
  margin-top: 0;
}

.profile-page {
  background:
    linear-gradient(90deg, rgba(182, 255, 59, 0.035) 1px, transparent 1px) 0 0 / 8.333vw 8.333vw,
    radial-gradient(circle at 82% 24%, rgba(182, 255, 59, 0.14), transparent 24rem),
    var(--bg);
}

.profile-main {
  min-height: 100svh;
  padding-top: 96px;
}

.profile-hero {
  position: relative;
  min-height: calc(100svh - 96px);
  display: grid;
  align-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.98), rgba(5, 6, 5, 0.72) 50%, rgba(5, 6, 5, 0.9)),
    rgba(13, 15, 12, 0.7);
  isolation: isolate;
}

.profile-stage {
  position: relative;
  width: min(100%, 1840px);
  min-height: calc(100svh - 96px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 0.86fr);
  align-items: center;
  gap: clamp(30px, 6vw, 104px);
  padding: clamp(76px, 7vw, 118px) clamp(22px, 4vw, 72px) 0;
}

.profile-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.profile-page .profile-copy > * {
  opacity: 0;
  animation: profileCopyEnter 860ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.profile-page .profile-copy > *:nth-child(1) {
  animation-delay: 120ms;
}

.profile-page .profile-copy > *:nth-child(2) {
  animation-delay: 200ms;
}

.profile-page .profile-copy > *:nth-child(3) {
  animation-delay: 310ms;
}

.profile-page .profile-copy > *:nth-child(4) {
  animation-delay: 420ms;
}

.profile-kicker,
.profile-detail-label {
  margin: 0;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-copy h1 {
  margin: 20px 0 0;
  max-width: 900px;
  font-size: clamp(58px, 8vw, 138px);
  line-height: 0.9;
  font-weight: 800;
}

.profile-copy h1 span {
  display: block;
  color: var(--lime);
}

.profile-lead {
  width: min(100%, 820px);
  margin: 34px 0 0;
  color: rgba(244, 246, 239, 0.72);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
  font-size: clamp(14px, 1.35vw, 23px);
  font-weight: 400;
  line-height: 1.38;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.profile-lead span {
  display: block;
  white-space: nowrap;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.profile-tags li {
  border: 1px solid var(--line);
  padding: 13px 17px;
  color: var(--muted);
  background: rgba(13, 15, 12, 0.66);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.profile-tags li:hover {
  color: var(--bg);
  border-color: var(--lime);
  background: var(--lime);
}

.profile-portrait {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: calc(100svh - 96px);
  overflow: visible;
  pointer-events: none;
}

.profile-portrait::before {
  display: none;
}

.profile-portrait::after {
  display: none;
}

.profile-photo {
  position: absolute;
  z-index: 2;
  right: clamp(-28px, 1vw, 28px);
  bottom: -10%;
  width: min(42vw, 720px);
  min-width: 520px;
  height: auto;
  max-width: none;
  filter: saturate(0.9) contrast(1.06);
  -webkit-mask-image: radial-gradient(ellipse at 54% 50%, #000 0 68%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
  mask-image: radial-gradient(ellipse at 54% 50%, #000 0 68%, rgba(0, 0, 0, 0.86) 78%, transparent 100%);
  opacity: 0;
  animation: profilePhotoEnter 980ms ease forwards;
  animation-delay: 360ms;
}

.profile-signature {
  position: absolute;
  z-index: 4;
  right: clamp(20px, 3.5vw, 70px);
  bottom: clamp(150px, 15vw, 270px);
  width: min(18vw, 300px);
  min-width: 200px;
  height: auto;
  opacity: 0;
  mix-blend-mode: normal;
  filter: drop-shadow(0 0 10px rgba(244, 246, 239, 0.12));
  animation: profileSignatureEnter 920ms ease forwards;
  animation-delay: 620ms;
}

@keyframes profileCopyEnter {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-82px, 0, 0);
  }

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

@keyframes profilePhotoEnter {
  from {
    opacity: 0;
    filter: blur(12px) saturate(0.8) contrast(1.06);
  }

  to {
    opacity: 1;
    filter: saturate(0.9) contrast(1.06);
  }
}

@keyframes profileSignatureEnter {
  from {
    opacity: 0;
    filter: blur(10px) drop-shadow(0 0 10px rgba(244, 246, 239, 0.08));
  }

  to {
    opacity: 0.82;
    filter: blur(0) drop-shadow(0 0 10px rgba(244, 246, 239, 0.12));
  }
}

.profile-history {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 140px) clamp(18px, 4vw, 72px) clamp(84px, 10vw, 160px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(5, 6, 5, 0.86), rgba(5, 6, 5, 0.98)),
    radial-gradient(circle at 18% 10%, rgba(182, 255, 59, 0.08), transparent 34rem);
}

.profile-history-inner {
  width: min(100%, 1680px);
  margin: 0 auto;
}

.profile-skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 42px);
}

.profile-skill-tags span {
  border: 1px solid rgba(182, 255, 59, 0.7);
  border-radius: 999px;
  padding: 5px 14px 6px;
  color: var(--lime);
  background: rgba(182, 255, 59, 0.06);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
  line-height: 1;
}

.profile-bio {
  width: min(100%, 1440px);
  display: grid;
  gap: clamp(24px, 3vw, 42px);
  color: rgba(244, 246, 239, 0.68);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
  font-size: clamp(18px, 1.45vw, 27px);
  line-height: 1.72;
  word-break: keep-all;
}

.profile-bio p,
.profile-director p,
.profile-projects p {
  margin: 0;
}

.profile-director {
  margin-top: clamp(86px, 11vw, 170px);
  max-width: 1180px;
  padding-left: clamp(20px, 3vw, 48px);
  border-left: 10px solid var(--lime);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
}

.profile-director > p:first-child,
.profile-history-label {
  color: var(--lime);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 800;
}

.profile-director h2 {
  margin: 52px 0 22px;
  max-width: 100%;
  font-size: clamp(34px, 4.4vw, 76px);
  line-height: 1.05;
  font-weight: 400;
}

.profile-director p:last-child {
  color: rgba(244, 246, 239, 0.68);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.7;
}

.profile-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 56px);
  margin-top: clamp(112px, 13vw, 210px);
  padding-top: 42px;
}

.profile-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--lime);
}

.profile-timeline article {
  position: relative;
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
}

.profile-timeline article::before {
  content: "";
  position: absolute;
  top: -37px;
  left: 14px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--lime);
  border-radius: 50%;
  background: var(--bg);
  box-shadow: 0 0 0 1px rgba(182, 255, 59, 0.28);
}

.profile-timeline span {
  display: block;
  margin-bottom: 18px;
  color: var(--lime);
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 700;
}

.profile-timeline strong {
  display: block;
  color: rgba(244, 246, 239, 0.9);
  font-size: clamp(18px, 1.5vw, 27px);
  font-style: italic;
  font-weight: 600;
}

.profile-timeline p {
  margin: 18px 0 0;
  color: rgba(244, 246, 239, 0.7);
  font-size: clamp(17px, 1.25vw, 24px);
}

.profile-timeline small {
  display: block;
  margin-top: 8px;
  color: rgba(244, 246, 239, 0.48);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.55;
}

.profile-projects {
  margin-top: clamp(76px, 9vw, 140px);
  font-family: "Pretendard", "Petendard", "Noto Sans KR", var(--font-main);
}

.profile-projects ul {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.profile-projects li {
  display: grid;
  grid-template-columns: 28px max-content minmax(0, 1fr);
  column-gap: 18px;
  align-items: center;
  min-height: 34px;
  padding-left: 0;
  color: rgba(244, 246, 239, 0.64);
  font-size: clamp(17px, 1.35vw, 24px);
  line-height: 1.25;
}

.profile-projects li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 4px solid var(--lime);
  border-radius: 50%;
  align-self: center;
}

.profile-projects strong {
  color: rgba(244, 246, 239, 0.86);
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.profile-projects span {
  color: rgba(244, 246, 239, 0.46);
  font-size: 0.72em;
  line-height: 1.35;
}

@media (max-width: 1320px) and (min-width: 901px) {
  .profile-stage {
    grid-template-columns: minmax(0, 0.86fr) minmax(470px, 0.78fr);
  }

  .profile-copy h1 {
    font-size: clamp(58px, 7vw, 112px);
  }

  .profile-portrait {
    min-height: calc(100svh - 96px);
  }

  .profile-photo {
    right: -24px;
    bottom: -8%;
    width: min(44vw, 660px);
    min-width: 500px;
  }

  .profile-signature {
    right: 20px;
    bottom: clamp(132px, 14vw, 220px);
    width: min(20vw, 270px);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 56px);
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-panel {
  width: min(1280px, 100%);
  display: grid;
  gap: 14px;
}

.lightbox-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.lightbox-figure {
  width: 100%;
  margin: 0;
}

.lightbox-main-image {
  display: block;
  width: 100%;
  max-height: 72svh;
  object-fit: contain;
  background: var(--panel);
  border: 1px solid var(--line);
}

.lightbox-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.lightbox-copy p {
  margin: 0;
}

.lightbox-copy [data-lightbox-caption] {
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lightbox-copy [data-lightbox-count] {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.lightbox-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 68px;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(5, 6, 5, 0.66);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, opacity 180ms ease;
  backdrop-filter: blur(12px);
}

.lightbox-arrow:hover {
  color: var(--bg);
  border-color: var(--lime);
  background: var(--lime);
}

.lightbox-arrow:disabled {
  opacity: 0.18;
  pointer-events: none;
}

.lightbox-arrow-prev {
  left: 14px;
}

.lightbox-arrow-next {
  right: 14px;
}

.lightbox-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.lightbox-thumb {
  flex: 0 0 88px;
  width: 88px;
  height: 66px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  cursor: pointer;
  opacity: 0.62;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-thumb:hover,
.lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--lime);
}

.lightbox-thumb.is-active {
  transform: translateY(-2px);
}

.lightbox-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.close-button {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 2;
  font-size: 30px;
  line-height: 1;
}

@keyframes scan {
  to {
    transform: translateY(100%);
  }
}

@keyframes bars {
  0%, 100% {
    transform: scaleY(0.14);
  }
  50% {
    transform: scaleY(0.72);
  }
}

@keyframes capability-scan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18% {
    opacity: 0.68;
  }
  70% {
    opacity: 0.36;
  }
  100% {
    transform: translateY(520%);
    opacity: 0;
  }
}

@keyframes frame-pulse {
  0%, 100% {
    border-color: rgba(182, 255, 59, 0.24);
    box-shadow: inset 0 0 0 1px rgba(244, 246, 239, 0.05), 0 0 24px rgba(182, 255, 59, 0.04);
  }
  50% {
    border-color: rgba(182, 255, 59, 0.54);
    box-shadow: inset 0 0 0 1px rgba(244, 246, 239, 0.08), 0 0 54px rgba(182, 255, 59, 0.12);
  }
}

@keyframes reel-marquee {
  to {
    transform: translateX(-100%);
  }
}

@keyframes node-breathe {
  0%, 100% {
    border-color: rgba(244, 246, 239, 0.14);
    color: rgba(244, 246, 239, 0.72);
  }
  50% {
    border-color: rgba(182, 255, 59, 0.42);
    color: var(--text);
  }
}

@keyframes liquid-morph {
  0%, 100% {
    border-radius: 42% 58% 63% 37% / 44% 34% 66% 56%;
    transform: rotate(0deg) scale(1);
  }
  35% {
    border-radius: 64% 36% 44% 56% / 58% 42% 58% 42%;
    transform: rotate(4deg) scale(1.05);
  }
  68% {
    border-radius: 38% 62% 60% 40% / 40% 62% 38% 60%;
    transform: rotate(-3deg) scale(0.96);
  }
}

@keyframes liquid-morph-small {
  0%, 100% {
    border-radius: 58% 42% 47% 53% / 42% 56% 44% 58%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 38% 62% 67% 33% / 63% 35% 65% 37%;
    transform: rotate(12deg) scale(1.12);
  }
}

@keyframes cinematic-scan {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  18% {
    opacity: 0.64;
  }
  100% {
    transform: translateY(760%);
    opacity: 0;
  }
}

@keyframes film-noise {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, 8px, 0);
  }
  100% {
    transform: translate3d(10px, -10px, 0);
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding: 16px 14px;
    gap: 8px;
  }

  nav {
    flex-direction: column;
    gap: 7px;
    font-size: 10px;
    line-height: 1;
  }

  .brand-logo {
    width: clamp(96px, 27vw, 122px);
  }

  .intro,
  .film-section {
    grid-template-columns: 1fr;
  }

  .intro {
    min-height: auto;
  }

  .intro-profile-link {
    min-height: 0;
  }

  .intro-profile-arrow {
    top: auto;
    right: 18px;
    bottom: 22px;
    width: 44px;
    height: 44px;
    transform: none;
  }

  .intro-profile-link:hover .intro-profile-arrow {
    transform: translateX(6px);
  }

  .intro-stage {
    width: 100%;
    height: auto;
    min-height: 0;
    margin-left: 0;
    padding: 86px 18px 0;
  }

  .intro-copy {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .intro p {
    font-size: clamp(34px, 10vw, 56px);
  }

  .intro-statement .statement-light {
    font-size: clamp(17px, 4.9vw, 22px);
    line-height: 1.44;
  }

  .intro-statement .statement-korean + .statement-light {
    margin-top: 24px;
  }

  .intro-statement .statement-light + .statement-light {
    margin-top: 2px;
  }

  .intro-portrait {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: 100%;
    height: min(92vw, 540px);
    margin-top: 28px;
    overflow: hidden;
  }

  .intro-portrait::after {
    left: 10%;
    top: 10%;
    width: 78%;
    height: 70%;
    opacity: 0.58;
    filter: blur(18px);
  }

  .intro-portrait-image {
    top: 0;
    right: auto;
    left: 50%;
    width: min(76vw, 430px);
    transform: translate3d(-50%, var(--portrait-y, 0px), 0) scale(var(--portrait-scale, 1));
  }

  .intro-signature {
    top: min(66vw, 370px);
    right: calc(50% - min(38vw, 214px));
    width: min(34vw, 176px);
  }

  .profile-main {
    padding-top: 84px;
  }

  .profile-hero {
    min-height: auto;
  }

  .profile-stage {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 72px 18px 0;
  }

  .profile-copy h1 {
    font-size: clamp(48px, 15vw, 76px);
  }

  .profile-lead {
    width: 100%;
    margin-top: 24px;
    font-size: clamp(10px, 3.15vw, 15px);
    line-height: 1.42;
    letter-spacing: 0;
  }

  .profile-lead span {
    display: block;
    white-space: nowrap;
  }

  .profile-tags {
    margin-top: 36px;
    gap: 8px;
  }

  .profile-tags li {
    padding: 11px 12px;
    font-size: 11px;
  }

  .profile-portrait {
    min-height: min(120vw, 620px);
  }

  .profile-portrait::before {
    inset: 4% 8% 14%;
    filter: blur(18px);
    opacity: 0.56;
  }

  .profile-photo {
    right: 50%;
    bottom: -18%;
    width: min(82vw, 460px);
    min-width: 0;
    transform: translateX(50%);
  }

  .profile-signature {
    right: calc(50% - min(38vw, 214px));
    bottom: min(24vw, 128px);
    width: min(36vw, 178px);
    min-width: 132px;
  }

  .profile-history {
    padding: 58px 18px 86px;
  }

  .profile-skill-tags {
    gap: 8px;
  }

  .profile-bio {
    font-size: clamp(16px, 4.1vw, 20px);
    line-height: 1.72;
  }

  .profile-director {
    margin-top: 74px;
    padding-left: 18px;
    border-left-width: 7px;
  }

  .profile-director h2 {
    margin-top: 34px;
  }

  .profile-timeline {
    grid-template-columns: 1fr;
    gap: 52px;
    margin-top: 88px;
    padding-top: 0;
  }

  .profile-timeline::before {
    top: 0;
    bottom: 0;
    left: 10px;
    right: auto;
    width: 2px;
    height: auto;
  }

  .profile-timeline article {
    padding-left: 42px;
  }

  .profile-timeline article::before {
    top: 0;
    left: 0;
  }

  .profile-timeline span {
    margin-bottom: 12px;
  }

  .profile-projects {
    margin-top: 72px;
  }

  .profile-projects li {
    grid-template-columns: 26px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 5px;
    align-items: start;
    padding-left: 0;
  }

  .profile-projects li::before {
    grid-row: 1 / span 2;
    margin-top: 0.16em;
  }

  .profile-projects strong,
  .profile-projects span {
    grid-column: 2;
    white-space: normal;
  }

  .hero {
    min-height: auto;
  }

  .hero-film {
    min-height: 0;
  }

  .section-head {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    padding: 34px 18px clamp(108px, 18svh, 172px);
    text-align: center;
  }

  .controls {
    justify-self: start;
  }

  .work .section-head .eyebrow {
    margin-bottom: 0;
    text-align: center;
  }

  .work .section-head h2 {
    margin-inline: auto;
    font-size: clamp(34px, 10.5vw, 56px);
    line-height: 0.94;
    text-align: center;
  }

  .carousel {
    perspective: 520px;
  }

  .work-fluid-aura {
    inset: -8svh -8vw;
    opacity: calc(0.16 + var(--work-aura-opacity) * 0.2);
    filter: blur(16px) saturate(1.02);
    animation-duration: 42s;
  }

  .work-fluid-aura::before {
    opacity: 0.28;
    animation-duration: 36s;
  }

  .work-fluid-aura::after {
    display: none;
  }

  .project-card {
    width: clamp(220px, 58vw, 360px);
    min-height: 0;
    will-change: transform;
  }

  .project-media {
    height: auto;
  }

  .capability-map-head {
    align-items: start;
    flex-direction: column;
  }

  .capability-map-sub {
    width: min(560px, 100%);
  }

  .capability-infographic {
    min-height: auto;
    display: grid;
    gap: 12px;
    padding: 18px;
  }

  .map-axis,
  .map-core {
    display: none;
  }

  .capability-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 138px;
    transform:
      translate3d(var(--tx, 0px), var(--ty, 0px), 0)
      rotateX(var(--rx, 0deg))
      rotateY(var(--ry, 0deg))
      scale(var(--scale, 1));
  }

  .contact {
    min-height: 76svh;
    aspect-ratio: auto;
    align-items: center;
    padding: 94px 18px 72px;
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
    gap: 4px;
  }

  .contact a {
    max-width: 100%;
    font-size: clamp(21px, 5.9vw, 34px);
    line-height: 0.98;
    letter-spacing: -0.015em;
    white-space: nowrap;
  }

  .lightbox {
    padding: 72px 14px 18px;
  }

  .lightbox-main-image {
    max-height: 60svh;
  }

  .lightbox-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .subimage-button {
    width: 100%;
  }

  .lightbox-arrow {
    width: 42px;
    height: 56px;
    font-size: 28px;
  }

  .lightbox-arrow-prev {
    left: 8px;
  }

  .lightbox-arrow-next {
    right: 8px;
  }

  .lightbox-thumb {
    flex-basis: 72px;
    width: 72px;
    height: 54px;
  }

  .liquid-scope {
    min-height: 86svh;
    padding: 92px 18px 70px;
  }

  .liquid-title-stack {
    min-height: 62svh;
    max-width: 100%;
  }

  .liquid-title strong {
    font-size: clamp(42px, 15vw, 86px);
    white-space: normal;
  }

  .liquid-title span {
    position: static;
    display: block;
    margin-bottom: 8px;
  }

  .liquid-meta {
    top: 74px;
    right: 18px;
  }

  .paint-blob-main {
    width: 84vw;
    left: calc(var(--mx) - 42vw);
    top: calc(var(--my) - 22vw);
  }

  .cinematic-scope {
    min-height: 88svh;
    padding: 92px 18px 88px;
  }

  .scope-fluid {
    width: 100%;
    aspect-ratio: auto;
    min-height: clamp(360px, 82svh, 560px);
    padding: 0;
    cursor: default;
  }

  .scope-fluid .scope-title-stack {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    max-width: 100%;
    padding: 0 22px;
    place-items: center;
  }

  .scope-fluid .scope-title {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: min(100%, 92vw);
    margin: 0;
    opacity: 0;
    color: var(--text);
    animation: mobileScopeCycle 9.6s ease-in-out infinite both;
    pointer-events: none;
    will-change: opacity, transform, filter;
  }

  .scope-fluid .scope-title:nth-child(2) {
    animation-delay: 2.4s;
  }

  .scope-fluid .scope-title:nth-child(3) {
    animation-delay: 4.8s;
  }

  .scope-fluid .scope-title:nth-child(4) {
    animation-delay: 7.2s;
  }

  .scope-fluid .scope-title strong {
    font-size: clamp(42px, 14vw, 72px);
    line-height: 0.9;
    white-space: normal;
    text-align: center;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    -webkit-text-stroke: 0;
  }

  .scope-fluid .scope-title.is-near {
    color: var(--text);
  }

  .cinematic-meta {
    top: 74px;
    right: 18px;
  }
}

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

  .intro::before,
  .intro::after {
    transition-duration: 240ms, 680ms !important;
  }

  .intro-profile-arrow {
    transition-duration: 220ms, 220ms !important;
  }

  .intro-copy .statement-korean,
  .intro-copy .statement-light,
  .intro-copy ul {
    transition-duration: 520ms, 720ms, 520ms !important;
  }

  .intro-portrait {
    transition-duration: 760ms, 860ms, 760ms !important;
  }

  .work-fluid-aura {
    animation-duration: 18s !important;
    animation-iteration-count: infinite !important;
  }

  .work-fluid-aura::before {
    animation-duration: 11s !important;
    animation-iteration-count: infinite !important;
  }

  .work-fluid-aura::after {
    animation-duration: 14s !important;
    animation-iteration-count: infinite !important;
  }

  .profile-page .profile-copy > * {
    animation-duration: 860ms !important;
  }

  .profile-photo {
    animation-duration: 980ms !important;
  }

  .profile-signature {
    animation-duration: 920ms !important;
  }

  .scope-fluid .scope-title:first-child {
    opacity: 1 !important;
    filter: none !important;
    transform: translate(-50%, -50%) !important;
  }
}
