:root {
  /* 页面基础颜色 */
  --paper: #F8F8F8;
  --ink: #121212;
  --muted: #474747;
  --rule-strong: rgba(0, 0, 0, 0.72);
  --rule-soft: rgba(0, 0, 0, 0.3);
  --accent: #fa2b1f;
  --placeholder: #5b5b5b;
  --font-sans: "PingFang SC", "PingFang HK", "PingFang TC", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* 左侧目录栏宽度 */
  --index-column-width: 350px;

  /* 顶部导航栏高度 */
  --archive-top-nav-height: 72px;

  /* 项目展开时左侧目录栏宽度 */
  --index-column-width-expanded: 220px;

  /* 左侧项目高亮块的左缩进 */
  --index-highlight-indent: 44px;

  /* 项目数字相对高亮块再额外右移的距离 */
  --index-item-text-extra-indent: 10px;

  /* 高亮小圆点距离右边界的额外缩进，值越大，小圆点越往左 */
  --index-item-dot-offset: 7px;

  /* 项目数字栏宽度 */
  --project-number-width: 132px;

  /* 项目展开后左侧黄色卡片宽度 */
  --panel-expanded-card-width: 150px;

  /* 项目展开后左侧黄色卡片高度 */
  --panel-expanded-card-height: 150px;

  /* 项目展开后右侧说明栏固定宽度 */
  --panel-expanded-side-width: 318px;

  /* 展开后 frame 与右侧说明栏之间的固定间距 */
  --panel-expanded-side-gap: 10px;

  /* 文字说明区域宽度，值越大，文字区越宽，右侧 frame 会相应变窄 */
  --panel-copy-width: 260px;

  /* 项目顶部留白，上下分割线与内容的呼吸感主要由它控制 */
  --hero-top-space: 15px;

  /* 右侧滚动区域 sticky 元素距离视口顶部的实际位置：外框 + toolbar + 15px 留白 */
  --detail-sticky-top: calc(1px + 24px + 20px + 12px + 1px + var(--hero-top-space));

  /* 数字与文字卡片之间的水平间距 */
  --hero-number-text-gap: 0px;

  /* 文字卡片与右侧 frame 之间的水平间距 */
  --hero-text-frame-gap: 10px;

  /* frame 顶部白色遮罩条的高度 */
  --frame-top-box-height: 15px;

  /* frame 的基础高度，跟随浏览器可视高度自适应 */
  --panel-frame-min-height: calc(100dvh - 82px);

  /* 项目展开后 frame 的可视高度，同样跟随浏览器可视高度自适应 */
  --panel-expanded-frame-height: calc(100dvh - 82px);

  /* 展开后主图和后续附加内容之间的间距 */
  --panel-frame-gallery-gap: 36px;

  /* 项目 01 独立图片流容器宽度 */
  --project-01-flow-width: 920px;

  /* 主图的统一导出比例，当前项目 01 是 1350 x 900，也就是 3:2 */
  --project-frame-aspect-ratio: 3 / 2;

  /* 文字高亮卡片描边颜色 */
  --panel-highlight-border: rgba(18, 18, 18, 0.12);

  /* 文字卡片高亮时的背景色 */
  --panel-highlight-active: #FFF946;

  /* 文字卡片上边距 */
  --panel-highlight-padding-top: 15px;

  /* 文字卡片右边距 */
  --panel-highlight-padding-right: 10px;

  /* 文字卡片下边距 */
  --panel-highlight-padding-bottom: 10px;

  /* 文字卡片左边距 */
  --panel-highlight-padding-left: 9px;

  /* 文字高亮卡片的最小高度 */
  --panel-highlight-min-height: 208px;

  /* overview 里 frame shell 按 3:2 比例从高亮卡片高度推导出的最小宽度 */
  --panel-frame-shell-min-width: 312px;

  /* 右下角箭头图标尺寸 */
  --panel-highlight-arrow-size: 40px;

  /* 箭头距离卡片右下角的距离 */
  --panel-highlight-arrow-inset: 10px;

  /* 给箭头预留的底部空间，值越大，箭头和上面文字距离越远 */
  --panel-highlight-arrow-reserve: 52px;

  /* 项目卡片展开/收起的统一动效 */
  --panel-expand-motion: 300ms ease;

  /* 项目主布局切换的动效，用于卡片和 frame 同步变形 */
  --panel-layout-motion: 420ms cubic-bezier(0.22, 1, 0.36, 1);

  /* 卡片内容自身收缩速度 */
  --panel-card-motion: 260ms cubic-bezier(0.22, 1, 0.36, 1);

}

/* 项目图片控制区
   按项目顺序排列。
   后面如果某个项目要单独调整图片构图，直接改对应项目这两项：
   --project-frame-image-position：图片在 frame 里的位置
   --project-frame-anchor-x-expanded / --project-frame-anchor-y-expanded：展开后的 frame 中心标记
   --project-frame-image-size：图片在 frame 里的缩放大小 */

/* Project 01 - Earth Explorer / 大地探索家 */
.project-panel[data-project="01"] {
  /* 图片位置：先写水平，再写垂直 */
  --project-frame-image-position: 113% center;
  /* 展开态中心标记位置 */
  --project-frame-anchor-x-expanded: 15%;
  --project-frame-anchor-y-expanded: 50%;
  /* 图片大小：auto 100% 表示按高度铺满 */
  --project-frame-image-size: auto 100%;
}

/* Project 02 - Stitch Trace / 针迹 */
.project-panel[data-project="02"] {
  --project-frame-image-position: 110% center;
  --project-frame-anchor-x-expanded: 50%;
  --project-frame-anchor-y-expanded: 50%;
  --project-frame-image-size: auto 110%;
}

/* Project 03 - Utopia: Waterside Residence / 乌托邦:水上静居 */
.project-panel[data-project="03"] {
  --project-frame-image-position: 113% center;
  --project-frame-anchor-x-expanded: 50%;
  --project-frame-anchor-y-expanded: 50%;
  --project-frame-image-size: auto 100%;
}

/* Project 04 - Qi: Wind-Field Interactive Cockpit / 气:风场交互座舱 */
.project-panel[data-project="04"] {
  --project-frame-image-position: 113% center;
  --project-frame-anchor-x-expanded: 50%;
  --project-frame-anchor-y-expanded: 50%;
  --project-frame-image-size: auto 150%;
}

* {
  box-sizing: border-box;
}

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

body.debug-outlines * {
  outline: 1px solid rgba(0, 0, 0, 0.18);
}

body.debug-outlines *::before,
body.debug-outlines *::after {
  outline: 1px solid rgba(0, 0, 0, 0.18);
}

body.debug-outlines .panel-frame img,
body.debug-outlines .panel-frame::before,
body.debug-outlines .panel-frame::after {
  outline: none;
}

.debug-label-layer {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 2147483000;
}

.debug-label-layer .debug-name-badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  padding: 3px 7px;
  background: rgba(255, 62, 62, 0.96);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.75);
}

body.debug-labels [data-debug-label] {
  box-shadow: inset 0 0 0 1px rgba(255, 62, 62, 0.9);
}

body.debug-labels [data-debug-label]:hover {
  box-shadow: inset 0 0 0 2px rgba(167, 0, 0, 0.96);
}

.debug-label-layer .debug-name-badge.is-hovered {
  background: rgba(167, 0, 0, 0.98);
  box-shadow: 0 0 0 1px rgba(255, 226, 226, 0.9);
}

.home-transition-stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-rows: 100dvh 100dvh 100dvh;
  width: 100%;
  height: 300dvh;
  background: var(--paper);
  transition: transform 760ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.home-transition-stage.is-index-visible {
  transform: translateY(-100dvh);
}

.home-transition-stage.is-about-visible {
  transform: translateY(-200dvh);
}

.home-transition-stage.is-about-visible + .archive-top-nav .index-link.is-active {
  background: transparent;
}

.home-transition-stage.is-about-visible + .archive-top-nav .index-link:focus-visible,
.home-transition-stage.is-about-visible + .archive-top-nav .index-group-toggle:focus-visible {
  outline: none;
}

.home-transition-stage.is-about-visible + .archive-top-nav .archive-debug-controls {
  right: 74px;
}

.home-intro {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100dvh;
  background: var(--paper);
}

.home-top-nav {
  align-items: flex-start;
  border-bottom: 1px solid rgba(18, 18, 18, 0.95);
  display: flex;
  height: var(--archive-top-nav-height);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 4;
}

.home-top-logo {
  align-items: flex-start;
  color: inherit;
  display: inline-grid;
  grid-auto-rows: 0.78em;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  height: max-content;
  justify-content: start;
  left: 10px;
  letter-spacing: 0;
  line-height: 0.78;
  padding: 0;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
}

.home-top-logo span {
  display: block;
  height: 0.78em;
  line-height: 0.78;
  white-space: nowrap;
}

.home-primary-nav {
  align-items: center;
  display: flex;
  gap: 92px;
  justify-content: center;
  left: 50%;
  min-width: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-nav-button {
  appearance: none;
  background: transparent;
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding: 0;
  white-space: nowrap;
}

.home-nav-button::before {
  content: "[ ";
}

.home-nav-button::after {
  content: " ]";
}

.home-float-layer {
  position: absolute;
  top: calc(var(--archive-top-nav-height) - 20px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}

.home-float-item {
  position: absolute;
  left: var(--float-left);
  top: var(--float-top);
  width: var(--float-width);
  z-index: 1;
  animation: homeFloatDrift var(--float-duration) ease-in-out var(--float-delay) infinite alternate;
  cursor: inherit;
  will-change: transform;
}

.home-float-item:hover {
  z-index: 10;
}

.home-float-image {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  opacity: 0;
  transform: scale(0.9);
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.home-float-item.is-loaded .home-float-image {
  opacity: 1;
  transform: scale(1);
}

.home-float-item.is-loaded:hover .home-float-image {
  transform: scale(1.07);
}

.home-intro.is-exiting {
  pointer-events: none;
}

.home-intro.is-complete,
.home-intro.is-complete * {
  cursor: none;
}

.home-custom-cursor {
  --cursor-size: 72px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, 50vw), var(--cursor-y, 50vh), 0) translate(-50%, -50%);
  transition: opacity 90ms ease;
  will-change: transform, opacity;
}

.home-custom-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #efefef;
  transform: scale(1);
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.home-custom-cursor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.58);
}

.home-custom-cursor-arrow-shell {
  display: grid;
  place-items: center;
  translate: 0 0;
}

.home-custom-cursor-arrow {
  width: 34px;
  height: auto;
  opacity: 1;
  rotate: 90deg;
  transition:
    opacity 150ms cubic-bezier(0.22, 1, 0.36, 1),
    rotate 320ms cubic-bezier(0.2, 1, 0.22, 1);
}

.home-intro.is-complete.is-cursor-visible .home-custom-cursor {
  opacity: 1;
}

.home-intro.is-cursor-letter-hover .home-custom-cursor::before {
  transform: scale(0.42);
}

.home-intro.is-cursor-letter-hover .home-custom-cursor-arrow {
  opacity: 0;
}

