:root {
  --paper: #fbf7ec;
  --ink: #050505;
  --muted: #6f6f6f;
  --rule: #38362f;
  --lime: #c5de32;
  --orange: #ff9e1b;
  --black: #030303;
  --project-text: #f6f6f1;
  --project-muted: #9a9a9a;
  --project-line: rgba(255, 255, 255, 0.16);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px clamp(22px, 4vw, 72px);
  color: var(--ink);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.site-header a {
  pointer-events: auto;
}

.site-header .language-toggle {
  pointer-events: auto;
}

.site-header--dark {
  color: var(--project-text);
  mix-blend-mode: normal;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent);
}

.brand,
.site-nav a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-toggle {
  min-width: 36px;
  padding: 5px 8px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 4px;
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-2px);
}

.site-header--dark .language-toggle:hover,
.site-header--dark .language-toggle:focus-visible {
  color: var(--ink);
  background: var(--project-text);
}

html[data-language='en'] .resume-name span + span {
  max-width: 17ch;
  font-size: clamp(24px, 2.5vw, 48px);
  line-height: 1.08;
}

html[data-language='en'] .resume-block-heading span {
  max-width: 34ch;
}

html[data-language='en'] .project-primary-heading h2,
html[data-language='en'] .project-kicker h2 {
  line-height: 0.98;
}

html[data-language='en'] .category-label {
  max-width: 14ch;
  font-size: 0.78em;
  line-height: 1.12;
  white-space: normal;
}

html[data-language='en'] .category-list {
  gap: 20px;
  font-size: clamp(18px, 1.42vw, 26px);
}

html[data-language='en'] .entry-title {
  max-width: 23ch;
  font-size: clamp(18px, 1.58vw, 26px);
  line-height: 1.1;
}

html[data-language='en'] .entry-title span {
  white-space: normal;
  overflow-wrap: anywhere;
}

.site-nav a,
.brand {
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.brand:hover,
.brand:focus-visible {
  opacity: 0.58;
  transform: translateY(-2px);
}

.cover-sheet {
  position: relative;
  min-height: 100svh;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(14, 14, 14, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.sheet-inner {
  position: relative;
  width: min(var(--max), calc(100% - clamp(44px, 7vw, 116px)));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 112px) 0 clamp(42px, 5vw, 72px);
}

.overline {
  margin: 0 0 clamp(56px, 6vw, 94px);
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.cover-title {
  margin: 0;
  font-size: clamp(74px, 9vw, 168px);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: 0;
}

.cover-title span {
  display: block;
}

.cover-subtitle {
  margin: 24px 0 0;
  font-size: clamp(26px, 3vw, 56px);
  font-weight: 950;
  line-height: 1;
}

.cover-intro {
  width: min(720px, 100%);
  margin-top: clamp(88px, 10vw, 160px);
  margin-bottom: clamp(154px, 16vw, 248px);
  font-size: clamp(15px, 1.08vw, 19px);
  font-weight: 780;
  line-height: 1.62;
}

.cover-intro p {
  margin: 0 0 18px;
}

.season {
  position: absolute;
  left: 0;
  bottom: clamp(34px, 4vw, 60px);
  margin: 0;
  font-size: clamp(20px, 2vw, 34px);
  font-weight: 950;
}

.cover-sheet--hero .season {
  position: static;
  display: inline-block;
}

.portfolio-rule {
  height: 54px;
  background: linear-gradient(
    to bottom,
    var(--rule) 0 40%,
    var(--lime) 40% 58%,
    var(--rule) 58% 100%
  );
}

.resume-sheet {
  padding: clamp(96px, 10vw, 154px) 0 clamp(72px, 8vw, 128px);
  color: #203236;
  background-color: var(--paper);
  background-image: radial-gradient(rgba(14, 14, 14, 0.08) 1px, transparent 1px);
  background-size: 18px 18px;
}

.resume-ribbon {
  width: min(31vw, 520px);
  min-width: 260px;
  padding: 14px clamp(24px, 4vw, 72px);
  color: #203236;
  background: #93c817;
  font-size: clamp(24px, 2.2vw, 40px);
  font-weight: 950;
  line-height: 1;
}

.resume-inner {
  width: min(1660px, calc(100% - clamp(44px, 7vw, 116px)));
  margin: 0 auto;
}

.resume-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(600px, 1.4fr);
  gap: clamp(28px, 4vw, 70px);
  padding: clamp(62px, 8vw, 126px) 0 clamp(54px, 7vw, 104px);
}

.resume-eyebrow,
.resume-label,
.resume-block-heading p {
  margin: 0;
  color: #85b816;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resume-name {
  margin: 22px 0 0;
  font-size: clamp(62px, 7.1vw, 136px);
  font-weight: 950;
  line-height: 0.9;
}

.resume-name span {
  display: block;
}

.resume-name span + span {
  margin-top: 18px;
  font-size: clamp(28px, 3.05vw, 58px);
  line-height: 1;
}

.resume-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 16px clamp(22px, 3vw, 46px);
  margin: clamp(46px, 5vw, 78px) 0 0;
  padding: 0;
  list-style: none;
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 900;
}

.resume-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.resume-contact li::before,
.resume-awards li::before,
.resume-timeline article::before {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  content: "";
  background: #93c817;
  border-radius: 50%;
}

.resume-about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(132px, 12vw, 208px);
  align-items: start;
  gap: clamp(24px, 3vw, 52px);
}

