:root {
  --ink: #090c0b;
  --ink-soft: #101513;
  --ink-elevated: #151b18;
  --paper: #f1ede3;
  --paper-deep: #e4ded1;
  --paper-line: rgba(9, 12, 11, 0.18);
  --white: #faf9f5;
  --muted: #9c9d96;
  --mist: #b9beb8;
  --acid: #c7ff36;
  --signal: #c7ff36;
  --green: #82c71a;
  --gold: #e6ca78;
  --danger: #ff806e;
  --section-gutter: clamp(18px, 3.25vw, 56px);
  --header-height: 76px;
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.22, 1.2, 0.36, 1);
  --shadow-deep: 0 32px 100px rgba(0, 0, 0, 0.35);
  --hairline-dark: rgba(255, 255, 255, 0.14);
  --hairline-paper: rgba(9, 12, 11, 0.18);
  --display: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --ui: Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: Iowan Old Style, "Times New Roman", Times, serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
  background: var(--ink);
  color: var(--white);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

[data-journey-act] { scroll-margin-top: calc(var(--header-height) + 12px); }
[data-journey-bridge] { scroll-margin-top: calc(var(--header-height) + 12px); }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--ink);
  color: var(--white);
  font-family: var(--ui);
  font-size: 16px;
  line-height: 1.45;
}

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

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: var(--section-gutter);
  background: var(--ink);
  color: var(--paper);
}

.error-page__content {
  width: min(100%, 760px);
  padding: clamp(34px, 8vw, 96px);
  border-top: 3px solid var(--acid);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow-deep);
}

.error-page__content .eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.error-page__content h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(4.5rem, 18vw, 11rem);
  font-weight: 900;
  letter-spacing: -0.085em;
  line-height: 0.72;
}

.error-page__content > p:not(.eyebrow) {
  max-width: 42ch;
  margin: 0 0 30px;
}

button,
a,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

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

svg {
  display: block;
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 3000;
  padding: 12px 16px;
  transform: translateY(-150%);
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease;
}

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

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Signature cursor ------------------------------------------------------- */
.cursor {
  --cursor-scale: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  transform: translate3d(-120px, -120px, 0) scale(var(--cursor-scale));
  pointer-events: none;
  transition: opacity 180ms ease, width 450ms var(--ease-expo), height 450ms var(--ease-expo);
  will-change: transform;
  opacity: 0;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor__dot {
  position: absolute;
  inset: 28px;
  border-radius: 999px;
  background: var(--acid);
  mix-blend-mode: difference;
  transition: inset 450ms var(--ease-expo), background 300ms ease;
}

.cursor__label {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 200ms ease, transform 400ms var(--ease-spring);
}

.cursor.is-expanded .cursor__dot {
  inset: 0;
  background: var(--paper);
  mix-blend-mode: normal;
}

.cursor.is-expanded .cursor__label {
  opacity: 1;
  transform: scale(1);
}

.has-custom-cursor a,
.has-custom-cursor button,
.has-custom-cursor [role="button"],
.has-custom-cursor [data-cursor-text] {
  cursor: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 2100;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--acid);
  will-change: transform;
}

.section-index {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  transform: translateY(-50%);
  mix-blend-mode: difference;
}

.section-index a {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 36px;
  height: 20px;
  color: white;
  text-decoration: none;
}

.section-index span {
  width: 20px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 250ms ease, transform 400ms var(--ease-expo);
}

.section-index i {
  display: block;
  width: 8px;
  height: 1px;
  margin-left: auto;
  background: currentColor;
  transition: width 400ms var(--ease-expo), opacity 250ms ease;
  opacity: 0.42;
}

.section-index a:hover span,
.section-index a.is-active span,
.section-index a:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}

.section-index a.is-active i {
  width: 26px;
  opacity: 1;
}

/* Loader ----------------------------------------------------------------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 2600;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  transition: opacity 800ms var(--ease-expo), visibility 800ms step-end;
}

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

.loader__grain,
.hero__rain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  opacity: 0.07;
  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='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain 250ms steps(2) infinite;
}

.loader__inner {
  position: relative;
  width: min(88vw, 760px);
  min-height: 420px;
}

.loader__brand {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
  text-transform: uppercase;
}

.loader__glyph {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--serif);
  font-size: clamp(8rem, 26vw, 20rem);
  font-weight: 400;
  line-height: 1;
  transform: translate(-50%, -50%);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  animation: loaderGlyph 1.35s var(--ease-smooth) both;
}

.loader__meter {
  position: absolute;
  right: 0;
  bottom: 56px;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.loader__meter span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--acid);
  animation: loaderMeter 1.3s var(--ease-expo) forwards;
}

.loader__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader__index,
.loader__label {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loader__label {
  color: var(--muted);
}

@keyframes loaderGlyph {
  0% { opacity: 0; transform: translate(-50%, -40%) rotate(-8deg) scale(1.25); }
  55% { opacity: 1; }
  100% { opacity: 1; transform: translate(-50%, -50%) rotate(0deg) scale(1); }
}

@keyframes loaderMeter {
  to { transform: scaleX(1); }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-3%, 1%); }
  75% { transform: translate(1%, 3%); }
  100% { transform: translate(-2%, -1%); }
}

/* Header + primitives ---------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1500;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--section-gutter);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  mix-blend-mode: difference;
  transition: min-height 500ms var(--ease-expo), background 400ms ease, color 400ms ease, backdrop-filter 400ms ease;
}

.site-header.is-compact {
  min-height: 58px;
  background: rgba(9, 12, 11, 0.82);
  backdrop-filter: blur(20px);
  mix-blend-mode: normal;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: inherit;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.brand__glyph {
  display: none;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
}

.site-header.is-compact .brand__word {
  display: none;
}

.site-header.is-compact .brand__glyph {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 40px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: 100% 50%;
  background: currentColor;
  transition: transform 450ms var(--ease-expo);
}

.site-nav a:hover::after,
.site-nav a.is-active::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: 0 50%;
}

.mobile-nav {
  display: none;
}

.mobile-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 9px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.mobile-nav a.is-active {
  background: var(--acid);
  color: var(--ink);
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.environment-label {
  padding: 4px 7px;
  border: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.58);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.supply-chip {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.supply-chip__label {
  margin-left: 5px;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.button {
  --button-bg: transparent;
  --button-fg: currentColor;
  --button-border: currentColor;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 50px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid var(--button-border);
  border-radius: 1px;
  background: var(--button-bg);
  color: var(--button-fg);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 450ms var(--ease-expo), border-color 450ms ease, transform 450ms var(--ease-expo);
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: translateY(102%);
  background: var(--button-fg);
  transition: transform 500ms var(--ease-expo);
}

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

.button:hover::before,
.button:focus-visible::before {
  transform: translateY(0);
}

.button:hover,
.button:focus-visible {
  color: var(--button-bg);
}

.button--paper {
  --button-bg: var(--paper);
  --button-fg: var(--ink);
  --button-border: var(--paper);
}

.button--paper:hover,
.button--paper:focus-visible {
  color: var(--paper);
}

.button--ink {
  --button-bg: var(--ink);
  --button-fg: var(--paper);
  --button-border: var(--ink);
}

.button--ink:hover,
.button--ink:focus-visible {
  color: var(--ink);
}

.button--outline,
.button--glass {
  --button-bg: transparent;
  --button-fg: var(--white);
  --button-border: rgba(255, 255, 255, 0.45);
}

.button--outline:hover,
.button--outline:focus-visible,
.button--glass:hover,
.button--glass:focus-visible {
  color: var(--ink);
}

.button--line {
  --button-bg: transparent;
  --button-fg: var(--ink);
  --button-border: rgba(9, 12, 11, 0.45);
}

.button--line:hover,
.button--line:focus-visible {
  color: var(--paper);
}

.button--compact {
  min-height: 36px;
  gap: 16px;
  padding: 0 14px;
  font-size: 9px;
}

.button--full {
  width: 100%;
}

.button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.is-disabled,
a[aria-disabled="true"] {
  opacity: 0.45;
  pointer-events: none;
  cursor: not-allowed;
}

.magnetic {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  will-change: transform;
}

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

.section-cap {
  position: absolute;
  top: 18px;
  left: var(--section-gutter);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-cap i {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}

.section-cap--light {
  color: var(--white);
}

.theme-dark,
.theme-paper {
  position: relative;
  isolation: isolate;
}

.theme-dark {
  background: var(--ink);
  color: var(--white);
}

.theme-paper {
  background: var(--paper);
  color: var(--ink);
}

/* Hero ------------------------------------------------------------------- */
.hero {
  min-height: max(2280px, 300svh);
  overflow: visible;
  background: #111815;
}