.home-intro.is-complete .home-custom-cursor-inner {
  animation: homeCursorPop 380ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-intro.is-complete:not(.is-cursor-image-hover):not(.is-cursor-image-unhover):not(.is-cursor-letter-hover) .home-custom-cursor-arrow-shell {
  animation: homeCursorArrowDrop 1000ms cubic-bezier(0.2, 1, 0.22, 1) infinite both;
}

.home-intro.is-cursor-image-hover .home-custom-cursor-arrow {
  animation: homeCursorArrowTurnUpLeft 250ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-intro.is-cursor-image-unhover .home-custom-cursor-arrow {
  animation: homeCursorArrowTurnDown 250ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.archive-frame-cursor {
  --cursor-size: 72px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, 50vw), var(--cursor-y, 50vh), 0) translate(-50%, -50%);
  transition: opacity 90ms ease;
  will-change: transform, opacity;
}

.archive-frame-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #efefef;
}

.archive-frame-cursor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: scale(0.72);
}

.archive-frame-cursor-arrow-shell {
  display: grid;
  place-items: center;
  translate: 0 0;
}

.archive-frame-cursor-arrow {
  display: block;
  width: 48px;
  height: auto;
}

body.is-archive-frame-cursor-active .archive-frame-cursor {
  opacity: 1;
}

.archive-frame-cursor.is-bouncing .archive-frame-cursor-arrow-shell {
  animation: archiveFrameCursorArrowBounceRight 1000ms cubic-bezier(0.2, 1, 0.22, 1) infinite both;
}

.project-embed-scroll-cursor {
  --cursor-size: 72px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--cursor-x, 50vw), var(--cursor-y, 50vh), 0) translate(-50%, -50%);
  transition: opacity 90ms ease;
  will-change: transform, opacity;
}

.project-embed-scroll-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #efefef;
}

.project-embed-scroll-cursor-inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  transform: scale(1);
}

.project-embed-scroll-cursor-arrow-shell {
  display: grid;
  place-items: center;
  translate: 0 0;
}

.project-embed-scroll-cursor-arrow {
  display: block;
  width: 34px;
  height: auto;
  rotate: 90deg;
}

body.is-project-embed-scroll-cursor-active .project-embed-scroll-cursor {
  opacity: 1;
}

body.is-project-embed-scroll-cursor-active .project-embed-scroll-cursor-arrow-shell {
  animation: homeCursorArrowDrop 1000ms cubic-bezier(0.2, 1, 0.22, 1) infinite both;
}

.home-intro-logo {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0;
  padding: 0;
  transform: translateY(0);
  font-family: var(--font-sans);
  font-size: clamp(3rem, 4.975vw, 5.97rem);
  line-height: 0.783;
  font-weight: 700;
  letter-spacing: -0.003675em;
  text-transform: uppercase;
  user-select: none;
}

@keyframes homeFloatDrift {
  from {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate-start));
  }

  to {
    transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--float-rotate-end));
  }
}

@keyframes homeCursorPop {
  0% {
    opacity: 0;
    transform: scale(0.56);
  }

  72% {
    opacity: 1;
    transform: scale(1.08);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes homeCursorArrowDrop {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: 0 8px;
  }

  68% {
    translate: 0 -2px;
  }
}

@keyframes archiveFrameCursorArrowBounceRight {
  0%,
  100% {
    translate: 0 0;
  }

  42% {
    translate: 8px 0;
  }

  68% {
    translate: -2px 0;
  }
}

@keyframes homeCursorArrowTurnUpLeft {
  from {
    rotate: 90deg;
  }

  to {
    rotate: -135deg;
  }
}

@keyframes homeCursorArrowTurnDown {
  from {
    rotate: -135deg;
  }

  to {
    rotate: 90deg;
  }
}

.home-intro-line {
  display: flex;
  align-items: flex-start;
  height: 0.77em;
}

.home-intro-letter {
  display: inline-block;
  width: var(--letter-width, auto);
  min-width: 0;
  height: 0.82em;
  margin-right: 0.06125px;
  border: 0;
  color: var(--ink);
  font: inherit;
  text-align: center;
  outline: 0;
  cursor: default;
  transition:
    background-color 90ms ease,
    color 90ms ease,
    transform 90ms ease;
}

.home-intro.is-intro-ready .home-intro-letter:not(.is-revealed):not(.is-scrambling) {
  color: transparent;
}

.home-intro-letter:hover,
.home-intro-letter:focus-visible,
.home-intro-letter.is-scrambling {
  background: var(--panel-highlight-active);
}

.home-intro-letter[data-letter="I"].is-scrambling {
  width: var(--i-scramble-width, auto);
}

.home-intro-letter:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ink);
}

.home-intro-letter:last-child {
  margin-right: 0;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
}

.archive-app {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  height: 100dvh;
  border: 0;
  overflow: hidden;
  background: var(--paper);
}

.archive-top-nav {
  align-items: flex-start;
  background: var(--paper);
  border-bottom: 0;
  display: flex;
  height: var(--archive-top-nav-height);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 35;
}

.archive-top-nav::after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 0;
  left: 10px;
  height: 1px;
  background: rgba(18, 18, 18, 0.95);
}

.archive-index {
  position: absolute;
  top: var(--archive-top-nav-height);
  bottom: 0;
  left: 0;
  width: var(--index-column-width);
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0;
  border-right: 0;
  overflow: auto;
  background: var(--paper);
  scrollbar-width: none;
  transform: translateX(0);
  opacity: 1;
  transition:
    transform var(--panel-expand-motion),
    opacity 320ms ease;
}

.archive-index::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 0;
  bottom: 6px;
  width: 1px;
  background: rgba(18, 18, 18, 0.95);
  pointer-events: none;
  transform: scaleY(1);
  transform-origin: top center;
}

.archive-index::-webkit-scrollbar {
  display: none;
}

.archive-app.is-panel-expanded .archive-index,
.archive-app.is-rolling-detail-expanded .archive-index {
  transform: translateX(calc(-100% - 24px));
  opacity: 0;
  pointer-events: none;
}

.index-header {
  align-items: flex-start;
  color: inherit;
  display: inline-flex;
  justify-content: flex-start;
  height: max-content;
  left: 10px;
  padding: 0;
  position: absolute;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  width: max-content;
}

.index-header-icon {
  display: block;
  width: 109px;
  height: 31px;
}

.archive-primary-nav {
  align-items: center;
  display: flex;
  gap: 92px;
  justify-content: center;
  left: 50%;
  min-width: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.index-link,
.index-group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 34px;
  border: 0;
  padding: 10px 5px;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 16px;
  font-weight: 800;
  color: var(--ink);
  text-align: left;
}

.index-link {
  cursor: pointer;
}

.index-link:hover,
.index-group-toggle:hover {
  color: rgba(18, 18, 18, 0.82);
}

.index-link.is-active {
  background: var(--panel-highlight-active);
}

.index-link--primary {
  margin-bottom: 1px;
}

.archive-primary-nav .index-link,
.archive-primary-nav .index-group-toggle {
  display: inline-flex;
  flex: none;
  justify-content: center;
  min-height: 0;
  padding: 0;
  width: auto;
  white-space: nowrap;
}

.archive-primary-nav .index-link-label,
.archive-primary-nav .index-group-label {
  align-items: center;
  display: inline-flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.archive-primary-nav .index-link:hover .index-link-label,
.archive-primary-nav .index-link:focus-visible .index-link-label,
.archive-primary-nav .index-group-toggle:hover .index-group-label,
.archive-primary-nav .index-group-toggle:focus-visible .index-group-label {
  transform: none;
}

.archive-primary-nav .nav-bracket {
  display: inline-block;
  flex: none;
}

.archive-primary-nav .nav-bracket:first-child {
  margin-right: 0.46em;
}

.archive-primary-nav .nav-bracket:last-child {
  margin-left: 0.46em;
}

.archive-primary-nav .nav-roll-text {
  display: inline-flex;
  flex: none;
  overflow: hidden;
}

.archive-primary-nav .nav-letter {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  overflow: hidden;
  vertical-align: top;
}

.archive-primary-nav .nav-letter::before,
.archive-primary-nav .nav-letter::after {
  content: attr(data-char);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ink);
  transition: transform 750ms cubic-bezier(0.11, 0.82, 0.39, 0.92);
  transition-delay: var(--nav-delay, 0ms);
  will-change: transform;
}

.archive-primary-nav .nav-letter::before {
  transform: translateY(0);
}

.archive-primary-nav .nav-letter::after {
  transform: translateY(2em);
}

.archive-primary-nav .index-link.is-nav-resetting .nav-letter::before,
.archive-primary-nav .index-link.is-nav-resetting .nav-letter::after,
.archive-primary-nav .index-group-toggle.is-nav-resetting .nav-letter::before,
.archive-primary-nav .index-group-toggle.is-nav-resetting .nav-letter::after {
  transition: none;
}

.archive-primary-nav .index-link.is-nav-rolling .nav-letter::before,
.archive-primary-nav .index-group-toggle.is-nav-rolling .nav-letter::before {
  transform: translateY(-2em);
}

.archive-primary-nav .index-link.is-nav-rolling .nav-letter::after,
.archive-primary-nav .index-group-toggle.is-nav-rolling .nav-letter::after {
  transform: translateY(0);
}

.index-link-label,
.index-group-label {
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  transition: transform 180ms ease;
}

.index-link:hover .index-link-label,
.index-group-toggle:hover .index-group-label {
  transform: translateX(8px);
}

.index-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px 20px 0;
  transition: opacity 180ms ease;
}

.index-panel-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 24px;
}

.index-group.is-project-directory-pre-enter .index-panel-title,
.index-group.is-project-directory-pre-enter .index-segment-title,
.index-group.is-project-directory-pre-enter .index-item {
  opacity: 0;
  transform: translate3d(-42px, 0, 0);
}

.archive-app:has(.index-group.is-project-directory-pre-enter) .archive-index::after {
  opacity: 0;
  transform: scaleY(0);
}

.archive-app:has(.index-group.is-project-directory-entering) .archive-index::after {
  animation: projectDirectoryVerticalRuleEnter 720ms cubic-bezier(0.16, 1, 0.32, 1) both;
  animation-delay: 300ms;
}

.index-group.is-project-directory-entering .index-panel-title,
.index-group.is-project-directory-entering .index-segment-title,
.index-group.is-project-directory-entering .index-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 660ms cubic-bezier(0.16, 1, 0.32, 1),
    transform 660ms cubic-bezier(0.16, 1, 0.32, 1);
  transition-delay: var(--project-directory-enter-delay, 0ms);
  will-change: opacity, transform;
}

.index-group-label {
  flex: 1;
}

.index-group-arrow {
  flex: none;
  width: 18px;
  height: 18px;
  background: url("./Assets/Icons/Arrow.svg") center / contain no-repeat;
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 220ms ease;
}

.index-group:not(.is-collapsed) .index-group-arrow {
  transform: rotate(-90deg);
}

.index-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 0.5px solid var(--rule-strong);
  border-bottom: 0.5px solid var(--rule-strong);
  max-height: calc(100dvh - var(--archive-top-nav-height) - 90px);
  overflow-x: hidden;
  overflow-y: auto;
  opacity: 1;
  scrollbar-width: none;
  transition:
    max-height 240ms ease,
    opacity 180ms ease,
    margin-top 240ms ease,
    padding-top 240ms ease,
    padding-bottom 240ms ease;
  position: relative;
}

.index-list::before,
.index-list::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 0.5px;
  background: var(--rule-strong);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
}