.resume-about {
  font-size: clamp(15px, 1.12vw, 19px);
  font-weight: 700;
  line-height: 1.62;
  text-wrap: pretty;
}

.resume-about .resume-label {
  margin-bottom: 22px;
  font-size: clamp(20px, 1.8vw, 30px);
  letter-spacing: 0;
}

.resume-about p {
  margin: 0 0 12px;
}

.resume-profile {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  object-fit: cover;
  object-position: left center;
}

.resume-block {
  min-width: 0;
}

.resume-block--projects {
  padding: clamp(50px, 6vw, 92px) 0;
  border-top: 1px solid #d8dee0;
  border-bottom: 1px solid #d8dee0;
}

.resume-block-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: clamp(26px, 3vw, 44px);
}

.resume-block-heading h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 54px);
  font-weight: 950;
  line-height: 1;
}

.resume-block-heading span {
  color: #566368;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
}

.resume-portfolio-link {
  color: #6f9e0f;
  font-weight: 950;
  text-decoration-color: currentColor;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.resume-portfolio-link:hover,
.resume-portfolio-link:focus-visible {
  color: var(--orange);
}

.resume-project-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 28px);
}

.resume-project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  color: inherit;
  background: #fff;
  border: 1px solid #d8dee0;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.resume-project-card:hover,
.resume-project-card:focus-visible {
  border-color: #85b816;
  box-shadow: 0 12px 28px rgba(32, 50, 54, 0.11);
  transform: translateY(-5px);
}

.resume-project-card--featured {
  background: #eef8ce;
  border-color: #85b816;
  box-shadow: inset 0 5px 0 #85b816;
}

.resume-project-card--featured div {
  border-top: 1px solid rgba(133, 184, 22, 0.42);
}

.resume-project-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.resume-project-card div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 18px;
}

.resume-project-card span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  background: #93c817;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.resume-project-card h3 {
  margin: 0;
  font-size: clamp(15px, 1.12vw, 20px);
  font-weight: 900;
  line-height: 1.35;
}

.resume-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.5fr 1.25fr 1.15fr;
  gap: clamp(24px, 3vw, 58px);
  padding-top: clamp(54px, 7vw, 108px);
}

.resume-detail-grid .resume-block + .resume-block {
  padding-left: clamp(20px, 2.5vw, 46px);
  border-left: 1px solid #d8dee0;
}

.resume-timeline {
  display: grid;
  gap: 28px;
}

.resume-timeline article {
  position: relative;
  padding-left: 22px;
}

.resume-timeline article::before {
  position: absolute;
  top: 8px;
  left: 0;
}