.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 760px;
  overflow: hidden;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__backdrop > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.18);
  filter: blur(24px) saturate(0.65) brightness(0.54);
  opacity: 0.8;
}

.hero__rain {
  opacity: 0.06;
  mix-blend-mode: screen;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 9, 0.72) 0%, rgba(7, 10, 9, 0.08) 43%, rgba(7, 10, 9, 0.55) 100%),
    linear-gradient(180deg, rgba(7, 10, 9, 0.22), rgba(7, 10, 9, 0.16) 55%, rgba(7, 10, 9, 0.78));
}

.hero__word {
  position: absolute;
  top: clamp(88px, 9vw, 140px);
  right: var(--section-gutter);
  left: var(--section-gutter);
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(6.6rem, 18vw, 17.5rem);
  font-weight: 900;
  letter-spacing: -0.095em;
  line-height: 0.68;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

.hero__stage {
  position: absolute;
  inset: 11% 7% 0 16%;
  z-index: 2;
  pointer-events: none;
}

.motion-capable .hero__art {
  clip-path: inset(100% 0 0 0);
}

.motion-capable .hero.is-awake .hero__art {
  clip-path: inset(0 0 0 0);
  transition-property: clip-path, filter, transform, opacity;
  transition-duration: 1100ms, 500ms, 700ms, 500ms;
  transition-timing-function: var(--ease-expo), var(--ease-expo), var(--ease-expo), ease;
}

.motion-capable .hero.is-awake .hero__art--left { transition-delay: 70ms, 0ms, 0ms, 0ms; }
.motion-capable .hero.is-awake .hero__art--center { transition-delay: 150ms, 0ms, 0ms, 0ms; }
.motion-capable .hero.is-awake .hero__art--right { transition-delay: 230ms, 0ms, 0ms, 0ms; }

.hero__art {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: var(--ink-soft);
  box-shadow: var(--shadow-deep);
  pointer-events: auto;
  transition: filter 500ms var(--ease-expo), transform 700ms var(--ease-expo), opacity 500ms ease;
  will-change: transform, translate;
}

.hero__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease-expo), filter 600ms ease;
}

.hero__art:hover img {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.hero__art--left {
  top: 26%;
  left: 0;
  width: min(27vw, 370px);
  aspect-ratio: 0.82;
  transform: rotate(-4deg);
  opacity: 0.78;
}

.hero__art--center {
  top: 16%;
  left: 30%;
  width: min(31vw, 430px);
  aspect-ratio: 0.84;
  transform: rotate(0.8deg);
}

.hero__art--right {
  top: 29%;
  left: 64%;
  width: min(25vw, 340px);
  aspect-ratio: 0.82;
  transform: rotate(4deg);
  opacity: 0.8;
}

.hero__art--satellite {
  width: clamp(112px, 12vw, 176px);
  aspect-ratio: 0.84;
  opacity: 0.62;
}

.hero__art--satellite:nth-child(4) { top: 4%; left: 3%; transform: rotate(7deg); }
.hero__art--satellite:nth-child(5) { top: 8%; left: 79%; transform: rotate(-6deg); }
.hero__art--satellite:nth-child(6) { top: 62%; left: 8%; transform: rotate(5deg); }
.hero__art--satellite:nth-child(7) { top: 69%; left: 27%; transform: rotate(-8deg); }
.hero__art--satellite:nth-child(8) { top: 60%; left: 48%; transform: rotate(6deg); }
.hero__art--satellite:nth-child(9) { top: 66%; left: 75%; transform: rotate(-5deg); }
.hero__art--satellite:nth-child(10) { top: 7%; left: 20%; transform: rotate(-9deg); }
.hero__art--satellite:nth-child(11) { top: 12%; left: 58%; transform: rotate(8deg); }
.hero__art--satellite:nth-child(12) { top: 50%; left: 88%; transform: rotate(4deg); }

.hero__art.is-cleared {
  opacity: 0;
  transform: translate3d(var(--clear-x, 0), var(--clear-y, -18vh), 0) rotate(var(--clear-rotate, 0deg)) scale(0.72);
  pointer-events: none;
}

.hero__art.is-active {
  z-index: 4;
}

.hero[data-phase="focus"] .hero__art.is-active {
  transform: translate3d(-5vw, -2vh, 0) rotate(0deg) scale(1.08);
}

.hero__resolution {
  position: absolute;
  left: var(--section-gutter);
  bottom: 14vh;
  z-index: 5;
  max-width: 12ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 6.5rem);
  line-height: 0.92;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 800ms var(--ease-expo);
  pointer-events: none;
}

.hero[data-phase="focus"] .hero__resolution {
  opacity: 1;
  transform: translateY(0);
}

.hero[data-phase="focus"] .hero__copy,
.hero[data-phase="focus"] .hero__network,
.hero[data-phase="focus"] .hero__supply {
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.hero__stage:hover .hero__art:not(:hover) {
  filter: brightness(0.72) saturate(0.55);
}

.hero__token {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 7px;
  background: rgba(9, 12, 11, 0.82);
  color: white;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.hero__copy {
  position: absolute;
  top: 44%;
  right: var(--section-gutter);
  z-index: 4;
  width: min(31vw, 410px);
}

.hero__copy h1 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.2vw, 4.6rem);
  font-weight: 760;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero__copy p {
  max-width: 360px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__network {
  position: absolute;
  bottom: 25px;
  left: var(--section-gutter);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__network i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
}

.hero__network span + span::before {
  content: "·";
  margin-right: 11px;
  opacity: 0.45;
}

.hero__supply {
  position: absolute;
  top: 90px;
  right: var(--section-gutter);
  z-index: 4;
  margin: 0;
  text-align: right;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.hero__supply small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  right: 50%;
  bottom: 20px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(50%);
}

.hero__scroll i {
  width: 1px;
  height: 28px;
  background: currentColor;
  transform-origin: 50% 0;
  animation: scrollLine 1.8s var(--ease-smooth) infinite;
}

.hero__kanji {
  position: absolute;
  right: -0.06em;
  bottom: 5%;
  z-index: 1;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(8rem, 16vw, 16rem);
  line-height: 0.8;
  writing-mode: vertical-rl;
  pointer-events: none;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* Marquee ---------------------------------------------------------------- */
.marquee {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid;
  border-bottom: 1px solid;
  white-space: nowrap;
}

.marquee--dark {
  border-color: rgba(255, 255, 255, 0.13);
  background: var(--ink);
  color: var(--white);
}

.marquee--paper {
  border-color: var(--paper-line);
  background: var(--paper);
  color: var(--ink);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  min-width: 200%;
  padding: 15px 0;
  animation: marqueeMove 30s linear infinite;
  will-change: transform;
}

.marquee__track span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.marquee__track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

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

/* Manifesto -------------------------------------------------------------- */
.manifesto {
  display: grid;
  grid-template-columns: 64px minmax(0, 0.9fr) minmax(360px, 0.8fr);
  min-height: 860px;
  padding: 112px var(--section-gutter) 80px;
  border-bottom: 1px solid var(--paper-line);
  overflow: hidden;
}

.manifesto__rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 34px;
  padding-top: 120px;
  border-right: 1px solid var(--paper-line);
  color: rgba(9, 12, 11, 0.34);
  font-size: 10px;
}

.reading-eye {
  position: relative;
  display: grid;
  place-items: center;
  width: 32px;
  height: 19px;
  border: 1px solid var(--ink);
  border-radius: 80% 0 80% 0;
  transform: rotate(45deg);
  background: var(--paper);
  will-change: transform;
}

.reading-eye i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.manifesto__copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 0 clamp(36px, 6vw, 100px);
}

.manifesto__glyph {
  margin: 0 0 60px;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.18em;
}

.manifesto h2 {
  max-width: 780px;
  margin: 0 0 74px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6vw, 7rem);
  font-weight: 720;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.manifesto__statements {
  display: grid;
  gap: 25px;
}

.manifesto__statements p {
  display: grid;
  grid-template-columns: 32px auto;
  align-items: baseline;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.manifesto__statements p span {
  font-family: var(--ui);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.45;
}

.manifesto__portrait {
  position: relative;
  z-index: 2;
  align-self: end;
  height: min(72vw, 720px);
  min-height: 540px;
  overflow: hidden;
  border-left: 1px solid var(--paper-line);
}

.manifesto__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 1.2s var(--ease-expo);
}

.manifesto__portrait:hover img {
  transform: scale(1.08);
}

.manifesto__portrait figcaption,
.activity__portrait figcaption,
.finale__art figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(9, 12, 11, 0.78);
  color: white;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.manifesto__oversize {
  position: absolute;
  right: -0.08em;
  top: 6%;
  z-index: 0;
  margin: 0;
  color: rgba(9, 12, 11, 0.065);
  font-family: var(--serif);
  font-size: clamp(13rem, 29vw, 31rem);
  line-height: 0.55;
  pointer-events: none;
}

/* Collection ------------------------------------------------------------- */
.collection {
  min-height: 960px;
  padding: 108px var(--section-gutter) 70px;
  overflow: hidden;
}

.collection::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 70% 25%, rgba(199, 255, 54, 0.05), transparent 24%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
}

