:root {
  color-scheme: dark;
  --site-max: 1920px;
  --page-pad: clamp(28px, 7vw, 140px);
  --bg: #0b0d10;
  --panel: #15181d;
  --panel-strong: #1f242b;
  --text: #f4f1e8;
  --muted: #a9adb5;
  --line: rgba(244, 241, 232, 0.14);
  --cyan: #64e3ff;
  --lime: #d7ff4f;
  --amber: #ffb84d;
  --red: #ff5a4d;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 8%, rgba(100, 227, 255, 0.16), transparent 28rem),
    linear-gradient(135deg, rgba(215, 255, 79, 0.08), transparent 22rem),
    var(--bg);
  color: var(--text);
  font-family:
    "Inter", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.section-shell {
  width: min(var(--site-max), 100%);
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(var(--site-max), calc(100% - 40px));
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  pointer-events: none;
  transform: translateX(-50%);
}

.brand,
.nav-links {
  pointer-events: auto;
  border: 1px solid var(--line);
  background: rgba(11, 13, 16, 0.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.brand {
  order: 2;
  display: grid;
  width: 118px;
  height: 56px;
  place-items: center;
  padding: 9px 13px;
  border-radius: 8px;
}

.brand img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  min-height: 44px;
  padding: 4px;
  border-radius: 999px;
}

.nav-links a {
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 820px) 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 120px 0 80px;
}

.hero.section-shell {
  width: min(var(--site-max), 100%);
  max-width: var(--site-max);
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero-video-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: min(100vw, 1920px);
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  opacity: 0.46;
  filter: saturate(1.1) contrast(1.12);
  mask-image: none;
  transform: translateX(-50%) scale(1.08);
  transform-origin: center;
  will-change: transform;
}

.hero-video-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 13, 16, 0.9), rgba(11, 13, 16, 0.32) 50%, rgba(11, 13, 16, 0.7)),
    linear-gradient(to top, rgba(11, 13, 16, 0.82), transparent 52%),
    linear-gradient(to bottom, rgba(11, 13, 16, 0.48), transparent 34%);
}

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

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-size: clamp(58px, 13vw, 168px);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: clamp(24px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.08;
}

.hero-intro {
  width: min(100%, 740px);
  color: #d9d5cb;
  font-size: clamp(16px, 1.8vw, 20px);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.tag-cloud span,
.filter-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  border-radius: 999px;
}

.tag-cloud span {
  padding: 8px 13px;
  color: #ece7da;
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.director-board {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(100, 227, 255, 0.1), transparent 40%),
    linear-gradient(145deg, var(--panel), #0f1114);
  box-shadow: var(--shadow);
}

.director-board::after {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--amber), var(--red));
}

.director-board img {
  position: absolute;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.38);
  transition: transform 0.65s ease, filter 0.65s ease;
}

.board-main {
  inset: 36px 92px 54px 34px;
  width: calc(100% - 126px);
  height: calc(100% - 90px);
}

.board-side {
  right: 24px;
  width: 38%;
  height: 42%;
}

.board-side.top {
  top: 76px;
}

.board-side.bottom {
  bottom: 82px;
  object-position: top center;
}

.board-label {
  position: absolute;
  right: 18px;
  bottom: 34px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--lime);
  color: #071014;
  font-size: 12px;
  font-weight: 900;
}

.director-board:hover .board-main {
  transform: translate3d(-8px, -6px, 0) scale(1.025);
}

.director-board:hover .board-side.top {
  transform: translate3d(8px, -10px, 0) rotate(2deg);
}

.director-board:hover .board-side.bottom {
  transform: translate3d(10px, 8px, 0) rotate(-2deg);
}

.director-board:hover img {
  filter: saturate(1.08) contrast(1.05);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  width: min(100%, 720px);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.metric-strip div {
  min-width: 0;
  padding: 18px 12px;
  background: rgba(21, 24, 29, 0.82);
}

.metric-strip strong {
  display: block;
  color: var(--lime);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.metric-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.intro-band {
  position: relative;
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: #0b0d10;
}

.intro-band::before {
  display: none;
  content: none;
}

.resume-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1fr);
  gap: 48px;
  align-items: stretch;
  padding: 70px 0 36px;
}