.resume-timeline p,
.resume-timeline h3,
.resume-timeline span {
  display: block;
  margin: 0;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 750;
  line-height: 1.55;
}

.resume-timeline h3 {
  margin-top: 5px;
  font-weight: 950;
}

.resume-timeline span {
  margin-top: 5px;
  color: #566368;
}

.resume-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resume-skills span {
  padding: 7px 12px;
  color: #6f9e0f;
  border: 1px solid #85b816;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.resume-inline {
  margin: 16px 0 0;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 750;
  line-height: 1.55;
}

.resume-inline strong {
  color: #85b816;
  font-weight: 950;
}

.resume-awards {
  display: grid;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resume-awards li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 11px;
  font-size: clamp(14px, 1.05vw, 18px);
  font-weight: 900;
  line-height: 1.55;
}

.resume-awards li::before {
  grid-row: span 2;
  margin-top: 9px;
}

.resume-awards span {
  grid-column: 2;
  color: #566368;
  font-weight: 700;
}

.cover-sheet--catalog .sheet-inner {
  display: grid;
  align-content: start;
  gap: clamp(64px, 7vw, 120px);
}

.cover-title--catalog {
  font-size: clamp(62px, 7.2vw, 128px);
}

.catalog-body {
  display: grid;
  grid-template-columns: minmax(390px, 520px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 100px);
  align-items: start;
  padding-bottom: 128px;
}

.category-list {
  display: grid;
  gap: 24px;
  padding: 0;
  margin: 0;
  font-size: clamp(21px, 1.75vw, 32px);
  font-weight: 950;
  line-height: 1.2;
  list-style: none;
}

.category-list li {
  position: relative;
  color: rgba(5, 5, 5, 0.34);
  transition: color 180ms ease, transform 180ms ease;
}

.category-button {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.category-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 42px;
  height: 42px;
  background: rgba(197, 222, 50, 0.32);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.category-button > * {
  position: relative;
  z-index: 1;
}

.category-button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 8px;
}

.category-label {
  min-width: 0;
  white-space: nowrap;
}

.category-mark {
  display: block;
  width: 42px;
  height: 42px;
  background: rgba(255, 158, 27, 0.34);
  transition: background 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.category-list li.is-active {
  color: var(--ink);
  transform: translateX(12px);
}

.category-list li.is-active::after {
  content: "";
  position: absolute;
  left: 72px;
  right: 0;
  bottom: -9px;
  height: 4px;
  background: linear-gradient(90deg, var(--lime), transparent 72%);
}

.category-list li.is-active .category-mark {
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(197, 222, 50, 0.26);
}

.category-mark--square {
  border-radius: 0 0 18px 0;
}

.category-mark--arc {
  border-radius: 0 42px 0 0;
}

.category-mark--corner {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 60%, 50% 100%, 0 100%);
}

.category-mark--triangle {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.category-list li.is-active .category-mark--corner,
.category-list li.is-active .category-mark--triangle {
  box-shadow: none;
  filter: none;
}

.category-list li.is-active .category-button--corner::before,
.category-list li.is-active .category-button--triangle::before {
  opacity: 1;
  transform: scale(1.38);
}

.category-button--corner::before {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 60%, 50% 100%, 0 100%);
}