.collection__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.collection__intro h2 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 6.5rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.collection__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.collection-canvas {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  min-height: 590px;
  border: 1px solid var(--hairline-dark);
  background: rgba(6, 9, 8, 0.86);
  box-shadow: var(--shadow-deep);
}

.collection__filters {
  display: flex;
  flex-direction: column;
  padding: 12px;
  border-right: 1px solid var(--hairline-dark);
}

.collection__filters button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 350ms ease, color 350ms ease, padding 450ms var(--ease-expo);
}

.collection__filters button b {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 600;
}

.collection__filters button:hover,
.collection__filters button:focus-visible,
.collection__filters button.is-active {
  padding-left: 18px;
  background: rgba(199, 255, 54, 0.12);
  color: var(--acid);
}

.collection__stage {
  position: relative;
  min-width: 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.collection__stage.is-dragging {
  cursor: grabbing;
}

.collection__track {
  --gallery-x: 0px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 230px));
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding: 28px 34px 30px;
  transform: translate3d(var(--gallery-x), 0, 0);
  transition: filter 500ms ease;
  will-change: transform;
}

.art-card {
  --card-rotate: 0deg;
  --card-y: 0px;
  --field-x: 0px;
  --field-y: 0px;
  --proximity-x: 0px;
  --proximity-y: 0px;
  --field-scale: 1;
  position: relative;
  width: 220px;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #171b19;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  transition: opacity 500ms ease, filter 500ms ease, transform 600ms var(--ease-expo);
  transform: translate3d(var(--field-x), calc(var(--card-y) + var(--field-y)), 0) rotate(var(--card-rotate)) scale(var(--field-scale));
}

.art-card--a { --card-rotate: -2.6deg; --card-y: 5px; }
.art-card--b { --card-rotate: 1.8deg; --card-y: 20px; }
.art-card--c { --card-rotate: -1deg; --card-y: -1px; }
.art-card--d { --card-rotate: 2.8deg; --card-y: 16px; }
.art-card--e { --card-rotate: -2deg; --card-y: 3px; }
.art-card--f { --card-rotate: 1.2deg; --card-y: 24px; }
.art-card--g { --card-rotate: 2deg; --card-y: -9px; }
.art-card--h { --card-rotate: -1.7deg; --card-y: 12px; }
.art-card--i { --card-rotate: 2.4deg; --card-y: -4px; }
.art-card--j { --card-rotate: -2.3deg; --card-y: 15px; }
.art-card--k { --card-rotate: 1.5deg; --card-y: 0px; }
.art-card--l { --card-rotate: -1deg; --card-y: 22px; }

.art-card.is-related { --field-scale: 1.035; z-index: 2; }
.art-card.is-unrelated { --field-scale: 0.9; }
.art-card[data-proximity="near"] { z-index: 5; filter: saturate(1.08) contrast(1.03); }

.art-card:hover,
.art-card:focus-within {
  z-index: 4;
  transform: rotate(0deg) translateY(-10px) scale(1.055);
}

.art-card.is-muted {
  opacity: 0.16;
  filter: grayscale(1);
}

.art-card button {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: white;
  cursor: pointer;
}

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  transform: translate3d(var(--proximity-x), var(--proximity-y), 0) scale(var(--image-scale, 1));
  transition: transform 850ms var(--ease-expo), filter 500ms ease;
}

.art-card:hover img,
.art-card:focus-within img {
  --image-scale: 1.06;
}

.art-card__caption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  pointer-events: none;
  left: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 9px;
  background: rgba(6, 9, 8, 0.78);
  color: white;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.art-card__caption b {
  font-size: 9px;
}

.art-card__caption span {
  color: rgba(255, 255, 255, 0.55);
}

.gallery-cursor {
  position: absolute;
  z-index: 10;
  display: none;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease, transform 80ms linear;
  will-change: transform;
}

.gallery-cursor.is-visible {
  display: grid;
  opacity: 1;
}

.collection__drag-hint {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}


/* Featured artwork stage ------------------------------------------------- */
.artwork-stage {
  --signal-focal-x: 50%;
  --signal-focal-y: 50%;
  --signal-focal-scale: 1;
  position: relative;
  min-height: 100svh;
  padding: 94px var(--section-gutter) 58px;
  overflow: visible;
  isolation: isolate;
}

.artwork-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 42% 45%, color-mix(in srgb, var(--signal-palette-2, var(--acid)) 14%, transparent), transparent 32%),
    var(--ink);
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.artwork-stage::after {
  content: "";
  position: absolute;
  right: 12vw;
  bottom: -30vw;
  z-index: -1;
  width: 42vw;
  aspect-ratio: 1;
  border: 1px solid rgba(199, 255, 54, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(199, 255, 54, 0.018), 0 0 0 17vw rgba(199, 255, 54, 0.012);
  pointer-events: none;
}

.artwork-stage__shell {
  display: grid;
  grid-template-columns: 92px minmax(0, 1.5fr) minmax(330px, 0.64fr);
  min-height: min(760px, calc(100svh - 152px));
  border: 1px solid var(--hairline-dark);
  background: rgba(6, 9, 8, 0.9);
  box-shadow: var(--shadow-deep);
  align-items: start;
}

.artwork-stage__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  padding: 58px 10px 12px;
  overflow-y: auto;
  border-right: 1px solid var(--hairline-dark);
  scrollbar-width: none;
  position: sticky;
  top: 72px;
  max-height: calc(100svh - 86px);
}

.artwork-stage__thumbs::-webkit-scrollbar {
  display: none;
}

.artwork-stage__thumb {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--ink-soft);
  color: white;
  cursor: pointer;
  transition: border-color 350ms ease, transform 550ms var(--ease-expo), opacity 350ms ease;
}

.artwork-stage__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 350ms ease;
}

.artwork-stage__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.76);
  transition: filter 450ms ease, transform 700ms var(--ease-expo);
}

.artwork-stage__thumb span {
  position: absolute;
  right: 5px;
  bottom: 4px;
  padding: 3px 5px;
  background: rgba(9, 12, 11, 0.74);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.artwork-stage__thumb:hover,
.artwork-stage__thumb:focus-visible {
  z-index: 2;
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.58);
}

.artwork-stage__thumb:hover img,
.artwork-stage__thumb:focus-visible img,
.artwork-stage__thumb.is-active img {
  filter: saturate(1) brightness(1);
  transform: scale(1.055);
}

.artwork-stage__thumb.is-active {
  transform: translateX(4px);
  border-color: var(--acid);
}

.artwork-stage__thumb.is-active::after {
  border-color: var(--acid);
}

.artwork-stage__media {
  position: sticky;
  top: 72px;
  min-width: 0;
  height: calc(100svh - 86px);
  min-height: 620px;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--hairline-dark);
  background: #111714;
}

.artwork-stage__image-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.artwork-stage__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 11, 0.16), transparent 30%, transparent 68%, rgba(9, 12, 11, 0.55)),
    linear-gradient(180deg, rgba(9, 12, 11, 0.12), transparent 30%, transparent 72%, rgba(9, 12, 11, 0.44));
  pointer-events: none;
}

.artwork-stage__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--signal-focal-x) var(--signal-focal-y);
  transform: scale(var(--signal-focal-scale));
  transition: transform 1.2s var(--ease-expo), filter 600ms ease;
}

.artwork-stage__media:hover .artwork-stage__image-frame img {
  filter: saturate(1.04) contrast(1.02);
}

.artwork-stage__media-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 25% 25%;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.artwork-stage__watermark {
  position: absolute;
  right: -0.03em;
  bottom: -0.22em;
  margin: 0;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(12rem, 22vw, 26rem);
  line-height: 1;
  pointer-events: none;
}

.artwork-stage__media-meta {
  position: absolute;
  top: 20px;
  right: 20px;
  left: 20px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.artwork-stage__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(9, 12, 11, 0.46);
  color: white;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 280ms ease, color 280ms ease, border-color 280ms ease, scale 400ms var(--ease-expo);
}

