* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  color-scheme: dark;
  --bg: #070913;
  --bg-deep: #050609;
  --blue-glow: transparent;
  --blue-soft: transparent;
  --cyan-soft: transparent;
  --violet-soft: rgba(83, 43, 159, 0.16);
  --acid: #0f51f8;
  --acid-text: #0066ff;
  --acid-soft: rgba(15, 81, 248, 0.2);
  --panel: rgba(15, 20, 18, 0.94);
  --panel-soft: rgba(22, 31, 27, 0.72);
  --paper: #f1f1f1;
  --muted: #999999;
  --soft: rgba(241, 241, 241, 0.62);
  --line: rgba(241, 241, 241, 0.12);
  --accent: #0f51f8;
  --title-font: "Source Han Sans SC", "Source Han Sans CN", "Source Han Sans",
    "思源黑体", "思源黑体 CN", "思源黑体 SC", "Noto Sans CJK SC", "Noto Sans SC",
    "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --douyin-title: var(--title-font);
  --page-gutter: clamp(24px, 5.3vw, 136px);
  --image-radius-sm: 18px;
  --image-radius: 24px;
  --image-radius-lg: 30px;
}

html {
  scroll-behavior: smooth;
  background: #05080f;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background-color: #05080f;
  background:
    linear-gradient(180deg, rgba(4, 8, 15, 0.2), rgba(3, 7, 14, 0.34)),
    repeating-linear-gradient(
      135deg,
      rgba(28, 52, 96, 0.13) 0 1.4px,
      rgba(9, 22, 48, 0.12) 1.4px 6px,
      rgba(2, 7, 18, 0.16) 6px 14px,
      rgba(11, 27, 58, 0.08) 14px 24px
    ),
    repeating-linear-gradient(135deg, transparent 0 13px, rgba(255, 255, 255, 0.018) 13px 14px, transparent 14px 28px),
    radial-gradient(circle at 10% 8%, rgba(15, 81, 248, 0.09), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(4, 94, 142, 0.1), transparent 38%),
    radial-gradient(rgba(255, 255, 255, 0.022) 0.8px, transparent 1px),
    #05080f;
  background-attachment: fixed;
  background-size: auto, 24px 24px, 48px 48px, auto, auto, 5px 5px, auto;
  background-blend-mode: normal, normal, overlay, screen, screen, normal, normal;
  color: var(--paper);
  font: 500 normal 22px/1.3 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .site-header,
body.is-loading main {
  opacity: 0;
  visibility: hidden;
}

body.is-loading .site-header,
body.is-loading .eliot-hero__title span,
body.is-loading .eliot-hero__subtitle,
body.is-loading .eliot-featured__label,
body.is-loading .eliot-work-card {
  animation-play-state: paused;
}

body.site-ready .site-header,
body.site-ready main {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 760ms ease,
    visibility 0ms linear;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  color: #fff;
  background:
    radial-gradient(circle at 22% 28%, rgba(0, 102, 255, 0.24), transparent 30%),
    radial-gradient(circle at 72% 74%, rgba(0, 102, 255, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 7px),
    #030407;
  transition:
    opacity 620ms ease,
    visibility 0ms linear 620ms;
}

.site-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.44;
  background:
    repeating-radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 5px),
    linear-gradient(120deg, transparent, rgba(0, 102, 255, 0.09), transparent);
  animation: eliot-grain-shift 4.8s steps(5, end) infinite;
}

.site-loader.is-done {
  opacity: 0;
  visibility: hidden;
}

.site-loader__inner {
  position: absolute;
  bottom: clamp(30px, 7vh, 76px);
  left: var(--page-gutter);
  z-index: 1;
  display: grid;
  justify-items: start;
  width: min(420px, calc(100vw - 44px));
}

.site-loader__label {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.64);
  font: 800 12px/1 var(--title-font);
  text-transform: uppercase;
}

.site-loader strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  color: transparent;
  background: linear-gradient(180deg, #fff 0%, #d8e6ff 42%, #7aa6ff 78%, #0066ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--title-font);
  font-size: clamp(56px, 8.4vw, 118px);
  font-weight: 900;
  line-height: 0.92;
}

.site-loader small {
  font-size: 0.34em;
}

.site-loader__progress {
  position: relative;
  width: min(280px, 58vw);
  height: 2px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.15);
}

.site-loader__progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: #0066ff;
  transform: scaleX(0);
  transform-origin: left center;
}

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

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

video {
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(96px, 1fr) auto minmax(96px, 1fr);
  align-items: center;
  gap: 24px;
  padding: clamp(16px, 1.6vw, 25px) var(--page-gutter);
  color: var(--paper);
  animation: header-enter 760ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
  pointer-events: none;
}

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

.logo {
  grid-column: 1;
  justify-self: start;
  width: 0;
  min-width: 0;
  overflow: hidden;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  max-width: min(1120px, calc(100vw - 220px));
  gap: 4px;
  padding: 6px;
  overflow-x: auto;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  background: rgba(5, 8, 15, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(-8px);
  animation: nav-pill-enter 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-nav a:nth-child(1) {
  animation-delay: 180ms;
}

.site-nav a:nth-child(2) {
  animation-delay: 225ms;
}

.site-nav a:nth-child(3) {
  animation-delay: 270ms;
}

.site-nav a:nth-child(4) {
  animation-delay: 315ms;
}

.site-nav a:nth-child(5) {
  animation-delay: 360ms;
}

.site-nav a:nth-child(6) {
  animation-delay: 405ms;
}

.site-nav a:nth-child(7) {
  animation-delay: 450ms;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.site-nav a.is-active {
  color: #fff;
  background: #2f67ff;
  box-shadow: 0 8px 22px rgba(47, 103, 255, 0.34);
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nav-pill-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eliot-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: 112px var(--page-gutter) 34px;
  color: #f8fbff;
  --hero-dot-x: 50%;
  --hero-dot-y: 50%;
  background:
    radial-gradient(circle at 50% 54%, rgba(0, 102, 255, 0.035), transparent 30%),
    linear-gradient(180deg, #05070c 0%, #020305 100%);
  isolation: isolate;
}

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

.eliot-hero::before {
  z-index: 0;
  opacity: 0;
  background:
    radial-gradient(circle, rgba(116, 155, 255, 0.7) 0 1.25px, transparent 1.35px) 0 0 / 13px 13px,
    radial-gradient(circle, rgba(0, 102, 255, 0.52) 0 1px, transparent 1.15px) 6px 6px / 13px 13px,
    #020305;
  mask:
    radial-gradient(circle at var(--hero-dot-x) var(--hero-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.38) 32%, transparent 50%);
  mask-composite: add;
  -webkit-mask:
    radial-gradient(circle at var(--hero-dot-x) var(--hero-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.88) 16%, rgba(0, 0, 0, 0.38) 32%, transparent 50%);
  -webkit-mask-composite: source-over;
  filter: saturate(1.25) contrast(1.12);
  transform: translate3d(0, 0, 0) scale(1.04);
  animation: reactbits-dot-cloud 10s ease-in-out infinite alternate;
  transition: opacity 420ms ease;
}

.eliot-hero::after {
  z-index: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 0 0.8px, transparent 0.95px) 0 0 / 18px 18px,
    radial-gradient(circle at var(--hero-dot-x) var(--hero-dot-y), rgba(0, 102, 255, 0.36), transparent 25%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 52%, transparent 0 24%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.78) 100%);
  opacity: 0;
  mask: radial-gradient(circle at var(--hero-dot-x) var(--hero-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.78) 20%, rgba(0, 0, 0, 0.22) 38%, transparent 58%);
  -webkit-mask: radial-gradient(circle at var(--hero-dot-x) var(--hero-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.78) 20%, rgba(0, 0, 0, 0.22) 38%, transparent 58%);
  mix-blend-mode: screen;
  animation: reactbits-dot-breathe 6.8s ease-in-out infinite alternate;
  transition: opacity 420ms ease;
}

.eliot-hero.is-pointer-active::before {
  opacity: 0.98;
}

.eliot-hero.is-pointer-active::after {
  opacity: 0.92;
}

.eliot-hero__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(1180px, calc(100vw - var(--page-gutter) * 2));
  margin: 0;
  text-align: center;
  transform: translate(calc(-50% + var(--hero-shift-x, 0px)), calc(-50% + var(--hero-shift-y, 0px)));
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.eliot-hero__kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.66);
  font: 800 13px/1.2 var(--title-font);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(18px);
  animation: eliot-fade-up 820ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

.eliot-hero__title {
  display: flex;
  justify-content: center;
  margin: 0;
  font-family: var(--title-font);
  font-size: clamp(46px, 7.6vw, 108px);
  font-weight: 900;
  line-height: 1.16;
  text-transform: none;
  white-space: nowrap;
}

.eliot-hero__title span {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 0.04em 0.035em 0.16em;
  overflow: visible;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #dfe9ff 38%, #9bbaff 68%, #0066ff 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.2px rgba(218, 231, 255, 0.9);
  paint-order: stroke fill;
  transform: translateY(24px);
  animation:
    eliot-title-reveal 940ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both,
    eliot-title-fill-bg 1100ms cubic-bezier(0.16, 1, 0.3, 1) 460ms both;
}

.eliot-hero__title span::after {
  display: none;
}

.eliot-hero__subtitle {
  position: relative;
  display: inline-block;
  margin: 6px 0 0;
  padding: 0.04em 0.06em 0.12em;
  overflow: visible;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 50%, #d3e0ff 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--title-font);
  font-size: clamp(27px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.1px rgba(255, 255, 255, 0.82);
  paint-order: stroke fill;
  opacity: 0;
  transform: translateY(20px);
  animation:
    eliot-fade-up 820ms cubic-bezier(0.16, 1, 0.3, 1) 360ms both,
    eliot-title-fill-bg 940ms cubic-bezier(0.16, 1, 0.3, 1) 700ms both;
}

.eliot-hero__subtitle::after {
  display: none;
}

.eliot-featured {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: clamp(8px, 1.8vh, 24px);
}

.eliot-featured__label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.62);
  font: 700 12px/1 "Courier New", monospace;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: eliot-fade-up 760ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.eliot-work-strip {
  position: relative;
  height: clamp(246px, 29vh, 330px);
  overflow: visible;
  cursor: grab;
  perspective: 1200px;
  touch-action: pan-y;
  outline: none;
}

.eliot-work-strip::before {
  position: absolute;
  right: 5%;
  bottom: 56px;
  left: 5%;
  height: 92px;
  content: "";
  pointer-events: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 0 50% 50%;
  opacity: 0;
  transform: translateY(18px);
  animation: eliot-fade-up 760ms cubic-bezier(0.16, 1, 0.3, 1) 620ms both;
}

.eliot-work-strip.is-dragging {
  cursor: grabbing;
}

.eliot-work-strip:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.78);
  outline-offset: 10px;
}