.category-button--triangle::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.project-entry {
  display: grid;
  grid-template-columns: minmax(240px, 420px) minmax(260px, 1fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: stretch;
}

.project-stack {
  display: grid;
  gap: clamp(44px, 6vw, 84px);
}

.project-stack .project-entry + .project-entry {
  padding-top: clamp(44px, 6vw, 84px);
  border-top: 1px solid rgba(5, 5, 5, 0.18);
}

.project-category-group[hidden],
.catalog-empty[hidden] {
  display: none !important;
}

.catalog-empty {
  align-self: stretch;
  display: grid;
  place-items: center start;
  min-height: 320px;
  margin: 0;
  border-top: 1px solid rgba(5, 5, 5, 0.2);
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 800;
}

.catalog-results {
  min-width: 0;
}

.catalog-sidebar {
  position: sticky;
  top: 0;
  align-self: start;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100svh;
  padding: clamp(18px, 3vw, 42px) 0 clamp(42px, 5vw, 72px);
}

.catalog-sidebar .season {
  position: static;
  margin: 0;
}

.project-hero--immersive h1 {
  font-size: clamp(52px, 7.2vw, 116px);
  white-space: normal;
}

.project-hero--ar h1 {
  font-size: clamp(52px, 6.5vw, 108px);
  white-space: normal;
}

.project-hero--brand h1 {
  font-size: clamp(56px, 7.6vw, 128px);
  white-space: normal;
}

.project-hero--corporate h1 {
  font-size: clamp(54px, 7.4vw, 124px);
  white-space: normal;
}

.project-hero--game h1 {
  font-size: clamp(52px, 6.7vw, 112px);
  white-space: normal;
}

.project-hero--game .project-summary {
  grid-template-columns: minmax(0, 760px);
  gap: clamp(42px, 5vw, 72px);
}

.project-hero--icbc .project-summary {
  grid-template-columns: minmax(0, 760px);
  gap: clamp(52px, 6vw, 96px);
}

.project-entry__media {
  overflow: hidden;
  border-radius: 8px;
  background: #101010;
  text-decoration: none;
}

.project-entry__media img {
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-entry--compact-preview .project-entry__media img {
  min-height: 0;
}

.project-entry--compact-preview {
  --compact-preview-height: 168px;
}

.project-entry--compact-preview .project-entry__media {
  align-self: start;
  height: var(--compact-preview-height);
}

.project-entry--compact-preview .project-entry__content {
  display: block;
  min-height: 0;
}

.project-entry__media:hover img {
  transform: scale(1.035);
}

.text-link {
  transition: color 180ms ease, transform 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
  transform: translateX(8px);
}

.project-entry__content {
  align-self: center;
  max-width: 560px;
}

.entry-index {
  margin: 0 0 22px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.project-entry h3 {
  margin: 0;
  font-size: clamp(42px, 5vw, 86px);
  font-weight: 950;
  line-height: 0.92;
}

.entry-title {
  margin: 24px 0 8px;
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 950;
  line-height: 1.18;
}

.entry-title span {
  display: block;
  white-space: nowrap;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 3px solid currentColor;
  font-size: 18px;
  font-weight: 950;
  text-decoration: none;
}

.project-page {
  color: var(--project-text);
  background: var(--black);
}

.project-shell {
  width: min(1280px, calc(100% - clamp(36px, 6vw, 96px)));
  margin: 0 auto;
}

.project-hero {
  padding: clamp(92px, 10vw, 160px) 0 clamp(60px, 8vw, 112px);
}

.project-hero h1 {
  max-width: 1180px;
  margin: 0 0 clamp(76px, 8vw, 130px);
  color: #fff;
  font-size: clamp(76px, 10.4vw, 176px);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
}

.project-kicker {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
  padding-bottom: clamp(56px, 7vw, 96px);
  border-bottom: 1px solid var(--project-line);
}

.project-kicker h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 950;
  line-height: 1.1;
}

.project-kicker p {
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 26px);
  font-weight: 900;
}

.project-type {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--lime) !important;
  white-space: nowrap;
}

.project-type span {
  width: 42px;
  height: 42px;
  background: var(--lime);
}

.project-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(48px, 8vw, 128px);
  padding-top: clamp(52px, 7vw, 96px);
}

.project-summary h3 {
  margin: 0 0 44px;
  color: #d7d7d7;
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 950;
}

.project-summary p,
.project-list {
  color: #aaa;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 760;
  line-height: 1.55;
}

.project-summary p {
  max-width: 640px;
  margin: 0;
}

.project-summary__paragraph {
  margin-top: 18px !important;
}

.brainstorm-panel {
  min-width: 0;
}

.project-hero--ar .brainstorm-panel,
.project-hero--brand .brainstorm-panel {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: clamp(10px, 2vw, 28px);
}

.brainstorm-panel h3 {
  margin-bottom: 16px;
}