.index-list::before {
  top: 0;
}

.index-list::after {
  bottom: 0;
}

.index-group.is-project-directory-entering .index-list {
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.index-group.is-project-directory-entering .index-list::before,
.index-group.is-project-directory-entering .index-list::after {
  animation: projectDirectoryRuleEnter 620ms cubic-bezier(0.16, 1, 0.32, 1) both;
  animation-delay: var(--project-directory-rule-delay, 0ms);
}

.index-list::-webkit-scrollbar {
  display: none;
}

.index-group.is-collapsed .index-list {
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: 0;
}

.index-segment {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  list-style: none;
}

.index-segment + .index-segment {
  border-top: 0.5px solid var(--rule-strong);
}

.index-segment-title {
  align-self: start;
  min-width: 104px;
  padding: 14px 4px 0 5px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 800;
  line-height: 16px;
  overflow-wrap: normal;
  text-align: left;
  white-space: nowrap;
  word-break: keep-all;
}

.index-segment-items {
  margin: 0;
  padding: 0;
  list-style: none;
}

.index-item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 34px minmax(0, 1fr) 5px;
  column-gap: 10px;
  min-height: 38px;
  padding: 14px 5px;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 16px;
  font-weight: 300;
  color: var(--ink);
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.index-item:hover {
  color: rgba(18, 18, 18, 0.82);
}

.index-item.is-active {
  background: var(--panel-highlight-active);
}

.index-item-number,
.index-item-title,
.index-item-dot {
  position: relative;
  z-index: 1;
}

.index-item-number,
.index-item-title {
  display: inline-block;
  justify-self: start;
  min-width: 0;
  font-size: 15px;
  line-height: 15px;
  text-align: left;
  transition: transform 180ms ease;
  white-space: nowrap;
}

.index-item-title {
  width: 100%;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.index-item:hover .index-item-number,
.index-item:hover .index-item-title {
  transform: translateX(8px);
}

.index-item-dot {
  justify-self: end;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #1b1b1b;
  opacity: 0;
  transition: opacity 180ms ease;
}

.index-item.is-active .index-item-dot {
  opacity: 1;
}

@keyframes projectDirectoryRuleEnter {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  18% {
    opacity: 1;
  }

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

@keyframes projectDirectoryVerticalRuleEnter {
  0% {
    opacity: 0;
    transform: scaleY(0);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes projectPanelContentEnter {
  0% {
    opacity: 0;
    transform: translate3d(140px, 0, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes aboutPanelExpandDown {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate3d(0, -14px, 0);
  }

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

@keyframes aboutSweepUp {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  12%,
  88% {
    opacity: 1;
  }
  42% {
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

.detail-views a {
  color: inherit;
  text-decoration: none;
}

.archive-detail {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  height: 100%;
  margin-left: var(--index-column-width);
  padding: calc(var(--archive-top-nav-height) + 14px) 10px 0 10px;
  overflow: hidden;
  background: var(--paper);
  transition: margin-left var(--panel-expand-motion);
}

.archive-app.is-panel-expanded .archive-detail,
.archive-app.is-rolling-detail-expanded .archive-detail {
  margin-left: 0;
}

.archive-debug-controls {
  position: absolute;
  z-index: 40;
  top: 25px;
  right: 10px;
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

.archive-detail--rolling {
  padding: calc(var(--archive-top-nav-height) + 14px) 10px 0 10px;
}

.archive-detail--rolling .detail-toolbar,
.archive-detail--rolling .detail-scroll {
  display: none;
}

.archive-rolling-toolbar {
  display: none;
  align-items: center;
  min-height: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-strong);
  font-size: 12px;
  line-height: 12px;
}

.archive-rolling-panel {
  flex: 1 1 auto;
  margin-top: 0;
  min-height: 0;
  width: 100%;
  height: auto;
  background: var(--paper);
  overflow: hidden;
  position: relative;
}

.archive-rolling-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--paper);
  overflow: hidden;
}

.detail-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule-strong);
  font-size: 12px;
  line-height: 12px;
}

.detail-path,
.detail-views {
  display: flex;
  align-items: center;
}

.detail-path {
  gap: 6px;
  font-weight: 500;
}

.detail-views {
  gap: 30px;
  color: var(--muted);
}

.debug-toggle {
  border: 1px solid currentColor;
  padding: 3px 8px;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: 1;
  cursor: pointer;
}

.debug-toggle[aria-pressed="true"] {
  color: var(--ink);
}

.accent {
  color: var(--accent);
}

#current-project {
  color: #000;
  font-weight: 400;
}

.detail-scroll {
  flex: 1;
  min-height: 0;
  padding: 0;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.detail-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-project-list {
  display: none;
}

.archive-app:not(.is-panel-expanded) .detail-scroll::before {
  position: sticky;
  top: 0;
  z-index: 18;
  display: block;
  height: var(--hero-top-space);
  margin-left: calc(var(--hero-sticky-width) + var(--hero-text-frame-gap));
  margin-bottom: calc(var(--hero-top-space) * -1);
  background: var(--paper);
  content: "";
  pointer-events: none;
}

.archive-app.is-panel-expanded .detail-scroll {
  overflow: hidden;
}

.detail-track {
  position: relative;
}

.about-view {
  display: none;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  padding-top: var(--archive-top-nav-height);
  background: var(--paper);
}

.home-transition-stage.is-about-visible .about-view,
.home-transition-stage.is-about-leaving .about-view {
  display: block;
}

.about-sheet {
  --about-sheet-scale: 1;
  --about-sheet-scale-inverse: 1;
  --about-body-font-size: 15px;
  --about-detail-font-size: 13px;
  position: relative;
  height: calc(100dvh - var(--archive-top-nav-height) - 12.698px);
  margin: 0 15px 12.698px;
  padding: 35px 75px;
  overflow: hidden;
}

.about-resume-grid {
  display: grid;
  grid-template-columns:
    minmax(210px, 18.275862%)
    minmax(180px, 16.321839%)
    minmax(330px, 29.770115%)
    minmax(350px, 30.574713%);
  column-gap: 0;
  justify-content: space-between;
  align-items: start;
  width: calc(100% * var(--about-sheet-scale-inverse));
  height: calc(100% * var(--about-sheet-scale-inverse));
  transform: scale(var(--about-sheet-scale));
  transform-origin: top left;
}

.about-panel {
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.about-compact-section {
  position: relative;
  overflow: hidden;
}

.about-profile-panel::before,
.about-keyword-panel::before,
.about-core-panel .about-compact-section::before,
.about-experience-panel::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 120%;
  background: var(--panel-highlight-active);
  opacity: 0;
  transform: translateY(100%);
  z-index: 1;
  pointer-events: none;
}

.about-view.is-about-panels-pre-enter .about-profile-panel,
.about-view.is-about-panels-pre-enter .about-keyword-panel,
.about-view.is-about-panels-pre-enter .about-core-panel .about-compact-section,
.about-view.is-about-panels-pre-enter .about-experience-panel,
.about-view.is-about-panels-pre-enter .about-portrait {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transform: translate3d(0, -14px, 0);
}

.about-view.is-about-panels-entering .about-profile-panel,
.about-view.is-about-panels-entering .about-keyword-panel,
.about-view.is-about-panels-entering .about-core-panel .about-compact-section,
.about-view.is-about-panels-entering .about-experience-panel,
.about-view.is-about-panels-entering .about-portrait {
  animation: aboutPanelExpandDown 780ms cubic-bezier(0.16, 1, 0.32, 1) both;
  animation-delay: var(--about-panel-enter-delay, 0ms);
  will-change: opacity, clip-path, transform;
}

.about-view.is-about-panels-entering .about-profile-panel::before,
.about-view.is-about-panels-entering .about-keyword-panel::before,
.about-view.is-about-panels-entering .about-core-panel .about-compact-section::before,
.about-view.is-about-panels-entering .about-experience-panel::before {
  animation: aboutSweepUp 780ms cubic-bezier(0.65, 0, 0.35, 1) both;
  animation-delay: var(--about-panel-enter-delay, 0ms);
}

.about-view.is-about-panels-entering .about-portrait {
  animation-delay: calc(var(--about-panel-enter-delay, 0ms) + 110ms);
}

.about-view.is-about-panels-entering .about-work-tile {
  z-index: 0 !important;
}

.about-view.is-about-panels-entering .about-work-link::before {
  animation: none;
}

.about-panel-title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 57.115px;
  font-weight: 590;
  letter-spacing: 0;
}

.about-panel-rule {
  height: 1px;
  margin-top: 0;
  background: #000;
}

.about-profile-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.about-portrait {
  display: block;
  width: 100%;
  margin-top: 35px;
  aspect-ratio: 318 / 438;
  object-fit: cover;
  object-position: center bottom;
  background: #d8d8d8;
}

.about-profile-name {
  margin: 0 0 5px;
  color: #171717;
  font-family: var(--font-sans);
  font-size: 25px;
  line-height: 57.115px;
  font-weight: 590;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-contact-list {
  display: grid;
  grid-template-columns: 27px max-content;
  gap: 19px 15px;
  margin-top: 0;
  color: #171717;
  font-style: normal;
  font-size: var(--about-detail-font-size);
  line-height: 24.478px;
}

.about-contact-list a {
  display: contents;
  color: inherit;
  text-decoration: none;
}

.about-contact-list a > span:last-child {
  font-family: var(--font-sans);
  font-weight: 300;
  white-space: nowrap;
}

.about-contact-icon {
  display: inline-grid;
  width: 27px;
  min-width: 27px;
  height: 25px;
  align-items: center;
  justify-items: center;
  color: #171717;
  line-height: 1;
}

.about-contact-icon img {
  display: block;
  max-width: none;
  object-fit: contain;
}

.about-contact-icon--phone img {
  width: 18px;
  height: 18px;
}

.about-contact-icon--mail img {
  width: 22px;
  height: 16px;
}

.about-contact-icon--behance img {
  width: 27px;
  height: 25px;
}

.about-keyword-panel {
  width: 100%;
}

.about-keyword-stack {
  display: grid;
  justify-items: center;
  margin-top: 35px;
  padding-inline: 0;
}

.about-keyword-orbit {
  display: grid;
  place-items: center;
  width: min(225px, 79.3%);
  aspect-ratio: 1;
  margin-top: -46px;
  border: 1px solid #171717;
  border-radius: 50%;
  color: #303038;
  font-family: var(--font-sans);
  font-size: var(--about-body-font-size);
  line-height: 26.11px;
  font-weight: 600;
  white-space: nowrap;
}

.about-keyword-orbit:first-child {
  margin-top: 0;
}

.about-core-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  height: min(100%, 772.257px);
}

.about-compact-section + .about-compact-section {
  margin-top: 0;
}

.about-core-panel .about-compact-section {
  min-width: 0;
  flex: 0 0 auto;
}

.about-core-panel .about-compact-section:nth-child(1) {
  height: 159.319px;
}

.about-core-panel .about-compact-section:nth-child(2) {
  height: 409px;
}

.about-core-panel .about-compact-section:nth-child(3) {
  height: 183.939px;
}

.about-core-panel .about-compact-section:nth-child(3) .about-panel-title {
  line-height: 58px;
}

.about-core-panel .about-compact-section:nth-child(3) .about-panel-rule {
  margin-top: 3px;
}

.about-title-row-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.about-title-row-inline > span {
  display: grid;
  place-items: center;
  width: 24.07px;
  height: 24.07px;
  color: #000;
  line-height: 1;
  transform: translateY(2px);
}

.about-section-arrow img {
  display: block;
  width: 24.07px;
  height: 24.07px;
  object-fit: contain;
  transform: rotate(90deg);
  transform-origin: center;
}

.about-skill-metrics {
  display: grid;
  gap: 0;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  color: #303038;
  font-family: var(--font-sans);
  font-size: var(--about-body-font-size);
  line-height: 26.11px;
  font-weight: 500;
}

.about-skill-metrics p {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  height: 35.159px;
  margin: 0;
  padding-bottom: 8px;
  white-space: nowrap;
}

.about-skill-metrics p:nth-child(2) {
  justify-content: space-between;
}

.about-ielts-score {
  margin-left: auto;
  color: #303038;
  font-size: inherit;
  font-weight: inherit;
}

.about-award-list {
  display: grid;
  gap: 10px;
  height: 340px;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  align-content: start;
}

.about-award-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 54px;
}

.about-award-item h3,
.about-experience-item h3 {
  margin: 0;
  color: #303038;
  font-family: var(--font-sans);
  font-size: var(--about-body-font-size);
  line-height: 26.11px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-award-item p,
.about-experience-item p {
  margin: 0;
  color: #303038;
  font-family: var(--font-sans);
  font-size: var(--about-detail-font-size);
  line-height: 26.11px;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
}

.plain-text-number,
.plain-text-number a {
  color: inherit;
  text-decoration: none;
  pointer-events: none;
  cursor: text;
}

.about-award-item time,
.about-experience-item time {
  color: #303038;
  font-family: var(--font-sans);
  font-size: var(--about-detail-font-size);
  line-height: 26.11px;
  font-weight: 500;
  white-space: nowrap;
}

.about-tool-list {
  display: grid;
  grid-template-columns: repeat(6, 38.469px);
  grid-auto-rows: 38.469px;
  row-gap: 15px;
  column-gap: max(0px, calc((100% - 230.814px) / 5));
  width: 100%;
  height: 121.939px;
  margin: 0;
  padding: 15px 0;
  list-style: none;
}

.about-tool-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38.469px;
  height: 38.469px;
  overflow: hidden;
}

.about-tool-list img {
  display: block;
  width: 38.469px;
  height: 38.469px;
  object-fit: contain;
}

.about-experience-panel {
  width: 100%;
  height: min(100%, 726.727px);
}

.about-experience-panel .about-panel-title {
  line-height: 58px;
}

.about-experience-list {
  display: grid;
  gap: 35px;
  height: 667.727px;
  margin-top: 0;
  padding-top: 15px;
  padding-bottom: 15px;
  align-content: start;
}

.about-experience-item {
  display: grid;
  gap: 13.121px;
  height: 189.242px;
  align-content: start;
}

.about-experience-item header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  height: 25px;
}

.about-experience-item h3 {
  color: #171717;
  font-size: var(--about-body-font-size);
  line-height: 24.267px;
  font-weight: 800;
}

.about-experience-item h3 span {
  color: rgba(18, 18, 18, 0.55);
  font-size: var(--about-detail-font-size);
  font-weight: 700;
}

.about-experience-item time {
  color: #171717;
  font-size: var(--about-detail-font-size);
  line-height: 24.267px;
  font-weight: 400;
}

.about-experience-item p {
  color: rgba(0, 0, 0, 0.85);
  font-size: var(--about-detail-font-size);
  line-height: 22.839px;
  font-weight: 400;
}

.about-work-grid {
  display: grid;
  gap: 10px;
}

.about-work-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-work-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-work-tile,
.about-work-grid span {
  --about-work-arrow-inset: 5px;
  --about-work-arrow-width: 25.605px;
  --about-work-arrow-height: 25.455px;
  position: relative;
  display: block;
  margin: 0;
  height: 115px;
  min-height: 0;
  background: #c2c2c2;
  overflow: hidden;
  cursor: pointer;
  transition:
    transform 240ms ease,
    filter 240ms ease;
  will-change: transform;
  z-index: 0;
}

.about-work-tile:hover,
.about-work-tile:has(.about-work-link:focus-visible),
.about-work-tile.is-mobile-scroll-highlighted {
  transform: scale(1.025);
  filter: brightness(1.03) saturate(1.03);
  z-index: 2;
}

.about-work-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.about-work-link:focus-visible {
  box-shadow: inset 0 0 0 2px #111;
}

.about-work-link::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 118%;
  background: var(--panel-highlight-active);
  opacity: 0;
  transform: translateX(-118%);
  z-index: 1;
  pointer-events: none;
}

.about-work-link::after {
  content: "";
  position: absolute;
  top: var(--about-work-arrow-inset);
  right: var(--about-work-arrow-inset);
  width: var(--about-work-arrow-width);
  height: var(--about-work-arrow-height);
  background: url("./Assets/Icons/Arrow.svg") center / contain no-repeat;
  opacity: 0;
  transform: translate(-50%, 50%) rotate(-45deg);
  transform-origin: center;
  transition:
    transform 680ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 680ms cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
  pointer-events: none;
}

.about-work-tile:hover .about-work-link::before,
.about-work-link:focus-visible::before,
.about-work-tile.is-desktop-hover-animating .about-work-link::before,
.about-work-tile.is-mobile-scroll-highlighted .about-work-link::before {
  animation: aboutWorkHighlightSweep 520ms cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes aboutWorkHighlightSweep {
  0% {
    opacity: 0;
    transform: translateX(-118%);
  }

  12%,
  78% {
    opacity: 1;
  }

  42% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(118%);
  }
}

.about-work-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-work-tile img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-work-tile::before,
.about-work-grid span::before {
  content: "";
  position: absolute;
  top: -2px;
  right: -2px;
  width: 40px;
  height: 40px;
  background: var(--panel-highlight-active);
  opacity: 0;
  transform: translate(30%, -30%);
  z-index: 2;
  pointer-events: none;
  transition:
    opacity 360ms cubic-bezier(0.19, 1, 0.22, 1) 480ms,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1) 480ms;
}

.about-work-tile:hover::before,
.about-work-tile:has(.about-work-link:focus-visible)::before,
.about-work-tile.is-desktop-hover-animating::before,
.about-work-tile.is-mobile-scroll-highlighted::before {
  opacity: 1;
  transform: translate(0, 0);
}

.about-work-tile::after,
.about-work-grid span::after {
  content: "";
  position: absolute;
  top: var(--about-work-arrow-inset);
  right: var(--about-work-arrow-inset);
  width: var(--about-work-arrow-width);
  height: var(--about-work-arrow-height);
  background: url("./Assets/Icons/Arrow.svg") center / contain no-repeat;
  transform: rotate(-45deg);
  transform-origin: center;
  opacity: 1;
  transition:
    transform 680ms cubic-bezier(0.175, 0.885, 0.32, 1.275),
    opacity 680ms cubic-bezier(0.19, 1, 0.22, 1);
  filter: none;
  z-index: 3;
  pointer-events: none;
}

.about-work-tile:hover::after,
.about-work-tile:has(.about-work-link:focus-visible)::after,
.about-work-tile.is-desktop-hover-animating::after,
.about-work-tile.is-mobile-scroll-highlighted::after {
  opacity: 0;
  transform: translate(50%, -50%) rotate(-45deg);
}

.about-work-tile:hover .about-work-link::after,
.about-work-link:focus-visible::after,
.about-work-tile.is-desktop-hover-animating .about-work-link::after,
.about-work-tile.is-mobile-scroll-highlighted .about-work-link::after {
  opacity: 1;
  transform: translate(0, 0) rotate(-45deg);
  filter: none;
}

.about-work-tile--arrow-white::after,
.about-work-tile--arrow-white .about-work-link::after {
  filter: invert(1);
}

@keyframes aboutWorkArrowSpin {
  0% {
    transform: rotate(-45deg);
  }

  100% {
    transform: rotate(315deg);
  }
}

@media (min-width: 1181px) {
  .about-work-grid--three .about-work-tile,
  .about-work-grid--three span {
    aspect-ratio: 342 / 230;
    height: auto;
  }

  .about-work-grid--two .about-work-tile,
  .about-work-grid--two span {
    aspect-ratio: 522 / 230;
    height: auto;
  }
}

@media (max-width: 1500px) {
  .about-resume-grid {
    grid-template-columns:
      minmax(190px, 18.275862%)
      minmax(162px, 16.321839%)
      minmax(305px, 29.770115%)
      minmax(315px, 30.574713%);
  }

  .about-keyword-stack {
    margin-top: 28px;
  }
}

@media (max-width: 1180px) {
  .about-sheet {
    height: calc(100dvh - var(--archive-top-nav-height));
    margin: 0;
    padding: 20px 24px 24px;
  }

  .about-resume-grid {
    grid-template-columns: minmax(205px, 0.9fr) minmax(165px, 0.7fr) minmax(0, 1.5fr);
    row-gap: 36px;
    width: 100%;
    height: 100%;
    transform: none;
  }

  .about-experience-panel {
    grid-column: 1 / -1;
  }

  .about-keyword-orbit {
    width: min(190px, 82%);
  }

  .about-work-tile,
  .about-work-grid span {
    height: 86px;
  }
}

@media (max-width: 860px) {
  .about-view {
    overflow: hidden;
  }

  .about-sheet {
    padding: 16px 18px 28px;
  }

  .about-resume-grid {
    grid-template-columns: 1fr;
    align-content: start;
    row-gap: 24px;
  }

  .about-portrait {
    max-width: 360px;
  }

  .about-keyword-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    padding-inline: 0;
  }

  .about-keyword-orbit {
    width: 100%;
    margin-top: 0;
  }

  .about-award-item,
  .about-experience-item header {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .about-work-grid--three,
  .about-work-grid--two {
    grid-template-columns: 1fr;
  }

  .about-profile-panel::before,
  .about-keyword-panel::before,
  .about-core-panel .about-compact-section::before,
  .about-experience-panel::before {
    display: none;
  }

  .about-view.is-about-panels-pre-enter .about-profile-panel,
  .about-view.is-about-panels-pre-enter .about-keyword-panel,
  .about-view.is-about-panels-pre-enter .about-core-panel .about-compact-section,
  .about-view.is-about-panels-pre-enter .about-experience-panel,
  .about-view.is-about-panels-pre-enter .about-portrait {
    opacity: 1;
    clip-path: none;
    transform: none;
  }

  .about-view.is-about-panels-entering .about-profile-panel,
  .about-view.is-about-panels-entering .about-keyword-panel,
  .about-view.is-about-panels-entering .about-core-panel .about-compact-section,
  .about-view.is-about-panels-entering .about-experience-panel,
  .about-view.is-about-panels-entering .about-portrait {
    animation: none;
  }
}

.project-panel {
  --project-bottom-gap: 15px;
  position: relative;
  display: grid;
  grid-template-columns: var(--project-number-width) minmax(0, 1fr);
  column-gap: 0;
  align-items: stretch;
  min-height: 0;
  padding-bottom: var(--project-bottom-gap);
}

.archive-detail.is-project-panels-pre-enter .archive-rolling-panel {
  opacity: 0;
  transform: translate3d(140px, 0, 0);
}

.archive-detail.is-project-panels-entering .archive-rolling-panel {
  animation: projectPanelContentEnter 920ms cubic-bezier(0.16, 1, 0.32, 1) both;
  will-change: opacity, transform;
}

.archive-app.is-panel-expanded .project-panel {
  display: none;
}

.archive-app.is-panel-expanded .project-panel.is-expanded {
  display: grid;
  min-height: auto;
  padding-bottom: 0;
}

.archive-app.is-panel-expanded .panel-content {
  height: auto;
  min-height: 0;
}

.project-panel::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 12;
  height: 1px;
  background: var(--rule-strong);
  content: "";
  pointer-events: none;
}

