:root {
  --paper: #f2efe6;
  --paper-deep: #e6e0d3;
  --ink: #161612;
  --ink-soft: #504f48;
  --signal: #f0441d;
  --signal-dark: #c92e0d;
  --acid: #d9ff4f;
  --line: rgba(22, 22, 18, 0.2);
  --display: "Iowan Old Style", Baskerville, "Noto Serif CJK SC", "Songti SC", STSong, serif;
  --sans: "Avenir Next", Avenir, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --page-x: clamp(1.25rem, 4vw, 4.5rem);
  --max-width: 1440px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(240, 68, 29, 0.05), transparent 23rem),
    linear-gradient(rgba(22, 22, 18, 0.025) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 100% 6px, auto;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  inset: 0;
  border: 1px solid rgba(22, 22, 18, 0.14);
  content: "";
  pointer-events: none;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

::selection {
  color: var(--paper);
  background: var(--signal);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--ink);
  font-size: 0.8rem;
  transform: translateY(-200%);
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 5px;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(100%, var(--max-width));
  height: 5.5rem;
  margin: 0 auto;
  padding: 0 var(--page-x);
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 2rem;
  height: 2rem;
  padding: 0.32rem;
  border: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
  gap: 0.13rem;
  transform: rotate(-6deg);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.brand__mark span {
  background: currentColor;
}

.brand:hover .brand__mark {
  color: var(--paper);
  background: var(--signal);
  transform: rotate(0deg);
}

.brand__name,
.nav__link,
.eyebrow,
.hero__edition,
.hero__note-label,
.project-card__number,
.project-card__status,
.project-card__kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.nav {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
}

.nav__link {
  position: relative;
  padding: 0.45rem 0;
  text-decoration: none;
}

.nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link--muted {
  color: var(--ink-soft);
}

main,
.site-footer {
  overflow: clip;
}

.hero {
  position: relative;
  width: min(100%, var(--max-width));
  min-height: calc(100svh - 5.5rem);
  margin: 0 auto;
  padding: 1.4rem var(--page-x) 0;
  isolation: isolate;
}

.hero__grid {
  position: absolute;
  z-index: -1;
  top: 0;
  right: var(--page-x);
  bottom: 0;
  left: var(--page-x);
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 25% 100%, 100% 25%;
  opacity: 0.34;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 82%, transparent);
}

.hero__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.eyebrow,
.hero__edition {
  margin: 0;
}

.eyebrow::before {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.55rem;
  background: var(--signal);
  content: "";
  vertical-align: 0.02rem;
}

.hero__edition {
  color: var(--ink-soft);
}

.hero__body {
  display: grid;
  min-height: calc(100svh - 12rem);
  padding: clamp(4rem, 9vh, 7.5rem) 0 5rem;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 18rem);
  gap: 3rem;
  align-items: end;
}

.hero__copy h1 {
  max-width: none;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.2vw, 8.6rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero__accent {
  position: relative;
  z-index: 0;
  color: var(--signal);
  font-style: italic;
  text-indent: 0.48em;
}

.hero__accent::after {
  position: absolute;
  z-index: -1;
  right: 0.02em;
  bottom: 0.06em;
  width: 1.12em;
  height: 0.16em;
  background: var(--acid);
  content: "";
  transform: rotate(-2deg);
}

.hero__intro {
  display: flex;
  max-width: 53rem;
  margin-top: clamp(2.5rem, 6vw, 5rem);
  margin-left: clamp(0rem, 12vw, 11rem);
  gap: clamp(2rem, 6vw, 6.5rem);
  align-items: flex-end;
}

.hero__intro p {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.85;
}

.text-link {
  display: inline-flex;
  min-width: max-content;
  padding-bottom: 0.65rem;
  gap: 1.25rem;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link__arrow {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover .text-link__arrow {
  transform: translateY(0.35rem);
}

.hero__note {
  display: flex;
  min-height: 12rem;
  padding: 1.2rem;
  align-self: center;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ink);
  background: rgba(242, 239, 230, 0.72);
  box-shadow: 0.6rem 0.6rem 0 var(--signal);
  transform: rotate(2deg);
  backdrop-filter: blur(8px);
}

.hero__note-index {
  align-self: flex-end;
  font-family: var(--display);
  font-size: 4.5rem;
  font-style: italic;
  line-height: 0.8;
}

.hero__note-label {
  margin: 0 0 0.5rem;
  color: var(--signal-dark);
}

.hero__note-value {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.hero__ticker {
  position: relative;
  right: 50vw;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transform: translateX(-50%);
}

.hero__ticker-track {
  display: flex;
  width: max-content;
  height: 2.6rem;
  padding-left: 1.6rem;
  gap: 1.6rem;
  align-items: center;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  animation: ticker 22s linear infinite;
}

.hero__ticker-track i {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--signal);
  border-radius: 50%;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.works {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 11rem) var(--page-x);
}

.section-heading {
  display: grid;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
  grid-template-columns: 1fr 22rem;
  gap: 3rem;
  align-items: end;
}

.section-heading h2 {
  margin: 1.25rem 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.5vw, 6.6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.section-heading__note {
  max-width: 19rem;
  margin: 0 0 0.4rem auto;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.75;
}

.project-card {
  --pointer-x: 70%;
  --pointer-y: 25%;
  position: relative;
  display: grid;
  min-height: 42rem;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(240, 68, 29, 0.3), transparent 26rem),
    #1a1915;
  grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
  text-decoration: none;
  box-shadow: 0 0 0 rgba(22, 22, 18, 0);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 300ms ease;
}

.project-card::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  border: 1px solid rgba(242, 239, 230, 0.2);
  content: "";
  pointer-events: none;
}

.project-card:hover {
  transform: translateY(-0.55rem) rotate(-0.15deg);
  box-shadow: 0.85rem 0.85rem 0 var(--signal);
}

.project-card__content {
  position: relative;
  z-index: 3;
  display: flex;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 3rem);
  flex-direction: column;
  border-right: 1px solid rgba(242, 239, 230, 0.18);
}