.brainstorm-panel > p {
  margin-bottom: 22px;
}

.brainstorm-map {
  position: relative;
  width: min(780px, 100%);
  aspect-ratio: 1;
  margin: 42px auto 30px;
  border: 2px dashed rgba(255, 255, 255, 0.62);
  border-radius: 50%;
}

.brainstorm-cluster {
  position: absolute;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 22px 14px 14px;
  border: 1px dashed rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.brainstorm-cluster:nth-child(1) {
  top: 13%;
  left: 12%;
  width: 36%;
  height: 33%;
}

.brainstorm-cluster:nth-child(2) {
  top: 28%;
  right: 7%;
  width: 48%;
  height: 46%;
}

.brainstorm-cluster:nth-child(3) {
  bottom: 11%;
  left: 19%;
  width: 32%;
  height: 30%;
}

.brainstorm-cluster strong {
  position: absolute;
  top: -22px;
  left: 50%;
  color: #d7d7d7;
  font-size: 13px;
  font-weight: 900;
  transform: translateX(-50%);
  white-space: nowrap;
}

.brainstorm-chip {
  display: grid;
  place-items: center;
  width: clamp(44px, 6.8vw, 82px);
  height: clamp(44px, 6.8vw, 82px);
  padding: 4px;
  border-radius: 50%;
  background: #fff;
  color: #050505;
  font-size: clamp(9px, 1vw, 12px);
  font-weight: 900;
  line-height: 1.12;
  text-align: center;
}

.brainstorm-chip--large {
  width: clamp(68px, 9.5vw, 110px);
  height: clamp(68px, 9.5vw, 110px);
  font-size: clamp(11px, 1.25vw, 15px);
}

.brainstorm-cluster:nth-child(1) .brainstorm-chip:nth-of-type(1) {
  width: clamp(56px, 6.5vw, 78px);
  height: clamp(56px, 6.5vw, 78px);
  transform: translate(-8px, 5px);
}

.brainstorm-cluster:nth-child(1) .brainstorm-chip:nth-of-type(2) {
  width: clamp(62px, 7.7vw, 92px);
  height: clamp(62px, 7.7vw, 92px);
  transform: translate(8px, -6px);
}

.brainstorm-cluster:nth-child(1) .brainstorm-chip:nth-of-type(4) {
  width: clamp(44px, 5.1vw, 58px);
  height: clamp(44px, 5.1vw, 58px);
  transform: translate(20px, -12px);
}

.brainstorm-cluster:nth-child(2) .brainstorm-chip:nth-of-type(2) {
  width: clamp(64px, 8vw, 98px);
  height: clamp(64px, 8vw, 98px);
  transform: translate(14px, -12px);
}

.brainstorm-cluster:nth-child(2) .brainstorm-chip:nth-of-type(3) {
  width: clamp(58px, 7.3vw, 90px);
  height: clamp(58px, 7.3vw, 90px);
  transform: translate(18px, 10px);
}

.brainstorm-cluster:nth-child(2) .brainstorm-chip:nth-of-type(4) {
  width: clamp(46px, 5.8vw, 70px);
  height: clamp(46px, 5.8vw, 70px);
  transform: translate(-16px, 15px);
}

.brainstorm-cluster:nth-child(2) .brainstorm-chip:nth-of-type(5) {
  width: clamp(72px, 8.8vw, 108px);
  height: clamp(72px, 8.8vw, 108px);
  transform: translate(2px, 12px);
}

.brainstorm-cluster:nth-child(3) .brainstorm-chip:nth-of-type(1) {
  width: clamp(48px, 5.8vw, 68px);
  height: clamp(48px, 5.8vw, 68px);
  transform: translate(-9px, 5px);
}

.brainstorm-cluster:nth-child(3) .brainstorm-chip:nth-of-type(2) {
  width: clamp(62px, 7.5vw, 90px);
  height: clamp(62px, 7.5vw, 90px);
  transform: translate(12px, -9px);
}

.brainstorm-cluster:nth-child(3) .brainstorm-chip:nth-of-type(3) {
  width: clamp(58px, 6.8vw, 82px);
  height: clamp(58px, 6.8vw, 82px);
  transform: translate(10px, 12px);
}

.brainstorm-description {
  max-width: 720px;
  margin: 0 0 14px !important;
  color: #aaa !important;
}

.project-list {
  padding-left: 1.2em;
  margin: 0;
}

.project-section {
  padding: clamp(54px, 7vw, 104px) 0;
}

.project-primary-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: end;
  margin: 0 0 clamp(44px, 5vw, 72px);
  padding-bottom: clamp(18px, 2vw, 30px);
  border-bottom: 1px solid var(--project-line);
}