.project-panel:first-child::after {
  display: none;
}

.archive-app.is-panel-expanded .project-panel.is-expanded::after {
  display: none;
}

.project-panel:last-child {
  --project-bottom-gap: 0px;
  padding-bottom: 0;
}

.project-panel::before {
  position: absolute;
  top: 0;
  bottom: var(--project-bottom-gap);
  left: 0;
  width: var(--project-number-width);
  background: var(--paper);
  content: "";
  pointer-events: none;
}

.project-panel:last-child::before {
  bottom: 0;
}

.panel-number-column {
  position: relative;
  z-index: 9;
  align-self: start;
  min-height: 0;
  padding-top: 0;
  background: transparent;
  overflow: hidden;
  transition:
    width var(--panel-expand-motion),
    padding-top var(--panel-expand-motion);
}

.panel-content {
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 0;
  min-width: 0;
}

.panel-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  align-items: start;
  flex: 0 0 auto;
  min-height: 0;
  padding-top: 15px;
  transition:
    grid-template-columns var(--panel-expand-motion),
    column-gap var(--panel-expand-motion),
    padding-top var(--panel-expand-motion),
    padding-bottom var(--panel-expand-motion);
}

.panel-copy {
  position: sticky;
  top: 34px;
  z-index: 7;
  align-self: start;
  max-width: var(--panel-copy-width);
  padding-top: 10px;
  padding-right: 10px;
  background: var(--paper);
  font-size: 14px;
  line-height: 0.98;
}

