@font-face {
  font-family: "DingTalk JinBuTi";
  src: url("assets/fonts/DingTalk-JinBuTi.ttf") format("truetype");
  font-display: swap;
}

:root {
  --black: #050505;
  --ink: #111111;
  --paper: #f3f2ee;
  --white: #ffffff;
  --gray-100: #f7f7f4;
  --gray-200: #e7e5de;
  --gray-500: #8a8983;
  --gray-800: #2a2a27;
  --line-light: rgba(17, 17, 17, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --accent: #d7ff3f;
  --font-cn: "Alibaba PuHuiTi", "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-title-cn: "DingTalk JinBuTi", "钉钉进步体", var(--font-cn);
  --font-display: "Arial Narrow", "DIN Alternate", "Avenir Next Condensed", "Helvetica Neue", sans-serif;
  --spot-x: 50%;
  --spot-y: 52%;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: var(--font-cn);
  color: var(--ink);
  background:
    linear-gradient(180deg, #050505 0, #263238 78vh, #d9ddd9 104vh, var(--paper) 126vh, var(--paper) 100%);
  letter-spacing: 0;
}

body.hero-open {
  cursor: auto;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 80;
  padding: 10px 14px;
  color: var(--black);
  background: var(--accent);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-inner {
  width: min(1440px, calc(100vw - 64px));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: clamp(96px, 13vw, 168px) 0;
  overflow: clip;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1440px, calc(100vw - 64px));
  height: 1px;
  background: var(--line-light);
  transform: translateX(-50%);
}

.section-head {
  max-width: 600px;
}

.section-head.wide {
  max-width: 820px;
}

.eyebrow {
  margin: 0;
  font-family: var(--font-display);
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
  color: var(--gray-500);
}

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

h2 {
  margin-top: 16px;
  font-family: var(--font-title-cn);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 520;
  letter-spacing: 0;
}

h3 {
  font-family: var(--font-title-cn);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 520;
}

p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(17, 17, 17, 0.62);
}

.section-head > p:last-child {
  margin-top: 22px;
  max-width: 560px;
}

.title-en {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 36px);
  color: rgba(17, 17, 17, 0.34);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  cursor: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 34vh;
  background:
    linear-gradient(
      180deg,
      rgba(196, 210, 212, 0) 0%,
      rgba(196, 210, 212, 0.16) 34%,
      rgba(223, 224, 218, 0.62) 72%,
      var(--paper) 100%
    );
  pointer-events: none;
}

.hero.is-revealed {
  cursor: auto;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--spot-x) var(--spot-y),
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.02) 9%,
      rgba(0, 0, 0, 0.46) 18%,
      rgba(0, 0, 0, 0.9) 38%,
      rgba(0, 0, 0, 0.96) 100%
    );
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero.is-revealed .hero-scrim {
  opacity: 0.08;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero-reveal {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: none;
}

.hero.is-revealed .hero-reveal {
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-content: end;
  gap: 24px;
  padding: 9vh 0 10vh;
  pointer-events: none;
}

.hero-title {
  grid-column: 1 / 11;
  max-width: 1120px;
  font-family: var(--font-display);
  font-size: clamp(58px, 11vw, 132px);
  font-weight: 420;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  transition: color 0.9s ease, transform 0.9s ease;
}

.hero.is-revealed .hero-title {
  color: #fff;
  transform: translateY(-8px);
}

.hero .eyebrow {
  grid-column: 1 / 4;
  color: rgba(255, 255, 255, 0.52);
}

.hero-footer {
  grid-column: 1 / 5;
  margin-top: 10vh;
}

.hero-footer p,
.hero-note {
  color: rgba(255, 255, 255, 0.68);
}

.hero-note {
  grid-column: 8 / 13;
  align-self: end;
}

.hero-hint {
  position: absolute;
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 5vw, 56px);
  z-index: 5;
  font-family: var(--font-display);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.52);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.7s ease;
}