.section-heading h2,
.footer h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.resume-identity,
.resume-content {
  border: 1px solid rgba(244, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(215, 255, 79, 0.07), transparent 36%),
    rgba(255, 255, 255, 0.03);
}

.resume-identity {
  position: relative;
  top: auto;
  align-self: stretch;
  padding: 26px;
}

.resume-avatar {
  width: 100%;
  margin: 6px 0 24px;
  overflow: hidden;
  border: 1px solid rgba(215, 255, 79, 0.22);
  border-radius: 8px;
  background: #050607;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.resume-avatar img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05) brightness(0.9);
}

.resume-identity h2,
.resume-summary h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.98;
}

.resume-role {
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.resume-tags span {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #ece7da;
  font-size: 13px;
}

.identity-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.identity-list div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 13px;
  background: rgba(11, 13, 16, 0.72);
}

.identity-list dt,
.resume-list dt {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.identity-list dd,
.resume-list dd {
  margin: 0;
  color: #d7d2c8;
  font-size: 15px;
}

.resume-content {
  display: grid;
  gap: 26px;
  padding: 34px;
}

.resume-summary p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.resume-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.resume-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  padding: 18px 20px;
  background: rgba(11, 13, 16, 0.72);
}

.software-skills {
  width: min(100%, 620px);
  padding: 18px;
  border: 1px solid rgba(244, 241, 232, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(100, 227, 255, 0.08), transparent 38%),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.software-skills:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 255, 79, 0.38);
}

.software-skills img {
  width: 100%;
  border-radius: 6px;
}

.resume-story {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 13, 16, 0.46);
}

.resume-story h3 {
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 24px;
}

.resume-story ol {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 22px;
}

.resume-story li,
.resume-story p {
  margin-bottom: 0;
  color: #d7d2c8;
  font-size: 15px;
  line-height: 1.78;
}

.resume-story p + p {
  margin-top: 12px;
}

.resume-story strong {
  color: var(--text);
}

.work {
  padding: 105px 0 48px;
}

.features-section {
  padding: 105px 0 52px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 30px;
}

.section-heading p {
  max-width: 720px;
}

.filter-bar {
  position: sticky;
  top: 86px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(11, 13, 16, 0.78);
  backdrop-filter: blur(18px);
}

.poster-stage {
  position: relative;
  width: min(100%, var(--site-max));
  margin: 8px auto 0;
  padding: 22px 0 12px;
  transform: none;
  overflow: hidden;
}

.poster-showcase {
  width: min(var(--site-max), 100%);
  margin: 0 auto;
  padding: clamp(44px, 5vw, 86px) 0 clamp(48px, 5.5vw, 92px);
  border-top: 1px solid rgba(244, 241, 232, 0.08);
  border-bottom: 1px solid rgba(244, 241, 232, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(88, 221, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #020304 0%, #090b0d 52%, #020304 100%);
}

.poster-showcase-heading {
  width: min(var(--site-max), 100%);
  margin: 0 auto 12px;
  padding: 0 var(--page-pad);
}

.poster-showcase-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6vw, 104px);
}

.poster-showcase-heading p {
  color: var(--acid);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.poster-showcase .poster-stage {
  margin-top: 10px;
  padding-top: 10px;
}

.poster-showcase .poster-carousel {
  padding-top: 34px;
  padding-bottom: 36px;
}

.poster-stage::before,
.poster-stage::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(18vw, 240px);
  pointer-events: none;
  content: "";
}

.poster-stage::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.poster-stage::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.poster-carousel {
  display: flex;
  gap: 18px;
  align-items: center;
  overflow-x: auto;
  padding: 28px var(--page-pad);
  cursor: grab;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  perspective: 900px;
}

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