.project-card__meta {
  display: flex;
  justify-content: space-between;
}

.project-card__number {
  color: rgba(242, 239, 230, 0.56);
}

.project-card__status {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--acid);
  letter-spacing: 0.04em;
}

.project-card__status i {
  width: 0.46rem;
  height: 0.46rem;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 0.25rem rgba(217, 255, 79, 0.12);
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  50% { box-shadow: 0 0 0 0.5rem rgba(217, 255, 79, 0); }
}

.project-card__copy {
  margin: auto 0;
  padding: 4rem 0;
}

.project-card__kicker {
  margin: 0 0 1.4rem;
  color: var(--signal);
}

.project-card__copy h3 {
  max-width: 7ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.3rem, 5.1vw, 5.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.project-card__english {
  margin: 0.85rem 0 2.5rem;
  color: rgba(242, 239, 230, 0.45);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
}

.project-card__description {
  max-width: 31rem;
  margin: 0;
  color: rgba(242, 239, 230, 0.68);
  font-size: 0.94rem;
  line-height: 1.85;
}

.project-card__tags {
  display: flex;
  margin: 0 0 2rem;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.project-card__tags li {
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(242, 239, 230, 0.24);
  color: rgba(242, 239, 230, 0.72);
  font-size: 0.72rem;
}

.project-card__action {
  display: flex;
  padding-top: 1.1rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(242, 239, 230, 0.24);
  font-size: 0.88rem;
  font-weight: 700;
}

.project-card__arrow {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-size: 1.25rem;
  transition: color 180ms ease, background 180ms ease, transform 220ms ease;
}

.project-card:hover .project-card__arrow {
  color: var(--paper);
  background: var(--signal);
  transform: rotate(45deg);
}

.project-card__visual {
  position: relative;
  display: grid;
  min-width: 0;
  padding: clamp(2rem, 4vw, 5rem) clamp(1.5rem, 3.5vw, 4rem);
  place-items: center;
  background:
    linear-gradient(rgba(242, 239, 230, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 230, 0.05) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
}

.app-window {
  position: relative;
  z-index: 1;
  width: min(100%, 47rem);
  overflow: hidden;
  color: #1e211f;
  background: #eef0eb;
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 2rem 2.2rem 4rem rgba(0, 0, 0, 0.35);
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) rotate(-1deg);
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.project-card:hover .app-window {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) rotate(0deg) scale(1.02);
}

.app-window__bar {
  display: grid;
  height: 2.4rem;
  padding: 0 0.8rem;
  align-items: center;
  color: rgba(242, 239, 230, 0.55);
  background: #111310;
  grid-template-columns: 1fr 2fr 1fr;
  font-family: var(--mono);
  font-size: 0.52rem;
}

.app-window__bar > span {
  text-align: center;
}

.app-window__bar > b {
  justify-self: end;
  color: var(--acid);
  letter-spacing: 0.1em;
}

.app-window__dots {
  display: flex;
  gap: 0.3rem;
}

.app-window__dots i {
  width: 0.38rem;
  height: 0.38rem;
  background: #555850;
  border-radius: 50%;
}

.app-window__dots i:first-child {
  background: var(--signal);
}

.app-window__body {
  display: grid;
  min-height: 24rem;
  grid-template-columns: 3.3rem 1fr;
}

.mock-sidebar {
  display: flex;
  padding: 0.8rem 0;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  background: #20241f;
}

.mock-logo {
  display: grid;
  width: 1.7rem;
  height: 1.7rem;
  margin-bottom: 0.6rem;
  place-items: center;
  color: #1e211f;
  background: var(--acid);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
}

.mock-sidebar > i {
  position: relative;
  width: 1.05rem;
  height: 0.8rem;
  opacity: 0.38;
  border: 1px solid #fff;
  border-radius: 0.12rem;
}

.mock-sidebar > i.is-active {
  opacity: 1;
  border-color: var(--acid);
  background: rgba(217, 255, 79, 0.14);
}

.mock-sidebar > i.is-active::before {
  position: absolute;
  top: 50%;
  left: -1.15rem;
  width: 0.18rem;
  height: 1.5rem;
  background: var(--acid);
  content: "";
  transform: translateY(-50%);
}

.mock-avatar {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  margin-top: auto;
  place-items: center;
  color: #20241f;
  background: #e8e2d3;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.44rem;
  font-weight: 700;
}

.mock-main {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.8rem);
}

.mock-heading {
  display: flex;
  margin-bottom: 1.3rem;
  align-items: end;
  justify-content: space-between;
}

.mock-heading span {
  display: block;
  margin-bottom: 0.25rem;
  color: #92968c;
  font-family: var(--mono);
  font-size: 0.4rem;
  letter-spacing: 0.08em;
}

.mock-heading strong {
  font-family: var(--display);
  font-size: clamp(0.9rem, 2vw, 1.35rem);
}

.mock-button {
  padding: 0.55rem 0.7rem;
  color: #fff;
  background: #20241f;
  font-size: 0.5rem;
}

.mock-stats {
  display: grid;
  margin-bottom: 1rem;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.mock-stats div {
  position: relative;
  min-width: 0;
  padding: 0.75rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dfe1dc;
}

.mock-stats span,
.mock-stats strong {
  position: relative;
  z-index: 1;
  display: block;
}

.mock-stats span {
  color: #878b82;
  font-size: 0.46rem;
}

.mock-stats strong {
  margin-top: 0.25rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.mock-stats i {
  position: absolute;
  right: -0.25rem;
  bottom: -0.25rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0.45rem solid rgba(240, 68, 29, 0.1);
  border-radius: 50%;
}

.mock-stats div:nth-child(2) i {
  border-color: rgba(217, 255, 79, 0.48);
}

.mock-stats div:nth-child(3) i {
  border-color: rgba(30, 33, 31, 0.1);
}

.mock-panel {
  padding: 1rem;
  background: #fff;
  border: 1px solid #dfe1dc;
}

.mock-panel__top {
  display: flex;
  margin-bottom: 0.85rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.52rem;
}

.mock-panel__top span {
  color: var(--signal-dark);
  font-size: 0.42rem;
}

.mock-row {
  display: grid;
  min-height: 2.3rem;
  align-items: center;
  border-top: 1px solid #eceeea;
  grid-template-columns: minmax(0, 1fr) 5rem 3.5rem;
  font-size: 0.45rem;
}

.mock-row > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-row span i {
  display: inline-block;
  width: 0.36rem;
  height: 0.36rem;
  margin-right: 0.36rem;
  background: var(--signal);
  border-radius: 50%;
}

.mock-row b {
  justify-self: start;
  padding: 0.23rem 0.36rem;
  color: #4b5146;
  background: #edf0e9;
  font-weight: 500;
}

.mock-row em {
  color: #777c73;
  font-family: var(--mono);
  font-style: normal;
}

.mock-row--head {
  min-height: 1.4rem;
  color: #a0a49c;
  border-top: 0;
}

.project-card__stamp {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  place-content: center;
  color: var(--acid);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-align: center;
  transform: rotate(12deg);
}

.approach {
  display: grid;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--page-x) clamp(7rem, 12vw, 12rem);
  grid-template-columns: 8rem 1fr;
  gap: clamp(2rem, 6vw, 7rem);
}

.approach__rail {
  display: flex;
  min-height: 30rem;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.approach__rail span {
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.approach__content > h2 {
  max-width: 17ch;
  margin: 2rem 0 clamp(4rem, 8vw, 7rem);
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.approach__content > h2 span {
  color: var(--ink-soft);
  font-style: italic;
}

.approach__steps {
  display: grid;
  border-top: 1px solid var(--ink);
  grid-template-columns: repeat(3, 1fr);
}

.approach__steps > div {
  min-height: 14rem;
  padding: 1.2rem clamp(1rem, 2vw, 2rem) 1.2rem 0;
  border-right: 1px solid var(--line);
}

.approach__steps > div + div {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.approach__steps > div:last-child {
  border-right: 0;
}

.approach__steps span {
  display: inline-block;
  color: var(--signal);
  font-family: var(--display);
  font-size: 2.8rem;
  font-style: italic;
}

.approach__steps h3 {
  margin: 2.5rem 0 0.7rem;
  font-family: var(--display);
  font-size: 1.4rem;
}

.approach__steps p {
  max-width: 16rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.75;
}

.site-footer {
  color: var(--paper);
  background: var(--signal);
}

.site-footer__statement {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) var(--page-x);
}

.site-footer .eyebrow::before {
  background: var(--acid);
}

.site-footer__statement > p:last-child {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7.5vw, 7.5rem);
  font-style: italic;
  letter-spacing: -0.06em;
  line-height: 1;
}

.site-footer__bottom {
  display: flex;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 1.4rem var(--page-x);
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(242, 239, 230, 0.34);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 800ms ease, transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.js .hero__topline.reveal { transition-delay: 40ms; }
.js .hero__copy h1.reveal { transition-delay: 100ms; }
.js .hero__intro.reveal { transition-delay: 180ms; }
.js .hero__note.reveal { transition-delay: 260ms; }

@media (max-width: 1100px) {
  .hero__body {
    grid-template-columns: 1fr 13rem;
  }

  .hero__intro {
    margin-left: 0;
  }

  .project-card {
    min-height: 62rem;
    grid-template-columns: 1fr;
  }

  .project-card__content {
    min-height: 34rem;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 239, 230, 0.18);
  }

  .project-card__copy h3 {
    max-width: 12ch;
  }

  .project-card__visual {
    min-height: 31rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 1.15rem;
  }

  body::before {
    display: none;
  }

  .site-header {
    height: 4.5rem;
  }

  .brand__name {
    font-size: 0.64rem;
  }

  .nav__link--muted {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero__edition {
    display: none;
  }

  .hero__body {
    min-height: auto;
    padding: 5.5rem 0 4rem;
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero__copy h1 {
    max-width: 9.2ch;
    font-size: clamp(3.75rem, 17.4vw, 5.5rem);
    line-height: 0.96;
  }

  .hero__copy h1 span {
    white-space: normal;
  }

  .hero__accent {
    margin-top: 0.15em;
    font-size: 0.74em;
    white-space: nowrap;
    text-indent: 0;
  }

  .hero__intro {
    display: block;
    margin-top: 2.5rem;
  }

  .hero__intro p {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .text-link {
    margin-top: 2rem;
  }

  .hero__note {
    width: min(15rem, 78vw);
    min-height: 9.5rem;
    justify-self: end;
    box-shadow: 0.45rem 0.45rem 0 var(--signal);
  }

  .hero__note-index {
    font-size: 3.7rem;
  }

  .works {
    padding-top: 6.5rem;
    padding-bottom: 7rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  .section-heading__note {
    margin: 2rem 0 0;
  }

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

  .project-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0.45rem 0.45rem 0 var(--signal);
  }

  .project-card__content {
    min-height: 40rem;
    padding: 1.35rem;
  }

  .project-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.7rem;
  }

  .project-card__copy {
    padding: 3.5rem 0 3rem;
  }

  .project-card__copy h3 {
    max-width: 7ch;
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .project-card__description {
    font-size: 0.88rem;
  }

  .project-card__visual {
    min-height: 24rem;
    padding: 2rem 0.8rem 3rem;
  }

  .app-window {
    width: 34rem;
    max-width: none;
    transform: translateX(15%) rotate(-2deg) scale(0.72);
  }

  .project-card:hover .app-window {
    transform: translateX(12%) rotate(0deg) scale(0.74);
  }

  .project-card__stamp {
    right: 0.8rem;
    bottom: 0.8rem;
    width: 3.8rem;
    height: 3.8rem;
  }

  .approach {
    display: block;
    padding-bottom: 7rem;
  }

  .approach__rail {
    display: none;
  }

  .approach__content > h2 {
    margin-bottom: 4rem;
    font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

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

  .approach__steps > div,
  .approach__steps > div + div {
    min-height: auto;
    padding: 1.2rem 0 2rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach__steps > div:last-child {
    border-bottom: 0;
  }

  .approach__steps h3 {
    margin-top: 1rem;
  }

  .site-footer__statement {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.6rem;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