.artwork-stage__arrow:hover,
.artwork-stage__arrow:focus-visible {
  border-color: var(--acid);
  background: var(--acid);
  color: var(--ink);
  scale: 1.08;
}

.artwork-stage__arrow--prev {
  left: 18px;
}

.artwork-stage__arrow--next {
  right: 18px;
}

.artwork-stage__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 62px 32px 28px;
  overflow: visible;
  background: linear-gradient(180deg, rgba(18, 24, 21, 0.96), rgba(8, 11, 10, 0.98));
}

.artwork-stage__details-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--hairline-dark);
}

.artwork-stage__details-head p,
.artwork-stage__details-head span,
.artwork-stage__trait-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.artwork-stage__details h2 {
  margin: 30px 0 18px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.15vw, 6.5rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.86;
}

.artwork-stage__description {
  max-width: 34ch;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.6;
}

.signal-chapters {
  display: grid;
  margin: 8px 0 30px;
  border-top: 1px solid var(--hairline-dark);
}

.signal-chapter {
  display: grid;
  align-content: center;
  min-height: 52svh;
  padding: 34px 0;
  border-bottom: 1px solid var(--hairline-dark);
  opacity: 0.34;
  transition: opacity 420ms ease;
}

.signal-chapter.is-active { opacity: 1; }

.signal-chapter > [data-trait-activate] {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px 12px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  text-align: left;
  cursor: pointer;
}

.signal-chapter > [data-trait-activate] span,
.signal-chapter > [data-trait-activate] small {
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-chapter > [data-trait-activate] strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.2vw, 5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.signal-chapter > [data-trait-activate] small {
  grid-column: 2;
  max-width: 28ch;
  line-height: 1.6;
}

.signal-related {
  display: flex;
  gap: 9px;
  margin: 24px 0 0 40px;
}

.signal-related button {
  width: 62px;
  aspect-ratio: 1;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: var(--ink-soft);
  cursor: pointer;
  transform: translateY(12px) scale(0.86);
  opacity: 0;
  transition: transform 520ms var(--ease-expo), opacity 320ms ease, border-color 250ms ease;
}

.signal-chapter.is-active .signal-related button {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.signal-chapter.is-active .signal-related button:nth-child(2) { transition-delay: 55ms; }
.signal-chapter.is-active .signal-related button:nth-child(3) { transition-delay: 110ms; }
.signal-related button:hover,
.signal-related button:focus-visible { border-color: var(--acid); transform: translateY(-3px) scale(1.05); }
.signal-related img { width: 100%; height: 100%; object-fit: cover; }

.artwork-stage__trait-label {
  padding: 17px 0 10px;
  border-top: 1px solid var(--hairline-dark);
}

.artwork-stage__traits {
  display: grid;
  margin: 0 0 24px;
  max-height: 212px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.artwork-stage__traits > div {
  display: grid;
  grid-template-columns: minmax(82px, 0.48fr) 1fr;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.artwork-stage__traits dt,
.artwork-stage__traits dd {
  margin: 0;
  font-size: 7px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.artwork-stage__traits dt {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.artwork-stage__traits dd {
  color: rgba(255, 255, 255, 0.82);
}

.artwork-stage__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.artwork-stage__utilities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.artwork-stage__utilities button {
  min-height: 38px;
  border: 1px solid var(--hairline-dark);
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 250ms ease, color 250ms ease, background 250ms ease;
}

.artwork-stage__utilities button:hover,
.artwork-stage__utilities button:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.055);
  color: white;
}

.artwork-stage__count {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 22px 0 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.artwork-stage__count i {
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.02em;
}

.artwork-stage.is-changing .artwork-stage__image-frame img {
  animation: featuredArtworkSwap 760ms var(--ease-expo) both;
}

.artwork-stage.is-changing .artwork-stage__details h2,
.artwork-stage.is-changing .artwork-stage__description,
.artwork-stage.is-changing .artwork-stage__traits {
  animation: featuredDetailsSwap 580ms var(--ease-expo) both;
}

@keyframes featuredArtworkSwap {
  0% { opacity: 0.2; transform: scale(1.1) translateY(18px); filter: blur(12px); }
  100% { opacity: 1; transform: scale(1.015) translateY(0); filter: blur(0); }
}

@keyframes featuredDetailsSwap {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Provenance ------------------------------------------------------------- */
.provenance {
  min-height: 820px;
  padding: 110px var(--section-gutter) 60px;
  overflow: hidden;
}

.provenance__headline {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 70px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--paper-line);
}

.provenance__headline h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7vw, 8rem);
  font-weight: 740;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.provenance__headline p {
  max-width: 440px;
  margin: 0 0 8px;
  color: rgba(9, 12, 11, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.provenance-peel {
  position: relative;
  min-height: 650px;
  margin: 46px 0 38px;
  perspective: 1400px;
}

.provenance-layer {
  position: absolute;
  top: 42px;
  left: 50%;
  display: grid;
  align-content: space-between;
  gap: 18px;
  width: min(46vw, 610px);
  min-height: 480px;
  padding: 26px;
  border: 1px solid rgba(9, 12, 11, 0.24);
  background: #e8e1d2;
  box-shadow: 0 22px 55px rgba(31, 27, 20, 0.18);
  transform: translateX(-50%);
  transition: transform 800ms var(--ease-expo), filter 500ms ease;
}

.provenance-layer:nth-child(2) { z-index: 4; transform: translateX(calc(-50% - 18vw)) rotate(-4deg); }
.provenance-layer:nth-child(3) { z-index: 3; transform: translateX(calc(-50% - 9vw)) rotate(-2deg); }
.provenance-layer:nth-child(4) { z-index: 2; transform: translateX(calc(-50% + 10vw)) rotate(2deg); }
.provenance-layer:nth-child(5) { z-index: 1; transform: translateX(calc(-50% + 19vw)) rotate(4deg); }
.provenance-layer--art { z-index: 5; padding: 14px; background: var(--ink); color: white; }

.provenance-layer > span,
.provenance-layer > small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provenance-layer > small { color: rgba(9, 12, 11, 0.52); line-height: 1.6; }
.provenance-layer code { overflow-wrap: anywhere; font-family: var(--mono); font-size: 12px; line-height: 1.7; }
.provenance-layer > button { justify-self: start; padding: 10px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; font-size: 8px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.provenance-layer figure { position: relative; height: 390px; margin: 0; overflow: hidden; }
.provenance-layer figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}
.provenance-layer--art > strong { font-family: var(--display); font-size: clamp(2rem, 4vw, 4.5rem); letter-spacing: -0.06em; }

.provenance-peel:hover .provenance-layer:nth-child(2),
.provenance-peel:focus-within .provenance-layer:nth-child(2) { transform: translateX(calc(-50% - 22vw)) rotate(-5deg); }
.provenance-peel:hover .provenance-layer:nth-child(5),
.provenance-peel:focus-within .provenance-layer:nth-child(5) { transform: translateX(calc(-50% + 23vw)) rotate(5deg); }

.provenance__flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  gap: 6px;
  margin: 46px 0 34px;
}

.provenance-node {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  min-height: 220px;
  padding: 14px;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.21);
}

.provenance-node > span,
.provenance-node > small {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.provenance-node > small {
  color: rgba(9, 12, 11, 0.45);
}

.provenance-node img {
  width: 100%;
  height: 146px;
  object-fit: cover;
  filter: saturate(0.75);
}

.roots-mark {
  align-self: center;
  font-family: "Brush Script MT", cursive;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-7deg);
}

.provenance-node__code,
.provenance-node__chain {
  display: grid;
  place-items: center;
  min-height: 146px;
  border: 1px solid var(--paper-line);
  font-family: var(--display);
  font-size: clamp(1rem, 1.7vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.provenance-node__chain {
  width: 74px;
  height: 74px;
  min-height: auto;
  align-self: center;
  justify-self: center;
  transform: rotate(45deg);
  background: #2d4e88;
  color: white;
}

.provenance-node__chain--rh {
  border-radius: 50%;
  transform: none;
  background: var(--green);
  color: var(--ink);
}

.provenance-arrow {
  position: relative;
  height: 1px;
  background: rgba(9, 12, 11, 0.45);
}

.provenance-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translateY(-50%) rotate(45deg);
}

.provenance__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.provenance__legal {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(9, 12, 11, 0.64);
  font-size: 10px;
  line-height: 1.5;
}

/* Mint ------------------------------------------------------------------- */
.mint {
  display: grid;
  grid-template-columns: 0.75fr 1.05fr 0.9fr;
  grid-template-rows: auto 1fr;
  min-height: 900px;
  padding: 118px var(--section-gutter) 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--hairline-dark);
}

.mint::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 58% 50%, rgba(230, 202, 120, 0.09), transparent 34%),
    linear-gradient(90deg, transparent 0 33.33%, rgba(255, 255, 255, 0.04) 33.33% 33.42%, transparent 33.42% 72%, rgba(255, 255, 255, 0.04) 72% 72.08%, transparent 72.08%);
}

.mint__intro {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  padding-right: 40px;
}

.mint__intro h2 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.8vw, 7rem);
  font-weight: 740;
  letter-spacing: -0.075em;
  line-height: 0.88;
  text-transform: uppercase;
}