.project-primary-heading__index {
  color: var(--lime);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 950;
  line-height: 1;
}

.project-primary-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 5.1vw, 78px);
  font-weight: 950;
  line-height: 0.94;
}

.project-primary-heading--no-index {
  grid-template-columns: 1fr;
}

.project-subheading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(52px, 6vw, 84px);
  margin-bottom: clamp(24px, 3vw, 38px);
  color: #b9b9b9;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 850;
  line-height: 1.2;
}

.project-subheading--first {
  margin-top: 0;
}

.project-subheading::before {
  content: "";
  width: 8px;
  height: 8px;
  border: 1px solid var(--lime);
  flex: 0 0 auto;
}

.project-section-note {
  margin: 0 0 clamp(24px, 3vw, 38px);
  color: var(--project-muted);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 760;
  line-height: 1.55;
}

.project-copy {
  max-width: 760px;
  color: #aaa;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 760;
  line-height: 1.55;
}

.project-copy p {
  margin: 0 0 18px;
}

.demo-link {
  display: inline-block;
  margin: 0 0 8px;
  color: var(--lime);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 850;
  line-height: 1.35;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.section-note {
  margin: 0 0 32px;
  color: var(--project-muted);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 760;
  line-height: 1.55;
}

.media-block {
  margin: 0;
  background: #07111f;
}

.media-block img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.7, 0, 1), filter 320ms ease;
}

.media-block:hover img {
  filter: brightness(1.07);
  transform: scale(1.018);
}

.media-block figcaption {
  padding: 12px 0 0;
  color: #747474;
  font-size: 13px;
  font-weight: 800;
}

.media-block--wide {
  margin-bottom: 32px;
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

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

.screen-grid--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.screen-grid--stacked {
  margin-top: 32px;
}

.project-image-stack {
  display: grid;
  gap: 32px;
}

.project-image-stack .media-block img {
  aspect-ratio: auto;
  object-fit: contain;
}

.project-image-block--full img,
.project-image-grid--full .media-block img {
  aspect-ratio: auto;
  object-fit: contain;
}

.project-03-strip-grid .media-block {
  background: transparent;
}

.project-04-transparent-media,
.project-04-transparent-media .media-block {
  background: transparent;
}

.project-06-card-grid--dark .media-block {
  background: #000;
}

.mood-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding-top: 8px;
}

.mood-grid img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 360ms ease, filter 280ms ease;
}

.mood-grid--full img {
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.mood-grid img:hover {
  filter: brightness(1.12);
  transform: translateY(-6px);
}

.project-section--video {
  padding-bottom: clamp(84px, 10vw, 150px);
}

.project-subsection {
  padding-bottom: clamp(30px, 4vw, 56px);
}

.video-placeholder {
  position: relative;
  overflow: hidden;
  background: #07111f;
}

.video-player {
  overflow: hidden;
  background: #07111f;
}

.video-stack {
  display: grid;
  gap: 32px;
}

.video-player video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #07111f;
}

.video-player--custom-controls {
  background: #07111f;
}

.video-seek-controls {
  display: grid;
  grid-template-columns: 34px auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 14px;
  color: #f6f6f1;
  background: #07111f;
}

.video-control-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  padding: 0;
  color: #07111f;
  background: var(--lime);
  border: 0;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}

.video-control-button:hover,
.video-control-button:focus-visible {
  background: #fff;
}