.eliot-work-card {
  --circular-x: 0px;
  --circular-y: 48px;
  --circular-r: 0deg;
  --circular-s: 0.94;
  --circular-o: 0.72;
  --circular-blur: 1px;
  --circular-light: 0.86;
  --circular-z: 1;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: clamp(160px, 13.6vw, 220px);
  min-width: 0;
  color: #fff;
  opacity: var(--circular-o, 0);
  z-index: var(--circular-z, 1);
  filter: blur(var(--circular-blur, 0)) brightness(var(--circular-light, 1));
  transform:
    translate3d(calc(-50% + var(--circular-x, 0px)), var(--circular-y, 48px), 0)
    rotate(var(--circular-r, 0deg))
    scale(var(--circular-s, 0.94));
  transform-origin: center center;
  will-change: transform, opacity, filter;
  animation: eliot-card-enter 900ms cubic-bezier(0.16, 1, 0.3, 1) calc(520ms + var(--delay)) both;
  transition:
    filter 260ms ease,
    opacity 260ms ease;
}

.eliot-work-card:nth-child(1) {
  --circular-x: calc(-1 * clamp(330px, 39vw, 620px));
  --circular-y: 62px;
  --circular-r: -17deg;
  --circular-s: 0.84;
  --circular-o: 0.62;
}

.eliot-work-card:nth-child(2) {
  --circular-x: calc(-1 * clamp(170px, 20vw, 310px));
  --circular-y: 15px;
  --circular-r: -8deg;
  --circular-s: 0.96;
  --circular-o: 0.86;
}

.eliot-work-card:nth-child(3) {
  --circular-x: 0px;
  --circular-y: -16px;
  --circular-r: 0deg;
  --circular-s: 1.08;
  --circular-o: 1;
  --circular-z: 5;
}

.eliot-work-card:nth-child(4) {
  --circular-x: clamp(170px, 20vw, 310px);
  --circular-y: 15px;
  --circular-r: 8deg;
  --circular-s: 0.96;
  --circular-o: 0.86;
}

.eliot-work-card:nth-child(5) {
  --circular-x: clamp(330px, 39vw, 620px);
  --circular-y: 62px;
  --circular-r: 17deg;
  --circular-s: 0.84;
  --circular-o: 0.62;
}

.eliot-work-card__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.44);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.eliot-work-card__thumb::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.48)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 4px);
  opacity: 0.82;
  transition: opacity 260ms ease;
}

.eliot-work-card__thumb::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  border: 1px solid rgba(0, 102, 255, 0.28);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 260ms ease;
}

.eliot-work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.76) contrast(1.08) brightness(0.82);
  transform: scale(1.02);
  transition:
    filter 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.eliot-work-card:first-child img {
  object-position: 58% center;
}

.eliot-work-card__meta {
  display: grid;
  gap: 5px;
  margin-top: 12px;
  font-family: "Courier New", monospace;
  text-transform: uppercase;
}

.eliot-work-card__meta strong {
  font-family: var(--title-font);
  font-size: 18px;
  line-height: 1.05;
}

.eliot-work-card__meta em {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-style: normal;
  line-height: 1.15;
}

.eliot-work-card:hover,
.eliot-work-card:focus-visible {
  filter: blur(var(--circular-blur, 0)) brightness(1.08) drop-shadow(0 18px 36px rgba(0, 102, 255, 0.22));
  outline: none;
}

.eliot-work-card:hover .eliot-work-card__thumb,
.eliot-work-card:focus-visible .eliot-work-card__thumb {
  border-color: rgba(0, 102, 255, 0.46);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.5), 0 0 26px rgba(0, 102, 255, 0.16);
  transform: translateY(-8px);
}

.eliot-work-card:hover img,
.eliot-work-card:focus-visible img {
  filter: saturate(1.04) contrast(1.03) brightness(1);
  transform: scale(1.09);
}

.eliot-work-card:hover .eliot-work-card__thumb::before,
.eliot-work-card:focus-visible .eliot-work-card__thumb::before {
  opacity: 0.56;
}

.eliot-work-card:hover .eliot-work-card__thumb::after,
.eliot-work-card:focus-visible .eliot-work-card__thumb::after {
  opacity: 1;
}

@keyframes eliot-grain-shift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(1.6%, -1.1%, 0);
  }

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

  75% {
    transform: translate3d(0.9%, 1.1%, 0);
  }
}

@keyframes grainient-field {
  0% {
    transform: scale(1.12) rotate(0deg) translate3d(-1%, -1%, 0);
    filter: contrast(1.18) saturate(1.02) hue-rotate(0deg);
  }

  45% {
    transform: scale(1.18) rotate(3deg) translate3d(1.8%, -0.8%, 0);
    filter: contrast(1.34) saturate(1.18) hue-rotate(-8deg);
  }

  100% {
    transform: scale(1.16) rotate(-2deg) translate3d(-0.8%, 1.4%, 0);
    filter: contrast(1.26) saturate(1.12) hue-rotate(6deg);
  }
}

@keyframes grainient-grain {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(1.2%, -0.8%, 0);
  }

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

  75% {
    transform: translate3d(0.7%, 0.8%, 0);
  }
}

@keyframes reactbits-dot-cloud {
  0% {
    transform: translate3d(-1.8%, -0.8%, 0) scale(1.04);
    filter: saturate(1.05) contrast(1.04);
  }

  48% {
    transform: translate3d(1.2%, 0.6%, 0) scale(1.075);
    filter: saturate(1.32) contrast(1.18);
  }

  100% {
    transform: translate3d(-0.6%, 1%, 0) scale(1.055);
    filter: saturate(1.2) contrast(1.12);
  }
}

@keyframes reactbits-dot-breathe {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0.7%, -0.45%, 0) scale(1.018);
  }

  100% {
    transform: translate3d(-0.55%, 0.55%, 0) scale(1.01);
  }
}