.hero.is-revealed .hero-hint {
  opacity: 0;
}

.timeline-section {
  height: var(--timeline-height, 360vh);
  background:
    linear-gradient(180deg, #d9ddd9 0%, #e8e8e2 14%, var(--paper) 34%, var(--paper) 100%);
}

.timeline-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: center;
}

.timeline-layout .section-head {
  position: relative;
  z-index: 2;
}

.timeline-title {
  max-width: 520px;
  font-size: clamp(26px, 2.75vw, 36px);
  line-height: 1.18;
}

.timeline-title span {
  white-space: nowrap;
}

.timeline-window {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 16px 0;
}

.timeline-window::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 44px;
  background: linear-gradient(90deg, var(--paper), rgba(243, 242, 238, 0));
  pointer-events: none;
}

.timeline-track {
  display: flex;
  gap: 24px;
  width: max-content;
  transform: translateX(var(--timeline-x, 0px));
  transition: transform 0.08s linear;
}

.time-card {
  width: min(460px, 78vw);
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.56);
}

.time-card span,
.line-item span,
.project-card span,
.ai-link span,
.tool-card span,
.library-card span {
  font-family: var(--font-display);
  color: var(--gray-500);
  font-size: 13px;
}

.time-card > span {
  display: block;
  color: rgba(17, 17, 17, 0.62);
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1;
}

.time-card h3 {
  margin-top: 56px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.35;
}

.time-card p {
  margin-top: 16px;
}

.time-card .time-tags {
  margin-top: 22px;
  color: rgba(17, 17, 17, 0.42);
  font-size: 13px;
  line-height: 1.55;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(48px, 8vw, 132px);
  align-items: center;
}

.panel-section {
  background: var(--paper);
}

#advantages {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

#advantages::before {
  display: none;
}

.advantages-layout {
  display: grid;
  grid-template-columns: minmax(520px, 0.58fr) minmax(390px, 0.42fr);
  gap: clamp(44px, 5vw, 84px);
  align-items: center;
}

.advantages-showcase {
  min-width: 0;
}

.advantages-copy {
  max-width: 560px;
  min-width: 0;
}

.advantages-showcase h2 {
  margin-top: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 1.02;
}

.advantages-title-en {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.58);
}

.advantage-list {
  margin-top: 0;
}

.advantage-item {
  padding: 0 0 28px;
  border-bottom: 1px solid var(--line-light);
}

.advantage-item + .advantage-item {
  margin-top: 30px;
}

.advantage-item h3 {
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.2;
}

.advantage-item p {
  max-width: 540px;
  margin-top: 16px;
}

.advantage-lead {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  font-weight: 650;
  color: var(--black);
}

.advantages-visual {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  margin: clamp(48px, 5vw, 72px) 0 0;
  display: grid;
  grid-template-rows: repeat(3, clamp(170px, 15vw, 224px));
  gap: 0;
}

.advantage-visual-card {
  display: block;
  width: min(72%, 520px);
  height: clamp(190px, 17vw, 244px);
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line-light);
  background: var(--paper);
  box-shadow: 0 26px 56px rgba(17, 17, 17, 0.14);
}

.visual-card-strategy {
  justify-self: center;
}

.visual-card-process {
  justify-self: center;
  margin-top: -36px;
}

.visual-card-ai {
  justify-self: center;
  margin-top: -72px;
}

.directory-section {
  background: var(--gray-100);
}

.directory-title {
  max-width: none;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  white-space: nowrap;
}

.directory-list,
.ai-link-list {
  display: grid;
  gap: 18px;
}

.directory-card,
.ai-link {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 82px;
  padding: 0 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.68);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.directory-card:nth-child(2),
.ai-link:nth-child(2) {
  transform: translateX(22px);
}

.directory-card:nth-child(3),
.ai-link:nth-child(3) {
  transform: translateX(-10px);
}

.directory-card:hover,
.ai-link:hover {
  border-color: rgba(17, 17, 17, 0.36);
  background: #fff;
}