.panel-copy h2 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-copy p {
  margin: 0 0 8px;
}

.panel-copy p:last-child {
  margin-bottom: 0;
}

.project-panel--hero .panel-meta {
  display: none;
}

.project-panel--hero {
  --hero-sticky-offset: 0px;
  --hero-sticky-width: calc(var(--project-number-width) + var(--hero-number-text-gap) + var(--panel-copy-width));
  grid-template-columns: minmax(0, 1fr);
  column-gap: 0;
  padding-bottom: var(--project-bottom-gap);
  transition: grid-template-columns var(--panel-layout-motion);
}

.project-panel--hero::before {
  display: none;
}

.project-panel--hero .panel-number-column {
  display: block;
  grid-column: 1;
  align-self: start;
  width: var(--hero-sticky-width);
  padding-top: 0;
  transition: width var(--panel-layout-motion);
}

.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-number-column {
  position: sticky;
  top: var(--hero-top-space);
}

.archive-app.is-panel-expanded .project-panel--hero .panel-number-column {
  position: relative;
  top: auto;
}

.panel-highlight-card {
  position: relative;
  display: grid;
  grid-template-columns: var(--project-number-width) minmax(170px, var(--panel-copy-width));
  column-gap: var(--hero-number-text-gap);
  align-items: start;
  width: 100%;
  min-width: 0;
  height: var(--panel-highlight-min-height);
  min-height: 0;
  border: 0;
  padding:
    var(--panel-highlight-padding-top)
    var(--panel-highlight-padding-right)
    calc(var(--panel-highlight-padding-bottom) + var(--panel-highlight-arrow-reserve))
    var(--panel-highlight-padding-left);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  appearance: none;
  overflow: hidden;
  text-align: left;
  transition:
    grid-template-columns var(--panel-card-motion),
    height var(--panel-card-motion),
    padding var(--panel-card-motion),
    background-color 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.panel-number-column:hover .panel-highlight-card,
.panel-number-column:focus-within .panel-highlight-card,
.archive-app:not(.is-panel-expanded) .project-panel.is-frame-cursor-hover .panel-highlight-card,
.panel-highlight-card:hover,
.panel-highlight-card:focus-within {
  background: var(--panel-highlight-active);
}

.panel-highlight-arrow {
  position: absolute;
  right: var(--panel-highlight-arrow-inset);
  bottom: var(--panel-highlight-arrow-inset);
  width: var(--panel-highlight-arrow-size);
  height: var(--panel-highlight-arrow-size);
  background: url("./Assets/Icons/Arrow.svg") center / contain no-repeat;
  transform: rotate(45deg);
  transform-origin: center;
  transition: transform 320ms ease;
}

.panel-number-column:hover .panel-highlight-arrow,
.panel-number-column:focus-within .panel-highlight-arrow,
.archive-app:not(.is-panel-expanded) .project-panel.is-frame-cursor-hover .panel-highlight-arrow,
.panel-highlight-card:hover .panel-highlight-arrow,
.panel-highlight-card:focus-within .panel-highlight-arrow {
  transform: rotate(0deg);
}

.project-panel--hero .panel-body {
  position: relative;
  width: 100%;
  padding-top: var(--hero-top-space);
  padding-bottom: 0;
  padding-right: 0;
  grid-template-columns: var(--hero-sticky-width) minmax(0, 1fr);
  column-gap: var(--hero-text-frame-gap);
  align-items: start;
  justify-items: stretch;
  min-height: 0;
  transition:
    grid-template-columns var(--panel-layout-motion),
    column-gap var(--panel-layout-motion),
    padding-top var(--panel-layout-motion),
    padding-bottom var(--panel-layout-motion),
    padding-right var(--panel-layout-motion);
}

.project-panel--hero:last-child .panel-body {
  padding-bottom: 15px;
}

.project-panel--hero .panel-frame-shell {
  grid-column: 2;
}

.project-panel--hero .panel-copy {
  position: static;
  min-width: 0;
  max-width: var(--panel-copy-width);
  padding-top: 0;
  padding-right: 0;
  background: transparent;
  opacity: 1;
  overflow: hidden;
  transition:
    max-width 360ms ease,
    opacity 260ms ease,
    transform 360ms ease;
}

.project-panel--hero .panel-copy h2 {
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 500;
}

.project-panel--hero .panel-copy p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

.panel-meta {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-height: none;
  min-height: 34px;
  padding: 8px 0 9px;
  background: var(--paper);
  overflow: hidden;
  font-size: 12px;
  line-height: 12px;
  color: var(--muted);
}

.panel-meta span:first-child {
  color: var(--ink);
  font-weight: 500;
}

.band-number {
  margin: -5px 0 0;
  font-family: var(--font-sans);
  font-size: 76px;
  line-height: 0.86;
  font-weight: 700;
  letter-spacing: -0.06em;
  color: #000;
}

.panel-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  flex: 1;
  min-height: var(--panel-frame-min-height);
  overflow: hidden;
  contain: paint;
  background: transparent;
  scrollbar-width: none;
}

.panel-frame::-webkit-scrollbar {
  display: none;
}

.panel-frame-top-box {
  display: none;
}

.panel-frame-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  min-width: 0;
  margin-bottom: 0;
  transition:
    width var(--panel-layout-motion),
    margin-bottom var(--panel-layout-motion);
}

.panel-frame-scroll {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  min-height: var(--panel-frame-min-height);
  overscroll-behavior: contain;
  pointer-events: none;
  touch-action: none;
  background: var(--paper);
}

.panel-frame-scroll::before,
.panel-frame-scroll::after {
  position: absolute;
  z-index: 4;
  left: var(--project-frame-anchor-x-expanded, 50%);
  top: var(--project-frame-anchor-y-expanded, 50%);
  display: none;
  background: var(--accent);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.panel-frame-scroll::before {
  width: 34px;
  height: 1px;
}

.panel-frame-scroll::after {
  width: 1px;
  height: 34px;
}

.panel-frame-stage {
  flex: none;
  width: 100%;
  min-height: 0;
  aspect-ratio: var(--project-frame-aspect-ratio);
  background-color: var(--placeholder);
}

.panel-frame-stage--curtain {
  contain: none;
  background-position: var(--project-frame-image-position, center);
  background-size: var(--project-frame-image-size, cover);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.panel-frame-gallery {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-top: 0;
}

.panel-frame-gallery-stack {
  display: grid;
  gap: 18px;
  padding: 0 0 24px;
}

.panel-frame-gallery-image {
  margin: 0;
  width: 100%;
  background: #f3f2ed;
}

.panel-frame-gallery-image img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-frame-shell--project-embed {
  margin-bottom: 0;
}

.panel-frame--project-embed {
  min-height: var(--panel-frame-min-height);
  background: var(--paper);
}

.panel-frame-scroll--project-embed {
  display: block;
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
  max-height: var(--panel-frame-min-height);
  overflow: hidden;
  background: var(--paper);
}

.panel-project-embed {
  position: relative;
  width: 100%;
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
  max-height: var(--panel-frame-min-height);
  background: var(--paper);
}

.panel-project-embed-frame {
  display: block;
  width: 100%;
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
  max-height: var(--panel-frame-min-height);
  border: 0;
  background: var(--paper);
}

.panel-project-embed-wheel-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  background: transparent;
}

.panel-frame-shell--gallery-flow {
  margin-bottom: calc(var(--project-bottom-gap) * -1);
}

.panel-frame--gallery-flow {
  min-height: var(--panel-frame-min-height);
  overflow: hidden;
  background: var(--paper);
}

.panel-frame-scroll--gallery-flow {
  display: block;
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
  max-height: var(--panel-frame-min-height);
  overflow-x: hidden;
  overflow-y: hidden;
  background: var(--paper);
}

.panel-frame-flow {
  display: grid;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 0 0 32px;
}

.panel-frame-flow-hero {
  position: relative;
  z-index: 1;
  margin: 0;
}

.panel-frame-flow-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.panel-frame-flow-image {
  display: block;
  width: 100%;
  height: auto;
}

.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-frame-shell {
  position: sticky;
  top: var(--detail-sticky-top);
  z-index: 6;
  align-self: start;
  aspect-ratio: var(--project-frame-aspect-ratio);
  height: auto;
  min-height: var(--panel-highlight-min-height);
  min-width: var(--panel-frame-shell-min-width);
}

.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-frame,
.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-frame-scroll,
.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-project-embed,
.archive-app:not(.is-panel-expanded) .project-panel--hero .panel-project-embed-frame {
  height: 100%;
  min-height: 0;
  max-height: none;
}

.archive-app:not(.is-panel-expanded) .panel-frame--project-embed {
  cursor: none;
}

.archive-app:not(.is-panel-expanded) .panel-project-embed-wheel-layer {
  display: block;
}

.archive-app.is-panel-expanded .panel-frame-shell--project-embed {
  position: relative;
  top: auto;
}

.panel-side-copy {
  position: absolute;
  top: var(--hero-top-space);
  right: 0;
  display: grid;
  gap: 15px;
  align-content: start;
  width: var(--panel-expanded-side-width);
  height: auto;
  max-height: none;
  min-width: 0;
  padding: 0 20px 8px 0;
  overflow: hidden;
  background: var(--paper);
  opacity: 0;
  transform: translateX(calc(100% + 24px));
  transition:
    opacity var(--panel-layout-motion),
    transform var(--panel-layout-motion);
  pointer-events: none;
}

.panel-side-copy p {
  margin: 0;
}

.panel-side-copy-kicker {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #000;
}

.panel-side-copy-title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 35px;
  line-height: 1.25;
  font-weight: 700;
  color: #000;
  overflow-wrap: anywhere;
  white-space: pre-line;
}

