:root {
  --ink: #070908;
  --ink-soft: #0d1110;
  --surface: #111514;
  --paper: #edf1e9;
  --muted: #8e9993;
  --line: rgba(237, 241, 233, 0.17);
  --acid: #c9ff3d;
  --cyan: #6fe8ff;
  --orange: #ff9147;
  --pad: clamp(20px, 4.3vw, 72px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 8%, rgba(111, 232, 255, 0.08), transparent 26rem),
    var(--ink);
  font-family: "Noto Sans SC", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.cursor-light {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 380px;
  height: 380px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(111, 232, 255, 0.09), transparent 68%);
  transition: opacity 250ms ease;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 86px;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--ink);
  background: var(--acid);
  font-family: "Bebas Neue", sans-serif;
  font-size: 22px;
  line-height: 1;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  position: relative;
  padding: 12px 0;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-header nav a:hover {
  color: var(--paper);
}

.site-header nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header sup {
  color: var(--acid);
  font-size: 8px;
}

.online {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.online i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
  animation: pulse 2s ease-in-out infinite;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(940px, 100svh);
  padding: 152px var(--pad) 74px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 8.333vw 8.333vw;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 88%);
}

.hero::before {
  position: absolute;
  top: 22%;
  right: 5%;
  z-index: -1;
  width: min(48vw, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(111, 232, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 120px rgba(111, 232, 255, 0.08);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 1220px;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(52vw, 760px);
  margin: 0 0 28px;
  color: var(--muted);
  font-size: clamp(9px, 0.75vw, 12px);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow span {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--acid);
}

.eyebrow b {
  color: var(--paper);
  font-weight: 500;
}

.hero h1 {
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(76px, 12.7vw, 212px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.75;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 .outline {
  position: relative;
  z-index: 3;
  margin-left: clamp(24px, 7.8vw, 130px);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(237, 241, 233, 0.82);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1fr;
  gap: 30px;
  width: min(54vw, 780px);
  margin: clamp(42px, 6vw, 90px) 0 0 clamp(24px, 7.8vw, 130px);
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 16px);
}

.hero-intro p {
  margin: 0;
}

.hero-intro .lead {
  color: var(--paper);
  font-size: clamp(17px, 1.6vw, 26px);
  font-weight: 700;
}

.primary-link {
  position: absolute;
  bottom: -82px;
  left: clamp(24px, 7.8vw, 130px);
  display: flex;
  width: 170px;
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: var(--ink);
  background: var(--acid);
  font-size: 13px;
  font-weight: 800;
  transition: width 220ms ease, background 220ms ease;
}

.primary-link:hover {
  width: 188px;
  background: var(--paper);
}

.primary-link i {
  font-size: 20px;
  font-style: normal;
}

.hero-portrait {
  position: absolute;
  right: clamp(20px, 5vw, 82px);
  bottom: 9%;
  z-index: 1;
  width: clamp(260px, 31vw, 510px);
  aspect-ratio: 1;
}

.hero-portrait figure {
  position: absolute;
  inset: 11%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(111, 232, 255, 0.35);
  border-radius: 50%;
  background: #0a1215;
  box-shadow: 0 0 60px rgba(111, 232, 255, 0.12);
}

.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% 40%;
  filter: saturate(0.88) contrast(1.06);
  transform: translateX(-8%) scale(1.28);
  transform-origin: 72% 40%;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-portrait:hover img {
  transform: translateX(-8%) scale(1.32);
}

.portrait-orbit {
  position: absolute;
  border: 1px solid rgba(237, 241, 233, 0.2);
  border-radius: 50%;
}

.orbit-one {
  inset: 4%;
  border-style: dashed;
  animation: rotate 24s linear infinite;
}

.orbit-two {
  inset: -3%;
  border-color: rgba(201, 255, 61, 0.2);
  animation: rotate 38s linear infinite reverse;
}

.orbit-one::before,
.orbit-two::before {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--acid);
  box-shadow: 0 0 12px var(--acid);
}

.portrait-meta {
  position: absolute;
  right: 0;
  bottom: 5%;
  display: grid;
  min-width: 170px;
  padding: 16px 18px;
  border-left: 3px solid var(--acid);
  background: rgba(7, 9, 8, 0.88);
  backdrop-filter: blur(12px);
}

.portrait-meta span,
.portrait-meta small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.portrait-meta strong {
  margin: 2px 0 5px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.scroll-note {
  position: absolute;
  right: var(--pad);
  bottom: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}

.scroll-note i {
  width: 1px;
  height: 48px;
  background: linear-gradient(var(--acid), transparent);
}

.ticker {
  overflow: hidden;
  padding: 20px 0;
  color: var(--ink);
  background: var(--acid);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(24px, 2.5vw, 42px);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.ticker div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 28px;
  animation: marquee 24s linear infinite;
}

.ticker i {
  font-family: serif;
  font-size: 15px;
  font-style: normal;
}

.section-shell {
  padding-right: var(--pad);
  padding-left: var(--pad);
}

.works,
.video-section {
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(110px, 13vw, 210px);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.7fr 1.55fr 0.75fr;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(48px, 7vw, 110px);
}

.section-heading > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.section-index {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--acid);
  font-family: "Bebas Neue", sans-serif;
  font-size: 20px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.8;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px, 6.3vw, 104px);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.section-heading .section-summary {
  max-width: 260px;
  justify-self: end;
  padding-left: 20px;
  border-left: 1px solid var(--acid);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 34px);
}

.work-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 280ms ease, transform 280ms ease;
}