.directory-card:hover em,
.ai-link:hover em {
  transform: translateX(6px);
}

.directory-card em,
.ai-link em {
  font-style: normal;
  transition: transform 0.35s ease;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 40px);
  margin-top: 64px;
  align-items: start;
}

.project-card {
  display: block;
}

.project-card figure {
  width: min(100%, 320px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #ddd;
}

.project-card img,
.work-card img,
.library-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.project-card:hover img,
.library-card:hover img {
  transform: scale(1.035);
}

.work-card:hover .work-image:not(.work-image-wide) img {
  transform: scale(1.065);
}

.project-card div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-light);
}

.project-card h3,
.project-card p {
  grid-column: 2;
}

.project-card p {
  margin-top: 0;
}

.project-followers {
  color: rgba(17, 17, 17, 0.42);
  font-size: 14px;
}

.case-section {
  background: var(--gray-100);
}

.case-layout,
.ai-layout,
.library-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: clamp(44px, 7vw, 108px);
  align-items: center;
}

.case-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.case-copy h2,
.ai-copy h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
}

.ai-copy h2.ai-plugin-title {
  font-size: clamp(34px, 3.5vw, 48px);
  line-height: 1.05;
  white-space: nowrap;
}

.avatar {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 50%;
  margin: 36px 0 22px;
}

.case-copy p,
.ai-copy p {
  margin-top: 16px;
}

.role {
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: var(--ink);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}

.work-card {
  margin: 0;
}

.work-image {
  display: block;
  aspect-ratio: 3 / 4.08;
  overflow: hidden;
  border-radius: 10px;
  background: var(--paper);
}

.work-image-wide {
  aspect-ratio: 4 / 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
}

.iris-work-focus img {
  object-position: center top;
  transform: scale(1.12);
}

.work-image-wide img {
  object-fit: contain;
  transform: none;
}

#qipao .work-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

#qipao .work-image-wide {
  aspect-ratio: 4 / 3;
}

#qipao .work-image-wide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.work-card figcaption {
  margin-top: 14px;
  font-size: 15px;
  color: rgba(17, 17, 17, 0.7);
}

.work-card figcaption a {
  color: inherit;
  text-decoration: none;
}

.work-card figcaption a:hover,
.work-card figcaption a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.work-card figcaption span {
  display: block;
  margin-top: 5px;
  color: rgba(17, 17, 17, 0.45);
  font-size: 13px;
}

.ai-index {
  background: #111;
  color: var(--white);
}

.ai-index::before {
  background: var(--line-dark);
}

.ai-index p,
.ai-index .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.ai-index .ai-link {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
}

.ai-index .ai-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

.ai-section {
  background: var(--paper);
}

.video-stage,
.daily-stage,
.fashion-stage {
  margin: 0;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.64);
  padding: clamp(14px, 2vw, 26px);
  overflow: hidden;
}

.video-stage video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #111;
}

.daily-stage {
  position: relative;
  min-height: 560px;
}

.daily-stage img {
  position: absolute;
  width: 62%;
  box-shadow: 0 30px 70px rgba(17, 17, 17, 0.12);
}

.daily-stage img:first-child {
  top: 34px;
  left: 34px;
}

.daily-stage img:last-child {
  right: 34px;
  bottom: 34px;
}

.fashion-stage {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 16px;
  align-items: stretch;
}

.fashion-stage img,
.fashion-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.library-section {
  background: var(--gray-100);
}

.library-stack {
  display: grid;
  gap: 18px;
}

.library-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.84fr) 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 22px 60px rgba(17, 17, 17, 0.06);
}

.library-card:nth-child(even) {
  transform: translateX(-22px);
}

.library-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.library-card p {
  margin-top: 10px;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}

.tool-card {
  min-height: 360px;
  padding: 26px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.58);
}

.tool-card h3 {
  margin-top: 42px;
}

.tool-card p {
  margin-top: 14px;
}