.poster-carousel.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.poster-slide {
  flex: 0 0 clamp(210px, 22vw, 330px);
  height: clamp(300px, 32vw, 470px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 241, 232, 0.16);
  border-radius: 8px;
  background: #050607;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  cursor: zoom-in;
  scroll-snap-align: center;
  transform: rotateY(-7deg) scale(0.94);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
}

.poster-slide::before,
.work-card::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  content: "";
  opacity: 0;
  transition: opacity 0.28s ease;
}

.poster-slide::before {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.36), transparent 18%),
    linear-gradient(rgba(255,255,255,0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.22) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  mix-blend-mode: screen;
}

.poster-slide:nth-child(2n) {
  transform: rotateY(5deg) scale(0.96);
}

.poster-slide:nth-child(3n) {
  transform: translateY(-18px) scale(1.02);
}

.poster-slide:hover,
.poster-slide:focus-visible {
  z-index: 3;
  border-color: rgba(215, 255, 79, 0.68);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.58);
  outline: none;
  transform: translateY(-10px) rotateX(var(--rx)) rotateY(var(--ry)) scale(1.06);
}

.poster-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.poster-slide:hover img {
  filter: url("#elastic-warp") saturate(1.08) contrast(1.05);
  transform: scale(1.05);
}

.poster-slide:hover::before,
.poster-slide:focus-visible::before {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 13, 16, 0.72);
  color: var(--text);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease;
}

.carousel-nav:hover {
  background: rgba(215, 255, 79, 0.18);
  transform: translateY(-50%) scale(1.06);
}

.carousel-nav.prev {
  left: 18px;
}

.carousel-nav.next {
  right: 18px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 34px;
  overflow: auto;
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(14px);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  margin: auto;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.filter-button {
  min-height: 40px;
  padding: 9px 15px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.filter-button:hover {
  transform: translateY(-2px);
  border-color: rgba(100, 227, 255, 0.7);
}

.filter-button.active {
  color: #081014;
  border-color: var(--lime);
  background: var(--lime);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  align-items: start;
}

.work-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
  cursor: zoom-in;
  transition:
    opacity 0.32s ease,
    transform 0.35s ease,
    border-color 0.32s ease,
    filter 0.32s ease;
}

.work-card.square {
  aspect-ratio: 1;
}

.work-card.tall {
  min-height: 440px;
}

.work-card.wide {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.work-card.detail-card {
  min-height: 520px;
}

.work-card.video-card {
  grid-column: span 6;
  aspect-ratio: 16 / 9;
}

.work-card img,
.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.detail-card img {
  object-position: top center;
}

.work-card::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 54%),
    linear-gradient(135deg, rgba(100, 227, 255, 0.15), transparent 42%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.work-card {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
}

.work-card::after {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.22), transparent 20%),
    linear-gradient(rgba(255,255,255,0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  mix-blend-mode: screen;
}

.work-overlay {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  gap: 5px;
  transform: translateY(16px);
  opacity: 0;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.work-overlay span {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--lime);
  font-size: 12px;
}

.work-overlay strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.12;
}

.work-card:hover {
  z-index: 4;
  border-color: rgba(215, 255, 79, 0.72);
  transform: translateY(-8px) rotateX(var(--rx)) rotateY(var(--ry));
}

.work-card:hover::before,
.work-card:hover::after,
.work-card:hover .work-overlay {
  opacity: 1;
}

.work-card:hover .work-overlay {
  transform: translateY(0);
}

.work-card:hover img,
.work-card:hover video {
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.075);
}

.work-card:hover img {
  filter: url("#elastic-warp") saturate(1.08) contrast(1.06);
}

.work-card.is-hidden {
  display: none;
}

.features-section {
  min-height: auto;
  padding-top: 56px;
  padding-bottom: 0;
  background: #0a0a0a;
}

.features-header {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 26px;
}

.features-header div {
  max-width: 760px;
}

.features-header h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.features-header p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.6;
}