.panel-side-copy-description {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.8);
}

.panel-side-copy-rule {
  display: block;
  width: 100%;
  height: 0.5px;
  background: rgba(0, 0, 0, 0.75);
}

.panel-side-copy-year {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1;
  font-weight: 700;
  color: #000;
}

.panel-side-copy-spec {
  display: grid;
  gap: 7.5px;
}

.panel-side-copy-label {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.7);
}

.panel-side-copy-value {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.05;
  font-weight: 500;
  color: #000;
}

.panel-frame > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  outline: none;
}

.panel-frame.has-image::before,
.panel-frame.has-image::after {
  display: none;
}

.panel-frame::before,
.panel-frame::after {
  position: absolute;
  inset: 0;
  content: "";
}

.panel-frame::before {
  opacity: 0.5;
}

.panel-frame::after {
  opacity: 0.38;
}

.frame-atlas {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #595959, #494949);
  background-size: 42px 100%, auto;
}

.frame-earth-explorer,
.frame-earth-explorer-stage {
  background-color: var(--placeholder);
  background-image: url("./Assets/Project 01/1-EARTH EXPLORER 01.jpg");
}

.frame-earth-explorer::before,
.frame-earth-explorer::after,
.frame-earth-explorer-stage::before,
.frame-earth-explorer-stage::after {
  display: none;
}

.frame-pinbridge {
  background-color: var(--placeholder);
  background-image: url("./Assets/Images/PinBridge-01.png");
}

.frame-pinbridge::before,
.frame-pinbridge::after {
  display: none;
}

.frame-utopia {
  background-color: var(--placeholder);
  background-image: url("./Assets/Images/Utopia-01.jpeg");
}

.frame-utopia::before,
.frame-utopia::after {
  display: none;
}

.frame-aerosense {
  background-color: var(--placeholder);
  background-image: url("./Assets/Images/AeroSense-01.png");
}

.frame-aerosense::before,
.frame-aerosense::after {
  display: none;
}

.project-panel.is-expanded {
  --hero-sticky-width: calc(var(--panel-expanded-card-width) + 0px);
}

.project-panel.is-expanded .panel-number-column {
  width: var(--panel-expanded-card-width);
}

.project-panel.is-expanded .panel-highlight-card {
  height: var(--panel-expanded-card-height);
  padding:
    var(--panel-highlight-padding-top)
    var(--panel-highlight-padding-right)
    calc(var(--panel-highlight-padding-bottom) + var(--panel-highlight-arrow-reserve))
    var(--panel-highlight-padding-left);
  grid-template-columns: 1fr;
  justify-items: start;
  background: transparent;
}

.project-panel.is-expanded .band-number {
  margin: -5px 0 0;
}

.project-panel.is-expanded .panel-highlight-card .panel-copy {
  display: none;
}

.project-panel.is-copy-deferred .panel-highlight-card .panel-copy {
  visibility: hidden;
  opacity: 0;
}

.project-panel.is-expanded .panel-highlight-arrow {
  transform: rotate(225deg);
  right: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
}

.project-panel.is-expanded .panel-highlight-card:hover,
.project-panel.is-expanded .panel-highlight-card:focus-visible {
  background: var(--panel-highlight-active);
}

.project-panel.is-expanded .panel-highlight-card:hover .panel-highlight-arrow,
.project-panel.is-expanded .panel-highlight-card:focus-visible .panel-highlight-arrow {
  transform: rotate(180deg);
}

.project-panel.is-expanded .panel-body {
  width: 100%;
  padding-right: calc(var(--panel-expanded-side-width) + var(--panel-expanded-side-gap));
  grid-template-columns:
    var(--panel-expanded-card-width)
    minmax(0, 1fr);
  column-gap: var(--hero-text-frame-gap);
  height: auto;
  align-items: start;
}

.project-panel.is-expanded .panel-frame-shell {
  grid-column: 2;
}

.project-panel.is-expanded .panel-frame-shell {
  height: var(--panel-expanded-frame-height);
  min-height: var(--panel-expanded-frame-height);
  aspect-ratio: auto;
}

.project-panel.is-expanded .panel-frame {
  height: var(--panel-expanded-frame-height);
  min-height: var(--panel-expanded-frame-height);
}

.project-panel.is-expanded .panel-frame {
  overflow: hidden;
}

.project-panel.is-expanded .panel-frame-scroll {
  height: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: auto;
  touch-action: pan-y;
  scrollbar-width: none;
}

.project-panel.is-expanded .panel-frame-scroll--project-embed {
  max-height: none;
  overflow: hidden;
}

.project-panel.is-expanded .panel-frame-scroll::-webkit-scrollbar {
  display: none;
}

.project-panel.is-expanded .panel-frame-gallery {
  max-height: none;
  opacity: 1;
  overflow: visible;
  padding-top: var(--panel-frame-gallery-gap);
}

.project-panel.is-expanded .panel-frame--gallery-flow {
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
}

.project-panel.is-expanded .panel-frame--project-embed,
.project-panel.is-expanded .panel-project-embed,
.project-panel.is-expanded .panel-project-embed-frame {
  height: var(--panel-expanded-frame-height);
  min-height: var(--panel-expanded-frame-height);
  max-height: var(--panel-expanded-frame-height);
}

.project-panel.is-expanded .panel-project-embed-wheel-layer {
  display: block;
}

body.is-project-embed-scroll-cursor-active .project-panel.is-expanded .panel-project-embed-wheel-layer {
  cursor: none;
}

.project-panel.is-expanded .panel-frame-scroll--gallery-flow {
  height: var(--panel-frame-min-height);
  min-height: var(--panel-frame-min-height);
  max-height: var(--panel-frame-min-height);
  overflow-y: auto;
  pointer-events: auto;
  touch-action: pan-y;
  scrollbar-width: none;
}

.project-panel.is-expanded .panel-frame-scroll--gallery-flow::-webkit-scrollbar {
  display: none;
}

.project-panel.is-expanded .panel-side-copy {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.frame-atlas::before {
  background:
    linear-gradient(180deg, transparent 0 62%, rgba(255, 255, 255, 0.18) 62% 64%, transparent 64% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 42px);
}

.frame-terrain {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 48%),
    linear-gradient(180deg, #606060, #505050);
}

.frame-terrain::before {
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.28) 0 14%, transparent 15% 100%),
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.18) 0 10%, transparent 11% 100%),
    linear-gradient(135deg, transparent 0 46%, rgba(255, 255, 255, 0.14) 46% 52%, transparent 52% 100%);
}

.frame-transit {
  background:
    linear-gradient(180deg, #575757, #454545);
}

.frame-transit::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 11%, rgba(255, 255, 255, 0.16) 11% 13%, transparent 13% 24%),
    linear-gradient(180deg, transparent 0 44%, rgba(255, 255, 255, 0.18) 44% 47%, transparent 47% 100%);
}

.frame-civic {
  background:
    linear-gradient(180deg, #5b5b5b, #4b4b4b);
}

.frame-civic::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 22%, transparent 22% 100%),
    linear-gradient(180deg, transparent 0 28%, rgba(255, 255, 255, 0.16) 28% 31%, transparent 31% 64%, rgba(255, 255, 255, 0.12) 64% 67%, transparent 67% 100%);
}