@keyframes eliot-title-reveal {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eliot-title-fill-bg {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

@keyframes eliot-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes eliot-card-enter {
  from {
    opacity: 0;
    filter: blur(12px) brightness(0.6);
  }

  to {
    opacity: var(--circular-o, 1);
    filter: blur(var(--circular-blur, 0)) brightness(var(--circular-light, 1));
  }
}

.codrops_mwg {
  position: relative;
  height: 100dvh;
  min-height: 560px;
  overflow: hidden;
  background: #02050d;
  isolation: isolate;
}

.codrops_mwg::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(3, 8, 20, 0.08) 50%, rgba(0, 75, 176, 0.2) 100%),
    url("./assets/hero-design-portfolio-bg.png") center / cover no-repeat;
}

.codrops_mwg::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 52% 49%, transparent 30%, rgba(0, 0, 0, 0.34) 100%),
    linear-gradient(90deg, rgba(20, 92, 255, 0.1), transparent 42%, rgba(0, 0, 0, 0.3));
}

.content-effect {
  position: absolute;
  top: 36%;
  left: 50%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  max-width: calc(100vw - 40px);
  color: #f6fbff;
  font-family: var(--title-font);
  font-size: clamp(56px, 7.8vw, 132px);
  font-weight: 900;
  line-height: 0.94;
  text-align: center;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.content-effect span {
  display: block;
  width: max-content;
  max-width: 100%;
  opacity: 0;
  white-space: nowrap;
  transform: translateY(52px) scale(0.98);
  animation: hero-title-enter 920ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.content-effect span:first-child {
  color: transparent;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(220, 237, 255, 0.88) 34%, rgba(87, 142, 230, 0.78) 70%, rgba(236, 246, 255, 0.9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: none;
}

.content-effect span:last-child {
  margin-top: clamp(8px, 1vw, 18px);
  color: #ffffff;
  font-size: clamp(48px, 7.1vw, 124px);
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.48),
    0 0 46px rgba(69, 161, 255, 0.54),
    0 18px 60px rgba(0, 0, 0, 0.72);
  animation-delay: 560ms;
}

.hero-work-orbit {
  position: absolute;
  inset: 56vh 0 auto;
  z-index: 3;
  height: clamp(260px, 42vh, 470px);
  perspective: 1200px;
  pointer-events: none;
}

.hero-work-card {
  --x: 0vw;
  --y: 0px;
  --r: 0deg;
  --s: 1;
  --delay: 0ms;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: clamp(150px, 14.2vw, 270px);
  aspect-ratio: 0.72;
  overflow: hidden;
  padding: clamp(13px, 1.1vw, 20px);
  color: #fff;
  background: rgba(5, 10, 22, 0.86);
  border: 1px solid rgba(0, 102, 255, 0.46);
  border-radius: clamp(16px, 1.5vw, 26px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.48),
    0 0 34px rgba(0, 102, 255, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  opacity: 0;
  pointer-events: auto;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r)) scale(var(--s));
  transform-origin: center;
  animation: hero-card-enter 960ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay) both;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-work-card--one {
  --x: -35vw;
  --y: 42px;
  --r: -13deg;
  --s: 0.78;
  --delay: 260ms;
}

.hero-work-card--two {
  --x: -18vw;
  --y: 4px;
  --r: -8deg;
  --s: 0.93;
  --delay: 330ms;
}

.hero-work-card--three {
  --x: 0vw;
  --y: -26px;
  --r: 0deg;
  --s: 1.1;
  --delay: 400ms;
}

.hero-work-card--four {
  --x: 18vw;
  --y: 4px;
  --r: 8deg;
  --s: 0.93;
  --delay: 470ms;
}

.hero-work-card--five {
  --x: 35vw;
  --y: 42px;
  --r: 13deg;
  --s: 0.78;
  --delay: 540ms;
}

.codrops_mwg .hero-work-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: saturate(0.9) contrast(1.05) brightness(0.72);
  pointer-events: none;
  transition:
    filter 420ms ease,
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-work-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    radial-gradient(circle at 48% 20%, rgba(0, 102, 255, 0.24), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(3, 8, 20, 0.42) 48%, rgba(2, 5, 13, 0.9) 100%);
  pointer-events: none;
}

.hero-work-card > span,
.hero-work-card > p,
.hero-work-card > strong {
  position: relative;
  z-index: 2;
}

.hero-work-card > span {
  position: absolute;
  top: clamp(13px, 1vw, 18px);
  left: clamp(13px, 1vw, 18px);
  color: #6ea0ff;
  font-family: var(--title-font);
  font-size: clamp(14px, 1vw, 19px);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.hero-work-card > p {
  margin-bottom: 8px;
  color: #7aa8ff;
  font-size: clamp(9px, 0.68vw, 12px);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-work-card > strong {
  color: #fff;
  font-family: var(--title-font);
  font-size: clamp(17px, 1.35vw, 25px);
  font-weight: 900;
  line-height: 1.05;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.78);
}

.hero-work-card:hover,
.hero-work-card:focus-visible {
  z-index: 5;
  border-color: rgba(84, 145, 255, 0.92);
  box-shadow:
    0 36px 94px rgba(0, 0, 0, 0.54),
    0 0 50px rgba(0, 102, 255, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  filter: brightness(1.08);
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 14px)) rotate(var(--r)) scale(var(--s));
}

.codrops_mwg .hero-work-card:hover img,
.codrops_mwg .hero-work-card:focus-visible img {
  filter: saturate(1.05) contrast(1.08) brightness(0.86);
  transform: scale(1.06);
}

@keyframes hero-card-enter {
  from {
    opacity: 0;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) + 36px)) rotate(calc(var(--r) - 5deg)) scale(var(--s));
  }

  to {
    opacity: 1;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(var(--r)) scale(var(--s));
  }
}