.liquid-button,
.liquid-glass {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.liquid-button {
  flex: 0 0 auto;
  padding: 11px 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
}

.liquid-button::before,
.feature-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.4px;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.42), rgba(255,255,255,0.08) 42%, rgba(255,255,255,0.38));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 20px;
  min-height: 460px;
}

.feature-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 16px;
  background: #000;
  color: #fff;
}

.feature-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.feature-card > *:not(video) {
  position: relative;
  z-index: 1;
}

.feature-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.feature-label.left {
  justify-content: flex-start;
  padding-top: 0;
}

.feature-label span {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: currentColor;
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
}

.background-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 24px 26px;
}

.career-lines {
  display: grid;
  gap: 14px;
}

.career-lines div {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.career-lines span {
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.62);
}

.career-lines p,
.career-lines em {
  margin: 0;
}

.career-lines em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.voice-card,
.reach-card {
  padding: 24px;
  background: #324444;
}

.noise-card::after {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  mix-blend-mode: soft-light;
  content: "";
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.voice-card p {
  margin: 26px 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13.5px;
}

.voice-card strong,
.voice-card em {
  display: block;
}

.voice-card em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.metric-feature {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  text-align: left;
}

.metric-feature::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.34);
}

.metric-feature div {
  position: relative;
  z-index: 2;
}

.metric-feature strong {
  display: block;
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.08;
}

.metric-feature span {
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
}

.software-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 28px;
}

.software-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.24);
}

.software-marquee {
  display: grid;
  gap: 14px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.marquee-row {
  display: flex;
  width: max-content;
  gap: 12px;
}

.marquee-row.left {
  animation: marquee-left 22s linear infinite;
}

.marquee-row.right {
  animation: marquee-right 26s linear infinite;
}

.marquee-row span {
  display: grid;
  min-width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.12);
}

.reach-card {
  min-height: 180px;
}

.reach-card a {
  display: block;
  margin-top: 18px;
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.1;
}

.arrow-link {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.phone-video-card {
  display: block;
  min-height: 180px;
}

.phone-video-card video {
  object-position: center;
}

.phone-video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 62%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 42%);
}

.video-corner-label {
  position: absolute;
  right: auto;
  top: auto;
  bottom: 18px;
  left: 20px;
  z-index: 2;
  max-width: calc(100% - 40px);
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(8px);
}

.phone-video-card .video-corner-label {
  top: auto !important;
  right: auto !important;
  bottom: 16px !important;
  left: 18px !important;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 8px 11px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38));
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.phone-video-card .video-corner-label strong {
  font-size: clamp(16px, 1.15vw, 20px);
}

.video-corner-label strong {
  display: block;
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.05;
  white-space: nowrap;
}

.video-corner-label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  white-space: nowrap;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

.foldcraft-hero {
  position: relative;
  width: min(var(--site-max), 100%);
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  color: #fff;
  font-family: "Geist", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.foldcraft-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.foldcraft-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent 48%, rgba(0, 0, 0, 0.2)),
    linear-gradient(to top, rgba(0, 0, 0, 0.58), transparent 48%);
}

.foldcraft-nav {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(24px, 4vw, 64px);
}

.foldcraft-left {
  display: flex;
  gap: 34px;
  align-items: center;
}

.foldcraft-logo {
  color: #fff;
  font-size: clamp(18px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: 0;
}

.foldcraft-links {
  display: flex;
  gap: 26px;
}

.foldcraft-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  transition: color 0.2s ease;
}

.foldcraft-links a:hover {
  color: #fff;
}

.foldcraft-talk {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
}

.foldcraft-talk.desktop {
  padding: 8px 20px;
}

.foldcraft-talk:hover {
  transform: scale(1.05);
}

.foldcraft-menu-toggle {
  position: relative;
  z-index: 50;
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.foldcraft-menu-toggle:active {
  transform: scale(0.9);
}

.foldcraft-menu-toggle svg {
  position: absolute;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.foldcraft-menu-toggle .x-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.82);
}

.foldcraft-menu-toggle.open .menu-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.82);
}