.mint__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mint__intro .mint__transition-copy {
  max-width: 29ch;
  margin: 0 0 30px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-transform: none;
}

.mint__intro strong {
  color: var(--white);
  font-size: 18px;
}

.mint__visual {
  position: relative;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.mint__halo {
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 202, 120, 0.22), transparent 62%);
  animation: mintHalo 4.8s ease-in-out infinite;
}

.mint__halo i {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(230, 202, 120, 0.24);
  border-radius: 50%;
}

.mint__halo i:nth-child(2) { inset: 23%; }
.mint__halo i:nth-child(3) { inset: 36%; }

@keyframes mintHalo {
  0%, 100% { transform: scale(0.96); opacity: 0.72; }
  50% { transform: scale(1.04); opacity: 1; }
}

.mint__stack {
  --quantity-progress: 0.1;
  position: relative;
  z-index: 2;
  width: min(23vw, 310px);
  aspect-ratio: 0.78;
  perspective: 900px;
}

.mint-card,
.mint-card__veil {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 202, 120, 0.45);
  background: #0e120f;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  transition: transform 700ms var(--ease-expo), opacity 500ms ease;
}

.mint-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) saturate(0.5);
}

.mint-card--5 { transform: translateX(calc(54px * var(--quantity-progress))) rotateY(-6deg); opacity: calc(0.2 + var(--quantity-progress)); }
.mint-card--4 { transform: translateX(calc(42px * var(--quantity-progress))) rotateY(-5deg); opacity: calc(0.3 + var(--quantity-progress)); }
.mint-card--3 { transform: translateX(calc(30px * var(--quantity-progress))) rotateY(-4deg); opacity: calc(0.4 + var(--quantity-progress)); }
.mint-card--2 { transform: translateX(calc(18px * var(--quantity-progress))) rotateY(-3deg); opacity: calc(0.5 + var(--quantity-progress)); }
.mint-card--1 { transform: translateX(calc(7px * var(--quantity-progress))); }

.mint-card--source {
  transform: translateX(calc(-24px * var(--quantity-progress))) rotateY(4deg) scale(0.94);
  opacity: 0.58;
  clip-path: polygon(0 0, 100% 0, 100% 26%, 84% 26%, 84% 48%, 100% 48%, 100% 100%, 0 100%, 0 71%, 15% 71%, 15% 47%, 0 47%);
}

.mint-card--unknown {
  display: grid;
  place-items: center;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(230, 202, 120, 0.04) 14px 15px),
    #0a0d0b;
  color: var(--paper);
}

.mint-card--unknown > span { font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); }
.mint-card--unknown > small { position: absolute; right: 13px; bottom: 11px; font-size: 9px; font-weight: 800; }

.mint-card__veil {
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 45%),
    #0a0d0b;
  color: var(--paper);
}

.mint-card__veil > span {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 400;
}