.tool-list {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: tool;
}

.tool-list li {
  counter-increment: tool;
}

.tool-list a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 28px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.tool-list a::before {
  content: counter(tool, decimal-leading-zero);
  color: rgba(17, 17, 17, 0.36);
  font-family: var(--font-display);
  font-size: 12px;
}

.tool-list a:hover,
.tool-list a:focus-visible {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  color: var(--white);
  background: var(--black);
}

.contact-section::before {
  background: var(--line-dark);
}

.contact-section p,
.contact-section .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.contact-card {
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(220px, 320px);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(215, 255, 63, 0.5);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.contact-info span {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0;
}

.contact-info span:first-child {
  margin-top: 0;
}

.contact-info a,
.contact-card strong {
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 420;
  line-height: 1.2;
  text-decoration: none;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.wechat-qr {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3);
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

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

@media (max-width: 920px) {
  .page-inner {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding: 88px 0;
  }

  .section::before {
    width: min(100% - 32px, 720px);
  }

  .hero {
    cursor: auto;
  }

  .hero-reveal {
    cursor: pointer;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 22px;
    padding-bottom: 92px;
  }

  .hero-title {
    font-size: clamp(48px, 16vw, 72px);
  }

  .hero-footer {
    margin-top: 0;
  }

  .hero-note {
    max-width: 320px;
  }

  .timeline-section {
    height: auto;
    padding: 88px 0;
    background: var(--paper);
  }

  .timeline-sticky {
    position: relative;
    height: auto;
    display: block;
  }

  .timeline-layout,
  .two-col,
  .advantages-layout,
  .case-layout,
  .ai-layout,
  .library-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .timeline-track {
    width: auto;
    margin-top: 42px;
    display: grid;
    transform: none !important;
  }

  .time-card {
    width: 100%;
    min-height: 0;
  }

  .time-card > span {
    font-size: 24px;
  }

  .time-card h3 {
    margin-top: 42px;
  }

  .timeline-title span {
    white-space: normal;
  }

  #advantages {
    min-height: 0;
  }

  .advantages-showcase {
    order: 2;
  }

  .advantages-copy {
    max-width: none;
    order: 1;
  }

  .advantages-visual {
    max-width: none;
    margin-top: 44px;
    grid-template-rows: repeat(3, 136px);
  }

  .advantages-showcase h2 {
    margin-top: 0;
    font-size: clamp(38px, 12vw, 56px);
  }

  .advantages-title-en {
    font-size: clamp(20px, 7vw, 30px);
  }

  .advantage-list {
    margin-top: 48px;
  }

  .advantage-item p {
    max-width: none;
  }

  .advantage-visual-card {
    width: 100%;
    height: 160px;
  }

  .visual-card-process {
    margin-top: -20px;
  }

  .visual-card-ai {
    margin-top: -40px;
  }

  .project-grid,
  .work-gallery,
  .tool-grid {
    grid-template-columns: 1fr;
  }

  #qipao .work-gallery {
    grid-template-columns: 1fr;
  }

  .directory-title {
    font-size: clamp(34px, 10vw, 48px);
    white-space: normal;
  }

  .project-card figure {
    width: 100%;
  }

  .case-copy {
    position: relative;
    top: auto;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-info a,
  .contact-card strong {
    overflow-wrap: anywhere;
  }

  .wechat-qr {
    justify-self: start;
    max-width: min(100%, 280px);
  }

  .daily-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .daily-stage img {
    position: static;
    width: 100%;
  }

  .fashion-stage {
    grid-template-columns: 1fr;
  }

  .library-card {
    grid-template-columns: 1fr;
  }

  .library-card:nth-child(even),
  .directory-card:nth-child(2),
  .directory-card:nth-child(3),
  .ai-link:nth-child(2),
  .ai-link:nth-child(3) {
    transform: none;
  }
}

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

  .hero-scrim {
    background: rgba(0, 0, 0, 0.28);
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