@keyframes hero-title-enter {
  from {
    opacity: 0;
    transform: translateY(52px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-hint {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 8;
  display: none;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  animation: hint-enter 780ms ease 920ms both;
  transform: translateX(-50%);
}

@keyframes hint-enter {
  from {
    opacity: 0;
    transform: translate(-50%, 16px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.codrops_mwg img {
  position: absolute;
  z-index: 5;
  width: 15vw;
  height: 15vw;
  object-fit: cover;
  border-radius: 9%;
  pointer-events: none;
  will-change: transform, opacity;
}

.codrops_mwg .medias img {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  visibility: hidden;
  pointer-events: none;
}

.portfolio-screen {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: clamp(78px, 7vw, 116px) var(--page-gutter) clamp(34px, 4vw, 58px);
  background: transparent;
  border-top: 0;
}

.portfolio-screen:not(.eliot-hero) {
  content-visibility: auto;
  contain-intrinsic-size: 1000px;
}

.screen-kicker {
  position: relative;
  z-index: 2;
  margin-bottom: -8px;
  color: var(--acid-text);
  font-size: clamp(11px, 0.72vw, 14px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.archive-title,
.works-title {
  position: relative;
  z-index: 2;
  color: var(--paper);
  font-family: var(--title-font);
  font-size: clamp(78px, 10.4vw, 164px);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0;
}

.archive-title {
  margin: 0 0 clamp(30px, 3.4vw, 52px);
  color: var(--paper);
  font-size: clamp(62px, 7.2vw, 124px);
  font-weight: 900;
  line-height: 0.9;
}

.archive-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.55fr);
  gap: clamp(12px, 1vw, 18px);
  align-items: stretch;
}

.archive-card {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: clamp(20px, 1.7vw, 32px);
  background:
    radial-gradient(circle at 12% 96%, rgba(0, 102, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(12, 18, 30, 0.98), rgba(5, 8, 15, 0.98));
  border: 1px solid rgba(122, 166, 255, 0.18);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 60px rgba(0, 0, 0, 0.28);
}

.glow-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(15, 81, 248, 0.3), transparent 16rem);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.glow-card:hover::before {
  opacity: 1;
}

.archive-card > * {
  position: relative;
  z-index: 1;
}

.identity-card {
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) 1fr;
  align-content: start;
  gap: clamp(20px, 1.8vw, 34px);
}

.portrait-frame {
  overflow: hidden;
  width: 170px;
  aspect-ratio: 0.82;
  border: 2px solid var(--acid);
  border-radius: var(--image-radius-lg);
  box-shadow: 0 0 28px rgba(15, 81, 248, 0.22);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
}

.portrait-frame--headshot {
  background: radial-gradient(circle at 50% 18%, rgba(0, 102, 255, 0.18), rgba(6, 14, 30, 0.94) 64%);
}

.portrait-frame--headshot img {
  object-fit: contain;
  object-position: center bottom;
  filter: none;
}

.identity-copy h2 {
  margin-bottom: 8px;
  color: var(--paper);
  font-family: var(--title-font);
  font-size: clamp(30px, 2.6vw, 54px);
  line-height: 0.92;
}

.identity-copy p {
  margin-bottom: 4px;
  color: var(--acid-text);
  font-size: 22px;
  font-weight: 900;
}

.identity-copy span,
.mini-block h3 span {
  color: rgba(241, 241, 241, 0.45);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.identity-copy dl {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

.identity-copy dl div {
  display: flex;
  gap: 8px;
  color: rgba(241, 241, 241, 0.72);
  font-size: 12px;
  font-weight: 800;
}

.identity-copy dt {
  color: var(--acid-text);
}

.contact-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(241, 241, 241, 0.14);
  color: rgba(241, 241, 241, 0.72);
  font-size: 14px;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}

.contact-list span {
  color: rgba(0, 102, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-block {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid rgba(241, 241, 241, 0.14);
}

.mini-block h3 {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: 21px;
}

.mini-block p,
.mini-block li {
  color: rgba(241, 241, 241, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.mini-block ul {
  display: grid;
  gap: 7px;
  padding-left: 16px;
}

.skill-meter-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.skill-meter {
  display: grid;
  gap: 7px;
}

.skill-meter__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: rgba(229, 237, 255, 0.72);
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.1;
}

.skill-meter__head span,
.skill-meter__head strong {
  font: inherit;
  font-weight: 800;
}

.skill-meter__head strong {
  color: rgba(229, 237, 255, 0.56);
  white-space: nowrap;
}

.skill-meter__track {
  overflow: hidden;
  height: 8px;
  background: rgba(229, 237, 255, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(122, 166, 255, 0.08);
}

.skill-meter__track span {
  display: block;
  width: calc(var(--level, 0.75) * 100%);
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.92), rgba(110, 159, 255, 0.96));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(0, 102, 255, 0.32);
  transform-origin: left center;
}

.profile-section.is-visible .skill-meter__track span {
  animation: skill-meter-grow 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes skill-meter-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.resume-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-inline: clamp(28px, 2.4vw, 44px);
}

.resume-intro {
  display: grid;
  grid-template-columns: 20px 132px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px 20px;
  background: rgba(7, 12, 22, 0.34);
  border: 1px solid rgba(122, 166, 255, 0.14);
  border-radius: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  background: var(--acid);
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(15, 81, 248, 0.72);
}

.resume-intro h2,
.resume-accordion h3,
.project-card > h2 {
  color: var(--acid-text);
  font-family: var(--title-font);
  font-size: 22px;
  line-height: 1;
}

.resume-intro p,
.resume-panel p,
.project-card p {
  color: rgba(241, 241, 241, 0.66);
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.76;
}

.resume-accordion {
  --resume-company-column: clamp(150px, 12.5vw, 230px);
  overflow: hidden;
  background: rgba(5, 9, 17, 0.22);
  border: 1px solid rgba(122, 166, 255, 0.14);
  border-radius: 12px;
}

.resume-accordion h3 {
  padding: 20px 20px 8px;
}

.resume-item {
  border-top: 1px solid rgba(122, 166, 255, 0.12);
  transition:
    background-color 260ms ease,
    border-color 260ms ease;
}

.resume-item.is-open {
  background:
    radial-gradient(circle at 12% 100%, rgba(0, 102, 255, 0.13), transparent 34%),
    linear-gradient(100deg, rgba(11, 24, 45, 0.92), rgba(5, 10, 18, 0.9));
}

.resume-trigger {
  display: grid;
  grid-template-columns: var(--resume-company-column) minmax(260px, 1fr) auto 24px;
  gap: 16px;
  align-items: center;
  width: 100%;
  padding: 22px 20px;
  color: var(--paper);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.resume-trigger span {
  color: rgba(0, 102, 255, 0.9);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.34;
  white-space: normal;
}

.resume-trigger strong {
  color: var(--paper);
  font-size: 17px;
  line-height: 1.2;
}

.resume-trigger strong::first-letter {
  color: var(--acid-text);
}

.resume-trigger em {
  color: rgba(241, 241, 241, 0.76);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.resume-trigger b {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--acid-text);
  font-size: 16px;
  line-height: 1;
  border: 1px solid rgba(15, 81, 248, 0.54);
  border-radius: 999px;
}

.resume-panel {
  overflow: hidden;
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.resume-item.is-open .resume-panel {
  max-height: 620px;
  padding: 0 28px 26px calc(20px + var(--resume-company-column) + 16px);
  opacity: 1;
  transform: translateY(0);
}

.resume-duty-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.25em;
  color: rgba(241, 241, 241, 0.7);
  font-size: clamp(13px, 0.78vw, 15px);
  line-height: 1.7;
}

.resume-duty-list li::marker {
  color: rgba(0, 102, 255, 0.9);
  font-weight: 900;
}

.profile-section .resume-trigger strong::first-letter,
.profile-section .resume-duty-list li::marker {
  color: var(--paper);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag-row span {
  padding: 6px 11px;
  color: rgba(219, 232, 255, 0.86);
  font-size: 11px;
  font-weight: 900;
  background: rgba(50, 96, 156, 0.45);
  border-radius: 999px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-card article {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid rgba(15, 81, 248, 0.2);
}

.project-card article:first-of-type {
  margin-top: 18px;
}

.project-card img {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: var(--image-radius-sm);
}

.project-card h3 {
  display: inline;
  margin-right: 18px;
  color: var(--acid-text);
  font-size: 19px;
}

.project-card article span {
  float: right;
  color: rgba(241, 241, 241, 0.7);
  font-size: 12px;
  font-weight: 900;
}

.project-card strong {
  display: block;
  margin-top: 8px;
  color: var(--acid-text);
  font-size: 14px;
  line-height: 1.6;
}

.works-title {
  margin-top: 0;
  margin-bottom: clamp(30px, 3.4vw, 52px);
  font-size: clamp(62px, 7.2vw, 124px);
  line-height: 0.9;
}

.work-section .screen-kicker {
  margin-bottom: clamp(8px, 0.8vw, 14px);
}

.profile-section .screen-kicker {
  margin-bottom: clamp(8px, 0.8vw, 14px);
}

.work-index {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  gap: clamp(10px, 1vw, 20px);
  align-items: stretch;
  width: 100%;
}

.work-card {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 0;
  min-height: clamp(340px, 41vw, 560px);
  padding: 22px;
  background: #101010;
  border: 1px solid rgba(241, 241, 241, 0.18);
  border-radius: var(--image-radius);
  transform: translateY(0);
  transition:
    flex 780ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    filter 260ms ease;
}

.work-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.76);
  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms ease;
}

.work-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(5, 5, 12, 0.12) 0%, rgba(5, 5, 12, 0.18) 45%, rgba(5, 5, 12, 0.82) 100%),
    linear-gradient(90deg, rgba(15, 81, 248, 0.24), transparent 42%);
  pointer-events: none;
}

.work-card > *:not(img) {
  position: relative;
  z-index: 2;
}

.work-number {
  color: var(--acid-text);
  font-family: var(--title-font);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.work-card p {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 74px;
  margin: 0;
  color: var(--acid-text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.18;
  text-transform: uppercase;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.work-card h2 {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 26px;
  color: var(--paper);
  font-family: var(--title-font);
  font-size: clamp(20px, 1.28vw, 28px);
  line-height: 1.03;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-card a {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: transparent;
  border: 1px solid rgba(15, 81, 248, 0.68);
  border-radius: 999px;
}

.work-card a::before {
  content: "View";
  color: var(--acid-text);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-index.is-hovering .work-card.is-dim {
  flex: 0.72 1 0;
}

.work-index.is-hovering .work-card.is-active,
.work-card:hover,
.work-card:focus-within {
  flex: 1.75 1 0;
  z-index: 4;
  border-color: rgba(15, 81, 248, 0.92);
  filter: brightness(1.12);
  transform: translateY(-16px);
}

.work-index.is-hovering .work-card.is-active img,
.work-card:hover img,
.work-card:focus-within img {
  filter: saturate(1.08) contrast(1.1) brightness(0.94);
  transform: scale(1.08);
}

.project-showcase {
  min-height: 118vh;
  padding-top: clamp(56px, 4.3vw, 82px);
  padding-bottom: clamp(60px, 5vw, 96px);
  background: transparent;
}

.project-showcase::after {
  display: block;
  height: clamp(36px, 6vh, 74px);
  content: "";
}

.project-detail-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  max-width: 100%;
  margin-bottom: clamp(24px, 2.8vw, 44px);
}

.project-detail-title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 1.8vw, 34px);
  align-items: end;
}

.project-detail-number {
  color: var(--acid-text);
  font-family: var(--title-font);
  font-size: clamp(56px, 3.75vw, 88px);
  font-weight: 900;
  line-height: 0.88;
}

.project-detail-title p,
.project-asset-count {
  margin-bottom: 12px;
  color: rgba(241, 241, 241, 0.5);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.project-detail-title h1 {
  color: var(--paper);
  font-family: var(--title-font);
  font-size: clamp(42px, 3.35vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

.project-showcase .project-detail-title p {
  display: block;
  margin: 0 0 clamp(6px, 0.55vw, 10px);
  color: rgba(241, 241, 241, 0.48);
  font-size: clamp(9px, 0.62vw, 12px);
  letter-spacing: 0.22em;
  line-height: 1;
}

.project-asset-count {
  padding-top: clamp(22px, 3.8vw, 70px);
  white-space: nowrap;
}

.showcase-gallery {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(14px, 1.25vw, 22px);
  overflow: hidden;
  padding: 0 0 clamp(16px, 1.8vw, 26px);
}

.showcase-track {
  display: flex;
  gap: clamp(14px, 1.15vw, 22px);
  align-items: stretch;
  width: max-content;
  will-change: transform;
  animation-duration: var(--marquee-duration, 64s);
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.showcase-track:hover,
.is-lightbox-open .showcase-track {
  animation-play-state: paused;
}

.showcase-track--top {
  animation-name: showcase-marquee-right;
}

.showcase-track--bottom {
  animation-name: showcase-marquee-left;
  animation-duration: var(--marquee-duration, 72s);
}

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

  to {
    transform: translate3d(calc(var(--marquee-distance, 1400px) * -1), 0, 0);
  }
}

@keyframes showcase-marquee-right {
  from {
    transform: translate3d(calc(var(--marquee-distance, 1400px) * -1), 0, 0);
  }

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

.showcase-tile {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  height: clamp(218px, 20.2vw, 382px);
  background: #111;
  border: 1px solid transparent;
  border-radius: var(--image-radius);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.28);
  cursor: zoom-in;
  opacity: 0;
  transform: translateY(54px) scale(0.965);
  transition:
    border-color 320ms ease,
    opacity 760ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
  will-change: transform, opacity;
}

.showcase-tile::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 58%, rgba(2, 3, 8, 0.22)),
    linear-gradient(90deg, rgba(15, 81, 248, 0.1), transparent 44%);
  opacity: 0.72;
  pointer-events: none;
}

.showcase-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 850ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
}

.showcase-tile:hover {
  z-index: 3;
  border-color: rgba(15, 81, 248, 0.7);
  filter: brightness(1.06);
  transform: translateY(0) scale(1);
}

.showcase-tile:hover img {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.018);
}

.showcase-tile:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}

.is-visible .showcase-tile {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: var(--tile-delay, 0ms);
}

.is-visible .showcase-tile:hover {
  transform: translateY(0) scale(1);
  transition-delay: 0ms;
}

.showcase-tile--portrait {
  width: clamp(150px, 12vw, 224px);
}

.showcase-tile--poster {
  width: clamp(220px, 18vw, 348px);
}

.showcase-tile--wide {
  width: clamp(330px, 28vw, 560px);
}

.showcase-tile--landscape {
  width: clamp(360px, 32vw, 650px);
}

.showcase-tile--landscape-wide {
  width: clamp(520px, 45vw, 900px);
}

.showcase-gallery--intrinsic {
  --intrinsic-top-height: clamp(218px, 17vw, 348px);
  --intrinsic-bottom-height: clamp(228px, 18vw, 368px);
}

.showcase-gallery--intrinsic .showcase-tile {
  width: auto;
  aspect-ratio: var(--image-ratio, 2 / 1);
}

.showcase-gallery--intrinsic .showcase-track--top .showcase-tile {
  height: var(--intrinsic-top-height);
}

.showcase-gallery--intrinsic .showcase-track--bottom .showcase-tile {
  height: var(--intrinsic-bottom-height);
}

.showcase-gallery--render {
  --intrinsic-top-height: clamp(230px, 18vw, 370px);
  --intrinsic-bottom-height: clamp(230px, 18vw, 370px);
}

.video-showcase {
  min-height: 118vh;
}

.video-duo {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(300px, 0.9fr);
  gap: clamp(24px, 2vw, 36px);
  align-items: stretch;
  height: clamp(560px, 70vh, 820px);
}

.video-stage {
  position: relative;
  z-index: 2;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: min(100%, 1680px);
  margin: 0 auto clamp(24px, 2.7vw, 48px);
  background:
    linear-gradient(135deg, rgba(15, 81, 248, 0.18), rgba(0, 0, 0, 0.44)),
    #05050c;
  border: 1px solid rgba(241, 241, 241, 0.12);
  border-radius: var(--image-radius-lg);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.34);
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 940ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 320ms ease,
    filter 420ms ease;
}

.video-duo .video-stage {
  width: 100%;
  height: 100%;
  margin: 0;
  aspect-ratio: auto;
}

.video-stage--main {
  min-width: 0;
}

.video-stage--side {
  min-width: 0;
}

.video-stage:hover {
  border-color: rgba(0, 102, 255, 0.38);
  filter: brightness(1.04) saturate(1.04);
  transform: translateY(0) scale(1.006);
}

.video-stage__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-stage__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(5, 8, 15, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(2, 3, 8, 0.06), rgba(2, 3, 8, 0.22));
  opacity: 0.9;
  transition: opacity 320ms ease;
}

.video-stage.is-playing .video-stage__overlay {
  opacity: 0;
}

.video-stage:hover .video-stage__overlay {
  opacity: 0.72;
}

.video-stage.is-playing:hover .video-stage__overlay {
  opacity: 0;
  pointer-events: none;
}

.video-stage.is-playing .video-stage__play {
  pointer-events: none;
}

.video-stage__play {
  position: relative;
  display: grid;
  width: clamp(74px, 5.6vw, 118px);
  height: clamp(74px, 5.6vw, 118px);
  place-items: center;
  border: 1px solid rgba(241, 241, 241, 0.78);
  border-radius: 50%;
  background: rgba(5, 8, 15, 0.44);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  cursor: pointer;
  pointer-events: auto;
}

.video-stage__play::before {
  width: 0;
  height: 0;
  margin-left: 7%;
  border-top: clamp(13px, 1.05vw, 22px) solid transparent;
  border-bottom: clamp(13px, 1.05vw, 22px) solid transparent;
  border-left: clamp(20px, 1.45vw, 32px) solid var(--paper);
  content: "";
}

.video-controls {
  position: absolute;
  right: clamp(18px, 1.35vw, 28px);
  bottom: clamp(12px, 0.92vw, 18px);
  left: clamp(18px, 1.35vw, 28px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: clamp(10px, 0.8vw, 16px);
  min-height: 28px;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.video-stage:hover .video-controls,
.video-stage:focus-within .video-controls,
.video-stage.is-seeking .video-controls {
  opacity: 1;
}

.video-time {
  min-width: clamp(78px, 5.4vw, 98px);
  color: rgba(255, 255, 255, 0.96);
  font-family: "Source Han Sans SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(12px, 0.72vw, 15px);
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.56);
  white-space: nowrap;
}

.video-progress {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
  height: 26px;
  cursor: pointer;
  touch-action: none;
}

.video-progress:active {
  cursor: grabbing;
}

.video-progress::before,
.video-progress span {
  position: absolute;
  left: 0;
  height: 5px;
  border-radius: 999px;
  content: "";
}

.video-progress::before {
  right: 0;
  background: rgba(255, 255, 255, 0.32);
}

.video-progress span {
  width: var(--video-progress, 0%);
  background: rgba(255, 255, 255, 0.96);
}

.video-progress::after {
  position: absolute;
  top: 50%;
  left: var(--video-progress, 0%);
  width: clamp(12px, 0.82vw, 16px);
  height: clamp(12px, 0.82vw, 16px);
  border-radius: 999px;
  background: #fff;
  box-shadow:
    0 0 0 1px rgba(9, 12, 20, 0.2),
    0 2px 8px rgba(0, 0, 0, 0.32);
  content: "";
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.video-audio {
  display: grid;
  width: clamp(30px, 1.9vw, 38px);
  height: clamp(30px, 1.9vw, 38px);
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  padding: 0;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.video-audio:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}

.video-audio__icon {
  display: block;
  width: clamp(18px, 1.15vw, 22px);
  height: clamp(18px, 1.15vw, 22px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.video-audio__icon--off,
.video-audio.is-muted .video-audio__icon--on {
  display: none;
}

.video-audio.is-muted .video-audio__icon--off {
  display: block;
}

.showcase-gallery--video-detail {
  --intrinsic-top-height: clamp(190px, 14.5vw, 292px);
  padding-bottom: 0;
}

.showcase-gallery--video-detail .showcase-track {
  animation-duration: var(--marquee-duration, 68s);
}

.showcase-gallery--social {
  --social-top-height: clamp(266px, 21vw, 420px);
  --social-bottom-height: clamp(260px, 20.2vw, 382px);
}

.showcase-gallery--social .showcase-tile--social-portrait,
.showcase-gallery--social .showcase-tile--social-square {
  width: auto;
  aspect-ratio: var(--image-ratio, 1);
}

.showcase-gallery--social .showcase-tile--social-portrait {
  height: var(--social-top-height);
  aspect-ratio: var(--image-ratio, 1000 / 1780);
}

.showcase-gallery--social .showcase-tile--social-square {
  height: var(--social-bottom-height);
}

.amazon-showcase {
  min-height: 118vh;
  padding-top: clamp(56px, 4.3vw, 82px);
  padding-bottom: clamp(76px, 6vw, 120px);
  background: transparent;
}

.amazon-scroll-stage {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 100%;
  margin-inline: 0;
  height: clamp(620px, 74vh, 860px);
  border: 1px solid rgba(241, 241, 241, 0.12);
  border-radius: var(--image-radius);
  background: #05050c;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  cursor: zoom-in;
}

.amazon-scroll-track {
  display: grid;
  gap: 0;
  padding-bottom: 0;
  will-change: transform;
  animation: amazon-scroll-up var(--amazon-duration, 86s) linear infinite;
}

.amazon-scroll-stage:hover .amazon-scroll-track {
  animation-play-state: paused;
}

body.is-lightbox-open .amazon-scroll-track {
  animation-play-state: paused;
}

.amazon-scroll-panel {
  overflow: hidden;
  border-radius: inherit;
  line-height: 0;
}

.amazon-scroll-panel img {
  width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.03) brightness(1);
}

@keyframes amazon-scroll-up {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, calc(var(--amazon-scroll-distance, 900px) * -1), 0);
  }
}

body.is-lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(52px, 6vw, 108px);
  background:
    radial-gradient(circle at 50% 42%, rgba(15, 81, 248, 0.11), transparent 42%),
    rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.image-lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.image-lightbox__figure {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  transform: translateY(18px) scale(0.96);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.image-lightbox[aria-hidden="false"] .image-lightbox__figure {
  transform: translateY(0) scale(1);
}

.image-lightbox__image {
  display: block;
  max-width: min(86vw, 1680px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--image-radius);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.58);
}

.image-lightbox__figure--long {
  justify-items: stretch;
  max-width: min(88vw, 1280px);
}

.image-lightbox__scroll {
  overflow: auto;
  max-width: min(88vw, 1280px);
  max-height: 84vh;
  border-radius: var(--image-radius);
  background: #05050c;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.64);
}

.image-lightbox__image--long {
  width: 100%;
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: initial;
  border-radius: 0;
  box-shadow: none;
}

.image-lightbox__caption {
  position: absolute;
  bottom: -32px;
  left: 50%;
  color: rgba(241, 241, 241, 0.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.image-lightbox__close {
  position: absolute;
  top: -20px;
  right: -20px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  background: var(--acid);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(15, 81, 248, 0.42);
  cursor: pointer;
  transition:
    transform 240ms ease,
    filter 240ms ease;
}

.image-lightbox__close:hover,
.image-lightbox__close:focus-visible {
  filter: brightness(1.14);
  outline: none;
  transform: scale(1.08);
}

.thanks-screen {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(96px, 9vw, 150px) var(--page-gutter);
  overflow: hidden;
  --thanks-dot-x: 50%;
  --thanks-dot-y: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 102, 255, 0.14), transparent 25%),
    radial-gradient(circle at 18% 12%, rgba(0, 102, 255, 0.15), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(26, 75, 158, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(3, 6, 12, 0.92), rgba(1, 2, 5, 0.98));
  isolation: isolate;
}

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

.thanks-screen::before {
  z-index: 0;
  background:
    radial-gradient(circle, rgba(116, 155, 255, 0.68) 0 1.18px, transparent 1.28px) 0 0 / 13px 13px,
    radial-gradient(circle, rgba(0, 102, 255, 0.48) 0 0.95px, transparent 1.1px) 6px 6px / 13px 13px,
    #020305;
  mask: radial-gradient(circle at var(--thanks-dot-x) var(--thanks-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.86) 16%, rgba(0, 0, 0, 0.36) 32%, transparent 52%);
  -webkit-mask: radial-gradient(circle at var(--thanks-dot-x) var(--thanks-dot-y), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.86) 16%, rgba(0, 0, 0, 0.36) 32%, transparent 52%);
  mix-blend-mode: screen;
  opacity: 0;
  filter: saturate(1.22) contrast(1.1);
  transform: translate3d(0, 0, 0) scale(1.04);
  transition: opacity 420ms ease;
  animation: reactbits-dot-cloud 10s ease-in-out infinite alternate;
}

.thanks-screen::after {
  z-index: 2;
  background:
    radial-gradient(circle at 50% 48%, transparent 0 26%, rgba(0, 0, 0, 0.36) 64%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.42));
}

.thanks-screen.is-pointer-active::before {
  opacity: 0.92;
}

.thanks-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  transform-style: preserve-3d;
  perspective: 1000px;
  pointer-events: none;
}

.thanks-tile {
  --angle: 0deg;
  --radius: 36vmin;
  --w: 110px;
  --tilt: 0deg;
  --delay: 0ms;
  --orbit-duration: 34s;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(66px, var(--w), 168px);
  aspect-ratio: 1.16;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.56),
    0 0 24px rgba(0, 102, 255, 0.2);
  filter: brightness(0.56) saturate(0.72) contrast(1.22);
  opacity: 0;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateX(var(--radius))
    rotate(calc(var(--tilt) - var(--angle)))
    scale(0.78);
}

.thanks-screen.is-visible .thanks-tile {
  animation:
    thanks-tile-enter 980ms cubic-bezier(0.16, 1, 0.3, 1) var(--delay) both,
    thanks-tile-orbit var(--orbit-duration) linear calc(var(--delay) + 980ms) infinite;
}

.thanks-tile--01 {
  --angle: 202deg;
  --radius: clamp(245px, 42vmin, 430px);
  --w: 128px;
  --tilt: -17deg;
  --delay: 80ms;
  --orbit-duration: 42s;
}

.thanks-tile--02 {
  --angle: 232deg;
  --radius: clamp(210px, 34vmin, 355px);
  --w: 118px;
  --tilt: 14deg;
  --delay: 160ms;
  --orbit-duration: 34s;
}

.thanks-tile--03 {
  --angle: 266deg;
  --radius: clamp(170px, 25vmin, 285px);
  --w: 82px;
  --tilt: -9deg;
  --delay: 240ms;
  --orbit-duration: 28s;
}

.thanks-tile--04 {
  --angle: 300deg;
  --radius: clamp(176px, 27vmin, 300px);
  --w: 96px;
  --tilt: 8deg;
  --delay: 300ms;
  --orbit-duration: 30s;
}

.thanks-tile--05 {
  --angle: 330deg;
  --radius: clamp(245px, 39vmin, 420px);
  --w: 130px;
  --tilt: -13deg;
  --delay: 380ms;
  --orbit-duration: 42s;
}

.thanks-tile--06 {
  --angle: 350deg;
  --radius: clamp(360px, 61vmin, 670px);
  --w: 118px;
  --tilt: 15deg;
  --delay: 460ms;
  --orbit-duration: 58s;
}

.thanks-tile--07 {
  --angle: 154deg;
  --radius: clamp(340px, 56vmin, 610px);
  --w: 108px;
  --tilt: 11deg;
  --delay: 540ms;
  --orbit-duration: 58s;
}

.thanks-tile--08 {
  --angle: 126deg;
  --radius: clamp(245px, 38vmin, 400px);
  --w: 86px;
  --tilt: -21deg;
  --delay: 620ms;
  --orbit-duration: 42s;
}

.thanks-tile--09 {
  --angle: 88deg;
  --radius: clamp(220px, 31vmin, 350px);
  --w: 78px;
  --tilt: 12deg;
  --delay: 700ms;
  --orbit-duration: 34s;
}

.thanks-tile--10 {
  --angle: 55deg;
  --radius: clamp(190px, 28vmin, 310px);
  --w: 104px;
  --tilt: -12deg;
  --delay: 780ms;
  --orbit-duration: 30s;
}

.thanks-tile--11 {
  --angle: 36deg;
  --radius: clamp(300px, 48vmin, 530px);
  --w: 120px;
  --tilt: 16deg;
  --delay: 860ms;
  --orbit-duration: 46s;
}

.thanks-tile--12 {
  --angle: 12deg;
  --radius: clamp(400px, 64vmin, 710px);
  --w: 92px;
  --tilt: -8deg;
  --delay: 940ms;
  --orbit-duration: 62s;
}

.thanks-title {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 0.08em 0.05em 0.13em;
  overflow: visible;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #e8f0ff 38%, #9dbbff 66%, #0066ff 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--title-font);
  font-size: clamp(92px, 15vw, 252px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1.8px rgba(218, 231, 255, 0.92);
  paint-order: stroke fill;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32),
    0 22px 68px rgba(0, 0, 0, 0.58);
}

.thanks-screen.is-visible .thanks-title {
  animation:
    thanks-stroke-fill 1150ms cubic-bezier(0.16, 1, 0.3, 1) 220ms both,
    thanks-title-glitch 4.8s steps(1, end) 1.45s infinite;
}

@keyframes thanks-tile-enter {
  from {
    opacity: 0;
    filter: brightness(0.22) saturate(0.3) contrast(1.4) blur(8px);
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(var(--radius))
      rotate(calc(var(--tilt) - var(--angle) - 10deg))
      scale(0.72);
  }

  to {
    opacity: 0.82;
    filter: brightness(0.56) saturate(0.72) contrast(1.22) blur(0);
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(var(--radius))
      rotate(calc(var(--tilt) - var(--angle)))
      scale(1);
  }
}

@keyframes thanks-tile-orbit {
  from {
    opacity: 0.82;
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateX(var(--radius))
      rotate(calc(var(--tilt) - var(--angle)))
      scale(1);
  }

  to {
    opacity: 0.82;
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--angle) + 360deg))
      translateX(var(--radius))
      rotate(calc(var(--tilt) - var(--angle) - 360deg))
      scale(1);
  }
}