.video-time {
  min-width: 38px;
  color: rgba(246, 246, 241, 0.76);
  font-size: 11px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.video-seek-range {
  width: 100%;
  accent-color: var(--lime);
  cursor: pointer;
}

.video-seek-range:disabled {
  cursor: wait;
}

.video-placeholder img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), opacity 300ms ease;
}

.video-placeholder:hover img {
  opacity: 1;
  transform: scale(1.025);
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 88px);
  pointer-events: none;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(68px, 8vw, 112px);
  height: clamp(68px, 8vw, 112px);
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
  transition: transform 240ms ease, background 240ms ease, border-color 240ms ease;
  cursor: default;
}

.video-placeholder:hover .play-button,
.play-button:focus-visible,
.play-button.is-active {
  border-color: var(--lime);
  background: rgba(197, 222, 50, 0.14);
  transform: translate(-50%, -50%) scale(1.08);
}

.play-button.is-active span {
  margin-left: 0;
  border-top-width: 0;
  border-bottom-width: 0;
  border-left: 4px solid #fff;
  box-shadow: 8px 0 0 #fff;
  height: 30px;
  width: 4px;
}

.play-button span {
  width: 0;
  height: 0;
  margin-left: 7px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 23px solid #fff;
  transition: all 180ms ease;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .cover-sheet--hero .overline,
  .motion-ready .cover-sheet--hero .cover-title,
  .motion-ready .cover-sheet--hero .cover-subtitle,
  .motion-ready .cover-sheet--hero .cover-intro,
  .motion-ready .cover-sheet--hero .season,
  .motion-ready .project-hero h1,
  .motion-ready .project-kicker,
  .motion-ready .project-summary {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.7, 0, 1);
  }

  .motion-ready.is-loaded .cover-sheet--hero .overline,
  .motion-ready.is-loaded .cover-sheet--hero .cover-title,
  .motion-ready.is-loaded .cover-sheet--hero .cover-subtitle,
  .motion-ready.is-loaded .cover-sheet--hero .cover-intro,
  .motion-ready.is-loaded .cover-sheet--hero .season,
  .motion-ready.is-loaded .project-hero h1,
  .motion-ready.is-loaded .project-kicker,
  .motion-ready.is-loaded .project-summary {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .cover-sheet--hero .cover-title,
  .motion-ready .project-hero h1 {
    transition-delay: 120ms;
  }

  .motion-ready .cover-sheet--hero .cover-subtitle,
  .motion-ready .project-kicker {
    transition-delay: 220ms;
  }

  .motion-ready .cover-sheet--hero .cover-intro,
  .motion-ready .project-summary {
    transition-delay: 340ms;
  }

  .motion-ready .cover-sheet--hero .season {
    transition-delay: 460ms;
  }

  .motion-ready .catalog-body,
  .motion-ready .project-section {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 680ms ease, transform 680ms cubic-bezier(0.2, 0.7, 0, 1);
  }

  .motion-ready .catalog-body.is-visible,
  .motion-ready .project-section.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .catalog-body.is-visible .category-list li {
    animation: category-enter 480ms both cubic-bezier(0.2, 0.7, 0, 1);
  }

  .motion-ready .catalog-body.is-visible .category-list li:nth-child(2) { animation-delay: 80ms; }
  .motion-ready .catalog-body.is-visible .category-list li:nth-child(3) { animation-delay: 160ms; }
  .motion-ready .catalog-body.is-visible .category-list li:nth-child(4) { animation-delay: 240ms; }

  @keyframes category-enter {
    from { opacity: 0; transform: translateX(-18px); }
    to { opacity: 1; }
  }
}

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