.frame-monolith {
  background:
    linear-gradient(180deg, #626262, #4d4d4d);
}

.frame-monolith::before {
  background:
    linear-gradient(90deg, transparent 0 54%, rgba(255, 255, 255, 0.16) 54% 56%, transparent 56% 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%);
  background-size: auto, 100% 36px;
}

.frame-maps {
  background:
    linear-gradient(180deg, #5f5f5f, #4a4a4a);
}

.frame-maps::before {
  background:
    radial-gradient(circle at 32% 38%, rgba(255, 255, 255, 0.18) 0 18%, transparent 18% 100%),
    radial-gradient(circle at 72% 58%, rgba(255, 255, 255, 0.14) 0 14%, transparent 14% 100%),
    linear-gradient(90deg, transparent 0 48%, rgba(255, 255, 255, 0.14) 48% 49%, transparent 49% 100%);
}

.frame-kiosk {
  background:
    linear-gradient(180deg, #5a5a5a, #474747);
}

.frame-kiosk::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 16%, transparent 16% 100%),
    repeating-linear-gradient(180deg, transparent 0 17%, rgba(255, 255, 255, 0.12) 17% 19%, transparent 19% 34%);
}

.frame-programs {
  background:
    linear-gradient(180deg, #616161, #4d4d4d);
}

.frame-programs::before {
  background:
    repeating-linear-gradient(90deg, transparent 0 14%, rgba(255, 255, 255, 0.12) 14% 15%, transparent 15% 28%),
    linear-gradient(180deg, transparent 0 52%, rgba(255, 255, 255, 0.18) 52% 55%, transparent 55% 100%);
}

.frame-city {
  background:
    linear-gradient(180deg, #5d5d5d, #484848);
}

.frame-city::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(255, 255, 255, 0.14) 0 8%, transparent 8% 100%),
    radial-gradient(circle at 62% 34%, rgba(255, 255, 255, 0.14) 0 10%, transparent 10% 100%),
    radial-gradient(circle at 74% 70%, rgba(255, 255, 255, 0.12) 0 16%, transparent 16% 100%);
}

.frame-wayfinding {
  background:
    linear-gradient(180deg, #595959, #454545);
}

.frame-wayfinding::before {
  background:
    linear-gradient(90deg, transparent 0 34%, rgba(255, 255, 255, 0.18) 34% 36%, transparent 36% 100%),
    linear-gradient(180deg, transparent 0 44%, rgba(255, 255, 255, 0.14) 44% 46%, transparent 46% 100%),
    linear-gradient(135deg, transparent 0 68%, rgba(255, 255, 255, 0.14) 68% 70%, transparent 70% 100%);
}

.panel-frame::after {
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 900px) {
  body {
    min-height: 100dvh;
  }

  .archive-app {
    width: 100%;
    min-height: 100dvh;
    height: 100dvh;
    border-width: 0;
    grid-template-columns: 1fr;
  }

  .archive-index {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 18, 18, 0.95);
  }

  .archive-detail {
    padding-left: 23px;
  }

  .project-panel {
    --project-number-width: 82px;
  }

  .panel-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .panel-body {
    grid-template-columns: minmax(150px, 190px) minmax(0, 1fr);
    column-gap: 18px;
  }

  .panel-copy {
    max-width: 190px;
    font-size: 13px;
  }

  .panel-copy h2 {
    font-size: 13px;
  }

  .project-panel--hero .panel-copy h2 {
    font-size: 16px;
  }

  .panel-highlight-card {
    min-height: 190px;
  }
}

@media (max-width: 640px) {
  .project-panel {
    --project-number-width: 72px;
  }

  .archive-app {
    min-height: 100dvh;
  }

  .band-number {
    font-size: 42px;
  }

  .index-segment {
    grid-template-columns: 116px minmax(0, 1fr);
  }

  .index-segment-title {
    font-size: 15px;
    line-height: 16px;
    padding-top: 14px;
  }

  .index-item {
    grid-template-columns: 36px minmax(0, 1fr) 10px;
    column-gap: 12px;
    padding-left: 12px;
  }

  .detail-toolbar {
    padding-right: 10px;
  }

  .archive-detail {
    padding: 20px 15px 10px 20px;
  }

  :root {
    --detail-sticky-top: calc(1px + 20px + 20px + 12px + 1px + var(--hero-top-space));
  }

  .archive-app:not(.is-panel-expanded) .detail-scroll::before {
    margin-left: 0;
  }

  .panel-body {
    grid-template-columns: 1fr;
    row-gap: 14px;
  }

  .panel-copy {
    position: static;
    max-width: none;
    padding-top: 6px;
    padding-right: 10px;
  }

  .project-panel--hero .panel-number-column,
  .project-panel--hero .panel-body {
    padding-top: 8px;
  }

  .project-panel--hero {
    --hero-number-text-gap: 10px;
    --hero-text-frame-gap: 8px;
  }

  .project-panel--hero .panel-copy h2 {
    margin-bottom: 10px;
  }

  .panel-frame {
    min-height: 120px;
  }
}

@media (max-width: 700px) {
  .home-intro-logo {
    transform: translateY(0);
    font-size: clamp(2.25rem, 13.5vw, 3.75rem);
  }

  .home-intro-letter {
    height: 0.82em;
  }
}

@media (max-width: 700px) {
  :root {
    --archive-top-nav-height: 32px;
    --mobile-liquid-glass-extension: 168px;
    --mobile-viewport-height: max(100lvh, calc(100dvh + var(--mobile-liquid-glass-extension)));
    --mobile-liquid-glass-scroll-space: calc((var(--mobile-liquid-glass-extension) * 2) + env(safe-area-inset-bottom) + 24px);
    --mobile-content-top: calc(max(10px, env(safe-area-inset-top)) + var(--archive-top-nav-height) + 8px);
  }

  html,
  body {
    height: var(--mobile-viewport-height);
    min-height: var(--mobile-viewport-height);
    overflow: hidden;
    background: #F8F8F8;
  }

  .home-transition-stage {
    display: block;
    height: var(--mobile-viewport-height);
    min-height: var(--mobile-viewport-height);
    background: #F8F8F8;
    transform: none !important;
    transition: none;
  }

  .home-intro,
  .archive-app,
  .about-view {
    position: absolute;
    inset: 0;
    width: 100%;
    height: var(--mobile-viewport-height);
    min-height: var(--mobile-viewport-height);
    opacity: 0;
    pointer-events: none;
    transition: opacity 360ms ease;
  }

  .home-intro {
    height: 100dvh;
    min-height: 100dvh;
    opacity: 1;
    pointer-events: auto;
  }

  .home-transition-stage.is-index-visible .home-intro,
  .home-transition-stage.is-about-visible .home-intro {
    opacity: 0;
    pointer-events: none;
  }

  .home-transition-stage.is-index-visible .archive-app {
    opacity: 1;
    pointer-events: auto;
  }

  .home-transition-stage.is-about-visible .archive-app {
    opacity: 0;
    pointer-events: none;
  }

  .home-transition-stage.is-about-visible .about-view {
    opacity: 1;
    pointer-events: auto;
  }

  .home-transition-stage.is-about-leaving .about-view {
    opacity: 0;
    pointer-events: none;
  }

  .home-custom-cursor,
  .archive-frame-cursor,
  .project-embed-scroll-cursor {
    display: none;
  }

  .home-intro-logo {
    font-size: 36px;
    line-height: 0.783;
    letter-spacing: 0;
    transform: translateY(0);
  }

  .home-float-layer {
    top: 0;
  }

  .home-float-item {
    animation-duration: 12s;
  }

  .home-float-item:nth-child(1) {
    left: 36% !important;
    top: 11% !important;
    width: 157px !important;
  }

  .home-float-item:nth-child(2) {
    left: -4% !important;
    top: 51% !important;
    width: 82px !important;
  }

  .home-float-item:nth-child(3) {
    left: 74% !important;
    top: 63% !important;
    width: 124px !important;
  }

  .home-float-item:nth-child(4) {
    left: 8% !important;
    top: 68% !important;
    width: 124px !important;
  }

  .home-float-item:nth-child(5) {
    left: 58% !important;
    top: 78% !important;
    width: 124px !important;
  }

  .home-float-item:nth-child(6) {
    left: 0 !important;
    top: 9% !important;
    width: 100px !important;
  }

  .home-float-item:nth-child(7) {
    left: 80% !important;
    top: 7% !important;
    width: 113px !important;
  }

  .home-float-item:nth-child(8) {
    left: -6% !important;
    top: 25% !important;
    width: 101px !important;
  }

  .home-float-item:nth-child(9) {
    left: 82% !important;
    top: 40% !important;
    width: 124px !important;
  }

  .home-float-image {
    opacity: 1;
  }

  .archive-top-nav {
    top: max(10px, env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    z-index: 80;
    height: var(--archive-top-nav-height);
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 260ms ease;
  }

  .archive-top-nav::after,
  .index-header {
    display: none;
  }

  .archive-primary-nav {
    position: static;
    display: flex;
    width: 100%;
    gap: 2px;
    transform: none;
  }

  .archive-primary-nav .index-link,
  .archive-primary-nav .index-group-toggle {
    appearance: none;
    align-self: stretch;
    flex: 0 0 auto;
    height: 32px;
    min-height: 32px;
    margin: 0;
    padding: 7px;
    justify-content: flex-start;
    background: #d5d5d5;
    color: #000;
    overflow: hidden;
    transition:
      flex-basis 340ms cubic-bezier(0.22, 1, 0.36, 1),
      flex-grow 340ms cubic-bezier(0.22, 1, 0.36, 1),
      background-color 220ms ease;
  }

  .home-transition-stage[data-mobile-view="home"] + .archive-top-nav #index-home-button,
  .home-transition-stage[data-mobile-view="projects"] + .archive-top-nav #index-project-toggle,
  .home-transition-stage[data-mobile-view="about"] + .archive-top-nav #index-about-button {
    flex: 1 1 auto;
    background: #ededed;
  }

  .home-transition-stage:not([data-mobile-view]) + .archive-top-nav #index-home-button {
    flex: 1 1 auto;
    background: #ededed;
  }

  .archive-primary-nav .nav-bracket {
    display: none;
  }

  .archive-primary-nav .index-link-label,
  .archive-primary-nav .index-group-label {
    font-size: 15px;
    line-height: 16px;
    font-weight: 800;
  }

  .archive-primary-nav #index-project-toggle .index-group-label::after {
    content: " ｜ 产品";
  }

  .home-transition-stage[data-mobile-view="home"] + .archive-top-nav #index-project-toggle .index-group-label::after,
  .home-transition-stage[data-mobile-view="about"] + .archive-top-nav #index-project-toggle .index-group-label::after {
    content: "";
  }

  .archive-primary-nav .nav-letter {
    width: auto;
    height: 16px;
  }

  .archive-primary-nav .nav-letter::before,
  .archive-primary-nav .nav-letter::after {
    position: static;
    transition: none;
  }

  .archive-primary-nav .nav-letter::after {
    display: none;
  }

  .archive-app {
    height: var(--mobile-viewport-height);
    min-height: var(--mobile-viewport-height);
    padding: var(--mobile-content-top) 16px 0;
    background: #F8F8F8;
    overflow: hidden;
  }

  .archive-index,
  .archive-rolling-toolbar,
  .archive-rolling-panel,
  .detail-toolbar,
  .detail-scroll {
    display: none;
  }

  .archive-detail,
  .archive-detail--rolling {
    height: 100%;
    margin-left: 0;
    padding: 0;
    overflow: hidden;
    background: #F8F8F8;
  }

  .mobile-project-list {
    display: block;
    height: 100%;
    overflow-y: auto;
    overscroll-behavior: contain;
    overflow-anchor: none;
    padding-bottom: var(--mobile-liquid-glass-scroll-space);
    scroll-padding-bottom: var(--mobile-liquid-glass-scroll-space);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-project-list::-webkit-scrollbar {
    display: none;
  }

  .mobile-project-card {
    display: flex;
    flex-direction: column;
    margin: 0 0 5px;
    max-height: 620px;
    background: #F8F8F8;
    cursor: pointer;
    overflow-anchor: none;
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    transition:
      max-height 680ms cubic-bezier(0.19, 1, 0.22, 1),
      margin 520ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .archive-app.is-mobile-project-expanded .mobile-project-card:not(.is-mobile-expanded) {
    max-height: 0;
    margin-bottom: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  .archive-app.is-mobile-project-expanding .mobile-project-card:not(.is-mobile-expanded) {
    transition:
      opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .archive-app.is-mobile-project-collapsing .mobile-project-card:not(.is-mobile-collapse-target) {
    opacity: 1;
    transition:
      opacity 240ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
  }

  .archive-app.is-mobile-project-collapsing .mobile-project-card.is-mobile-collapse-target {
    transition:
      max-height 430ms cubic-bezier(0.19, 1, 0.22, 1),
      margin 430ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 240ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-expanded {
    min-height: 100%;
    max-height: 6000px;
    margin-bottom: 0;
    cursor: default;
  }

  .mobile-project-card.is-mobile-motion-target {
    position: relative;
    z-index: 22;
  }

  .mobile-project-card-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) 32px;
    align-items: center;
    min-height: 52px;
    padding: 7px 0 7px 10px;
    border: 1px solid #dedede;
    background: #F8F8F8;
    cursor: inherit;
    overflow: hidden;
    transition:
      min-height 680ms cubic-bezier(0.19, 1, 0.22, 1),
      padding 680ms cubic-bezier(0.19, 1, 0.22, 1),
      grid-template-columns 680ms cubic-bezier(0.19, 1, 0.22, 1),
      gap 680ms cubic-bezier(0.19, 1, 0.22, 1),
      background-color 520ms cubic-bezier(0.16, 1, 0.3, 1),
      border-color 520ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-project-card.is-mobile-centered .mobile-project-card-header {
    border-color: #FFF946;
    background: #FFF946;
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-card-header {
    position: sticky;
    top: 0;
    z-index: 20;
    grid-template-columns: 32.329px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    min-height: 84px;
    padding: 10px;
    border-color: #FFF946;
    background: #FFF946;
  }

  .mobile-project-number {
    margin: 0 10px 0 0;
    color: #000;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 50px;
    font-weight: 700;
    line-height: 0.783;
    white-space: nowrap;
    transform-origin: left center;
    transition:
      margin 620ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-number {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-3px, -4px, 0) scale(0.18);
  }

  .mobile-project-text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0;
    transition:
      gap 620ms cubic-bezier(0.19, 1, 0.22, 1),
      transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-text {
    grid-column: 2;
    grid-row: 1;
    gap: 10px;
    overflow: hidden;
  }

  .mobile-project-title {
    min-width: 0;
    margin: 0;
    color: rgba(0, 0, 0, 0.8);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-title {
    width: min(194px, 100%);
  }

  .mobile-project-description {
    margin: 0;
    max-height: 0;
    color: rgba(0, 0, 0, 0.8);
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 300;
    line-height: 1.5;
    opacity: 0;
    overflow: hidden;
    transform: translate3d(0, -6px, 0);
    transition:
      max-height 720ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 420ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
      transform 620ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-description {
    max-height: 82px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .mobile-project-arrow {
    appearance: none;
    border: 0;
    padding: 0;
    border-radius: 0;
    color: inherit;
    justify-self: center;
    width: 24px;
    height: 24px;
    background: url("./Assets/Icons/Arrow.svg") center / contain no-repeat;
    background-color: transparent;
    transform: rotate(45deg);
    transform-origin: center;
    transition:
      width 680ms cubic-bezier(0.19, 1, 0.22, 1),
      height 680ms cubic-bezier(0.19, 1, 0.22, 1),
      background-size 680ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 680ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-centered .mobile-project-arrow {
    transform: rotate(90deg);
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-arrow,
  .mobile-project-card.is-mobile-expanded.is-mobile-centered .mobile-project-arrow {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    justify-self: start;
    width: 32.329px;
    height: 32.329px;
    background-size: 22.928px 22.793px;
    cursor: pointer;
    transform: rotate(180deg);
  }

  .archive-app.is-mobile-project-expanding .mobile-project-card.is-mobile-expanded .mobile-project-arrow {
    animation: mobile-project-arrow-reveal 680ms cubic-bezier(0.19, 1, 0.22, 1) both;
  }

  .mobile-project-media {
    position: relative;
    height: 247px;
    overflow: hidden;
    background:
      linear-gradient(163deg, #e5e5e5 11%, #c9cbd2 42%, #82878e 73%),
      #fff;
  }

  .mobile-project-card.is-featured .mobile-project-media {
    height: 323px;
    background:
      linear-gradient(53deg, #e8e8e9 7%, #879db2 59%, #010101 103%),
      #5b5b5b;
  }

  .mobile-project-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .mobile-project-card[data-project="01"] .mobile-project-media img {
    object-position: center;
  }

  .mobile-project-card[data-project="02"] .mobile-project-media img {
    object-position: 54% center;
  }

  .mobile-project-detail-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    padding-top: 10px;
    overflow: hidden;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    transition:
      max-height 860ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 420ms cubic-bezier(0.16, 1, 0.3, 1) 90ms,
      transform 720ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-card.is-mobile-expanded .mobile-project-detail-gallery {
    max-height: 5200px;
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .archive-app.is-mobile-project-collapsing .mobile-project-card.is-mobile-collapse-target .mobile-project-detail-gallery {
    max-height: 0;
    opacity: 0;
    transform: translate3d(0, -10px, 0);
    transition:
      max-height 350ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 120ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 160ms cubic-bezier(0.19, 1, 0.22, 1);
  }

  .mobile-project-detail-frame {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
    background: #f2f2f2;
  }

  .mobile-project-detail-frame img {
    display: block;
    width: 100%;
    height: auto;
  }

  @keyframes mobile-project-arrow-reveal {
    0% {
      opacity: 0;
      transform: rotate(180deg) scale(0.18);
    }

    48% {
      opacity: 1;
      transform: rotate(180deg) scale(1.18);
    }

    100% {
      opacity: 1;
      transform: rotate(180deg) scale(1);
    }
  }

  .about-view {
    height: var(--mobile-viewport-height);
    min-height: var(--mobile-viewport-height);
    padding: var(--mobile-content-top) 16px 0;
    overflow: hidden;
    background: #F8F8F8;
  }

  .about-sheet {
    --about-sheet-scale: 1;
    --about-sheet-scale-inverse: 1;
    --about-body-font-size: 13px;
    --about-detail-font-size: 10px;
    height: 100%;
    margin: 0;
    padding: 0 0 var(--mobile-liquid-glass-scroll-space);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-padding-bottom: var(--mobile-liquid-glass-scroll-space);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .about-sheet::-webkit-scrollbar {
    display: none;
  }

  .about-resume-grid {
    display: block;
    width: 100%;
    height: auto;
    transform: none;
  }

  .about-panel {
    width: 100%;
    margin: 0 0 22px;
  }

  .about-profile-panel,
  .about-core-panel .about-compact-section,
  .about-experience-panel {
    box-sizing: border-box;
    padding-inline: 10px;
  }

  .about-panel-title,
  .about-profile-name {
    font-size: 25px;
    line-height: 57.115px;
    font-weight: 590;
  }

  .about-profile-panel {
    display: grid;
    grid-template-columns: 127px minmax(0, 1fr);
    column-gap: 15px;
    align-items: start;
    padding-bottom: 15px;
  }

  .about-profile-panel .about-panel-title,
  .about-profile-panel .about-panel-rule {
    grid-column: 1 / -1;
  }

  .about-portrait {
    grid-column: 1;
    width: 127px;
    height: 174.925px;
    margin-top: 25px;
    aspect-ratio: auto;
  }

  .about-profile-name {
    grid-column: 2;
    grid-row: 3;
    margin: 25px 0 0;
    white-space: nowrap;
  }

  .about-contact-list {
    grid-column: 2;
    grid-row: 3;
    align-self: start;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 19px 15px;
    margin-top: 87px;
    font-size: 13px;
    line-height: 24.478px;
  }

  .about-contact-list a > span:last-child {
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-contact-icon {
    width: 18px;
    min-width: 18px;
    height: 24.478px;
  }

  .about-contact-icon--phone img {
    width: 10px;
    height: 10px;
  }

  .about-contact-icon--mail img {
    width: 16px;
    height: 12px;
  }

  .about-contact-icon--behance img {
    width: 18px;
    height: 17px;
  }

  .about-keyword-panel {
    display: none;
  }

  .about-core-panel,
  .about-core-panel .about-compact-section,
  .about-experience-panel,
  .about-experience-list,
  .about-experience-item,
  .about-award-list {
    height: auto;
  }

  .about-core-panel .about-compact-section:nth-child(1),
  .about-core-panel .about-compact-section:nth-child(2),
  .about-core-panel .about-compact-section:nth-child(3) {
    height: auto;
  }

  .about-core-panel {
    display: block;
    margin-bottom: 0;
  }

  .about-compact-section {
    margin-bottom: 22px;
  }

  .about-core-panel .about-compact-section:nth-child(3) {
    margin-bottom: 22px;
  }

  .about-title-row-inline > span,
  .about-section-arrow {
    display: none;
  }

  .about-skill-metrics {
    padding: 15px 0;
    font-size: 13px;
    line-height: 26.11px;
  }

  .about-skill-metrics p {
    height: 35.159px;
    padding: 0 0 8.159px;
  }

  .about-skill-metrics p:nth-child(2) {
    order: -1;
  }

  .about-award-list {
    gap: 10px;
    padding: 15px 0;
  }

  .about-award-item {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 0;
    gap: 12px;
  }

  .about-award-item > div {
    min-width: 0;
  }

  .about-award-item h3,
  .about-experience-item h3 {
    font-size: 13px;
    line-height: 26.11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-award-item p,
  .about-experience-item p,
  .about-award-item time,
  .about-experience-item time {
    font-size: 13px;
    line-height: 26.11px;
  }

  .about-award-item p,
  .about-experience-item p {
    white-space: nowrap;
  }

  .about-tool-list {
    grid-template-columns: repeat(4, 38.469px);
    grid-auto-rows: 38.469px;
    column-gap: max(0px, calc((100% - 153.876px) / 3));
    row-gap: 15px;
    height: auto;
    padding: 15px 0;
  }

  .about-tool-list li,
  .about-tool-list img {
    width: 38.469px;
    height: 38.469px;
  }

  .about-experience-list {
    gap: 26px;
    padding: 12px 0 15px;
  }

  .about-experience-item {
    gap: 8px;
  }

  .about-experience-item header {
    height: auto;
    gap: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .about-work-grid {
    gap: 10px;
  }

  .about-work-tile,
  .about-work-grid span {
    aspect-ratio: 370 / 115;
    height: auto;
    width: 100%;
  }

  .about-work-tile,
  .about-work-link {
    -webkit-tap-highlight-color: transparent;
  }

  .about-work-tile:hover,
  .about-work-tile:active,
  .about-work-tile:has(.about-work-link:focus-visible) {
    transform: scale(1);
    filter: none;
    z-index: 0;
  }

  .about-work-tile:hover .about-work-link::before,
  .about-work-tile:active .about-work-link::before,
  .about-work-link:focus-visible::before,
  .about-work-tile:hover::before,
  .about-work-tile:active::before,
  .about-work-tile:has(.about-work-link:focus-visible)::before,
  .about-work-tile:hover::after,
  .about-work-tile:active::after,
  .about-work-tile:has(.about-work-link:focus-visible)::after,
  .about-work-tile:hover .about-work-link::after {
    animation: none;
  }

  .about-work-link:focus-visible {
    box-shadow: none;
  }

  .about-work-tile:hover .about-work-link::before,
  .about-work-tile:active .about-work-link::before,
  .about-work-link:focus-visible::before {
    opacity: 0;
    transform: translateX(-118%);
  }

  .about-work-tile:hover::before,
  .about-work-tile:active::before,
  .about-work-tile:has(.about-work-link:focus-visible)::before {
    opacity: 0;
    transform: translate(30%, -30%);
  }

  .about-work-tile:hover::after,
  .about-work-tile:active::after,
  .about-work-tile:has(.about-work-link:focus-visible)::after {
    opacity: 1;
    transform: rotate(-45deg);
  }

  .about-work-tile:hover .about-work-link::after,
  .about-work-tile:active .about-work-link::after,
  .about-work-link:focus-visible::after {
    opacity: 0;
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .about-work-tile.is-mobile-scroll-highlighted {
    transform: scale(1.025);
    filter: brightness(1.03) saturate(1.03);
    z-index: 2;
  }

  .about-work-tile.is-mobile-scroll-highlighted::before {
    opacity: 1;
    transform: translate(0, 0);
  }

  .about-work-tile.is-mobile-scroll-highlighted .about-work-link::before {
    animation: aboutWorkHighlightSweep 520ms cubic-bezier(0.65, 0, 0.35, 1);
  }

  .about-work-tile.is-mobile-scroll-highlighted::after {
    opacity: 0;
    transform: translate(50%, -50%) rotate(-45deg);
  }

  .about-work-tile.is-mobile-scroll-highlighted .about-work-link::after {
    opacity: 1;
    transform: translate(0, 0) rotate(-45deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-transition-stage {
    transition: none;
  }

  .index-group.is-project-directory-entering .index-panel-title,
  .index-group.is-project-directory-entering .index-segment-title,
  .index-group.is-project-directory-entering .index-item,
  .archive-app:has(.index-group.is-project-directory-entering) .archive-index::after,
  .index-group.is-project-directory-entering .index-list::before,
  .index-group.is-project-directory-entering .index-list::after,
  .archive-detail.is-project-panels-entering .archive-rolling-panel,
  .about-view.is-about-panels-entering .about-profile-panel,
  .about-view.is-about-panels-entering .about-keyword-panel,
  .about-view.is-about-panels-entering .about-core-panel .about-compact-section,
  .about-view.is-about-panels-entering .about-experience-panel,
  .about-view.is-about-panels-entering .about-portrait {
    animation: none;
    transition: none;
  }
}