.work-card:hover {
  border-color: rgba(237, 241, 233, 0.55);
  transform: translateY(-5px);
}

.work-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: 1.55fr 0.45fr;
}

.work-visual {
  position: relative;
  min-height: clamp(300px, 36vw, 560px);
  padding: clamp(22px, 2.8vw, 42px);
  overflow: hidden;
  isolation: isolate;
}

.work-card--wide .work-visual {
  min-height: clamp(380px, 40vw, 620px);
}

.work-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image: linear-gradient(rgba(7, 9, 8, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 9, 8, 0.14) 1px, transparent 1px);
  background-size: 34px 34px;
}

.visual-code {
  position: relative;
  z-index: 3;
  color: rgba(7, 9, 8, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.work-visual > strong {
  position: absolute;
  bottom: 10%;
  left: 7%;
  z-index: 2;
  color: var(--ink);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(65px, 8.7vw, 145px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.75;
  mix-blend-mode: multiply;
}

.work-card--wide .work-visual > strong {
  font-size: clamp(80px, 11vw, 180px);
}

.work-visual > small {
  position: absolute;
  right: 4%;
  bottom: 5%;
  color: rgba(7, 9, 8, 0.68);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.work-info {
  position: relative;
  min-height: 166px;
  padding: 24px 28px 28px;
  border-top: 1px solid var(--line);
}

.work-card--wide .work-info {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 0;
  border-left: 1px solid var(--line);
}

.work-info > span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.work-info h3 {
  margin: 36px 52px 0 0;
  font-size: clamp(22px, 2.2vw, 34px);
  letter-spacing: -0.055em;
  line-height: 1.2;
}

.work-info .arrow {
  position: absolute;
  right: 24px;
  bottom: 25px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 20px;
  font-style: normal;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.work-card:hover .arrow {
  color: var(--ink);
  background: var(--acid);
  transform: rotate(45deg);
}

.pony .work-visual {
  background: #e7b7ff;
}

.tower .work-visual {
  background: #ff774e;
}

.agemonia .work-visual {
  background: #d9f26a;
}

.flight .work-visual {
  background: #75d9ed;
}

.boba .work-visual {
  background: #f2c88f;
}

.blocks .work-visual {
  background: #75b977;
}

.pony-rings {
  position: absolute;
  top: 8%;
  right: 7%;
  width: 62%;
  aspect-ratio: 1;
}

.pony-rings i {
  position: absolute;
  inset: calc(var(--n) * 12%);
  border: 2px solid rgba(7, 9, 8, 0.2);
  border-radius: 48% 52% 65% 35%;
  transform: rotate(calc(var(--n) * 28deg));
}

.pony-rings i:nth-child(1) { --n: 0; }
.pony-rings i:nth-child(2) { --n: 1; }
.pony-rings i:nth-child(3) { --n: 2; }

.tower-stack {
  position: absolute;
  right: 13%;
  bottom: 0;
  display: flex;
  width: 35%;
  flex-direction: column;
  align-items: center;
}

.tower-stack i {
  display: block;
  width: calc(100% - var(--n) * 11%);
  height: clamp(38px, 5vw, 80px);
  border: 2px solid rgba(7, 9, 8, 0.35);
  background: rgba(237, 241, 233, 0.08);
  transform: translateX(calc((var(--n) - 2) * 4%)) rotate(calc((var(--n) - 2) * 2deg));
}

.tower-stack i:nth-child(1) { --n: 4; }
.tower-stack i:nth-child(2) { --n: 3; }
.tower-stack i:nth-child(3) { --n: 2; }
.tower-stack i:nth-child(4) { --n: 1; }
.tower-stack i:nth-child(5) { --n: 0; }

.rune {
  position: absolute;
  top: 8%;
  right: 8%;
  display: grid;
  width: clamp(170px, 25vw, 400px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(7, 9, 8, 0.35);
  border-radius: 50%;
  color: transparent;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(150px, 24vw, 400px);
  -webkit-text-stroke: 2px rgba(7, 9, 8, 0.25);
  animation: float 6s ease-in-out infinite;
}

.spirit-lines {
  position: absolute;
  top: -15%;
  right: 16%;
  width: 1px;
  height: 130%;
  background: rgba(7, 9, 8, 0.3);
  box-shadow: -60px 0 rgba(7, 9, 8, 0.11), 60px 0 rgba(7, 9, 8, 0.11);
  transform: rotate(34deg);
}

.flight-path {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 65%;
  height: 65%;
  border: 2px dashed rgba(7, 9, 8, 0.25);
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.flight-path i {
  position: absolute;
  top: 5%;
  right: 17%;
  width: 32px;
  height: 12px;
  background: var(--ink);
  clip-path: polygon(0 35%, 100% 0, 72% 50%, 100% 100%, 0 65%);
  transform: rotate(20deg);
}

.boba-cup {
  position: absolute;
  top: 10%;
  right: 11%;
  width: 29%;
  height: 52%;
  border: 3px solid rgba(7, 9, 8, 0.4);
  border-radius: 9% 9% 32% 32%;
  transform: rotate(8deg);
}

.boba-cup::before {
  position: absolute;
  top: -26%;
  left: 54%;
  width: 5px;
  height: 48%;
  content: "";
  background: rgba(7, 9, 8, 0.55);
  transform: rotate(10deg);
}

.boba-cup i,
.boba-cup b {
  position: absolute;
  bottom: 8%;
  left: 17%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 28px 8px var(--ink), 58px -2px var(--ink), 10px -24px var(--ink);
}

.boba-cup b {
  right: 16%;
  bottom: 22%;
  left: auto;
  box-shadow: -30px 6px var(--ink), -8px -22px var(--ink);
}

.pixel-field {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 42%;
  height: 84%;
  opacity: 0.45;
  background:
    linear-gradient(90deg, transparent 48%, rgba(7, 9, 8, 0.3) 48% 52%, transparent 52%),
    linear-gradient(transparent 48%, rgba(7, 9, 8, 0.3) 48% 52%, transparent 52%);
  background-size: 62px 62px;
  clip-path: polygon(10% 0, 100% 13%, 89% 100%, 0 86%);
}

.video-section {
  border-top: 1px solid var(--line);
  background: #0a0c0b;
}

.video-card {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.4fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-frame::before {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 9px;
  color: var(--ink);
  background: var(--acid);
  content: "BILIBILI PLAYER";
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  pointer-events: none;
}

.video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(28px, 3.4vw, 54px);
  border-left: 1px solid var(--line);
}

.video-copy > span {
  margin-bottom: auto;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.video-copy h3 {
  margin: 80px 0 16px;
  font-size: clamp(34px, 4vw, 66px);
  letter-spacing: -0.08em;
}

.video-copy p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.video-copy a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
}

.video-copy a i {
  color: var(--acid);
  font-size: 18px;
  font-style: normal;
}

.closing {
  position: relative;
  padding-top: clamp(110px, 14vw, 220px);
  padding-bottom: clamp(110px, 14vw, 220px);
  overflow: hidden;
  text-align: center;
}

.closing::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(80vw, 1000px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
  box-shadow: inset 0 0 100px rgba(111, 232, 255, 0.03);
}

.closing > p {
  margin: 0 0 32px;
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.closing h2 {
  margin: 0;
  font-size: clamp(48px, 7.5vw, 124px);
  letter-spacing: -0.09em;
  line-height: 1.1;
}

.closing h2 span {
  color: var(--acid);
  animation: blink 900ms steps(1) infinite;
}

.closing a {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 66px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--acid);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.closing a i {
  color: var(--acid);
  font-size: 18px;
  font-style: normal;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 700ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms),
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--delay, 0ms);
}

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

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes float {
  50% { transform: translateY(-12px) rotate(2deg); }
}

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

@keyframes blink {
  50% { opacity: 0; }
}

@media (max-width: 980px) {
  .hero {
    min-height: 900px;
  }

  .hero h1 {
    font-size: clamp(76px, 15.5vw, 150px);
  }

  .hero-portrait {
    right: 5%;
    bottom: 8%;
    width: 44vw;
  }

  .hero-intro {
    width: 58vw;
  }

  .section-heading {
    grid-template-columns: 0.65fr 1.35fr;
  }

  .section-heading .section-summary {
    display: none;
  }

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

  .video-copy {
    min-height: 320px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
  }

  .site-header nav {
    display: none;
  }

  .brand {
    gap: 9px;
    font-size: 9px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 19px;
  }

  .online {
    font-size: 8px;
  }

  .hero {
    display: block;
    min-height: 820px;
    padding-top: 118px;
  }

  .hero::before {
    top: 38%;
    right: -30%;
    width: 90vw;
  }

  .eyebrow {
    width: 100%;
    margin-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(66px, 23vw, 104px);
    line-height: 0.79;
  }

  .hero h1 .outline {
    margin-top: 8px;
    margin-left: 0;
    -webkit-text-stroke-width: 1px;
  }

  .hero-intro {
    position: relative;
    z-index: 3;
    display: block;
    width: 58%;
    margin: 38px 0 0;
  }

  .hero-intro p + p {
    margin-top: 10px;
  }

  .primary-link {
    bottom: -78px;
    left: 0;
  }

  .hero-portrait {
    right: -7%;
    bottom: 6%;
    width: 68vw;
  }

  .portrait-meta {
    right: 8%;
    min-width: 135px;
    padding: 12px 14px;
  }

  .portrait-meta strong {
    font-size: 25px;
  }

  .scroll-note {
    display: none;
  }

  .ticker {
    padding: 13px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading > div {
    margin-bottom: 28px;
  }

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

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

  .work-card,
  .work-card--wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .work-card--wide .work-visual,
  .work-visual {
    min-height: 360px;
  }

  .work-card--wide .work-info {
    min-height: 166px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-card--wide .work-visual > strong,
  .work-visual > strong {
    font-size: clamp(78px, 27vw, 112px);
  }

  .work-info h3 {
    font-size: 26px;
  }

  .video-copy {
    min-height: 290px;
  }

  .video-copy h3 {
    margin-top: 58px;
  }

  .closing h2 {
    font-size: clamp(48px, 14vw, 70px);
  }

  footer {
    display: grid;
    gap: 7px;
    min-height: 96px;
    justify-content: start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (hover: none) {
  .cursor-light {
    display: none;
  }

  .work-card:hover {
    transform: none;
  }
}

@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;
  }

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