.mint-card__veil > small {
  position: absolute;
  right: 13px;
  bottom: 11px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.mint__panel {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  padding: 24px;
  border: 1px solid var(--hairline-dark);
  background: rgba(11, 15, 13, 0.78);
  backdrop-filter: blur(18px);
}

.mint__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.mint__stats > div {
  min-height: 86px;
  padding: 13px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.mint__stats > div > span,
.mint__network small,
.mint__contract > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mint__stats strong {
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.mint__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 18px 0;
}

.mint__steps span {
  position: relative;
  display: grid;
  place-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mint__steps span::before {
  content: attr(data-step);
}

.mint__steps span i {
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.mint__steps span.is-active {
  color: var(--acid);
}

.mint__steps span.is-active i {
  background: var(--acid);
  box-shadow: 0 0 12px rgba(199, 255, 54, 0.65);
}

.mint__quantity {
  display: grid;
  grid-template-columns: 34px 1fr 34px;
  align-items: center;
  margin: 18px 0;
  border: 1px solid var(--hairline-dark);
}

.mint__quantity > button {
  height: 44px;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
}

.mint__quantity > button:disabled {
  opacity: 0.2;
}

.mint__quantity ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-self: center;
  width: min(100%, 150px);
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mint__quantity [data-quantity-option] {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 7px;
  font-weight: 700;
  cursor: pointer;
}

.mint__quantity [data-quantity-option].is-active {
  background: var(--acid);
  color: var(--ink);
}

.mint__network {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  margin-bottom: 16px;
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.mint__network > span {
  position: relative;
  min-height: 74px;
  padding: 13px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.mint__network > span > i {
  position: absolute;
  top: 16px;
  right: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.mint__network > span > i.is-live {
  background: var(--acid);
  box-shadow: 0 0 11px var(--acid);
}

.mint__network strong {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mint__sale-state {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 16px;
  border-top: 1px solid var(--hairline-dark);
  border-left: 1px solid var(--hairline-dark);
}

.mint__sale-state > span {
  min-height: 64px;
  padding: 12px 13px;
  border-right: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
}

.mint__sale-state small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mint__sale-state strong {
  display: block;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mint__deployment {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 13px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 8px;
  line-height: 1.35;
}

.mint__deployment > span {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.mint__deployment.is-verified {
  color: rgba(255, 255, 255, 0.82);
}

.mint__deployment.is-verified > span {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 12px rgba(199, 255, 54, 0.62);
}

.mint__receipt {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 14px;
  padding: 11px 12px;
  border: 1px solid rgba(199, 255, 54, 0.34);
  color: var(--acid);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease;
}

.mint__receipt::after {
  content: "↗";
}

.mint__receipt:hover,
.mint__receipt:focus-visible {
  background: var(--acid);
  color: var(--ink);
}

.mint__connect-secondary {
  width: 100%;
  margin-top: 8px;
  padding: 9px;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.mint__status {
  min-height: 34px;
  margin: 8px 0 14px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  line-height: 1.5;
}

.mint__status.is-error { color: var(--danger); }
.mint__status.is-success { color: var(--acid); }
.mint__retry { margin: 0; padding: 8px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: rgba(255, 255, 255, 0.7); font-size: 7px; font-weight: 800; letter-spacing: 0.09em; text-transform: uppercase; cursor: pointer; }

.mint__confirmation {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}

.mint__confirmation[hidden] { display: none; }
.mint__confirmation article { display: grid; gap: 4px; padding: 12px; border: 1px solid var(--acid); background: rgba(199, 255, 54, 0.06); }
.mint__confirmation strong { color: var(--acid); font-family: var(--display); font-size: 22px; }
.mint__confirmation small,
.mint__disclosure { color: rgba(255, 255, 255, 0.56); font-size: 7px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.mint__disclosure { margin: 14px 0 0; padding-top: 12px; border-top: 1px solid var(--hairline-dark); text-transform: none; }

.mint__contract {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--hairline-dark);
}

.mint__contract > span {
  grid-column: 1 / -1;
}

.mint__contract code {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
}

.mint__contract button {
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 8px;
  cursor: pointer;
}

.mint__kanji {
  position: absolute;
  right: -0.08em;
  top: 16%;
  z-index: -1;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--serif);
  font-size: clamp(13rem, 28vw, 28rem);
  line-height: 0.6;
  writing-mode: vertical-rl;
  pointer-events: none;
}

/* Activity --------------------------------------------------------------- */
.activity {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.75fr) minmax(320px, 0.72fr);
  min-height: 720px;
  padding: 112px var(--section-gutter) 64px;
  gap: 30px;
  overflow: hidden;
  background: #111b23;
}

.activity::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 12, 15, 0.86), rgba(8, 12, 15, 0.55)), radial-gradient(circle at 75% 50%, rgba(80, 118, 145, 0.26), transparent 43%);
}

.activity__copy {
  align-self: center;
}

.activity__copy h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(3.4rem, 5.2vw, 5.7rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-transform: uppercase;
}

.activity__copy p {
  max-width: 370px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.activity__rail {
  align-self: center;
  min-height: 360px;
  border-top: 1px solid var(--hairline-dark);
}

.activity__quiet {
  display: grid;
  align-content: center;
  gap: 15px;
  min-height: 360px;
  padding: 30px;
  border-bottom: 1px solid var(--hairline-dark);
}

.activity__quiet span,
.activity__quiet small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.activity__quiet strong {
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.35vw, 3rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.activity__event-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.activity__event-list li {
  min-height: 82px;
  padding: 18px 14px;
  border-bottom: 1px solid var(--hairline-dark);
}

.activity__event-list a {
  display: flex;
  justify-content: space-between;
  color: white;
  text-decoration: none;
}

.activity__event-list strong {
  font-size: 12px;
}

.activity__event-list small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.activity__portrait {
  position: relative;
  align-self: stretch;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--hairline-dark);
}

.activity__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
}

.activity__kanji {
  position: absolute;
  right: 1%;
  top: 8%;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: clamp(9rem, 17vw, 18rem);
  line-height: 0.68;
  writing-mode: vertical-rl;
  pointer-events: none;
}

/* Artist ----------------------------------------------------------------- */
.artist {
  display: grid;
  grid-template-columns: minmax(250px, 0.55fr) minmax(320px, 0.58fr) minmax(460px, 0.87fr);
  min-height: 760px;
  padding: 112px var(--section-gutter) 60px;
  gap: 0;
  overflow: hidden;
}

.artist__portrait {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--paper-line);
}

.artist__portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.artist__portrait > span {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  background: var(--paper);
  color: var(--ink);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px clamp(30px, 4vw, 70px);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.artist__copy h2 {
  margin: 0 0 30px;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  font-weight: 740;
  letter-spacing: -0.07em;
  line-height: 0.86;
  text-transform: uppercase;
}

.artist__copy p {
  max-width: 390px;
  margin: 0 0 50px;
  color: rgba(9, 12, 11, 0.62);
  font-size: 12px;
  line-height: 1.62;
}

.roots-mark--large {
  font-size: clamp(3rem, 7vw, 7rem);
}

.artist__studies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  border-top: 1px solid var(--paper-line);
  border-left: 1px solid var(--paper-line);
}

.artist__studies figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
}

.artist__studies img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transition: filter 500ms ease, opacity 500ms ease, transform 900ms var(--ease-expo);
}

.artist__studies figure:hover img {
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
  transform: none;
}

.artist__studies figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 6px 8px;
  background: var(--paper);
  color: var(--ink);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Finale ----------------------------------------------------------------- */
.finale {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  align-items: center;
  min-height: 830px;
  padding: 110px var(--section-gutter) 60px;
  overflow: hidden;
}

.finale__copy {
  position: relative;
  z-index: 2;
  padding-left: clamp(0px, 4vw, 70px);
}

.finale__prelude {
  margin: 0 0 24px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finale h2 {
  margin: 0 0 44px;
  font-family: var(--display);
  font-size: clamp(4.5rem, 10.5vw, 13rem);
  font-weight: 760;
  letter-spacing: -0.085em;
  line-height: 0.72;
  text-transform: uppercase;
}

.finale__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.return-field {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(118px, 1fr);
  gap: 8px;
  align-self: stretch;
  min-height: 660px;
  padding: 8px;
  border: 1px solid var(--paper-line);
  background: rgba(255, 255, 255, 0.18);
}

.return-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--paper-line);
  background: #d9d2c4;
  cursor: pointer;
  filter: grayscale(1) contrast(0.9);
  opacity: 0.54;
  transition: filter 420ms ease, opacity 320ms ease, transform 620ms var(--ease-expo);
}

.return-card:hover,
.return-card:focus-visible { filter: none; opacity: 1; transform: translateY(-4px); }
.return-card.is-active { grid-column: 2 / span 2; grid-row: 1 / span 2; z-index: 3; filter: none; opacity: 1; box-shadow: 0 18px 44px rgba(31, 27, 20, 0.22); }
.return-card img { width: 100%; height: 100%; object-fit: cover; }
.return-card > span { display: none; }
.return-card.is-active > span { position: absolute; right: 8px; bottom: 8px; left: 8px; display: block; padding: 8px 10px; background: rgba(9, 12, 11, 0.86); color: white; font-size: 8px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }

.finale__art {
  position: relative;
  z-index: 2;
  align-self: end;
  height: min(70vw, 680px);
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--paper-line);
  border-right: 1px solid var(--paper-line);
}

.finale__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finale__kanji {
  position: absolute;
  right: -0.05em;
  top: 3%;
  margin: 0;
  color: rgba(9, 12, 11, 0.05);
  font-family: var(--serif);
  font-size: clamp(13rem, 29vw, 31rem);
  line-height: 0.5;
  pointer-events: none;
}

.finale__petals i {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 8px;
  border-radius: 100% 0 100% 0;
  background: #ec94aa;
  opacity: 0.65;
  animation: petal 8s linear infinite;
}

.finale__petals i:nth-child(1) { left: 48%; top: 24%; animation-delay: -1s; }
.finale__petals i:nth-child(2) { left: 59%; top: 16%; animation-delay: -3s; }
.finale__petals i:nth-child(3) { left: 74%; top: 30%; animation-delay: -5s; }
.finale__petals i:nth-child(4) { left: 52%; top: 66%; animation-delay: -7s; }
.finale__petals i:nth-child(5) { left: 84%; top: 72%; animation-delay: -2s; }

@keyframes petal {
  0% { transform: translate3d(0, -35px, 0) rotate(0); opacity: 0; }
  12% { opacity: 0.7; }
  100% { transform: translate3d(70px, 280px, 0) rotate(450deg); opacity: 0; }
}

/* Footer ----------------------------------------------------------------- */
.site-footer {
  padding: 36px var(--section-gutter) 28px;
  border-top: 1px solid var(--hairline-dark);
  background: var(--ink);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--hairline-dark);
}

.site-footer__top p,
.site-footer__top span,
.site-footer__ca,
.site-footer__legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 25px 0;
}

.site-footer__links a {
  color: white;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

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

.site-footer__ca {
  word-break: break-all;
}

.site-footer__legal {
  max-width: 670px;
  margin-top: 12px;
  line-height: 1.5;
}

/* Viewer ----------------------------------------------------------------- */
.viewer {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.viewer::backdrop {
  background: rgba(4, 6, 5, 0.94);
  backdrop-filter: blur(12px);
}

.viewer__surface {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(360px, 0.56fr);
  width: 100%;
  height: 100%;
  background: var(--ink);
}

.viewer__rail {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 48px;
  padding: 0 20px;
  border-bottom: 1px solid var(--hairline-dark);
  background: rgba(9, 12, 11, 0.64);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.viewer__rail i {
  flex: 1;
  height: 1px;
  background: var(--hairline-dark);
}

.viewer__close {
  position: absolute;
  top: 62px;
  right: 18px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hairline-dark);
  border-radius: 50%;
  background: rgba(9, 12, 11, 0.7);
  color: white;
  cursor: pointer;
}

.viewer__media {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  background: #131916;
}

.viewer__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
}

.viewer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 74%, rgba(9, 12, 11, 0.46));
}

.viewer__edge {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(9, 12, 11, 0.55);
  color: white;
  transform: translateY(-50%);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.viewer__edge--prev { left: 18px; }
.viewer__edge--next { right: 18px; }

.viewer__details {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 92px 36px 30px;
  overflow-y: auto;
  border-left: 1px solid var(--hairline-dark);
}

.viewer__eyebrow,
.viewer__trait-label {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.viewer__details h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(3rem, 5vw, 6.5rem);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.88;
}

.viewer__description {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.58;
}

.viewer__trait-label {
  margin-top: 0;
  padding-top: 20px;
  border-top: 1px solid var(--hairline-dark);
}

.viewer__traits {
  display: grid;
  gap: 0;
  margin: 0 0 34px;
}

.viewer__traits > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.5fr) 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.viewer__traits dt,
.viewer__traits dd {
  margin: 0;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.viewer__traits dt {
  color: rgba(255, 255, 255, 0.4);
}

.viewer__traits dd {
  color: rgba(255, 255, 255, 0.86);
}

.viewer__actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.viewer__count {
  margin: 22px 0 0;
  color: var(--acid);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
}

/* States / reveal -------------------------------------------------------- */
.is-art-unavailable {
  position: relative;
}

.artwork-stage__media.is-art-unavailable {
  position: sticky;
}

.is-art-unavailable::after {
  content: "Collection artwork unavailable";
  position: absolute;
  inset: 0;
  z-index: 10;
  display: grid;
  place-items: center;
  padding: 20px;
  background: var(--ink-soft);
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  pointer-events: none;
}

.motion-enhanced .reveal {
  opacity: 0;
  transform: translateY(52px);
  transition: opacity 1s var(--ease-expo), transform 1.2s var(--ease-expo);
}

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

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2400;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 18px;
  transform: translateY(24px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(9, 12, 11, 0.9);
  color: white;
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 250ms ease, transform 450ms var(--ease-expo);
}

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

/* Large desktop ---------------------------------------------------------- */
@media (min-width: 1700px) {
  :root { --section-gutter: 70px; }
  .collection__track { grid-template-columns: repeat(6, 250px); grid-template-rows: repeat(2, 290px); }
  .art-card { width: 240px; height: 290px; }
  .manifesto { grid-template-columns: 82px minmax(0, 1fr) minmax(480px, 0.75fr); }
}

/* Laptop ----------------------------------------------------------------- */
@media (max-width: 1180px) {
  .hero__stage { inset: 15% 5% 0 8%; }
  .hero__copy { width: min(35vw, 380px); }
  .hero__art--left { width: 30vw; }
  .hero__art--center { left: 29%; width: 34vw; }
  .hero__art--right { left: 65%; width: 28vw; }

  .manifesto { grid-template-columns: 46px minmax(0, 1fr) minmax(320px, 0.72fr); }
  .manifesto__copy { padding: 0 38px; }

  .provenance__flow { grid-template-columns: repeat(5, 1fr); gap: 10px; }
  .provenance-arrow { display: none; }

  .mint { grid-template-columns: 0.68fr 0.9fr 1fr; }
  .mint__panel { padding: 18px; }

  .activity { grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr) minmax(280px, 0.7fr); }
  .artist { grid-template-columns: 0.52fr 0.58fr 0.8fr; }
}