.foldcraft-menu-toggle.open .x-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.foldcraft-mobile-menu {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  height: 0;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.98);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(24px);
  transition:
    height 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.foldcraft-mobile-menu.open {
  height: 100vh;
  opacity: 1;
  pointer-events: auto;
}

.foldcraft-mobile-menu > div {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: 0 32px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
}

.foldcraft-mobile-menu.open > div {
  opacity: 1;
  transform: translateY(0);
}

.foldcraft-mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 32px;
  font-weight: 500;
}

.foldcraft-talk.mobile {
  width: max-content;
  margin-top: 6px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
}

.foldcraft-content {
  position: relative;
  z-index: 10;
  display: flex;
  height: calc(100vh - 80px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.5vw, 56px) clamp(24px, 4vw, 64px) clamp(40px, 4vw, 64px);
}

.foldcraft-top {
  max-width: 860px;
}

.foldcraft-top p {
  margin-bottom: clamp(16px, 2vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 1.2vw, 14px);
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.foldcraft-top h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(76px, 9vw, 150px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.amazon-copy-block {
  display: grid;
  gap: 18px;
  width: min(100%, 760px);
  margin-top: 72px;
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(8px);
  animation: fadeSlideUp 0.8s ease 0.58s both;
}

.amazon-copy-block strong {
  color: #fff;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.18;
}

.amazon-copy-block span {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.85;
}

.amazon-copy-block div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amazon-copy-block em {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
}

.foldcraft-bottom p {
  max-width: 520px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.7;
  animation: fadeSlideUp 0.8s ease 0.7s both;
}

.foldcraft-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  transition: transform 0.2s ease;
  animation: fadeSlideUp 0.8s ease 0.9s both;
}

.foldcraft-bottom a:hover {
  transform: scale(1.05);
}

.foldcraft-bottom svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nature-hero {
  position: relative;
  width: min(var(--site-max), 100%);
  height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background: #010101;
  color: #fff;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nature-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nature-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, transparent 0 34%, rgba(0, 0, 0, 0.2) 58%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(to bottom, rgba(1, 1, 1, 0.28), rgba(1, 1, 1, 0.08) 44%, rgba(1, 1, 1, 0.64));
}

.nature-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 44px;
  padding: 28px clamp(24px, 4vw, 64px);
}

.nature-brand {
  color: #fff;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.nature-links {
  display: flex;
  gap: 30px;
}

.nature-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nature-links a:hover {
  color: #fff;
}

.nature-menu-toggle {
  position: relative;
  z-index: 60;
  display: none;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
}

.nature-menu-toggle svg {
  position: absolute;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nature-menu-toggle .x-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.82);
}

.nature-menu-toggle.open .menu-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.82);
}