@media (max-width: 920px) {
  .site-header {
    position: absolute;
  }

  .catalog-body,
  .project-entry,
  .project-kicker,
  .project-summary,
  .screen-grid {
    grid-template-columns: 1fr;
  }

  .project-type {
    white-space: normal;
  }

  .catalog-sidebar {
    position: static;
    min-height: 0;
    gap: 72px;
    padding: 0;
  }

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

  .resume-lead,
  .resume-detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .resume-lead {
    gap: 52px;
  }

  .resume-project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .resume-detail-grid .resume-block:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
  }

  .site-nav {
    gap: 14px;
  }

  .home-page .site-nav a:not(:nth-child(-n + 2)) {
    display: none;
  }

  .resume-sheet {
    padding-top: 82px;
  }

  .resume-ribbon {
    min-width: 0;
    width: 210px;
    padding: 12px 18px;
  }

  .resume-inner {
    width: calc(100% - 36px);
  }

  .resume-lead,
  .resume-detail-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .resume-name {
    font-size: clamp(50px, 17vw, 76px);
  }

  .resume-name span + span {
    margin-top: 12px;
    font-size: clamp(25px, 8vw, 34px);
  }

  .resume-contact {
    gap: 12px 18px;
    margin-top: 36px;
    font-size: 15px;
  }

  .resume-about-wrap {
    grid-template-columns: minmax(0, 1fr) 94px;
    gap: 18px;
  }

  .resume-about {
    font-size: 14px;
  }

  .resume-project-grid {
    grid-template-columns: 1fr;
  }

  .resume-project-card {
    grid-template-columns: 42% 1fr;
    grid-template-rows: 1fr;
  }

  .resume-project-card img {
    height: 100%;
    min-height: 132px;
  }

  .resume-detail-grid .resume-block + .resume-block,
  .resume-detail-grid .resume-block:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .brand,
  .site-nav a {
    font-size: 11px;
  }

  .sheet-inner,
  .project-shell {
    width: calc(100% - 36px);
  }

  .cover-title {
    font-size: clamp(58px, 18vw, 92px);
  }

  .cover-subtitle {
    font-size: 28px;
  }

  .cover-intro {
    margin-top: 76px;
    margin-bottom: 156px;
    font-size: 14px;
    line-height: 1.6;
  }

  .portfolio-rule {
    height: 32px;
  }

  .catalog-body {
    padding-bottom: 96px;
  }

  .category-list {
    gap: 18px;
    font-size: clamp(17px, 5vw, 20px);
  }

  .category-button {
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

  .category-button::before {
    width: 30px;
    height: 30px;
  }

  .category-list li.is-active {
    transform: translateX(6px);
  }

  .category-list li.is-active::after {
    left: 48px;
    bottom: -7px;
    height: 3px;
  }

  .category-mark {
    width: 30px;
    height: 30px;
  }

  .project-entry__media img {
    min-height: 220px;
  }

  .project-entry--compact-preview .project-entry__media img {
    min-height: 220px;
  }

  .project-entry--compact-preview .project-entry__media {
    height: 220px;
  }

  .project-entry--compact-preview .project-entry__content {
    display: block;
    min-height: 0;
  }

  .entry-title {
    font-size: clamp(18px, 5.1vw, 20px);
  }

  .project-hero h1 {
    font-size: clamp(58px, 18vw, 92px);
  }

  .project-hero--immersive h1 {
    font-size: clamp(48px, 14vw, 64px);
    white-space: normal;
  }

  .project-hero--ar h1 {
    font-size: clamp(48px, 14vw, 64px);
    white-space: normal;
  }

  .project-hero--brand h1 {
    font-size: clamp(48px, 13.5vw, 64px);
    white-space: normal;
  }

  .project-hero--corporate h1 {
    font-size: clamp(46px, 13vw, 62px);
    white-space: normal;
  }

  .project-hero--game h1 {
    font-size: clamp(46px, 13vw, 62px);
    white-space: normal;
  }

  .project-summary h3 {
    margin-bottom: 24px;
  }

  .brainstorm-cluster {
    padding: 18px 8px 8px;
  }

  .brainstorm-map {
    margin-top: 22px;
  }

  .brainstorm-cluster strong {
    top: -19px;
    font-size: 10px;
  }

  .project-primary-heading {
    gap: 14px;
  }

  .project-primary-heading h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .mood-grid {
    gap: 14px;
  }
}