/* Tablet landscape ------------------------------------------------------- */
@media (max-width: 980px) {
  :root { --header-height: 66px; }
  body { padding-bottom: calc(62px + env(safe-area-inset-bottom)); }
  .section-index { display: none; }
  .site-header { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
  .site-nav { display: none; }
  .supply-chip { display: none; }
  .mobile-nav {
    position: fixed;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 1450;
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 4px;
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(9, 12, 11, 0.94);
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.36);
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    backdrop-filter: blur(16px);
  }
  .mobile-nav::-webkit-scrollbar { display: none; }
  .mobile-nav a { flex: 1 0 64px; }

  .hero { min-height: max(1820px, 240svh); }
  .hero__word { top: 100px; font-size: clamp(6rem, 19vw, 11rem); }
  .hero__stage { inset: 22% 0 0 0; }
  .hero__art--left { left: 2%; width: 35vw; }
  .hero__art--center { left: 31%; width: 40vw; }
  .hero__art--right { left: 66%; width: 32vw; }
  .hero__copy { top: auto; right: auto; bottom: 95px; left: var(--section-gutter); width: min(56vw, 520px); }
  .hero__copy h1 { font-size: clamp(2.7rem, 7vw, 5.2rem); }
  .hero__supply { top: 82px; }

  .manifesto { grid-template-columns: 42px 1fr; grid-template-rows: auto auto; min-height: 0; }
  .manifesto__copy { align-self: auto; padding: 80px 45px 60px; }
  .manifesto__portrait { grid-column: 2; height: 75vw; min-height: 520px; border-top: 1px solid var(--paper-line); }
  .manifesto__rail { grid-row: 1 / 3; }

  .collection-canvas { grid-template-columns: 140px 1fr; }
  .collection__track { grid-template-columns: repeat(6, 190px); grid-template-rows: repeat(2, 235px); }
  .art-card { width: 180px; height: 230px; }

  .artwork-stage__shell { grid-template-columns: 68px minmax(0, 1fr) minmax(260px, .75fr); }
  .artwork-stage__thumbs { padding-top: 52px; }
  .artwork-stage__media { min-height: 660px; border-right: 1px solid var(--hairline-dark); }
  .artwork-stage__details { grid-column: 3; padding: 38px 24px 28px; border-top: 0; }
  .artwork-stage__description { max-width: 62ch; }
  .artwork-stage__actions { grid-template-columns: 1fr 1fr; }
  .artwork-stage__utilities { grid-column: 1 / 3; }

  .provenance__headline { grid-template-columns: 1fr; gap: 28px; }
  .provenance__flow { grid-template-columns: repeat(3, 1fr); }

  .mint { grid-template-columns: 0.7fr 1fr; grid-template-rows: auto auto; }
  .mint__intro { grid-column: 1; grid-row: 1; align-self: end; padding-top: 70px; }
  .mint__visual { grid-column: 1; grid-row: 2; min-height: 480px; }
  .mint__stack { width: min(34vw, 280px); }
  .mint__panel { grid-column: 2; grid-row: 1 / 3; }

  .activity { grid-template-columns: minmax(330px, .62fr) minmax(0, 1fr); }
  .activity__portrait { display: none; }

  .artist { grid-template-columns: 0.7fr 1fr; grid-template-rows: auto auto; }
  .artist__portrait { min-height: 520px; }
  .artist__studies { grid-column: 1 / 3; min-height: 520px; }

  .finale { grid-template-columns: 1fr 0.75fr; }

  .viewer__surface { grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr); }
  .viewer__details { padding: 88px 24px 24px; }
}