.nature-menu-toggle.open .x-icon {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.nature-mobile-menu {
  position: fixed;
  top: 64px;
  right: 16px;
  left: 16px;
  z-index: 50;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.7);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  backdrop-filter: blur(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nature-mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nature-mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.nature-content {
  position: relative;
  z-index: 10;
  display: flex;
  min-height: calc(100vh - 96px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px 70px;
  text-align: center;
}

.nature-content h2 {
  margin: 0 0 clamp(24px, 3vw, 34px);
  color: #fff;
  font-family: "Garamond", "Times New Roman", serif;
  font-size: clamp(50px, 10vw, 142px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.stagger-text {
  display: block;
}

.stagger-text span {
  display: inline-block;
  opacity: 0;
  animation: charFade 0.7s ease forwards;
}

.nature-content p {
  max-width: 460px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 300;
  line-height: 1.75;
  animation: fadeSlideUp 0.8s ease 1.6s both;
}

.nature-cta {
  padding: 14px 36px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeSlideUp 0.8s ease 2s both;
}

@keyframes charFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amazon-page {
  background: #08090b;
  color: var(--text);
  font-family: "Geist", "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

.amazon-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  width: min(var(--site-max), 100%);
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 18px var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
}

.amazon-header a {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
}

.amazon-header img {
  width: 108px;
  height: 42px;
  object-fit: contain;
}

.amazon-main {
  width: min(var(--site-max), 100%);
  margin: 0 auto;
  padding: 70px var(--page-pad) 100px;
}

.amazon-hero {
  max-width: 920px;
  margin-bottom: 44px;
}

.amazon-hero p {
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.amazon-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(58px, 10vw, 148px);
  line-height: 0.9;
}

.amazon-hero span {
  color: rgba(244, 241, 232, 0.7);
  font-size: clamp(16px, 1.5vw, 20px);
}

.amazon-gallery {
  display: grid;
  gap: 28px;
}

.amazon-gallery article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111318;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.amazon-gallery img {
  width: 100%;
  height: auto;
}

.footer {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  gap: 40px;
  align-items: end;
}

.contact-list {
  display: grid;
  gap: 12px;
  color: #d8d5ce;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    width: 94px;
    height: 46px;
    padding: 7px 10px;
  }

  .nav-links {
    max-width: calc(100vw - 126px);
    overflow-x: auto;
    border-radius: 8px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .hero,
  .resume-panel,
  .section-heading,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .resume-identity {
    position: relative;
    top: auto;
  }

  .hero {
    gap: 38px;
    padding-top: 112px;
  }

  .hero-video-bg {
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, 1920px);
    height: 100%;
    opacity: 0.34;
  }

  .gallery {
    grid-template-columns: repeat(6, 1fr);
  }

  .work-card,
  .work-card.wide,
  .work-card.video-card {
    grid-column: span 6;
  }

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

  .background-card {
    grid-row: span 2;
  }

  .foldcraft-links,
  .foldcraft-talk.desktop {
    display: none;
  }

  .foldcraft-menu-toggle {
    display: grid;
  }

  .nature-nav {
    justify-content: space-between;
  }

  .nature-brand {
    letter-spacing: 0.25em;
  }

  .nature-links {
    display: none;
  }

  .nature-menu-toggle {
    display: grid;
  }

  .nature-mobile-menu {
    display: flex;
  }
}

@media (max-width: 620px) {
  .section-shell {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    min-height: 42px;
    padding: 3px;
  }

  .nav-links a {
    padding: 7px 10px;
    font-size: 12px;
  }

  .brand {
    width: 82px;
  }

  .hero {
    min-height: auto;
    padding: 104px 0 58px;
  }

  .hero-video-bg {
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, 1920px);
    height: 100%;
    opacity: 0.26;
  }

  .hero-intro {
    font-size: 15px;
  }

  .tag-cloud span {
    font-size: 12px;
  }

  .metric-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .resume-panel {
    padding: 52px 0;
  }

  .resume-content,
  .resume-identity {
    padding: 22px;
  }

  .resume-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .identity-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .resume-story {
    padding: 18px;
  }

  .work,
  .features-section {
    padding: 70px 0;
  }

  .work {
    padding-bottom: 34px;
  }

  .features-section {
    padding-top: 38px;
  }

  .features-header {
    display: grid;
  }

  .features-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .background-card,
  .feature-card {
    min-height: 360px;
  }

  .feature-stack {
    grid-template-rows: auto;
  }

  .foldcraft-top h2 {
    font-size: clamp(54px, 18vw, 96px);
  }

  .amazon-copy-block {
    margin-top: 36px;
    padding: 20px;
  }

  .nature-content h2 {
    font-size: clamp(46px, 15vw, 72px);
  }

  .nature-content p br {
    display: none;
  }

  .filter-bar {
    top: 66px;
    gap: 8px;
    padding: 9px;
  }

  .poster-slide {
    flex-basis: 230px;
    height: 330px;
  }

  .carousel-nav {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .filter-button {
    min-height: 36px;
    padding: 8px 11px;
    font-size: 12px;
  }

  .gallery {
    gap: 14px;
  }

  .work-card,
  .work-card.tall,
  .work-card.detail-card {
    min-height: 390px;
  }

  .work-card.wide,
  .work-card.video-card {
    min-height: auto;
  }

}

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