@keyframes thanks-stroke-fill {
  from {
    background-size: 0% 100%;
  }

  to {
    background-size: 100% 100%;
  }
}

@keyframes thanks-title-glitch {
  0%,
  82%,
  100% {
    transform: translate(0, 0);
    filter: none;
  }

  84% {
    transform: translate(-2px, 1px);
    filter: drop-shadow(6px 0 rgba(0, 102, 255, 0.42));
  }

  86% {
    transform: translate(2px, -1px);
    filter: drop-shadow(-5px 0 rgba(255, 255, 255, 0.18));
  }

  88% {
    transform: translate(0, 0);
    filter: none;
  }
}

.reveal-item,
.reveal-title {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(48px);
}

.reveal-title {
  transform: translateY(62px) scale(0.985);
}

.is-visible .reveal-item,
.is-visible.reveal-item,
.is-visible .reveal-title,
.is-visible.reveal-title {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
  transition:
    opacity 760ms ease,
    filter 760ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.profile-section .resume-item {
  opacity: 0;
  transform: translateY(24px);
}

.profile-section.is-visible .resume-item {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 260ms ease,
    border-color 260ms ease;
  transition-delay: var(--delay, 0ms);
}

@media (max-width: 1500px) {
  .hero-work-card {
    width: clamp(142px, 14.8vw, 230px);
  }

  .archive-title {
    margin-left: 0;
  }

  .archive-grid {
    grid-template-columns: minmax(300px, 0.78fr) minmax(460px, 1.4fr);
  }

  .identity-card {
    grid-template-columns: 160px 1fr;
    min-height: auto;
  }

  .portrait-frame {
    width: 160px;
  }

  .contact-list,
  .mini-block {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .eliot-hero {
    padding-top: 98px;
  }

  .eliot-hero__center {
    top: 50%;
  }

  .eliot-hero__title {
    font-size: clamp(46px, 8vw, 88px);
  }

  .eliot-hero__subtitle {
    font-size: clamp(26px, 4.1vw, 42px);
  }

  .eliot-work-strip {
    height: clamp(245px, 31vh, 320px);
  }

  .eliot-work-card__meta strong {
    font-size: 15px;
  }

  .eliot-work-card__meta em {
    font-size: 9px;
  }

  .hero-work-card--one {
    --x: -32vw;
  }

  .hero-work-card--two {
    --x: -16vw;
  }

  .hero-work-card--four {
    --x: 16vw;
  }

  .hero-work-card--five {
    --x: 32vw;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-card {
    min-height: auto;
  }

  .identity-card {
    grid-template-columns: 160px 1fr 1fr;
  }

  .contact-list,
  .mini-block {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .work-index {
    flex-direction: row;
  }

  .work-card {
    min-height: 430px;
  }

  .video-duo {
    grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
    height: clamp(460px, 58vh, 680px);
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  .archive-title {
    margin: 0 0 26px;
    font-size: clamp(54px, 11vw, 76px);
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .identity-card {
    grid-column: auto;
    grid-template-columns: 178px minmax(130px, 1fr) minmax(210px, 1.25fr);
    gap: 18px;
  }

  .portrait-frame {
    width: 178px;
  }

  .identity-copy h2 {
    font-size: 34px;
  }

  .identity-copy p {
    font-size: 20px;
  }

  .identity-copy dl div,
  .mini-block p,
  .mini-block li,
  .contact-list {
    font-size: 12px;
  }

  .contact-list {
    gap: 8px;
  }

  .contact-list li {
    grid-template-columns: 52px 1fr;
  }

  .works-title {
    font-size: clamp(54px, 11vw, 76px);
    line-height: 0.94;
  }

  .work-index {
    flex-direction: row;
    gap: 8px;
  }

  .work-card {
    min-height: 510px;
    padding: 14px;
  }

  .work-number {
    font-size: 12px;
  }

  .work-card p {
    left: 14px;
    right: 14px;
    bottom: 54px;
    font-size: 8px;
    line-height: 1.18;
  }

  .work-card h2 {
    left: 14px;
    right: 14px;
    bottom: 18px;
    font-size: 14px;
    line-height: 1.08;
  }

  .work-card a {
    top: 14px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .work-card a::before {
    font-size: 8px;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: clamp(16px, 4.8vw, 28px);
  }

  body {
    font-size: 18px;
  }

  .site-header {
    padding: 16px var(--page-gutter);
  }

  .logo {
    font-size: 17px;
  }

  .site-nav {
    max-width: calc(100vw - 34px);
    justify-self: center;
    grid-column: 1 / -1;
    order: 2;
    padding: 5px;
    font-size: 12px;
  }

  .site-nav a {
    padding: 9px 12px;
  }

  .eliot-hero {
    min-height: 100svh;
    padding: 92px var(--page-gutter) 34px;
  }

  .eliot-hero__center {
    position: absolute;
    top: 50%;
    right: auto;
    bottom: auto;
    left: 50%;
    width: min(100%, calc(100vw - 28px));
    margin: 0;
    transform: translate(-50%, -50%);
  }

  .eliot-hero__kicker {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .eliot-hero__title {
    font-size: clamp(30px, 9vw, 46px);
  }

  .eliot-hero__subtitle {
    margin-top: 8px;
    font-size: clamp(24px, 7.8vw, 32px);
  }

  .eliot-featured {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
  }

  .eliot-featured__label {
    text-align: left;
  }

  .eliot-work-strip {
    display: flex;
    gap: 14px;
    height: auto;
    padding: 0 0 12px;
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    perspective: none;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .eliot-work-strip::before {
    display: none;
  }

  .eliot-work-strip::-webkit-scrollbar {
    display: none;
  }

  .eliot-work-card {
    position: relative;
    bottom: auto;
    left: auto;
    flex: 0 0 min(64vw, 224px);
    width: auto;
    opacity: 1;
    scroll-snap-align: start;
    filter: none;
    transform: none;
  }

  .eliot-work-card__meta strong {
    font-size: 16px;
  }

  .content-effect {
    top: 34%;
    width: calc(100vw - 30px);
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.02;
  }

  .content-effect span:first-child {
    font-size: clamp(34px, 9.6vw, 52px);
  }

  .content-effect span:last-child {
    margin-top: 8px;
    font-size: clamp(36px, 10vw, 54px);
  }

  .mobile-hint {
    display: block;
  }

  .codrops_mwg img {
    width: 35vw;
    height: 35vw;
  }

  .hero-work-orbit {
    top: 55vh;
    height: clamp(220px, 35vh, 300px);
  }

  .hero-work-card {
    width: clamp(92px, 28.5vw, 140px);
    padding: 10px;
    border-radius: 15px;
  }

  .hero-work-card--one {
    --x: -31vw;
    --y: 24px;
    --r: -10deg;
    --s: 0.9;
  }

  .hero-work-card--two {
    --x: -15.5vw;
    --y: 2px;
    --r: -5deg;
    --s: 1;
  }

  .hero-work-card--three {
    --x: 0vw;
    --y: -18px;
    --s: 1.08;
  }

  .hero-work-card--four {
    --x: 15.5vw;
    --y: 2px;
    --r: 5deg;
    --s: 1;
  }

  .hero-work-card--five {
    --x: 31vw;
    --y: 24px;
    --r: 10deg;
    --s: 0.9;
  }

  .hero-work-card > p {
    margin-bottom: 5px;
    font-size: 7px;
    line-height: 1.1;
  }

  .hero-work-card > strong {
    font-size: clamp(11px, 3.2vw, 15px);
    line-height: 1.08;
  }

  .thanks-screen {
    min-height: 100svh;
    padding: 92px var(--page-gutter) 72px;
  }

  .thanks-title {
    font-size: clamp(62px, 20vw, 118px);
  }

  .thanks-tile {
    width: clamp(54px, var(--w), 116px);
    border-radius: 6px;
  }

  .thanks-tile--01 {
    --angle: 208deg;
    --radius: 43vmin;
    --w: 88px;
  }

  .thanks-tile--02 {
    --angle: 250deg;
    --radius: 34vmin;
    --w: 76px;
  }

  .thanks-tile--03,
  .thanks-tile--09 {
    display: none;
  }

  .thanks-tile--04 {
    --angle: 312deg;
    --radius: 35vmin;
    --w: 84px;
  }

  .thanks-tile--05 {
    --angle: 348deg;
    --radius: 46vmin;
    --w: 94px;
  }

  .thanks-tile--06 {
    --angle: 164deg;
    --radius: 50vmin;
    --w: 76px;
  }

  .thanks-tile--07 {
    --angle: 128deg;
    --radius: 42vmin;
    --w: 82px;
  }

  .thanks-tile--08 {
    --angle: 90deg;
    --radius: 34vmin;
    --w: 70px;
  }

  .thanks-tile--10 {
    --angle: 48deg;
    --radius: 38vmin;
    --w: 88px;
  }

  .thanks-tile--11 {
    --angle: 22deg;
    --radius: 50vmin;
    --w: 82px;
  }

  .thanks-tile--12 {
    display: none;
  }

  .portfolio-screen {
    min-height: auto;
    padding: 82px var(--page-gutter) 44px;
  }

  .screen-kicker {
    margin-bottom: 12px;
  }

  .archive-title {
    margin: 0 0 24px;
    font-size: clamp(46px, 14vw, 72px);
  }

  .works-title {
    margin-bottom: 24px;
    font-size: clamp(56px, 15vw, 92px);
    line-height: 0.92;
  }

  .identity-card,
  .resume-intro,
  .resume-trigger {
    grid-template-columns: 1fr;
  }

  .portrait-frame {
    width: min(62vw, 220px);
  }

  .resume-trigger {
    gap: 8px;
  }

  .resume-item.is-open .resume-panel {
    max-height: 460px;
    padding: 0 20px 22px;
  }

  .work-index {
    flex-direction: column;
  }

  .work-card {
    flex: 1 1 auto;
    min-height: 430px;
  }

  .work-index.is-hovering .work-card.is-dim,
  .work-index.is-hovering .work-card.is-active,
  .work-card:hover,
  .work-card:focus-within {
    flex: 1 1 auto;
  }

  .project-showcase {
    min-height: 112vh;
    padding-top: 88px;
  }

  .amazon-showcase {
    min-height: 108vh;
    padding-top: 88px;
  }

  .project-detail-head {
    gap: 14px;
    margin-bottom: 30px;
  }

  .project-detail-title {
    gap: 10px;
  }

  .project-detail-number {
    font-size: clamp(42px, 7.8vw, 56px);
  }

  .project-showcase .project-detail-title p {
    margin-bottom: 5px;
    font-size: 9px;
    letter-spacing: 0.18em;
  }

  .project-detail-title h1 {
    font-size: clamp(34px, 7.25vw, 50px);
  }

  .project-asset-count {
    padding-top: 38px;
    font-size: 10px;
  }

  .showcase-tile {
    height: clamp(210px, 42vw, 320px);
  }

  .showcase-tile--portrait {
    width: clamp(150px, 34vw, 210px);
  }

  .showcase-tile--poster {
    width: clamp(210px, 46vw, 320px);
  }

  .showcase-tile--wide,
  .showcase-tile--landscape {
    width: clamp(310px, 74vw, 520px);
  }

  .showcase-tile--landscape-wide {
    width: clamp(420px, 96vw, 720px);
  }

  .showcase-gallery--social {
    --social-top-height: clamp(248px, 62vw, 382px);
    --social-bottom-height: clamp(230px, 58vw, 340px);
  }

  .amazon-scroll-stage {
    height: clamp(520px, 72vh, 680px);
  }

  .video-duo {
    grid-template-columns: 1fr;
    height: auto;
  }

  .video-duo .video-stage {
    height: auto;
    min-height: 0;
  }

  .video-stage--main,
  .video-stage--side {
    aspect-ratio: 16 / 9;
  }

  .image-lightbox {
    padding: 46px 18px 58px;
  }

  .image-lightbox__image {
    max-width: calc(100vw - 36px);
    max-height: 74vh;
  }

  .image-lightbox__close {
    top: -16px;
    right: -10px;
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .image-lightbox__caption {
    bottom: -28px;
    font-size: 10px;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  .portfolio-screen {
    min-height: 100vh;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-title {
    margin: 0 0 26px;
    font-size: clamp(54px, 11vw, 76px);
  }

  .identity-card {
    grid-column: auto;
    grid-template-columns: 178px minmax(130px, 1fr) minmax(210px, 1.25fr);
    gap: 18px;
  }

  .portrait-frame {
    width: 178px;
  }

  .identity-copy h2 {
    font-size: 34px;
  }

  .identity-copy p {
    font-size: 20px;
  }

  .identity-copy dl div,
  .mini-block p,
  .mini-block li,
  .contact-list {
    font-size: 12px;
  }

  .contact-list {
    gap: 8px;
  }

  .contact-list li {
    grid-template-columns: 52px 1fr;
  }

  .works-title {
    font-size: clamp(54px, 11vw, 76px);
    line-height: 0.94;
  }

  .work-index {
    flex-direction: row;
    gap: 8px;
  }

  .work-card {
    flex: 1 1 0;
    min-height: 510px;
    padding: 14px;
  }

  .work-index.is-hovering .work-card.is-dim {
    flex: 0.72 1 0;
  }

  .work-index.is-hovering .work-card.is-active,
  .work-card:hover,
  .work-card:focus-within {
    flex: 1.75 1 0;
  }

  .work-number {
    font-size: 12px;
  }

  .work-card p {
    left: 14px;
    right: 14px;
    bottom: 54px;
    font-size: 8px;
    line-height: 1.18;
  }

  .work-card h2 {
    left: 14px;
    right: 14px;
    bottom: 18px;
    font-size: 14px;
    line-height: 1.08;
  }

  .work-card a {
    top: 14px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .work-card a::before {
    font-size: 8px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