/* Mobile ----------------------------------------------------------------- */
@media (max-width: 760px) {
  :root { --section-gutter: 18px; --header-height: 58px; }
  body { font-size: 15px; }
  .cursor { display: none; }
  .site-header { min-height: 58px; padding-inline: 16px; mix-blend-mode: normal; background: rgba(9, 12, 11, 0.74); backdrop-filter: blur(14px); }
  .brand__word { display: block !important; }
  .brand__glyph { display: none !important; }
  .header-actions { gap: 8px; }
  .button--compact { min-height: 44px; padding: 0 10px; }

  .section-cap { top: 15px; }
  .hero { min-height: max(1820px, 240svh); }
  .hero__sticky { min-height: 100svh; }
  .section-cap--hero { top: 74px; }
  .hero__word { top: 111px; right: 12px; left: 12px; font-size: 20.2vw; }
  .hero__stage { inset: 22% 0 0; }
  .hero__art--left { top: 20%; left: -11%; width: 48vw; }
  .hero__art--center { top: 11%; left: 24%; width: 58vw; }
  .hero__art--right { top: 22%; left: 69%; width: 43vw; }
  .hero__art--satellite { width: 31vw; }
  .hero__art--satellite:nth-child(4) { top: 4%; left: -8%; }
  .hero__art--satellite:nth-child(5) { top: 5%; left: 76%; }
  .hero__art--satellite:nth-child(6) { top: 49%; left: 3%; }
  .hero__art--satellite:nth-child(7) { top: 48%; left: 70%; }
  .hero__stage > [data-noise-card]:nth-child(n + 8) { display: none; }
  .hero[data-phase="focus"] .hero__art.is-active { transform: translate3d(-3vw, -4vh, 0) rotate(0deg) scale(1.04); }
  .hero__resolution { right: 18px; bottom: 13vh; left: 18px; max-width: 10ch; font-size: clamp(2.8rem, 13vw, 5rem); }
  .hero__copy { right: 18px; bottom: 86px; left: 18px; width: auto; }
  .hero__copy h1 { margin-bottom: 14px; font-size: clamp(2.65rem, 13vw, 4.4rem); }
  .hero__copy p { max-width: 310px; margin-bottom: 18px; font-size: 11px; }
  .hero__actions { gap: 7px; }
  .hero__actions .button { min-height: 45px; gap: 14px; padding: 0 13px; font-size: 8px; }
  .hero__network { right: 18px; bottom: 17px; left: 18px; gap: 7px; font-size: 6px; }
  .hero__network span + span::before { margin-right: 7px; }
  .hero__supply { top: 72px; font-size: 12px; }
  .hero__scroll { display: none; }
  .hero__kanji { opacity: 0.55; }

  .marquee__track { padding: 12px 0; }

  .manifesto { display: block; min-height: 0; padding: 84px 18px 0; }
  .manifesto__rail { display: none; }
  .manifesto__copy { padding: 30px 0 60px; }
  .manifesto__glyph { margin-bottom: 34px; }
  .manifesto h2 { margin-bottom: 50px; font-size: clamp(3rem, 14vw, 5.4rem); }
  .manifesto__statements p { grid-template-columns: 25px auto; font-size: clamp(1.7rem, 8vw, 2.8rem); }
  .manifesto__portrait { height: 118vw; min-height: 0; margin: 0 -18px; border-left: 0; }
  .manifesto__oversize { top: 17%; font-size: 55vw; }

  .collection { min-height: 0; padding: 86px 18px 48px; }
  .collection__intro { display: block; margin-bottom: 28px; }
  .collection__intro h2 { font-size: 13.5vw; }
  .collection__intro .button { margin-top: 22px; }
  .collection-canvas { display: block; min-height: 0; border: 0; background: transparent; box-shadow: none; }
  .collection__filters { flex-direction: row; gap: 8px; margin: 0 -18px 18px; padding: 0 18px 12px; overflow-x: auto; border-right: 0; scrollbar-width: none; }
  .collection__filters::-webkit-scrollbar { display: none; }
  .collection__filters button { flex: 0 0 auto; min-height: 44px; padding: 0 12px; border: 1px solid var(--hairline-dark); }
  .collection__filters button b { margin-left: 10px; }
  .collection__filters button:hover,
  .collection__filters button:focus-visible,
  .collection__filters button.is-active { padding-left: 12px; }
  .collection__stage { margin: 0 -18px; overflow-x: auto; cursor: auto; touch-action: pan-x pan-y; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .collection__stage::-webkit-scrollbar { display: none; }
  .collection__track { display: flex; width: max-content; min-width: 0; padding: 8px 18px 24px; transform: none !important; }
  .art-card { flex: 0 0 70vw; width: 70vw; height: 84vw; transform: translate3d(var(--field-x), var(--field-y), 0) scale(var(--field-scale)) !important; scroll-snap-align: center; }
  .art-card.is-related { order: 0; }
  .art-card.is-unrelated { order: 1; }
  .art-card:hover,
  .art-card:focus-within { transform: translate3d(var(--field-x), calc(var(--field-y) - 4px), 0) scale(var(--field-scale)) !important; }
  .collection__drag-hint { display: none; }

  .artwork-stage { min-height: 0; padding: 86px 18px 48px; }
  .artwork-stage::after { display: none; }
  .artwork-stage__shell {
    display: block;
    min-height: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
  .artwork-stage__thumbs {
    flex-direction: row;
    gap: 8px;
    margin: 0 -18px 14px;
    padding: 0 18px 12px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    scroll-snap-type: x mandatory;
  }
  .artwork-stage__thumb { flex: 0 0 72px; width: 72px; scroll-snap-align: center; }
  .artwork-stage__thumb:hover,
  .artwork-stage__thumb:focus-visible,
  .artwork-stage__thumb.is-active { transform: translateY(-3px); }
  .artwork-stage__media { min-height: 0; height: 110vw; max-height: 590px; border: 1px solid var(--hairline-dark); }
  .artwork-stage__media-meta { top: 12px; right: 12px; left: 12px; }
  .artwork-stage__arrow { width: 44px; height: 44px; }
  .artwork-stage__arrow--prev { left: 10px; }
  .artwork-stage__arrow--next { right: 10px; }
  .artwork-stage__details { position: relative; z-index: 3; padding: 36px 0 0; overflow: visible; background: transparent; }
  .signal-chapter > [data-trait-activate] { position: relative; z-index: 4; width: calc(100% - 24px); padding: 14px 12px; background: rgba(9, 12, 11, 0.78); backdrop-filter: blur(12px); }
  .artwork-stage__details h2 { margin-top: 26px; font-size: 16vw; }
  .artwork-stage__description { max-width: 36ch; font-size: 12px; }
  .artwork-stage__traits { max-height: none; }
  .artwork-stage__actions { display: grid; grid-template-columns: 1fr; }
  .artwork-stage__utilities { grid-column: auto; }
  .artwork-stage__count { margin-top: 18px; }
  .artwork-stage__watermark { font-size: 58vw; }

  .provenance { min-height: 0; padding: 86px 18px 52px; }
  .provenance__headline { display: block; padding-bottom: 36px; }
  .provenance__headline h2 { margin-bottom: 22px; font-size: 14vw; }
  .provenance-peel { display: grid; gap: 10px; min-height: 0; margin: 28px 0; perspective: none; }
  .provenance-layer,
  .provenance-layer:nth-child(n) { position: relative; top: auto; left: auto; width: 100%; min-height: 230px; transform: none; }
  .provenance-peel:hover .provenance-layer:nth-child(n),
  .provenance-peel:focus-within .provenance-layer:nth-child(n),
  .provenance-layer:nth-child(n):hover,
  .provenance-layer:nth-child(n):focus-within { transform: none !important; }
  .provenance-layer figure { height: 96vw; max-height: 520px; }
  .provenance__flow { display: flex; gap: 10px; margin: 28px -18px; padding: 0 18px 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .provenance__flow::-webkit-scrollbar { display: none; }
  .provenance-node { flex: 0 0 67vw; min-height: 220px; scroll-snap-align: center; }
  .provenance__actions { display: grid; }
  .provenance__actions .button { width: 100%; }

  .mint { display: block; min-height: 0; padding: 92px 18px 54px; }
  .mint::before { background: radial-gradient(circle at 50% 38%, rgba(230, 202, 120, 0.1), transparent 25%); }
  .mint__intro { padding: 0; text-align: left; }
  .mint__intro h2 { font-size: 15vw; }
  .mint__visual { min-height: 430px; }
  .mint__halo { width: 92vw; }
  .mint__stack { width: 52vw; }
  .mint__panel { padding: 14px; }
  .mint__quantity { grid-template-columns: 44px 1fr 44px; }
  .mint__quantity > button { min-width: 44px; min-height: 44px; }
  .mint__quantity ol { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: 44px; }
  .mint__quantity [data-quantity-option] { min-width: 44px; min-height: 44px; }
  .mint__connect-secondary,
  .mint__retry { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; }
  .mint__steps { margin: 14px 0; }
  .mint__kanji { opacity: 0.6; }

  .activity { display: block; min-height: 0; padding: 90px 18px 48px; }
  .activity__copy h2 { font-size: min(14vw, 3.5rem); }
  .activity__copy p { margin-bottom: 22px; }
  .activity__rail { margin-top: 34px; }
  .activity__quiet { min-height: 270px; padding: 22px 0; }
  .activity__portrait { display: block; height: 110vw; margin-top: 20px; }

  .artist { display: block; min-height: 0; padding: 88px 18px 48px; }
  .artist__portrait { min-height: 0; height: 115vw; }
  .artist__copy { padding: 54px 0; border: 0; }
  .artist__copy h2 { font-size: 14vw; }
  .artist__studies { min-height: 112vw; }

  .finale { display: block; min-height: 0; padding: 94px 18px 0; }
  .finale__copy { padding: 0 0 60px; }
  .finale h2 { font-size: 20vw; }
  .finale__actions { display: grid; }
  .finale__actions .button { width: 100%; }
  .return-field { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 28vw; min-height: 0; margin: 0 -18px; padding: 8px; }
  .return-card.is-active { grid-column: 1 / span 2; grid-row: 1 / span 2; }
  .finale__art { height: 120vw; margin: 0 -18px; border: 0; }
  .finale__kanji { top: 9%; font-size: 58vw; }

  .site-footer { padding: 30px 18px; }
  .site-footer__top { grid-template-columns: 1fr auto; }
  .site-footer__top p { display: none; }
  .site-footer__links { gap: 16px; }

  .viewer__surface { display: block; height: 100%; overflow-y: auto; }
  .viewer__media { height: 62dvh; min-height: 430px; }
  .viewer__media::after { background: linear-gradient(180deg, transparent 72%, var(--ink)); }
  .viewer__details { min-height: 56dvh; padding: 40px 18px 32px; border-left: 0; overflow: visible; }
  .viewer__close { top: 58px; right: 12px; width: 44px; height: 44px; }
  .viewer__edge { width: 44px; height: 44px; }
  .viewer__details h2 { font-size: 16vw; }
}

@media (prefers-reduced-motion: reduce) {
  .hero {
    min-height: 100svh;
  }

  .hero__sticky {
    position: relative;
  }

  .signal-chapter {
    min-height: 0;
    opacity: 1;
  }

  .hero__art,
  .hero__resolution,
  .hero__copy,
  .hero__network,
  .hero__supply {
    transition-duration: 1ms !important;
  }

  .hero__art.is-cleared {
    transform: none;
  }
}

/* Small mobile ----------------------------------------------------------- */
@media (max-width: 390px) {
  .hero__network span:nth-of-type(3),
  .hero__network span:nth-of-type(4) { display: none; }
  .hero__copy h1 { font-size: 12.5vw; }
  .button { gap: 16px; padding: 0 14px; }
  .mint__stats strong { font-size: 17px; }
  .viewer__media { min-height: 390px; }
}

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

  .cursor,
  .hero__rain {
    display: none !important;
  }

  .motion-enhanced .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Coarse pointers -------------------------------------------------------- */
@media (pointer: coarse) {
  .cursor { display: none; }
  .magnetic { transform: none !important; }
}
